1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
/* 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 NEVERHOOD_SCENE_H
#define NEVERHOOD_SCENE_H
#include "common/array.h"
#include "neverhood/neverhood.h"
#include "neverhood/background.h"
#include "neverhood/entity.h"
#include "neverhood/graphics.h"
#include "neverhood/klayman.h"
#include "neverhood/module.h"
#include "neverhood/palette.h"
#include "neverhood/smackerplayer.h"
#include "neverhood/sprite.h"
#include "neverhood/staticdata.h"
namespace Neverhood {
class Scene : public Entity {
public:
Scene(NeverhoodEngine *vm, Module *parentModule, bool clearHitRects);
virtual ~Scene();
virtual void draw();
void addEntity(Entity *entity);
bool removeEntity(Entity *entity);
void addSurface(BaseSurface *surface);
bool removeSurface(BaseSurface *surface);
Sprite *addSprite(Sprite *sprite);
void setSurfacePriority(BaseSurface *surface, int priority);
void deleteSprite(Sprite **sprite);
Background *addBackground(Background *background);
SmackerPlayer *addSmackerPlayer(SmackerPlayer *smackerPlayer);
void update();
protected:
Module *_parentModule;
Common::Array<Entity*> _entities;
Common::Array<BaseSurface*> _surfaces;
bool _systemCallbackFlag;
MessageList *_messageList;
uint _messageListCount;
uint _messageListIndex;
bool _messageListFlag1;
NPoint _mouseClickPos;
bool _mouseClicked;
DataResource _dataResource;
RectList *_rectList;
HitRectList _hitRectList;
int _rectType;
// TODO 0000008E field_8E dw ?
Sprite *_mouseCursor;
Klayman *_klayman;
Palette *_palette;
Background *_background;
bool _surfaceFlag;
bool _messageListFlag;
MessageList *_messageList2;
int _messageListStatus;
SmackerPlayer *_smackerPlayer;
void (Entity::*_savedUpdateHandlerCb)();
uint32 (Entity::*_savedMessageHandlerCb)(int messageNum, const MessageParam ¶m, Entity *sender);
bool _smackerDone;
// TODO 000000BD field_BD db ?
// TODO 000000BE field_BE db ?
// TODO 000000BF field_BF db ?
uint32 _smkFileHash;
// TODO 000000C4 hitArray dd ?
bool _messageListFlag2;
bool _prevVisible;
int _messageValue;
// TODO 000000CF field_CF db ?
uint32 handleMessage(int messageNum, const MessageParam ¶m, Entity *sender);
void smackerUpdate();
uint32 smackerHandleMessage(int messageNum, const MessageParam ¶m, Entity *sender);
bool queryPositionSprite(int16 mouseX, int16 mouseY);
bool queryPositionRectList(int16 mouseX, int16 mouseY);
void setMessageList(uint32 id, bool messageListFlag = true, bool systemCallbackFlag = false);
void setMessageList(MessageList *messageList, bool messageListFlag = true, bool systemCallbackFlag = false);
bool setMessageList2(uint32 id, bool messageListFlag = true, bool systemCallbackFlag = false);
bool setMessageList2(MessageList *messageList, bool messageListFlag = true, bool systemCallbackFlag = false);
void runMessageList();
void setRectList(uint32 id);
void setRectList(RectList *rectList);
void clearRectList();
void loadHitRectList();
void messageList402220();
void loadDataResource(uint32 fileHash);
uint16 convertMessageNum(uint32 messageNum);
};
} // End of namespace Neverhood
#endif /* NEVERHOOD_SCENE_H */
|