scummvm/backends/platform/PalmOS/Src/base_event.cpp

390 lines
10 KiB
C++

/* 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$
*
*/
#include "be_base.h"
#include "common/events.h"
#ifdef STDLIB_TRACE_MEMORY
# include <stdlib.h>
#endif
#if defined(COMPILE_OS5) && defined(PALMOS_ARM)
extern "C" void SysEventGet(EventType *eventP, Int32 timeout);
extern "C" void SysEventAddToQueue (const EventType *eventP);
#endif
void OSystem_PalmBase::timer_handler() {
UInt32 msecs = getMillis();
if (_timer.active && (msecs >= _timer.nextExpiry)) {
_timer.duration = _timer.callback(_timer.duration);
_timer.nextExpiry = msecs + _timer.duration;
}
}
void OSystem_PalmBase::battery_handler() {
// check battery level every 15secs
if ((TimGetTicks() - _batCheckLast) > _batCheckTicks) {
UInt16 voltage, warnThreshold, criticalThreshold;
Boolean pluggedIn;
voltage = SysBatteryInfoV20(false, &warnThreshold, &criticalThreshold, NULL, NULL, &pluggedIn);
if (!pluggedIn) {
if (voltage <= warnThreshold) {
if (!_showBatLow) {
_showBatLow = true;
draw_osd(kDrawBatLow, _screenDest.w - 18, -16, true, 2);
displayMessageOnOSD("Battery low.");
}
} else {
if (_showBatLow) {
_showBatLow = false;
draw_osd(kDrawBatLow, _screenDest.w - 18, -16, false);
}
}
if (voltage <= criticalThreshold) {
::EventType event;
event.eType = keyDownEvent;
event.data.keyDown.chr = vchrPowerOff;
event.data.keyDown.modifiers = commandKeyMask;
#if defined(COMPILE_OS5) && defined(PALMOS_ARM)
SysEventAddToQueue(&event);
#else
EvtAddEventToQueue(&event);
#endif
}
}
_batCheckLast = TimGetTicks();
}
}
bool OSystem_PalmBase::pollEvent(Common::Event &event) {
::EventType ev;
Boolean handled;
UInt32 keyCurrentState;
Coord x, y;
battery_handler();
timer_handler();
sound_handler();
for(;;) {
// if it was a key pressed, let the keyup event raise
if (_wasKey) {
// check for hardkey repeat for mouse emulation
keyCurrentState = KeyCurrentState();
if (!(keyCurrentState & _keyExtraMask)) {
_lastKeyRepeat = 0;
} else if (getMillis() >= (_keyExtraRepeat + _keyExtraDelay)) {
_keyExtraRepeat = getMillis();
if (gVars->arrowKeys) {
/* if HARD_KEY(Up, chrUpArrow)
else if HARD_KEY(Down, chrDownArrow)
else if HARD_KEY(Left, chrLeftArrow)
else if HARD_KEY(Right, chrRightArrow)
*/
} else {
// button released ?
if (_keyExtraPressed) {
if (_keyExtraPressed & _keyExtra.bitActionA) {
if (!(keyCurrentState & _keyExtra.bitActionA)) {
_keyExtraPressed &= ~_keyExtra.bitActionA;
event.type = Common::EVENT_LBUTTONUP;
event.mouse.x = _mouseCurState.x;
event.mouse.y = _mouseCurState.y;
return true;
}
}
if (_keyExtraPressed & _keyExtra.bitActionB) {
if (!(keyCurrentState & _keyExtra.bitActionB)) {
_keyExtraPressed &= ~_keyExtra.bitActionB;
event.type = Common::EVENT_RBUTTONUP;
event.mouse.x = _mouseCurState.x;
event.mouse.y = _mouseCurState.y;
return true;
}
}
}
Int8 sx = 0;
Int8 sy = 0;
if (keyCurrentState & _keyExtra.bitUp)
sy = -1;
else if (keyCurrentState & _keyExtra.bitDown)
sy = +1;
if (keyCurrentState & _keyExtra.bitLeft)
sx = -1;
else if (keyCurrentState & _keyExtra.bitRight)
sx = +1;
if (sx || sy) {
simulate_mouse(event, sx, sy, &x, &y);
event.type = Common::EVENT_MOUSEMOVE;
event.mouse.x = x;
event.mouse.y = y;
warpMouse(x, y);
return true;
}
}
}
}
#if defined(COMPILE_OS5) && defined(PALMOS_ARM)
SysEventGet(&ev, evtNoWait);
#else
EvtGetEvent(&ev, evtNoWait);
#endif
if (ev.eType == keyUpEvent) {
int k = 0;
switch (ev.data.keyUp.chr) {
// arrow keys
case chrUpArrow:
k = 273; break;
case chrDownArrow:
k = 274; break;
case chrLeftArrow:
k = 275; break;
case chrRightArrow:
k = 276; break;
}
if (k) {
event.type = Common::EVENT_KEYUP;
event.kbd.keycode = k;
event.kbd.ascii = k;
event.kbd.flags = 0;
return true;
}
} else if (ev.eType == keyDownEvent) {
int k = 0;
switch (ev.data.keyDown.chr) {
// ESC key
case vchrLaunch:
event.type = Common::EVENT_KEYDOWN;
event.kbd.keycode = 27;
event.kbd.ascii = 27;
event.kbd.flags = 0;
return true;
// F5 = menu
case vchrMenu:
event.type = Common::EVENT_KEYDOWN;
event.kbd.keycode = 319;
event.kbd.ascii = 319;
event.kbd.flags = 0;
return true;
// if hotsync pressed, etc...
case vchrHardCradle:
case vchrHardCradle2:
case vchrLowBattery:
case vchrFind:
// case vchrBrightness: // volume control on Zodiac, let other backends disable it
case vchrContrast:
// do nothing
return true;
// arrow keys
case chrUpArrow:
k = 273; break;
case chrDownArrow:
k = 274; break;
case chrLeftArrow:
k = 275; break;
case chrRightArrow:
k = 276; break;
}
if (k) {
event.type = Common::EVENT_KEYDOWN;
event.kbd.keycode = k;
event.kbd.ascii = k;
event.kbd.flags = 0;
return true;
}
}
if (check_event(event, &ev))
return true;
// prevent crash when alarm is raised
handled = ((ev.eType == keyDownEvent) &&
(ev.data.keyDown.modifiers & commandKeyMask) &&
((ev.data.keyDown.chr == vchrAttnStateChanged) ||
(ev.data.keyDown.chr == vchrAttnUnsnooze)));
// graffiti strokes, auto-off, etc...
if (!handled)
if (SysHandleEvent(&ev))
continue;
switch(ev.eType) {
case penMoveEvent:
get_coordinates(&ev, x, y);
if (y > _screenHeight || y < 0 || x > _screenWidth || x < 0)
return false;
if (abs(y - event.mouse.y) <= 2 || abs(x - event.mouse.x) <= 2)
return false;
event.type = Common::EVENT_MOUSEMOVE;
event.mouse.x = x;
event.mouse.y = y;
warpMouse(x, y);
return true;
case penDownEvent:
get_coordinates(&ev, x, y);
// indy fight mode
if (_useNumPad && !_overlayVisible) {
char num = '1';
num += 9 -
(3 - (3 * x / _screenWidth )) -
(3 * (3 * y / _screenHeight));
event.type = Common::EVENT_KEYDOWN;
event.kbd.keycode = num;
event.kbd.ascii = num;
event.kbd.flags = 0;
_wasKey = true;
return true;
}
if (y > _screenHeight || y < 0 || x > _screenWidth || x < 0)
return false;
event.type = ((gVars->stylusClick || _overlayVisible) ? Common::EVENT_LBUTTONDOWN : Common::EVENT_MOUSEMOVE);
event.mouse.x = x;
event.mouse.y = y;
warpMouse(x, y);
return true;
case penUpEvent:
get_coordinates(&ev, x, y);
event.type = ((gVars->stylusClick || _overlayVisible) ? Common::EVENT_LBUTTONUP : Common::EVENT_MOUSEMOVE);
if (y > _screenHeight || y < 0 || x > _screenWidth || x < 0)
return false;
event.mouse.x = x;
event.mouse.y = y;
warpMouse(x, y);
return true;
case keyDownEvent:
if (ev.data.keyDown.chr == vchrCommand &&
(ev.data.keyDown.modifiers & commandKeyMask)) {
_lastKeyModifier++;
_lastKeyModifier %= kModifierCount;
if (_lastKeyModifier)
draw_osd((kDrawKeyState + _lastKeyModifier - 1), 2, _screenDest.h + 2, true);
else
draw_osd(kDrawKeyState, 2, _screenDest.h + 2, false);
return false;
}
char mask = 0;
UInt16 key = ev.data.keyDown.chr;
if (_lastKeyModifier == kModifierNone) {
// for keyboard mode
if (ev.data.keyDown.modifiers & shiftKeyMask) mask |= Common::KBD_SHIFT;
if (ev.data.keyDown.modifiers & controlKeyMask) mask |= Common::KBD_CTRL;
if (ev.data.keyDown.modifiers & optionKeyMask) mask |= Common::KBD_ALT;
if (ev.data.keyDown.modifiers & commandKeyMask) mask |= Common::KBD_CTRL|Common::KBD_ALT;
} else {
// for grafiti mode
if (_lastKeyModifier == kModifierCommand) mask = Common::KBD_CTRL|Common::KBD_ALT;
if (_lastKeyModifier == kModifierAlt) mask = Common::KBD_ALT;
if (_lastKeyModifier == kModifierCtrl) mask = Common::KBD_CTRL;
}
if (_lastKeyModifier)
draw_osd(kDrawKeyState, 2, _screenDest.h + 2, false);
_lastKeyModifier = kModifierNone;
// F1 -> F10 key
if (key >= '0' && key <= '9' && mask == (Common::KBD_CTRL|Common::KBD_ALT)) {
key = (key == '0') ? 324 : (315 + key - '1');
mask = 0;
#ifdef STDLIB_TRACE_MEMORY
// print memory
} else if (key == 'm' && mask == (Common::KBD_CTRL|Common::KBD_ALT)) {
printf("Used memory: %d\n", __stdlib_trace_memory);
#endif
// exit
} else if ((key == 'z' && mask == Common::KBD_CTRL) || (mask == Common::KBD_ALT && key == 'x')) {
event.type = Common::EVENT_QUIT;
return true;
// num pad (indy fight mode)
} else if (key == 'n' && mask == (Common::KBD_CTRL|Common::KBD_ALT) && !_overlayVisible) {
_useNumPad = !_useNumPad;
draw_osd(kDrawFight, _screenDest.w - 34, _screenDest.h + 2, _useNumPad, 1);
displayMessageOnOSD(_useNumPad ? "Fight mode on." : "Fight mode off.");
return false;
}
// other keys
_wasKey = true;
event.type = Common::EVENT_KEYDOWN;
event.kbd.keycode = key;
event.kbd.ascii = key;
event.kbd.flags = mask;
return true;
default:
if (_wasKey && ev.eType != keyHoldEvent) {
event.type = Common::EVENT_KEYUP;
_wasKey = false;
return true;
}
return false;
};
}
}