2012-06-05 17:01:37 +02:00
|
|
|
/*
|
|
|
|
* Joystick testing control panel applet resources and definitions
|
|
|
|
*
|
|
|
|
* Copyright 2012 Lucas Fialho Zawacki
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __WINE_JOYSTICKCPL__
|
|
|
|
#define __WINE_JOYSTICKCPL__
|
|
|
|
|
|
|
|
#include <winuser.h>
|
|
|
|
#include <windef.h>
|
|
|
|
#include <commctrl.h>
|
|
|
|
#include <dinput.h>
|
|
|
|
|
|
|
|
extern HMODULE hcpl;
|
|
|
|
|
2012-07-17 03:35:23 +02:00
|
|
|
struct Effect {
|
|
|
|
IDirectInputEffect *effect;
|
|
|
|
DIEFFECT params;
|
|
|
|
DIEFFECTINFOW info;
|
|
|
|
};
|
|
|
|
|
2012-06-05 17:01:37 +02:00
|
|
|
struct Joystick {
|
|
|
|
IDirectInputDevice8W *device;
|
|
|
|
DIDEVICEINSTANCEW instance;
|
|
|
|
int num_buttons;
|
|
|
|
int num_axes;
|
2012-07-17 03:35:23 +02:00
|
|
|
BOOL forcefeedback;
|
|
|
|
int num_effects;
|
|
|
|
int cur_effect;
|
|
|
|
int chosen_effect;
|
|
|
|
struct Effect *effects;
|
2012-06-05 17:01:37 +02:00
|
|
|
};
|
|
|
|
|
2012-06-07 19:44:12 +02:00
|
|
|
#define TEST_MAX_BUTTONS 32
|
2012-06-27 05:09:51 +02:00
|
|
|
#define TEST_MAX_AXES 4
|
2012-06-07 19:44:12 +02:00
|
|
|
|
2012-08-14 01:36:54 +02:00
|
|
|
struct Graphics {
|
|
|
|
HWND hwnd;
|
|
|
|
HWND buttons[TEST_MAX_BUTTONS];
|
|
|
|
HWND axes[TEST_MAX_AXES];
|
|
|
|
HWND ff_axis;
|
|
|
|
};
|
|
|
|
|
2012-06-05 17:01:37 +02:00
|
|
|
struct JoystickData {
|
|
|
|
IDirectInput8W *di;
|
|
|
|
struct Joystick *joysticks;
|
|
|
|
int num_joysticks;
|
2012-07-17 03:35:23 +02:00
|
|
|
int num_ff;
|
2012-06-05 17:01:37 +02:00
|
|
|
int cur_joystick;
|
|
|
|
int chosen_joystick;
|
2012-08-14 01:36:54 +02:00
|
|
|
struct Graphics graphics;
|
2012-06-07 19:44:12 +02:00
|
|
|
BOOL stop;
|
2012-06-05 17:01:37 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#define NUM_PROPERTY_PAGES 3
|
|
|
|
|
|
|
|
/* strings */
|
|
|
|
#define IDS_CPL_NAME 1
|
|
|
|
#define IDS_CPL_INFO 2
|
|
|
|
|
|
|
|
/* dialogs */
|
|
|
|
#define IDC_STATIC -1
|
|
|
|
|
|
|
|
#define IDD_LIST 1000
|
|
|
|
#define IDD_TEST 1001
|
|
|
|
#define IDD_FORCEFEEDBACK 1002
|
|
|
|
|
2012-06-05 17:01:38 +02:00
|
|
|
#define IDC_JOYSTICKLIST 2000
|
|
|
|
#define IDC_BUTTONDISABLE 2001
|
|
|
|
#define IDC_BUTTONENABLE 2002
|
|
|
|
#define IDC_DISABLEDLIST 2003
|
2012-06-07 19:44:12 +02:00
|
|
|
#define IDC_TESTSELECTCOMBO 2004
|
2012-06-19 16:42:08 +02:00
|
|
|
#define IDC_TESTGROUPXY 2005
|
|
|
|
#define IDC_TESTGROUPRXRY 2006
|
|
|
|
#define IDC_TESTGROUPZRZ 2007
|
2012-06-27 05:09:51 +02:00
|
|
|
#define IDC_TESTGROUPPOV 2008
|
2012-06-07 19:44:12 +02:00
|
|
|
|
2012-07-17 03:35:23 +02:00
|
|
|
#define IDC_FFSELECTCOMBO 2009
|
|
|
|
#define IDC_FFEFFECTLIST 2010
|
|
|
|
|
2012-06-07 19:44:12 +02:00
|
|
|
/* constants */
|
|
|
|
#define TEST_POLL_TIME 100
|
|
|
|
|
|
|
|
#define TEST_BUTTON_COL_MAX 8
|
2012-08-14 01:36:54 +02:00
|
|
|
#define TEST_BUTTON_X 8
|
|
|
|
#define TEST_BUTTON_Y 122
|
|
|
|
#define TEST_NEXT_BUTTON_X 30
|
|
|
|
#define TEST_NEXT_BUTTON_Y 25
|
|
|
|
#define TEST_BUTTON_SIZE_X 20
|
|
|
|
#define TEST_BUTTON_SIZE_Y 18
|
|
|
|
|
|
|
|
#define TEST_AXIS_X 43
|
|
|
|
#define TEST_AXIS_Y 60
|
|
|
|
#define TEST_NEXT_AXIS_X 77
|
|
|
|
#define TEST_AXIS_SIZE_X 3
|
|
|
|
#define TEST_AXIS_SIZE_Y 3
|
|
|
|
#define TEST_AXIS_MIN -25
|
|
|
|
#define TEST_AXIS_MAX 25
|
|
|
|
|
|
|
|
#define FF_AXIS_X 248
|
|
|
|
#define FF_AXIS_Y 60
|
|
|
|
#define FF_AXIS_SIZE_X 3
|
|
|
|
#define FF_AXIS_SIZE_Y 3
|
2012-07-17 03:37:12 +02:00
|
|
|
|
2012-07-17 03:35:23 +02:00
|
|
|
#define FF_PLAY_TIME 2*DI_SECONDS
|
|
|
|
#define FF_PERIOD_TIME FF_PLAY_TIME/4
|
|
|
|
|
2012-06-05 17:01:37 +02:00
|
|
|
#endif
|