2010-01-07 21:52:31 +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.
|
|
|
|
*
|
2010-01-14 10:24:12 +00:00
|
|
|
* 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.
|
|
|
|
*
|
2010-01-07 21:52:31 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef WAGE_WORLD_H
|
|
|
|
#define WAGE_WORLD_H
|
|
|
|
|
2016-07-26 14:07:45 +00:00
|
|
|
#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
|
|
|
|
2010-01-07 21:52:31 +00:00
|
|
|
namespace Wage {
|
|
|
|
|
2016-07-29 10:03:52 +00:00
|
|
|
// Import the enum definitions
|
2016-07-29 10:05:46 +00:00
|
|
|
using Graphics::MacPatterns;
|
2016-07-29 10:03:52 +00:00
|
|
|
|
2016-07-26 14:07:45 +00:00
|
|
|
class Script;
|
2016-02-16 20:10:30 +00:00
|
|
|
class Sound;
|
|
|
|
|
2010-01-07 21:52:31 +00:00
|
|
|
class World {
|
|
|
|
public:
|
2015-12-25 00:09:12 +00:00
|
|
|
World(WageEngine *engine);
|
2010-01-07 21:52:31 +00:00
|
|
|
~World();
|
2015-12-16 20:44:48 +00:00
|
|
|
|
2010-01-11 20:46:24 +00:00
|
|
|
bool loadWorld(Common::MacResManager *resMan);
|
2016-01-27 10:11:02 +00:00
|
|
|
void loadExternalSounds(Common::String fname);
|
2015-12-21 11:19:27 +00:00
|
|
|
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);
|
2015-12-25 00:09:12 +00:00
|
|
|
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();
|
2015-12-25 00:09:12 +00:00
|
|
|
|
|
|
|
WageEngine *_engine;
|
2010-01-07 21:52:31 +00:00
|
|
|
|
2016-01-27 10:11:02 +00:00
|
|
|
Common::String _name;
|
|
|
|
Common::String _aboutMessage;
|
|
|
|
Common::String _soundLibrary1;
|
|
|
|
Common::String _soundLibrary2;
|
2010-01-07 21:52:31 +00:00
|
|
|
|
|
|
|
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;
|
2010-01-17 22:13:37 +00:00
|
|
|
Common::Array<Scene *> _orderedScenes;
|
2016-01-09 00:34:06 +00:00
|
|
|
ObjArray _orderedObjs;
|
|
|
|
ChrArray _orderedChrs;
|
2010-01-17 22:13:37 +00:00
|
|
|
Common::Array<Sound *> _orderedSounds;
|
2016-07-29 10:05:46 +00:00
|
|
|
Graphics::MacPatterns *_patterns;
|
2015-12-25 12:12:11 +00:00
|
|
|
Scene *_storageScene;
|
2010-01-10 22:26:01 +00:00
|
|
|
Chr *_player;
|
2016-07-27 11:38:43 +00:00
|
|
|
int _signature;
|
2010-01-07 21:52:31 +00:00
|
|
|
//List<MoveListener> moveListeners;
|
2010-01-08 23:42:28 +00:00
|
|
|
|
2015-12-21 11:19:27 +00:00
|
|
|
Common::String *_gameOverMessage;
|
|
|
|
Common::String *_saveBeforeQuitMessage;
|
|
|
|
Common::String *_saveBeforeCloseMessage;
|
|
|
|
Common::String *_revertMessage;
|
|
|
|
|
2016-01-15 10:57:20 +00:00
|
|
|
Common::String _aboutMenuItemName;
|
2016-01-14 12:43:42 +00:00
|
|
|
Common::String _commandsMenuName;
|
|
|
|
Common::String _commandsMenu;
|
|
|
|
Common::String _weaponsMenuName;
|
|
|
|
|
2010-01-08 23:42:28 +00:00
|
|
|
void addScene(Scene *room) {
|
2016-02-14 13:31:57 +00:00
|
|
|
if (!room->_name.empty()) {
|
2016-01-27 10:11:02 +00:00
|
|
|
Common::String s = room->_name;
|
2010-01-08 23:42:28 +00:00
|
|
|
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;
|
2010-01-08 23:42:28 +00:00
|
|
|
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;
|
2010-01-08 23:42:28 +00:00
|
|
|
s.toLowercase();
|
|
|
|
_chrs[s] = chr;
|
|
|
|
chr->_index = _orderedChrs.size();
|
|
|
|
_orderedChrs.push_back(chr);
|
|
|
|
}
|
|
|
|
|
2016-02-16 20:10:30 +00:00
|
|
|
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);
|
2010-01-07 21:52:31 +00:00
|
|
|
};
|
2015-12-16 20:44:48 +00:00
|
|
|
|
2010-01-07 21:52:31 +00:00
|
|
|
} // End of namespace Wage
|
2015-12-16 20:44:48 +00:00
|
|
|
|
2010-01-07 21:52:31 +00:00
|
|
|
#endif
|