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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
|
/*
Microtouch touch screen controller
Written by Mariusz Wojcieszek
Notes/ToDo:
- calibration mode (command CX)
- only tablet format and decimal format are supported for returning touch screen state
*/
#include "emu.h"
#include "microtch.h"
#define LOG 0
static struct
{
UINT8 rx_buffer[16];
int rx_buffer_ptr;
emu_timer* timer;
UINT8 tx_buffer[16];
UINT8 tx_buffer_num;
UINT8 tx_buffer_ptr;
int reset_done;
int format_tablet;
int format_decimal;
int mode_inactive;
int mode_stream;
int last_touch_state;
int last_x;
int last_y;
microtouch_tx_func tx_callback;
microtouch_touch_func touch_callback;
} microtouch;
static int microtouch_check_command( const char* commandtocheck, int command_len, UINT8* command_data )
{
if ( (command_len == (strlen(commandtocheck) + 2)) &&
(command_data[0] == 0x01) &&
(strncmp(commandtocheck, (const char*)command_data + 1, strlen(commandtocheck)) == 0) &&
(command_data[command_len-1] == 0x0d) )
{
return 1;
}
else
{
return 0;
}
}
static void microtouch_send_format_table_packet(UINT8 flag, int x, int y)
{
microtouch.tx_buffer[microtouch.tx_buffer_num++] = flag;
// lower byte (7bits) of x coordinate
microtouch.tx_buffer[microtouch.tx_buffer_num++] = x & 0x7f;
// higher byte (7bits) of x coordinate
microtouch.tx_buffer[microtouch.tx_buffer_num++] = (x >> 7) & 0x7f;
// lower byte (7bits) of y coordinate
microtouch.tx_buffer[microtouch.tx_buffer_num++] = y & 0x7f;
// higher byte (7bits) of y coordinate
microtouch.tx_buffer[microtouch.tx_buffer_num++] = (y >> 7) & 0x7f;
};
static void microtouch_send_format_decimal_packet(int x, int y)
{
int decx, decy;
decx = x / 16;
if ( decx > 999 )
decx = 999;
decy = y / 16;
if ( decy > 999 )
decy = 999;
// header byte
microtouch.tx_buffer[microtouch.tx_buffer_num++] = 0x01;
// x coordinate in decimal mode
microtouch.tx_buffer[microtouch.tx_buffer_num++] = (decx / 100) + '0';
microtouch.tx_buffer[microtouch.tx_buffer_num++] = ((decx / 10) % 10) + '0';
microtouch.tx_buffer[microtouch.tx_buffer_num++] = (decx % 10) + '0';
// comma (separator)
microtouch.tx_buffer[microtouch.tx_buffer_num++] = ',';
// y coordinate in decimal mode
microtouch.tx_buffer[microtouch.tx_buffer_num++] = (decy / 100) + '0';
microtouch.tx_buffer[microtouch.tx_buffer_num++] = ((decy / 10) % 10) + '0';
microtouch.tx_buffer[microtouch.tx_buffer_num++] = (decy % 10) + '0';
// terminator
microtouch.tx_buffer[microtouch.tx_buffer_num++] = 0x0d;
}
static TIMER_CALLBACK(microtouch_timer_callback)
{
if ( microtouch.tx_buffer_ptr < microtouch.tx_buffer_num )
{
microtouch.tx_callback( machine, microtouch.tx_buffer[microtouch.tx_buffer_ptr++] );
if ( microtouch.tx_buffer_ptr == microtouch.tx_buffer_num )
{
microtouch.tx_buffer_ptr = microtouch.tx_buffer_num = 0;
}
return;
}
if ( (microtouch.reset_done == 0) ||
((microtouch.format_tablet == 0) && (microtouch.format_decimal == 0)) ||
(microtouch.mode_inactive == 1) ||
(microtouch.mode_stream == 0) )
{
return;
}
// send format tablet packet
if ( input_port_read(machine, "TOUCH") & 0x01 )
{
int tx = input_port_read(machine, "TOUCH_X");
int ty = input_port_read(machine, "TOUCH_Y");
if ( microtouch.touch_callback == NULL ||
microtouch.touch_callback( machine, &tx, &ty ) != 0 )
{
ty = 0x4000 - ty;
if ( microtouch.format_tablet )
{
microtouch_send_format_table_packet(0xc8, tx, ty);
}
else if ( microtouch.format_decimal )
{
microtouch_send_format_decimal_packet(tx, ty);
}
microtouch.last_touch_state = 1;
microtouch.last_x = tx;
microtouch.last_y = ty;
}
}
else
{
if ( microtouch.last_touch_state == 1 )
{
microtouch.last_touch_state = 0;
if ( microtouch.format_tablet )
{
microtouch_send_format_table_packet(0x88, microtouch.last_x, microtouch.last_y);
}
else if ( microtouch.format_decimal )
{
microtouch_send_format_decimal_packet(microtouch.last_x, microtouch.last_y);
}
}
}
};
void microtouch_init(running_machine *machine, microtouch_tx_func tx_cb, microtouch_touch_func touch_cb)
{
memset(µtouch, 0, sizeof(microtouch));
microtouch.last_touch_state = -1;
microtouch.tx_callback = tx_cb;
microtouch.touch_callback = touch_cb;
microtouch.timer = timer_alloc(machine, microtouch_timer_callback, NULL);
timer_adjust_periodic(microtouch.timer, ATTOTIME_IN_HZ(167*5), 0, ATTOTIME_IN_HZ(167*5));
state_save_register_item(machine, "microtouch", NULL, 0, microtouch.reset_done);
state_save_register_item(machine, "microtouch", NULL, 0, microtouch.format_tablet);
state_save_register_item(machine, "microtouch", NULL, 0, microtouch.mode_inactive);
state_save_register_item(machine, "microtouch", NULL, 0, microtouch.mode_stream);
state_save_register_item(machine, "microtouch", NULL, 0, microtouch.last_touch_state);
state_save_register_item(machine, "microtouch", NULL, 0, microtouch.last_x);
state_save_register_item(machine, "microtouch", NULL, 0, microtouch.last_y);
state_save_register_item_array(machine, "microtouch", NULL, 0, microtouch.rx_buffer);
state_save_register_item(machine, "microtouch", NULL, 0, microtouch.rx_buffer_ptr);
state_save_register_item_array(machine, "microtouch", NULL, 0, microtouch.tx_buffer);
state_save_register_item(machine, "microtouch", NULL, 0, microtouch.tx_buffer_num);
state_save_register_item(machine, "microtouch", NULL, 0, microtouch.tx_buffer_ptr);
state_save_register_item(machine, "microtouch", NULL, 0, microtouch.format_decimal);
};
void microtouch_rx(int count, UINT8* data)
{
int i;
for ( i = 0; (i < count) && ((microtouch.rx_buffer_ptr + i) < 16); i++ )
{
microtouch.rx_buffer[i+microtouch.rx_buffer_ptr] = data[i];
microtouch.rx_buffer_ptr++;
}
if (microtouch.rx_buffer_ptr > 0 && (microtouch.rx_buffer[microtouch.rx_buffer_ptr-1] == 0x0d))
{
if (LOG)
{
char command[16];
memset(command, 0, sizeof(command));
strncpy( command, (const char*)microtouch.rx_buffer + 1, microtouch.rx_buffer_ptr - 2 );
logerror("Microtouch: received command %s\n", command);
}
// check command
if ( microtouch_check_command( "MS", microtouch.rx_buffer_ptr, microtouch.rx_buffer ) )
{
microtouch.mode_stream = 1;
microtouch.mode_inactive = 0;
}
else if ( microtouch_check_command( "MI", microtouch.rx_buffer_ptr, microtouch.rx_buffer ) )
{
microtouch.mode_inactive = 1;
}
else if ( microtouch_check_command( "R", microtouch.rx_buffer_ptr, microtouch.rx_buffer ) )
{
microtouch.tx_buffer_num = 0;
microtouch.reset_done = 1;
}
else if ( microtouch_check_command( "FT", microtouch.rx_buffer_ptr, microtouch.rx_buffer ) )
{
microtouch.format_tablet = 1;
}
else if ( microtouch_check_command( "FD", microtouch.rx_buffer_ptr, microtouch.rx_buffer ) )
{
microtouch.format_decimal = 1;
}
// send response
microtouch.tx_buffer[microtouch.tx_buffer_num++] = 0x01;
microtouch.tx_buffer[microtouch.tx_buffer_num++] = 0x30;
microtouch.tx_buffer[microtouch.tx_buffer_num++] = 0x0d;
microtouch.rx_buffer_ptr = 0;
}
};
INPUT_PORTS_START(microtouch)
PORT_START("TOUCH")
PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_BUTTON1 ) PORT_NAME( "Touch screen" )
PORT_START("TOUCH_X")
PORT_BIT( 0x3fff, 0x2000, IPT_LIGHTGUN_X ) PORT_CROSSHAIR(X, 1.0, 0.0, 0) PORT_SENSITIVITY(45) PORT_KEYDELTA(15)
PORT_START("TOUCH_Y")
PORT_BIT( 0x3fff, 0x2000, IPT_LIGHTGUN_Y ) PORT_CROSSHAIR(Y, 1.0, 0.0, 0) PORT_SENSITIVITY(45) PORT_KEYDELTA(15)
INPUT_PORTS_END
|