2013-07-01 16:14:48 +00:00
|
|
|
/* 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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This code is based on the original source code of Lord Avalot d'Argent version 1.3.
|
|
|
|
* Copyright (c) 1994-1995 Mike, Mark and Thomas Thurman.
|
|
|
|
*/
|
|
|
|
|
2013-09-20 05:55:10 +00:00
|
|
|
/* Original name: DROPDOWN A customized version of Oopmenu (qv). */
|
2013-07-01 16:14:48 +00:00
|
|
|
|
|
|
|
#include "avalanche/avalanche.h"
|
2013-09-18 05:47:52 +00:00
|
|
|
#include "avalanche/menu.h"
|
2013-09-07 17:09:06 +00:00
|
|
|
#include "avalanche/animation.h"
|
2013-07-01 16:14:48 +00:00
|
|
|
|
|
|
|
#include "common/textconsole.h"
|
|
|
|
|
2013-09-04 16:12:06 +00:00
|
|
|
namespace Avalanche {
|
|
|
|
|
2013-09-20 21:19:30 +00:00
|
|
|
void HeadType::init(char trig, char altTrig, Common::String title, byte pos, MenuFunc setupFunc, MenuFunc chooseFunc, Menu *menu) {
|
2013-09-04 16:12:06 +00:00
|
|
|
_trigger = trig;
|
|
|
|
_altTrigger = altTrig;
|
|
|
|
_title = title;
|
|
|
|
_position = pos;
|
2013-09-20 21:19:30 +00:00
|
|
|
_xpos = _position * _menu->kSpacing + _menu->kIndent;
|
|
|
|
_xright = (_position + 1) * _menu->kSpacing + _menu->kIndent;
|
2013-09-04 16:12:06 +00:00
|
|
|
_setupFunc = setupFunc;
|
|
|
|
_chooseFunc = chooseFunc;
|
2013-07-01 16:14:48 +00:00
|
|
|
|
2013-09-20 21:19:30 +00:00
|
|
|
_menu = menu;
|
2013-07-01 16:14:48 +00:00
|
|
|
}
|
|
|
|
|
2013-09-04 16:12:06 +00:00
|
|
|
void HeadType::draw() {
|
2013-09-07 07:00:34 +00:00
|
|
|
CursorMan.showMouse(false);
|
2013-09-20 21:19:30 +00:00
|
|
|
_menu->drawMenuText(_xpos, 1, _trigger, _title, true, false);
|
2013-09-04 16:12:06 +00:00
|
|
|
CursorMan.showMouse(true);
|
2013-07-01 16:14:48 +00:00
|
|
|
}
|
|
|
|
|
2013-09-04 16:12:06 +00:00
|
|
|
void HeadType::highlight() {
|
2013-08-16 11:40:58 +00:00
|
|
|
CursorMan.showMouse(false);
|
2013-07-01 16:14:48 +00:00
|
|
|
|
2013-09-20 21:19:30 +00:00
|
|
|
_menu->_vm->_sound->stopSound();
|
|
|
|
_menu->drawMenuText(_xpos, 1, _trigger, _title, true, true);
|
2013-09-07 07:00:34 +00:00
|
|
|
|
2013-09-20 21:19:30 +00:00
|
|
|
_menu->_activeMenuItem._left = _xpos;
|
|
|
|
_menu->_activeMenuItem._activeNow = true;
|
|
|
|
_menu->_activeMenuItem._activeNum = _position;
|
|
|
|
_menu->_menuActive = true;
|
2013-09-07 07:00:34 +00:00
|
|
|
|
2013-09-21 20:26:36 +00:00
|
|
|
_menu->_vm->_avalot->_currentMouse = 177; // Force redraw of cursor.
|
2013-07-01 16:14:48 +00:00
|
|
|
}
|
|
|
|
|
2013-09-04 16:12:06 +00:00
|
|
|
bool HeadType::parseAltTrigger(char key) {
|
2013-09-07 07:00:34 +00:00
|
|
|
if (key != _altTrigger)
|
2013-07-01 16:14:48 +00:00
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-09-18 05:47:52 +00:00
|
|
|
void MenuItem::init(Menu *dr) {
|
2013-07-01 16:14:48 +00:00
|
|
|
_dr = dr;
|
2013-09-18 05:47:52 +00:00
|
|
|
|
2013-09-04 16:12:06 +00:00
|
|
|
_activeNow = false;
|
|
|
|
_activeNum = 1;
|
2013-09-18 05:47:52 +00:00
|
|
|
_dr->_menuActive = false;
|
2013-07-01 16:14:48 +00:00
|
|
|
}
|
|
|
|
|
2013-09-04 16:12:06 +00:00
|
|
|
void MenuItem::reset() {
|
|
|
|
_optionNum = 0;
|
|
|
|
_width = 0;
|
|
|
|
_firstlix = false;
|
|
|
|
_oldY = 0;
|
|
|
|
_highlightNum = 0;
|
2013-07-01 16:14:48 +00:00
|
|
|
}
|
|
|
|
|
2013-09-04 16:12:06 +00:00
|
|
|
void MenuItem::setupOption(Common::String title, char trigger, Common::String shortcut, bool valid) {
|
|
|
|
uint16 width = (title + shortcut).size() + 3;
|
|
|
|
if (_width < width)
|
|
|
|
_width = width;
|
2013-09-01 15:15:55 +00:00
|
|
|
|
2013-09-04 16:12:06 +00:00
|
|
|
_options[_optionNum]._title = title;
|
|
|
|
_options[_optionNum]._trigger = trigger;
|
|
|
|
_options[_optionNum]._shortcut = shortcut;
|
|
|
|
_options[_optionNum]._valid = valid;
|
|
|
|
_optionNum++;
|
2013-07-01 16:14:48 +00:00
|
|
|
}
|
|
|
|
|
2013-09-04 16:12:06 +00:00
|
|
|
void MenuItem::displayOption(byte y, bool highlit) {
|
2013-09-01 15:15:55 +00:00
|
|
|
byte backgroundColor;
|
|
|
|
if (highlit)
|
|
|
|
backgroundColor = 0;
|
|
|
|
else
|
|
|
|
backgroundColor = 7;
|
2013-09-04 16:12:06 +00:00
|
|
|
_dr->_vm->_graphics->_surface.fillRect(Common::Rect((_flx1 + 1) * 8, 3 + (y + 1) * 10, (_flx2 + 1) * 8, 13 + (y + 1) * 10), backgroundColor);
|
2013-09-07 07:00:34 +00:00
|
|
|
|
2013-09-04 18:57:25 +00:00
|
|
|
Common::String text = _options[y]._title;
|
|
|
|
while (text.size() + _options[y]._shortcut.size() < _width)
|
|
|
|
text += ' '; // Pad _options[y] with spaces.
|
|
|
|
text += _options[y]._shortcut;
|
2013-09-01 15:15:55 +00:00
|
|
|
|
2013-09-04 18:57:25 +00:00
|
|
|
_dr->drawMenuText(_left, 4 + (y + 1) * 10, _options[y]._trigger, text, _options[y]._valid, highlit);
|
2013-07-01 16:14:48 +00:00
|
|
|
}
|
|
|
|
|
2013-09-04 16:12:06 +00:00
|
|
|
void MenuItem::display() {
|
2013-09-01 15:15:55 +00:00
|
|
|
CursorMan.showMouse(false);
|
2013-09-21 11:33:43 +00:00
|
|
|
|
2013-09-04 16:12:06 +00:00
|
|
|
_firstlix = true;
|
|
|
|
_flx1 = _left - 2;
|
|
|
|
_flx2 = _left + _width;
|
2013-09-17 22:05:14 +00:00
|
|
|
_fly = 15 + _optionNum * 10;
|
2013-09-04 16:12:06 +00:00
|
|
|
_activeNow = true;
|
2013-09-18 05:47:52 +00:00
|
|
|
_dr->_menuActive = true;
|
2013-09-01 15:15:55 +00:00
|
|
|
|
2013-09-17 22:05:14 +00:00
|
|
|
_dr->_vm->_graphics->_surface.fillRect(Common::Rect((_flx1 + 1) * 8, 12, (_flx2 + 1) * 8, _fly), _dr->kMenuBackgroundColor);
|
|
|
|
_dr->_vm->_graphics->_surface.frameRect(Common::Rect((_flx1 + 1) * 8 - 1, 11, (_flx2 + 1) * 8 + 1, _fly + 1), _dr->kMenuBorderColor);
|
2013-09-01 15:15:55 +00:00
|
|
|
|
2013-09-04 16:12:06 +00:00
|
|
|
displayOption(0, true);
|
2013-09-16 20:57:38 +00:00
|
|
|
for (int y = 1; y < _optionNum; y++)
|
2013-09-04 16:12:06 +00:00
|
|
|
displayOption(y, false);
|
2013-09-07 07:00:34 +00:00
|
|
|
|
2013-09-21 20:26:36 +00:00
|
|
|
_dr->_vm->_avalot->_defaultLed = 1;
|
|
|
|
_dr->_vm->_avalot->_currentMouse = 177;
|
2013-09-20 21:09:43 +00:00
|
|
|
|
2013-09-01 15:15:55 +00:00
|
|
|
CursorMan.showMouse(true); // 4 = fletch
|
2013-07-01 16:14:48 +00:00
|
|
|
}
|
|
|
|
|
2013-09-04 16:12:06 +00:00
|
|
|
void MenuItem::wipe() {
|
2013-09-07 07:00:34 +00:00
|
|
|
CursorMan.showMouse(false);
|
|
|
|
|
2013-09-04 18:57:25 +00:00
|
|
|
_dr->drawMenuText(_dr->_menuBar._menuItems[_dr->_activeMenuItem._activeNum]._xpos, 1, _dr->_menuBar._menuItems[_dr->_activeMenuItem._activeNum]._trigger, _dr->_menuBar._menuItems[_dr->_activeMenuItem._activeNum]._title, true, false);
|
2013-09-01 15:15:55 +00:00
|
|
|
|
2013-09-04 16:12:06 +00:00
|
|
|
_activeNow = false;
|
2013-09-18 05:47:52 +00:00
|
|
|
_dr->_menuActive = false;
|
2013-09-04 16:12:06 +00:00
|
|
|
_firstlix = false;
|
2013-09-21 20:26:36 +00:00
|
|
|
_dr->_vm->_avalot->_defaultLed = 2;
|
2013-09-01 15:15:55 +00:00
|
|
|
|
2013-09-07 07:00:34 +00:00
|
|
|
CursorMan.showMouse(true);
|
2013-07-01 16:14:48 +00:00
|
|
|
}
|
|
|
|
|
2013-09-04 16:12:06 +00:00
|
|
|
void MenuItem::moveHighlight(int8 inc) {
|
|
|
|
if (inc != 0) {
|
2013-09-08 08:29:38 +00:00
|
|
|
int8 highlightNum = _highlightNum + inc;
|
2013-09-04 16:12:06 +00:00
|
|
|
if ((highlightNum < 0) || (highlightNum >= _optionNum))
|
2013-09-01 15:15:55 +00:00
|
|
|
return;
|
2013-09-04 16:12:06 +00:00
|
|
|
_highlightNum = highlightNum;
|
2013-09-01 15:15:55 +00:00
|
|
|
}
|
2013-09-07 07:00:34 +00:00
|
|
|
CursorMan.showMouse(false);
|
2013-09-04 16:12:06 +00:00
|
|
|
displayOption(_oldY, false);
|
|
|
|
displayOption(_highlightNum, true);
|
|
|
|
_oldY = _highlightNum;
|
2013-09-07 07:00:34 +00:00
|
|
|
CursorMan.showMouse(true);
|
2013-07-01 16:14:48 +00:00
|
|
|
}
|
|
|
|
|
2013-09-07 07:00:34 +00:00
|
|
|
void MenuItem::lightUp(Common::Point cursorPos) {
|
2013-09-17 22:05:14 +00:00
|
|
|
if ((cursorPos.x < _flx1 * 8) || (cursorPos.x > _flx2 * 8) || (cursorPos.y <= 25) || (cursorPos.y > ((_fly - 3) * 2 + 1)))
|
2013-09-01 15:15:55 +00:00
|
|
|
return;
|
2013-09-04 16:12:06 +00:00
|
|
|
_highlightNum = (cursorPos.y - 26) / 20;
|
|
|
|
if (_highlightNum == _oldY)
|
2013-09-01 15:15:55 +00:00
|
|
|
return;
|
2013-09-04 16:12:06 +00:00
|
|
|
moveHighlight(0);
|
2013-07-01 16:14:48 +00:00
|
|
|
}
|
|
|
|
|
2013-09-07 07:00:34 +00:00
|
|
|
void MenuItem::select(byte which) {
|
2013-09-04 16:12:06 +00:00
|
|
|
if (!_options[which]._valid)
|
2013-09-01 15:15:55 +00:00
|
|
|
return;
|
|
|
|
|
2013-09-04 16:12:06 +00:00
|
|
|
_choiceNum = which;
|
2013-07-01 16:14:48 +00:00
|
|
|
wipe();
|
|
|
|
|
2013-09-04 16:12:06 +00:00
|
|
|
if (_choiceNum == _optionNum)
|
2013-09-05 00:29:09 +00:00
|
|
|
_choiceNum--; // Off the bottom.
|
2013-09-04 16:12:06 +00:00
|
|
|
if (_choiceNum > _optionNum)
|
2013-09-05 00:29:09 +00:00
|
|
|
_choiceNum = 0; // Off the top, I suppose.
|
2013-07-01 16:14:48 +00:00
|
|
|
|
2013-09-04 16:12:06 +00:00
|
|
|
(_dr->*_dr->_menuBar._menuItems[_activeNum]._chooseFunc)();
|
2013-07-01 16:14:48 +00:00
|
|
|
}
|
|
|
|
|
2013-09-04 16:12:06 +00:00
|
|
|
void MenuItem::parseKey(char c) {
|
2013-07-01 16:14:48 +00:00
|
|
|
c = toupper(c);
|
2013-09-04 16:12:06 +00:00
|
|
|
bool found = false;
|
2013-09-16 20:57:38 +00:00
|
|
|
for (int i = 0; i < _optionNum; i++) {
|
2013-09-04 16:12:06 +00:00
|
|
|
if ((toupper(_options[i]._trigger) == c) && _options[i]._valid) {
|
|
|
|
select(i);
|
2013-07-01 16:14:48 +00:00
|
|
|
found = true;
|
|
|
|
}
|
|
|
|
}
|
2013-09-01 15:15:55 +00:00
|
|
|
if (!found)
|
2013-09-18 21:59:26 +00:00
|
|
|
_dr->_vm->_sound->blip();
|
2013-07-01 16:14:48 +00:00
|
|
|
}
|
|
|
|
|
2013-09-18 05:47:52 +00:00
|
|
|
void MenuBar::init(Menu *dr) {
|
2013-07-01 16:14:48 +00:00
|
|
|
_dr = dr;
|
2013-09-04 16:12:06 +00:00
|
|
|
_menuNum = 0;
|
2013-07-01 16:14:48 +00:00
|
|
|
}
|
|
|
|
|
2013-09-18 05:47:52 +00:00
|
|
|
void MenuBar::createMenuItem(char trig, Common::String title, char altTrig, MenuFunc setupFunc, MenuFunc chooseFunc) {
|
2013-09-04 16:12:06 +00:00
|
|
|
_menuItems[_menuNum].init(trig, altTrig, title, _menuNum, setupFunc, chooseFunc, _dr);
|
|
|
|
_menuNum++;
|
2013-07-01 16:14:48 +00:00
|
|
|
}
|
|
|
|
|
2013-09-04 16:12:06 +00:00
|
|
|
void MenuBar::draw() {
|
2013-09-05 11:20:03 +00:00
|
|
|
_dr->_vm->_graphics->_surface.fillRect(Common::Rect(0, 0, 640, 10), _dr->kMenuBackgroundColor);
|
2013-07-23 10:34:58 +00:00
|
|
|
|
2013-09-21 20:26:36 +00:00
|
|
|
byte savecp = _dr->_vm->_avalot->_cp;
|
|
|
|
_dr->_vm->_avalot->_cp = 3;
|
2013-07-23 10:34:58 +00:00
|
|
|
|
2013-09-16 20:57:38 +00:00
|
|
|
for (int i = 0; i < _menuNum; i++)
|
2013-09-04 16:12:06 +00:00
|
|
|
_menuItems[i].draw();
|
2013-07-23 10:34:58 +00:00
|
|
|
|
2013-09-21 20:26:36 +00:00
|
|
|
_dr->_vm->_avalot->_cp = savecp;
|
2013-07-01 16:14:48 +00:00
|
|
|
}
|
|
|
|
|
2013-09-04 16:12:06 +00:00
|
|
|
void MenuBar::parseAltTrigger(char c) {
|
|
|
|
byte i = 0;
|
|
|
|
while ((i < _menuNum) && (_menuItems[i].parseAltTrigger(c)))
|
|
|
|
i++;
|
|
|
|
if (i == _menuNum)
|
2013-09-01 15:15:55 +00:00
|
|
|
return;
|
2013-09-04 16:12:06 +00:00
|
|
|
setupMenuItem(i);
|
2013-07-01 16:14:48 +00:00
|
|
|
}
|
|
|
|
|
2013-09-04 16:12:06 +00:00
|
|
|
void MenuBar::setupMenuItem(byte which) {
|
|
|
|
if (_dr->_activeMenuItem._activeNow) {
|
|
|
|
_dr->_activeMenuItem.wipe(); // Get rid of menu.
|
|
|
|
if (_dr->_activeMenuItem._activeNum == _menuItems[which]._position)
|
2013-09-01 15:15:55 +00:00
|
|
|
return; // Clicked on own highlight.
|
2013-07-01 16:14:48 +00:00
|
|
|
}
|
2013-09-04 16:12:06 +00:00
|
|
|
_menuItems[which].highlight();
|
|
|
|
(_dr->*_menuItems[which]._setupFunc)();
|
2013-07-01 16:14:48 +00:00
|
|
|
}
|
|
|
|
|
2013-09-04 16:12:06 +00:00
|
|
|
void MenuBar::chooseMenuItem(int16 x) {
|
2013-09-17 22:05:14 +00:00
|
|
|
for (int i = 0; i < _menuNum; i++) {
|
2013-09-04 16:12:06 +00:00
|
|
|
if ((x > _menuItems[i]._xpos * 8) && (x < _menuItems[i]._xright * 8)) {
|
|
|
|
setupMenuItem(i);
|
2013-09-17 22:05:14 +00:00
|
|
|
break;
|
2013-07-01 16:14:48 +00:00
|
|
|
}
|
2013-09-17 22:05:14 +00:00
|
|
|
}
|
2013-07-01 16:14:48 +00:00
|
|
|
}
|
|
|
|
|
2013-09-18 05:47:52 +00:00
|
|
|
Menu::Menu(AvalancheEngine *vm) {
|
2013-07-01 16:14:48 +00:00
|
|
|
_vm = vm;
|
2013-09-04 16:12:06 +00:00
|
|
|
_activeMenuItem.init(this);
|
|
|
|
_menuBar.init(this);
|
2013-07-01 16:14:48 +00:00
|
|
|
}
|
|
|
|
|
2013-09-18 05:47:52 +00:00
|
|
|
void Menu::findWhatYouCanDoWithIt() {
|
2013-09-21 20:26:36 +00:00
|
|
|
switch (_vm->_avalot->_thinks) {
|
2013-09-24 05:31:43 +00:00
|
|
|
case kObjectWine:
|
|
|
|
case kObjectPotion:
|
|
|
|
case kObjectInk:
|
2013-09-21 20:26:36 +00:00
|
|
|
_vm->_avalot->_verbStr = Common::String(Parser::kVerbCodeExam) + Parser::kVerbCodeDrink;
|
2013-07-01 16:14:48 +00:00
|
|
|
break;
|
2013-09-24 05:31:43 +00:00
|
|
|
case kObjectBell:
|
2013-09-21 20:26:36 +00:00
|
|
|
_vm->_avalot->_verbStr = Common::String(Parser::kVerbCodeExam) + Parser::kVerbCodeRing;
|
2013-07-01 16:14:48 +00:00
|
|
|
break;
|
2013-09-24 05:31:43 +00:00
|
|
|
case kObjectChastity:
|
2013-09-21 20:26:36 +00:00
|
|
|
_vm->_avalot->_verbStr = Common::String(Parser::kVerbCodeExam) + Parser::kVerbCodeWear;
|
2013-07-01 16:14:48 +00:00
|
|
|
break;
|
2013-09-24 05:31:43 +00:00
|
|
|
case kObjectLute:
|
2013-09-21 20:26:36 +00:00
|
|
|
_vm->_avalot->_verbStr = Common::String(Parser::kVerbCodeExam) + Parser::kVerbCodePlay;
|
2013-07-01 16:14:48 +00:00
|
|
|
break;
|
2013-09-24 05:31:43 +00:00
|
|
|
case kObjectMushroom:
|
|
|
|
case kObjectOnion:
|
2013-09-21 20:26:36 +00:00
|
|
|
_vm->_avalot->_verbStr = Common::String(Parser::kVerbCodeExam) + Parser::kVerbCodeEat;
|
2013-07-01 16:14:48 +00:00
|
|
|
break;
|
2013-09-24 05:31:43 +00:00
|
|
|
case kObjectClothes:
|
2013-09-21 20:26:36 +00:00
|
|
|
_vm->_avalot->_verbStr = Common::String(Parser::kVerbCodeExam) + Parser::kVerbCodeWear;
|
2013-07-01 16:14:48 +00:00
|
|
|
break;
|
|
|
|
default:
|
2013-09-21 20:26:36 +00:00
|
|
|
_vm->_avalot->_verbStr = Parser::kVerbCodeExam; // Anything else.
|
2013-07-01 16:14:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-18 05:47:52 +00:00
|
|
|
void Menu::drawMenuText(int16 x, int16 y, char trigger, Common::String text, bool valid, bool highlighted) {
|
2013-09-04 18:57:25 +00:00
|
|
|
byte fontColor;
|
|
|
|
byte backgroundColor;
|
|
|
|
if (highlighted) {
|
2013-09-05 21:07:08 +00:00
|
|
|
fontColor = kColorWhite;
|
|
|
|
backgroundColor = kColorBlack;
|
2013-09-04 18:57:25 +00:00
|
|
|
} else {
|
2013-09-05 21:07:08 +00:00
|
|
|
fontColor = kColorBlack;
|
|
|
|
backgroundColor = kColorLightgray;
|
2013-09-04 18:57:25 +00:00
|
|
|
}
|
|
|
|
|
2013-07-01 16:14:48 +00:00
|
|
|
byte ander;
|
2013-07-23 15:21:53 +00:00
|
|
|
if (valid)
|
|
|
|
ander = 255;
|
|
|
|
else
|
|
|
|
ander = 170;
|
|
|
|
|
2013-09-05 11:20:03 +00:00
|
|
|
FontType font;
|
2013-09-16 20:57:38 +00:00
|
|
|
for (uint i = 0; i < text.size(); i++) {
|
|
|
|
for (int j = 0; j < 8; j++) {
|
2013-09-05 06:11:27 +00:00
|
|
|
byte idx = text[i];
|
2013-09-21 20:26:36 +00:00
|
|
|
font[idx][j] = _vm->_avalot->_font[idx][j] & ander; // Set the font.
|
2013-09-04 18:57:25 +00:00
|
|
|
// And set the background of the text to the desired color.
|
2013-09-16 20:57:38 +00:00
|
|
|
for (int k = 0; k < 8; k++)
|
2013-09-04 18:57:25 +00:00
|
|
|
*(byte *)_vm->_graphics->_surface.getBasePtr(x * 8 + i * 8 + k, y + j) = backgroundColor;
|
2013-09-01 23:11:16 +00:00
|
|
|
}
|
2013-09-05 06:11:27 +00:00
|
|
|
}
|
2013-07-23 15:21:53 +00:00
|
|
|
|
2013-09-04 18:57:25 +00:00
|
|
|
_vm->_graphics->drawText(_vm->_graphics->_surface, text, font, 8, x * 8, y, fontColor);
|
2013-09-07 07:00:34 +00:00
|
|
|
|
2013-08-11 12:06:15 +00:00
|
|
|
// Underline the selected character.
|
2013-09-15 16:37:14 +00:00
|
|
|
if ((trigger == 0) || !text.contains(trigger) )
|
2013-07-23 15:21:53 +00:00
|
|
|
return;
|
|
|
|
else {
|
2013-09-04 18:57:25 +00:00
|
|
|
byte i;
|
2013-09-06 21:51:04 +00:00
|
|
|
for (i = 0; text[i] != trigger; i++)
|
|
|
|
; // Search for the character in the string.
|
2013-09-07 07:00:34 +00:00
|
|
|
|
2013-08-11 12:06:15 +00:00
|
|
|
byte pixel = ander;
|
2013-09-16 20:57:38 +00:00
|
|
|
for (int bit = 0; bit < 8; bit++) {
|
2013-07-23 15:21:53 +00:00
|
|
|
byte pixelBit = (pixel >> bit) & 1;
|
2013-08-11 12:06:15 +00:00
|
|
|
if (pixelBit)
|
2013-09-05 11:20:03 +00:00
|
|
|
*(byte *)_vm->_graphics->_surface.getBasePtr(x * 8 + i * 8 + 7 - bit, y + 8) = fontColor;
|
2013-09-01 15:15:55 +00:00
|
|
|
}
|
|
|
|
}
|
2013-07-01 16:14:48 +00:00
|
|
|
|
2013-09-01 15:15:55 +00:00
|
|
|
_vm->_graphics->refreshScreen();
|
2013-07-01 16:14:48 +00:00
|
|
|
}
|
|
|
|
|
2013-09-18 05:47:52 +00:00
|
|
|
void Menu::bleep() {
|
2013-07-01 16:14:48 +00:00
|
|
|
warning("STUB: Dropdown::bleep()");
|
|
|
|
}
|
|
|
|
|
2013-09-18 05:47:52 +00:00
|
|
|
void Menu::parseKey(char r, char re) {
|
|
|
|
#if 0
|
|
|
|
switch (r) {
|
|
|
|
case 0:
|
|
|
|
case 224: {
|
|
|
|
switch (re) {
|
|
|
|
case 'K':
|
|
|
|
if (_activeMenuItem._activeNum > 1) {
|
|
|
|
_activeMenuItem.wipe();
|
|
|
|
_menuBar.setupMenuItem(_activeMenuItem._activeNum - 1);
|
|
|
|
} else {
|
|
|
|
// Get menu on the left-hand side.
|
|
|
|
_activeMenuItem.wipe();
|
|
|
|
_menuBar.chooseMenuItem((_menuBar._menuNum - 1) * kSpacing + kIndent);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'M':
|
|
|
|
if (_activeMenuItem._activeNum < _menuBar._menuNum) {
|
|
|
|
_activeMenuItem.wipe();
|
|
|
|
_menuBar.setupMenuItem(_activeMenuItem._activeNum + 1);
|
|
|
|
} else {
|
|
|
|
// Get menu on the far right-hand side.
|
|
|
|
_activeMenuItem.wipe();
|
|
|
|
_menuBar.chooseMenuItem(kIndent);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'H':
|
|
|
|
_activeMenuItem.moveHighlight(-1);
|
|
|
|
break;
|
|
|
|
case 'P':
|
|
|
|
_activeMenuItem.moveHighlight(1);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
_menuBar.parseAltTrigger(re);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 13:
|
|
|
|
_activeMenuItem.select(_activeMenuItem._highlightNum);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
if (_activeMenuItem._activeNow)
|
|
|
|
_activeMenuItem.parseKey(r);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-09-04 18:57:25 +00:00
|
|
|
warning("STUB: Dropdown::parseKey()"); // To be implemented properly later! Don't remove the comment above!
|
2013-09-04 16:12:06 +00:00
|
|
|
}
|
|
|
|
|
2013-09-18 05:47:52 +00:00
|
|
|
Common::String Menu::selectGender(byte x) {
|
2013-09-04 16:12:06 +00:00
|
|
|
if (x < 175)
|
|
|
|
return "im";
|
|
|
|
else
|
|
|
|
return "er";
|
2013-07-01 16:14:48 +00:00
|
|
|
}
|
|
|
|
|
2013-09-18 05:47:52 +00:00
|
|
|
void Menu::setupMenuGame() {
|
2013-09-04 16:12:06 +00:00
|
|
|
_activeMenuItem.reset();
|
|
|
|
_activeMenuItem.setupOption("Help...", 'H', "f1", true);
|
|
|
|
_activeMenuItem.setupOption("Boss Key", 'B', "alt-B", true);
|
|
|
|
_activeMenuItem.setupOption("Untrash screen", 'U', "ctrl-f7", true);
|
|
|
|
_activeMenuItem.setupOption("Score and rank", 'S', "f9", true);
|
|
|
|
_activeMenuItem.setupOption("About Avvy...", 'A', "shift-f10", true);
|
|
|
|
_activeMenuItem.display();
|
2013-07-01 16:14:48 +00:00
|
|
|
}
|
|
|
|
|
2013-09-18 05:47:52 +00:00
|
|
|
void Menu::setupMenuFile() {
|
2013-09-04 16:12:06 +00:00
|
|
|
_activeMenuItem.reset();
|
|
|
|
_activeMenuItem.setupOption("New game", 'N', "f4", true);
|
|
|
|
_activeMenuItem.setupOption("Load...", 'L', "^f3", true);
|
2013-09-21 20:26:36 +00:00
|
|
|
_activeMenuItem.setupOption("Save", 'S', "^f2", _vm->_avalot->_alive);
|
|
|
|
_activeMenuItem.setupOption("Save As...", 'v', "", _vm->_avalot->_alive);
|
|
|
|
_activeMenuItem.setupOption("DOS Shell", 'D', _vm->_avalot->_atKey + '1', true);
|
2013-09-04 16:12:06 +00:00
|
|
|
_activeMenuItem.setupOption("Quit", 'Q', "alt-X", true);
|
|
|
|
_activeMenuItem.display();
|
2013-07-01 16:14:48 +00:00
|
|
|
}
|
|
|
|
|
2013-09-18 05:47:52 +00:00
|
|
|
void Menu::setupMenuAction() {
|
2013-09-04 16:12:06 +00:00
|
|
|
_activeMenuItem.reset();
|
2013-07-01 16:14:48 +00:00
|
|
|
|
2013-09-21 20:26:36 +00:00
|
|
|
Common::String f5Does = _vm->_avalot->f5Does();
|
2013-09-16 20:57:38 +00:00
|
|
|
for (int i = 0; i < 2; i++)
|
2013-09-04 16:12:06 +00:00
|
|
|
if (!f5Does.empty())
|
|
|
|
f5Does.deleteChar(0);
|
|
|
|
if (f5Does.empty())
|
|
|
|
_activeMenuItem.setupOption("Do something", 'D', "f5", false);
|
2013-09-01 15:15:55 +00:00
|
|
|
else
|
2013-09-04 16:12:06 +00:00
|
|
|
_activeMenuItem.setupOption(f5Does, f5Does[0], "f5", true);
|
|
|
|
_activeMenuItem.setupOption("Pause game", 'P', "f6", true);
|
2013-09-21 20:26:36 +00:00
|
|
|
if (_vm->_avalot->_room == kRoomMap)
|
2013-09-08 10:06:08 +00:00
|
|
|
_activeMenuItem.setupOption("Journey thither", 'J', "f7", _vm->_animation->nearDoor());
|
2013-09-01 15:15:55 +00:00
|
|
|
else
|
2013-09-08 10:06:08 +00:00
|
|
|
_activeMenuItem.setupOption("Open the door", 'O', "f7", _vm->_animation->nearDoor());
|
2013-09-04 16:12:06 +00:00
|
|
|
_activeMenuItem.setupOption("Look around", 'L', "f8", true);
|
|
|
|
_activeMenuItem.setupOption("Inventory", 'I', "Tab", true);
|
2013-09-21 20:26:36 +00:00
|
|
|
if (_vm->_animation->_sprites[0]._speedX == _vm->_avalot->kWalk)
|
2013-09-04 16:12:06 +00:00
|
|
|
_activeMenuItem.setupOption("Run fast", 'R', "^R", true);
|
2013-09-01 15:15:55 +00:00
|
|
|
else
|
2013-09-04 16:12:06 +00:00
|
|
|
_activeMenuItem.setupOption("Walk slowly", 'W', "^W", true);
|
2013-09-01 15:15:55 +00:00
|
|
|
|
2013-09-04 16:12:06 +00:00
|
|
|
_activeMenuItem.display();
|
2013-07-01 16:14:48 +00:00
|
|
|
}
|
|
|
|
|
2013-09-18 05:47:52 +00:00
|
|
|
void Menu::setupMenuPeople() {
|
2013-09-01 15:15:55 +00:00
|
|
|
if (!people.empty())
|
|
|
|
people.clear();
|
|
|
|
|
2013-09-04 16:12:06 +00:00
|
|
|
_activeMenuItem.reset();
|
2013-09-01 15:15:55 +00:00
|
|
|
|
2013-09-16 20:57:38 +00:00
|
|
|
for (int i = 150; i <= 178; i++) {
|
2013-09-24 06:15:28 +00:00
|
|
|
if (_vm->_avalot->getRoom(i) == _vm->_avalot->_room) {
|
2013-09-21 20:26:36 +00:00
|
|
|
_activeMenuItem.setupOption(_vm->_avalot->getName(i), _vm->_avalot->getNameChar(i), "", true);
|
2013-09-15 16:16:46 +00:00
|
|
|
people += i;
|
2013-09-01 15:15:55 +00:00
|
|
|
}
|
2013-09-15 23:15:47 +00:00
|
|
|
}
|
2013-09-01 15:15:55 +00:00
|
|
|
|
2013-09-04 16:12:06 +00:00
|
|
|
_activeMenuItem.display();
|
2013-07-01 16:14:48 +00:00
|
|
|
}
|
|
|
|
|
2013-09-18 05:47:52 +00:00
|
|
|
void Menu::setupMenuObjects() {
|
2013-09-04 16:12:06 +00:00
|
|
|
_activeMenuItem.reset();
|
2013-09-16 20:57:38 +00:00
|
|
|
for (int i = 0; i < kObjectNum; i++) {
|
2013-09-21 20:26:36 +00:00
|
|
|
if (_vm->_avalot->_objects[i])
|
|
|
|
_activeMenuItem.setupOption(_vm->_avalot->getThing(i + 1), _vm->_avalot->getThingChar(i + 1), "", true);
|
2013-09-02 18:09:44 +00:00
|
|
|
}
|
2013-09-04 16:12:06 +00:00
|
|
|
_activeMenuItem.display();
|
2013-07-01 16:14:48 +00:00
|
|
|
}
|
|
|
|
|
2013-09-18 05:47:52 +00:00
|
|
|
void Menu::setupMenuWith() {
|
2013-09-04 16:12:06 +00:00
|
|
|
_activeMenuItem.reset();
|
2013-09-01 15:15:55 +00:00
|
|
|
|
2013-09-21 20:26:36 +00:00
|
|
|
if (_vm->_avalot->_thinkThing) {
|
2013-09-04 16:12:06 +00:00
|
|
|
findWhatYouCanDoWithIt();
|
2013-09-01 15:15:55 +00:00
|
|
|
|
2013-09-21 20:26:36 +00:00
|
|
|
for (uint i = 0; i < _vm->_avalot->_verbStr.size(); i++) {
|
2013-09-04 23:55:08 +00:00
|
|
|
char vbchar;
|
|
|
|
Common::String verb;
|
|
|
|
|
2013-09-21 20:26:36 +00:00
|
|
|
_vm->_parser->verbOpt(_vm->_avalot->_verbStr[i], verb, vbchar);
|
2013-09-04 16:12:06 +00:00
|
|
|
_activeMenuItem.setupOption(verb, vbchar, "", true);
|
2013-09-01 15:15:55 +00:00
|
|
|
}
|
|
|
|
|
2013-09-04 16:12:06 +00:00
|
|
|
// We disable the "give" option if: (a), you haven't selected anybody, (b), the _person you've selected isn't in the room,
|
|
|
|
// or (c), the _person you've selected is YOU!
|
2013-09-07 07:00:34 +00:00
|
|
|
|
2013-09-24 05:31:43 +00:00
|
|
|
if ((_vm->_avalot->_lastPerson == kPeopleAvalot) || (_vm->_avalot->_lastPerson == _vm->_parser->kNothing)
|
2013-09-24 06:15:28 +00:00
|
|
|
|| (_vm->_avalot->getRoom(_vm->_avalot->_lastPerson) != _vm->_avalot->_room))
|
2013-09-05 00:29:09 +00:00
|
|
|
_activeMenuItem.setupOption("Give to...", 'G', "", false); // Not here.
|
2013-09-01 15:15:55 +00:00
|
|
|
else {
|
2013-09-21 20:26:36 +00:00
|
|
|
_activeMenuItem.setupOption(Common::String("Give to ") + _vm->_avalot->getName(_vm->_avalot->_lastPerson), 'G', "", true);
|
|
|
|
_vm->_avalot->_verbStr = _vm->_avalot->_verbStr + Parser::kVerbCodeGive;
|
2013-09-01 15:15:55 +00:00
|
|
|
}
|
|
|
|
} else {
|
2013-09-04 16:12:06 +00:00
|
|
|
_activeMenuItem.setupOption("Examine", 'x', "", true);
|
2013-09-21 20:26:36 +00:00
|
|
|
_activeMenuItem.setupOption(Common::String("Talk to h") + selectGender(_vm->_avalot->_thinks), 'T', "", true);
|
|
|
|
_vm->_avalot->_verbStr = Common::String(Parser::kVerbCodeExam) + Parser::kVerbCodeTalk;
|
|
|
|
switch (_vm->_avalot->_thinks) {
|
2013-09-24 05:31:43 +00:00
|
|
|
case kPeopleGeida:
|
|
|
|
case kPeopleArkata:
|
2013-09-04 16:12:06 +00:00
|
|
|
_activeMenuItem.setupOption("Kiss her", 'K', "", true);
|
2013-09-21 20:26:36 +00:00
|
|
|
_vm->_avalot->_verbStr = _vm->_avalot->_verbStr + Parser::kVerbCodeKiss;
|
2013-09-15 23:15:47 +00:00
|
|
|
break;
|
2013-09-24 05:31:43 +00:00
|
|
|
case kPeopleDogfood:
|
2013-09-21 20:26:36 +00:00
|
|
|
_activeMenuItem.setupOption("Play his game", 'P', "", !_vm->_avalot->_wonNim); // True if you HAVEN'T won.
|
|
|
|
_vm->_avalot->_verbStr = _vm->_avalot->_verbStr + Parser::kVerbCodePlay;
|
2013-09-15 23:15:47 +00:00
|
|
|
break;
|
2013-09-24 05:31:43 +00:00
|
|
|
case kPeopleMalagauche: {
|
2013-09-21 20:26:36 +00:00
|
|
|
bool isSober = !_vm->_avalot->_teetotal;
|
2013-09-24 05:31:43 +00:00
|
|
|
_activeMenuItem.setupOption("Buy some wine", 'w', "", !_vm->_avalot->_objects[kObjectWine - 1]);
|
2013-09-04 16:12:06 +00:00
|
|
|
_activeMenuItem.setupOption("Buy some beer", 'b', "", isSober);
|
|
|
|
_activeMenuItem.setupOption("Buy some whisky", 'h', "", isSober);
|
|
|
|
_activeMenuItem.setupOption("Buy some cider", 'c', "", isSober);
|
|
|
|
_activeMenuItem.setupOption("Buy some mead", 'm', "", isSober);
|
2013-09-21 20:26:36 +00:00
|
|
|
_vm->_avalot->_verbStr = _vm->_avalot->_verbStr + 101 + 100 + 102 + 103 + 104;
|
2013-09-15 23:15:47 +00:00
|
|
|
}
|
|
|
|
break;
|
2013-09-24 05:31:43 +00:00
|
|
|
case kPeopleTrader:
|
|
|
|
_activeMenuItem.setupOption("Buy an onion", 'o', "", !_vm->_avalot->_objects[kObjectOnion - 1]);
|
2013-09-21 20:26:36 +00:00
|
|
|
_vm->_avalot->_verbStr = _vm->_avalot->_verbStr + 105;
|
2013-09-15 23:15:47 +00:00
|
|
|
break;
|
2013-09-01 15:15:55 +00:00
|
|
|
}
|
|
|
|
}
|
2013-09-04 16:12:06 +00:00
|
|
|
_activeMenuItem.display();
|
|
|
|
}
|
|
|
|
|
2013-09-18 05:47:52 +00:00
|
|
|
void Menu::runMenuGame() {
|
2013-09-04 16:12:06 +00:00
|
|
|
// Help, boss, untrash screen.
|
|
|
|
switch (_activeMenuItem._choiceNum) {
|
2013-07-01 16:14:48 +00:00
|
|
|
case 0:
|
2013-09-21 20:26:36 +00:00
|
|
|
_vm->_avalot->callVerb(Parser::kVerbCodeHelp);
|
2013-07-01 16:14:48 +00:00
|
|
|
break;
|
|
|
|
case 1:
|
2013-09-21 20:26:36 +00:00
|
|
|
_vm->_avalot->callVerb(Parser::kVerbCodeBoss);
|
2013-07-01 16:14:48 +00:00
|
|
|
break;
|
|
|
|
case 2:
|
2013-09-21 20:26:36 +00:00
|
|
|
_vm->_avalot->majorRedraw();
|
2013-07-01 16:14:48 +00:00
|
|
|
break;
|
|
|
|
case 3:
|
2013-09-21 20:26:36 +00:00
|
|
|
_vm->_avalot->callVerb(Parser::kVerbCodeScore);
|
2013-07-01 16:14:48 +00:00
|
|
|
break;
|
|
|
|
case 4:
|
2013-09-21 20:26:36 +00:00
|
|
|
_vm->_avalot->callVerb(Parser::kVerbCodeInfo);
|
2013-07-01 16:14:48 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-18 05:47:52 +00:00
|
|
|
void Menu::runMenuFile() {
|
2013-09-04 16:12:06 +00:00
|
|
|
// New game, load, save, save as, DOS shell, about, quit.
|
|
|
|
switch (_activeMenuItem._choiceNum) {
|
2013-07-01 16:14:48 +00:00
|
|
|
case 0:
|
2013-09-21 20:26:36 +00:00
|
|
|
_vm->_avalot->callVerb(Parser::kVerbCodeRestart);
|
2013-07-01 16:14:48 +00:00
|
|
|
break;
|
2013-09-15 23:15:47 +00:00
|
|
|
case 1:
|
2013-09-21 16:37:52 +00:00
|
|
|
if (!_vm->_parser->_realWords[1].empty())
|
|
|
|
_vm->_parser->_realWords[1].clear();
|
2013-09-21 20:26:36 +00:00
|
|
|
_vm->_avalot->callVerb(Parser::kVerbCodeLoad);
|
2013-09-15 23:15:47 +00:00
|
|
|
break;
|
|
|
|
case 2:
|
2013-09-21 16:37:52 +00:00
|
|
|
if (!_vm->_parser->_realWords[1].empty())
|
|
|
|
_vm->_parser->_realWords[1].clear();
|
2013-09-21 20:26:36 +00:00
|
|
|
_vm->_avalot->callVerb(Parser::kVerbCodeSave);
|
2013-09-15 23:15:47 +00:00
|
|
|
break;
|
2013-07-01 16:14:48 +00:00
|
|
|
case 3:
|
2013-09-03 15:51:30 +00:00
|
|
|
//_vm->_basher->filename_edit();
|
2013-09-04 16:12:06 +00:00
|
|
|
warning("STUB: Dropdown::runMenuFile()");
|
2013-07-01 16:14:48 +00:00
|
|
|
break;
|
|
|
|
case 4:
|
2013-09-15 11:21:03 +00:00
|
|
|
//_vm->_enid->backToBootstrap(2); TODO: Replace it with proper ScummVM-friendly function(s)! Do not remove until then!
|
2013-07-01 16:14:48 +00:00
|
|
|
break;
|
|
|
|
case 5:
|
2013-09-21 20:26:36 +00:00
|
|
|
_vm->_avalot->callVerb(Parser::kVerbCodeQuit);
|
2013-07-01 16:14:48 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-18 05:47:52 +00:00
|
|
|
void Menu::runMenuAction() {
|
2013-09-04 16:12:06 +00:00
|
|
|
Common::String f5Does;
|
|
|
|
// Get up, pause game, open door, look, inventory, walk/run.
|
|
|
|
switch (_activeMenuItem._choiceNum) {
|
2013-09-15 23:15:47 +00:00
|
|
|
case 0:
|
2013-09-21 16:37:52 +00:00
|
|
|
_vm->_parser->_person = _vm->_parser->kPardon;
|
|
|
|
_vm->_parser->_thing = _vm->_parser->kPardon;
|
2013-09-21 20:26:36 +00:00
|
|
|
f5Does = _vm->_avalot->f5Does();
|
|
|
|
_vm->_avalot->callVerb(f5Does[0]);
|
2013-09-15 23:15:47 +00:00
|
|
|
break;
|
2013-07-01 16:14:48 +00:00
|
|
|
case 1:
|
2013-09-21 16:37:52 +00:00
|
|
|
_vm->_parser->_thing = _vm->_parser->kPardon;
|
2013-09-21 20:26:36 +00:00
|
|
|
_vm->_avalot->callVerb(Parser::kVerbCodePause);
|
2013-07-01 16:14:48 +00:00
|
|
|
break;
|
|
|
|
case 2:
|
2013-09-21 20:26:36 +00:00
|
|
|
_vm->_avalot->callVerb(Parser::kVerbCodeOpen);
|
2013-07-01 16:14:48 +00:00
|
|
|
break;
|
|
|
|
case 3:
|
2013-09-21 16:37:52 +00:00
|
|
|
_vm->_parser->_thing = _vm->_parser->kPardon;
|
2013-09-21 20:26:36 +00:00
|
|
|
_vm->_avalot->callVerb(Parser::kVerbCodeLook);
|
2013-07-01 16:14:48 +00:00
|
|
|
break;
|
|
|
|
case 4:
|
2013-09-21 20:26:36 +00:00
|
|
|
_vm->_avalot->callVerb(Parser::kVerbCodeInv);
|
2013-07-01 16:14:48 +00:00
|
|
|
break;
|
|
|
|
case 5: {
|
2013-09-14 17:38:52 +00:00
|
|
|
AnimationType *avvy = &_vm->_animation->_sprites[0];
|
2013-09-21 20:26:36 +00:00
|
|
|
if (avvy->_speedX == _vm->_avalot->kWalk)
|
|
|
|
avvy->_speedX = _vm->_avalot->kRun;
|
2013-09-01 15:15:55 +00:00
|
|
|
else
|
2013-09-21 20:26:36 +00:00
|
|
|
avvy->_speedX = _vm->_avalot->kWalk;
|
2013-09-08 10:06:08 +00:00
|
|
|
_vm->_animation->updateSpeed();
|
2013-09-15 23:15:47 +00:00
|
|
|
}
|
|
|
|
break;
|
2013-07-01 16:14:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-18 05:47:52 +00:00
|
|
|
void Menu::runMenuObjects() {
|
2013-09-21 20:26:36 +00:00
|
|
|
_vm->_avalot->thinkAbout(_vm->_avalot->_objectList[_activeMenuItem._choiceNum], Avalot::kThing);
|
2013-07-01 16:14:48 +00:00
|
|
|
}
|
|
|
|
|
2013-09-18 05:47:52 +00:00
|
|
|
void Menu::runMenuPeople() {
|
2013-09-21 20:26:36 +00:00
|
|
|
_vm->_avalot->thinkAbout(people[_activeMenuItem._choiceNum], Avalot::kPerson);
|
|
|
|
_vm->_avalot->_lastPerson = people[_activeMenuItem._choiceNum];
|
2013-07-01 16:14:48 +00:00
|
|
|
}
|
|
|
|
|
2013-09-18 05:47:52 +00:00
|
|
|
void Menu::runMenuWith() {
|
2013-09-21 20:26:36 +00:00
|
|
|
_vm->_parser->_thing = _vm->_avalot->_thinks;
|
2013-07-01 16:14:48 +00:00
|
|
|
|
2013-09-21 20:26:36 +00:00
|
|
|
if (_vm->_avalot->_thinkThing) {
|
2013-09-21 16:37:52 +00:00
|
|
|
_vm->_parser->_thing += 49;
|
2013-07-01 16:14:48 +00:00
|
|
|
|
2013-09-21 20:26:36 +00:00
|
|
|
if (_vm->_avalot->_verbStr[_activeMenuItem._choiceNum] == Parser::kVerbCodeGive)
|
|
|
|
_vm->_parser->_person = _vm->_avalot->_lastPerson;
|
2013-07-01 16:14:48 +00:00
|
|
|
else
|
2013-09-21 16:37:52 +00:00
|
|
|
_vm->_parser->_person = Parser::kPardon;
|
2013-07-01 16:14:48 +00:00
|
|
|
} else {
|
2013-09-21 20:26:36 +00:00
|
|
|
switch (_vm->_avalot->_verbStr[_activeMenuItem._choiceNum]) {
|
2013-09-15 23:15:47 +00:00
|
|
|
case 100: // Beer
|
2013-09-21 16:37:52 +00:00
|
|
|
_vm->_parser->_thing = 100;
|
2013-09-21 20:26:36 +00:00
|
|
|
_vm->_avalot->callVerb(Parser::kVerbCodeBuy);
|
2013-07-01 16:14:48 +00:00
|
|
|
return;
|
2013-09-15 23:15:47 +00:00
|
|
|
case 101: // Wine
|
2013-09-21 16:37:52 +00:00
|
|
|
_vm->_parser->_thing = 50;
|
2013-09-21 20:26:36 +00:00
|
|
|
_vm->_avalot->callVerb(Parser::kVerbCodeBuy);
|
2013-07-01 16:14:48 +00:00
|
|
|
return;
|
2013-09-15 23:15:47 +00:00
|
|
|
case 102: // Whisky
|
2013-09-21 16:37:52 +00:00
|
|
|
_vm->_parser->_thing = 102;
|
2013-09-21 20:26:36 +00:00
|
|
|
_vm->_avalot->callVerb(Parser::kVerbCodeBuy);
|
2013-07-01 16:14:48 +00:00
|
|
|
return;
|
2013-09-15 23:15:47 +00:00
|
|
|
case 103: // Cider
|
2013-09-21 16:37:52 +00:00
|
|
|
_vm->_parser->_thing = 103;
|
2013-09-21 20:26:36 +00:00
|
|
|
_vm->_avalot->callVerb(Parser::kVerbCodeBuy);
|
2013-07-01 16:14:48 +00:00
|
|
|
return;
|
2013-09-15 23:15:47 +00:00
|
|
|
case 104: // Mead
|
2013-09-21 16:37:52 +00:00
|
|
|
_vm->_parser->_thing = 107;
|
2013-09-21 20:26:36 +00:00
|
|
|
_vm->_avalot->callVerb(Parser::kVerbCodeBuy);
|
2013-07-01 16:14:48 +00:00
|
|
|
return;
|
2013-09-15 23:15:47 +00:00
|
|
|
case 105: // Onion (trader)
|
2013-09-21 16:37:52 +00:00
|
|
|
_vm->_parser->_thing = 67;
|
2013-09-21 20:26:36 +00:00
|
|
|
_vm->_avalot->callVerb(Parser::kVerbCodeBuy);
|
2013-07-01 16:14:48 +00:00
|
|
|
return;
|
2013-09-15 23:15:47 +00:00
|
|
|
default:
|
2013-09-21 16:37:52 +00:00
|
|
|
_vm->_parser->_person = _vm->_parser->_thing;
|
|
|
|
_vm->_parser->_thing = Parser::kPardon;
|
2013-09-21 20:26:36 +00:00
|
|
|
_vm->_avalot->_subjectNum = 0;
|
2013-07-01 16:14:48 +00:00
|
|
|
}
|
|
|
|
}
|
2013-09-21 20:26:36 +00:00
|
|
|
_vm->_avalot->callVerb(_vm->_avalot->_verbStr[_activeMenuItem._choiceNum]);
|
2013-07-01 16:14:48 +00:00
|
|
|
}
|
|
|
|
|
2013-09-18 05:47:52 +00:00
|
|
|
void Menu::setup() {
|
2013-09-04 16:12:06 +00:00
|
|
|
_menuBar.init(this);
|
|
|
|
_activeMenuItem.init(this);
|
2013-07-01 16:14:48 +00:00
|
|
|
|
2013-09-18 05:47:52 +00:00
|
|
|
_menuBar.createMenuItem('F', "File", '!', &Avalanche::Menu::setupMenuFile, &Avalanche::Menu::runMenuFile);
|
|
|
|
_menuBar.createMenuItem('G', "Game", 34, &Avalanche::Menu::setupMenuGame, &Avalanche::Menu::runMenuGame);
|
|
|
|
_menuBar.createMenuItem('A', "Action", 30, &Avalanche::Menu::setupMenuAction, &Avalanche::Menu::runMenuAction);
|
|
|
|
_menuBar.createMenuItem('O', "Objects", 24, &Avalanche::Menu::setupMenuObjects, &Avalanche::Menu::runMenuObjects);
|
|
|
|
_menuBar.createMenuItem('P', "People", 25, &Avalanche::Menu::setupMenuPeople, &Avalanche::Menu::runMenuPeople);
|
|
|
|
_menuBar.createMenuItem('W', "With", 17, &Avalanche::Menu::setupMenuWith, &Avalanche::Menu::runMenuWith);
|
2013-07-01 16:14:48 +00:00
|
|
|
|
2013-09-04 16:12:06 +00:00
|
|
|
_menuBar.draw();
|
2013-07-01 16:14:48 +00:00
|
|
|
}
|
|
|
|
|
2013-09-18 05:47:52 +00:00
|
|
|
void Menu::update() { // TODO: Optimize it ASAP!!! It really needs it...
|
2013-09-01 15:15:55 +00:00
|
|
|
Common::Point cursorPos = _vm->getMousePos();
|
2013-09-01 23:11:16 +00:00
|
|
|
::Graphics::Surface backup;
|
|
|
|
backup.copyFrom(_vm->_graphics->_surface);
|
|
|
|
|
2013-09-21 20:26:36 +00:00
|
|
|
while (!_activeMenuItem._activeNow && (cursorPos.y <= 21) && _vm->_avalot->_holdLeftMouse) {
|
2013-09-04 16:12:06 +00:00
|
|
|
_menuBar.chooseMenuItem(cursorPos.x);
|
2013-09-07 07:00:34 +00:00
|
|
|
do
|
2013-09-01 23:11:16 +00:00
|
|
|
_vm->updateEvents();
|
2013-09-21 20:26:36 +00:00
|
|
|
while (_vm->_avalot->_holdLeftMouse);
|
2013-09-07 07:00:34 +00:00
|
|
|
|
2013-09-01 23:11:16 +00:00
|
|
|
while (!_vm->shouldQuit()) {
|
2013-09-07 07:00:34 +00:00
|
|
|
do {
|
2013-09-01 23:11:16 +00:00
|
|
|
_vm->updateEvents();
|
|
|
|
|
2013-09-02 10:53:01 +00:00
|
|
|
// We updadte the cursor's picture.
|
2013-09-01 23:11:16 +00:00
|
|
|
cursorPos = _vm->getMousePos();
|
|
|
|
// Change arrow...
|
|
|
|
if ((0 <= cursorPos.y) && (cursorPos.y <= 21))
|
2013-09-21 20:26:36 +00:00
|
|
|
_vm->_avalot->newMouse(0); // Up arrow
|
2013-09-01 23:11:16 +00:00
|
|
|
else if ((22 <= cursorPos.y) && (cursorPos.y <= 339)) {
|
2013-09-17 22:05:14 +00:00
|
|
|
if ((cursorPos.x >= _activeMenuItem._flx1 * 8) && (cursorPos.x <= _activeMenuItem._flx2 * 8) && (cursorPos.y > 21) && (cursorPos.y <= _activeMenuItem._fly * 2 + 1))
|
2013-09-21 20:26:36 +00:00
|
|
|
_vm->_avalot->newMouse(2); // Right-arrow
|
2013-09-01 23:11:16 +00:00
|
|
|
else
|
2013-09-21 20:26:36 +00:00
|
|
|
_vm->_avalot->newMouse(3); // Fletch
|
2013-09-01 23:11:16 +00:00
|
|
|
} else if ((340 <= cursorPos.y) && (cursorPos.y <= 399))
|
2013-09-21 20:26:36 +00:00
|
|
|
_vm->_avalot->newMouse(1); // Screwdriver
|
2013-09-01 23:11:16 +00:00
|
|
|
|
2013-09-04 16:12:06 +00:00
|
|
|
_activeMenuItem.lightUp(cursorPos);
|
2013-09-01 23:11:16 +00:00
|
|
|
|
|
|
|
_vm->_graphics->refreshScreen();
|
2013-09-21 20:26:36 +00:00
|
|
|
} while (!_vm->_avalot->_holdLeftMouse);
|
2013-09-01 23:11:16 +00:00
|
|
|
|
2013-09-21 20:26:36 +00:00
|
|
|
if (_vm->_avalot->_holdLeftMouse) {
|
2013-09-01 23:11:16 +00:00
|
|
|
if (cursorPos.y > 21) {
|
2013-09-04 16:12:06 +00:00
|
|
|
if (!((_activeMenuItem._firstlix) && ((cursorPos.x >= _activeMenuItem._flx1 * 8) && (cursorPos.x <= _activeMenuItem._flx2 * 8)
|
2013-09-17 22:05:14 +00:00
|
|
|
&& (cursorPos.y >= 24) && (cursorPos.y <= (_activeMenuItem._fly * 2 + 1))))) {
|
2013-09-02 13:44:55 +00:00
|
|
|
// Clicked OUTSIDE the menu.
|
2013-09-04 16:12:06 +00:00
|
|
|
if (_activeMenuItem._activeNow) {
|
|
|
|
_activeMenuItem.wipe();
|
2013-09-21 20:26:36 +00:00
|
|
|
_vm->_avalot->_holdLeftMouse = false;
|
2013-09-05 11:29:16 +00:00
|
|
|
backup.free();
|
2013-09-01 23:11:16 +00:00
|
|
|
return;
|
|
|
|
} // No "else"- clicking on menu has no effect (only releasing).
|
2013-09-07 07:00:34 +00:00
|
|
|
}
|
2013-09-01 23:11:16 +00:00
|
|
|
} else {
|
|
|
|
// Clicked on menu bar.
|
2013-09-04 16:12:06 +00:00
|
|
|
if (_activeMenuItem._activeNow) {
|
|
|
|
_activeMenuItem.wipe();
|
2013-09-01 23:11:16 +00:00
|
|
|
_vm->_graphics->_surface.copyFrom(backup);
|
|
|
|
_vm->_graphics->refreshScreen();
|
2013-09-07 07:00:34 +00:00
|
|
|
|
2013-09-04 16:12:06 +00:00
|
|
|
if (((_activeMenuItem._left * 8) <= cursorPos.x) && (cursorPos.x <= (_activeMenuItem._left * 8 + 80))) { // 80: the width of one menu item on the bar in pixels.
|
2013-09-02 18:09:44 +00:00
|
|
|
// If we clicked on the same menu item (the one that is already active) on the bar...
|
2013-09-21 20:26:36 +00:00
|
|
|
_vm->_avalot->_holdLeftMouse = false;
|
2013-09-05 11:29:16 +00:00
|
|
|
backup.free();
|
2013-09-02 13:44:55 +00:00
|
|
|
return;
|
2013-09-02 18:09:44 +00:00
|
|
|
} else {
|
2013-09-21 20:26:36 +00:00
|
|
|
_vm->_avalot->_holdLeftMouse = true;
|
2013-09-02 18:09:44 +00:00
|
|
|
break;
|
2013-09-02 13:44:55 +00:00
|
|
|
}
|
2013-09-01 23:11:16 +00:00
|
|
|
}
|
|
|
|
}
|
2013-09-07 07:00:34 +00:00
|
|
|
|
2013-09-01 23:11:16 +00:00
|
|
|
// NOT clicked button...
|
2013-09-04 16:12:06 +00:00
|
|
|
if ((_activeMenuItem._firstlix) && ((cursorPos.x >= _activeMenuItem._flx1 * 8) && (cursorPos.x <= _activeMenuItem._flx2 * 8)
|
2013-09-17 22:05:14 +00:00
|
|
|
&& (cursorPos.y >= 12) && (cursorPos.y <= (_activeMenuItem._fly * 2 + 1)))) {
|
2013-09-02 10:53:01 +00:00
|
|
|
|
2013-09-17 22:05:14 +00:00
|
|
|
// We act only if the button is released over a menu item.
|
|
|
|
while (!_vm->shouldQuit()) {
|
|
|
|
cursorPos = _vm->getMousePos();
|
|
|
|
_activeMenuItem.lightUp(cursorPos);
|
|
|
|
_vm->_graphics->refreshScreen();
|
2013-09-02 10:53:01 +00:00
|
|
|
|
2013-09-17 22:05:14 +00:00
|
|
|
_vm->updateEvents();
|
2013-09-21 20:26:36 +00:00
|
|
|
if (!_vm->_avalot->_holdLeftMouse)
|
2013-09-17 22:05:14 +00:00
|
|
|
break;
|
|
|
|
}
|
2013-09-02 10:53:01 +00:00
|
|
|
|
2013-09-17 22:05:14 +00:00
|
|
|
uint16 which = (cursorPos.y - 26) / 20;
|
|
|
|
_activeMenuItem.select(which);
|
|
|
|
if (_activeMenuItem._options[which]._valid) { // If the menu item wasn't active, we do nothing.
|
|
|
|
backup.free();
|
|
|
|
return;
|
|
|
|
}
|
2013-09-01 23:11:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-09-05 09:05:03 +00:00
|
|
|
|
|
|
|
backup.free();
|
2013-07-01 16:14:48 +00:00
|
|
|
}
|
|
|
|
|
2013-09-18 05:47:52 +00:00
|
|
|
bool Menu::isActive() {
|
|
|
|
return _menuActive;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Menu::init() {
|
|
|
|
_menuActive = false;
|
|
|
|
}
|
2013-07-01 16:14:48 +00:00
|
|
|
} // End of namespace Avalanche.
|