Environment & IGameDef code refactoring (#4985)
[oweals/minetest.git] / src / clientenvironment.h
1 /*
2 Minetest
3 Copyright (C) 2010-2017 celeron55, Perttu Ahola <celeron55@gmail.com>
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU Lesser General Public License as published by
7 the Free Software Foundation; either version 2.1 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU Lesser General Public License for more details.
14
15 You should have received a copy of the GNU Lesser General Public License along
16 with this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19
20 #ifndef CLIENT_ENVIRONMENT_HEADER
21 #define CLIENT_ENVIRONMENT_HEADER
22
23 #include <IrrlichtDevice.h>
24 #include <ISceneManager.h>
25 #include "environment.h"
26 #include "clientobject.h"
27
28 class ClientSimpleObject;
29 class ClientMap;
30 class ClientActiveObject;
31 class GenericCAO;
32 class LocalPlayer;
33 struct PointedThing;
34
35 /*
36         The client-side environment.
37
38         This is not thread-safe.
39         Must be called from main (irrlicht) thread (uses the SceneManager)
40         Client uses an environment mutex.
41 */
42
43 enum ClientEnvEventType
44 {
45         CEE_NONE,
46         CEE_PLAYER_DAMAGE,
47         CEE_PLAYER_BREATH
48 };
49
50 struct ClientEnvEvent
51 {
52         ClientEnvEventType type;
53         union {
54                 //struct{
55                 //} none;
56                 struct{
57                         u8 amount;
58                         bool send_to_server;
59                 } player_damage;
60                 struct{
61                         u16 amount;
62                 } player_breath;
63         };
64 };
65
66 class ClientEnvironment : public Environment
67 {
68 public:
69         ClientEnvironment(ClientMap *map, scene::ISceneManager *smgr,
70                 ITextureSource *texturesource, Client *client,
71                 IrrlichtDevice *device);
72         ~ClientEnvironment();
73
74         Map & getMap();
75         ClientMap & getClientMap();
76
77         Client *getGameDef() { return m_client; }
78
79         void step(f32 dtime);
80
81         virtual void setLocalPlayer(LocalPlayer *player);
82         LocalPlayer *getLocalPlayer() { return m_local_player; }
83
84         /*
85                 ClientSimpleObjects
86         */
87
88         void addSimpleObject(ClientSimpleObject *simple);
89
90         /*
91                 ActiveObjects
92         */
93
94         GenericCAO* getGenericCAO(u16 id);
95         ClientActiveObject* getActiveObject(u16 id);
96
97         /*
98                 Adds an active object to the environment.
99                 Environment handles deletion of object.
100                 Object may be deleted by environment immediately.
101                 If id of object is 0, assigns a free id to it.
102                 Returns the id of the object.
103                 Returns 0 if not added and thus deleted.
104         */
105         u16 addActiveObject(ClientActiveObject *object);
106
107         void addActiveObject(u16 id, u8 type, const std::string &init_data);
108         void removeActiveObject(u16 id);
109
110         void processActiveObjectMessage(u16 id, const std::string &data);
111
112         /*
113                 Callbacks for activeobjects
114         */
115
116         void damageLocalPlayer(u8 damage, bool handle_hp=true);
117         void updateLocalPlayerBreath(u16 breath);
118
119         /*
120                 Client likes to call these
121         */
122
123         // Get all nearby objects
124         void getActiveObjects(v3f origin, f32 max_d,
125                 std::vector<DistanceSortedActiveObject> &dest);
126
127         // Get event from queue. CEE_NONE is returned if queue is empty.
128         ClientEnvEvent getClientEvent();
129
130         /*!
131          * Gets closest object pointed by the shootline.
132          * Returns NULL if not found.
133          *
134          * \param[in]  shootline_on_map    the shootline for
135          * the test in world coordinates
136          * \param[out] intersection_point  the first point where
137          * the shootline meets the object. Valid only if
138          * not NULL is returned.
139          * \param[out] intersection_normal the normal vector of
140          * the intersection, pointing outwards. Zero vector if
141          * the shootline starts in an active object.
142          * Valid only if not NULL is returned.
143          */
144         ClientActiveObject * getSelectedActiveObject(
145                 const core::line3d<f32> &shootline_on_map,
146                 v3f *intersection_point,
147                 v3s16 *intersection_normal
148         );
149
150         /*!
151          * Performs a raycast on the world.
152          * Returns the first thing the shootline meets.
153          *
154          * @param[in]  shootline         the shootline, starting from
155          * the camera position. This also gives the maximal distance
156          * of the search.
157          * @param[in]  liquids_pointable if false, liquids are ignored
158          * @param[in]  look_for_object   if false, objects are ignored
159          */
160         PointedThing getPointedThing(
161                 core::line3d<f32> shootline,
162                 bool liquids_pointable,
163                 bool look_for_object);
164
165         u16 attachement_parent_ids[USHRT_MAX + 1];
166
167         const std::list<std::string> &getPlayerNames() { return m_player_names; }
168         void addPlayerName(const std::string &name) { m_player_names.push_back(name); }
169         void removePlayerName(const std::string &name) { m_player_names.remove(name); }
170         void updateCameraOffset(v3s16 camera_offset)
171         { m_camera_offset = camera_offset; }
172         v3s16 getCameraOffset() const { return m_camera_offset; }
173 private:
174         ClientMap *m_map;
175         LocalPlayer *m_local_player;
176         scene::ISceneManager *m_smgr;
177         ITextureSource *m_texturesource;
178         Client *m_client;
179         IrrlichtDevice *m_irr;
180         UNORDERED_MAP<u16, ClientActiveObject*> m_active_objects;
181         std::vector<ClientSimpleObject*> m_simple_objects;
182         std::queue<ClientEnvEvent> m_client_event_queue;
183         IntervalLimiter m_active_object_light_update_interval;
184         IntervalLimiter m_lava_hurt_interval;
185         IntervalLimiter m_drowning_interval;
186         IntervalLimiter m_breathing_interval;
187         std::list<std::string> m_player_names;
188         v3s16 m_camera_offset;
189 };
190
191 #endif