Merge branch 'master' of https://github.com/erlehmann/minetest-delta.git into upstrea...
[oweals/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 #ifndef SERVER
24
25 #include "connection.h"
26 #include "environment.h"
27 #include "common_irrlicht.h"
28 #include "jmutex.h"
29 #include <ostream>
30 #include "clientobject.h"
31
32 class ClientNotReadyException : public BaseException
33 {
34 public:
35         ClientNotReadyException(const char *s):
36                 BaseException(s)
37         {}
38 };
39
40 struct QueuedMeshUpdate
41 {
42         v3s16 p;
43         MeshMakeData *data;
44         bool ack_block_to_server;
45
46         QueuedMeshUpdate():
47                 p(-1337,-1337,-1337),
48                 data(NULL),
49                 ack_block_to_server(false)
50         {
51         }
52         
53         ~QueuedMeshUpdate()
54         {
55                 if(data)
56                         delete data;
57         }
58 };
59
60 /*
61         A thread-safe queue of mesh update tasks
62 */
63 class MeshUpdateQueue
64 {
65 public:
66         MeshUpdateQueue()
67         {
68                 m_mutex.Init();
69         }
70
71         ~MeshUpdateQueue()
72         {
73                 JMutexAutoLock lock(m_mutex);
74
75                 core::list<QueuedMeshUpdate*>::Iterator i;
76                 for(i=m_queue.begin(); i!=m_queue.end(); i++)
77                 {
78                         QueuedMeshUpdate *q = *i;
79                         delete q;
80                 }
81         }
82         
83         /*
84                 peer_id=0 adds with nobody to send to
85         */
86         void addBlock(v3s16 p, MeshMakeData *data, bool ack_block_to_server)
87         {
88                 DSTACK(__FUNCTION_NAME);
89
90                 assert(data);
91         
92                 JMutexAutoLock lock(m_mutex);
93
94                 /*
95                         Find if block is already in queue.
96                         If it is, update the data and quit.
97                 */
98                 core::list<QueuedMeshUpdate*>::Iterator i;
99                 for(i=m_queue.begin(); i!=m_queue.end(); i++)
100                 {
101                         QueuedMeshUpdate *q = *i;
102                         if(q->p == p)
103                         {
104                                 if(q->data)
105                                         delete q->data;
106                                 q->data = data;
107                                 if(ack_block_to_server)
108                                         q->ack_block_to_server = true;
109                                 return;
110                         }
111                 }
112                 
113                 /*
114                         Add the block
115                 */
116                 QueuedMeshUpdate *q = new QueuedMeshUpdate;
117                 q->p = p;
118                 q->data = data;
119                 q->ack_block_to_server = ack_block_to_server;
120                 m_queue.push_back(q);
121         }
122
123         // Returned pointer must be deleted
124         // Returns NULL if queue is empty
125         QueuedMeshUpdate * pop()
126         {
127                 JMutexAutoLock lock(m_mutex);
128
129                 core::list<QueuedMeshUpdate*>::Iterator i = m_queue.begin();
130                 if(i == m_queue.end())
131                         return NULL;
132                 QueuedMeshUpdate *q = *i;
133                 m_queue.erase(i);
134                 return q;
135         }
136
137         u32 size()
138         {
139                 JMutexAutoLock lock(m_mutex);
140                 return m_queue.size();
141         }
142         
143 private:
144         core::list<QueuedMeshUpdate*> m_queue;
145         JMutex m_mutex;
146 };
147
148 struct MeshUpdateResult
149 {
150         v3s16 p;
151         scene::SMesh *mesh;
152         bool ack_block_to_server;
153
154         MeshUpdateResult():
155                 p(-1338,-1338,-1338),
156                 mesh(NULL),
157                 ack_block_to_server(false)
158         {
159         }
160 };
161
162 class MeshUpdateThread : public SimpleThread
163 {
164 public:
165
166         MeshUpdateThread()
167         {
168         }
169
170         void * Thread();
171
172         MeshUpdateQueue m_queue_in;
173
174         MutexedQueue<MeshUpdateResult> m_queue_out;
175 };
176
177 enum ClientEventType
178 {
179         CE_NONE,
180         CE_PLAYER_DAMAGE,
181         CE_PLAYER_FORCE_MOVE
182 };
183
184 struct ClientEvent
185 {
186         ClientEventType type;
187         union{
188                 struct{
189                 } none;
190                 struct{
191                         u8 amount;
192                 } player_damage;
193                 struct{
194                         f32 pitch;
195                         f32 yaw;
196                 } player_force_move;
197         };
198 };
199
200 class Client : public con::PeerHandler, public InventoryManager
201 {
202 public:
203         /*
204                 NOTE: Nothing is thread-safe here.
205         */
206
207         Client(
208                         IrrlichtDevice *device,
209                         const char *playername,
210                         std::string password,
211                         MapDrawControl &control
212                         );
213         
214         ~Client();
215         /*
216                 The name of the local player should already be set when
217                 calling this, as it is sent in the initialization.
218         */
219         void connect(Address address);
220         /*
221                 returns true when
222                         m_con.Connected() == true
223                         AND m_server_ser_ver != SER_FMT_VER_INVALID
224                 throws con::PeerNotFoundException if connection has been deleted,
225                 eg. timed out.
226         */
227         bool connectedAndInitialized();
228         /*
229                 Stuff that references the environment is valid only as
230                 long as this is not called. (eg. Players)
231                 If this throws a PeerNotFoundException, the connection has
232                 timed out.
233         */
234         void step(float dtime);
235
236         // Called from updater thread
237         // Returns dtime
238         //float asyncStep();
239
240         void ProcessData(u8 *data, u32 datasize, u16 sender_peer_id);
241         // Returns true if something was received
242         bool AsyncProcessPacket();
243         bool AsyncProcessData();
244         void Send(u16 channelnum, SharedBuffer<u8> data, bool reliable);
245
246         // Pops out a packet from the packet queue
247         //IncomingPacket getPacket();
248
249         void groundAction(u8 action, v3s16 nodepos_undersurface,
250                         v3s16 nodepos_oversurface, u16 item);
251         void clickObject(u8 button, v3s16 blockpos, s16 id, u16 item);
252         void clickActiveObject(u8 button, u16 id, u16 item);
253
254         void sendSignText(v3s16 blockpos, s16 id, std::string text);
255         void sendSignNodeText(v3s16 p, std::string text);
256         void sendInventoryAction(InventoryAction *a);
257         void sendChatMessage(const std::wstring &message);
258         void sendChangePassword(const std::wstring oldpassword,
259                 const std::wstring newpassword);
260         void sendDamage(u8 damage);
261         
262         // locks envlock
263         void removeNode(v3s16 p);
264         // locks envlock
265         void addNode(v3s16 p, MapNode n);
266         
267         void updateCamera(v3f pos, v3f dir);
268         
269         // Returns InvalidPositionException if not found
270         MapNode getNode(v3s16 p);
271         // Wrapper to Map
272         NodeMetadata* getNodeMetadata(v3s16 p);
273
274         v3f getPlayerPosition();
275
276         void setPlayerControl(PlayerControl &control);
277         
278         // Returns true if the inventory of the local player has been
279         // updated from the server. If it is true, it is set to false.
280         bool getLocalInventoryUpdated();
281         // Copies the inventory of the local player to parameter
282         void getLocalInventory(Inventory &dst);
283         
284         InventoryContext *getInventoryContext();
285
286         Inventory* getInventory(InventoryContext *c, std::string id);
287         void inventoryAction(InventoryAction *a);
288
289         // Gets closest object pointed by the shootline
290         // Returns NULL if not found
291         MapBlockObject * getSelectedObject(
292                         f32 max_d,
293                         v3f from_pos_f_on_map,
294                         core::line3d<f32> shootline_on_map
295         );
296
297         // Gets closest object pointed by the shootline
298         // Returns NULL if not found
299         ClientActiveObject * getSelectedActiveObject(
300                         f32 max_d,
301                         v3f from_pos_f_on_map,
302                         core::line3d<f32> shootline_on_map
303         );
304
305         // Prints a line or two of info
306         void printDebugInfo(std::ostream &os);
307
308         u32 getDayNightRatio();
309
310         u16 getHP();
311
312         //void updateSomeExpiredMeshes();
313         
314         void setTempMod(v3s16 p, NodeMod mod)
315         {
316                 //JMutexAutoLock envlock(m_env_mutex); //bulk comment-out
317                 assert(m_env.getMap().mapType() == MAPTYPE_CLIENT);
318
319                 core::map<v3s16, MapBlock*> affected_blocks;
320                 ((ClientMap&)m_env.getMap()).setTempMod(p, mod,
321                                 &affected_blocks);
322
323                 for(core::map<v3s16, MapBlock*>::Iterator
324                                 i = affected_blocks.getIterator();
325                                 i.atEnd() == false; i++)
326                 {
327                         i.getNode()->getValue()->updateMesh(m_env.getDayNightRatio());
328                 }
329         }
330         void clearTempMod(v3s16 p)
331         {
332                 //JMutexAutoLock envlock(m_env_mutex); //bulk comment-out
333                 assert(m_env.getMap().mapType() == MAPTYPE_CLIENT);
334
335                 core::map<v3s16, MapBlock*> affected_blocks;
336                 ((ClientMap&)m_env.getMap()).clearTempMod(p,
337                                 &affected_blocks);
338
339                 for(core::map<v3s16, MapBlock*>::Iterator
340                                 i = affected_blocks.getIterator();
341                                 i.atEnd() == false; i++)
342                 {
343                         i.getNode()->getValue()->updateMesh(m_env.getDayNightRatio());
344                 }
345         }
346
347         float getAvgRtt()
348         {
349                 //JMutexAutoLock lock(m_con_mutex); //bulk comment-out
350                 con::Peer *peer = m_con.GetPeerNoEx(PEER_ID_SERVER);
351                 if(peer == NULL)
352                         return 0.0;
353                 return peer->avg_rtt;
354         }
355
356         bool getChatMessage(std::wstring &message)
357         {
358                 if(m_chat_queue.size() == 0)
359                         return false;
360                 message = m_chat_queue.pop_front();
361                 return true;
362         }
363
364         void addChatMessage(const std::wstring &message)
365         {
366                 //JMutexAutoLock envlock(m_env_mutex); //bulk comment-out
367                 LocalPlayer *player = m_env.getLocalPlayer();
368                 assert(player != NULL);
369                 std::wstring name = narrow_to_wide(player->getName());
370                 m_chat_queue.push_back(
371                                 (std::wstring)L"<"+name+L"> "+message);
372         }
373
374         u64 getMapSeed(){ return m_map_seed; }
375
376         void addUpdateMeshTask(v3s16 blockpos, bool ack_to_server=false);
377         // Including blocks at appropriate edges
378         void addUpdateMeshTaskWithEdge(v3s16 blockpos, bool ack_to_server=false);
379
380         // Get event from queue. CE_NONE is returned if queue is empty.
381         ClientEvent getClientEvent();
382         
383         inline bool accessDenied()
384         {
385                 return m_access_denied;
386         }
387
388         inline std::wstring accessDeniedReason()
389         {
390                 return m_access_denied_reason;
391         }
392
393 private:
394         
395         // Virtual methods from con::PeerHandler
396         void peerAdded(con::Peer *peer);
397         void deletingPeer(con::Peer *peer, bool timeout);
398         
399         void ReceiveAll();
400         void Receive();
401         
402         void sendPlayerPos();
403         // This sends the player's current name etc to the server
404         void sendPlayerInfo();
405         
406         float m_packetcounter_timer;
407         float m_delete_unused_sectors_timer;
408         float m_connection_reinit_timer;
409         float m_avg_rtt_timer;
410         float m_playerpos_send_timer;
411         float m_ignore_damage_timer; // Used after server moves player
412
413         MeshUpdateThread m_mesh_update_thread;
414         
415         ClientEnvironment m_env;
416         
417         con::Connection m_con;
418
419         IrrlichtDevice *m_device;
420
421         v3f camera_position;
422         v3f camera_direction;
423         
424         // Server serialization version
425         u8 m_server_ser_ver;
426
427         // This is behind m_env_mutex.
428         bool m_inventory_updated;
429
430         core::map<v3s16, bool> m_active_blocks;
431
432         PacketCounter m_packetcounter;
433         
434         // Received from the server. 0-23999
435         u32 m_time_of_day;
436         
437         // 0 <= m_daynight_i < DAYNIGHT_CACHE_COUNT
438         //s32 m_daynight_i;
439         //u32 m_daynight_ratio;
440
441         Queue<std::wstring> m_chat_queue;
442         
443         // The seed returned by the server in TOCLIENT_INIT is stored here
444         u64 m_map_seed;
445         
446         std::string m_password;
447         bool m_access_denied;
448         std::wstring m_access_denied_reason;
449
450         InventoryContext m_inventory_context;
451
452         Queue<ClientEvent> m_client_event_queue;
453
454         friend class FarMesh;
455 };
456
457 #endif // !SERVER
458
459 #endif // !CLIENT_HEADER
460