2004-04-12 21:40:49 +00:00
|
|
|
/* ScummVM - Scumm Interpreter
|
2005-01-01 16:20:17 +00:00
|
|
|
* Copyright (C) 2004-2005 The ScummVM project
|
2004-04-12 21:40:49 +00:00
|
|
|
*
|
|
|
|
* The ReInherit Engine is (C)2000-2003 by Daniel Balsom.
|
|
|
|
*
|
|
|
|
* 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$
|
|
|
|
*
|
|
|
|
*/
|
2004-06-05 11:12:51 +00:00
|
|
|
#include "saga/saga.h"
|
|
|
|
|
2004-08-01 11:48:53 +00:00
|
|
|
#include "saga/gfx.h"
|
2004-08-02 15:47:42 +00:00
|
|
|
#include "saga/actor.h"
|
2004-08-10 18:31:33 +00:00
|
|
|
#include "saga/console.h"
|
2004-08-06 01:39:17 +00:00
|
|
|
#include "saga/interface.h"
|
2004-07-31 23:00:48 +00:00
|
|
|
#include "saga/render.h"
|
2004-08-04 20:28:57 +00:00
|
|
|
#include "saga/scene.h"
|
2004-08-12 23:57:45 +00:00
|
|
|
#include "saga/script.h"
|
2004-04-12 21:40:49 +00:00
|
|
|
|
2004-12-27 22:08:20 +00:00
|
|
|
#include "common/system.h"
|
|
|
|
|
2004-04-12 21:40:49 +00:00
|
|
|
namespace Saga {
|
|
|
|
|
2004-08-11 14:04:12 +00:00
|
|
|
int SagaEngine::processInput() {
|
2004-05-01 19:41:47 +00:00
|
|
|
OSystem::Event event;
|
2004-04-12 21:40:49 +00:00
|
|
|
|
2004-10-07 23:26:41 +00:00
|
|
|
Point imousePt;
|
2004-04-12 21:40:49 +00:00
|
|
|
|
2004-09-28 20:19:37 +00:00
|
|
|
while (g_system->pollEvent(event)) {
|
2004-12-05 17:42:20 +00:00
|
|
|
switch (event.type) {
|
2004-05-01 19:41:47 +00:00
|
|
|
case OSystem::EVENT_KEYDOWN:
|
2004-12-03 19:15:44 +00:00
|
|
|
if (event.kbd.flags == OSystem::KBD_CTRL) {
|
|
|
|
if (event.kbd.keycode == 'd')
|
|
|
|
_console->attach();
|
2004-04-12 21:40:49 +00:00
|
|
|
}
|
2004-05-01 19:41:47 +00:00
|
|
|
switch (event.kbd.keycode) {
|
2004-12-03 19:15:44 +00:00
|
|
|
case '#':
|
|
|
|
case '`':
|
|
|
|
case '~':
|
|
|
|
_console->attach();
|
2004-04-12 21:40:49 +00:00
|
|
|
break;
|
2004-12-03 19:15:44 +00:00
|
|
|
case 'r':
|
|
|
|
_interface->draw();
|
2004-04-12 21:40:49 +00:00
|
|
|
break;
|
2004-05-01 19:41:47 +00:00
|
|
|
case 282: // F1
|
2004-12-03 19:15:44 +00:00
|
|
|
_render->toggleFlag(RF_SHOW_FPS);
|
2004-04-12 21:40:49 +00:00
|
|
|
break;
|
2004-05-01 19:41:47 +00:00
|
|
|
case 283: // F2
|
2004-12-03 19:15:44 +00:00
|
|
|
_render->toggleFlag(RF_PALETTE_TEST);
|
2004-04-12 21:40:49 +00:00
|
|
|
break;
|
2004-05-01 19:41:47 +00:00
|
|
|
case 284: // F3
|
2004-12-03 19:15:44 +00:00
|
|
|
_render->toggleFlag(RF_TEXT_TEST);
|
2004-04-12 21:40:49 +00:00
|
|
|
break;
|
2004-05-01 19:41:47 +00:00
|
|
|
case 285: // F4
|
2004-12-03 19:15:44 +00:00
|
|
|
_render->toggleFlag(RF_OBJECTMAP_TEST);
|
2004-04-12 21:40:49 +00:00
|
|
|
break;
|
2004-05-01 19:41:47 +00:00
|
|
|
case 9: // Tab
|
2004-12-03 19:15:44 +00:00
|
|
|
_script->SThreadDebugStep();
|
2004-04-12 21:40:49 +00:00
|
|
|
break;
|
2004-05-01 19:41:47 +00:00
|
|
|
|
|
|
|
// Actual game keys
|
|
|
|
case 32: // space
|
2004-12-21 06:49:07 +00:00
|
|
|
_actor->abortSpeech();
|
2004-04-12 21:40:49 +00:00
|
|
|
break;
|
2004-05-01 19:41:47 +00:00
|
|
|
case 19: // pause
|
2004-12-03 19:15:44 +00:00
|
|
|
case 'p':
|
|
|
|
_render->toggleFlag(RF_RENDERPAUSE);
|
2004-04-12 21:40:49 +00:00
|
|
|
break;
|
2004-05-01 19:41:47 +00:00
|
|
|
case 27: // Esc
|
2004-05-01 16:15:55 +00:00
|
|
|
// Skip to next scene skip target
|
2005-01-06 14:02:53 +00:00
|
|
|
switch (_interface->getMode()) {
|
|
|
|
case kPanelNull:
|
|
|
|
if (_scene->isInDemo())
|
|
|
|
_scene->skipScene();
|
|
|
|
else
|
|
|
|
_actor->abortAllSpeeches();
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2004-04-12 21:40:49 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
2004-05-01 19:41:47 +00:00
|
|
|
case OSystem::EVENT_LBUTTONDOWN:
|
2004-10-04 23:51:23 +00:00
|
|
|
_mousePos.x = event.mouse.x;
|
|
|
|
_mousePos.y = event.mouse.y;
|
2004-10-07 23:26:41 +00:00
|
|
|
imousePt = _mousePos;
|
2004-12-03 19:15:44 +00:00
|
|
|
_interface->update(imousePt, UPDATE_MOUSECLICK);
|
2004-04-12 21:40:49 +00:00
|
|
|
break;
|
2004-05-01 19:41:47 +00:00
|
|
|
case OSystem::EVENT_MOUSEMOVE:
|
2004-06-25 20:01:31 +00:00
|
|
|
_mousePos.x = event.mouse.x;
|
|
|
|
_mousePos.y = event.mouse.y;
|
2004-10-07 23:26:41 +00:00
|
|
|
imousePt = _mousePos;
|
2004-05-01 19:41:47 +00:00
|
|
|
break;
|
|
|
|
case OSystem::EVENT_QUIT:
|
|
|
|
g_system->quit();
|
|
|
|
break;
|
2004-04-12 21:40:49 +00:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-10-27 21:32:28 +00:00
|
|
|
return SUCCESS;
|
2004-04-12 21:40:49 +00:00
|
|
|
}
|
|
|
|
|
2004-10-04 23:09:38 +00:00
|
|
|
Point SagaEngine::getMousePos() {
|
2004-06-25 20:01:31 +00:00
|
|
|
return _mousePos;
|
2004-04-12 21:40:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // End of namespace Saga
|
|
|
|
|