forked from TouchScript/TouchScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWindowsTouch.cpp
More file actions
209 lines (188 loc) · 5.13 KB
/
WindowsTouch.cpp
File metadata and controls
209 lines (188 loc) · 5.13 KB
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
/*
* @author Valentin Simonov / http://va.lent.in/
*/
#include "WindowsTouch.h"
extern "C"
{
void __stdcall Init(TOUCH_API api, PointerBeganFuncPtr began, PointerMovedFuncPtr moved,
PointerEndedFuncPtr ended, PointerCancelledFuncPtr cancelled)
{
_pointerBeganFunc = began;
_pointerMovedFunc = moved;
_pointerEndedFunc = ended;
_pointerCancelledFunc = cancelled;
_api = api;
_currentWindow = FindWindowA("UnityWndClass", NULL);
if (api == WIN8)
{
_oldWindowProc = SetWindowLongPtr(_currentWindow, GWLP_WNDPROC, (LONG_PTR)wndProc8);
}
else
{
RegisterTouchWindow(_currentWindow, 0);
_oldWindowProc = SetWindowLongPtr(_currentWindow, GWLP_WNDPROC, (LONG_PTR)wndProc7);
}
}
void __stdcall Dispose()
{
if (_oldWindowProc)
{
SetWindowLongPtr(_currentWindow, GWLP_WNDPROC, (LONG_PTR)_oldWindowProc);
_oldWindowProc = 0;
if (_api == WIN7)
{
UnregisterTouchWindow(_currentWindow);
}
}
}
void __stdcall SetScreenParams(int width, int height, float offsetX, float offsetY, float scaleX, float scaleY)
{
_screenWidth = width;
_screenHeight = height;
_offsetX = offsetX;
_offsetY = offsetY;
_scaleX = scaleX;
_scaleY = scaleY;
}
}
LRESULT CALLBACK wndProc8(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
{
switch (msg)
{
case WM_TOUCH:
CloseTouchInputHandle((HTOUCHINPUT)lParam);
break;
case WM_POINTERDOWN:
case WM_POINTERUP:
case WM_POINTERUPDATE:
decodeWin8Touches(msg, wParam, lParam);
break;
default:
return CallWindowProc((WNDPROC)_oldWindowProc, hwnd, msg, wParam, lParam);
}
return 0;
}
LRESULT CALLBACK wndProc7(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
{
switch (msg)
{
case WM_TOUCH:
decodeWin7Touches(msg, wParam, lParam);
break;
default:
return CallWindowProc((WNDPROC)_oldWindowProc, hwnd, msg, wParam, lParam);
}
return 0;
}
void decodeWin8Touches(UINT msg, WPARAM wParam, LPARAM lParam)
{
int pointerId = GET_POINTERID_WPARAM(wParam);
POINTER_INFO pointerInfo;
if (!GetPointerInfo(pointerId, &pointerInfo)) return;
POINT p;
p.x = pointerInfo.ptPixelLocation.x;
p.y = pointerInfo.ptPixelLocation.y;
ScreenToClient(_currentWindow, &p);
switch (msg)
{
case WM_POINTERDOWN:
{
if ((pointerInfo.pointerFlags & POINTER_FLAG_CANCELED) != 0) return;
unsigned int buttons = 0, b;
switch (pointerInfo.pointerType)
{
case PT_MOUSE:
case PT_PEN:
b = (((unsigned int)pointerInfo.ButtonChangeType - 1) / 2) * 3;
buttons |= 1 << (b + 1); // add down
buttons |= 1 << b; // add pressed
break;
case PT_TOUCH:
buttons = 1 + 2; // first button down, pressed
break;
}
_pointerBeganFunc(pointerId, pointerInfo.pointerType, buttons, Vector2(((float)p.x - _offsetX) * _scaleX, _screenHeight - ((float)p.y - _offsetY) * _scaleY));
break;
}
case WM_POINTERUP:
{
if ((pointerInfo.pointerFlags & POINTER_FLAG_CANCELED) != 0)
{
_pointerCancelledFunc(pointerId, pointerInfo.pointerType);
}
else {
unsigned int buttons = 0, b;
switch (pointerInfo.pointerType)
{
case PT_MOUSE:
case PT_PEN:
b = (((unsigned int)pointerInfo.ButtonChangeType - 1) / 2) * 3;
buttons |= 1 << (b + 2); // add up
break;
case PT_TOUCH:
buttons = 4; // first button up
break;
}
_pointerEndedFunc(pointerId, pointerInfo.pointerType, buttons);
}
break;
}
case WM_POINTERUPDATE:
{
if ((pointerInfo.pointerFlags & POINTER_FLAG_CANCELED) != 0)
{
_pointerCancelledFunc(pointerId, pointerInfo.pointerType);
}
else {
unsigned int buttonsSet = 0, buttonsClear = 0;
if (pointerInfo.ButtonChangeType != POINTER_CHANGE_NONE)
{
unsigned int change = (unsigned int)pointerInfo.ButtonChangeType;
if (change % 2 == 0) // up
{
unsigned int b = (change / 2 - 1) * 3;
buttonsSet |= 1 << (b + 2); // add up
buttonsClear |= 1 << b; // remove pressed
}
else // down
{
unsigned int b = ((change - 1) / 2) * 3;
buttonsSet |= 1 << (b + 1); // add down
buttonsSet |= 1 << b; // add pressed
}
}
_pointerMovedFunc(pointerId, pointerInfo.pointerType, buttonsSet, buttonsClear, Vector2(((float)p.x - _offsetX) * _scaleX, _screenHeight - ((float)p.y - _offsetY) * _scaleY));
}
break;
}
}
}
void decodeWin7Touches(UINT msg, WPARAM wParam, LPARAM lParam)
{
UINT cInputs = LOWORD(wParam);
PTOUCHINPUT pInputs = new TOUCHINPUT[cInputs];
if (!pInputs) return;
if (!GetTouchInputInfo((HTOUCHINPUT)lParam, cInputs, pInputs, sizeof(TOUCHINPUT))) return;
for (UINT i = 0; i < cInputs; i++)
{
TOUCHINPUT touch = pInputs[i];
POINT p;
p.x = touch.x / 100;
p.y = touch.y / 100;
ScreenToClient(_currentWindow, &p);
if ((touch.dwFlags & TOUCHEVENTF_DOWN) != 0)
{
_pointerBeganFunc(touch.dwID, PT_TOUCH, 3, Vector2(((float)p.x - _offsetX) * _scaleX, _screenHeight - ((float)p.y - _offsetY) * _scaleY));
}
else if ((touch.dwFlags & TOUCHEVENTF_UP) != 0)
{
_pointerEndedFunc(touch.dwID, PT_TOUCH, 4);
}
else if ((touch.dwFlags & TOUCHEVENTF_MOVE) != 0)
{
_pointerMovedFunc(touch.dwID, PT_TOUCH, 0, 0, Vector2(((float)p.x - _offsetX) * _scaleX, _screenHeight - ((float)p.y - _offsetY) * _scaleY));
}
}
CloseTouchInputHandle((HTOUCHINPUT)lParam);
delete[] pInputs;
}