85 lines
2.7 KiB
C++
85 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/resistances.h"
|
|
#include "mm/mm1/globals.h"
|
|
|
|
|
|
namespace MM {
|
|
namespace MM1 {
|
|
namespace ViewsEnh {
|
|
namespace Interactions {
|
|
|
|
Resistances::Resistances() : Interaction("Resistances", 4) {
|
|
_title = STRING["maps.emap02.resistances"];
|
|
}
|
|
|
|
bool Resistances::msgFocus(const FocusMessage &msg) {
|
|
PartyView::msgFocus(msg);
|
|
|
|
addText(STRING["maps.map02.morango"]);
|
|
return true;
|
|
}
|
|
|
|
void Resistances::draw() {
|
|
Interaction::draw();
|
|
|
|
if (_lines.empty()) {
|
|
const Character &c = *g_globals->_currCharacter;
|
|
|
|
setReduced(true);
|
|
writeLine(0, STRING["maps.emap02.magic"], ALIGN_LEFT, 0);
|
|
writeLine(0, c._resistances._s._magic, ALIGN_RIGHT, 45);
|
|
writeLine(0, STRING["maps.emap02.fire"], ALIGN_LEFT, 50);
|
|
writeLine(0, c._resistances._s._fire, ALIGN_RIGHT, 90);
|
|
writeLine(0, STRING["maps.emap02.cold"], ALIGN_LEFT, 95);
|
|
writeLine(0, c._resistances._s._cold, ALIGN_RIGHT, 145);
|
|
writeLine(0, STRING["maps.emap02.electricity"], ALIGN_LEFT, 150);
|
|
writeLine(0, c._resistances._s._electricity, ALIGN_RIGHT, 195);
|
|
|
|
writeLine(1, STRING["maps.emap02.acid"], ALIGN_LEFT, 0);
|
|
writeLine(1, c._resistances._s._acid, ALIGN_RIGHT, 45);
|
|
writeLine(1, STRING["maps.emap02.fear"], ALIGN_LEFT, 50);
|
|
writeLine(1, c._resistances._s._fear, ALIGN_RIGHT, 90);
|
|
writeLine(1, STRING["maps.emap02.poison"], ALIGN_LEFT, 95);
|
|
writeLine(1, c._resistances._s._poison, ALIGN_RIGHT, 145);
|
|
writeLine(1, STRING["maps.emap02.sleep"], ALIGN_LEFT, 150);
|
|
writeLine(1, c._resistances._s._psychic, ALIGN_RIGHT, 195);
|
|
}
|
|
}
|
|
|
|
void Resistances::viewAction() {
|
|
// When already showing resistances, any click/key will close view
|
|
if (_lines.empty())
|
|
close();
|
|
}
|
|
|
|
void Resistances::charSwitched(Character *priorChar) {
|
|
Interaction::charSwitched(priorChar);
|
|
_lines.clear();
|
|
redraw();
|
|
}
|
|
|
|
} // namespace Interactions
|
|
} // namespace ViewsEnh
|
|
} // namespace MM1
|
|
} // namespace MM
|