aboutsummaryrefslogtreecommitdiff
path: root/engines/hugo/mouse.cpp
blob: 581a455469a19a84af8165f703d35c03ec3c7dab (plain)
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
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
/* 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.
 *
 * $URL$
 * $Id$
 *
 */

/*
 * This code is based on original Hugo Trilogy source code
 *
 * Copyright (c) 1989-1995 David P. Gray
 *
 */

// mouse.cpp : Handle all mouse activity

#include "common/system.h"

#include "hugo/game.h"
#include "hugo/hugo.h"
#include "hugo/mouse.h"
#include "hugo/global.h"
#include "hugo/schedule.h"
#include "hugo/display.h"
#include "hugo/inventory.h"
#include "hugo/route.h"
#include "hugo/util.h"

namespace Hugo {

#define EXIT_HOTSPOT   -4                           // Cursor over Exit hotspot
#define CURSOR_NAME    2                            // Index of name used under cursor
#define CURSOR_NOCHAR  '~'                          // Don't show name of object under cursor
#define SX_OFF         10                           // Cursor offset to name string
#define SY_OFF         -2                           // Cursor offset to name string
#define IX_OFF         8                            // Cursor to icon image (dib coords)
#define IY_OFF         10                           // Cursor to icon image (dib coords)

enum seqTextMouse {
	kMsNoWayText = 0,
	kMsExit      = 1
};

MouseHandler::MouseHandler(HugoEngine &vm) : _vm(vm) {
}

// Shadow-blit supplied string into dib_a at cx,cy and add to display list
void MouseHandler::cursorText(char *buffer, int16 cx, int16 cy, uif_t fontId, int16 color) {

	debugC(1, kDebugMouse, "cursorText(%s, %d, %d, %d, %d)", buffer, cx, cy, fontId, color);

	if (_vm.getPlatform() == Common::kPlatformWindows)
		_vm.screen().loadFont(fontId);

	// Find bounding rect for string
	int16 sdx = _vm.screen().stringLength(buffer);
	int16 sdy = _vm.screen().fontHeight() + 1;                      // + 1 for shadow
	int16 sx  = (cx < XPIX / 2) ? cx + SX_OFF : cx - sdx - SX_OFF / 2;
	int16 sy  = cy + SY_OFF;

	// Display the string and add rect to display list
	_vm.screen().shadowStr(sx, sy, buffer, _TBRIGHTWHITE);
	_vm.screen().displayList(D_ADD, sx, sy, sdx, sdy);
}


// Find the exit hotspot containing cx, cy.
// Return hotspot index or -1 if not found.
int16 MouseHandler::findExit(int16 cx, int16 cy) {
	int i;
	hotspot_t *hotspot;

	debugC(2, kDebugMouse, "findExit(%d, %d)", cx, cy);

	for (i = 0, hotspot = _vm._hotspots; hotspot->screenIndex >= 0; i++, hotspot++)
		if (hotspot->screenIndex == *_vm._screen_p)
			if (cx >= hotspot->x1 && cx <= hotspot->x2 && cy >= hotspot->y1 && cy <= hotspot->y2)
				return(i);
	return(-1);
}

// Process a mouse right click at coord cx, cy over object objid
void MouseHandler::processRightClick(int16 objId, int16 cx, int16 cy) {
	object_t *obj;
	int16     x, y;
	bool      foundFl = false;                      // TRUE if route found to object

	debugC(1, kDebugMouse, "Process_rclick(%d, %d, %d)", objId, cx, cy);

	status_t &gameStatus = _vm.getGameStatus();

	if (gameStatus.storyModeFl || _vm._hero->pathType == QUIET)     // Make sure user has control
		return;

	// Check if this was over iconbar
	if (gameStatus.inventoryState == I_ACTIVE && cy < INV_DY + DIBOFF_Y) { // Clicked over iconbar object
		if (gameStatus.inventoryObjId == -1)
			gameStatus.inventoryObjId = objId;      // Not using so select new object
		else if (gameStatus.inventoryObjId == objId)
			gameStatus.inventoryObjId = -1;     // Same icon - deselect it
		else
			_vm.useObject(objId);               // Use status.objid on object
	} else {                                        // Clicked over viewport object
		obj = &_vm._objects[objId];
		switch (obj->viewx) {                       // Where to walk to
		case -1:                                    // Walk to object position
			if (_vm.findObjectSpace(obj, &x, &y))
				foundFl = _vm.route().startRoute(GO_GET, objId, x, y);
			if (!foundFl)                               // Can't get there, try to use from here
				_vm.useObject(objId);
			break;
		case 0:                                     // Immediate use
			_vm.useObject(objId);                   // Pick up or use object
			break;
		default:                                    // Walk to view point if possible
			if (!_vm.route().startRoute(GO_GET, objId, obj->viewx, obj->viewy))
				if (_vm._hero->cycling == INVISIBLE)    // If invisible do
					_vm.useObject(objId);           // immediate use
				else
					Utils::Box(BOX_ANY, _vm._textMouse[kMsNoWayText]);      // Can't get there
			break;
		}
	}
}

// Process a left mouse click over:
// 1.  An icon - show description
// 2.  An object - walk to and show description
// 3.  An icon scroll arrow - scroll the iconbar
// 4.  Nothing - attempt to walk there
// 5.  Exit - walk to exit hotspot
void MouseHandler::processLeftClick(int16 objId, int16 cx, int16 cy) {
	int16 i, x, y;
	object_t *obj;
	bool foundFl = false;                               // TRUE if route found to object

	debugC(1, kDebugMouse, "Process_lclick(%d, %d, %d)", objId, cx, cy);

	status_t &gameStatus = _vm.getGameStatus();

	if (gameStatus.storyModeFl || _vm._hero->pathType == QUIET)     // Make sure user has control
		return;

	switch (objId) {
	case -1:                                        // Empty space - attempt to walk there
		_vm.route().startRoute(GO_SPACE, 0, cx, cy);
		break;
	case LEFT_ARROW:                                // A scroll arrow - scroll the iconbar
	case RIGHT_ARROW:
		// Scroll the iconbar and display results
		_vm.inventory().processInventory(objId == LEFT_ARROW ? INV_LEFT : INV_RIGHT);
		_vm.screen().moveImage(_vm.screen().getIconBuffer(), 0, 0, XPIX, INV_DY, XPIX, _vm.screen().getFrontBuffer(), 0, DIBOFF_Y, XPIX);
		_vm.screen().moveImage(_vm.screen().getIconBuffer(), 0, 0, XPIX, INV_DY, XPIX, _vm.screen().getBackBuffer(), 0, DIBOFF_Y, XPIX);
		_vm.screen().displayList(D_ADD, 0, DIBOFF_Y, XPIX, INV_DY);
		break;
	case EXIT_HOTSPOT:                              // Walk to exit hotspot
		i = findExit(cx, cy);
		x = _vm._hotspots[i].viewx;
		y = _vm._hotspots[i].viewy;
		if (x >= 0) {                               // Hotspot refers to an exit
			// Special case of immediate exit
			if (gameStatus.jumpExitFl) {
				// Get rid of iconbar if necessary
				if (gameStatus.inventoryState != I_OFF)
					gameStatus.inventoryState = I_UP;
				_vm.scheduler().insertActionList(_vm._hotspots[i].actIndex);
			} else {    // Set up route to exit spot
				if (_vm._hotspots[i].direction == Common::KEYCODE_RIGHT)
					x -= HERO_MAX_WIDTH;
				else if (_vm._hotspots[i].direction == Common::KEYCODE_LEFT)
					x += HERO_MAX_WIDTH;
				if (!_vm.route().startRoute(GO_EXIT, i, x, y))
					Utils::Box(BOX_ANY, _vm._textMouse[kMsNoWayText]);      // Can't get there
			}

			// Get rid of any attached icon
			gameStatus.inventoryObjId = -1;
		}
		break;
	default:                                        // Look at an icon or object
		obj = &_vm._objects[objId];

		// Over iconbar - immediate description
		if (gameStatus.inventoryState == I_ACTIVE && cy < INV_DY + DIBOFF_Y)
			_vm.lookObject(obj);
		else {
			switch (obj->viewx) {                   // Clicked over viewport object
			case -1:                                // Walk to object position
				if (_vm.findObjectSpace(obj, &x, &y))
					foundFl = _vm.route().startRoute(GO_LOOK, objId, x, y);
				if (!foundFl)                           // Can't get there, immediate description
					_vm.lookObject(obj);
				break;
			case 0:                                 // Immediate description
				_vm.lookObject(obj);
				break;
			default:                                // Walk to view point if possible
				if (!_vm.route().startRoute(GO_LOOK, objId, obj->viewx, obj->viewy))
					if (_vm._hero->cycling == INVISIBLE)    // If invisible do
						_vm.lookObject(obj);            // immediate decription
					else
						Utils::Box(BOX_ANY, _vm._textMouse[kMsNoWayText]);  // Can't get there
				break;
			}
		}
		break;
	}
}

// Process mouse activity
void MouseHandler::mouseHandler() {
	int16 iconId;                                   // Find index of dragged icon
	int   iconx, icony;                             // Icon position (in dib_a)
	int16 ux, uy;                                   // Icon position (in dib_u)
	int16 objId = -1;                               // Current source object
	char *name;                                     // Name of object to display

	debugC(2, kDebugMouse, "mouseHandler");

	int16 cx = _vm.getMouseX();
	int16 cy = _vm.getMouseY();

	status_t &gameStatus = _vm.getGameStatus();

	gameStatus.cx = cx;                                 // Save cursor coords
	gameStatus.cy = cy;

	// Don't process if outside client area
	if (cx < 0 || cx > XPIX || cy < DIBOFF_Y || cy > VIEW_DY + DIBOFF_Y)
		return;

	// Display dragged inventory icon if one currently selected
	if (gameStatus.inventoryObjId != -1) {
		// Find index of icon
		for (iconId = 0; iconId < _vm._maxInvent; iconId++)
			if (gameStatus.inventoryObjId == _vm._invent[iconId])
				break;

		// Compute source coordinates in dib_u
		ux = (iconId + NUM_ARROWS) * INV_DX % XPIX;
		uy = (iconId + NUM_ARROWS) * INV_DX / XPIX * INV_DY;

		// Compute destination coordinates in dib_a
		iconx = cx + IX_OFF;
		icony = cy + IY_OFF;
		iconx = MAX(iconx, 0);                      // Keep within dib_a bounds
		iconx = MIN(iconx, XPIX - INV_DX);
		icony = MAX(icony, 0);
		icony = MIN(icony, YPIX - INV_DY);

		// Copy the icon and add to display list
		_vm.screen().moveImage(_vm.screen().getGUIBuffer(), ux, uy, INV_DX, INV_DY, XPIX, _vm.screen().getFrontBuffer(), iconx, icony, XPIX);
		_vm.screen().displayList(D_ADD, iconx, icony, INV_DX, INV_DY);
	}

	// Process cursor over an object or icon
	if (gameStatus.inventoryState == I_ACTIVE)      // Check inventory icon bar first
		objId = _vm.inventory().processInventory(INV_GET, cx, cy);
	if (objId == -1)                                // No match, check rest of view
		objId = _vm.findObject(cx, cy);
	if (objId >= 0) {                               // Got a match
		// Display object name next to cursor (unless CURSOR_NOCHAR)
		// Note test for swapped hero name
		name = _vm._arrayNouns[_vm._objects[objId == HERO ? _vm._heroImage : objId].nounIndex][CURSOR_NAME];
		if (name[0] != CURSOR_NOCHAR)
			cursorText(name, cx, cy, U_FONT8, _TBRIGHTWHITE);

		// Process right click over object in view or iconbar
		if (gameStatus.rightButtonFl)
			processRightClick(objId, cx, cy);
	}

	// Process cursor over an exit hotspot
	if (objId == -1) {
		int i = findExit(cx, cy);
		if (i != -1 && _vm._hotspots[i].viewx >= 0) {
			objId = EXIT_HOTSPOT;
			cursorText(_vm._textMouse[kMsExit], cx, cy, U_FONT8, _TBRIGHTWHITE);
		}
	}

	// Left click over icon, object or to move somewhere
	if (gameStatus.leftButtonFl)
		processLeftClick(objId, cx, cy);

	// Clear mouse click states
	gameStatus.leftButtonFl = false;
	gameStatus.rightButtonFl = false;
}

} // end of namespace Hugo