2 * Copyright (c) 2009, Wei Mingzhi <whistler@openoffice.org>.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, see <http://www.gnu.org/licenses>.
18 * this is only pure emulation code to handle analogs,
19 * extracted from dfinput.
24 #include "psemu_plugin_defs.h"
35 CMD_READ_DATA_AND_VIBRATE = 0x42,
36 CMD_CONFIG_MODE = 0x43,
37 CMD_SET_MODE_AND_LOCK = 0x44,
38 CMD_QUERY_MODEL_AND_MODE = 0x45,
39 CMD_QUERY_ACT = 0x46, // ??
40 CMD_QUERY_COMB = 0x47, // ??
41 CMD_QUERY_MODE = 0x4C, // QUERY_MODE ??
42 CMD_VIBRATION_TOGGLE = 0x4D,
52 static uint8_t stdpar[2][8] = {
53 {0xFF, 0x5A, 0xFF, 0xFF, 0x80, 0x80, 0x80, 0x80},
54 {0xFF, 0x5A, 0xFF, 0xFF, 0x80, 0x80, 0x80, 0x80}
57 static uint8_t unk46[2][8] = {
58 {0xFF, 0x5A, 0x00, 0x00, 0x01, 0x02, 0x00, 0x0A},
59 {0xFF, 0x5A, 0x00, 0x00, 0x01, 0x02, 0x00, 0x0A}
62 static uint8_t unk47[2][8] = {
63 {0xFF, 0x5A, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00},
64 {0xFF, 0x5A, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00}
67 static uint8_t unk4c[2][8] = {
68 {0xFF, 0x5A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
69 {0xFF, 0x5A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}
72 static uint8_t unk4d[2][8] = {
73 {0xFF, 0x5A, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF},
74 {0xFF, 0x5A, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF}
77 static uint8_t stdcfg[2][8] = {
78 {0xFF, 0x5A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
79 {0xFF, 0x5A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}
82 static uint8_t stdmode[2][8] = {
83 {0xFF, 0x5A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
84 {0xFF, 0x5A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}
87 static uint8_t stdmodel[2][8] = {
90 0x01, // 03 - dualshock2, 01 - dualshock
91 0x02, // number of modes
92 0x01, // current mode: 01 - analog, 00 - digital
98 0x01, // 03 - dualshock2, 01 - dualshock
99 0x02, // number of modes
100 0x01, // current mode: 01 - analog, 00 - digital
108 static uint8_t do_cmd(void)
110 PadDataS *pad = &padstate[CurPad].pad;
111 int pad_num = CurPad;
115 case CMD_SET_MODE_AND_LOCK:
116 buf = stdmode[pad_num];
119 case CMD_QUERY_MODEL_AND_MODE:
120 buf = stdmodel[pad_num];
121 buf[4] = padstate[pad_num].PadMode;
125 buf = unk46[pad_num];
129 buf = unk47[pad_num];
133 buf = unk4c[pad_num];
136 case CMD_VIBRATION_TOGGLE:
137 buf = unk4d[pad_num];
140 case CMD_CONFIG_MODE:
141 if (padstate[pad_num].ConfigMode) {
142 buf = stdcfg[pad_num];
147 case CMD_READ_DATA_AND_VIBRATE:
149 buf = stdpar[pad_num];
151 buf[2] = pad->buttonStatus;
152 buf[3] = pad->buttonStatus >> 8;
154 if (padstate[pad_num].PadMode == 1) {
155 buf[4] = pad->rightJoyX;
156 buf[5] = pad->rightJoyY;
157 buf[6] = pad->leftJoyX;
158 buf[7] = pad->leftJoyY;
163 return padstate[pad_num].PadID;
167 static void do_cmd2(unsigned char value)
170 case CMD_CONFIG_MODE:
171 padstate[CurPad].ConfigMode = value;
174 case CMD_SET_MODE_AND_LOCK:
175 padstate[CurPad].PadMode = value;
176 padstate[CurPad].PadID = value ? 0x73 : 0x41;
187 case 1: // Param std conf change
197 case 0: // mode 0 - digital mode
198 buf[5] = PSE_PAD_TYPE_STANDARD;
201 case 1: // mode 1 - analog mode
202 buf[5] = PSE_PAD_TYPE_ANALOGPAD;
209 static void do_vibration(unsigned char value)
215 case CMD_READ_DATA_AND_VIBRATE:
216 for (i = 0; i < 2; i++) {
217 if (padstate[CurPad].pad.Vib[i] == CurByte
218 && padstate[CurPad].pad.VibF[i] != value) {
219 padstate[CurPad].pad.VibF[i] = value;
224 if (!in_enable_vibration || !changed)
227 plat_trigger_vibrate(CurPad,
228 padstate[CurPad].pad.VibF[0],
229 padstate[CurPad].pad.VibF[1]);
231 case CMD_VIBRATION_TOGGLE:
232 for (i = 0; i < 2; i++) {
233 if (padstate[CurPad].pad.Vib[i] == CurByte)
237 padstate[CurPad].pad.Vib[value] = CurByte;
238 if((padstate[CurPad].PadID & 0x0f) < (CurByte - 1) / 2) {
239 padstate[CurPad].PadID = (padstate[CurPad].PadID & 0xf0) + (CurByte - 1) / 2;
248 unsigned char PADpoll_(unsigned char value);
249 unsigned char PADpoll(unsigned char value) {
250 unsigned char b = CurByte, r = PADpoll_(value);
251 printf("poll[%d] %02x %02x\n", b, value, r);
254 #define PADpoll PADpoll_
257 #ifndef HAVE_LIBRETRO
258 unsigned char PADpoll_pad(unsigned char value) {
263 // Don't enable Analog/Vibration for a standard pad
264 if (padstate[CurPad].pad.controllerType != PSE_PAD_TYPE_ANALOGPAD)
265 CurCmd = CMD_READ_DATA_AND_VIBRATE;
270 if (CurByte >= CmdLen)
271 return 0xff; // verified
276 if (padstate[CurPad].pad.controllerType == PSE_PAD_TYPE_ANALOGPAD)
279 return buf[CurByte++];
282 unsigned char PADstartPoll_pad(int pad) {
287 PAD1_readPort1(&padstate[0].pad);
289 PAD2_readPort2(&padstate[1].pad);
298 PAD1_readPort1(&padstate[0].pad);
299 PAD2_readPort2(&padstate[1].pad);
301 for (i = 0; i < 2; i++) {
302 padstate[i].PadID = padstate[i].pad.controllerType == PSE_PAD_TYPE_ANALOGPAD ? 0x73 : 0x41;
303 padstate[i].PadMode = padstate[i].pad.controllerType == PSE_PAD_TYPE_ANALOGPAD;