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
114
115
116
117
118
119
120
|
/* 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.
*
* $URL$
* $Id$
*
*/
#ifndef M4_ANIMATION_H
#define M4_ANIMATION_H
#include "m4/m4.h"
#include "m4/graphics.h"
#include "m4/assets.h"
#include "m4/mads_views.h"
#include "common/array.h"
namespace M4 {
class MadsView;
class SpriteSlotSubset;
class AnimMessage {
public:
char msg[70];
Common::Point pos;
RGB8 rgb1, rgb2;
int kernelMsgIndex;
int startFrame, endFrame;
};
class AnimFrameEntry {
public:
int frameNumber;
int seqIndex;
SpriteSlotSubset spriteSlot;
};
class AnimMiscEntry {
public:
int soundNum;
int numTicks;
Common::Point posAdjust;
};
#define ANIM_SPRITE_SET_SIZE 50
enum MadsAnimationFlags {ANIM_CUSTOM_FONT = 0x20};
class MadsAnimation: public Animation {
private:
bool _playing;
MadsView *_view;
int _spriteListCount;
Common::Array<AnimMessage> _messages;
Common::Array<AnimFrameEntry> _frameEntries;
Common::Array<AnimMiscEntry> _miscEntries;
Font *_font;
uint8 _flags;
int _animMode;
int _roomNumber;
bool _field12;
int _spriteListIndex;
int _scrollX;
int _scrollY;
Common::String _field24;
Common::String _spriteSetNames[10];
Common::String _lbmFilename;
Common::String _spritesFilename;
Common::String _soundName;
Common::Array<int> _spriteListIndexes;
int _currentFrame, _oldFrameEntry;
bool _resetFlag;
int _unk1;
bool _skipLoad;
int _unkIndex;
Common::Point _unkList[2];
uint32 _nextFrameTimer;
int _messageCtr;
int _abortTimers;
AbortTimerMode _abortMode;
uint16 _actionNouns[3];
void load1(int frameNumber);
bool proc1(SpriteAsset &spriteSet, const Common::Point &pt, int frameNumber);
public:
MadsAnimation(MadsM4Engine *vm, MadsView *view);
virtual ~MadsAnimation();
virtual void load(const Common::String &filename);
virtual void start();
virtual bool update();
virtual void stop();
virtual void setCurrentFrame(int frameNumber);
};
} // End of namespace M4
#endif
|