scummvm/engines/wage/world.h

145 lines
4.4 KiB
C
Raw Normal View History

/* 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.
*
* MIT License:
*
* Copyright (c) 2009 Alexei Svitkine, Eugene Sandulenko
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without
* restriction, including without limitation the rights to use,
* copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following
* conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
*
*/
#ifndef WAGE_WORLD_H
#define WAGE_WORLD_H
#include "wage/entities.h"
2016-07-29 09:43:28 +00:00
#include "graphics/macgui/macwindowmanager.h"
2016-04-28 10:37:03 +00:00
namespace Wage {
// Import the enum definitions
2016-07-29 10:05:46 +00:00
using Graphics::MacPatterns;
class Script;
class Sound;
class World {
public:
World(WageEngine *engine);
~World();
2015-12-16 20:44:48 +00:00
bool loadWorld(Common::MacResManager *resMan);
2016-01-27 10:11:02 +00:00
void loadExternalSounds(Common::String fname);
Common::String *loadStringFromDITL(Common::MacResManager *resMan, int resourceId, int itemIndex);
2015-12-24 13:12:19 +00:00
void move(Obj *obj, Chr *chr);
2015-12-28 18:09:16 +00:00
void move(Obj *obj, Scene *scene, bool skipSort = false);
void move(Chr *chr, Scene *scene, bool skipSort = false);
Scene *getRandomScene();
2016-01-03 23:42:10 +00:00
Scene *getSceneAt(int x, int y);
2016-01-07 23:26:31 +00:00
bool scenesAreConnected(Scene *scene1, Scene *scene2);
2016-01-11 18:21:25 +00:00
const char *getAboutMenuItemName();
WageEngine *_engine;
2016-01-27 10:11:02 +00:00
Common::String _name;
Common::String _aboutMessage;
Common::String _soundLibrary1;
Common::String _soundLibrary2;
bool _weaponMenuDisabled;
Script *_globalScript;
2016-01-27 10:11:02 +00:00
Common::HashMap<Common::String, Scene *> _scenes;
Common::HashMap<Common::String, Obj *> _objs;
Common::HashMap<Common::String, Chr *> _chrs;
Common::HashMap<Common::String, Sound *> _sounds;
Common::Array<Scene *> _orderedScenes;
2016-01-09 00:34:06 +00:00
ObjArray _orderedObjs;
ChrArray _orderedChrs;
Common::Array<Sound *> _orderedSounds;
2016-07-29 10:05:46 +00:00
Graphics::MacPatterns *_patterns;
Scene *_storageScene;
Chr *_player;
2016-07-27 11:38:43 +00:00
int _signature;
//List<MoveListener> moveListeners;
Common::String *_gameOverMessage;
Common::String *_saveBeforeQuitMessage;
Common::String *_saveBeforeCloseMessage;
Common::String *_revertMessage;
Common::String _aboutMenuItemName;
2016-01-14 12:43:42 +00:00
Common::String _commandsMenuName;
Common::String _commandsMenu;
Common::String _weaponsMenuName;
void addScene(Scene *room) {
if (!room->_name.empty()) {
2016-01-27 10:11:02 +00:00
Common::String s = room->_name;
s.toLowercase();
_scenes[s] = room;
}
_orderedScenes.push_back(room);
}
void addObj(Obj *obj) {
2016-01-27 10:11:02 +00:00
Common::String s = obj->_name;
s.toLowercase();
_objs[s] = obj;
obj->_index = _orderedObjs.size();
_orderedObjs.push_back(obj);
}
void addChr(Chr *chr) {
2016-01-27 10:11:02 +00:00
Common::String s = chr->_name;
s.toLowercase();
_chrs[s] = chr;
chr->_index = _orderedChrs.size();
_orderedChrs.push_back(chr);
}
void addSound(Sound *sound);
2015-12-21 14:47:10 +00:00
private:
2016-01-14 12:43:42 +00:00
Common::StringArray *readMenu(Common::SeekableReadStream *res);
};
2015-12-16 20:44:48 +00:00
} // End of namespace Wage
2015-12-16 20:44:48 +00:00
#endif