4c08b9e7 |
1 | /* |
5b568098 |
2 | * (C) GraÅžvydas "notaz" Ignotas, 2011 |
4c08b9e7 |
3 | * |
4 | * This work is licensed under the terms of any of these licenses |
5 | * (at your option): |
6 | * - GNU GPL, version 2 or later. |
7 | * - GNU LGPL, version 2.1 or later. |
8 | * See the COPYING file in the top-level directory. |
9 | */ |
10 | |
11 | #include "main.h" |
12 | |
13 | unsigned char CurPad, CurByte, CurCmd, CmdLen; |
14 | |
15 | /* since this is not a proper plugin, so we'll hook emu internals in a hackish way like this */ |
16 | extern void *PAD1_startPoll, *PAD1_poll; |
17 | extern void *PAD2_startPoll, *PAD2_poll; |
003cfc63 |
18 | extern unsigned char CALLBACK PAD1__startPoll(int pad); |
19 | extern unsigned char CALLBACK PAD2__startPoll(int pad); |
20 | extern unsigned char CALLBACK PAD1__poll(unsigned char value); |
21 | extern unsigned char CALLBACK PAD2__poll(unsigned char value); |
4c08b9e7 |
22 | |
5ced3945 |
23 | #if 0 //ndef HAVE_LIBRETRO |
46ea5a4e |
24 | |
4c08b9e7 |
25 | static int old_controller_type1 = -1, old_controller_type2 = -1; |
26 | |
27 | #define select_pad(n) \ |
28 | if (pad.controllerType != old_controller_type##n) \ |
29 | { \ |
30 | switch (pad.controllerType) \ |
31 | { \ |
32 | case PSE_PAD_TYPE_ANALOGPAD: \ |
33 | PAD##n##_startPoll = PADstartPoll_pad; \ |
34 | PAD##n##_poll = PADpoll_pad; \ |
35 | pad_init(); \ |
36 | break; \ |
37 | case PSE_PAD_TYPE_GUNCON: \ |
5b568098 |
38 | PAD##n##_startPoll = PADstartPoll_guncon; \ |
39 | PAD##n##_poll = PADpoll_guncon; \ |
40 | guncon_init(); \ |
41 | break; \ |
46ea5a4e |
42 | case PSE_PAD_TYPE_NEGCON: \ |
4c08b9e7 |
43 | case PSE_PAD_TYPE_GUN: \ |
44 | default: \ |
45 | PAD##n##_startPoll = PAD##n##__startPoll; \ |
46 | PAD##n##_poll = PAD##n##__poll; \ |
47 | break; \ |
48 | } \ |
49 | } |
e8d96071 |
50 | |
4c08b9e7 |
51 | void dfinput_activate(void) |
52 | { |
53 | PadDataS pad; |
54 | |
73d32d69 |
55 | pad.portMultitap = -1; |
56 | pad.requestPadIndex = 0; |
4c08b9e7 |
57 | PAD1_readPort1(&pad); |
58 | select_pad(1); |
59 | |
73d32d69 |
60 | pad.requestPadIndex = 1; |
4c08b9e7 |
61 | PAD2_readPort2(&pad); |
62 | select_pad(2); |
63 | } |
5b568098 |
64 | |
65 | #else // use libretro's libpcsxcore/plugins.c code |
66 | |
67 | void dfinput_activate(void) |
68 | { |
69 | } |
70 | |
71 | #endif |