ScummVM API documentation
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
actor.h
1 /* ScummVM - Graphic Adventure Engine
2  *
3  * ScummVM is the legal property of its developers, whose names
4  * are too numerous to list here. Please refer to the COPYRIGHT
5  * file distributed with this source distribution.
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program. If not, see <http://www.gnu.org/licenses/>.
19  *
20  */
21 
22 #ifndef GOT_DATA_ACTOR_H
23 #define GOT_DATA_ACTOR_H
24 
25 #include "common/stream.h"
26 #include "graphics/managed_surface.h"
27 
28 namespace Got {
29 
30 #define DIRECTION_COUNT 4
31 #define FRAME_COUNT 4
32 
33 struct Actor {
34  // First part loaded from disk
35  byte _moveType = 0; // Movement pattern (0=none)
36  byte _width = 0; // Physical width
37  byte _height = 0; // Physical height
38  byte _directions = 0; // 1, 2 or 4 (1=uni-directional)
39  byte _framesPerDirection = 0; // # frames per direction
40  byte _frameSpeed = 0; // # cycles between frame changes
41  byte _frameSequence[4] = {}; // Sequence
42  byte _speed = 0; // Move every Nth cycle
43  byte _sizeX = 0; // Non-physical padding on X coordinate
44  byte _sizeY = 0; // Non-physical padding on Y coordinate
45  byte _hitStrength = 0; // Hit strength
46  byte _health = 0; //
47  byte _numMoves = 0; // # of moves every <_speed> cycles
48  byte _shotType = 0; // Actor # of shot
49  byte _shotPattern = 0; // Func number to decide to shoot
50  byte _numShotsAllowed = 0; // # shots allowed on screen
51  byte _solid = 0; // 1=solid (not ghost,etc)
52  bool _flying = false; //
53  byte _dropRating = 0; // rnd(100) < _dropRating = jewel
54  byte _type = 0; // Actor (0 = thor, 1 = hammer, 2 = enemy, 3 = shot)
55  char _name[9] = {}; // Actors name
56  byte _funcNum = 0; // Special function when thor touches
57  byte _funcPass = 0; // Value to pass to func
58  uint16 _magicHurts = 0; // Bitwise magic hurts flags
59 
60  // The rest is dynamic //size=216
61  // Direction/frame surfaces
62  Graphics::ManagedSurface pic[DIRECTION_COUNT][FRAME_COUNT];
63 
64  byte _frameCount = 0; // Count to switch frames
65  byte _dir = 0; // Direction of travel
66  byte _lastDir = 0; // Last direction of travel
67  int _x = 0; // Actual X coordinate
68  int _y = 0; // Actual Y coordinate
69  int _center = 0; // Center of object
70  int _lastX[2] = {}; // Last X coordinate on each page
71  int _lastY[2] = {}; // Last Y coordinate on each page
72  bool _active = false; // true=active, false=not active
73  byte _nextFrame = 0; // Next frame to be shown
74  byte _moveCountdown = 0; // Count down to movement
75  byte _vulnerableCountdown = 0; // Count down to vulnerability
76  byte _shotCountdown = 0; // Count down to another shot
77  byte _currNumShots = 0; // # of shots currently on screen
78  byte _creator = 0; // Which actor # created this actor
79  byte _unpauseCountdown = 0; // Must be 0 to move
80  byte _actorNum = 0;
81  byte _moveCount = 0;
82  byte _dead = 0;
83  byte _toggle = 0;
84  byte _centerX = 0;
85  byte _centerY = 0;
86  byte _show = 0; // Display or not (for blinking)
87  byte _temp1 = 0;
88  byte _temp2 = 0;
89  byte _counter = 0;
90  byte _moveCounter = 0;
91  byte _edgeCounter = 0;
92  byte _temp3 = 0;
93  byte _temp4 = 0;
94  byte _temp5 = 0;
95  bool _hitThor = false;
96  int _rand = 0;
97  byte _initDir = 0;
98  byte _passValue = 0;
99  byte _shotActor = 0;
100  byte _magicHit = 0;
101  byte _temp6 = 0;
102  int _i1 = 0, _i2 = 0, _i3 = 0, _i4 = 0, _i5 = 0, _i6 = 0;
103  byte _initHealth = 0;
104  byte _talkCounter = 0;
105 
106  void loadFixed(Common::SeekableReadStream *src);
107  void loadFixed(const byte *src);
108 
112  void copyFixedAndPics(const Actor &src);
113 
114  Actor &operator=(const Actor &src);
115 
116  int getPos() const {
117  return ((_x + 7) / 16) + (((_y + 8) / 16) * 20);
118  }
119 };
120 
121 } // namespace Got
122 
123 #endif
Definition: managed_surface.h:51
void copyFixedAndPics(const Actor &src)
Definition: stream.h:745
Definition: actor.h:33
Definition: console.h:28