2005-01-17 10:57:15 +00:00
|
|
|
/* Copyright (C) 1994-1998 Revolution Software Ltd.
|
|
|
|
* Copyright (C) 2003-2005 The ScummVM project
|
2003-07-28 01:44:38 +00:00
|
|
|
*
|
|
|
|
* 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*
|
|
|
|
* $Header$
|
|
|
|
*/
|
|
|
|
|
2003-11-16 14:18:29 +00:00
|
|
|
#include "common/stdafx.h"
|
|
|
|
#include "sword2/sword2.h"
|
2004-02-05 14:19:07 +00:00
|
|
|
#include "sword2/console.h"
|
|
|
|
#include "sword2/controls.h"
|
2003-10-28 19:51:30 +00:00
|
|
|
#include "sword2/defs.h"
|
2004-02-05 14:19:07 +00:00
|
|
|
#include "sword2/logic.h"
|
|
|
|
#include "sword2/maketext.h"
|
2005-02-19 14:02:16 +00:00
|
|
|
#include "sword2/mouse.h"
|
2004-02-05 14:19:07 +00:00
|
|
|
#include "sword2/resman.h"
|
2004-11-14 15:00:01 +00:00
|
|
|
#include "sword2/sound.h"
|
2003-09-19 16:08:54 +00:00
|
|
|
|
2003-10-04 00:52:27 +00:00
|
|
|
namespace Sword2 {
|
|
|
|
|
2005-02-19 14:02:16 +00:00
|
|
|
// Pointer resource id's
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2003-11-02 17:17:10 +00:00
|
|
|
enum {
|
|
|
|
CROSHAIR = 18,
|
|
|
|
EXIT0 = 788,
|
|
|
|
EXIT1 = 789,
|
|
|
|
EXIT2 = 790,
|
|
|
|
EXIT3 = 791,
|
|
|
|
EXIT4 = 792,
|
|
|
|
EXIT5 = 793,
|
|
|
|
EXIT6 = 794,
|
|
|
|
EXIT7 = 795,
|
|
|
|
EXITDOWN = 796,
|
|
|
|
EXITUP = 797,
|
|
|
|
MOUTH = 787,
|
|
|
|
NORMAL = 17,
|
|
|
|
PICKUP = 3099,
|
|
|
|
SCROLL_L = 1440,
|
|
|
|
SCROLL_R = 1441,
|
|
|
|
USE = 3100
|
|
|
|
};
|
2003-09-19 16:08:54 +00:00
|
|
|
|
2005-02-19 14:02:16 +00:00
|
|
|
Mouse::Mouse(Sword2Engine *vm) {
|
|
|
|
_vm = vm;
|
|
|
|
|
|
|
|
setPos(0, 0);
|
2005-04-11 06:25:05 +00:00
|
|
|
resetMouseList();
|
2005-02-19 14:02:16 +00:00
|
|
|
|
|
|
|
_mouseTouching = 0;
|
|
|
|
_oldMouseTouching = 0;
|
|
|
|
_menuSelectedPos = 0;
|
|
|
|
_examiningMenuIcon = false;
|
|
|
|
_mousePointerRes = 0;
|
|
|
|
_mouseMode = 0;
|
|
|
|
_mouseStatus = false;
|
|
|
|
_mouseModeLocked = false;
|
|
|
|
_currentLuggageResource = 0;
|
|
|
|
_oldButton = 0;
|
|
|
|
_buttonClick = 0;
|
|
|
|
_pointerTextBlocNo = 0;
|
|
|
|
_playerActivityDelay = 0;
|
|
|
|
_realLuggageItem = 0;
|
|
|
|
|
|
|
|
_mouseSprite = NULL;
|
|
|
|
_mouseAnim = NULL;
|
|
|
|
_luggageAnim = NULL;
|
|
|
|
|
|
|
|
// For the menus
|
|
|
|
_totalTemp = 0;
|
|
|
|
memset(_tempList, 0, sizeof(_tempList));
|
|
|
|
|
|
|
|
_totalMasters = 0;
|
|
|
|
memset(_masterMenuList, 0, sizeof(_masterMenuList));
|
|
|
|
memset(_mouseList, 0, sizeof(_mouseList));
|
|
|
|
|
|
|
|
_iconCount = 0;
|
|
|
|
|
|
|
|
for (int i = 0; i < 2; i++) {
|
|
|
|
for (int j = 0; j < RDMENU_MAXPOCKETS; j++) {
|
|
|
|
_icons[i][j] = NULL;
|
|
|
|
_pocketStatus[i][j] = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
_menuStatus[i] = RDMENU_HIDDEN;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Mouse::~Mouse() {
|
|
|
|
free(_mouseAnim);
|
|
|
|
free(_luggageAnim);
|
|
|
|
for (int i = 0; i < 2; i++)
|
|
|
|
for (int j = 0; j < RDMENU_MAXPOCKETS; j++)
|
|
|
|
free(_icons[i][j]);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Mouse::getPos(int &x, int &y) {
|
|
|
|
x = _pos.x;
|
|
|
|
y = _pos.y;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Mouse::setPos(int x, int y) {
|
|
|
|
_pos.x = x;
|
|
|
|
_pos.y = y;
|
|
|
|
}
|
|
|
|
|
2003-11-12 08:21:18 +00:00
|
|
|
/**
|
|
|
|
* Call at beginning of game loop
|
|
|
|
*/
|
|
|
|
|
2005-02-19 14:02:16 +00:00
|
|
|
void Mouse::resetMouseList() {
|
2005-02-28 13:28:02 +00:00
|
|
|
_curMouse = 0;
|
2003-07-28 01:44:38 +00:00
|
|
|
}
|
|
|
|
|
2005-02-19 14:02:16 +00:00
|
|
|
void Mouse::registerMouse(ObjectMouse *ob_mouse, BuildUnit *build_unit) {
|
|
|
|
if (!ob_mouse->pointer)
|
|
|
|
return;
|
|
|
|
|
|
|
|
assert(_curMouse < TOTAL_mouse_list);
|
|
|
|
|
|
|
|
if (build_unit) {
|
2005-02-28 14:03:53 +00:00
|
|
|
_mouseList[_curMouse].rect.left = build_unit->x;
|
|
|
|
_mouseList[_curMouse].rect.top = build_unit->y;
|
|
|
|
_mouseList[_curMouse].rect.right = 1 + build_unit->x + build_unit->scaled_width;
|
|
|
|
_mouseList[_curMouse].rect.bottom = 1 + build_unit->y + build_unit->scaled_height;
|
2005-02-19 14:02:16 +00:00
|
|
|
} else {
|
2005-02-28 14:03:53 +00:00
|
|
|
_mouseList[_curMouse].rect.left = ob_mouse->x1;
|
|
|
|
_mouseList[_curMouse].rect.top = ob_mouse->y1;
|
|
|
|
_mouseList[_curMouse].rect.right = 1 + ob_mouse->x2;
|
|
|
|
_mouseList[_curMouse].rect.bottom = 1 + ob_mouse->y2;
|
2005-02-19 14:02:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
_mouseList[_curMouse].priority = ob_mouse->priority;
|
|
|
|
_mouseList[_curMouse].pointer = ob_mouse->pointer;
|
|
|
|
|
2005-02-28 14:03:53 +00:00
|
|
|
// Change all COGS pointers to CROSHAIR. I'm guessing that this was a
|
|
|
|
// design decision made in mid-development and they didn't want to go
|
|
|
|
// back and re-generate the resource files.
|
|
|
|
|
|
|
|
if (_mouseList[_curMouse].pointer == USE)
|
|
|
|
_mouseList[_curMouse].pointer = CROSHAIR;
|
|
|
|
|
2005-02-19 14:02:16 +00:00
|
|
|
// Check if pointer text field is set due to previous object using this
|
|
|
|
// slot (ie. not correct for this one)
|
|
|
|
|
|
|
|
// If 'pointer_text' field is set, but the 'id' field isn't same is
|
|
|
|
// current id then we don't want this "left over" pointer text
|
|
|
|
|
|
|
|
if (_mouseList[_curMouse].pointer_text && _mouseList[_curMouse].id != (int32) Logic::_scriptVars[ID])
|
|
|
|
_mouseList[_curMouse].pointer_text = 0;
|
|
|
|
|
|
|
|
// Get id from system variable 'id' which is correct for current object
|
|
|
|
_mouseList[_curMouse].id = Logic::_scriptVars[ID];
|
|
|
|
|
|
|
|
_curMouse++;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Mouse::registerPointerText(int32 text_id) {
|
|
|
|
assert(_curMouse < TOTAL_mouse_list);
|
|
|
|
|
|
|
|
// current object id - used for checking pointer_text when mouse area
|
|
|
|
// registered (in fnRegisterMouse and fnRegisterFrame)
|
|
|
|
|
|
|
|
_mouseList[_curMouse].id = Logic::_scriptVars[ID];
|
|
|
|
_mouseList[_curMouse].pointer_text = text_id;
|
|
|
|
}
|
|
|
|
|
2003-10-09 06:57:35 +00:00
|
|
|
/**
|
|
|
|
* This function is called every game cycle.
|
|
|
|
*/
|
|
|
|
|
2005-02-19 14:02:16 +00:00
|
|
|
void Mouse::mouseEngine() {
|
2003-11-02 18:50:09 +00:00
|
|
|
monitorPlayerActivity();
|
|
|
|
clearPointerText();
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2003-10-09 06:57:35 +00:00
|
|
|
// If George is dead, the system menu is visible all the time, and is
|
|
|
|
// the only thing that can be used.
|
|
|
|
|
2004-03-17 09:03:15 +00:00
|
|
|
if (Logic::_scriptVars[DEAD]) {
|
2003-11-02 18:50:09 +00:00
|
|
|
if (_mouseMode != MOUSE_system_menu) {
|
|
|
|
_mouseMode = MOUSE_system_menu;
|
2003-10-09 06:57:35 +00:00
|
|
|
|
2003-11-02 18:50:09 +00:00
|
|
|
if (_mouseTouching) {
|
|
|
|
_oldMouseTouching = 0;
|
|
|
|
_mouseTouching = 0;
|
2003-07-28 01:44:38 +00:00
|
|
|
}
|
|
|
|
|
2003-11-02 18:50:09 +00:00
|
|
|
setMouse(NORMAL_MOUSE_ID);
|
|
|
|
buildSystemMenu();
|
2003-07-28 01:44:38 +00:00
|
|
|
}
|
2003-11-02 18:50:09 +00:00
|
|
|
systemMenuMouse();
|
2003-07-28 01:44:38 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2003-10-09 06:57:35 +00:00
|
|
|
// If the mouse is not visible, do nothing
|
|
|
|
|
2003-11-02 18:50:09 +00:00
|
|
|
if (_mouseStatus)
|
2003-07-28 01:44:38 +00:00
|
|
|
return;
|
|
|
|
|
2003-11-02 18:50:09 +00:00
|
|
|
switch (_mouseMode) {
|
2003-09-21 16:11:26 +00:00
|
|
|
case MOUSE_normal:
|
2003-11-02 18:50:09 +00:00
|
|
|
normalMouse();
|
2003-09-21 16:11:26 +00:00
|
|
|
break;
|
2003-10-09 06:57:35 +00:00
|
|
|
case MOUSE_menu:
|
2003-11-02 18:50:09 +00:00
|
|
|
menuMouse();
|
2003-09-21 16:11:26 +00:00
|
|
|
break;
|
|
|
|
case MOUSE_drag:
|
2003-11-02 18:50:09 +00:00
|
|
|
dragMouse();
|
2003-09-21 16:11:26 +00:00
|
|
|
break;
|
|
|
|
case MOUSE_system_menu:
|
2003-11-02 18:50:09 +00:00
|
|
|
systemMenuMouse();
|
2003-09-21 16:11:26 +00:00
|
|
|
break;
|
|
|
|
case MOUSE_holding:
|
2005-02-19 14:02:16 +00:00
|
|
|
if (_pos.y < 400) {
|
2003-11-02 18:50:09 +00:00
|
|
|
_mouseMode = MOUSE_normal;
|
2003-09-27 11:02:58 +00:00
|
|
|
debug(5, " releasing");
|
2003-09-21 16:11:26 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
2003-07-28 01:44:38 +00:00
|
|
|
}
|
|
|
|
}
|
2003-09-19 16:08:54 +00:00
|
|
|
|
2004-06-10 06:41:08 +00:00
|
|
|
#if RIGHT_CLICK_CLEARS_LUGGAGE
|
2005-02-19 14:02:16 +00:00
|
|
|
bool Mouse::heldIsInInventory() {
|
2004-06-10 06:41:08 +00:00
|
|
|
for (uint i = 0; i < _totalMasters; i++) {
|
|
|
|
if ((uint32) _masterMenuList[i].icon_resource == Logic::_scriptVars[OBJECT_HELD])
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2005-02-19 14:02:16 +00:00
|
|
|
int Mouse::menuClick(int menu_items) {
|
|
|
|
if (_pos.x < RDMENU_ICONSTART)
|
2003-11-12 08:21:18 +00:00
|
|
|
return -1;
|
|
|
|
|
2005-02-19 14:02:16 +00:00
|
|
|
if (_pos.x > RDMENU_ICONSTART + menu_items * (RDMENU_ICONWIDE + RDMENU_ICONSPACING) - RDMENU_ICONSPACING)
|
2003-11-12 08:21:18 +00:00
|
|
|
return -1;
|
|
|
|
|
2005-02-19 14:02:16 +00:00
|
|
|
return (_pos.x - RDMENU_ICONSTART) / (RDMENU_ICONWIDE + RDMENU_ICONSPACING);
|
2003-11-12 08:21:18 +00:00
|
|
|
}
|
|
|
|
|
2005-02-19 14:02:16 +00:00
|
|
|
void Mouse::systemMenuMouse(void) {
|
2003-07-28 01:44:38 +00:00
|
|
|
uint32 safe_looping_music_id;
|
2003-12-28 15:08:12 +00:00
|
|
|
MouseEvent *me;
|
2003-11-12 08:21:18 +00:00
|
|
|
int hit;
|
2004-04-23 07:02:11 +00:00
|
|
|
byte *icon;
|
2003-09-19 16:08:54 +00:00
|
|
|
int32 pars[2];
|
|
|
|
uint32 icon_list[5] = {
|
2003-07-28 01:44:38 +00:00
|
|
|
OPTIONS_ICON,
|
|
|
|
QUIT_ICON,
|
|
|
|
SAVE_ICON,
|
|
|
|
RESTORE_ICON,
|
|
|
|
RESTART_ICON
|
|
|
|
};
|
|
|
|
|
2003-11-12 08:21:18 +00:00
|
|
|
// If the mouse is moved off the menu, close it. Unless the player is
|
|
|
|
// dead, in which case the menu should always be visible.
|
|
|
|
|
2005-02-19 14:02:16 +00:00
|
|
|
if (_pos.y > 0 && !Logic::_scriptVars[DEAD]) {
|
2003-11-02 18:50:09 +00:00
|
|
|
_mouseMode = MOUSE_normal;
|
2005-02-19 14:02:16 +00:00
|
|
|
hideMenu(RDMENU_TOP);
|
2003-09-19 16:08:54 +00:00
|
|
|
return;
|
|
|
|
}
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2003-11-12 08:21:18 +00:00
|
|
|
// Check if the user left-clicks anywhere in the menu area.
|
|
|
|
|
2005-02-19 14:02:16 +00:00
|
|
|
me = _vm->mouseEvent();
|
2003-11-12 08:21:18 +00:00
|
|
|
|
|
|
|
if (!me || !(me->buttons & RD_LEFTBUTTONDOWN))
|
|
|
|
return;
|
|
|
|
|
2005-02-19 14:02:16 +00:00
|
|
|
if (_pos.y > 0)
|
2003-11-12 08:21:18 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
hit = menuClick(ARRAYSIZE(icon_list));
|
|
|
|
|
|
|
|
if (hit < 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// No save when dead
|
|
|
|
|
2004-03-17 09:03:15 +00:00
|
|
|
if (icon_list[hit] == SAVE_ICON && Logic::_scriptVars[DEAD])
|
2003-11-12 08:21:18 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
// Gray out all he icons, except the one that was clicked
|
|
|
|
|
|
|
|
for (int i = 0; i < ARRAYSIZE(icon_list); i++) {
|
|
|
|
if (i != hit) {
|
2005-02-19 14:02:16 +00:00
|
|
|
icon = _vm->_resman->openResource(icon_list[i]) + sizeof(StandardHeader);
|
|
|
|
setMenuIcon(RDMENU_TOP, i, icon);
|
|
|
|
_vm->_resman->closeResource(icon_list[i]);
|
2003-09-19 16:08:54 +00:00
|
|
|
}
|
2003-07-28 01:44:38 +00:00
|
|
|
}
|
2003-11-12 08:21:18 +00:00
|
|
|
|
2005-02-19 14:02:16 +00:00
|
|
|
_vm->_sound->pauseFx();
|
2003-11-12 08:21:18 +00:00
|
|
|
|
|
|
|
// NB. Need to keep a safe copy of '_loopingMusicId' for savegame & for
|
|
|
|
// playing when returning from control panels because control panel
|
|
|
|
// music will overwrite it!
|
|
|
|
|
2005-02-19 14:02:16 +00:00
|
|
|
safe_looping_music_id = _vm->_sound->getLoopingMusicId();
|
2003-11-12 08:21:18 +00:00
|
|
|
|
|
|
|
pars[0] = 221;
|
|
|
|
pars[1] = FX_LOOP;
|
2005-02-19 14:02:16 +00:00
|
|
|
_vm->_logic->fnPlayMusic(pars);
|
2003-11-12 08:21:18 +00:00
|
|
|
|
Began what I hope is the final major restructuring of the BS2 engine.
In this first step, I have moved all opcode functions into functions.cpp,
instead of having them scattered all over the place.
To get things to compile again, I had to rewrite the overly complicated
sound effects handling. It's much simpler now.
The next step will be to move any non-trivial code out of the opcode
functions and into the appropriate object. This, I hope, will make it
easier to create well-separated objects, instead of the current mess.
I also want to tear down the artificial boundary between the main directory
and the "driver" directory. We already have a cross-platform layer; there's
no need to have yet another one. (Actually, the rewriting of the sound
effects code took one first step in this direction.)
At the final stage, I'd like to get rid of the "drivers" directory
completely, but I'll probably need some help with that if I want to
preserve the CVS history of the code.
Things will probably be a bit bumpy along the way, but I seem to have
reached a point of relative stability again, which is why I'm commiting
this now.
svn-id: r16668
2005-01-28 16:33:14 +00:00
|
|
|
// HACK: Restore proper looping_music_id
|
2005-02-19 14:02:16 +00:00
|
|
|
_vm->_sound->setLoopingMusicId(safe_looping_music_id);
|
2003-11-12 08:21:18 +00:00
|
|
|
|
2005-02-19 14:02:16 +00:00
|
|
|
processMenu();
|
2003-11-12 08:21:18 +00:00
|
|
|
|
2004-05-10 07:10:28 +00:00
|
|
|
// call the relevant screen
|
2003-11-12 08:21:18 +00:00
|
|
|
|
|
|
|
switch (hit) {
|
|
|
|
case 0:
|
2005-02-20 15:38:48 +00:00
|
|
|
{
|
|
|
|
OptionsDialog dialog(_vm);
|
|
|
|
dialog.runModal();
|
|
|
|
}
|
2003-11-12 08:21:18 +00:00
|
|
|
break;
|
|
|
|
case 1:
|
2005-02-20 15:38:48 +00:00
|
|
|
{
|
|
|
|
QuitDialog dialog(_vm);
|
|
|
|
dialog.runModal();
|
|
|
|
}
|
2003-11-12 08:21:18 +00:00
|
|
|
break;
|
|
|
|
case 2:
|
2005-02-20 15:38:48 +00:00
|
|
|
{
|
2005-02-21 08:16:50 +00:00
|
|
|
SaveDialog dialog(_vm);
|
2005-02-20 15:38:48 +00:00
|
|
|
dialog.runModal();
|
|
|
|
}
|
2003-11-12 08:21:18 +00:00
|
|
|
break;
|
|
|
|
case 3:
|
2005-02-20 15:38:48 +00:00
|
|
|
{
|
2005-02-21 08:16:50 +00:00
|
|
|
RestoreDialog dialog(_vm);
|
2005-02-20 15:38:48 +00:00
|
|
|
dialog.runModal();
|
|
|
|
}
|
2003-11-12 08:21:18 +00:00
|
|
|
break;
|
|
|
|
case 4:
|
2005-02-20 15:38:48 +00:00
|
|
|
{
|
|
|
|
RestartDialog dialog(_vm);
|
|
|
|
dialog.runModal();
|
|
|
|
}
|
2003-11-12 08:21:18 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Menu stays open on death screen. Otherwise it's closed.
|
|
|
|
|
2004-03-17 09:03:15 +00:00
|
|
|
if (!Logic::_scriptVars[DEAD]) {
|
2003-11-12 08:21:18 +00:00
|
|
|
_mouseMode = MOUSE_normal;
|
2005-02-19 14:02:16 +00:00
|
|
|
hideMenu(RDMENU_TOP);
|
2003-11-12 08:21:18 +00:00
|
|
|
} else {
|
|
|
|
setMouse(NORMAL_MOUSE_ID);
|
|
|
|
buildSystemMenu();
|
|
|
|
}
|
|
|
|
|
2004-01-06 13:33:28 +00:00
|
|
|
// Back to the game again
|
2003-11-12 08:21:18 +00:00
|
|
|
|
2005-02-19 14:02:16 +00:00
|
|
|
processMenu();
|
2003-11-12 08:21:18 +00:00
|
|
|
|
|
|
|
// Reset game palette, but not after a successful restore or restart!
|
|
|
|
// See RestoreFromBuffer() in save_rest.cpp
|
|
|
|
|
2005-02-19 14:02:16 +00:00
|
|
|
ScreenInfo *screenInfo = _vm->_screen->getScreenInfo();
|
|
|
|
|
|
|
|
if (screenInfo->new_palette != 99) {
|
2003-11-12 08:21:18 +00:00
|
|
|
// 0 means put back game screen palette; see build_display.cpp
|
2005-02-19 14:02:16 +00:00
|
|
|
_vm->_screen->setFullPalette(0);
|
2003-11-12 08:21:18 +00:00
|
|
|
|
|
|
|
// Stop the engine fading in the restored screens palette
|
2005-02-19 14:02:16 +00:00
|
|
|
screenInfo->new_palette = 0;
|
2003-11-12 08:21:18 +00:00
|
|
|
} else
|
2005-02-19 14:02:16 +00:00
|
|
|
screenInfo->new_palette = 1;
|
2003-11-12 08:21:18 +00:00
|
|
|
|
2005-02-19 14:02:16 +00:00
|
|
|
_vm->_sound->unpauseFx();
|
2003-11-12 08:21:18 +00:00
|
|
|
|
|
|
|
// If there was looping music before coming into the control panels
|
2004-03-27 12:07:07 +00:00
|
|
|
// then restart it! NB. If a game has been restored the music will be
|
|
|
|
// restarted twice, but this shouldn't cause any harm.
|
2003-11-12 08:21:18 +00:00
|
|
|
|
2005-02-19 14:02:16 +00:00
|
|
|
if (_vm->_sound->getLoopingMusicId()) {
|
|
|
|
pars[0] = _vm->_sound->getLoopingMusicId();
|
2003-11-12 08:21:18 +00:00
|
|
|
pars[1] = FX_LOOP;
|
2005-02-19 14:02:16 +00:00
|
|
|
_vm->_logic->fnPlayMusic(pars);
|
2004-03-27 12:07:07 +00:00
|
|
|
} else
|
2005-02-19 14:02:16 +00:00
|
|
|
_vm->_logic->fnStopMusic(NULL);
|
2003-07-28 01:44:38 +00:00
|
|
|
}
|
|
|
|
|
2005-02-19 14:02:16 +00:00
|
|
|
void Mouse::dragMouse(void) {
|
2004-04-24 12:29:35 +00:00
|
|
|
byte buf1[NAME_LEN], buf2[NAME_LEN];
|
2003-12-28 15:08:12 +00:00
|
|
|
MouseEvent *me;
|
2003-11-12 08:21:18 +00:00
|
|
|
int hit;
|
|
|
|
|
|
|
|
// We can use dragged object both on other inventory objects, or on
|
|
|
|
// objects in the scene, so if the mouse moves off the inventory menu,
|
|
|
|
// then close it.
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2005-02-19 14:02:16 +00:00
|
|
|
if (_pos.y < 400) {
|
2003-11-02 18:50:09 +00:00
|
|
|
_mouseMode = MOUSE_normal;
|
2005-02-19 14:02:16 +00:00
|
|
|
hideMenu(RDMENU_BOTTOM);
|
2003-07-28 01:44:38 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2003-11-12 08:21:18 +00:00
|
|
|
// Handles cursors and the luggage on/off according to type
|
|
|
|
|
2003-11-02 18:50:09 +00:00
|
|
|
mouseOnOff();
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2003-11-12 08:21:18 +00:00
|
|
|
// Now do the normal click stuff
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2005-02-19 14:02:16 +00:00
|
|
|
me = _vm->mouseEvent();
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2003-11-12 08:21:18 +00:00
|
|
|
if (!me)
|
|
|
|
return;
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2004-06-10 06:41:08 +00:00
|
|
|
#if RIGHT_CLICK_CLEARS_LUGGAGE
|
|
|
|
if ((me->buttons & RD_RIGHTBUTTONDOWN) && heldIsInInventory()) {
|
2004-03-17 09:03:15 +00:00
|
|
|
Logic::_scriptVars[OBJECT_HELD] = 0;
|
2003-11-12 08:21:18 +00:00
|
|
|
_menuSelectedPos = 0;
|
|
|
|
_mouseMode = MOUSE_menu;
|
|
|
|
setLuggage(0);
|
|
|
|
buildMenu();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2003-11-12 08:21:18 +00:00
|
|
|
if (!(me->buttons & RD_LEFTBUTTONDOWN))
|
|
|
|
return;
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2003-11-12 08:21:18 +00:00
|
|
|
// there's a mouse event to be processed
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2003-11-12 08:21:18 +00:00
|
|
|
// could be clicking on an on screen object or on the menu
|
|
|
|
// which is currently displayed
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2003-11-12 08:21:18 +00:00
|
|
|
if (_mouseTouching) {
|
|
|
|
// mouse is over an on screen object - and we have luggage
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2003-11-12 08:21:18 +00:00
|
|
|
// Depending on type we'll maybe kill the object_held - like
|
|
|
|
// for exits
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2003-11-12 08:21:18 +00:00
|
|
|
// Set global script variable 'button'. We know that it was the
|
|
|
|
// left button, not the right one.
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2004-03-17 09:03:15 +00:00
|
|
|
Logic::_scriptVars[LEFT_BUTTON] = 1;
|
|
|
|
Logic::_scriptVars[RIGHT_BUTTON] = 0;
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2003-11-12 08:21:18 +00:00
|
|
|
// These might be required by the action script about to be run
|
2005-02-19 14:02:16 +00:00
|
|
|
ScreenInfo *screenInfo = _vm->_screen->getScreenInfo();
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2005-02-19 14:02:16 +00:00
|
|
|
Logic::_scriptVars[MOUSE_X] = _pos.x + screenInfo->scroll_offset_x;
|
|
|
|
Logic::_scriptVars[MOUSE_Y] = _pos.y + screenInfo->scroll_offset_y;
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2003-11-12 08:21:18 +00:00
|
|
|
// For scripts to know what's been clicked. First used for
|
|
|
|
// 'room_13_turning_script' in object 'biscuits_13'
|
2003-09-19 16:08:54 +00:00
|
|
|
|
2004-03-17 09:03:15 +00:00
|
|
|
Logic::_scriptVars[CLICKED_ID] = _mouseTouching;
|
2003-09-19 16:08:54 +00:00
|
|
|
|
2005-02-19 14:02:16 +00:00
|
|
|
_vm->_logic->setPlayerActionEvent(CUR_PLAYER_ID, _mouseTouching);
|
2003-11-12 08:21:18 +00:00
|
|
|
|
2004-03-17 09:03:15 +00:00
|
|
|
debug(2, "Used \"%s\" on \"%s\"",
|
2005-02-19 14:02:16 +00:00
|
|
|
_vm->fetchObjectName(Logic::_scriptVars[OBJECT_HELD], buf1),
|
|
|
|
_vm->fetchObjectName(Logic::_scriptVars[CLICKED_ID], buf2));
|
2003-11-12 08:21:18 +00:00
|
|
|
|
|
|
|
// Hide menu - back to normal menu mode
|
|
|
|
|
2005-02-19 14:02:16 +00:00
|
|
|
hideMenu(RDMENU_BOTTOM);
|
2003-11-12 08:21:18 +00:00
|
|
|
_mouseMode = MOUSE_normal;
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Better check for combine/cancel. Cancel puts us back in MOUSE_menu
|
|
|
|
// mode
|
|
|
|
|
|
|
|
hit = menuClick(TOTAL_engine_pockets);
|
|
|
|
|
|
|
|
if (hit < 0 || !_masterMenuList[hit].icon_resource)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Always back into menu mode. Remove the luggage as well.
|
|
|
|
|
|
|
|
_mouseMode = MOUSE_menu;
|
|
|
|
setLuggage(0);
|
|
|
|
|
|
|
|
if ((uint) hit == _menuSelectedPos) {
|
|
|
|
// If we clicked on the same icon again, reset the first icon
|
|
|
|
|
2004-03-17 09:03:15 +00:00
|
|
|
Logic::_scriptVars[OBJECT_HELD] = 0;
|
2003-11-12 08:21:18 +00:00
|
|
|
_menuSelectedPos = 0;
|
|
|
|
} else {
|
|
|
|
// Otherwise, combine the two icons
|
|
|
|
|
2004-03-17 09:03:15 +00:00
|
|
|
Logic::_scriptVars[COMBINE_BASE] = _masterMenuList[hit].icon_resource;
|
2005-02-19 14:02:16 +00:00
|
|
|
_vm->_logic->setPlayerActionEvent(CUR_PLAYER_ID, MENU_MASTER_OBJECT);
|
2003-11-12 08:21:18 +00:00
|
|
|
|
|
|
|
// Turn off mouse now, to prevent player trying to click
|
|
|
|
// elsewhere BUT leave the bottom menu open
|
|
|
|
|
2005-02-19 14:02:16 +00:00
|
|
|
hideMouse();
|
2003-11-12 08:21:18 +00:00
|
|
|
|
2004-03-17 09:03:15 +00:00
|
|
|
debug(2, "Used \"%s\" on \"%s\"",
|
2005-02-19 14:02:16 +00:00
|
|
|
_vm->fetchObjectName(Logic::_scriptVars[OBJECT_HELD], buf1),
|
|
|
|
_vm->fetchObjectName(Logic::_scriptVars[COMBINE_BASE], buf2));
|
2003-07-28 01:44:38 +00:00
|
|
|
}
|
2003-11-12 08:21:18 +00:00
|
|
|
|
|
|
|
// Refresh the menu
|
|
|
|
|
|
|
|
buildMenu();
|
2003-07-28 01:44:38 +00:00
|
|
|
}
|
|
|
|
|
2005-02-19 14:02:16 +00:00
|
|
|
void Mouse::menuMouse() {
|
2004-04-24 12:29:35 +00:00
|
|
|
byte buf[NAME_LEN];
|
2003-12-28 15:08:12 +00:00
|
|
|
MouseEvent *me;
|
2003-11-12 08:21:18 +00:00
|
|
|
int hit;
|
|
|
|
|
|
|
|
// If the mouse is moved off the menu, close it.
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2005-02-19 14:02:16 +00:00
|
|
|
if (_pos.y < 400) {
|
2003-11-02 18:50:09 +00:00
|
|
|
_mouseMode = MOUSE_normal;
|
2005-02-19 14:02:16 +00:00
|
|
|
hideMenu(RDMENU_BOTTOM);
|
2003-07-28 01:44:38 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2005-02-19 14:02:16 +00:00
|
|
|
me = _vm->mouseEvent();
|
2003-11-12 08:21:18 +00:00
|
|
|
|
|
|
|
if (!me)
|
|
|
|
return;
|
|
|
|
|
|
|
|
hit = menuClick(TOTAL_engine_pockets);
|
2003-09-19 16:08:54 +00:00
|
|
|
|
2003-11-12 08:21:18 +00:00
|
|
|
// Check if we clicked on an actual icon.
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2003-11-12 08:21:18 +00:00
|
|
|
if (hit < 0 || !_masterMenuList[hit].icon_resource)
|
|
|
|
return;
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2003-11-12 08:21:18 +00:00
|
|
|
if (me->buttons & RD_RIGHTBUTTONDOWN) {
|
|
|
|
// Right button - examine an object, identified by its icon
|
|
|
|
// resource id.
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2003-11-12 08:21:18 +00:00
|
|
|
_examiningMenuIcon = true;
|
2004-03-17 09:03:15 +00:00
|
|
|
Logic::_scriptVars[OBJECT_HELD] = _masterMenuList[hit].icon_resource;
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2003-11-12 08:21:18 +00:00
|
|
|
// Must clear this so next click on exit becomes 1st click
|
|
|
|
// again
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2004-03-17 09:03:15 +00:00
|
|
|
Logic::_scriptVars[EXIT_CLICK_ID] = 0;
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2005-02-19 14:02:16 +00:00
|
|
|
_vm->_logic->setPlayerActionEvent(CUR_PLAYER_ID, MENU_MASTER_OBJECT);
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2003-11-12 08:21:18 +00:00
|
|
|
// Refresh the menu
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2003-11-12 08:21:18 +00:00
|
|
|
buildMenu();
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2003-11-12 08:21:18 +00:00
|
|
|
// Turn off mouse now, to prevent player trying to click
|
|
|
|
// elsewhere BUT leave the bottom menu open
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2005-02-19 14:02:16 +00:00
|
|
|
hideMouse();
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2003-11-12 08:21:18 +00:00
|
|
|
debug(2, "Right-click on \"%s\" icon",
|
2005-02-19 14:02:16 +00:00
|
|
|
_vm->fetchObjectName(Logic::_scriptVars[OBJECT_HELD], buf));
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2003-11-12 08:21:18 +00:00
|
|
|
return;
|
|
|
|
}
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2003-11-12 08:21:18 +00:00
|
|
|
if (me->buttons & RD_LEFTBUTTONDOWN) {
|
|
|
|
// Left button - bung us into drag luggage mode. The object is
|
|
|
|
// identified by its icon resource id. We need the luggage
|
|
|
|
// resource id for mouseOnOff
|
2003-09-19 16:08:54 +00:00
|
|
|
|
2003-11-12 08:21:18 +00:00
|
|
|
_mouseMode = MOUSE_drag;
|
2003-09-19 16:08:54 +00:00
|
|
|
|
2003-11-12 08:21:18 +00:00
|
|
|
_menuSelectedPos = hit;
|
2004-03-17 09:03:15 +00:00
|
|
|
Logic::_scriptVars[OBJECT_HELD] = _masterMenuList[hit].icon_resource;
|
2003-11-12 08:21:18 +00:00
|
|
|
_currentLuggageResource = _masterMenuList[hit].luggage_resource;
|
2003-09-19 16:08:54 +00:00
|
|
|
|
2003-11-12 08:21:18 +00:00
|
|
|
// Must clear this so next click on exit becomes 1st click
|
|
|
|
// again
|
2003-09-19 16:08:54 +00:00
|
|
|
|
2004-03-17 09:03:15 +00:00
|
|
|
Logic::_scriptVars[EXIT_CLICK_ID] = 0;
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2003-11-12 08:21:18 +00:00
|
|
|
// Refresh the menu
|
2003-09-19 16:08:54 +00:00
|
|
|
|
2003-11-12 08:21:18 +00:00
|
|
|
buildMenu();
|
|
|
|
|
|
|
|
setLuggage(_masterMenuList[hit].luggage_resource);
|
|
|
|
|
|
|
|
debug(2, "Left-clicked on \"%s\" icon - switch to drag mode",
|
2005-02-19 14:02:16 +00:00
|
|
|
_vm->fetchObjectName(Logic::_scriptVars[OBJECT_HELD], buf));
|
2003-07-28 01:44:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-02-19 14:02:16 +00:00
|
|
|
void Mouse::normalMouse(void) {
|
2003-09-19 16:08:54 +00:00
|
|
|
// The gane is playing and none of the menus are activated - but, we
|
2003-10-09 06:57:35 +00:00
|
|
|
// need to check if a menu is to start. Note, won't have luggage
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2003-12-28 15:08:12 +00:00
|
|
|
MouseEvent *me;
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2003-11-12 08:21:18 +00:00
|
|
|
// Check if the cursor has moved onto the system menu area. No save in
|
|
|
|
// big-object menu lock situation, of if the player is dragging an
|
|
|
|
// object.
|
|
|
|
|
2005-02-19 14:02:16 +00:00
|
|
|
if (_pos.y < 0 && !_mouseModeLocked && !Logic::_scriptVars[OBJECT_HELD]) {
|
2003-11-02 18:50:09 +00:00
|
|
|
_mouseMode = MOUSE_system_menu;
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2003-11-02 18:50:09 +00:00
|
|
|
if (_mouseTouching) {
|
2003-09-19 16:08:54 +00:00
|
|
|
// We were on something, but not anymore
|
2003-11-02 18:50:09 +00:00
|
|
|
_oldMouseTouching = 0;
|
|
|
|
_mouseTouching = 0;
|
2003-07-28 01:44:38 +00:00
|
|
|
}
|
|
|
|
|
2003-11-12 08:21:18 +00:00
|
|
|
// Reset mouse cursor - in case we're between mice
|
|
|
|
|
2003-11-02 18:50:09 +00:00
|
|
|
setMouse(NORMAL_MOUSE_ID);
|
|
|
|
buildSystemMenu();
|
2003-10-09 06:57:35 +00:00
|
|
|
return;
|
2003-07-28 01:44:38 +00:00
|
|
|
}
|
|
|
|
|
2003-11-12 08:21:18 +00:00
|
|
|
// Check if the cursor has moved onto the inventory menu area. No
|
|
|
|
// inventory in big-object menu lock situation,
|
|
|
|
|
2005-02-19 14:02:16 +00:00
|
|
|
if (_pos.y > 399 && !_mouseModeLocked) {
|
2003-10-09 06:57:35 +00:00
|
|
|
// If an object is being held, i.e. if the mouse cursor has a
|
2003-11-12 08:21:18 +00:00
|
|
|
// luggage, go to drag mode instead of menu mode, but the menu
|
|
|
|
// is still opened.
|
2003-10-09 06:57:35 +00:00
|
|
|
//
|
|
|
|
// That way, we can still use an object on another inventory
|
|
|
|
// object, even if the inventory menu was closed after the
|
|
|
|
// first object was selected.
|
|
|
|
|
2004-03-17 09:03:15 +00:00
|
|
|
if (!Logic::_scriptVars[OBJECT_HELD])
|
2003-11-02 18:50:09 +00:00
|
|
|
_mouseMode = MOUSE_menu;
|
2003-10-09 06:57:35 +00:00
|
|
|
else
|
2003-11-02 18:50:09 +00:00
|
|
|
_mouseMode = MOUSE_drag;
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2003-10-09 06:57:35 +00:00
|
|
|
// If mouse is moving off an object and onto the menu then do a
|
|
|
|
// standard get-off
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2003-11-02 18:50:09 +00:00
|
|
|
if (_mouseTouching) {
|
|
|
|
_oldMouseTouching = 0;
|
|
|
|
_mouseTouching = 0;
|
2003-07-28 01:44:38 +00:00
|
|
|
}
|
|
|
|
|
2003-11-12 08:21:18 +00:00
|
|
|
// Reset mouse cursor
|
|
|
|
|
2003-11-02 18:50:09 +00:00
|
|
|
setMouse(NORMAL_MOUSE_ID);
|
|
|
|
buildMenu();
|
2003-07-28 01:44:38 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2003-11-12 08:21:18 +00:00
|
|
|
// Check for moving the mouse on or off things
|
2003-10-09 06:57:35 +00:00
|
|
|
|
2003-11-02 18:50:09 +00:00
|
|
|
mouseOnOff();
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2005-02-19 14:02:16 +00:00
|
|
|
me = _vm->mouseEvent();
|
2003-11-12 08:21:18 +00:00
|
|
|
|
|
|
|
if (!me)
|
|
|
|
return;
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2003-11-12 08:21:18 +00:00
|
|
|
bool button_down = (me->buttons & (RD_LEFTBUTTONDOWN | RD_RIGHTBUTTONDOWN)) != 0;
|
|
|
|
|
|
|
|
// For debugging. We can draw a rectangle on the screen and see its
|
|
|
|
// coordinates. This was probably used to help defining hit areas.
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2005-02-19 14:02:16 +00:00
|
|
|
if (_vm->_debugger->_definingRectangles) {
|
|
|
|
ScreenInfo *screenInfo = _vm->_screen->getScreenInfo();
|
|
|
|
|
|
|
|
if (_vm->_debugger->_draggingRectangle == 0) {
|
2003-11-12 08:21:18 +00:00
|
|
|
// Not yet dragging a rectangle, so need click to start
|
2003-09-19 16:08:54 +00:00
|
|
|
|
2003-11-12 08:21:18 +00:00
|
|
|
if (button_down) {
|
2003-09-19 16:08:54 +00:00
|
|
|
// set both (x1,y1) and (x2,y2) to this point
|
2005-02-19 14:02:16 +00:00
|
|
|
_vm->_debugger->_rectX1 = _vm->_debugger->_rectX2 = (uint32) _pos.x + screenInfo->scroll_offset_x;
|
|
|
|
_vm->_debugger->_rectY1 = _vm->_debugger->_rectY2 = (uint32) _pos.y + screenInfo->scroll_offset_y;
|
|
|
|
_vm->_debugger->_draggingRectangle = 1;
|
2003-07-28 01:44:38 +00:00
|
|
|
}
|
2005-02-19 14:02:16 +00:00
|
|
|
} else if (_vm->_debugger->_draggingRectangle == 1) {
|
2003-09-19 16:08:54 +00:00
|
|
|
// currently dragging a rectangle - click means reset
|
|
|
|
|
2003-11-12 08:21:18 +00:00
|
|
|
if (button_down) {
|
2003-09-19 16:08:54 +00:00
|
|
|
// lock rectangle, so you can let go of mouse
|
|
|
|
// to type in the coords
|
2005-02-19 14:02:16 +00:00
|
|
|
_vm->_debugger->_draggingRectangle = 2;
|
2003-09-19 16:08:54 +00:00
|
|
|
} else {
|
|
|
|
// drag rectangle
|
2005-02-19 14:02:16 +00:00
|
|
|
_vm->_debugger->_rectX2 = (uint32) _pos.x + screenInfo->scroll_offset_x;
|
|
|
|
_vm->_debugger->_rectY2 = (uint32) _pos.y + screenInfo->scroll_offset_y;
|
2003-07-28 01:44:38 +00:00
|
|
|
}
|
2003-09-19 16:08:54 +00:00
|
|
|
} else {
|
|
|
|
// currently locked to avoid knocking out of place
|
|
|
|
// while reading off the coords
|
|
|
|
|
2003-11-12 08:21:18 +00:00
|
|
|
if (button_down) {
|
2003-09-19 16:08:54 +00:00
|
|
|
// click means reset - back to start again
|
2005-02-19 14:02:16 +00:00
|
|
|
_vm->_debugger->_draggingRectangle = 0;
|
2003-07-28 01:44:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-11-12 08:21:18 +00:00
|
|
|
return;
|
|
|
|
}
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2004-06-10 06:41:08 +00:00
|
|
|
#if RIGHT_CLICK_CLEARS_LUGGAGE
|
|
|
|
if (Logic::_scriptVars[OBJECT_HELD] && (me->buttons & RD_RIGHTBUTTONDOWN) && heldIsInInventory()) {
|
2004-03-17 09:03:15 +00:00
|
|
|
Logic::_scriptVars[OBJECT_HELD] = 0;
|
2003-11-12 08:21:18 +00:00
|
|
|
_menuSelectedPos = 0;
|
|
|
|
setLuggage(0);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2003-11-12 08:21:18 +00:00
|
|
|
// Now do the normal click stuff
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2004-05-09 13:32:04 +00:00
|
|
|
// We only care about down clicks when the mouse is over an object.
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2003-11-12 08:21:18 +00:00
|
|
|
if (!_mouseTouching || !button_down)
|
|
|
|
return;
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2003-11-12 08:21:18 +00:00
|
|
|
// There's a mouse event to be processed and the mouse is on something.
|
|
|
|
// Notice that the floor itself is considered an object.
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2003-11-12 08:21:18 +00:00
|
|
|
// There are no menus about so its nice and simple. This is as close to
|
|
|
|
// the old advisor_188 script as we get, I'm sorry to say.
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2003-11-12 08:21:18 +00:00
|
|
|
// If player is walking or relaxing then those need to terminate
|
|
|
|
// correctly. Otherwise set player run the targets action script or, do
|
|
|
|
// a special walk if clicking on the scroll-more icon
|
|
|
|
|
|
|
|
// PLAYER_ACTION script variable - whatever catches this must reset to
|
|
|
|
// 0 again
|
2004-03-17 09:03:15 +00:00
|
|
|
// Logic::_scriptVars[PLAYER_ACTION] = _mouseTouching;
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2003-11-12 08:21:18 +00:00
|
|
|
// Idle or router-anim will catch it
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2003-11-12 08:21:18 +00:00
|
|
|
// Set global script variable 'button'
|
2003-09-19 16:08:54 +00:00
|
|
|
|
2003-11-12 08:21:18 +00:00
|
|
|
if (me->buttons & RD_LEFTBUTTONDOWN) {
|
2004-03-17 09:03:15 +00:00
|
|
|
Logic::_scriptVars[LEFT_BUTTON] = 1;
|
|
|
|
Logic::_scriptVars[RIGHT_BUTTON] = 0;
|
2003-11-12 08:21:18 +00:00
|
|
|
_buttonClick = 0; // for re-click
|
|
|
|
} else {
|
2004-03-17 09:03:15 +00:00
|
|
|
Logic::_scriptVars[LEFT_BUTTON] = 0;
|
|
|
|
Logic::_scriptVars[RIGHT_BUTTON] = 1;
|
2003-11-12 08:21:18 +00:00
|
|
|
_buttonClick = 1; // for re-click
|
|
|
|
}
|
2003-09-19 16:08:54 +00:00
|
|
|
|
2003-11-12 08:21:18 +00:00
|
|
|
// These might be required by the action script about to be run
|
2005-02-19 14:02:16 +00:00
|
|
|
ScreenInfo *screenInfo = _vm->_screen->getScreenInfo();
|
2003-09-19 16:08:54 +00:00
|
|
|
|
2005-02-19 14:02:16 +00:00
|
|
|
Logic::_scriptVars[MOUSE_X] = _pos.x + screenInfo->scroll_offset_x;
|
|
|
|
Logic::_scriptVars[MOUSE_Y] = _pos.y + screenInfo->scroll_offset_y;
|
2003-09-19 16:08:54 +00:00
|
|
|
|
2004-03-17 09:03:15 +00:00
|
|
|
if (_mouseTouching == Logic::_scriptVars[EXIT_CLICK_ID] && (me->buttons & RD_LEFTBUTTONDOWN)) {
|
2003-11-12 08:21:18 +00:00
|
|
|
// It's the exit double click situation. Let the existing
|
|
|
|
// interaction continue and start fading down. Switch the human
|
|
|
|
// off too
|
|
|
|
|
2005-02-19 14:02:16 +00:00
|
|
|
noHuman();
|
|
|
|
_vm->_logic->fnFadeDown(NULL);
|
2003-11-12 08:21:18 +00:00
|
|
|
|
|
|
|
// Tell the walker
|
|
|
|
|
2004-03-17 09:03:15 +00:00
|
|
|
Logic::_scriptVars[EXIT_FADING] = 1;
|
|
|
|
} else if (_oldButton == _buttonClick && _mouseTouching == Logic::_scriptVars[CLICKED_ID] && _mousePointerRes != NORMAL_MOUSE_ID) {
|
2003-11-12 08:21:18 +00:00
|
|
|
// Re-click. Do nothing, except on floors
|
|
|
|
} else {
|
|
|
|
// For re-click
|
|
|
|
|
|
|
|
_oldButton = _buttonClick;
|
|
|
|
|
|
|
|
// For scripts to know what's been clicked. First used for
|
|
|
|
// 'room_13_turning_script' in object 'biscuits_13'
|
|
|
|
|
2004-03-17 09:03:15 +00:00
|
|
|
Logic::_scriptVars[CLICKED_ID] = _mouseTouching;
|
2003-11-12 08:21:18 +00:00
|
|
|
|
|
|
|
// Must clear these two double-click control flags - do it here
|
|
|
|
// so reclicks after exit clicks are cleared up
|
|
|
|
|
2004-03-17 09:03:15 +00:00
|
|
|
Logic::_scriptVars[EXIT_CLICK_ID] = 0;
|
|
|
|
Logic::_scriptVars[EXIT_FADING] = 0;
|
2003-11-12 08:21:18 +00:00
|
|
|
|
2003-11-23 13:40:24 +00:00
|
|
|
// WORKAROUND: Examining the lift while at the top of the
|
2003-11-29 17:05:30 +00:00
|
|
|
// pyramid causes the game to hang.
|
2003-11-23 13:40:24 +00:00
|
|
|
//
|
2003-11-29 17:05:30 +00:00
|
|
|
// Actually, what happens is that the elevator's click handler
|
|
|
|
// (action script 2) disables the mouse cursor. Then it checks
|
|
|
|
// if the user clicked the left button, in which case it
|
|
|
|
// triggers the "going down" animation.
|
2003-11-23 13:40:24 +00:00
|
|
|
//
|
2003-11-29 17:05:30 +00:00
|
|
|
// If the user didn't click the left button, the script will
|
|
|
|
// terminate. With the mouse cursor still disabled. Ouch!
|
2003-11-23 13:40:24 +00:00
|
|
|
|
2004-03-17 09:03:15 +00:00
|
|
|
if (_mouseTouching == 2773 && !Logic::_scriptVars[LEFT_BUTTON]) {
|
2003-11-29 17:05:30 +00:00
|
|
|
warning("Working around elevator script bug");
|
2003-11-23 13:40:24 +00:00
|
|
|
} else
|
2005-02-19 14:02:16 +00:00
|
|
|
_vm->_logic->setPlayerActionEvent(CUR_PLAYER_ID, _mouseTouching);
|
2003-11-12 08:21:18 +00:00
|
|
|
|
2004-04-24 12:29:35 +00:00
|
|
|
byte buf1[NAME_LEN], buf2[NAME_LEN];
|
|
|
|
|
2004-03-17 09:03:15 +00:00
|
|
|
if (Logic::_scriptVars[OBJECT_HELD])
|
|
|
|
debug(2, "Used \"%s\" on \"%s\"",
|
2005-02-19 14:02:16 +00:00
|
|
|
_vm->fetchObjectName(Logic::_scriptVars[OBJECT_HELD], buf1),
|
|
|
|
_vm->fetchObjectName(Logic::_scriptVars[CLICKED_ID], buf2));
|
2004-03-17 09:03:15 +00:00
|
|
|
else if (Logic::_scriptVars[LEFT_BUTTON])
|
|
|
|
debug(2, "Left-clicked on \"%s\"",
|
2005-02-19 14:02:16 +00:00
|
|
|
_vm->fetchObjectName(Logic::_scriptVars[CLICKED_ID], buf1));
|
2003-11-12 08:21:18 +00:00
|
|
|
else // RIGHT BUTTON
|
2004-03-17 09:03:15 +00:00
|
|
|
debug(2, "Right-clicked on \"%s\"",
|
2005-02-19 14:02:16 +00:00
|
|
|
_vm->fetchObjectName(Logic::_scriptVars[CLICKED_ID], buf1));
|
2003-07-28 01:44:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-02-19 14:02:16 +00:00
|
|
|
void Mouse::mouseOnOff() {
|
2003-09-19 16:08:54 +00:00
|
|
|
// this handles the cursor graphic when moving on and off mouse areas
|
|
|
|
// it also handles the luggage thingy
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2003-09-19 16:08:54 +00:00
|
|
|
uint32 pointer_type;
|
|
|
|
static uint8 mouse_flicked_off = 0;
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2003-11-02 18:50:09 +00:00
|
|
|
_oldMouseTouching = _mouseTouching;
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2003-09-19 16:08:54 +00:00
|
|
|
// don't detect objects that are hidden behind the menu bars (ie. in
|
|
|
|
// the scrolled-off areas of the screen)
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2005-02-19 14:02:16 +00:00
|
|
|
if (_pos.y < 0 || _pos.y > 399) {
|
2003-09-19 16:08:54 +00:00
|
|
|
pointer_type = 0;
|
2003-11-02 18:50:09 +00:00
|
|
|
_mouseTouching = 0;
|
2003-09-19 16:08:54 +00:00
|
|
|
} else {
|
2003-11-02 18:50:09 +00:00
|
|
|
// set '_mouseTouching' & return pointer_type
|
|
|
|
pointer_type = checkMouseList();
|
2003-07-28 01:44:38 +00:00
|
|
|
}
|
|
|
|
|
2003-09-19 16:08:54 +00:00
|
|
|
// same as previous cycle?
|
2003-11-02 18:50:09 +00:00
|
|
|
if (!mouse_flicked_off && _oldMouseTouching == _mouseTouching) {
|
2003-09-19 16:08:54 +00:00
|
|
|
// yes, so nothing to do
|
|
|
|
// BUT CARRY ON IF MOUSE WAS FLICKED OFF!
|
|
|
|
return;
|
|
|
|
}
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2003-09-19 16:08:54 +00:00
|
|
|
// can reset this now
|
|
|
|
mouse_flicked_off = 0;
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2003-09-19 16:08:54 +00:00
|
|
|
//the cursor has moved onto something
|
2003-11-02 18:50:09 +00:00
|
|
|
if (!_oldMouseTouching && _mouseTouching) {
|
2003-09-19 16:08:54 +00:00
|
|
|
// make a copy of the object we've moved onto because one day
|
|
|
|
// we'll move back off again! (but the list positioning could
|
|
|
|
// theoretically have changed)
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2003-09-19 16:08:54 +00:00
|
|
|
// we can only move onto something from being on nothing - we
|
|
|
|
// stop the system going from one to another when objects
|
|
|
|
// overlap
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2003-11-02 18:50:09 +00:00
|
|
|
_oldMouseTouching = _mouseTouching;
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2003-09-19 16:08:54 +00:00
|
|
|
// run get on
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2003-09-19 16:08:54 +00:00
|
|
|
if (pointer_type) {
|
|
|
|
// 'pointer_type' holds the resource id of the
|
|
|
|
// pointer anim
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2003-11-02 18:50:09 +00:00
|
|
|
setMouse(pointer_type);
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2003-09-19 16:08:54 +00:00
|
|
|
// setup luggage icon
|
2004-03-17 09:03:15 +00:00
|
|
|
if (Logic::_scriptVars[OBJECT_HELD]) {
|
2003-11-02 18:50:09 +00:00
|
|
|
setLuggage(_currentLuggageResource);
|
2003-09-19 16:08:54 +00:00
|
|
|
}
|
2004-04-24 12:29:35 +00:00
|
|
|
} else {
|
|
|
|
byte buf[NAME_LEN];
|
|
|
|
|
2005-02-19 14:02:16 +00:00
|
|
|
error("ERROR: mouse.pointer==0 for object %d (%s) - update logic script!", _mouseTouching, _vm->fetchObjectName(_mouseTouching, buf));
|
2004-04-24 12:29:35 +00:00
|
|
|
}
|
2003-11-02 18:50:09 +00:00
|
|
|
} else if (_oldMouseTouching && !_mouseTouching) {
|
2003-09-19 16:08:54 +00:00
|
|
|
// the cursor has moved off something - reset cursor to
|
|
|
|
// normal pointer
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2003-11-02 18:50:09 +00:00
|
|
|
_oldMouseTouching = 0;
|
|
|
|
setMouse(NORMAL_MOUSE_ID);
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2003-09-19 16:08:54 +00:00
|
|
|
// reset luggage only when necessary
|
2003-11-02 18:50:09 +00:00
|
|
|
} else if (_oldMouseTouching && _mouseTouching) {
|
2003-09-19 16:08:54 +00:00
|
|
|
// The cursor has moved off something and onto something
|
|
|
|
// else. Flip to a blank cursor for a cycle.
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2003-09-19 16:08:54 +00:00
|
|
|
// ignore the new id this cycle - should hit next cycle
|
2003-11-02 18:50:09 +00:00
|
|
|
_mouseTouching = 0;
|
|
|
|
_oldMouseTouching = 0;
|
|
|
|
setMouse(0);
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2003-09-19 16:08:54 +00:00
|
|
|
// so we know to set the mouse pointer back to normal if 2nd
|
|
|
|
// hot-spot doesn't register because mouse pulled away
|
|
|
|
// quickly (onto nothing)
|
|
|
|
|
|
|
|
mouse_flicked_off = 1;
|
2003-07-28 01:44:38 +00:00
|
|
|
|
|
|
|
// reset luggage only when necessary
|
2003-09-19 16:08:54 +00:00
|
|
|
} else {
|
|
|
|
// Mouse was flicked off for one cycle, but then moved onto
|
|
|
|
// nothing before 2nd hot-spot registered
|
|
|
|
|
2003-11-02 18:50:09 +00:00
|
|
|
// both '_oldMouseTouching' & '_mouseTouching' will be zero
|
2003-09-19 16:08:54 +00:00
|
|
|
// reset cursor to normal pointer
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2003-11-02 18:50:09 +00:00
|
|
|
setMouse(NORMAL_MOUSE_ID);
|
2003-09-19 16:08:54 +00:00
|
|
|
}
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2003-09-19 16:08:54 +00:00
|
|
|
// possible check for edge of screen more-to-scroll here on large
|
|
|
|
// screens
|
2003-07-28 01:44:38 +00:00
|
|
|
}
|
|
|
|
|
2005-02-19 14:02:16 +00:00
|
|
|
void Mouse::setMouse(uint32 res) {
|
2003-10-09 06:57:35 +00:00
|
|
|
// high level - whats the mouse - for the engine
|
2003-11-02 18:50:09 +00:00
|
|
|
_mousePointerRes = res;
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2003-09-19 16:08:54 +00:00
|
|
|
if (res) {
|
2005-02-19 14:02:16 +00:00
|
|
|
byte *icon = _vm->_resman->openResource(res) + sizeof(StandardHeader);
|
|
|
|
uint32 len = _vm->_resman->fetchLen(res) - sizeof(StandardHeader);
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2003-09-19 16:08:54 +00:00
|
|
|
// don't pulse the normal pointer - just do the regular anim
|
|
|
|
// loop
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2003-09-19 16:08:54 +00:00
|
|
|
if (res == NORMAL_MOUSE_ID)
|
2005-02-19 14:02:16 +00:00
|
|
|
setMouseAnim(icon, len, RDMOUSE_NOFLASH);
|
2003-09-19 16:08:54 +00:00
|
|
|
else
|
2005-02-19 14:02:16 +00:00
|
|
|
setMouseAnim(icon, len, RDMOUSE_FLASH);
|
2003-09-19 16:08:54 +00:00
|
|
|
|
2005-02-19 14:02:16 +00:00
|
|
|
_vm->_resman->closeResource(res);
|
2003-09-19 16:08:54 +00:00
|
|
|
} else {
|
|
|
|
// blank cursor
|
2005-02-19 14:02:16 +00:00
|
|
|
setMouseAnim(NULL, 0, 0);
|
2003-07-28 01:44:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-02-19 14:02:16 +00:00
|
|
|
void Mouse::setLuggage(uint32 res) {
|
2003-11-02 18:50:09 +00:00
|
|
|
_realLuggageItem = res;
|
2003-09-19 16:08:54 +00:00
|
|
|
|
|
|
|
if (res) {
|
2005-02-19 14:02:16 +00:00
|
|
|
byte *icon = _vm->_resman->openResource(res) + sizeof(StandardHeader);
|
|
|
|
uint32 len = _vm->_resman->fetchLen(res) - sizeof(StandardHeader);
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2005-02-19 14:02:16 +00:00
|
|
|
setLuggageAnim(icon, len);
|
|
|
|
_vm->_resman->closeResource(res);
|
2003-09-19 16:08:54 +00:00
|
|
|
} else
|
2005-02-19 14:02:16 +00:00
|
|
|
setLuggageAnim(NULL, 0);
|
2003-07-28 01:44:38 +00:00
|
|
|
}
|
2003-09-19 16:08:54 +00:00
|
|
|
|
2005-02-19 14:02:16 +00:00
|
|
|
void Mouse::setObjectHeld(uint32 res) {
|
|
|
|
setLuggage(res);
|
2003-09-19 16:08:54 +00:00
|
|
|
|
2005-02-19 14:02:16 +00:00
|
|
|
Logic::_scriptVars[OBJECT_HELD] = res;
|
|
|
|
_currentLuggageResource = res;
|
|
|
|
|
|
|
|
// mode locked - no menu available
|
|
|
|
_mouseModeLocked = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32 Mouse::checkMouseList() {
|
|
|
|
ScreenInfo *screenInfo = _vm->_screen->getScreenInfo();
|
|
|
|
|
2005-02-28 14:03:53 +00:00
|
|
|
Common::Point mousePos(_pos.x + screenInfo->scroll_offset_x, _pos.y + screenInfo->scroll_offset_y);
|
|
|
|
|
2005-02-19 14:02:16 +00:00
|
|
|
// Number of priorities subject to implementation needs
|
2004-01-04 15:05:54 +00:00
|
|
|
for (int priority = 0; priority < 10; priority++) {
|
2005-02-28 13:28:02 +00:00
|
|
|
for (uint i = 0; i < _curMouse; i++) {
|
2003-11-12 08:21:18 +00:00
|
|
|
// If the mouse pointer is over this
|
2003-09-19 16:08:54 +00:00
|
|
|
// mouse-detection-box
|
|
|
|
|
2005-02-28 14:03:53 +00:00
|
|
|
if (_mouseList[i].priority == priority && _mouseList[i].rect.contains(mousePos)) {
|
2003-11-12 08:21:18 +00:00
|
|
|
// Record id
|
2004-01-04 15:05:54 +00:00
|
|
|
_mouseTouching = _mouseList[i].id;
|
2003-09-19 16:08:54 +00:00
|
|
|
|
2004-01-04 15:05:54 +00:00
|
|
|
createPointerText(_mouseList[i].pointer_text, _mouseList[i].pointer);
|
2003-09-19 16:08:54 +00:00
|
|
|
|
2003-11-12 08:21:18 +00:00
|
|
|
// Return pointer type
|
2004-01-04 15:05:54 +00:00
|
|
|
return _mouseList[i].pointer;
|
2003-07-28 01:44:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-01-04 15:05:54 +00:00
|
|
|
// Touching nothing; no pointer to return
|
|
|
|
_mouseTouching = 0;
|
|
|
|
return 0;
|
2003-07-28 01:44:38 +00:00
|
|
|
}
|
2003-09-19 16:08:54 +00:00
|
|
|
|
|
|
|
#define POINTER_TEXT_WIDTH 640 // just in case!
|
|
|
|
#define POINTER_TEXT_PEN 184 // white
|
|
|
|
|
2005-02-19 14:02:16 +00:00
|
|
|
void Mouse::createPointerText(uint32 text_id, uint32 pointer_res) {
|
2003-09-19 16:08:54 +00:00
|
|
|
uint32 local_text;
|
|
|
|
uint32 text_res;
|
2004-04-23 07:02:11 +00:00
|
|
|
byte *text;
|
2003-09-19 16:08:54 +00:00
|
|
|
// offsets for pointer text sprite from pointer position
|
|
|
|
int16 xOffset, yOffset;
|
|
|
|
uint8 justification;
|
|
|
|
|
2005-02-20 15:38:48 +00:00
|
|
|
if (!_objectLabels || !text_id)
|
2003-11-12 08:21:18 +00:00
|
|
|
return;
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2003-11-12 08:21:18 +00:00
|
|
|
// Check what the pointer is, to set offsets correctly for text
|
|
|
|
// position
|
|
|
|
|
|
|
|
switch (pointer_res) {
|
|
|
|
case CROSHAIR:
|
|
|
|
yOffset = -7;
|
|
|
|
xOffset = +10;
|
|
|
|
break;
|
|
|
|
case EXIT0:
|
|
|
|
yOffset = +15;
|
|
|
|
xOffset = +20;
|
|
|
|
break;
|
|
|
|
case EXIT1:
|
|
|
|
yOffset = +16;
|
|
|
|
xOffset = -10;
|
|
|
|
break;
|
|
|
|
case EXIT2:
|
|
|
|
yOffset = +10;
|
|
|
|
xOffset = -22;
|
|
|
|
break;
|
|
|
|
case EXIT3:
|
|
|
|
yOffset = -16;
|
|
|
|
xOffset = -10;
|
|
|
|
break;
|
|
|
|
case EXIT4:
|
|
|
|
yOffset = -15;
|
|
|
|
xOffset = +15;
|
|
|
|
break;
|
|
|
|
case EXIT5:
|
|
|
|
yOffset = -12;
|
|
|
|
xOffset = +10;
|
|
|
|
break;
|
|
|
|
case EXIT6:
|
|
|
|
yOffset = +10;
|
|
|
|
xOffset = +25;
|
|
|
|
break;
|
|
|
|
case EXIT7:
|
|
|
|
yOffset = +16;
|
|
|
|
xOffset = +20;
|
|
|
|
break;
|
|
|
|
case EXITDOWN:
|
|
|
|
yOffset = -20;
|
|
|
|
xOffset = -10;
|
|
|
|
break;
|
|
|
|
case EXITUP:
|
|
|
|
yOffset = +20;
|
|
|
|
xOffset = +20;
|
|
|
|
break;
|
|
|
|
case MOUTH:
|
|
|
|
yOffset = -10;
|
|
|
|
xOffset = +15;
|
|
|
|
break;
|
|
|
|
case NORMAL:
|
|
|
|
yOffset = -10;
|
|
|
|
xOffset = +15;
|
|
|
|
break;
|
|
|
|
case PICKUP:
|
|
|
|
yOffset = -40;
|
|
|
|
xOffset = +10;
|
|
|
|
break;
|
|
|
|
case SCROLL_L:
|
|
|
|
yOffset = -20;
|
|
|
|
xOffset = +20;
|
|
|
|
break;
|
|
|
|
case SCROLL_R:
|
|
|
|
yOffset = -20;
|
|
|
|
xOffset = -20;
|
|
|
|
break;
|
|
|
|
case USE:
|
|
|
|
yOffset = -8;
|
|
|
|
xOffset = +20;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
// Shouldn't happen if we cover all the different mouse
|
|
|
|
// pointers above
|
|
|
|
yOffset = -10;
|
|
|
|
xOffset = +10;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set up justification for text sprite, based on its offsets from the
|
|
|
|
// pointer position
|
|
|
|
|
|
|
|
if (yOffset < 0) {
|
|
|
|
// Above pointer
|
|
|
|
if (xOffset < 0) {
|
|
|
|
// Above left
|
|
|
|
justification = POSITION_AT_RIGHT_OF_BASE;
|
|
|
|
} else if (xOffset > 0) {
|
|
|
|
// Above right
|
|
|
|
justification = POSITION_AT_LEFT_OF_BASE;
|
|
|
|
} else {
|
|
|
|
// Above centre
|
|
|
|
justification = POSITION_AT_CENTRE_OF_BASE;
|
|
|
|
}
|
|
|
|
} else if (yOffset > 0) {
|
|
|
|
// Below pointer
|
|
|
|
if (xOffset < 0) {
|
|
|
|
// Below left
|
|
|
|
justification = POSITION_AT_RIGHT_OF_TOP;
|
|
|
|
} else if (xOffset > 0) {
|
|
|
|
// Below right
|
|
|
|
justification = POSITION_AT_LEFT_OF_TOP;
|
|
|
|
} else {
|
|
|
|
// Below centre
|
|
|
|
justification = POSITION_AT_CENTRE_OF_TOP;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Same y-coord as pointer
|
|
|
|
if (xOffset < 0) {
|
|
|
|
// Centre left
|
|
|
|
justification = POSITION_AT_RIGHT_OF_CENTRE;
|
|
|
|
} else if (xOffset > 0) {
|
|
|
|
// Centre right
|
|
|
|
justification = POSITION_AT_LEFT_OF_CENTRE;
|
|
|
|
} else {
|
|
|
|
// Centre centre - shouldn't happen anyway!
|
|
|
|
justification = POSITION_AT_LEFT_OF_CENTRE;
|
|
|
|
}
|
|
|
|
}
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2003-11-12 08:21:18 +00:00
|
|
|
// Text resource number, and line number within the resource
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2003-11-12 08:21:18 +00:00
|
|
|
text_res = text_id / SIZE;
|
|
|
|
local_text = text_id & 0xffff;
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2003-11-12 08:21:18 +00:00
|
|
|
// open text file & get the line
|
2005-02-19 14:02:16 +00:00
|
|
|
text = _vm->fetchTextLine(_vm->_resman->openResource(text_res), local_text);
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2003-11-12 08:21:18 +00:00
|
|
|
// 'text+2' to skip the first 2 bytes which form the
|
|
|
|
// line reference number
|
2003-09-19 16:08:54 +00:00
|
|
|
|
2005-02-19 14:02:16 +00:00
|
|
|
_pointerTextBlocNo = _vm->_fontRenderer->buildNewBloc(
|
|
|
|
text + 2, _pos.x + xOffset,
|
|
|
|
_pos.y + yOffset,
|
2003-11-12 08:21:18 +00:00
|
|
|
POINTER_TEXT_WIDTH, POINTER_TEXT_PEN,
|
|
|
|
RDSPR_TRANS | RDSPR_DISPLAYALIGN,
|
2005-02-19 14:02:16 +00:00
|
|
|
_vm->_speechFontId, justification);
|
2003-09-19 16:08:54 +00:00
|
|
|
|
2003-11-12 08:21:18 +00:00
|
|
|
// now ok to close the text file
|
2005-02-19 14:02:16 +00:00
|
|
|
_vm->_resman->closeResource(text_res);
|
2003-07-28 01:44:38 +00:00
|
|
|
}
|
2003-09-19 16:08:54 +00:00
|
|
|
|
2005-02-19 14:02:16 +00:00
|
|
|
void Mouse::clearPointerText() {
|
2003-11-02 18:50:09 +00:00
|
|
|
if (_pointerTextBlocNo) {
|
2005-02-19 14:02:16 +00:00
|
|
|
_vm->_fontRenderer->killTextBloc(_pointerTextBlocNo);
|
2003-11-02 18:50:09 +00:00
|
|
|
_pointerTextBlocNo = 0;
|
2003-07-28 01:44:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-02-19 14:02:16 +00:00
|
|
|
void Mouse::hideMouse() {
|
2003-11-02 18:50:09 +00:00
|
|
|
// leaves the menus open
|
|
|
|
// used by the system when clicking right on a menu item to examine
|
|
|
|
// it and when combining objects
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2003-09-26 10:07:18 +00:00
|
|
|
// for logic scripts
|
2004-03-17 09:03:15 +00:00
|
|
|
Logic::_scriptVars[MOUSE_AVAILABLE] = 0;
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2003-10-09 06:57:35 +00:00
|
|
|
// human/mouse off
|
2003-11-02 18:50:09 +00:00
|
|
|
_mouseStatus = true;
|
|
|
|
|
|
|
|
setMouse(0);
|
|
|
|
setLuggage(0);
|
|
|
|
}
|
|
|
|
|
2005-02-19 14:02:16 +00:00
|
|
|
void Mouse::noHuman() {
|
|
|
|
hideMouse();
|
|
|
|
clearPointerText();
|
2003-07-28 01:44:38 +00:00
|
|
|
|
2005-02-19 14:02:16 +00:00
|
|
|
// Must be normal mouse situation or a largely neutral situation -
|
|
|
|
// special menus use hideMouse()
|
2003-11-02 18:50:09 +00:00
|
|
|
|
2005-02-19 14:02:16 +00:00
|
|
|
// Don't hide menu in conversations
|
|
|
|
if (Logic::_scriptVars[TALK_FLAG] == 0)
|
|
|
|
hideMenu(RDMENU_BOTTOM);
|
2003-11-02 18:50:09 +00:00
|
|
|
|
2005-02-19 14:02:16 +00:00
|
|
|
if (_mouseMode == MOUSE_system_menu) {
|
|
|
|
// Close menu
|
|
|
|
_mouseMode = MOUSE_normal;
|
|
|
|
hideMenu(RDMENU_TOP);
|
|
|
|
}
|
|
|
|
}
|
2003-11-02 18:50:09 +00:00
|
|
|
|
2005-02-19 14:02:16 +00:00
|
|
|
void Mouse::addHuman() {
|
|
|
|
// For logic scripts
|
|
|
|
Logic::_scriptVars[MOUSE_AVAILABLE] = 1;
|
2003-11-02 18:50:09 +00:00
|
|
|
|
2005-02-19 14:02:16 +00:00
|
|
|
if (_mouseStatus) {
|
|
|
|
// Force engine to choose a cursor
|
|
|
|
_mouseStatus = false;
|
|
|
|
_mouseTouching = 1;
|
|
|
|
}
|
2003-11-02 18:50:09 +00:00
|
|
|
|
2005-02-19 14:02:16 +00:00
|
|
|
// Clear this to reset no-second-click system
|
|
|
|
Logic::_scriptVars[CLICKED_ID] = 0;
|
2003-11-02 18:50:09 +00:00
|
|
|
|
2005-02-19 14:02:16 +00:00
|
|
|
// This is now done outside the OBJECT_HELD check in case it's set to
|
|
|
|
// zero before now!
|
2003-11-02 18:50:09 +00:00
|
|
|
|
2005-02-19 14:02:16 +00:00
|
|
|
// Unlock the mouse from possible large object lock situtations - see
|
|
|
|
// syphon in rm 3
|
2003-11-02 18:50:09 +00:00
|
|
|
|
2005-02-19 14:02:16 +00:00
|
|
|
_mouseModeLocked = false;
|
2003-11-02 18:50:09 +00:00
|
|
|
|
2005-02-19 14:02:16 +00:00
|
|
|
if (Logic::_scriptVars[OBJECT_HELD]) {
|
|
|
|
// Was dragging something around - need to clear this again
|
|
|
|
Logic::_scriptVars[OBJECT_HELD] = 0;
|
2003-11-02 18:50:09 +00:00
|
|
|
|
2005-02-19 14:02:16 +00:00
|
|
|
// And these may also need clearing, just in case
|
|
|
|
_examiningMenuIcon = false;
|
|
|
|
Logic::_scriptVars[COMBINE_BASE] = 0;
|
2003-11-12 08:21:18 +00:00
|
|
|
|
2005-02-19 14:02:16 +00:00
|
|
|
setLuggage(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
// If mouse is over menu area
|
|
|
|
if (_pos.y > 399) {
|
|
|
|
if (_mouseMode != MOUSE_holding) {
|
|
|
|
// VITAL - reset things & rebuild the menu
|
|
|
|
_mouseMode = MOUSE_normal;
|
|
|
|
}
|
|
|
|
setMouse(NORMAL_MOUSE_ID);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Enabled/disabled from console; status printed with on-screen debug
|
|
|
|
// info
|
|
|
|
|
|
|
|
if (_vm->_debugger->_testingSnR) {
|
|
|
|
uint8 black[4] = { 0, 0, 0, 0 };
|
|
|
|
uint8 white[4] = { 255, 255, 255, 0 };
|
|
|
|
|
|
|
|
// Testing logic scripts by simulating instant Save & Restore
|
|
|
|
|
|
|
|
_vm->_screen->setPalette(0, 1, white, RDPAL_INSTANT);
|
|
|
|
|
|
|
|
// Stops all fx & clears the queue - eg. when leaving a room
|
|
|
|
_vm->_sound->clearFxQueue();
|
|
|
|
|
|
|
|
// Trash all object resources so they load in fresh & restart
|
|
|
|
// their logic scripts
|
|
|
|
|
|
|
|
_vm->_resman->killAllObjects(false);
|
|
|
|
|
|
|
|
_vm->_screen->setPalette(0, 1, black, RDPAL_INSTANT);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Mouse::refreshInventory() {
|
|
|
|
// Can reset this now
|
|
|
|
Logic::_scriptVars[COMBINE_BASE] = 0;
|
|
|
|
|
|
|
|
// Cause 'object_held' icon to be greyed. The rest are coloured.
|
|
|
|
_examiningMenuIcon = true;
|
|
|
|
buildMenu();
|
|
|
|
_examiningMenuIcon = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Mouse::startConversation() {
|
|
|
|
if (Logic::_scriptVars[TALK_FLAG] == 0) {
|
|
|
|
// See fnChooser & speech scripts
|
|
|
|
Logic::_scriptVars[CHOOSER_COUNT_FLAG] = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
noHuman();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Mouse::endConversation() {
|
|
|
|
hideMenu(RDMENU_BOTTOM);
|
|
|
|
|
|
|
|
if (_pos.y > 399) {
|
|
|
|
// Will wait for cursor to move off the bottom menu
|
|
|
|
_mouseMode = MOUSE_holding;
|
|
|
|
}
|
|
|
|
|
|
|
|
// In case DC forgets
|
|
|
|
Logic::_scriptVars[TALK_FLAG] = 0;
|
2003-11-02 18:50:09 +00:00
|
|
|
}
|
|
|
|
|
2005-02-19 14:02:16 +00:00
|
|
|
void Mouse::monitorPlayerActivity() {
|
2003-11-02 18:50:09 +00:00
|
|
|
// if there is at least one mouse event outstanding
|
2005-02-19 14:02:16 +00:00
|
|
|
if (_vm->checkForMouseEvents()) {
|
2003-11-02 18:50:09 +00:00
|
|
|
// reset activity delay counter
|
|
|
|
_playerActivityDelay = 0;
|
|
|
|
} else {
|
|
|
|
// no. of game cycles since mouse event queue last empty
|
|
|
|
_playerActivityDelay++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-02-19 14:02:16 +00:00
|
|
|
void Mouse::checkPlayerActivity(uint32 seconds) {
|
|
|
|
// Convert seconds to game cycles
|
|
|
|
uint32 threshold = seconds * 12;
|
|
|
|
|
|
|
|
// If the actual delay is at or above the given threshold, reset the
|
|
|
|
// activity delay counter now that we've got a positive check.
|
|
|
|
|
|
|
|
if (_playerActivityDelay >= threshold) {
|
|
|
|
_playerActivityDelay = 0;
|
|
|
|
Logic::_scriptVars[RESULT] = 1;
|
|
|
|
} else
|
|
|
|
Logic::_scriptVars[RESULT] = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Mouse::pauseGame() {
|
|
|
|
// Make the mouse cursor normal. This is the only place where we are
|
|
|
|
// allowed to clear the luggage this way.
|
|
|
|
|
|
|
|
clearPointerText();
|
|
|
|
setLuggageAnim(NULL, 0);
|
|
|
|
setMouse(0);
|
|
|
|
setMouseTouching(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Mouse::unpauseGame() {
|
|
|
|
if (Logic::_scriptVars[OBJECT_HELD] && _realLuggageItem)
|
|
|
|
setLuggage(_realLuggageItem);
|
|
|
|
}
|
|
|
|
|
2003-10-04 00:52:27 +00:00
|
|
|
} // End of namespace Sword2
|