2007-05-30 21:56:52 +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.
|
2003-12-16 02:10:15 +00:00
|
|
|
*
|
|
|
|
* 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
|
2008-01-05 12:45:14 +00:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2003-12-16 02:10:15 +00:00
|
|
|
* 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
|
2005-10-18 01:30:26 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2003-12-16 02:10:15 +00:00
|
|
|
*
|
2006-02-11 10:01:01 +00:00
|
|
|
* $URL$
|
|
|
|
* $Id$
|
2003-12-16 02:10:15 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
// this is the object manager. our equivalent to protocol.c and coredata.c
|
|
|
|
|
2007-02-20 18:04:13 +00:00
|
|
|
#ifndef SWORD1_OBJECTMAN_H
|
|
|
|
#define SWORD1_OBJECTMAN_H
|
2003-12-16 02:10:15 +00:00
|
|
|
|
2005-06-24 16:01:42 +00:00
|
|
|
#include "sword1/resman.h"
|
2004-10-21 12:43:49 +00:00
|
|
|
#include "sword1/sworddefs.h"
|
|
|
|
#include "sword1/object.h"
|
2003-12-16 02:10:15 +00:00
|
|
|
|
2004-01-11 15:47:41 +00:00
|
|
|
namespace Sword1 {
|
|
|
|
|
2003-12-16 02:10:15 +00:00
|
|
|
class ObjectMan {
|
|
|
|
public:
|
|
|
|
ObjectMan(ResMan *pResourceMan);
|
|
|
|
~ObjectMan(void);
|
2003-12-20 09:12:54 +00:00
|
|
|
void initialize(void);
|
|
|
|
|
2004-01-11 15:47:41 +00:00
|
|
|
Object *fetchObject(uint32 id);
|
2003-12-16 02:10:15 +00:00
|
|
|
uint32 fetchNoObjects(int section);
|
|
|
|
bool sectionAlive(uint16 section);
|
|
|
|
void megaEntering(uint16 section);
|
|
|
|
void megaLeaving(uint16 section, int id);
|
|
|
|
|
|
|
|
uint8 fnCheckForTextLine(uint32 textId);
|
|
|
|
char *lockText(uint32 textId);
|
|
|
|
void unlockText(uint32 textId);
|
|
|
|
uint32 lastTextNumber(int section);
|
|
|
|
|
2004-01-11 15:47:41 +00:00
|
|
|
void closeSection(uint32 screen);
|
2005-07-30 21:11:48 +00:00
|
|
|
|
2003-12-20 09:12:54 +00:00
|
|
|
void saveLiveList(uint16 *dest); // for loading/saving
|
|
|
|
void loadLiveList(uint16 *src);
|
2003-12-16 02:10:15 +00:00
|
|
|
private:
|
|
|
|
ResMan *_resMan;
|
|
|
|
static const uint32 _objectList[TOTAL_SECTIONS]; //a table of pointers to object files
|
|
|
|
static const uint32 _textList[TOTAL_SECTIONS][7]; //a table of pointers to text files
|
2008-01-28 00:14:17 +00:00
|
|
|
uint16 _liveList[TOTAL_SECTIONS]; //which sections are active
|
2003-12-16 02:10:15 +00:00
|
|
|
uint8 *_cptData[TOTAL_SECTIONS];
|
2009-02-27 05:20:37 +00:00
|
|
|
static char _missingSubTitleStr[];
|
|
|
|
static const char *_translationId2950145[7]; //translation for textId 2950145 (missing from cluster file for some langages)
|
2003-12-16 02:10:15 +00:00
|
|
|
};
|
|
|
|
|
2005-07-30 21:11:48 +00:00
|
|
|
} // End of namespace Sword1
|
2004-01-11 15:47:41 +00:00
|
|
|
|
2003-12-16 02:10:15 +00:00
|
|
|
#endif //OBJECTMAN_H
|