aboutsummaryrefslogtreecommitdiff
path: root/KaplaDemo/samples/sampleViewer3/SampleViewerGamepad.cpp
blob: ef6404c42f667c60782c0bdacd6534c527d1d145 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
#include "SampleViewerGamepad.h"
#include "SampleViewerScene.h"

#include <stdio.h>
#include <direct.h>

#include "PsString.h"

//////////////////////////////////////////////////////////////////////////

static bool gTimeInit = false;
static const unsigned int MAX_GAMEPADS = 4;
static const unsigned int MAX_GAMEPAD_AXES = 4;
static XINPUT_STATE m_lastInputState[MAX_GAMEPADS];
static int m_lastAxisData[MAX_GAMEPADS][MAX_GAMEPAD_AXES];

//////////////////////////////////////////////////////////////////////////

SampleViewerGamepad::SampleViewerGamepad()
	: mGamePadConnected(false), mConnectedPad(0), mXInputLibrary(), mpXInputGetState(0), mpXInputGetCapabilities(0)
{
}

//////////////////////////////////////////////////////////////////////////
SampleViewerGamepad::~SampleViewerGamepad()
{
	release();
}

//////////////////////////////////////////////////////////////////////////

void SampleViewerGamepad::init()
{
	static const unsigned int xInputLibCount = 4;
	static const char* xInputLibs[xInputLibCount] = { "xinput1_4.dll",
		"xinput1_3.dll",
		"xinput1_2.dll",
		"xinput1_1.dll" };
	for (unsigned int i = 0; i < xInputLibCount; ++i)
	{
		mXInputLibrary = LoadLibraryA(xInputLibs[i]);
		if (mXInputLibrary)
			break;
	}

	if(!mXInputLibrary)
	{
		physx::shdfnd::printString("Could not load XInput library.");
	}
	
	if (mXInputLibrary)
	{
		mpXInputGetState = (LPXINPUTGETSTATE)GetProcAddress(mXInputLibrary, "XInputGetState");
		mpXInputGetCapabilities = (LPXINPUTGETCAPABILITIES)GetProcAddress(mXInputLibrary, "XInputGetCapabilities");
		if(!mpXInputGetState)
		{
			physx::shdfnd::printString("Error loading XInputGetState function.");
		}

		if(!mpXInputGetCapabilities)
		{
			physx::shdfnd::printString("Error loading XInputGetCapabilities function.");
		}
	}
}

//////////////////////////////////////////////////////////////////////////

void SampleViewerGamepad::release()
{
	if (mXInputLibrary)
	{
		FreeLibrary(mXInputLibrary);
		mXInputLibrary = 0;
	}

	mpXInputGetState = 0;
	mpXInputGetCapabilities = 0;
	mGamePadConnected = false;
	mConnectedPad = 0;
}

//////////////////////////////////////////////////////////////////////////

void SampleViewerGamepad::processGamepads(SampleViewerScene& viewerScene)
{
	if (!gTimeInit)
	{
		gTimeInit = true;

		for (unsigned int p = 0; p < MAX_GAMEPADS; p++)
		{
			memset(&m_lastInputState[p], 0, sizeof(XINPUT_STATE));
			for (unsigned int i = 0; i < MAX_GAMEPAD_AXES; i++)
			{
				m_lastAxisData[p][i] = 0;
			}
		}
	}

	static int32_t disConnected[4] = { 1, 2, 3, 4 };

	if (!hasXInput())
		return;
	
	for (uint32_t p = 0; p < MAX_GAMEPADS; p++)
	{
		if ((--disConnected[p]) == 0)
		{
			XINPUT_STATE inputState;
			DWORD state = mpXInputGetState(p, &inputState);
			if (state == ERROR_DEVICE_NOT_CONNECTED)
			{
				disConnected[p] = 4;
				if (mGamePadConnected && (mConnectedPad == p))
				{
					mGamePadConnected = false;
					mConnectedPad = 0;
					for (uint32_t k = 0; k < MAX_GAMEPADS; k++)
					{
						XINPUT_STATE inputStateDisc;
						DWORD stateDisc = mpXInputGetState(k, &inputStateDisc);
						if (stateDisc == ERROR_SUCCESS)
						{
							mConnectedPad = k;
							mGamePadConnected = true;
							break;
						}
					}
				}
			}
			else if (state == ERROR_SUCCESS)
			{
				if (!mGamePadConnected)
				{
					mGamePadConnected = true;
					mConnectedPad = p;
				}

				disConnected[p] = 1; //force to test next time
				XINPUT_CAPABILITIES caps;
				mpXInputGetCapabilities(p, XINPUT_FLAG_GAMEPAD, &caps);

				//gamepad
				{
					// Process buttons
					const WORD lastWButtons = m_lastInputState[p].Gamepad.wButtons;
					const WORD currWButtons = inputState.Gamepad.wButtons;

					const WORD buttonsDown = currWButtons & ~lastWButtons;
					const WORD buttonsUp = ~currWButtons & lastWButtons;
					//				const WORD buttonsHeld	= currWButtons & lastWButtons;

					for (int i = 0; i < 14; i++)
					{
						// order has to match struct GamepadControls
						static const WORD buttonMasks[] = {
							XINPUT_GAMEPAD_DPAD_UP,
							XINPUT_GAMEPAD_DPAD_DOWN,
							XINPUT_GAMEPAD_DPAD_LEFT,
							XINPUT_GAMEPAD_DPAD_RIGHT,
							XINPUT_GAMEPAD_START,
							XINPUT_GAMEPAD_BACK,
							XINPUT_GAMEPAD_LEFT_THUMB,
							XINPUT_GAMEPAD_RIGHT_THUMB,
							XINPUT_GAMEPAD_Y,
							XINPUT_GAMEPAD_A,
							XINPUT_GAMEPAD_X,
							XINPUT_GAMEPAD_B,
							XINPUT_GAMEPAD_LEFT_SHOULDER,
							XINPUT_GAMEPAD_RIGHT_SHOULDER,
						};

						if (buttonsDown & buttonMasks[i])
							viewerScene.handleGamepadButton(i, true);
						else if (buttonsUp & buttonMasks[i])
							viewerScene.handleGamepadButton(i, false);
					}
					
					{						
						const BYTE newTriggerVal = inputState.Gamepad.bRightTrigger;
						viewerScene.handleGamepadTrigger(GamepadTrigger::GAMEPAD_RIGHT_SHOULDER_TRIGGER, ((float)newTriggerVal) / 255);
					}
					{						
						const BYTE newTriggerVal = inputState.Gamepad.bLeftTrigger;
						viewerScene.handleGamepadTrigger(GamepadTrigger::GAMEPAD_LEFT_SHOULDER_TRIGGER, ((float)newTriggerVal) / 255);
					}
				}

				// Gamepad
				const int axisData[] = { inputState.Gamepad.sThumbRX, inputState.Gamepad.sThumbRY, inputState.Gamepad.sThumbLX, inputState.Gamepad.sThumbLY };
				for (uint32_t i = 0; i < MAX_GAMEPAD_AXES; i++)
				{
					if (axisData[i] != m_lastAxisData[p][i])
					{
						int data = axisData[i];
						if (abs(data) < XINPUT_GAMEPAD_LEFT_THUMB_DEADZONE)
						{
							data = 0;
						}
						viewerScene.handleGamepadAxis(i, ((float)data) / SHRT_MAX);
					}
					m_lastAxisData[p][i] = axisData[i];
				}
				m_lastInputState[p] = inputState;
			}
		}
	}

}