Skip to content

Commit

Permalink
AVALANCHE: Add Help's skeleton.
Browse files Browse the repository at this point in the history
  • Loading branch information
uruk committed Feb 9, 2014
1 parent b3e0c98 commit da4d459
Show file tree
Hide file tree
Showing 6 changed files with 139 additions and 3 deletions.
3 changes: 3 additions & 0 deletions engines/avalanche/avalanche.cpp
Expand Up @@ -57,6 +57,7 @@ AvalancheEngine::AvalancheEngine(OSystem *syst, const AvalancheGameDescription *
_sound = nullptr;
_nim = nullptr;
_ghostroom = nullptr;
_help = nullptr;

_platform = gd->desc.platform;
initVariables();
Expand All @@ -81,6 +82,7 @@ AvalancheEngine::~AvalancheEngine() {
delete _sound;
delete _nim;
delete _ghostroom;
delete _help;

for (int i = 0; i < 31; i++) {
for (int j = 0; j < 2; j++) {
Expand Down Expand Up @@ -165,6 +167,7 @@ Common::ErrorCode AvalancheEngine::initialize() {
_sound = new SoundHandler(this);
_nim = new Nim(this);
_ghostroom = new GhostRoom(this);
_help = new Help(this);

_graphics->init();
_dialogs->init();
Expand Down
2 changes: 2 additions & 0 deletions engines/avalanche/avalanche.h
Expand Up @@ -44,6 +44,7 @@
#include "avalanche/nim.h"
#include "avalanche/clock.h"
#include "avalanche/ghostroom.h"
#include "avalanche/help.h"

#include "common/serializer.h"

Expand Down Expand Up @@ -89,6 +90,7 @@ class AvalancheEngine : public Engine {
SoundHandler *_sound;
Nim *_nim;
GhostRoom *_ghostroom;
Help *_help;

OSystem *_system;

Expand Down
70 changes: 70 additions & 0 deletions engines/avalanche/help.cpp
@@ -0,0 +1,70 @@
/* 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.
*/

/* Original name: HELPER The help system unit. */

#include "avalanche/avalanche.h"
#include "avalanche/help.h"

namespace Avalanche {

Help::Help(AvalancheEngine *vm) {
_vm = vm;

_highlightWas = 0;
}

void Help::plotButton(int8 y, byte which) {
warning("STUB: Help::plotButton()");
}

void Help::getMe(byte which) {
warning("STUB: Help::getMe()");
}

Common::String Help::getLine() {
warning("STUB: Help::getLine()");
return "STUB: Help::getLine()";
}

byte Help::checkMouse() {
warning("STUB: Help::checkMouse()");
return 0;
}

void Help::continueHelp() {
warning("STUB: Help::continueHelp()");
}

/**
* @remarks Originally called 'boot_help'
*/
void Help::run() {
warning("STUB: Help::run()");
}

} // End of namespace Avalanche
61 changes: 61 additions & 0 deletions engines/avalanche/help.h
@@ -0,0 +1,61 @@
/* 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.
*/

/* Original name: HELPER The help system unit. */

#ifndef AVALANCHE_HELP_H
#define AVALANCHE_HELP_H

namespace Avalanche {
class AvalancheEngine;

class Help {
public:
Help(AvalancheEngine *vm);

void run();

private:
struct Button {
byte _trigger, _whither;
};

AvalancheEngine *_vm;

Button _buttons[10];
byte _highlightWas;

void plotButton(int8 y, byte which);
void getMe(byte which);
Common::String getLine(); // It was a nested function in getMe().
byte checkMouse(); // Returns clicked-on button, or 0 if none.
void continueHelp();
};

} // End of namespace Avalanche

#endif // AVALANCHE_HELP_H
3 changes: 2 additions & 1 deletion engines/avalanche/module.mk
Expand Up @@ -18,7 +18,8 @@ MODULE_OBJS = \
timer.o \
nim.o \
clock.o \
ghostroom.o
ghostroom.o \
help.o

# This module can be built as a plugin
ifeq ($(ENABLE_AVALANCHE), DYNAMIC_PLUGIN)
Expand Down
3 changes: 1 addition & 2 deletions engines/avalanche/parser.cpp
Expand Up @@ -2043,8 +2043,7 @@ void Parser::doThat() {
}
break;
case kVerbCodeHelp:
// boot_help();
warning("STUB: Parser::doThat() - case kVerbCodehelp");
_vm->_help->run();
break;
case kVerbCodeLarrypass:
_vm->_dialogs->displayText("Wrong game!");
Expand Down

0 comments on commit da4d459

Please sign in to comment.