]> git.lizzy.rs Git - minetest.git/blob - src/client.h
Add EnvRef:find_node_near(pos, radius, nodenames)
[minetest.git] / src / client.h
1 /*
2 Minetest-c55
3 Copyright (C) 2010 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 General Public License as published by
7 the Free Software Foundation; either version 2 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 General Public License for more details.
14
15 You should have received a copy of the GNU 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_HEADER
21 #define CLIENT_HEADER
22
23 #include "connection.h"
24 #include "environment.h"
25 #include "common_irrlicht.h"
26 #include "jmutex.h"
27 #include <ostream>
28 #include <set>
29 #include <vector>
30 #include "clientobject.h"
31 #include "utility.h" // For IntervalLimiter
32 #include "gamedef.h"
33 #include "inventorymanager.h"
34 #include "filesys.h"
35 #include "filecache.h"
36 #include "localplayer.h"
37
38 struct MeshMakeData;
39 class MapBlockMesh;
40 class IGameDef;
41 class IWritableTextureSource;
42 class IWritableItemDefManager;
43 class IWritableNodeDefManager;
44 //class IWritableCraftDefManager;
45 class ClientEnvironment;
46 struct MapDrawControl;
47 class MtEventManager;
48
49 class ClientNotReadyException : public BaseException
50 {
51 public:
52         ClientNotReadyException(const char *s):
53                 BaseException(s)
54         {}
55 };
56
57 struct QueuedMeshUpdate
58 {
59         v3s16 p;
60         MeshMakeData *data;
61         bool ack_block_to_server;
62
63         QueuedMeshUpdate();
64         ~QueuedMeshUpdate();
65 };
66
67 /*
68         A thread-safe queue of mesh update tasks
69 */
70 class MeshUpdateQueue
71 {
72 public:
73         MeshUpdateQueue();
74
75         ~MeshUpdateQueue();
76         
77         /*
78                 peer_id=0 adds with nobody to send to
79         */
80         void addBlock(v3s16 p, MeshMakeData *data,
81                         bool ack_block_to_server, bool urgent);
82
83         // Returned pointer must be deleted
84         // Returns NULL if queue is empty
85         QueuedMeshUpdate * pop();
86
87         u32 size()
88         {
89                 JMutexAutoLock lock(m_mutex);
90                 return m_queue.size();
91         }
92         
93 private:
94         std::vector<QueuedMeshUpdate*> m_queue;
95         std::set<v3s16> m_urgents;
96         JMutex m_mutex;
97 };
98
99 struct MeshUpdateResult
100 {
101         v3s16 p;
102         MapBlockMesh *mesh;
103         bool ack_block_to_server;
104
105         MeshUpdateResult():
106                 p(-1338,-1338,-1338),
107                 mesh(NULL),
108                 ack_block_to_server(false)
109         {
110         }
111 };
112
113 class MeshUpdateThread : public SimpleThread
114 {
115 public:
116
117         MeshUpdateThread(IGameDef *gamedef):
118                 m_gamedef(gamedef)
119         {
120         }
121
122         void * Thread();
123
124         MeshUpdateQueue m_queue_in;
125
126         MutexedQueue<MeshUpdateResult> m_queue_out;
127
128         IGameDef *m_gamedef;
129 };
130
131 enum ClientEventType
132 {
133         CE_NONE,
134         CE_PLAYER_DAMAGE,
135         CE_PLAYER_FORCE_MOVE,
136         CE_DEATHSCREEN,
137         CE_TEXTURES_UPDATED
138 };
139
140 struct ClientEvent
141 {
142         ClientEventType type;
143         union{
144                 struct{
145                 } none;
146                 struct{
147                         u8 amount;
148                 } player_damage;
149                 struct{
150                         f32 pitch;
151                         f32 yaw;
152                 } player_force_move;
153                 struct{
154                         bool set_camera_point_target;
155                         f32 camera_point_target_x;
156                         f32 camera_point_target_y;
157                         f32 camera_point_target_z;
158                 } deathscreen;
159                 struct{
160                 } textures_updated;
161         };
162 };
163
164 class Client : public con::PeerHandler, public InventoryManager, public IGameDef
165 {
166 public:
167         /*
168                 NOTE: Nothing is thread-safe here.
169         */
170
171         Client(
172                         IrrlichtDevice *device,
173                         const char *playername,
174                         std::string password,
175                         MapDrawControl &control,
176                         IWritableTextureSource *tsrc,
177                         IWritableItemDefManager *itemdef,
178                         IWritableNodeDefManager *nodedef,
179                         ISoundManager *sound,
180                         MtEventManager *event
181         );
182         
183         ~Client();
184         /*
185                 The name of the local player should already be set when
186                 calling this, as it is sent in the initialization.
187         */
188         void connect(Address address);
189         /*
190                 returns true when
191                         m_con.Connected() == true
192                         AND m_server_ser_ver != SER_FMT_VER_INVALID
193                 throws con::PeerNotFoundException if connection has been deleted,
194                 eg. timed out.
195         */
196         bool connectedAndInitialized();
197         /*
198                 Stuff that references the environment is valid only as
199                 long as this is not called. (eg. Players)
200                 If this throws a PeerNotFoundException, the connection has
201                 timed out.
202         */
203         void step(float dtime);
204
205         void ProcessData(u8 *data, u32 datasize, u16 sender_peer_id);
206         // Returns true if something was received
207         bool AsyncProcessPacket();
208         bool AsyncProcessData();
209         void Send(u16 channelnum, SharedBuffer<u8> data, bool reliable);
210
211         void interact(u8 action, const PointedThing& pointed);
212
213         void sendSignNodeText(v3s16 p, std::string text);
214         void sendInventoryAction(InventoryAction *a);
215         void sendChatMessage(const std::wstring &message);
216         void sendChangePassword(const std::wstring oldpassword,
217                 const std::wstring newpassword);
218         void sendDamage(u8 damage);
219         void sendRespawn();
220
221         ClientEnvironment& getEnv()
222         { return m_env; }
223         
224         // Causes urgent mesh updates (unlike Map::add/removeNodeWithEvent)
225         void removeNode(v3s16 p);
226         void addNode(v3s16 p, MapNode n);
227         
228         void setPlayerControl(PlayerControl &control);
229
230         void selectPlayerItem(u16 item);
231         u16 getPlayerItem() const
232         { return m_playeritem; }
233
234         // Returns true if the inventory of the local player has been
235         // updated from the server. If it is true, it is set to false.
236         bool getLocalInventoryUpdated();
237         // Copies the inventory of the local player to parameter
238         void getLocalInventory(Inventory &dst);
239         
240         /* InventoryManager interface */
241         Inventory* getInventory(const InventoryLocation &loc);
242         void inventoryAction(InventoryAction *a);
243
244         // Gets closest object pointed by the shootline
245         // Returns NULL if not found
246         ClientActiveObject * getSelectedActiveObject(
247                         f32 max_d,
248                         v3f from_pos_f_on_map,
249                         core::line3d<f32> shootline_on_map
250         );
251
252         // Prints a line or two of info
253         void printDebugInfo(std::ostream &os);
254
255         core::list<std::wstring> getConnectedPlayerNames();
256
257         float getAnimationTime();
258
259         int getCrackLevel();
260         void setCrack(int level, v3s16 pos);
261
262         u16 getHP();
263
264         bool checkPrivilege(const std::string &priv)
265         { return (m_privileges.count(priv) != 0); }
266
267         bool getChatMessage(std::wstring &message);
268         void typeChatMessage(const std::wstring& message);
269
270         u64 getMapSeed(){ return m_map_seed; }
271
272         void addUpdateMeshTask(v3s16 blockpos, bool ack_to_server=false, bool urgent=false);
273         // Including blocks at appropriate edges
274         void addUpdateMeshTaskWithEdge(v3s16 blockpos, bool ack_to_server=false, bool urgent=false);
275         void addUpdateMeshTaskForNode(v3s16 nodepos, bool ack_to_server=false, bool urgent=false);
276
277         // Get event from queue. CE_NONE is returned if queue is empty.
278         ClientEvent getClientEvent();
279         
280         bool accessDenied()
281         { return m_access_denied; }
282
283         std::wstring accessDeniedReason()
284         { return m_access_denied_reason; }
285
286         float mediaReceiveProgress()
287         { return m_media_receive_progress; }
288
289         bool texturesReceived()
290         { return m_media_received; }
291         bool itemdefReceived()
292         { return m_itemdef_received; }
293         bool nodedefReceived()
294         { return m_nodedef_received; }
295         
296         void afterContentReceived();
297
298         float getRTT(void);
299
300         // IGameDef interface
301         virtual IItemDefManager* getItemDefManager();
302         virtual INodeDefManager* getNodeDefManager();
303         virtual ICraftDefManager* getCraftDefManager();
304         virtual ITextureSource* getTextureSource();
305         virtual u16 allocateUnknownNodeId(const std::string &name);
306         virtual ISoundManager* getSoundManager();
307         virtual MtEventManager* getEventManager();
308         virtual bool checkLocalPrivilege(const std::string &priv)
309         { return checkPrivilege(priv); }
310
311 private:
312         
313         // Insert a media file appropriately into the appropriate manager
314         bool loadMedia(const std::string &data, const std::string &filename);
315         
316         // Virtual methods from con::PeerHandler
317         void peerAdded(con::Peer *peer);
318         void deletingPeer(con::Peer *peer, bool timeout);
319         
320         void ReceiveAll();
321         void Receive();
322         
323         void sendPlayerPos();
324         // This sends the player's current name etc to the server
325         void sendPlayerInfo();
326         // Send the item number 'item' as player item to the server
327         void sendPlayerItem(u16 item);
328         
329         float m_packetcounter_timer;
330         float m_connection_reinit_timer;
331         float m_avg_rtt_timer;
332         float m_playerpos_send_timer;
333         float m_ignore_damage_timer; // Used after server moves player
334         IntervalLimiter m_map_timer_and_unload_interval;
335
336         IWritableTextureSource *m_tsrc;
337         IWritableItemDefManager *m_itemdef;
338         IWritableNodeDefManager *m_nodedef;
339         ISoundManager *m_sound;
340         MtEventManager *m_event;
341
342         MeshUpdateThread m_mesh_update_thread;
343         ClientEnvironment m_env;
344         con::Connection m_con;
345         IrrlichtDevice *m_device;
346         // Server serialization version
347         u8 m_server_ser_ver;
348         u16 m_playeritem;
349         bool m_inventory_updated;
350         Inventory *m_inventory_from_server;
351         float m_inventory_from_server_age;
352         core::map<v3s16, bool> m_active_blocks;
353         PacketCounter m_packetcounter;
354         // Block mesh animation parameters
355         float m_animation_time;
356         int m_crack_level;
357         v3s16 m_crack_pos;
358         // 0 <= m_daynight_i < DAYNIGHT_CACHE_COUNT
359         //s32 m_daynight_i;
360         //u32 m_daynight_ratio;
361         Queue<std::wstring> m_chat_queue;
362         // The seed returned by the server in TOCLIENT_INIT is stored here
363         u64 m_map_seed;
364         std::string m_password;
365         bool m_access_denied;
366         std::wstring m_access_denied_reason;
367         Queue<ClientEvent> m_client_event_queue;
368         FileCache m_media_cache;
369         // Mapping from media file name to SHA1 checksum
370         core::map<std::string, std::string> m_media_name_sha1_map;
371         float m_media_receive_progress;
372         bool m_media_received;
373         bool m_itemdef_received;
374         bool m_nodedef_received;
375         friend class FarMesh;
376
377         // time_of_day speed approximation for old protocol
378         bool m_time_of_day_set;
379         float m_last_time_of_day_f;
380         float m_time_of_day_update_timer;
381
382         // Sounds
383         float m_removed_sounds_check_timer;
384         // Mapping from server sound ids to our sound ids
385         std::map<s32, int> m_sounds_server_to_client;
386         // And the other way!
387         std::map<int, s32> m_sounds_client_to_server;
388         // And relations to objects
389         std::map<int, u16> m_sounds_to_objects;
390
391         // Privileges
392         std::set<std::string> m_privileges;
393 };
394
395 #endif // !CLIENT_HEADER
396