2013-06-20 19:34:29 +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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef FULLPIPE_SCENE_H
|
|
|
|
#define FULLPIPE_SCENE_H
|
|
|
|
|
2013-07-20 18:28:32 +00:00
|
|
|
#include "fullpipe/gfx.h"
|
|
|
|
|
2013-06-20 19:34:29 +00:00
|
|
|
namespace Fullpipe {
|
|
|
|
|
2013-06-24 03:32:51 +00:00
|
|
|
class Scene : public Background {
|
2013-07-20 18:28:32 +00:00
|
|
|
friend class FullpipeEngine;
|
2013-07-25 21:14:47 +00:00
|
|
|
friend class SceneTag;
|
2013-07-29 11:28:47 +00:00
|
|
|
friend class StaticANIObject;
|
2013-07-20 18:28:32 +00:00
|
|
|
|
2013-06-20 22:13:18 +00:00
|
|
|
CPtrList _staticANIObjectList1;
|
|
|
|
CPtrList _staticANIObjectList2;
|
|
|
|
CPtrList _messageQueueList;
|
|
|
|
CPtrList _faObjectList;
|
|
|
|
Shadows *_shadows;
|
2013-06-24 20:22:26 +00:00
|
|
|
SoundList *_soundList;
|
2013-06-20 22:13:18 +00:00
|
|
|
int16 _sceneId;
|
2013-07-19 15:13:00 +00:00
|
|
|
char *_sceneName;
|
2013-06-20 22:13:18 +00:00
|
|
|
int _field_BC;
|
2013-06-24 03:32:51 +00:00
|
|
|
NGIArchive *_libHandle;
|
2013-06-20 20:39:05 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
Scene();
|
2013-07-22 22:42:22 +00:00
|
|
|
|
2013-06-20 20:39:05 +00:00
|
|
|
virtual bool load(MfcArchive &file);
|
2013-07-22 22:42:22 +00:00
|
|
|
|
2013-06-24 20:22:26 +00:00
|
|
|
void initStaticANIObjects();
|
2013-07-13 08:51:36 +00:00
|
|
|
void init();
|
2013-07-24 21:34:15 +00:00
|
|
|
void draw();
|
2013-07-12 19:35:51 +00:00
|
|
|
void drawContent(int minPri, int maxPri, bool drawBG);
|
2013-07-24 21:34:15 +00:00
|
|
|
void updateScrolling();
|
2013-07-22 22:42:22 +00:00
|
|
|
|
2013-07-20 13:08:05 +00:00
|
|
|
StaticANIObject *getAniMan();
|
|
|
|
StaticANIObject *getStaticANIObject1ById(int obj, int a3);
|
2013-07-22 22:42:22 +00:00
|
|
|
StaticANIObject *getStaticANIObject1ByName(char *name, int a3);
|
2013-07-29 19:16:14 +00:00
|
|
|
MessageQueue *getMessageQueueById(int messageId);
|
2013-07-22 22:42:22 +00:00
|
|
|
|
2013-07-20 20:55:04 +00:00
|
|
|
void deleteStaticANIObject(StaticANIObject *obj);
|
|
|
|
void addStaticANIObject(StaticANIObject *obj, bool addList2);
|
2013-07-22 22:42:22 +00:00
|
|
|
|
2013-07-22 19:46:08 +00:00
|
|
|
void setPictureObjectsFlag4();
|
|
|
|
PictureObject *getPictureObjectById(int objId, int flags);
|
2013-07-22 22:42:22 +00:00
|
|
|
void preloadMovements(CGameVar *var);
|
|
|
|
|
|
|
|
void initObjectCursors(const char *name);
|
2013-07-24 21:34:15 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
static bool compareObjPriority(const void *p1, const void *p2);
|
|
|
|
void objectList_sortByPriority(CPtrList &list);
|
2013-06-20 20:39:05 +00:00
|
|
|
};
|
|
|
|
|
2013-06-20 19:34:29 +00:00
|
|
|
class SceneTag : public CObject {
|
|
|
|
public:
|
|
|
|
int _field_4;
|
|
|
|
char *_tag;
|
2013-06-20 20:39:05 +00:00
|
|
|
Scene *_scene;
|
2013-06-20 19:34:29 +00:00
|
|
|
int16 _sceneId;
|
|
|
|
int16 _field_12;
|
|
|
|
|
|
|
|
public:
|
|
|
|
SceneTag();
|
|
|
|
~SceneTag();
|
|
|
|
|
|
|
|
virtual bool load(MfcArchive &file);
|
2013-06-20 20:39:05 +00:00
|
|
|
void loadScene();
|
2013-06-20 19:34:29 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class SceneTagList : public Common::List<SceneTag>, public CObject {
|
|
|
|
public:
|
|
|
|
virtual bool load(MfcArchive &file);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // End of namespace Fullpipe
|
|
|
|
|
|
|
|
#endif /* FULLPIPE_SCENE_H */
|