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
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
|
/* ScummVM - Graphic Adventure Engine
*
* ScummVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
/*
* This code is based on Labyrinth of Time code with assistance of
*
* Copyright (c) 1993 Terra Nova Development
* Copyright (c) 2004 The Wyrmkeep Entertainment Co.
*
*/
#include "lab/mouse.h"
#include "lab/vga.h"
#include "lab/stddefines.h"
#include "lab/interface.h"
namespace Lab {
extern bool IsHiRes;
static bool LeftClick = false;
static bool RightClick = false;
static bool MouseHidden = true;
static int32 NumHidden = 1;
static Gadget *LastGadgetHit = NULL;
Gadget *ScreenGadgetList = NULL;
static byte MouseData[] = {1, 1, 0, 0, 0, 0, 0, 0, 0, 0,
1, 7, 1, 0, 0, 0, 0, 0, 0, 0,
1, 7, 7, 1, 0, 0, 0, 0, 0, 0,
1, 7, 7, 7, 1, 0, 0, 0, 0, 0,
1, 7, 7, 7, 7, 1, 0, 0, 0, 0,
1, 7, 7, 7, 7, 7, 1, 0, 0, 0,
1, 7, 7, 7, 7, 7, 7, 1, 0, 0,
1, 7, 7, 7, 7, 7, 7, 7, 1, 0,
1, 7, 7, 7, 7, 7, 1, 1, 1, 1,
1, 7, 7, 1, 7, 7, 1, 0, 0, 0,
1, 7, 1, 0, 1, 7, 7, 1, 0, 0,
1, 1, 0, 0, 1, 7, 7, 1, 0, 0,
0, 0, 0, 0, 0, 1, 7, 7, 1, 0,
0, 0, 0, 0, 0, 1, 7, 7, 1, 0,
0, 0, 0, 0, 0, 0, 1, 1, 0, 0};
#define MOUSE_WIDTH 10
#define MOUSE_HEIGHT 15
static Gadget *hitgad = NULL;
/*****************************************************************************/
/* Checks whether or not the cords fall within one of the gadgets in a list */
/* of gadgets. */
/*****************************************************************************/
static Gadget *checkGadgetHit(Gadget *gadlist, uint16 x, uint16 y) {
uint16 counter;
while (gadlist != NULL) {
if ((x >= gadlist->x) && (y >= gadlist->y) &&
(x <= (gadlist->x + gadlist->Im->Width)) &&
(y <= (gadlist->y + gadlist->Im->Height)) &&
!(GADGETOFF & gadlist->GadgetFlags)) {
if (IsHiRes) {
hitgad = gadlist;
} else {
mouseHide();
drawImage(gadlist->ImAlt, gadlist->x, gadlist->y);
mouseShow();
for (counter = 0; counter < 3; counter++)
waitTOF();
mouseHide();
drawImage(gadlist->Im, gadlist->x, gadlist->y);
mouseShow();
}
return gadlist;
} else {
gadlist = gadlist->NextGadget;
}
}
return NULL;
}
void attachGadgetList(Gadget *GadList) {
if (ScreenGadgetList != GadList)
LastGadgetHit = NULL;
ScreenGadgetList = GadList;
}
void mouseHandler(int32 flag, int32 mouseX, int32 mouseY) {
if (NumHidden >= 2)
return;
if (!IsHiRes)
mouseX /= 2;
if (flag & 0x02) { /* Left mouse button click */
Gadget *tmp = NULL;
if (ScreenGadgetList)
tmp = checkGadgetHit(ScreenGadgetList, mouseX, mouseY);
if (tmp)
LastGadgetHit = tmp;
else
LeftClick = true;
}
if (flag & 0x08) /* Right mouse button click */
RightClick = true;
}
void updateMouse() {
uint16 counter;
bool doUpdateDisplay = false;
if (!MouseHidden)
doUpdateDisplay = true;
if (hitgad) {
mouseHide();
drawImage(hitgad->ImAlt, hitgad->x, hitgad->y);
mouseShow();
for (counter = 0; counter < 3; counter++)
waitTOF();
mouseHide();
drawImage(hitgad->Im, hitgad->x, hitgad->y);
mouseShow();
doUpdateDisplay = true;
hitgad = NULL;
}
if (doUpdateDisplay)
WSDL_UpdateScreen();
}
/*****************************************************************************/
/* Initializes the mouse. */
/*****************************************************************************/
void initMouse() {
g_system->setMouseCursor(MouseData, MOUSE_WIDTH, MOUSE_HEIGHT, 0, 0, 0);
g_system->showMouse(false);
mouseMove(0, 0);
}
/*****************************************************************************/
/* Shows the mouse. */
/*****************************************************************************/
void mouseShow() {
if (NumHidden)
NumHidden--;
if ((NumHidden == 0) && MouseHidden) {
WSDL_ProcessInput(0);
MouseHidden = false;
}
g_system->showMouse(true);
}
/*****************************************************************************/
/* Hides the mouse. */
/*****************************************************************************/
void mouseHide() {
NumHidden++;
if (NumHidden && !MouseHidden) {
MouseHidden = true;
g_system->showMouse(false);
}
}
extern uint32 _mouseX;
extern uint32 _mouseY;
/*****************************************************************************/
/* Gets the current mouse co-ordinates. NOTE: On IBM version, will scale */
/* from virtual to screen co-ordinates automatically. */
/*****************************************************************************/
void mouseXY(uint16 *x, uint16 *y) {
*x = (uint16)_mouseX;
*y = (uint16)_mouseY;
if (!IsHiRes)
(*x) /= 2;
}
/*****************************************************************************/
/* Moves the mouse to new co-ordinates. */
/*****************************************************************************/
void mouseMove(uint16 x, uint16 y) {
if (!IsHiRes)
x *= 2;
g_system->warpMouse(x, y);
if (!MouseHidden)
WSDL_ProcessInput(0);
}
/*****************************************************************************/
/* Checks whether or not the mouse buttons have been pressed, and the last */
/* co-ordinates of the button press. leftbutton tells whether to check the */
/* left or right button. */
/*****************************************************************************/
bool mouseButton(uint16 *x, uint16 *y, bool leftbutton) {
if (leftbutton) {
if (LeftClick) {
*x = (!IsHiRes) ? (uint16)_mouseX / 2 : (uint16)_mouseX;
*y = (uint16)_mouseY;
LeftClick = false;
return true;
}
} else {
if (RightClick) {
*x = (!IsHiRes) ? (uint16)_mouseX / 2 : (uint16)_mouseX;
*y = (uint16)_mouseY;
RightClick = false;
return true;
}
}
return false;
}
Gadget *mouseGadget() {
Gadget *Temp = LastGadgetHit;
LastGadgetHit = NULL;
return Temp;
}
} // End of namespace Lab
|