ScummVM API documentation
area.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 // Based on Phantasma code by Thomas Harte (2013),
23 // available at https://github.com/TomHarte/Phantasma/ (MIT)
24 
25 #ifndef FREESCAPE_AREA_H
26 #define FREESCAPE_AREA_H
27 
28 #include "math/ray.h"
29 #include "math/vector3d.h"
30 
31 #include "freescape/language/instruction.h"
32 #include "freescape/objects/object.h"
33 #include "freescape/objects/group.h"
34 
35 
36 namespace Freescape {
37 
38 typedef Common::HashMap<uint16, Object *> ObjectMap;
39 typedef Common::Array<Object *> ObjectArray;
40 class Area {
41 public:
42  Area(uint16 areaID, uint16 areaFlags, ObjectMap *objectsByID, ObjectMap *entrancesByID);
43  virtual ~Area();
44 
45  Common::String _name;
46  Object *objectWithID(uint16 objectID);
47  Object *entranceWithID(uint16 objectID);
48  Common::List<int> getEntranceIds();
49 
50  void changeObjectID(uint16 objectID, uint16 newObjectID);
51  ObjectArray getSensors();
52  uint16 getAreaID();
53  uint16 getAreaFlags();
54  uint8 getScale();
55  void remapColor(int index, int color);
56  void unremapColor(int index);
57  void draw(Renderer *gfx, uint32 animationTicks, Math::Vector3d camera, Math::Vector3d direction);
58  void drawGroup(Renderer *gfx, Group *group, bool runAnimation);
59  void show();
60 
61  Object *checkCollisionRay(const Math::Ray &ray, int raySize);
62  bool checkInSight(const Math::Ray &ray, float maxDistance);
63  Math::Vector3d separateFromWall(const Math::Vector3d &position);
64  ObjectArray checkCollisions(const Math::AABB &boundingBox);
65  bool checkIfPlayerWasCrushed(const Math::AABB &boundingBox);
66  Math::Vector3d resolveCollisions(Math::Vector3d const &lastPosition, Math::Vector3d const &newPosition, int playerHeight);
67  void addObjectFromArea(int16 id, Area *global);
68  void addGroupFromArea(int16 id, Area *global);
69  void addObject(Object *obj);
70  void addFloor();
71  void addStructure(Area *global);
72  void removeObject(int16 id);
73  void resetArea();
74  void resetAreaGroups();
75  bool isOutside();
76  bool hasActiveGroups();
77 
78  Common::Array<Common::String> _conditionSources;
80 
81  // Serialization
82  void saveObjects(Common::WriteStream *stream);
83  void loadObjects(Common::SeekableReadStream *stream, Area *global);
84 
85  // Driller specific
86  Common::Point _gasPocketPosition;
87  uint32 _gasPocketRadius;
88 
89  uint8 _scale;
90  uint8 _skyColor;
91  uint8 _groundColor;
92  uint8 _usualBackgroundColor;
93  uint8 _underFireBackgroundColor;
94  uint8 _inkColor;
95  uint8 _paperColor;
96  uint8 _extraColor[4];
97  ColorReMap _colorRemaps;
98 
99  uint32 _lastTick;
100 
101 private:
102  uint16 _areaID;
103  uint16 _areaFlags;
104  ObjectMap *_objectsByID;
105  ObjectMap *_entrancesByID;
106  ObjectArray _drawableObjects;
107  ObjectMap _addedObjects;
108  Object *objectWithIDFromMap(ObjectMap *map, uint16 objectID);
109 };
110 
111 } // End of namespace Freescape
112 
113 #endif // FREESCAPE_AREA_H
Definition: group.h:40
Definition: str.h:59
Definition: stream.h:77
Definition: area.h:36
Definition: area.h:40
Definition: stream.h:745
Definition: gfx.h:60
Definition: rect.h:144
Definition: object.h:56