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
|
|
|
|
|
|
|
|
namespace Fullpipe {
|
|
|
|
|
2013-06-24 03:32:51 +00:00
|
|
|
class Scene : public Background {
|
2013-06-20 22:13:18 +00:00
|
|
|
Background _bg;
|
|
|
|
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-06-24 03:32:51 +00:00
|
|
|
char *_scstringObj;
|
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();
|
|
|
|
virtual bool load(MfcArchive &file);
|
2013-06-24 20:22:26 +00:00
|
|
|
void initStaticANIObjects();
|
2013-07-13 08:51:36 +00:00
|
|
|
void init();
|
2013-07-12 19:35:51 +00:00
|
|
|
void draw(int par);
|
|
|
|
void drawContent(int minPri, int maxPri, bool drawBG);
|
|
|
|
void updateScrolling(int par);
|
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 */
|