scummvm/engines/lab/interface.cpp

187 lines
5.7 KiB
C++
Raw Normal View History

2014-10-06 14:50:05 +02: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-11-24 23:59:30 +01:00
#include "lab/lab.h"
2015-07-17 10:38:06 +03:00
#include "lab/labfun.h"
#include "lab/image.h"
2014-10-06 14:50:05 +02:00
#include "lab/interface.h"
#include "common/util.h"
namespace Lab {
Common::KeyState _keyPressed;
2014-12-26 00:32:42 +01:00
Gadget *createButton(uint16 x, uint16 y, uint16 id, uint16 key, Image *im, Image *imalt) {
2014-10-06 14:50:05 +02:00
Gadget *gptr;
x = g_lab->_utils->vgaScaleX(x);
2015-07-17 10:38:06 +03:00
2014-12-26 00:32:42 +01:00
if ((gptr = new Gadget())) {
2014-10-06 14:50:05 +02:00
gptr->x = x;
gptr->y = y;
gptr->_gadgetID = id;
gptr->_keyEquiv = key;
gptr->_image = im;
gptr->_altImage = imalt;
2014-10-06 14:50:05 +02:00
return gptr;
} else
return NULL;
}
void freeButtonList(GadgetList *gadgetList) {
for (GadgetList::iterator gadget = gadgetList->begin(); gadget != gadgetList->end(); ++gadget) {
delete *gadget;
2014-10-06 14:50:05 +02:00
}
gadgetList->clear();
2014-10-06 14:50:05 +02:00
}
/*****************************************************************************/
/* Draws a gadget list to the screen. */
/*****************************************************************************/
void drawGadgetList(GadgetList *gadgetList) {
for (GadgetList::iterator gadget = gadgetList->begin(); gadget != gadgetList->end(); ++gadget) {
(*gadget)->_image->drawImage((*gadget)->x, (*gadget)->y);
2014-10-06 14:50:05 +02:00
if (GADGETOFF & (*gadget)->_flags)
disableGadget((*gadget), 1);
2014-10-06 14:50:05 +02:00
}
}
/*****************************************************************************/
2015-12-03 14:22:04 +02:00
/* Dims a gadget, and makes it unavailable for using. */
2014-10-06 14:50:05 +02:00
/*****************************************************************************/
2015-12-03 14:22:04 +02:00
void disableGadget(Gadget *curgad, uint16 pencolor) {
2015-12-06 14:36:49 +01:00
g_lab->_graphics->overlayRect(pencolor, curgad->x, curgad->y, curgad->x + curgad->_image->_width - 1, curgad->y + curgad->_image->_height - 1);
curgad->_flags |= GADGETOFF;
2014-10-06 14:50:05 +02:00
}
/*****************************************************************************/
2015-12-03 14:22:04 +02:00
/* Undims a gadget, and makes it available again. */
2014-10-06 14:50:05 +02:00
/*****************************************************************************/
2015-12-03 14:22:04 +02:00
void enableGadget(Gadget *curgad) {
curgad->_image->drawImage(curgad->x, curgad->y);
curgad->_flags &= !(GADGETOFF);
2014-10-06 14:50:05 +02:00
}
/*****************************************************************************/
/* 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. */
/*****************************************************************************/
Gadget *LabEngine::checkNumGadgetHit(GadgetList *gadgetList, uint16 key) {
2014-10-06 14:50:05 +02:00
uint16 gkey = key - '0';
if (!gadgetList)
return NULL;
for (GadgetList::iterator gadgetItr = gadgetList->begin(); gadgetItr != gadgetList->end(); ++gadgetItr) {
Gadget *gadget = *gadgetItr;
if ((gkey - 1 == gadget->_gadgetID || (gkey == 0 && gadget->_gadgetID == 9) ||
(gadget->_keyEquiv != 0 && makeGadgetKeyEquiv(key) == gadget->_keyEquiv))
&& !(GADGETOFF & gadget->_flags)) {
_event->mouseHide();
gadget->_altImage->drawImage(gadget->x, gadget->y);
_event->mouseShow();
2014-10-06 14:50:05 +02:00
g_system->delayMillis(80);
_event->mouseHide();
gadget->_image->drawImage(gadget->x, gadget->y);
_event->mouseShow();
2014-10-06 14:50:05 +02:00
return gadget;
2014-10-06 14:50:05 +02:00
}
}
return NULL;
}
2014-12-26 00:32:42 +01:00
IntuiMessage IMessage;
2014-10-06 14:50:05 +02:00
IntuiMessage *LabEngine::getMsg() {
2014-12-26 00:32:42 +01:00
Gadget *curgad;
2014-10-06 14:50:05 +02:00
int Qualifiers;
_event->updateMouse();
2014-12-26 00:32:42 +01:00
2014-10-06 14:50:05 +02:00
Qualifiers = _keyPressed.flags;
if ((curgad = _event->mouseGadget()) != NULL) {
_event->updateMouse();
IMessage._msgClass = GADGETUP;
IMessage._code = curgad->_gadgetID;
IMessage._gadgetID = curgad->_gadgetID;
IMessage._qualifier = Qualifiers;
2014-10-06 14:50:05 +02:00
return &IMessage;
} else if (_event->mouseButton(&IMessage._mouseX, &IMessage._mouseY, true)) { /* Left Button */
IMessage._qualifier = IEQUALIFIER_LEFTBUTTON | Qualifiers;
IMessage._msgClass = MOUSEBUTTONS;
2014-10-06 14:50:05 +02:00
return &IMessage;
} else if (_event->mouseButton(&IMessage._mouseX, &IMessage._mouseY, false)) { /* Right Button */
IMessage._qualifier = IEQUALIFIER_RBUTTON | Qualifiers;
IMessage._msgClass = MOUSEBUTTONS;
2014-10-06 14:50:05 +02:00
return &IMessage;
} else if (_event->keyPress(&IMessage._code)) { /* Keyboard key */
curgad = checkNumGadgetHit(_event->_screenGadgetList, IMessage._code);
2014-10-06 14:50:05 +02:00
if (curgad) {
IMessage._msgClass = GADGETUP;
IMessage._code = curgad->_gadgetID;
IMessage._gadgetID = curgad->_gadgetID;
2014-10-06 14:50:05 +02:00
} else
IMessage._msgClass = RAWKEY;
2014-10-06 14:50:05 +02:00
IMessage._qualifier = Qualifiers;
2014-10-06 14:50:05 +02:00
return &IMessage;
} else
return NULL;
}
} // End of namespace Lab