scummvm/engines/lab/interface.cpp

210 lines
5.9 KiB
C++
Raw Normal View History

2014-10-06 12:50:05 +00:00
/* 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.
*
*/
2015-07-17 07:38:06 +00:00
#include "lab/labfun.h"
2014-10-06 12:50:05 +00:00
#include "lab/stddefines.h"
#include "lab/interface.h"
#include "lab/mouse.h"
#include "lab/vga.h"
#include "common/util.h"
namespace Lab {
extern bool IsHiRes;
Common::KeyState _keyPressed;
2014-12-25 23:32:42 +00:00
Gadget *createButton(uint16 x, uint16 y, uint16 id, uint16 key, Image *im, Image *imalt) {
2014-10-06 12:50:05 +00:00
Gadget *gptr;
2015-07-17 07:38:06 +00:00
x = VGAScaleX(x);
2014-12-25 23:32:42 +00:00
if ((gptr = new Gadget())) {
2014-10-06 12:50:05 +00:00
gptr->x = x;
gptr->y = y;
gptr->GadgetID = id;
gptr->KeyEquiv = key;
gptr->Im = im;
gptr->ImAlt = imalt;
gptr->NextGadget = NULL;
return gptr;
} else
return NULL;
}
void freeButtonList(Gadget *gptrlist) {
2014-12-25 23:32:42 +00:00
Gadget *gptr, *next = gptrlist;
2014-10-06 12:50:05 +00:00
while (next) {
gptr = next;
next = next->NextGadget;
2014-12-21 08:11:59 +00:00
free(gptr);
2014-10-06 12:50:05 +00:00
}
}
/*****************************************************************************/
/* Draws a gadget list to the screen. */
/*****************************************************************************/
2014-12-25 23:32:42 +00:00
void drawGadgetList(Gadget *gadlist) {
2014-10-06 12:50:05 +00:00
while (gadlist) {
drawImage(gadlist->Im, gadlist->x, gadlist->y);
if (GADGETOFF & gadlist->GadgetFlags)
ghoastGadget(gadlist, 1);
gadlist = gadlist->NextGadget;
}
}
/*****************************************************************************/
/* Ghoasts a gadget, and makes it unavailable for using. */
/*****************************************************************************/
2014-12-25 23:32:42 +00:00
void ghoastGadget(Gadget *curgad, uint16 pencolor) {
2014-10-06 12:50:05 +00:00
ghoastRect(pencolor, curgad->x, curgad->y, curgad->x + curgad->Im->Width - 1, curgad->y + curgad->Im->Height - 1);
curgad->GadgetFlags |= GADGETOFF;
}
/*****************************************************************************/
/* Unghoasts a gadget, and makes it available again. */
/*****************************************************************************/
2014-12-25 23:32:42 +00:00
void unGhoastGadget(Gadget *curgad) {
2014-10-06 12:50:05 +00:00
drawImage(curgad->Im, curgad->x, curgad->y);
curgad->GadgetFlags &= !(GADGETOFF);
}
/*****************************************************************************/
/* Make a key press have the right case for a gadget KeyEquiv value. */
/*****************************************************************************/
uint16 makeGadgetKeyEquiv(uint16 key) {
if (Common::isAlnum(key))
key = tolower(key);
return key;
}
/*****************************************************************************/
/* Checks whether or not the cords fall within one of the gadgets in a list */
/* of gadgets. */
/*****************************************************************************/
2014-12-25 23:32:42 +00:00
static Gadget *checkNumGadgetHit(Gadget *gadlist, uint16 key) {
2014-10-06 12:50:05 +00:00
uint16 gkey = key - '0';
while (gadlist != NULL) {
if ((gkey - 1 == gadlist->GadgetID || (gkey == 0 && gadlist->GadgetID == 9) ||
(gadlist->KeyEquiv != 0 && makeGadgetKeyEquiv(key) == gadlist->KeyEquiv))
2014-12-27 13:18:40 +00:00
&& !(GADGETOFF & gadlist->GadgetFlags)) {
2014-10-06 12:50:05 +00:00
mouseHide();
drawImage(gadlist->ImAlt, gadlist->x, gadlist->y);
mouseShow();
g_system->delayMillis(80);
mouseHide();
drawImage(gadlist->Im, gadlist->x, gadlist->y);
mouseShow();
return gadlist;
} else {
gadlist = gadlist->NextGadget;
}
}
return NULL;
}
/*****************************************************************************/
/* Checks whether or not a key has been pressed. */
/*****************************************************************************/
static bool keyPress(uint16 *KeyCode) {
2014-12-19 21:41:08 +00:00
if (WSDL_HasNextChar()) {
*KeyCode = WSDL_GetNextChar();
2014-10-06 12:50:05 +00:00
return true;
}
return false;
}
2014-12-25 23:32:42 +00:00
IntuiMessage IMessage;
extern Gadget *ScreenGadgetList;
2014-10-06 12:50:05 +00:00
IntuiMessage *getMsg() {
2014-12-25 23:32:42 +00:00
Gadget *curgad;
2014-10-06 12:50:05 +00:00
int Qualifiers;
updateMouse();
2014-12-25 23:32:42 +00:00
2014-10-06 12:50:05 +00:00
Qualifiers = _keyPressed.flags;
if ((curgad = mouseGadget()) != NULL) {
updateMouse();
IMessage.msgClass = GADGETUP;
IMessage.code = curgad->GadgetID;
IMessage.gadgetID = curgad->GadgetID;
IMessage.qualifier = Qualifiers;
2014-10-06 12:50:05 +00:00
return &IMessage;
} else if (mouseButton(&IMessage.mouseX, &IMessage.mouseY, true)) { /* Left Button */
IMessage.qualifier = IEQUALIFIER_LEFTBUTTON | Qualifiers;
IMessage.msgClass = MOUSEBUTTONS;
2014-10-06 12:50:05 +00:00
return &IMessage;
} else if (mouseButton(&IMessage.mouseX, &IMessage.mouseY, false)) { /* Right Button */
IMessage.qualifier = IEQUALIFIER_RBUTTON | Qualifiers;
IMessage.msgClass = MOUSEBUTTONS;
2014-10-06 12:50:05 +00:00
return &IMessage;
} else if (keyPress(&IMessage.code)) { /* Keyboard key */
curgad = checkNumGadgetHit(ScreenGadgetList, IMessage.code);
2014-10-06 12:50:05 +00:00
if (curgad) {
IMessage.msgClass = GADGETUP;
IMessage.code = curgad->GadgetID;
IMessage.gadgetID = curgad->GadgetID;
2014-10-06 12:50:05 +00:00
} else
IMessage.msgClass = RAWKEY;
2014-10-06 12:50:05 +00:00
IMessage.qualifier = Qualifiers;
2014-10-06 12:50:05 +00:00
return &IMessage;
} else
return NULL;
}
} // End of namespace Lab