mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 07:11:49 +00:00
STARK: Bind returning to previous screen to key Esc
This commit is contained in:
parent
09b67ae045
commit
180294c02f
@ -144,6 +144,23 @@ void UserInterface::handleDoubleClick() {
|
||||
_currentScreen->handleDoubleClick();
|
||||
}
|
||||
|
||||
void UserInterface::handleEscape() {
|
||||
bool handled = false;
|
||||
|
||||
handled = StarkGameInterface->skipCurrentSpeeches();
|
||||
if (!handled) {
|
||||
handled = skipFMV();
|
||||
}
|
||||
if (!handled) {
|
||||
Screen::Name curScreenName = _currentScreen->getName();
|
||||
if (curScreenName != Screen::kScreenGame && curScreenName != Screen::kScreenMainMenu) {
|
||||
backPrevScreen();
|
||||
} else if (StarkSettings->getBoolSetting(Settings::kTimeSkip)) {
|
||||
StarkGlobal->setFastForward();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void UserInterface::inventoryOpen(bool open) {
|
||||
// Make the inventory update its contents.
|
||||
if (open) {
|
||||
|
@ -74,6 +74,7 @@ public:
|
||||
void handleClick();
|
||||
void handleRightClick();
|
||||
void handleDoubleClick();
|
||||
void handleEscape();
|
||||
void notifyShouldExit() { _exitGame = true; }
|
||||
void inventoryOpen(bool open);
|
||||
bool shouldExit() { return _exitGame; }
|
||||
|
@ -218,14 +218,7 @@ void StarkEngine::processEvents() {
|
||||
_console->onFrame();
|
||||
}
|
||||
} else if (e.kbd.keycode == Common::KEYCODE_ESCAPE) {
|
||||
// Quick-hack for now.
|
||||
bool skipped = _gameInterface->skipCurrentSpeeches();
|
||||
if (!skipped) {
|
||||
skipped = _userInterface->skipFMV();
|
||||
}
|
||||
if (!skipped && StarkSettings->getBoolSetting(Settings::kTimeSkip)) {
|
||||
_global->setFastForward();
|
||||
}
|
||||
_userInterface->handleEscape();
|
||||
} else if ((e.kbd.keycode == Common::KEYCODE_RETURN
|
||||
|| e.kbd.keycode == Common::KEYCODE_KP_ENTER)) {
|
||||
if (e.kbd.hasFlags(Common::KBD_ALT)) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user