108 lines
2.7 KiB
C++
108 lines
2.7 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 3 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, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
#include "mm/mm1/views_enh/interactions/inspectron.h"
|
|
#include "mm/mm1/maps/map35.h"
|
|
#include "mm/mm1/globals.h"
|
|
#include "mm/mm1/sound.h"
|
|
|
|
namespace MM {
|
|
namespace MM1 {
|
|
namespace ViewsEnh {
|
|
namespace Interactions {
|
|
|
|
Inspectron::Inspectron() : Interaction("Inspectron", 18) {
|
|
_title = STRING["maps.emap35.inspectron_title"];
|
|
}
|
|
|
|
bool Inspectron::msgFocus(const FocusMessage &msg) {
|
|
Interaction::msgFocus(msg);
|
|
return true;
|
|
}
|
|
|
|
bool Inspectron::msgGame(const GameMessage &msg) {
|
|
if (msg._name != "DISPLAY")
|
|
return false;
|
|
|
|
g_globals->_currCharacter = &g_globals->_party[0];
|
|
_mode = g_globals->_currCharacter->_quest ? ACTIVE_QUEST : CAN_ACCEPT;
|
|
|
|
if (_mode == CAN_ACCEPT)
|
|
Sound::sound(SOUND_2);
|
|
addView();
|
|
clearButtons();
|
|
|
|
if (_mode == CAN_ACCEPT) {
|
|
addText(STRING["maps.map35.inspectron2"]);
|
|
addButton(STRING["maps.accept"], 'Y');
|
|
addButton(STRING["maps.decline"], 'N');
|
|
|
|
} else {
|
|
// There's an active quest, so check for completion
|
|
MM1::Maps::Map35 &map = *static_cast<MM1::Maps::Map35 *>(g_maps->_currentMap);
|
|
int questNum = g_globals->_party[0]._quest;
|
|
Common::String line;
|
|
|
|
if (questNum >= 8 && questNum <= 14)
|
|
line = map.checkQuestComplete();
|
|
else
|
|
line = STRING["maps.map35.inspectron4"];
|
|
|
|
g_maps->_mapPos.y++;
|
|
map.redrawGame();
|
|
|
|
addText(line);
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
bool Inspectron::msgKeypress(const KeypressMessage &msg) {
|
|
MM1::Maps::Map35 &map = *static_cast<MM1::Maps::Map35 *>(g_maps->_currentMap);
|
|
|
|
if (_mode == CAN_ACCEPT) {
|
|
if (msg.keycode == Common::KEYCODE_y) {
|
|
map.acceptQuest();
|
|
_mode = ACCEPTED_QUEST;
|
|
|
|
clearButtons();
|
|
addText(STRING[Common::String::format(
|
|
"maps.map35.quests.%d",
|
|
g_globals->_party[0]._quest - 8
|
|
)]);
|
|
|
|
redraw();
|
|
return true;
|
|
|
|
} else if (msg.keycode == Common::KEYCODE_n) {
|
|
close();
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
} // namespace Interactions
|
|
} // namespace ViewsEnh
|
|
} // namespace MM1
|
|
} // namespace MM
|