]>
Commit | Line | Data |
---|---|---|
101ceb40 JS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: joystick.cpp | |
3 | // Purpose: wxJoystick class | |
4 | // Author: Ported to Linux by Guilhem Lavaux | |
5 | // Modified by: | |
6 | // Created: 05/23/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Guilhem Lavaux | |
627b2b2a | 9 | // Licence: wxWindows licence |
101ceb40 JS |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
14f355c2 | 12 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
101ceb40 JS |
13 | #pragma implementation "joystick.h" |
14 | #endif | |
2b510feb | 15 | |
14f355c2 VS |
16 | // for compilers that support precompilation, includes "wx.h". |
17 | #include "wx/wxprec.h" | |
18 | ||
5260937e | 19 | #include "wx/defs.h" |
2b510feb | 20 | |
bb462424 | 21 | #if wxUSE_JOYSTICK |
101ceb40 | 22 | |
5260937e VZ |
23 | #include "wx/joystick.h" |
24 | ||
101ceb40 JS |
25 | #include <linux/joystick.h> |
26 | #include <sys/types.h> | |
27 | #include <sys/stat.h> | |
28 | #include <sys/time.h> | |
29 | #include <sys/ioctl.h> | |
30 | #include <fcntl.h> | |
31 | #include <unistd.h> | |
2b510feb | 32 | |
101ceb40 JS |
33 | #include "wx/event.h" |
34 | #include "wx/window.h" | |
101ceb40 | 35 | |
a800dc50 RD |
36 | enum { |
37 | wxJS_AXIS_X = 0, | |
38 | wxJS_AXIS_Y, | |
39 | wxJS_AXIS_Z, | |
40 | wxJS_AXIS_RUDDER, | |
41 | wxJS_AXIS_U, | |
42 | wxJS_AXIS_V, | |
627b2b2a | 43 | |
a800dc50 RD |
44 | wxJS_AXIS_MAX = 32767, |
45 | wxJS_AXIS_MIN = -32767 | |
46 | }; | |
101ceb40 | 47 | |
101ceb40 | 48 | |
a800dc50 | 49 | IMPLEMENT_DYNAMIC_CLASS(wxJoystick, wxObject) |
101ceb40 | 50 | |
101ceb40 JS |
51 | |
52 | //////////////////////////////////////////////////////////////////////////// | |
a800dc50 | 53 | // Background thread for reading the joystick device |
101ceb40 | 54 | //////////////////////////////////////////////////////////////////////////// |
101ceb40 | 55 | |
a800dc50 RD |
56 | class wxJoystickThread : public wxThread |
57 | { | |
58 | public: | |
59 | wxJoystickThread(int device, int joystick); | |
60 | void* Entry(); | |
61 | ||
62 | private: | |
63 | int m_device; | |
64 | int m_joystick; | |
65 | wxPoint m_lastposition; | |
627b2b2a VZ |
66 | int m_axe[15]; |
67 | int m_buttons; | |
a800dc50 | 68 | wxWindow* m_catchwin; |
627b2b2a | 69 | int m_polling; |
a800dc50 RD |
70 | |
71 | friend class wxJoystick; | |
72 | }; | |
73 | ||
74 | ||
75 | wxJoystickThread::wxJoystickThread(int device, int joystick) | |
76 | : m_device(device), | |
77 | m_joystick(joystick), | |
78 | m_lastposition(wxDefaultPosition), | |
79 | m_buttons(0), | |
80 | m_catchwin(NULL), | |
81 | m_polling(0) | |
627b2b2a | 82 | { |
a800dc50 RD |
83 | for (int i=0; i<15; i++) |
84 | m_axe[i] = 0; | |
85 | } | |
86 | ||
87 | ||
88 | void* wxJoystickThread::Entry() | |
89 | { | |
90 | struct js_event j_evt; | |
91 | fd_set read_fds; | |
92 | struct timeval time_out = {0, 0}; | |
93 | ||
94 | FD_ZERO(&read_fds); | |
627b2b2a VZ |
95 | while (true) |
96 | { | |
a800dc50 RD |
97 | if (TestDestroy()) |
98 | break; | |
99 | ||
100 | // We use select when either polling or 'blocking' as even in the | |
101 | // blocking case we need to check TestDestroy periodically | |
102 | if (m_polling) | |
103 | time_out.tv_usec = m_polling * 1000; | |
104 | else | |
105 | time_out.tv_usec = 10 * 1000; // check at least every 10 msec in blocking case | |
627b2b2a | 106 | |
a800dc50 RD |
107 | FD_SET(m_device, &read_fds); |
108 | select(m_device+1, &read_fds, NULL, NULL, &time_out); | |
109 | if (FD_ISSET(m_device, &read_fds)) | |
110 | { | |
111 | memset(&j_evt, 0, sizeof(j_evt)); | |
112 | read(m_device, &j_evt, sizeof(j_evt)); | |
113 | ||
114 | //printf("time: %d\t value: %d\t type: %d\t number: %d\n", | |
115 | // j_evt.time, j_evt.value, j_evt.type, j_evt.number); | |
116 | ||
627b2b2a | 117 | wxJoystickEvent jwx_event; |
a800dc50 | 118 | |
627b2b2a VZ |
119 | if (j_evt.type & JS_EVENT_AXIS) |
120 | { | |
121 | m_axe[j_evt.number] = j_evt.value; | |
a800dc50 | 122 | |
627b2b2a VZ |
123 | switch (j_evt.number) |
124 | { | |
a800dc50 RD |
125 | case wxJS_AXIS_X: |
126 | m_lastposition.x = j_evt.value; | |
127 | jwx_event.SetEventType(wxEVT_JOY_MOVE); | |
128 | break; | |
129 | case wxJS_AXIS_Y: | |
130 | m_lastposition.y = j_evt.value; | |
131 | jwx_event.SetEventType(wxEVT_JOY_MOVE); | |
132 | break; | |
133 | case wxJS_AXIS_Z: | |
134 | jwx_event.SetEventType(wxEVT_JOY_ZMOVE); | |
135 | break; | |
136 | default: | |
137 | jwx_event.SetEventType(wxEVT_JOY_MOVE); | |
138 | // TODO: There should be a way to indicate that the event | |
139 | // is for some other axes. | |
140 | break; | |
a800dc50 | 141 | } |
627b2b2a VZ |
142 | } |
143 | ||
144 | if (j_evt.type & JS_EVENT_BUTTON) | |
145 | { | |
146 | if (j_evt.value) | |
147 | { | |
148 | m_buttons |= (1 << j_evt.number); | |
149 | jwx_event.SetEventType(wxEVT_JOY_BUTTON_DOWN); | |
150 | } | |
151 | else | |
152 | { | |
153 | m_buttons &= ~(1 << j_evt.number); | |
154 | jwx_event.SetEventType(wxEVT_JOY_BUTTON_UP); | |
a800dc50 RD |
155 | } |
156 | ||
627b2b2a VZ |
157 | jwx_event.SetButtonChange(j_evt.number); |
158 | ||
a800dc50 RD |
159 | jwx_event.SetTimestamp(j_evt.time); |
160 | jwx_event.SetJoystick(m_joystick); | |
161 | jwx_event.SetButtonState(m_buttons); | |
162 | jwx_event.SetPosition(m_lastposition); | |
163 | jwx_event.SetZPosition(m_axe[3]); | |
164 | jwx_event.SetEventObject(m_catchwin); | |
165 | ||
627b2b2a VZ |
166 | if (m_catchwin) |
167 | m_catchwin->AddPendingEvent(jwx_event); | |
a800dc50 | 168 | } |
a800dc50 | 169 | } |
101ceb40 | 170 | } |
627b2b2a | 171 | |
a800dc50 RD |
172 | close(m_device); |
173 | return NULL; | |
174 | } | |
175 | ||
176 | ||
177 | //////////////////////////////////////////////////////////////////////////// | |
178 | ||
179 | wxJoystick::wxJoystick(int joystick) | |
180 | : m_device(-1), | |
181 | m_joystick(joystick), | |
182 | m_thread(NULL) | |
183 | { | |
184 | wxString dev_name; | |
627b2b2a VZ |
185 | |
186 | // Assume it's the same device name on all Linux systems ... | |
187 | dev_name.Printf( wxT("/dev/js%d"), (joystick == wxJOYSTICK1) ? 0 : 1); | |
a800dc50 RD |
188 | m_device = open(dev_name.fn_str(), O_RDONLY); |
189 | ||
190 | if (m_device != -1) | |
191 | { | |
192 | m_thread = new wxJoystickThread(m_device, m_joystick); | |
193 | m_thread->Create(); | |
194 | m_thread->Run(); | |
101ceb40 | 195 | } |
101ceb40 JS |
196 | } |
197 | ||
a800dc50 RD |
198 | |
199 | wxJoystick::~wxJoystick() | |
200 | { | |
201 | ReleaseCapture(); | |
202 | if (m_thread) | |
203 | m_thread->Delete(); // It's detached so it will delete itself | |
204 | m_device = -1; | |
205 | } | |
206 | ||
207 | ||
101ceb40 JS |
208 | //////////////////////////////////////////////////////////////////////////// |
209 | // State | |
210 | //////////////////////////////////////////////////////////////////////////// | |
211 | ||
a800dc50 | 212 | wxPoint wxJoystick::GetPosition() const |
101ceb40 | 213 | { |
a800dc50 RD |
214 | wxPoint pos(wxDefaultPosition); |
215 | if (m_thread) pos = m_thread->m_lastposition; | |
216 | return pos; | |
101ceb40 JS |
217 | } |
218 | ||
a800dc50 | 219 | int wxJoystick::GetZPosition() const |
101ceb40 | 220 | { |
627b2b2a | 221 | if (m_thread) |
a800dc50 RD |
222 | return m_thread->m_axe[wxJS_AXIS_Z]; |
223 | return 0; | |
101ceb40 JS |
224 | } |
225 | ||
a800dc50 | 226 | int wxJoystick::GetButtonState() const |
101ceb40 | 227 | { |
627b2b2a | 228 | if (m_thread) |
a800dc50 RD |
229 | return m_thread->m_buttons; |
230 | return 0; | |
101ceb40 JS |
231 | } |
232 | ||
a800dc50 | 233 | int wxJoystick::GetPOVPosition() const |
101ceb40 | 234 | { |
a800dc50 | 235 | return -1; |
101ceb40 JS |
236 | } |
237 | ||
a800dc50 | 238 | int wxJoystick::GetPOVCTSPosition() const |
101ceb40 | 239 | { |
a800dc50 | 240 | return -1; |
101ceb40 JS |
241 | } |
242 | ||
a800dc50 | 243 | int wxJoystick::GetRudderPosition() const |
101ceb40 | 244 | { |
627b2b2a | 245 | if (m_thread) |
a800dc50 RD |
246 | return m_thread->m_axe[wxJS_AXIS_RUDDER]; |
247 | return 0; | |
101ceb40 JS |
248 | } |
249 | ||
a800dc50 | 250 | int wxJoystick::GetUPosition() const |
101ceb40 | 251 | { |
627b2b2a | 252 | if (m_thread) |
a800dc50 RD |
253 | return m_thread->m_axe[wxJS_AXIS_U]; |
254 | return 0; | |
101ceb40 JS |
255 | } |
256 | ||
a800dc50 | 257 | int wxJoystick::GetVPosition() const |
101ceb40 | 258 | { |
627b2b2a | 259 | if (m_thread) |
a800dc50 RD |
260 | return m_thread->m_axe[wxJS_AXIS_V]; |
261 | return 0; | |
101ceb40 JS |
262 | } |
263 | ||
a800dc50 | 264 | int wxJoystick::GetMovementThreshold() const |
101ceb40 | 265 | { |
a800dc50 | 266 | return 0; |
101ceb40 JS |
267 | } |
268 | ||
269 | void wxJoystick::SetMovementThreshold(int threshold) | |
270 | { | |
271 | } | |
272 | ||
273 | //////////////////////////////////////////////////////////////////////////// | |
274 | // Capabilities | |
275 | //////////////////////////////////////////////////////////////////////////// | |
276 | ||
a800dc50 | 277 | bool wxJoystick::IsOk() const |
101ceb40 | 278 | { |
a800dc50 | 279 | return (m_device != -1); |
101ceb40 JS |
280 | } |
281 | ||
a800dc50 | 282 | int wxJoystick::GetNumberJoysticks() const |
101ceb40 | 283 | { |
a800dc50 RD |
284 | wxString dev_name; |
285 | int fd, j; | |
101ceb40 | 286 | |
a800dc50 RD |
287 | for (j=0; j<4; j++) { |
288 | dev_name.Printf(wxT("/dev/js%d"), j); | |
289 | fd = open(dev_name.fn_str(), O_RDONLY); | |
290 | if (fd == -1) | |
291 | return j; | |
292 | close(fd); | |
293 | } | |
294 | return j; | |
101ceb40 JS |
295 | } |
296 | ||
a800dc50 | 297 | int wxJoystick::GetManufacturerId() const |
101ceb40 | 298 | { |
a800dc50 | 299 | return 0; |
101ceb40 JS |
300 | } |
301 | ||
a800dc50 | 302 | int wxJoystick::GetProductId() const |
101ceb40 | 303 | { |
a800dc50 | 304 | return 0; |
101ceb40 JS |
305 | } |
306 | ||
a800dc50 | 307 | wxString wxJoystick::GetProductName() const |
101ceb40 | 308 | { |
a800dc50 | 309 | char name[128]; |
627b2b2a | 310 | |
a800dc50 RD |
311 | if (ioctl(m_device, JSIOCGNAME(sizeof(name)), name) < 0) |
312 | strcpy(name, "Unknown"); | |
627b2b2a | 313 | return wxString(name, wxConvLibc); |
101ceb40 JS |
314 | } |
315 | ||
a800dc50 | 316 | int wxJoystick::GetXMin() const |
101ceb40 | 317 | { |
a800dc50 | 318 | return wxJS_AXIS_MIN; |
101ceb40 JS |
319 | } |
320 | ||
a800dc50 | 321 | int wxJoystick::GetYMin() const |
101ceb40 | 322 | { |
a800dc50 | 323 | return wxJS_AXIS_MIN; |
101ceb40 JS |
324 | } |
325 | ||
a800dc50 | 326 | int wxJoystick::GetZMin() const |
101ceb40 | 327 | { |
a800dc50 | 328 | return wxJS_AXIS_MIN; |
101ceb40 JS |
329 | } |
330 | ||
a800dc50 | 331 | int wxJoystick::GetXMax() const |
101ceb40 | 332 | { |
a800dc50 | 333 | return wxJS_AXIS_MAX; |
101ceb40 JS |
334 | } |
335 | ||
a800dc50 | 336 | int wxJoystick::GetYMax() const |
101ceb40 | 337 | { |
a800dc50 | 338 | return wxJS_AXIS_MAX; |
101ceb40 JS |
339 | } |
340 | ||
a800dc50 | 341 | int wxJoystick::GetZMax() const |
101ceb40 | 342 | { |
a800dc50 | 343 | return wxJS_AXIS_MAX; |
101ceb40 JS |
344 | } |
345 | ||
a800dc50 | 346 | int wxJoystick::GetNumberButtons() const |
101ceb40 | 347 | { |
a800dc50 | 348 | char nb=0; |
101ceb40 | 349 | |
a800dc50 RD |
350 | if (m_device != -1) |
351 | ioctl(m_device, JSIOCGBUTTONS, &nb); | |
101ceb40 | 352 | |
a800dc50 | 353 | return nb; |
101ceb40 JS |
354 | } |
355 | ||
a800dc50 | 356 | int wxJoystick::GetNumberAxes() const |
101ceb40 | 357 | { |
a800dc50 | 358 | char nb=0; |
101ceb40 | 359 | |
a800dc50 RD |
360 | if (m_device != -1) |
361 | ioctl(m_device, JSIOCGAXES, &nb); | |
101ceb40 | 362 | |
a800dc50 | 363 | return nb; |
101ceb40 JS |
364 | } |
365 | ||
a800dc50 | 366 | int wxJoystick::GetMaxButtons() const |
101ceb40 | 367 | { |
a800dc50 | 368 | return 15; // internal |
101ceb40 JS |
369 | } |
370 | ||
a800dc50 | 371 | int wxJoystick::GetMaxAxes() const |
101ceb40 | 372 | { |
a800dc50 | 373 | return 15; // internal |
101ceb40 JS |
374 | } |
375 | ||
a800dc50 | 376 | int wxJoystick::GetPollingMin() const |
101ceb40 | 377 | { |
a800dc50 | 378 | return 10; |
101ceb40 JS |
379 | } |
380 | ||
a800dc50 | 381 | int wxJoystick::GetPollingMax() const |
101ceb40 | 382 | { |
a800dc50 | 383 | return 1000; |
101ceb40 JS |
384 | } |
385 | ||
a800dc50 | 386 | int wxJoystick::GetRudderMin() const |
101ceb40 | 387 | { |
a800dc50 | 388 | return wxJS_AXIS_MIN; |
101ceb40 JS |
389 | } |
390 | ||
a800dc50 | 391 | int wxJoystick::GetRudderMax() const |
101ceb40 | 392 | { |
a800dc50 | 393 | return wxJS_AXIS_MAX; |
101ceb40 JS |
394 | } |
395 | ||
a800dc50 | 396 | int wxJoystick::GetUMin() const |
101ceb40 | 397 | { |
a800dc50 | 398 | return wxJS_AXIS_MIN; |
101ceb40 JS |
399 | } |
400 | ||
a800dc50 | 401 | int wxJoystick::GetUMax() const |
101ceb40 | 402 | { |
a800dc50 | 403 | return wxJS_AXIS_MAX; |
101ceb40 JS |
404 | } |
405 | ||
a800dc50 | 406 | int wxJoystick::GetVMin() const |
101ceb40 | 407 | { |
a800dc50 | 408 | return wxJS_AXIS_MIN; |
101ceb40 JS |
409 | } |
410 | ||
a800dc50 | 411 | int wxJoystick::GetVMax() const |
101ceb40 | 412 | { |
a800dc50 | 413 | return wxJS_AXIS_MAX; |
101ceb40 JS |
414 | } |
415 | ||
a800dc50 | 416 | bool wxJoystick::HasRudder() const |
101ceb40 | 417 | { |
a800dc50 | 418 | return GetNumberAxes() >= wxJS_AXIS_RUDDER; |
101ceb40 JS |
419 | } |
420 | ||
a800dc50 | 421 | bool wxJoystick::HasZ() const |
101ceb40 | 422 | { |
a800dc50 | 423 | return GetNumberAxes() >= wxJS_AXIS_Z; |
101ceb40 JS |
424 | } |
425 | ||
a800dc50 | 426 | bool wxJoystick::HasU() const |
101ceb40 | 427 | { |
a800dc50 | 428 | return GetNumberAxes() >= wxJS_AXIS_U; |
101ceb40 JS |
429 | } |
430 | ||
a800dc50 | 431 | bool wxJoystick::HasV() const |
101ceb40 | 432 | { |
a800dc50 | 433 | return GetNumberAxes() >= wxJS_AXIS_V; |
101ceb40 JS |
434 | } |
435 | ||
a800dc50 | 436 | bool wxJoystick::HasPOV() const |
101ceb40 | 437 | { |
a800dc50 | 438 | return false; |
101ceb40 JS |
439 | } |
440 | ||
a800dc50 | 441 | bool wxJoystick::HasPOV4Dir() const |
101ceb40 | 442 | { |
a800dc50 | 443 | return false; |
101ceb40 JS |
444 | } |
445 | ||
a800dc50 | 446 | bool wxJoystick::HasPOVCTS() const |
101ceb40 | 447 | { |
a800dc50 | 448 | return false; |
101ceb40 JS |
449 | } |
450 | ||
451 | //////////////////////////////////////////////////////////////////////////// | |
452 | // Operations | |
453 | //////////////////////////////////////////////////////////////////////////// | |
454 | ||
be5fced5 | 455 | bool wxJoystick::SetCapture(wxWindow* win, int pollingFreq) |
101ceb40 | 456 | { |
a800dc50 RD |
457 | if (m_thread) |
458 | { | |
459 | m_thread->m_catchwin = win; | |
460 | m_thread->m_polling = pollingFreq; | |
461 | return true; | |
462 | } | |
463 | return false; | |
101ceb40 JS |
464 | } |
465 | ||
a800dc50 | 466 | bool wxJoystick::ReleaseCapture() |
101ceb40 | 467 | { |
a800dc50 RD |
468 | if (m_thread) |
469 | { | |
470 | m_thread->m_catchwin = NULL; | |
471 | m_thread->m_polling = 0; | |
472 | return true; | |
473 | } | |
474 | return false; | |
101ceb40 | 475 | } |
f6bcfd97 | 476 | #endif // wxUSE_JOYSTICK |
101ceb40 | 477 |