Improved faces shading with and without shaders.
[oweals/minetest.git] / src / game.cpp
1 /*
2 Minetest
3 Copyright (C) 2010-2013 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 #include "game.h"
21 #include "irrlichttypes_extrabloated.h"
22 #include <IGUICheckBox.h>
23 #include <IGUIEditBox.h>
24 #include <IGUIButton.h>
25 #include <IGUIStaticText.h>
26 #include <IGUIFont.h>
27 #include <IMaterialRendererServices.h>
28 #include "IMeshCache.h"
29 #include "client.h"
30 #include "server.h"
31 #include "guiPasswordChange.h"
32 #include "guiVolumeChange.h"
33 #include "guiFormSpecMenu.h"
34 #include "guiTextInputMenu.h"
35 #include "tool.h"
36 #include "guiChatConsole.h"
37 #include "config.h"
38 #include "version.h"
39 #include "clouds.h"
40 #include "particles.h"
41 #include "camera.h"
42 #include "mapblock.h"
43 #include "settings.h"
44 #include "profiler.h"
45 #include "mainmenumanager.h"
46 #include "gettext.h"
47 #include "log.h"
48 #include "filesys.h"
49 // Needed for determining pointing to nodes
50 #include "nodedef.h"
51 #include "nodemetadata.h"
52 #include "main.h" // For g_settings
53 #include "itemdef.h"
54 #include "tile.h" // For TextureSource
55 #include "shader.h" // For ShaderSource
56 #include "logoutputbuffer.h"
57 #include "subgame.h"
58 #include "quicktune_shortcutter.h"
59 #include "clientmap.h"
60 #include "hud.h"
61 #include "sky.h"
62 #include "sound.h"
63 #if USE_SOUND
64         #include "sound_openal.h"
65 #endif
66 #include "event_manager.h"
67 #include <iomanip>
68 #include <list>
69 #include "util/directiontables.h"
70 #include "util/pointedthing.h"
71 #include "drawscene.h"
72 #include "content_cao.h"
73
74 /*
75         Text input system
76 */
77
78 struct TextDestNodeMetadata : public TextDest
79 {
80         TextDestNodeMetadata(v3s16 p, Client *client)
81         {
82                 m_p = p;
83                 m_client = client;
84         }
85         // This is deprecated I guess? -celeron55
86         void gotText(std::wstring text)
87         {
88                 std::string ntext = wide_to_narrow(text);
89                 infostream<<"Submitting 'text' field of node at ("<<m_p.X<<","
90                                 <<m_p.Y<<","<<m_p.Z<<"): "<<ntext<<std::endl;
91                 std::map<std::string, std::string> fields;
92                 fields["text"] = ntext;
93                 m_client->sendNodemetaFields(m_p, "", fields);
94         }
95         void gotText(std::map<std::string, std::string> fields)
96         {
97                 m_client->sendNodemetaFields(m_p, "", fields);
98         }
99
100         v3s16 m_p;
101         Client *m_client;
102 };
103
104 struct TextDestPlayerInventory : public TextDest
105 {
106         TextDestPlayerInventory(Client *client)
107         {
108                 m_client = client;
109                 m_formname = "";
110         }
111         TextDestPlayerInventory(Client *client, std::string formname)
112         {
113                 m_client = client;
114                 m_formname = formname;
115         }
116         void gotText(std::map<std::string, std::string> fields)
117         {
118                 m_client->sendInventoryFields(m_formname, fields);
119         }
120
121         Client *m_client;
122 };
123
124 struct LocalFormspecHandler : public TextDest
125 {
126         LocalFormspecHandler();
127         LocalFormspecHandler(std::string formname) :
128                 m_client(0)
129         {
130                 m_formname = formname;
131         }
132
133         LocalFormspecHandler(std::string formname, Client *client) :
134                 m_client(client)
135         {
136                 m_formname = formname;
137         }
138
139         void gotText(std::wstring message) {
140                 errorstream << "LocalFormspecHandler::gotText old style message received" << std::endl;
141         }
142
143         void gotText(std::map<std::string, std::string> fields)
144         {
145                 if (m_formname == "MT_PAUSE_MENU") {
146                         if (fields.find("btn_sound") != fields.end()) {
147                                 g_gamecallback->changeVolume();
148                                 return;
149                         }
150
151                         if (fields.find("btn_exit_menu") != fields.end()) {
152                                 g_gamecallback->disconnect();
153                                 return;
154                         }
155
156                         if (fields.find("btn_exit_os") != fields.end()) {
157                                 g_gamecallback->exitToOS();
158                                 return;
159                         }
160
161                         if (fields.find("btn_change_password") != fields.end()) {
162                                 g_gamecallback->changePassword();
163                                 return;
164                         }
165
166                         if (fields.find("quit") != fields.end()) {
167                                 return;
168                         }
169
170                         if (fields.find("btn_continue") != fields.end()) {
171                                 return;
172                         }
173                 }
174                 if (m_formname == "MT_CHAT_MENU") {
175                         assert(m_client != 0);
176                         if ((fields.find("btn_send") != fields.end()) ||
177                                         (fields.find("quit") != fields.end())) {
178                                 if (fields.find("f_text") != fields.end()) {
179                                         m_client->typeChatMessage(narrow_to_wide(fields["f_text"]));
180                                 }
181                                 return;
182                         }
183                 }
184
185                 if (m_formname == "MT_DEATH_SCREEN") {
186                         assert(m_client != 0);
187                         if ((fields.find("btn_respawn") != fields.end())) {
188                                 m_client->sendRespawn();
189                                 return;
190                         }
191
192                         if (fields.find("quit") != fields.end()) {
193                                 m_client->sendRespawn();
194                                 return;
195                         }
196                 }
197
198                 // don't show error message for unhandled cursor keys
199                 if ( (fields.find("key_up") != fields.end()) ||
200                         (fields.find("key_down") != fields.end()) ||
201                         (fields.find("key_left") != fields.end()) ||
202                         (fields.find("key_right") != fields.end())) {
203                         return;
204                 }
205
206                 errorstream << "LocalFormspecHandler::gotText unhandled >" << m_formname << "< event" << std::endl;
207                 int i = 0;
208                 for (std::map<std::string,std::string>::iterator iter = fields.begin();
209                                 iter != fields.end(); iter++) {
210                         errorstream << "\t"<< i << ": " << iter->first << "=" << iter->second << std::endl;
211                         i++;
212                 }
213         }
214
215         Client *m_client;
216 };
217
218 /* Form update callback */
219
220 class NodeMetadataFormSource: public IFormSource
221 {
222 public:
223         NodeMetadataFormSource(ClientMap *map, v3s16 p):
224                 m_map(map),
225                 m_p(p)
226         {
227         }
228         std::string getForm()
229         {
230                 NodeMetadata *meta = m_map->getNodeMetadata(m_p);
231                 if(!meta)
232                         return "";
233                 return meta->getString("formspec");
234         }
235         std::string resolveText(std::string str)
236         {
237                 NodeMetadata *meta = m_map->getNodeMetadata(m_p);
238                 if(!meta)
239                         return str;
240                 return meta->resolveString(str);
241         }
242
243         ClientMap *m_map;
244         v3s16 m_p;
245 };
246
247 class PlayerInventoryFormSource: public IFormSource
248 {
249 public:
250         PlayerInventoryFormSource(Client *client):
251                 m_client(client)
252         {
253         }
254         std::string getForm()
255         {
256                 LocalPlayer* player = m_client->getEnv().getLocalPlayer();
257                 return player->inventory_formspec;
258         }
259
260         Client *m_client;
261 };
262
263 /*
264         Check if a node is pointable
265 */
266 inline bool isPointableNode(const MapNode& n,
267                 Client *client, bool liquids_pointable)
268 {
269         const ContentFeatures &features = client->getNodeDefManager()->get(n);
270         return features.pointable ||
271                 (liquids_pointable && features.isLiquid());
272 }
273
274 /*
275         Find what the player is pointing at
276 */
277 PointedThing getPointedThing(Client *client, v3f player_position,
278                 v3f camera_direction, v3f camera_position, core::line3d<f32> shootline,
279                 f32 d, bool liquids_pointable, bool look_for_object, v3s16 camera_offset,
280                 std::vector<aabb3f> &hilightboxes, ClientActiveObject *&selected_object)
281 {
282         PointedThing result;
283
284         hilightboxes.clear();
285         selected_object = NULL;
286
287         INodeDefManager *nodedef = client->getNodeDefManager();
288         ClientMap &map = client->getEnv().getClientMap();
289
290         f32 mindistance = BS * 1001;
291
292         // First try to find a pointed at active object
293         if(look_for_object)
294         {
295                 selected_object = client->getSelectedActiveObject(d*BS,
296                                 camera_position, shootline);
297
298                 if(selected_object != NULL)
299                 {
300                         if(selected_object->doShowSelectionBox())
301                         {
302                                 aabb3f *selection_box = selected_object->getSelectionBox();
303                                 // Box should exist because object was
304                                 // returned in the first place
305                                 assert(selection_box);
306
307                                 v3f pos = selected_object->getPosition();
308                                 hilightboxes.push_back(aabb3f(
309                                                 selection_box->MinEdge + pos - intToFloat(camera_offset, BS),
310                                                 selection_box->MaxEdge + pos - intToFloat(camera_offset, BS)));
311                         }
312
313                         mindistance = (selected_object->getPosition() - camera_position).getLength();
314
315                         result.type = POINTEDTHING_OBJECT;
316                         result.object_id = selected_object->getId();
317                 }
318         }
319
320         // That didn't work, try to find a pointed at node
321
322
323         v3s16 pos_i = floatToInt(player_position, BS);
324
325         /*infostream<<"pos_i=("<<pos_i.X<<","<<pos_i.Y<<","<<pos_i.Z<<")"
326                         <<std::endl;*/
327
328         s16 a = d;
329         s16 ystart = pos_i.Y + 0 - (camera_direction.Y<0 ? a : 1);
330         s16 zstart = pos_i.Z - (camera_direction.Z<0 ? a : 1);
331         s16 xstart = pos_i.X - (camera_direction.X<0 ? a : 1);
332         s16 yend = pos_i.Y + 1 + (camera_direction.Y>0 ? a : 1);
333         s16 zend = pos_i.Z + (camera_direction.Z>0 ? a : 1);
334         s16 xend = pos_i.X + (camera_direction.X>0 ? a : 1);
335
336         // Prevent signed number overflow
337         if(yend==32767)
338                 yend=32766;
339         if(zend==32767)
340                 zend=32766;
341         if(xend==32767)
342                 xend=32766;
343
344         for(s16 y = ystart; y <= yend; y++)
345         for(s16 z = zstart; z <= zend; z++)
346         for(s16 x = xstart; x <= xend; x++)
347         {
348                 MapNode n;
349                 try
350                 {
351                         n = map.getNode(v3s16(x,y,z));
352                 }
353                 catch(InvalidPositionException &e)
354                 {
355                         continue;
356                 }
357                 if(!isPointableNode(n, client, liquids_pointable))
358                         continue;
359
360                 std::vector<aabb3f> boxes = n.getSelectionBoxes(nodedef);
361
362                 v3s16 np(x,y,z);
363                 v3f npf = intToFloat(np, BS);
364
365                 for(std::vector<aabb3f>::const_iterator
366                                 i = boxes.begin();
367                                 i != boxes.end(); i++)
368                 {
369                         aabb3f box = *i;
370                         box.MinEdge += npf;
371                         box.MaxEdge += npf;
372
373                         for(u16 j=0; j<6; j++)
374                         {
375                                 v3s16 facedir = g_6dirs[j];
376                                 aabb3f facebox = box;
377
378                                 f32 d = 0.001*BS;
379                                 if(facedir.X > 0)
380                                         facebox.MinEdge.X = facebox.MaxEdge.X-d;
381                                 else if(facedir.X < 0)
382                                         facebox.MaxEdge.X = facebox.MinEdge.X+d;
383                                 else if(facedir.Y > 0)
384                                         facebox.MinEdge.Y = facebox.MaxEdge.Y-d;
385                                 else if(facedir.Y < 0)
386                                         facebox.MaxEdge.Y = facebox.MinEdge.Y+d;
387                                 else if(facedir.Z > 0)
388                                         facebox.MinEdge.Z = facebox.MaxEdge.Z-d;
389                                 else if(facedir.Z < 0)
390                                         facebox.MaxEdge.Z = facebox.MinEdge.Z+d;
391
392                                 v3f centerpoint = facebox.getCenter();
393                                 f32 distance = (centerpoint - camera_position).getLength();
394                                 if(distance >= mindistance)
395                                         continue;
396                                 if(!facebox.intersectsWithLine(shootline))
397                                         continue;
398
399                                 v3s16 np_above = np + facedir;
400
401                                 result.type = POINTEDTHING_NODE;
402                                 result.node_undersurface = np;
403                                 result.node_abovesurface = np_above;
404                                 mindistance = distance;
405
406                                 hilightboxes.clear();
407                                 for(std::vector<aabb3f>::const_iterator
408                                                 i2 = boxes.begin();
409                                                 i2 != boxes.end(); i2++)
410                                 {
411                                         aabb3f box = *i2;
412                                         box.MinEdge += npf + v3f(-d,-d,-d) - intToFloat(camera_offset, BS);
413                                         box.MaxEdge += npf + v3f(d,d,d) - intToFloat(camera_offset, BS);
414                                         hilightboxes.push_back(box);
415                                 }
416                         }
417                 }
418         } // for coords
419
420         return result;
421 }
422
423 /* Profiler display */
424
425 void update_profiler_gui(gui::IGUIStaticText *guitext_profiler,
426                 gui::IGUIFont *font, u32 text_height, u32 show_profiler,
427                 u32 show_profiler_max)
428 {
429         if(show_profiler == 0)
430         {
431                 guitext_profiler->setVisible(false);
432         }
433         else
434         {
435
436                 std::ostringstream os(std::ios_base::binary);
437                 g_profiler->printPage(os, show_profiler, show_profiler_max);
438                 std::wstring text = narrow_to_wide(os.str());
439                 guitext_profiler->setText(text.c_str());
440                 guitext_profiler->setVisible(true);
441
442                 s32 w = font->getDimension(text.c_str()).Width;
443                 if(w < 400)
444                         w = 400;
445                 core::rect<s32> rect(6, 4+(text_height+5)*2, 12+w,
446                                 8+(text_height+5)*2 +
447                                 font->getDimension(text.c_str()).Height);
448                 guitext_profiler->setRelativePosition(rect);
449                 guitext_profiler->setVisible(true);
450         }
451 }
452
453 class ProfilerGraph
454 {
455 private:
456         struct Piece{
457                 Profiler::GraphValues values;
458         };
459         struct Meta{
460                 float min;
461                 float max;
462                 video::SColor color;
463                 Meta(float initial=0, video::SColor color=
464                                 video::SColor(255,255,255,255)):
465                         min(initial),
466                         max(initial),
467                         color(color)
468                 {}
469         };
470         std::list<Piece> m_log;
471 public:
472         u32 m_log_max_size;
473
474         ProfilerGraph():
475                 m_log_max_size(200)
476         {}
477
478         void put(const Profiler::GraphValues &values)
479         {
480                 Piece piece;
481                 piece.values = values;
482                 m_log.push_back(piece);
483                 while(m_log.size() > m_log_max_size)
484                         m_log.erase(m_log.begin());
485         }
486
487         void draw(s32 x_left, s32 y_bottom, video::IVideoDriver *driver,
488                         gui::IGUIFont* font) const
489         {
490                 std::map<std::string, Meta> m_meta;
491                 for(std::list<Piece>::const_iterator k = m_log.begin();
492                                 k != m_log.end(); k++)
493                 {
494                         const Piece &piece = *k;
495                         for(Profiler::GraphValues::const_iterator i = piece.values.begin();
496                                         i != piece.values.end(); i++){
497                                 const std::string &id = i->first;
498                                 const float &value = i->second;
499                                 std::map<std::string, Meta>::iterator j =
500                                                 m_meta.find(id);
501                                 if(j == m_meta.end()){
502                                         m_meta[id] = Meta(value);
503                                         continue;
504                                 }
505                                 if(value < j->second.min)
506                                         j->second.min = value;
507                                 if(value > j->second.max)
508                                         j->second.max = value;
509                         }
510                 }
511
512                 // Assign colors
513                 static const video::SColor usable_colors[] = {
514                         video::SColor(255,255,100,100),
515                         video::SColor(255,90,225,90),
516                         video::SColor(255,100,100,255),
517                         video::SColor(255,255,150,50),
518                         video::SColor(255,220,220,100)
519                 };
520                 static const u32 usable_colors_count =
521                                 sizeof(usable_colors) / sizeof(*usable_colors);
522                 u32 next_color_i = 0;
523                 for(std::map<std::string, Meta>::iterator i = m_meta.begin();
524                                 i != m_meta.end(); i++){
525                         Meta &meta = i->second;
526                         video::SColor color(255,200,200,200);
527                         if(next_color_i < usable_colors_count)
528                                 color = usable_colors[next_color_i++];
529                         meta.color = color;
530                 }
531
532                 s32 graphh = 50;
533                 s32 textx = x_left + m_log_max_size + 15;
534                 s32 textx2 = textx + 200 - 15;
535
536                 // Draw background
537                 /*{
538                         u32 num_graphs = m_meta.size();
539                         core::rect<s32> rect(x_left, y_bottom - num_graphs*graphh,
540                                         textx2, y_bottom);
541                         video::SColor bgcolor(120,0,0,0);
542                         driver->draw2DRectangle(bgcolor, rect, NULL);
543                 }*/
544
545                 s32 meta_i = 0;
546                 for(std::map<std::string, Meta>::const_iterator i = m_meta.begin();
547                                 i != m_meta.end(); i++){
548                         const std::string &id = i->first;
549                         const Meta &meta = i->second;
550                         s32 x = x_left;
551                         s32 y = y_bottom - meta_i * 50;
552                         float show_min = meta.min;
553                         float show_max = meta.max;
554                         if(show_min >= -0.0001 && show_max >= -0.0001){
555                                 if(show_min <= show_max * 0.5)
556                                         show_min = 0;
557                         }
558                         s32 texth = 15;
559                         char buf[10];
560                         snprintf(buf, 10, "%.3g", show_max);
561                         font->draw(narrow_to_wide(buf).c_str(),
562                                         core::rect<s32>(textx, y - graphh,
563                                         textx2, y - graphh + texth),
564                                         meta.color);
565                         snprintf(buf, 10, "%.3g", show_min);
566                         font->draw(narrow_to_wide(buf).c_str(),
567                                         core::rect<s32>(textx, y - texth,
568                                         textx2, y),
569                                         meta.color);
570                         font->draw(narrow_to_wide(id).c_str(),
571                                         core::rect<s32>(textx, y - graphh/2 - texth/2,
572                                         textx2, y - graphh/2 + texth/2),
573                                         meta.color);
574                         s32 graph1y = y;
575                         s32 graph1h = graphh;
576                         bool relativegraph = (show_min != 0 && show_min != show_max);
577                         float lastscaledvalue = 0.0;
578                         bool lastscaledvalue_exists = false;
579                         for(std::list<Piece>::const_iterator j = m_log.begin();
580                                         j != m_log.end(); j++)
581                         {
582                                 const Piece &piece = *j;
583                                 float value = 0;
584                                 bool value_exists = false;
585                                 Profiler::GraphValues::const_iterator k =
586                                                 piece.values.find(id);
587                                 if(k != piece.values.end()){
588                                         value = k->second;
589                                         value_exists = true;
590                                 }
591                                 if(!value_exists){
592                                         x++;
593                                         lastscaledvalue_exists = false;
594                                         continue;
595                                 }
596                                 float scaledvalue = 1.0;
597                                 if(show_max != show_min)
598                                         scaledvalue = (value - show_min) / (show_max - show_min);
599                                 if(scaledvalue == 1.0 && value == 0){
600                                         x++;
601                                         lastscaledvalue_exists = false;
602                                         continue;
603                                 }
604                                 if(relativegraph){
605                                         if(lastscaledvalue_exists){
606                                                 s32 ivalue1 = lastscaledvalue * graph1h;
607                                                 s32 ivalue2 = scaledvalue * graph1h;
608                                                 driver->draw2DLine(v2s32(x-1, graph1y - ivalue1),
609                                                                 v2s32(x, graph1y - ivalue2), meta.color);
610                                         }
611                                         lastscaledvalue = scaledvalue;
612                                         lastscaledvalue_exists = true;
613                                 } else{
614                                         s32 ivalue = scaledvalue * graph1h;
615                                         driver->draw2DLine(v2s32(x, graph1y),
616                                                         v2s32(x, graph1y - ivalue), meta.color);
617                                 }
618                                 x++;
619                         }
620                         meta_i++;
621                 }
622         }
623 };
624
625 class NodeDugEvent: public MtEvent
626 {
627 public:
628         v3s16 p;
629         MapNode n;
630
631         NodeDugEvent(v3s16 p, MapNode n):
632                 p(p),
633                 n(n)
634         {}
635         const char* getType() const
636         {return "NodeDug";}
637 };
638
639 class SoundMaker
640 {
641         ISoundManager *m_sound;
642         INodeDefManager *m_ndef;
643 public:
644         float m_player_step_timer;
645
646         SimpleSoundSpec m_player_step_sound;
647         SimpleSoundSpec m_player_leftpunch_sound;
648         SimpleSoundSpec m_player_rightpunch_sound;
649
650         SoundMaker(ISoundManager *sound, INodeDefManager *ndef):
651                 m_sound(sound),
652                 m_ndef(ndef),
653                 m_player_step_timer(0)
654         {
655         }
656
657         void playPlayerStep()
658         {
659                 if(m_player_step_timer <= 0 && m_player_step_sound.exists()){
660                         m_player_step_timer = 0.03;
661                         m_sound->playSound(m_player_step_sound, false);
662                 }
663         }
664
665         static void viewBobbingStep(MtEvent *e, void *data)
666         {
667                 SoundMaker *sm = (SoundMaker*)data;
668                 sm->playPlayerStep();
669         }
670
671         static void playerRegainGround(MtEvent *e, void *data)
672         {
673                 SoundMaker *sm = (SoundMaker*)data;
674                 sm->playPlayerStep();
675         }
676
677         static void playerJump(MtEvent *e, void *data)
678         {
679                 //SoundMaker *sm = (SoundMaker*)data;
680         }
681
682         static void cameraPunchLeft(MtEvent *e, void *data)
683         {
684                 SoundMaker *sm = (SoundMaker*)data;
685                 sm->m_sound->playSound(sm->m_player_leftpunch_sound, false);
686         }
687
688         static void cameraPunchRight(MtEvent *e, void *data)
689         {
690                 SoundMaker *sm = (SoundMaker*)data;
691                 sm->m_sound->playSound(sm->m_player_rightpunch_sound, false);
692         }
693
694         static void nodeDug(MtEvent *e, void *data)
695         {
696                 SoundMaker *sm = (SoundMaker*)data;
697                 NodeDugEvent *nde = (NodeDugEvent*)e;
698                 sm->m_sound->playSound(sm->m_ndef->get(nde->n).sound_dug, false);
699         }
700
701         static void playerDamage(MtEvent *e, void *data)
702         {
703                 SoundMaker *sm = (SoundMaker*)data;
704                 sm->m_sound->playSound(SimpleSoundSpec("player_damage", 0.5), false);
705         }
706
707         static void playerFallingDamage(MtEvent *e, void *data)
708         {
709                 SoundMaker *sm = (SoundMaker*)data;
710                 sm->m_sound->playSound(SimpleSoundSpec("player_falling_damage", 0.5), false);
711         }
712
713         void registerReceiver(MtEventManager *mgr)
714         {
715                 mgr->reg("ViewBobbingStep", SoundMaker::viewBobbingStep, this);
716                 mgr->reg("PlayerRegainGround", SoundMaker::playerRegainGround, this);
717                 mgr->reg("PlayerJump", SoundMaker::playerJump, this);
718                 mgr->reg("CameraPunchLeft", SoundMaker::cameraPunchLeft, this);
719                 mgr->reg("CameraPunchRight", SoundMaker::cameraPunchRight, this);
720                 mgr->reg("NodeDug", SoundMaker::nodeDug, this);
721                 mgr->reg("PlayerDamage", SoundMaker::playerDamage, this);
722                 mgr->reg("PlayerFallingDamage", SoundMaker::playerFallingDamage, this);
723         }
724
725         void step(float dtime)
726         {
727                 m_player_step_timer -= dtime;
728         }
729 };
730
731 // Locally stored sounds don't need to be preloaded because of this
732 class GameOnDemandSoundFetcher: public OnDemandSoundFetcher
733 {
734         std::set<std::string> m_fetched;
735 public:
736
737         void fetchSounds(const std::string &name,
738                         std::set<std::string> &dst_paths,
739                         std::set<std::string> &dst_datas)
740         {
741                 if(m_fetched.count(name))
742                         return;
743                 m_fetched.insert(name);
744                 std::string base = porting::path_share + DIR_DELIM + "testsounds";
745                 dst_paths.insert(base + DIR_DELIM + name + ".ogg");
746                 dst_paths.insert(base + DIR_DELIM + name + ".0.ogg");
747                 dst_paths.insert(base + DIR_DELIM + name + ".1.ogg");
748                 dst_paths.insert(base + DIR_DELIM + name + ".2.ogg");
749                 dst_paths.insert(base + DIR_DELIM + name + ".3.ogg");
750                 dst_paths.insert(base + DIR_DELIM + name + ".4.ogg");
751                 dst_paths.insert(base + DIR_DELIM + name + ".5.ogg");
752                 dst_paths.insert(base + DIR_DELIM + name + ".6.ogg");
753                 dst_paths.insert(base + DIR_DELIM + name + ".7.ogg");
754                 dst_paths.insert(base + DIR_DELIM + name + ".8.ogg");
755                 dst_paths.insert(base + DIR_DELIM + name + ".9.ogg");
756         }
757 };
758
759 class GameGlobalShaderConstantSetter : public IShaderConstantSetter
760 {
761         Sky *m_sky;
762         bool *m_force_fog_off;
763         f32 *m_fog_range;
764         Client *m_client;
765
766 public:
767         GameGlobalShaderConstantSetter(Sky *sky, bool *force_fog_off,
768                         f32 *fog_range, Client *client):
769                 m_sky(sky),
770                 m_force_fog_off(force_fog_off),
771                 m_fog_range(fog_range),
772                 m_client(client)
773         {}
774         ~GameGlobalShaderConstantSetter() {}
775
776         virtual void onSetConstants(video::IMaterialRendererServices *services,
777                         bool is_highlevel)
778         {
779                 if(!is_highlevel)
780                         return;
781
782                 // Background color
783                 video::SColor bgcolor = m_sky->getBgColor();
784                 video::SColorf bgcolorf(bgcolor);
785                 float bgcolorfa[4] = {
786                         bgcolorf.r,
787                         bgcolorf.g,
788                         bgcolorf.b,
789                         bgcolorf.a,
790                 };
791                 services->setPixelShaderConstant("skyBgColor", bgcolorfa, 4);
792
793                 // Fog distance
794                 float fog_distance = 10000*BS;
795                 if(g_settings->getBool("enable_fog") && !*m_force_fog_off)
796                         fog_distance = *m_fog_range;
797                 services->setPixelShaderConstant("fogDistance", &fog_distance, 1);
798
799                 // Day-night ratio
800                 u32 daynight_ratio = m_client->getEnv().getDayNightRatio();
801                 float daynight_ratio_f = (float)daynight_ratio / 1000.0;
802                 services->setPixelShaderConstant("dayNightRatio", &daynight_ratio_f, 1);
803
804                 u32 animation_timer = porting::getTimeMs() % 100000;
805                 float animation_timer_f = (float)animation_timer / 100000.0;
806                 services->setPixelShaderConstant("animationTimer", &animation_timer_f, 1);
807                 services->setVertexShaderConstant("animationTimer", &animation_timer_f, 1);
808
809                 LocalPlayer* player = m_client->getEnv().getLocalPlayer();
810                 v3f eye_position = player->getEyePosition();
811                 services->setPixelShaderConstant("eyePosition", (irr::f32*)&eye_position, 3);
812                 services->setVertexShaderConstant("eyePosition", (irr::f32*)&eye_position, 3);
813
814                 // Uniform sampler layers
815                 int layer0 = 0;
816                 int layer1 = 1;
817                 int layer2 = 2;
818                 // before 1.8 there isn't a "integer interface", only float
819 #if (IRRLICHT_VERSION_MAJOR == 1 && IRRLICHT_VERSION_MINOR < 8)
820                 services->setPixelShaderConstant("baseTexture" , (irr::f32*)&layer0, 1);
821                 services->setPixelShaderConstant("normalTexture" , (irr::f32*)&layer1, 1);
822                 services->setPixelShaderConstant("useNormalmap" , (irr::f32*)&layer2, 1);
823 #else
824                 services->setPixelShaderConstant("baseTexture" , (irr::s32*)&layer0, 1);
825                 services->setPixelShaderConstant("normalTexture" , (irr::s32*)&layer1, 1);
826                 services->setPixelShaderConstant("useNormalmap" , (irr::s32*)&layer2, 1);
827 #endif
828         }
829 };
830
831 bool nodePlacementPrediction(Client &client,
832                 const ItemDefinition &playeritem_def, v3s16 nodepos, v3s16 neighbourpos)
833 {
834         std::string prediction = playeritem_def.node_placement_prediction;
835         INodeDefManager *nodedef = client.ndef();
836         ClientMap &map = client.getEnv().getClientMap();
837
838         if(prediction != "" && !nodedef->get(map.getNode(nodepos)).rightclickable)
839         {
840                 verbosestream<<"Node placement prediction for "
841                                 <<playeritem_def.name<<" is "
842                                 <<prediction<<std::endl;
843                 v3s16 p = neighbourpos;
844                 // Place inside node itself if buildable_to
845                 try{
846                         MapNode n_under = map.getNode(nodepos);
847                         if(nodedef->get(n_under).buildable_to)
848                                 p = nodepos;
849                         else if (!nodedef->get(map.getNode(p)).buildable_to)
850                                 return false;
851                 }catch(InvalidPositionException &e){}
852                 // Find id of predicted node
853                 content_t id;
854                 bool found = nodedef->getId(prediction, id);
855                 if(!found){
856                         errorstream<<"Node placement prediction failed for "
857                                         <<playeritem_def.name<<" (places "
858                                         <<prediction
859                                         <<") - Name not known"<<std::endl;
860                         return false;
861                 }
862                 // Predict param2 for facedir and wallmounted nodes
863                 u8 param2 = 0;
864                 if(nodedef->get(id).param_type_2 == CPT2_WALLMOUNTED){
865                         v3s16 dir = nodepos - neighbourpos;
866                         if(abs(dir.Y) > MYMAX(abs(dir.X), abs(dir.Z))){
867                                 param2 = dir.Y < 0 ? 1 : 0;
868                         } else if(abs(dir.X) > abs(dir.Z)){
869                                 param2 = dir.X < 0 ? 3 : 2;
870                         } else {
871                                 param2 = dir.Z < 0 ? 5 : 4;
872                         }
873                 }
874                 if(nodedef->get(id).param_type_2 == CPT2_FACEDIR){
875                         v3s16 dir = nodepos - floatToInt(client.getEnv().getLocalPlayer()->getPosition(), BS);
876                         if(abs(dir.X) > abs(dir.Z)){
877                                 param2 = dir.X < 0 ? 3 : 1;
878                         } else {
879                                 param2 = dir.Z < 0 ? 2 : 0;
880                         }
881                 }
882                 assert(param2 >= 0 && param2 <= 5);
883                 //Check attachment if node is in group attached_node
884                 if(((ItemGroupList) nodedef->get(id).groups)["attached_node"] != 0){
885                         static v3s16 wallmounted_dirs[8] = {
886                                 v3s16(0,1,0),
887                                 v3s16(0,-1,0),
888                                 v3s16(1,0,0),
889                                 v3s16(-1,0,0),
890                                 v3s16(0,0,1),
891                                 v3s16(0,0,-1),
892                         };
893                         v3s16 pp;
894                         if(nodedef->get(id).param_type_2 == CPT2_WALLMOUNTED)
895                                 pp = p + wallmounted_dirs[param2];
896                         else
897                                 pp = p + v3s16(0,-1,0);
898                         if(!nodedef->get(map.getNode(pp)).walkable)
899                                 return false;
900                 }
901                 // Add node to client map
902                 MapNode n(id, 0, param2);
903                 try{
904                         LocalPlayer* player = client.getEnv().getLocalPlayer();
905
906                         // Dont place node when player would be inside new node
907                         // NOTE: This is to be eventually implemented by a mod as client-side Lua
908                         if (!nodedef->get(n).walkable ||
909                                 (client.checkPrivilege("noclip") && g_settings->getBool("noclip")) ||
910                                 (nodedef->get(n).walkable &&
911                                 neighbourpos != player->getStandingNodePos() + v3s16(0,1,0) &&
912                                 neighbourpos != player->getStandingNodePos() + v3s16(0,2,0))) {
913
914                                         // This triggers the required mesh update too
915                                         client.addNode(p, n);
916                                         return true;
917                                 }
918                 }catch(InvalidPositionException &e){
919                         errorstream<<"Node placement prediction failed for "
920                                         <<playeritem_def.name<<" (places "
921                                         <<prediction
922                                         <<") - Position not loaded"<<std::endl;
923                 }
924         }
925         return false;
926 }
927
928 static inline void create_formspec_menu(GUIFormSpecMenu** cur_formspec,
929                 InventoryManager *invmgr, IGameDef *gamedef,
930                 IWritableTextureSource* tsrc, IrrlichtDevice * device,
931                 IFormSource* fs_src, TextDest* txt_dest
932                 ) {
933
934         if (*cur_formspec == 0) {
935                 *cur_formspec = new GUIFormSpecMenu(device, guiroot, -1, &g_menumgr,
936                                 invmgr, gamedef, tsrc, fs_src, txt_dest, cur_formspec );
937                 (*cur_formspec)->doPause = false;
938                 (*cur_formspec)->drop();
939         }
940         else {
941                 (*cur_formspec)->setFormSource(fs_src);
942                 (*cur_formspec)->setTextDest(txt_dest);
943         }
944 }
945
946 static void show_chat_menu(GUIFormSpecMenu** cur_formspec,
947                 InventoryManager *invmgr, IGameDef *gamedef,
948                 IWritableTextureSource* tsrc, IrrlichtDevice * device,
949                 Client* client, std::string text)
950 {
951         std::string formspec =
952                 "size[11,5.5,true]"
953                 "field[3,2.35;6,0.5;f_text;;" + text + "]"
954                 "button_exit[4,3;3,0.5;btn_send;" + wide_to_narrow(wstrgettext("Proceed")) + "]"
955                 ;
956
957         /* Create menu */
958         /* Note: FormspecFormSource and LocalFormspecHandler
959          * are deleted by guiFormSpecMenu                     */
960         FormspecFormSource* fs_src = new FormspecFormSource(formspec);
961         LocalFormspecHandler* txt_dst = new LocalFormspecHandler("MT_CHAT_MENU", client);
962
963         create_formspec_menu(cur_formspec, invmgr, gamedef, tsrc, device, fs_src, txt_dst);
964 }
965
966 static void show_deathscreen(GUIFormSpecMenu** cur_formspec,
967                 InventoryManager *invmgr, IGameDef *gamedef,
968                 IWritableTextureSource* tsrc, IrrlichtDevice * device, Client* client)
969 {
970         std::string formspec =
971                 std::string("") +
972                 "size[11,5.5,true]"
973                 "bgcolor[#320000b4;true]"
974                 "label[4.85,1.35;You died.]"
975                 "button_exit[4,3;3,0.5;btn_respawn;" + gettext("Respawn") + "]"
976                 ;
977
978         /* Create menu */
979         /* Note: FormspecFormSource and LocalFormspecHandler
980          * are deleted by guiFormSpecMenu                     */
981         FormspecFormSource* fs_src = new FormspecFormSource(formspec);
982         LocalFormspecHandler* txt_dst = new LocalFormspecHandler("MT_DEATH_SCREEN", client);
983
984         create_formspec_menu(cur_formspec, invmgr, gamedef, tsrc, device,  fs_src, txt_dst);
985 }
986
987 /******************************************************************************/
988 static void show_pause_menu(GUIFormSpecMenu** cur_formspec,
989                 InventoryManager *invmgr, IGameDef *gamedef,
990                 IWritableTextureSource* tsrc, IrrlichtDevice * device,
991                 bool singleplayermode)
992 {
993         std::string control_text = wide_to_narrow(wstrgettext("Default Controls:\n"
994                         "- WASD: move\n"
995                         "- Space: jump/climb\n"
996                         "- Shift: sneak/go down\n"
997                         "- Q: drop item\n"
998                         "- I: inventory\n"
999                         "- Mouse: turn/look\n"
1000                         "- Mouse left: dig/punch\n"
1001                         "- Mouse right: place/use\n"
1002                         "- Mouse wheel: select item\n"
1003                         "- T: chat\n"
1004                         ));
1005
1006         float ypos = singleplayermode ? 1.0 : 0.5;
1007         std::ostringstream os;
1008
1009         os << "size[11,5.5,true]"
1010                         << "button_exit[4," << (ypos++) << ";3,0.5;btn_continue;"
1011                                         << wide_to_narrow(wstrgettext("Continue"))     << "]";
1012
1013         if (!singleplayermode) {
1014                 os << "button_exit[4," << (ypos++) << ";3,0.5;btn_change_password;"
1015                                         << wide_to_narrow(wstrgettext("Change Password")) << "]";
1016                 }
1017
1018         os              << "button_exit[4," << (ypos++) << ";3,0.5;btn_sound;"
1019                                         << wide_to_narrow(wstrgettext("Sound Volume")) << "]";
1020         os              << "button_exit[4," << (ypos++) << ";3,0.5;btn_exit_menu;"
1021                                         << wide_to_narrow(wstrgettext("Exit to Menu")) << "]";
1022         os              << "button_exit[4," << (ypos++) << ";3,0.5;btn_exit_os;"
1023                                         << wide_to_narrow(wstrgettext("Exit to OS"))   << "]"
1024                         << "textarea[7.5,0.25;3.75,6;;" << control_text << ";]"
1025                         << "textarea[0.4,0.25;3.5,6;;" << "Minetest\n"
1026                         << minetest_build_info << "\n"
1027                         << "path_user = " << wrap_rows(porting::path_user, 20)
1028                         << "\n;]";
1029
1030         /* Create menu */
1031         /* Note: FormspecFormSource and LocalFormspecHandler  *
1032          * are deleted by guiFormSpecMenu                     */
1033         FormspecFormSource* fs_src = new FormspecFormSource(os.str());
1034         LocalFormspecHandler* txt_dst = new LocalFormspecHandler("MT_PAUSE_MENU");
1035
1036         create_formspec_menu(cur_formspec, invmgr, gamedef, tsrc, device,  fs_src, txt_dst);
1037
1038         if (singleplayermode) {
1039                 (*cur_formspec)->doPause = true;
1040         }
1041 }
1042
1043 /******************************************************************************/
1044 void the_game(bool &kill, bool random_input, InputHandler *input,
1045         IrrlichtDevice *device, gui::IGUIFont* font, std::string map_dir,
1046         std::string playername, std::string password,
1047         std::string address /* If "", local server is used */,
1048         u16 port, std::wstring &error_message, ChatBackend &chat_backend,
1049         const SubgameSpec &gamespec /* Used for local game */,
1050         bool simple_singleplayer_mode)
1051 {
1052         GUIFormSpecMenu* current_formspec = 0;
1053         video::IVideoDriver* driver = device->getVideoDriver();
1054         scene::ISceneManager* smgr = device->getSceneManager();
1055
1056         // Calculate text height using the font
1057         u32 text_height = font->getDimension(L"Random test string").Height;
1058
1059         /*
1060                 Draw "Loading" screen
1061         */
1062
1063         {
1064                 wchar_t* text = wgettext("Loading...");
1065                 draw_load_screen(text, device, guienv, font, 0, 0);
1066                 delete[] text;
1067         }
1068
1069         // Create texture source
1070         IWritableTextureSource *tsrc = createTextureSource(device);
1071
1072         // Create shader source
1073         IWritableShaderSource *shsrc = createShaderSource(device);
1074
1075         // These will be filled by data received from the server
1076         // Create item definition manager
1077         IWritableItemDefManager *itemdef = createItemDefManager();
1078         // Create node definition manager
1079         IWritableNodeDefManager *nodedef = createNodeDefManager();
1080
1081         // Sound fetcher (useful when testing)
1082         GameOnDemandSoundFetcher soundfetcher;
1083
1084         // Sound manager
1085         ISoundManager *sound = NULL;
1086         bool sound_is_dummy = false;
1087 #if USE_SOUND
1088         if(g_settings->getBool("enable_sound")){
1089                 infostream<<"Attempting to use OpenAL audio"<<std::endl;
1090                 sound = createOpenALSoundManager(&soundfetcher);
1091                 if(!sound)
1092                         infostream<<"Failed to initialize OpenAL audio"<<std::endl;
1093         } else {
1094                 infostream<<"Sound disabled."<<std::endl;
1095         }
1096 #endif
1097         if(!sound){
1098                 infostream<<"Using dummy audio."<<std::endl;
1099                 sound = &dummySoundManager;
1100                 sound_is_dummy = true;
1101         }
1102
1103         Server *server = NULL;
1104
1105         try{
1106         // Event manager
1107         EventManager eventmgr;
1108
1109         // Sound maker
1110         SoundMaker soundmaker(sound, nodedef);
1111         soundmaker.registerReceiver(&eventmgr);
1112
1113         // Add chat log output for errors to be shown in chat
1114         LogOutputBuffer chat_log_error_buf(LMT_ERROR);
1115
1116         // Create UI for modifying quicktune values
1117         QuicktuneShortcutter quicktune;
1118
1119         /*
1120                 Create server.
1121         */
1122
1123         if(address == ""){
1124                 wchar_t* text = wgettext("Creating server....");
1125                 draw_load_screen(text, device, guienv, font, 0, 25);
1126                 delete[] text;
1127                 infostream<<"Creating server"<<std::endl;
1128
1129                 std::string bind_str = g_settings->get("bind_address");
1130                 Address bind_addr(0,0,0,0, port);
1131
1132                 if (g_settings->getBool("ipv6_server")) {
1133                         bind_addr.setAddress((IPv6AddressBytes*) NULL);
1134                 }
1135                 try {
1136                         bind_addr.Resolve(bind_str.c_str());
1137                         address = bind_str;
1138                 } catch (ResolveError &e) {
1139                         infostream << "Resolving bind address \"" << bind_str
1140                                            << "\" failed: " << e.what()
1141                                            << " -- Listening on all addresses." << std::endl;
1142                 }
1143
1144                 if(bind_addr.isIPv6() && !g_settings->getBool("enable_ipv6")) {
1145                         error_message = L"Unable to listen on " +
1146                                 narrow_to_wide(bind_addr.serializeString()) +
1147                                 L" because IPv6 is disabled";
1148                         errorstream<<wide_to_narrow(error_message)<<std::endl;
1149                         // Break out of client scope
1150                         return;
1151                 }
1152
1153                 server = new Server(map_dir, gamespec,
1154                                 simple_singleplayer_mode,
1155                                 bind_addr.isIPv6());
1156
1157                 server->start(bind_addr);
1158         }
1159
1160         do{ // Client scope (breakable do-while(0))
1161
1162         /*
1163                 Create client
1164         */
1165
1166         {
1167                 wchar_t* text = wgettext("Creating client...");
1168                 draw_load_screen(text, device, guienv, font, 0, 50);
1169                 delete[] text;
1170         }
1171         infostream<<"Creating client"<<std::endl;
1172
1173         MapDrawControl draw_control;
1174
1175         {
1176                 wchar_t* text = wgettext("Resolving address...");
1177                 draw_load_screen(text, device, guienv, font, 0, 75);
1178                 delete[] text;
1179         }
1180         Address connect_address(0,0,0,0, port);
1181         try {
1182                 connect_address.Resolve(address.c_str());
1183                 if (connect_address.isZero()) { // i.e. INADDR_ANY, IN6ADDR_ANY
1184                         //connect_address.Resolve("localhost");
1185                         if (connect_address.isIPv6()) {
1186                                 IPv6AddressBytes addr_bytes;
1187                                 addr_bytes.bytes[15] = 1;
1188                                 connect_address.setAddress(&addr_bytes);
1189                         } else {
1190                                 connect_address.setAddress(127,0,0,1);
1191                         }
1192                 }
1193         }
1194         catch(ResolveError &e) {
1195                 error_message = L"Couldn't resolve address: " + narrow_to_wide(e.what());
1196                 errorstream<<wide_to_narrow(error_message)<<std::endl;
1197                 // Break out of client scope
1198                 break;
1199         }
1200         if(connect_address.isIPv6() && !g_settings->getBool("enable_ipv6")) {
1201                 error_message = L"Unable to connect to " +
1202                         narrow_to_wide(connect_address.serializeString()) +
1203                         L" because IPv6 is disabled";
1204                 errorstream<<wide_to_narrow(error_message)<<std::endl;
1205                 // Break out of client scope
1206                 break;
1207         }
1208
1209         /*
1210                 Create client
1211         */
1212         Client client(device, playername.c_str(), password, draw_control,
1213                 tsrc, shsrc, itemdef, nodedef, sound, &eventmgr,
1214                 connect_address.isIPv6());
1215
1216         // Client acts as our GameDef
1217         IGameDef *gamedef = &client;
1218
1219         /*
1220                 Attempt to connect to the server
1221         */
1222
1223         infostream<<"Connecting to server at ";
1224         connect_address.print(&infostream);
1225         infostream<<std::endl;
1226         client.connect(connect_address);
1227
1228         /*
1229                 Wait for server to accept connection
1230         */
1231         bool could_connect = false;
1232         bool connect_aborted = false;
1233         try{
1234                 float time_counter = 0.0;
1235                 input->clear();
1236                 float fps_max = g_settings->getFloat("fps_max");
1237                 bool cloud_menu_background = g_settings->getBool("menu_clouds");
1238                 u32 lasttime = device->getTimer()->getTime();
1239                 while(device->run())
1240                 {
1241                         f32 dtime = 0.033; // in seconds
1242                         if (cloud_menu_background) {
1243                                 u32 time = device->getTimer()->getTime();
1244                                 if(time > lasttime)
1245                                         dtime = (time - lasttime) / 1000.0;
1246                                 else
1247                                         dtime = 0;
1248                                 lasttime = time;
1249                         }
1250                         // Update client and server
1251                         client.step(dtime);
1252                         if(server != NULL)
1253                                 server->step(dtime);
1254
1255                         // End condition
1256                         if(client.getState() == LC_Init){
1257                                 could_connect = true;
1258                                 break;
1259                         }
1260                         // Break conditions
1261                         if(client.accessDenied()){
1262                                 error_message = L"Access denied. Reason: "
1263                                                 +client.accessDeniedReason();
1264                                 errorstream<<wide_to_narrow(error_message)<<std::endl;
1265                                 break;
1266                         }
1267                         if(input->wasKeyDown(EscapeKey)){
1268                                 connect_aborted = true;
1269                                 infostream<<"Connect aborted [Escape]"<<std::endl;
1270                                 break;
1271                         }
1272
1273                         // Display status
1274                         {
1275                                 wchar_t* text = wgettext("Connecting to server...");
1276                                 draw_load_screen(text, device, guienv, font, dtime, 100);
1277                                 delete[] text;
1278                         }
1279
1280                         // On some computers framerate doesn't seem to be
1281                         // automatically limited
1282                         if (cloud_menu_background) {
1283                                 // Time of frame without fps limit
1284                                 float busytime;
1285                                 u32 busytime_u32;
1286                                 // not using getRealTime is necessary for wine
1287                                 u32 time = device->getTimer()->getTime();
1288                                 if(time > lasttime)
1289                                         busytime_u32 = time - lasttime;
1290                                 else
1291                                         busytime_u32 = 0;
1292                                 busytime = busytime_u32 / 1000.0;
1293
1294                                 // FPS limiter
1295                                 u32 frametime_min = 1000./fps_max;
1296
1297                                 if(busytime_u32 < frametime_min) {
1298                                         u32 sleeptime = frametime_min - busytime_u32;
1299                                         device->sleep(sleeptime);
1300                                 }
1301                         } else {
1302                                 sleep_ms(25);
1303                         }
1304                         time_counter += dtime;
1305                 }
1306         }
1307         catch(con::PeerNotFoundException &e)
1308         {}
1309
1310         /*
1311                 Handle failure to connect
1312         */
1313         if(!could_connect){
1314                 if(error_message == L"" && !connect_aborted){
1315                         error_message = L"Connection failed";
1316                         errorstream<<wide_to_narrow(error_message)<<std::endl;
1317                 }
1318                 // Break out of client scope
1319                 break;
1320         }
1321
1322         /*
1323                 Wait until content has been received
1324         */
1325         bool got_content = false;
1326         bool content_aborted = false;
1327         {
1328                 float time_counter = 0.0;
1329                 input->clear();
1330                 float fps_max = g_settings->getFloat("fps_max");
1331                 bool cloud_menu_background = g_settings->getBool("menu_clouds");
1332                 u32 lasttime = device->getTimer()->getTime();
1333                 while(device->run())
1334                 {
1335                         f32 dtime = 0.033; // in seconds
1336                         if (cloud_menu_background) {
1337                                 u32 time = device->getTimer()->getTime();
1338                                 if(time > lasttime)
1339                                         dtime = (time - lasttime) / 1000.0;
1340                                 else
1341                                         dtime = 0;
1342                                 lasttime = time;
1343                         }
1344                         // Update client and server
1345                         client.step(dtime);
1346                         if(server != NULL)
1347                                 server->step(dtime);
1348
1349                         // End condition
1350                         if(client.mediaReceived() &&
1351                                         client.itemdefReceived() &&
1352                                         client.nodedefReceived()){
1353                                 got_content = true;
1354                                 break;
1355                         }
1356                         // Break conditions
1357                         if(client.accessDenied()){
1358                                 error_message = L"Access denied. Reason: "
1359                                                 +client.accessDeniedReason();
1360                                 errorstream<<wide_to_narrow(error_message)<<std::endl;
1361                                 break;
1362                         }
1363                         if(client.getState() < LC_Init){
1364                                 error_message = L"Client disconnected";
1365                                 errorstream<<wide_to_narrow(error_message)<<std::endl;
1366                                 break;
1367                         }
1368                         if(input->wasKeyDown(EscapeKey)){
1369                                 content_aborted = true;
1370                                 infostream<<"Connect aborted [Escape]"<<std::endl;
1371                                 break;
1372                         }
1373
1374                         // Display status
1375                         int progress=0;
1376                         if (!client.itemdefReceived())
1377                         {
1378                                 wchar_t* text = wgettext("Item definitions...");
1379                                 progress = 0;
1380                                 draw_load_screen(text, device, guienv, font, dtime, progress);
1381                                 delete[] text;
1382                         }
1383                         else if (!client.nodedefReceived())
1384                         {
1385                                 wchar_t* text = wgettext("Node definitions...");
1386                                 progress = 25;
1387                                 draw_load_screen(text, device, guienv, font, dtime, progress);
1388                                 delete[] text;
1389                         }
1390                         else
1391                         {
1392
1393                                 std::stringstream message;
1394                                 message.precision(3);
1395                                 message << gettext("Media...");
1396
1397                                 if ( ( USE_CURL == 0) ||
1398                                                 (!g_settings->getBool("enable_remote_media_server"))) {
1399                                         float cur = client.getCurRate();
1400                                         std::string cur_unit = gettext(" KB/s");
1401
1402                                         if (cur > 900) {
1403                                                 cur /= 1024.0;
1404                                                 cur_unit = gettext(" MB/s");
1405                                         }
1406                                         message << " ( " << cur << cur_unit << " )";
1407                                 }
1408                                 progress = 50+client.mediaReceiveProgress()*50+0.5;
1409                                 draw_load_screen(narrow_to_wide(message.str().c_str()), device,
1410                                                 guienv, font, dtime, progress);
1411                         }
1412
1413                         // On some computers framerate doesn't seem to be
1414                         // automatically limited
1415                         if (cloud_menu_background) {
1416                                 // Time of frame without fps limit
1417                                 float busytime;
1418                                 u32 busytime_u32;
1419                                 // not using getRealTime is necessary for wine
1420                                 u32 time = device->getTimer()->getTime();
1421                                 if(time > lasttime)
1422                                         busytime_u32 = time - lasttime;
1423                                 else
1424                                         busytime_u32 = 0;
1425                                 busytime = busytime_u32 / 1000.0;
1426
1427                                 // FPS limiter
1428                                 u32 frametime_min = 1000./fps_max;
1429
1430                                 if(busytime_u32 < frametime_min) {
1431                                         u32 sleeptime = frametime_min - busytime_u32;
1432                                         device->sleep(sleeptime);
1433                                 }
1434                         } else {
1435                                 sleep_ms(25);
1436                         }
1437                         time_counter += dtime;
1438                 }
1439         }
1440
1441         if(!got_content){
1442                 if(error_message == L"" && !content_aborted){
1443                         error_message = L"Something failed";
1444                         errorstream<<wide_to_narrow(error_message)<<std::endl;
1445                 }
1446                 // Break out of client scope
1447                 break;
1448         }
1449
1450         /*
1451                 After all content has been received:
1452                 Update cached textures, meshes and materials
1453         */
1454         client.afterContentReceived(device,font);
1455
1456         /*
1457                 Create the camera node
1458         */
1459         Camera camera(smgr, draw_control, gamedef);
1460         if (!camera.successfullyCreated(error_message))
1461                 return;
1462
1463         f32 camera_yaw = 0; // "right/left"
1464         f32 camera_pitch = 0; // "up/down"
1465
1466         /*
1467                 Clouds
1468         */
1469
1470         Clouds *clouds = NULL;
1471         if(g_settings->getBool("enable_clouds"))
1472         {
1473                 clouds = new Clouds(smgr->getRootSceneNode(), smgr, -1, time(0));
1474         }
1475
1476         /*
1477                 Skybox thingy
1478         */
1479
1480         Sky *sky = NULL;
1481         sky = new Sky(smgr->getRootSceneNode(), smgr, -1);
1482
1483         scene::ISceneNode* skybox = NULL;
1484
1485         /*
1486                 A copy of the local inventory
1487         */
1488         Inventory local_inventory(itemdef);
1489
1490         /*
1491                 Find out size of crack animation
1492         */
1493         int crack_animation_length = 5;
1494         {
1495                 video::ITexture *t = tsrc->getTexture("crack_anylength.png");
1496                 v2u32 size = t->getOriginalSize();
1497                 crack_animation_length = size.Y / size.X;
1498         }
1499
1500         /*
1501                 Add some gui stuff
1502         */
1503
1504         // First line of debug text
1505         gui::IGUIStaticText *guitext = guienv->addStaticText(
1506                         L"Minetest",
1507                         core::rect<s32>(0, 0, 0, 0),
1508                         false, false);
1509         // Second line of debug text
1510         gui::IGUIStaticText *guitext2 = guienv->addStaticText(
1511                         L"",
1512                         core::rect<s32>(0, 0, 0, 0),
1513                         false, false);
1514         // At the middle of the screen
1515         // Object infos are shown in this
1516         gui::IGUIStaticText *guitext_info = guienv->addStaticText(
1517                         L"",
1518                         core::rect<s32>(0,0,400,text_height*5+5) + v2s32(100,200),
1519                         false, true);
1520
1521         // Status text (displays info when showing and hiding GUI stuff, etc.)
1522         gui::IGUIStaticText *guitext_status = guienv->addStaticText(
1523                         L"<Status>",
1524                         core::rect<s32>(0,0,0,0),
1525                         false, false);
1526         guitext_status->setVisible(false);
1527
1528         std::wstring statustext;
1529         float statustext_time = 0;
1530
1531         // Chat text
1532         gui::IGUIStaticText *guitext_chat = guienv->addStaticText(
1533                         L"",
1534                         core::rect<s32>(0,0,0,0),
1535                         //false, false); // Disable word wrap as of now
1536                         false, true);
1537         // Remove stale "recent" chat messages from previous connections
1538         chat_backend.clearRecentChat();
1539         // Chat backend and console
1540         GUIChatConsole *gui_chat_console = new GUIChatConsole(guienv, guienv->getRootGUIElement(), -1, &chat_backend, &client);
1541
1542         // Profiler text (size is updated when text is updated)
1543         gui::IGUIStaticText *guitext_profiler = guienv->addStaticText(
1544                         L"<Profiler>",
1545                         core::rect<s32>(0,0,0,0),
1546                         false, false);
1547         guitext_profiler->setBackgroundColor(video::SColor(120,0,0,0));
1548         guitext_profiler->setVisible(false);
1549         guitext_profiler->setWordWrap(true);
1550
1551         /*
1552                 Some statistics are collected in these
1553         */
1554         u32 drawtime = 0;
1555         u32 beginscenetime = 0;
1556         u32 endscenetime = 0;
1557
1558         float recent_turn_speed = 0.0;
1559
1560         ProfilerGraph graph;
1561         // Initially clear the profiler
1562         Profiler::GraphValues dummyvalues;
1563         g_profiler->graphGet(dummyvalues);
1564
1565         float nodig_delay_timer = 0.0;
1566         float dig_time = 0.0;
1567         u16 dig_index = 0;
1568         PointedThing pointed_old;
1569         bool digging = false;
1570         bool ldown_for_dig = false;
1571
1572         float damage_flash = 0;
1573
1574         float jump_timer = 0;
1575         bool reset_jump_timer = false;
1576
1577         const float object_hit_delay = 0.2;
1578         float object_hit_delay_timer = 0.0;
1579         float time_from_last_punch = 10;
1580
1581         float update_draw_list_timer = 0.0;
1582         v3f update_draw_list_last_cam_dir;
1583
1584         bool invert_mouse = g_settings->getBool("invert_mouse");
1585
1586         bool update_wielded_item_trigger = true;
1587
1588         bool show_hud = true;
1589         bool show_chat = true;
1590         bool force_fog_off = false;
1591         f32 fog_range = 100*BS;
1592         bool disable_camera_update = false;
1593         bool show_debug = g_settings->getBool("show_debug");
1594         bool show_profiler_graph = false;
1595         u32 show_profiler = 0;
1596         u32 show_profiler_max = 3;  // Number of pages
1597
1598         float time_of_day = 0;
1599         float time_of_day_smooth = 0;
1600
1601         float repeat_rightclick_timer = 0;
1602
1603         /*
1604                 Shader constants
1605         */
1606         shsrc->addGlobalConstantSetter(new GameGlobalShaderConstantSetter(
1607                         sky, &force_fog_off, &fog_range, &client));
1608
1609         /*
1610                 Main loop
1611         */
1612
1613         bool first_loop_after_window_activation = true;
1614
1615         // TODO: Convert the static interval timers to these
1616         // Interval limiter for profiler
1617         IntervalLimiter m_profiler_interval;
1618
1619         // Time is in milliseconds
1620         // NOTE: getRealTime() causes strange problems in wine (imprecision?)
1621         // NOTE: So we have to use getTime() and call run()s between them
1622         u32 lasttime = device->getTimer()->getTime();
1623
1624         LocalPlayer* player = client.getEnv().getLocalPlayer();
1625         player->hurt_tilt_timer = 0;
1626         player->hurt_tilt_strength = 0;
1627
1628         /*
1629                 HUD object
1630         */
1631         Hud hud(driver, smgr, guienv, font, text_height,
1632                         gamedef, player, &local_inventory);
1633
1634         core::stringw str = L"Minetest [";
1635         str += driver->getName();
1636         str += "]";
1637         device->setWindowCaption(str.c_str());
1638
1639         // Info text
1640         std::wstring infotext;
1641
1642         for(;;)
1643         {
1644                 if(device->run() == false || kill == true)
1645                         break;
1646
1647                 v2u32 screensize = driver->getScreenSize();
1648
1649                 // Time of frame without fps limit
1650                 float busytime;
1651                 u32 busytime_u32;
1652                 {
1653                         // not using getRealTime is necessary for wine
1654                         u32 time = device->getTimer()->getTime();
1655                         if(time > lasttime)
1656                                 busytime_u32 = time - lasttime;
1657                         else
1658                                 busytime_u32 = 0;
1659                         busytime = busytime_u32 / 1000.0;
1660                 }
1661
1662                 g_profiler->graphAdd("mainloop_other", busytime - (float)drawtime/1000.0f);
1663
1664                 // Necessary for device->getTimer()->getTime()
1665                 device->run();
1666
1667                 /*
1668                         FPS limiter
1669                 */
1670
1671                 {
1672                         float fps_max = g_menumgr.pausesGame() ?
1673                                         g_settings->getFloat("pause_fps_max") :
1674                                         g_settings->getFloat("fps_max");
1675                         u32 frametime_min = 1000./fps_max;
1676
1677                         if(busytime_u32 < frametime_min)
1678                         {
1679                                 u32 sleeptime = frametime_min - busytime_u32;
1680                                 device->sleep(sleeptime);
1681                                 g_profiler->graphAdd("mainloop_sleep", (float)sleeptime/1000.0f);
1682                         }
1683                 }
1684
1685                 // Necessary for device->getTimer()->getTime()
1686                 device->run();
1687
1688                 /*
1689                         Time difference calculation
1690                 */
1691                 f32 dtime; // in seconds
1692
1693                 u32 time = device->getTimer()->getTime();
1694                 if(time > lasttime)
1695                         dtime = (time - lasttime) / 1000.0;
1696                 else
1697                         dtime = 0;
1698                 lasttime = time;
1699
1700                 g_profiler->graphAdd("mainloop_dtime", dtime);
1701
1702                 /* Run timers */
1703
1704                 if(nodig_delay_timer >= 0)
1705                         nodig_delay_timer -= dtime;
1706                 if(object_hit_delay_timer >= 0)
1707                         object_hit_delay_timer -= dtime;
1708                 time_from_last_punch += dtime;
1709
1710                 g_profiler->add("Elapsed time", dtime);
1711                 g_profiler->avg("FPS", 1./dtime);
1712
1713                 /*
1714                         Time average and jitter calculation
1715                 */
1716
1717                 static f32 dtime_avg1 = 0.0;
1718                 dtime_avg1 = dtime_avg1 * 0.96 + dtime * 0.04;
1719                 f32 dtime_jitter1 = dtime - dtime_avg1;
1720
1721                 static f32 dtime_jitter1_max_sample = 0.0;
1722                 static f32 dtime_jitter1_max_fraction = 0.0;
1723                 {
1724                         static f32 jitter1_max = 0.0;
1725                         static f32 counter = 0.0;
1726                         if(dtime_jitter1 > jitter1_max)
1727                                 jitter1_max = dtime_jitter1;
1728                         counter += dtime;
1729                         if(counter > 0.0)
1730                         {
1731                                 counter -= 3.0;
1732                                 dtime_jitter1_max_sample = jitter1_max;
1733                                 dtime_jitter1_max_fraction
1734                                                 = dtime_jitter1_max_sample / (dtime_avg1+0.001);
1735                                 jitter1_max = 0.0;
1736                         }
1737                 }
1738
1739                 /*
1740                         Busytime average and jitter calculation
1741                 */
1742
1743                 static f32 busytime_avg1 = 0.0;
1744                 busytime_avg1 = busytime_avg1 * 0.98 + busytime * 0.02;
1745                 f32 busytime_jitter1 = busytime - busytime_avg1;
1746
1747                 static f32 busytime_jitter1_max_sample = 0.0;
1748                 static f32 busytime_jitter1_min_sample = 0.0;
1749                 {
1750                         static f32 jitter1_max = 0.0;
1751                         static f32 jitter1_min = 0.0;
1752                         static f32 counter = 0.0;
1753                         if(busytime_jitter1 > jitter1_max)
1754                                 jitter1_max = busytime_jitter1;
1755                         if(busytime_jitter1 < jitter1_min)
1756                                 jitter1_min = busytime_jitter1;
1757                         counter += dtime;
1758                         if(counter > 0.0){
1759                                 counter -= 3.0;
1760                                 busytime_jitter1_max_sample = jitter1_max;
1761                                 busytime_jitter1_min_sample = jitter1_min;
1762                                 jitter1_max = 0.0;
1763                                 jitter1_min = 0.0;
1764                         }
1765                 }
1766
1767                 /*
1768                         Handle miscellaneous stuff
1769                 */
1770
1771                 if(client.accessDenied())
1772                 {
1773                         error_message = L"Access denied. Reason: "
1774                                         +client.accessDeniedReason();
1775                         errorstream<<wide_to_narrow(error_message)<<std::endl;
1776                         break;
1777                 }
1778
1779                 if(g_gamecallback->disconnect_requested)
1780                 {
1781                         g_gamecallback->disconnect_requested = false;
1782                         break;
1783                 }
1784
1785                 if(g_gamecallback->changepassword_requested)
1786                 {
1787                         (new GUIPasswordChange(guienv, guiroot, -1,
1788                                 &g_menumgr, &client))->drop();
1789                         g_gamecallback->changepassword_requested = false;
1790                 }
1791
1792                 if(g_gamecallback->changevolume_requested)
1793                 {
1794                         (new GUIVolumeChange(guienv, guiroot, -1,
1795                                 &g_menumgr, &client))->drop();
1796                         g_gamecallback->changevolume_requested = false;
1797                 }
1798
1799                 /* Process TextureSource's queue */
1800                 tsrc->processQueue();
1801
1802                 /* Process ItemDefManager's queue */
1803                 itemdef->processQueue(gamedef);
1804
1805                 /*
1806                         Process ShaderSource's queue
1807                 */
1808                 shsrc->processQueue();
1809
1810                 /*
1811                         Random calculations
1812                 */
1813                 hud.resizeHotbar();
1814
1815                 // Hilight boxes collected during the loop and displayed
1816                 std::vector<aabb3f> hilightboxes;
1817
1818                 /* reset infotext */
1819                 infotext = L"";
1820                 /*
1821                         Profiler
1822                 */
1823                 float profiler_print_interval =
1824                                 g_settings->getFloat("profiler_print_interval");
1825                 bool print_to_log = true;
1826                 if(profiler_print_interval == 0){
1827                         print_to_log = false;
1828                         profiler_print_interval = 5;
1829                 }
1830                 if(m_profiler_interval.step(dtime, profiler_print_interval))
1831                 {
1832                         if(print_to_log){
1833                                 infostream<<"Profiler:"<<std::endl;
1834                                 g_profiler->print(infostream);
1835                         }
1836
1837                         update_profiler_gui(guitext_profiler, font, text_height,
1838                                         show_profiler, show_profiler_max);
1839
1840                         g_profiler->clear();
1841                 }
1842
1843                 /*
1844                         Direct handling of user input
1845                 */
1846
1847                 // Reset input if window not active or some menu is active
1848                 if(device->isWindowActive() == false
1849                                 || noMenuActive() == false
1850                                 || guienv->hasFocus(gui_chat_console))
1851                 {
1852                         input->clear();
1853                 }
1854                 if (!guienv->hasFocus(gui_chat_console) && gui_chat_console->isOpen())
1855                 {
1856                         gui_chat_console->closeConsoleAtOnce();
1857                 }
1858
1859                 // Input handler step() (used by the random input generator)
1860                 input->step(dtime);
1861
1862                 // Increase timer for doubleclick of "jump"
1863                 if(g_settings->getBool("doubletap_jump") && jump_timer <= 0.2)
1864                         jump_timer += dtime;
1865
1866                 /*
1867                         Launch menus and trigger stuff according to keys
1868                 */
1869                 if(input->wasKeyDown(getKeySetting("keymap_drop")))
1870                 {
1871                         // drop selected item
1872                         IDropAction *a = new IDropAction();
1873                         a->count = 0;
1874                         a->from_inv.setCurrentPlayer();
1875                         a->from_list = "main";
1876                         a->from_i = client.getPlayerItem();
1877                         client.inventoryAction(a);
1878                 }
1879                 else if(input->wasKeyDown(getKeySetting("keymap_inventory")))
1880                 {
1881                         infostream<<"the_game: "
1882                                         <<"Launching inventory"<<std::endl;
1883
1884                         PlayerInventoryFormSource* fs_src = new PlayerInventoryFormSource(&client);
1885                         TextDest* txt_dst = new TextDestPlayerInventory(&client);
1886
1887                         create_formspec_menu(&current_formspec, &client, gamedef, tsrc, device, fs_src, txt_dst);
1888
1889                         InventoryLocation inventoryloc;
1890                         inventoryloc.setCurrentPlayer();
1891                         current_formspec->setFormSpec(fs_src->getForm(), inventoryloc);
1892                 }
1893                 else if(input->wasKeyDown(EscapeKey))
1894                 {
1895                         show_pause_menu(&current_formspec, &client, gamedef, tsrc, device,
1896                                         simple_singleplayer_mode);
1897                 }
1898                 else if(input->wasKeyDown(getKeySetting("keymap_chat")))
1899                 {
1900                         show_chat_menu(&current_formspec, &client, gamedef, tsrc, device,
1901                                         &client,"");
1902                 }
1903                 else if(input->wasKeyDown(getKeySetting("keymap_cmd")))
1904                 {
1905                         show_chat_menu(&current_formspec, &client, gamedef, tsrc, device,
1906                                         &client,"/");
1907                 }
1908                 else if(input->wasKeyDown(getKeySetting("keymap_console")))
1909                 {
1910                         if (!gui_chat_console->isOpenInhibited())
1911                         {
1912                                 // Open up to over half of the screen
1913                                 gui_chat_console->openConsole(0.6);
1914                                 guienv->setFocus(gui_chat_console);
1915                         }
1916                 }
1917                 else if(input->wasKeyDown(getKeySetting("keymap_freemove")))
1918                 {
1919                         if(g_settings->getBool("free_move"))
1920                         {
1921                                 g_settings->set("free_move","false");
1922                                 statustext = L"free_move disabled";
1923                                 statustext_time = 0;
1924                         }
1925                         else
1926                         {
1927                                 g_settings->set("free_move","true");
1928                                 statustext = L"free_move enabled";
1929                                 statustext_time = 0;
1930                                 if(!client.checkPrivilege("fly"))
1931                                         statustext += L" (note: no 'fly' privilege)";
1932                         }
1933                 }
1934                 else if(input->wasKeyDown(getKeySetting("keymap_jump")))
1935                 {
1936                         if(g_settings->getBool("doubletap_jump") && jump_timer < 0.2)
1937                         {
1938                                 if(g_settings->getBool("free_move"))
1939                                 {
1940                                         g_settings->set("free_move","false");
1941                                         statustext = L"free_move disabled";
1942                                         statustext_time = 0;
1943                                 }
1944                                 else
1945                                 {
1946                                         g_settings->set("free_move","true");
1947                                         statustext = L"free_move enabled";
1948                                         statustext_time = 0;
1949                                         if(!client.checkPrivilege("fly"))
1950                                                 statustext += L" (note: no 'fly' privilege)";
1951                                 }
1952                         }
1953                         reset_jump_timer = true;
1954                 }
1955                 else if(input->wasKeyDown(getKeySetting("keymap_fastmove")))
1956                 {
1957                         if(g_settings->getBool("fast_move"))
1958                         {
1959                                 g_settings->set("fast_move","false");
1960                                 statustext = L"fast_move disabled";
1961                                 statustext_time = 0;
1962                         }
1963                         else
1964                         {
1965                                 g_settings->set("fast_move","true");
1966                                 statustext = L"fast_move enabled";
1967                                 statustext_time = 0;
1968                                 if(!client.checkPrivilege("fast"))
1969                                         statustext += L" (note: no 'fast' privilege)";
1970                         }
1971                 }
1972                 else if(input->wasKeyDown(getKeySetting("keymap_noclip")))
1973                 {
1974                         if(g_settings->getBool("noclip"))
1975                         {
1976                                 g_settings->set("noclip","false");
1977                                 statustext = L"noclip disabled";
1978                                 statustext_time = 0;
1979                         }
1980                         else
1981                         {
1982                                 g_settings->set("noclip","true");
1983                                 statustext = L"noclip enabled";
1984                                 statustext_time = 0;
1985                                 if(!client.checkPrivilege("noclip"))
1986                                         statustext += L" (note: no 'noclip' privilege)";
1987                         }
1988                 }
1989                 else if(input->wasKeyDown(getKeySetting("keymap_screenshot")))
1990                 {
1991                         irr::video::IImage* const image = driver->createScreenShot();
1992                         if (image) {
1993                                 irr::c8 filename[256];
1994                                 snprintf(filename, 256, "%s" DIR_DELIM "screenshot_%u.png",
1995                                                  g_settings->get("screenshot_path").c_str(),
1996                                                  device->getTimer()->getRealTime());
1997                                 if (driver->writeImageToFile(image, filename)) {
1998                                         std::wstringstream sstr;
1999                                         sstr<<"Saved screenshot to '"<<filename<<"'";
2000                                         infostream<<"Saved screenshot to '"<<filename<<"'"<<std::endl;
2001                                         statustext = sstr.str();
2002                                         statustext_time = 0;
2003                                 } else{
2004                                         infostream<<"Failed to save screenshot '"<<filename<<"'"<<std::endl;
2005                                 }
2006                                 image->drop();
2007                         }
2008                 }
2009                 else if(input->wasKeyDown(getKeySetting("keymap_toggle_hud")))
2010                 {
2011                         show_hud = !show_hud;
2012                         if(show_hud)
2013                                 statustext = L"HUD shown";
2014                         else
2015                                 statustext = L"HUD hidden";
2016                         statustext_time = 0;
2017                 }
2018                 else if(input->wasKeyDown(getKeySetting("keymap_toggle_chat")))
2019                 {
2020                         show_chat = !show_chat;
2021                         if(show_chat)
2022                                 statustext = L"Chat shown";
2023                         else
2024                                 statustext = L"Chat hidden";
2025                         statustext_time = 0;
2026                 }
2027                 else if(input->wasKeyDown(getKeySetting("keymap_toggle_force_fog_off")))
2028                 {
2029                         force_fog_off = !force_fog_off;
2030                         if(force_fog_off)
2031                                 statustext = L"Fog disabled";
2032                         else
2033                                 statustext = L"Fog enabled";
2034                         statustext_time = 0;
2035                 }
2036                 else if(input->wasKeyDown(getKeySetting("keymap_toggle_update_camera")))
2037                 {
2038                         disable_camera_update = !disable_camera_update;
2039                         if(disable_camera_update)
2040                                 statustext = L"Camera update disabled";
2041                         else
2042                                 statustext = L"Camera update enabled";
2043                         statustext_time = 0;
2044                 }
2045                 else if(input->wasKeyDown(getKeySetting("keymap_toggle_debug")))
2046                 {
2047                         // Initial / 3x toggle: Chat only
2048                         // 1x toggle: Debug text with chat
2049                         // 2x toggle: Debug text with profiler graph
2050                         if(!show_debug)
2051                         {
2052                                 show_debug = true;
2053                                 show_profiler_graph = false;
2054                                 statustext = L"Debug info shown";
2055                                 statustext_time = 0;
2056                         }
2057                         else if(show_profiler_graph)
2058                         {
2059                                 show_debug = false;
2060                                 show_profiler_graph = false;
2061                                 statustext = L"Debug info and profiler graph hidden";
2062                                 statustext_time = 0;
2063                         }
2064                         else
2065                         {
2066                                 show_profiler_graph = true;
2067                                 statustext = L"Profiler graph shown";
2068                                 statustext_time = 0;
2069                         }
2070                 }
2071                 else if(input->wasKeyDown(getKeySetting("keymap_toggle_profiler")))
2072                 {
2073                         show_profiler = (show_profiler + 1) % (show_profiler_max + 1);
2074
2075                         // FIXME: This updates the profiler with incomplete values
2076                         update_profiler_gui(guitext_profiler, font, text_height,
2077                                         show_profiler, show_profiler_max);
2078
2079                         if(show_profiler != 0)
2080                         {
2081                                 std::wstringstream sstr;
2082                                 sstr<<"Profiler shown (page "<<show_profiler
2083                                         <<" of "<<show_profiler_max<<")";
2084                                 statustext = sstr.str();
2085                                 statustext_time = 0;
2086                         }
2087                         else
2088                         {
2089                                 statustext = L"Profiler hidden";
2090                                 statustext_time = 0;
2091                         }
2092                 }
2093                 else if(input->wasKeyDown(getKeySetting("keymap_increase_viewing_range_min")))
2094                 {
2095                         s16 range = g_settings->getS16("viewing_range_nodes_min");
2096                         s16 range_new = range + 10;
2097                         g_settings->set("viewing_range_nodes_min", itos(range_new));
2098                         statustext = narrow_to_wide(
2099                                         "Minimum viewing range changed to "
2100                                         + itos(range_new));
2101                         statustext_time = 0;
2102                 }
2103                 else if(input->wasKeyDown(getKeySetting("keymap_decrease_viewing_range_min")))
2104                 {
2105                         s16 range = g_settings->getS16("viewing_range_nodes_min");
2106                         s16 range_new = range - 10;
2107                         if(range_new < 0)
2108                                 range_new = range;
2109                         g_settings->set("viewing_range_nodes_min",
2110                                         itos(range_new));
2111                         statustext = narrow_to_wide(
2112                                         "Minimum viewing range changed to "
2113                                         + itos(range_new));
2114                         statustext_time = 0;
2115                 }
2116
2117                 // Reset jump_timer
2118                 if(!input->isKeyDown(getKeySetting("keymap_jump")) && reset_jump_timer)
2119                 {
2120                         reset_jump_timer = false;
2121                         jump_timer = 0.0;
2122                 }
2123
2124                 // Handle QuicktuneShortcutter
2125                 if(input->wasKeyDown(getKeySetting("keymap_quicktune_next")))
2126                         quicktune.next();
2127                 if(input->wasKeyDown(getKeySetting("keymap_quicktune_prev")))
2128                         quicktune.prev();
2129                 if(input->wasKeyDown(getKeySetting("keymap_quicktune_inc")))
2130                         quicktune.inc();
2131                 if(input->wasKeyDown(getKeySetting("keymap_quicktune_dec")))
2132                         quicktune.dec();
2133                 {
2134                         std::string msg = quicktune.getMessage();
2135                         if(msg != ""){
2136                                 statustext = narrow_to_wide(msg);
2137                                 statustext_time = 0;
2138                         }
2139                 }
2140
2141                 // Item selection with mouse wheel
2142                 u16 new_playeritem = client.getPlayerItem();
2143                 {
2144                         s32 wheel = input->getMouseWheel();
2145                         u16 max_item = MYMIN(PLAYER_INVENTORY_SIZE-1,
2146                                         player->hud_hotbar_itemcount-1);
2147
2148                         if(wheel < 0)
2149                         {
2150                                 if(new_playeritem < max_item)
2151                                         new_playeritem++;
2152                                 else
2153                                         new_playeritem = 0;
2154                         }
2155                         else if(wheel > 0)
2156                         {
2157                                 if(new_playeritem > 0)
2158                                         new_playeritem--;
2159                                 else
2160                                         new_playeritem = max_item;
2161                         }
2162                 }
2163
2164                 // Item selection
2165                 for(u16 i=0; i<10; i++)
2166                 {
2167                         const KeyPress *kp = NumberKey + (i + 1) % 10;
2168                         if(input->wasKeyDown(*kp))
2169                         {
2170                                 if(i < PLAYER_INVENTORY_SIZE && i < player->hud_hotbar_itemcount)
2171                                 {
2172                                         new_playeritem = i;
2173
2174                                         infostream<<"Selected item: "
2175                                                         <<new_playeritem<<std::endl;
2176                                 }
2177                         }
2178                 }
2179
2180                 // Viewing range selection
2181                 if(input->wasKeyDown(getKeySetting("keymap_rangeselect")))
2182                 {
2183                         draw_control.range_all = !draw_control.range_all;
2184                         if(draw_control.range_all)
2185                         {
2186                                 infostream<<"Enabled full viewing range"<<std::endl;
2187                                 statustext = L"Enabled full viewing range";
2188                                 statustext_time = 0;
2189                         }
2190                         else
2191                         {
2192                                 infostream<<"Disabled full viewing range"<<std::endl;
2193                                 statustext = L"Disabled full viewing range";
2194                                 statustext_time = 0;
2195                         }
2196                 }
2197
2198                 // Print debug stacks
2199                 if(input->wasKeyDown(getKeySetting("keymap_print_debug_stacks")))
2200                 {
2201                         dstream<<"-----------------------------------------"
2202                                         <<std::endl;
2203                         dstream<<DTIME<<"Printing debug stacks:"<<std::endl;
2204                         dstream<<"-----------------------------------------"
2205                                         <<std::endl;
2206                         debug_stacks_print();
2207                 }
2208
2209                 /*
2210                         Mouse and camera control
2211                         NOTE: Do this before client.setPlayerControl() to not cause a camera lag of one frame
2212                 */
2213
2214                 float turn_amount = 0;
2215                 if((device->isWindowActive() && noMenuActive()) || random_input)
2216                 {
2217                         if(!random_input)
2218                         {
2219                                 // Mac OSX gets upset if this is set every frame
2220                                 if(device->getCursorControl()->isVisible())
2221                                         device->getCursorControl()->setVisible(false);
2222                         }
2223
2224                         if(first_loop_after_window_activation){
2225                                 //infostream<<"window active, first loop"<<std::endl;
2226                                 first_loop_after_window_activation = false;
2227                         }
2228                         else{
2229                                 s32 dx = input->getMousePos().X - (driver->getScreenSize().Width/2);
2230                                 s32 dy = input->getMousePos().Y - (driver->getScreenSize().Height/2);
2231                                 if(invert_mouse || camera.getCameraMode() == CAMERA_MODE_THIRD_FRONT) {
2232                                         dy = -dy;
2233                                 }
2234                                 //infostream<<"window active, pos difference "<<dx<<","<<dy<<std::endl;
2235
2236                                 /*const float keyspeed = 500;
2237                                 if(input->isKeyDown(irr::KEY_UP))
2238                                         dy -= dtime * keyspeed;
2239                                 if(input->isKeyDown(irr::KEY_DOWN))
2240                                         dy += dtime * keyspeed;
2241                                 if(input->isKeyDown(irr::KEY_LEFT))
2242                                         dx -= dtime * keyspeed;
2243                                 if(input->isKeyDown(irr::KEY_RIGHT))
2244                                         dx += dtime * keyspeed;*/
2245
2246                                 float d = g_settings->getFloat("mouse_sensitivity");
2247                                 d = rangelim(d, 0.01, 100.0);
2248                                 camera_yaw -= dx*d;
2249                                 camera_pitch += dy*d;
2250                                 if(camera_pitch < -89.5) camera_pitch = -89.5;
2251                                 if(camera_pitch > 89.5) camera_pitch = 89.5;
2252
2253                                 turn_amount = v2f(dx, dy).getLength() * d;
2254                         }
2255                         input->setMousePos((driver->getScreenSize().Width/2),
2256                                         (driver->getScreenSize().Height/2));
2257                 }
2258                 else{
2259                         // Mac OSX gets upset if this is set every frame
2260                         if(device->getCursorControl()->isVisible() == false)
2261                                 device->getCursorControl()->setVisible(true);
2262
2263                         //infostream<<"window inactive"<<std::endl;
2264                         first_loop_after_window_activation = true;
2265                 }
2266                 recent_turn_speed = recent_turn_speed * 0.9 + turn_amount * 0.1;
2267                 //std::cerr<<"recent_turn_speed = "<<recent_turn_speed<<std::endl;
2268
2269                 /*
2270                         Player speed control
2271                 */
2272                 {
2273                         /*bool a_up,
2274                         bool a_down,
2275                         bool a_left,
2276                         bool a_right,
2277                         bool a_jump,
2278                         bool a_superspeed,
2279                         bool a_sneak,
2280                         bool a_LMB,
2281                         bool a_RMB,
2282                         float a_pitch,
2283                         float a_yaw*/
2284                         PlayerControl control(
2285                                 input->isKeyDown(getKeySetting("keymap_forward")),
2286                                 input->isKeyDown(getKeySetting("keymap_backward")),
2287                                 input->isKeyDown(getKeySetting("keymap_left")),
2288                                 input->isKeyDown(getKeySetting("keymap_right")),
2289                                 input->isKeyDown(getKeySetting("keymap_jump")),
2290                                 input->isKeyDown(getKeySetting("keymap_special1")),
2291                                 input->isKeyDown(getKeySetting("keymap_sneak")),
2292                                 input->getLeftState(),
2293                                 input->getRightState(),
2294                                 camera_pitch,
2295                                 camera_yaw
2296                         );
2297                         client.setPlayerControl(control);
2298                         LocalPlayer* player = client.getEnv().getLocalPlayer();
2299                         player->keyPressed=
2300                         (((int)input->isKeyDown(getKeySetting("keymap_forward"))  & 0x1) << 0) |
2301                         (((int)input->isKeyDown(getKeySetting("keymap_backward")) & 0x1) << 1) |
2302                         (((int)input->isKeyDown(getKeySetting("keymap_left"))     & 0x1) << 2) |
2303                         (((int)input->isKeyDown(getKeySetting("keymap_right"))    & 0x1) << 3) |
2304                         (((int)input->isKeyDown(getKeySetting("keymap_jump"))     & 0x1) << 4) |
2305                         (((int)input->isKeyDown(getKeySetting("keymap_special1")) & 0x1) << 5) |
2306                         (((int)input->isKeyDown(getKeySetting("keymap_sneak"))    & 0x1) << 6) |
2307                         (((int)input->getLeftState()  & 0x1) << 7) |
2308                         (((int)input->getRightState() & 0x1) << 8);
2309                 }
2310
2311                 /*
2312                         Run server, client (and process environments)
2313                 */
2314                 bool can_be_and_is_paused =
2315                                 (simple_singleplayer_mode && g_menumgr.pausesGame());
2316                 if(can_be_and_is_paused)
2317                 {
2318                         // No time passes
2319                         dtime = 0;
2320                 }
2321                 else
2322                 {
2323                         if(server != NULL)
2324                         {
2325                                 //TimeTaker timer("server->step(dtime)");
2326                                 server->step(dtime);
2327                         }
2328                         {
2329                                 //TimeTaker timer("client.step(dtime)");
2330                                 client.step(dtime);
2331                         }
2332                 }
2333
2334                 {
2335                         // Read client events
2336                         for(;;) {
2337                                 ClientEvent event = client.getClientEvent();
2338                                 if(event.type == CE_NONE) {
2339                                         break;
2340                                 }
2341                                 else if(event.type == CE_PLAYER_DAMAGE &&
2342                                                 client.getHP() != 0) {
2343                                         //u16 damage = event.player_damage.amount;
2344                                         //infostream<<"Player damage: "<<damage<<std::endl;
2345
2346                                         damage_flash += 100.0;
2347                                         damage_flash += 8.0 * event.player_damage.amount;
2348
2349                                         player->hurt_tilt_timer = 1.5;
2350                                         player->hurt_tilt_strength = event.player_damage.amount/2;
2351                                         player->hurt_tilt_strength = rangelim(player->hurt_tilt_strength, 2.0, 10.0);
2352
2353                                         MtEvent *e = new SimpleTriggerEvent("PlayerDamage");
2354                                         gamedef->event()->put(e);
2355                                 }
2356                                 else if(event.type == CE_PLAYER_FORCE_MOVE) {
2357                                         camera_yaw = event.player_force_move.yaw;
2358                                         camera_pitch = event.player_force_move.pitch;
2359                                 }
2360                                 else if(event.type == CE_DEATHSCREEN) {
2361                                         show_deathscreen(&current_formspec, &client, gamedef, tsrc,
2362                                                         device, &client);
2363
2364                                         chat_backend.addMessage(L"", L"You died.");
2365
2366                                         /* Handle visualization */
2367                                         damage_flash = 0;
2368
2369                                         LocalPlayer* player = client.getEnv().getLocalPlayer();
2370                                         player->hurt_tilt_timer = 0;
2371                                         player->hurt_tilt_strength = 0;
2372
2373                                 }
2374                                 else if (event.type == CE_SHOW_FORMSPEC) {
2375                                         FormspecFormSource* fs_src =
2376                                                         new FormspecFormSource(*(event.show_formspec.formspec));
2377                                         TextDestPlayerInventory* txt_dst =
2378                                                         new TextDestPlayerInventory(&client,*(event.show_formspec.formname));
2379
2380                                         create_formspec_menu(&current_formspec, &client, gamedef,
2381                                                         tsrc, device, fs_src, txt_dst);
2382
2383                                         delete(event.show_formspec.formspec);
2384                                         delete(event.show_formspec.formname);
2385                                 }
2386                                 else if(event.type == CE_SPAWN_PARTICLE) {
2387                                         LocalPlayer* player = client.getEnv().getLocalPlayer();
2388                                         video::ITexture *texture =
2389                                                 gamedef->tsrc()->getTexture(*(event.spawn_particle.texture));
2390
2391                                         new Particle(gamedef, smgr, player, client.getEnv(),
2392                                                 *event.spawn_particle.pos,
2393                                                 *event.spawn_particle.vel,
2394                                                 *event.spawn_particle.acc,
2395                                                  event.spawn_particle.expirationtime,
2396                                                  event.spawn_particle.size,
2397                                                  event.spawn_particle.collisiondetection,
2398                                                  event.spawn_particle.vertical,
2399                                                  texture,
2400                                                  v2f(0.0, 0.0),
2401                                                  v2f(1.0, 1.0));
2402                                 }
2403                                 else if(event.type == CE_ADD_PARTICLESPAWNER) {
2404                                         LocalPlayer* player = client.getEnv().getLocalPlayer();
2405                                         video::ITexture *texture =
2406                                                 gamedef->tsrc()->getTexture(*(event.add_particlespawner.texture));
2407
2408                                         new ParticleSpawner(gamedef, smgr, player,
2409                                                  event.add_particlespawner.amount,
2410                                                  event.add_particlespawner.spawntime,
2411                                                 *event.add_particlespawner.minpos,
2412                                                 *event.add_particlespawner.maxpos,
2413                                                 *event.add_particlespawner.minvel,
2414                                                 *event.add_particlespawner.maxvel,
2415                                                 *event.add_particlespawner.minacc,
2416                                                 *event.add_particlespawner.maxacc,
2417                                                  event.add_particlespawner.minexptime,
2418                                                  event.add_particlespawner.maxexptime,
2419                                                  event.add_particlespawner.minsize,
2420                                                  event.add_particlespawner.maxsize,
2421                                                  event.add_particlespawner.collisiondetection,
2422                                                  event.add_particlespawner.vertical,
2423                                                  texture,
2424                                                  event.add_particlespawner.id);
2425                                 }
2426                                 else if(event.type == CE_DELETE_PARTICLESPAWNER) {
2427                                         delete_particlespawner (event.delete_particlespawner.id);
2428                                 }
2429                                 else if (event.type == CE_HUDADD) {
2430                                         u32 id = event.hudadd.id;
2431
2432                                         HudElement *e = player->getHud(id);
2433
2434                                         if (e != NULL) {
2435                                                 delete event.hudadd.pos;
2436                                                 delete event.hudadd.name;
2437                                                 delete event.hudadd.scale;
2438                                                 delete event.hudadd.text;
2439                                                 delete event.hudadd.align;
2440                                                 delete event.hudadd.offset;
2441                                                 delete event.hudadd.world_pos;
2442                                                 delete event.hudadd.size;
2443                                                 continue;
2444                                         }
2445
2446                                         e = new HudElement;
2447                                         e->type   = (HudElementType)event.hudadd.type;
2448                                         e->pos    = *event.hudadd.pos;
2449                                         e->name   = *event.hudadd.name;
2450                                         e->scale  = *event.hudadd.scale;
2451                                         e->text   = *event.hudadd.text;
2452                                         e->number = event.hudadd.number;
2453                                         e->item   = event.hudadd.item;
2454                                         e->dir    = event.hudadd.dir;
2455                                         e->align  = *event.hudadd.align;
2456                                         e->offset = *event.hudadd.offset;
2457                                         e->world_pos = *event.hudadd.world_pos;
2458                                         e->size = *event.hudadd.size;
2459
2460                                         u32 new_id = player->addHud(e);
2461                                         //if this isn't true our huds aren't consistent
2462                                         assert(new_id == id);
2463
2464                                         delete event.hudadd.pos;
2465                                         delete event.hudadd.name;
2466                                         delete event.hudadd.scale;
2467                                         delete event.hudadd.text;
2468                                         delete event.hudadd.align;
2469                                         delete event.hudadd.offset;
2470                                         delete event.hudadd.world_pos;
2471                                         delete event.hudadd.size;
2472                                 }
2473                                 else if (event.type == CE_HUDRM) {
2474                                         HudElement* e = player->removeHud(event.hudrm.id);
2475
2476                                         if (e != NULL)
2477                                                 delete (e);
2478                                 }
2479                                 else if (event.type == CE_HUDCHANGE) {
2480                                         u32 id = event.hudchange.id;
2481                                         HudElement* e = player->getHud(id);
2482                                         if (e == NULL)
2483                                         {
2484                                                 delete event.hudchange.v3fdata;
2485                                                 delete event.hudchange.v2fdata;
2486                                                 delete event.hudchange.sdata;
2487                                                 delete event.hudchange.v2s32data;
2488                                                 continue;
2489                                         }
2490
2491                                         switch (event.hudchange.stat) {
2492                                                 case HUD_STAT_POS:
2493                                                         e->pos = *event.hudchange.v2fdata;
2494                                                         break;
2495                                                 case HUD_STAT_NAME:
2496                                                         e->name = *event.hudchange.sdata;
2497                                                         break;
2498                                                 case HUD_STAT_SCALE:
2499                                                         e->scale = *event.hudchange.v2fdata;
2500                                                         break;
2501                                                 case HUD_STAT_TEXT:
2502                                                         e->text = *event.hudchange.sdata;
2503                                                         break;
2504                                                 case HUD_STAT_NUMBER:
2505                                                         e->number = event.hudchange.data;
2506                                                         break;
2507                                                 case HUD_STAT_ITEM:
2508                                                         e->item = event.hudchange.data;
2509                                                         break;
2510                                                 case HUD_STAT_DIR:
2511                                                         e->dir = event.hudchange.data;
2512                                                         break;
2513                                                 case HUD_STAT_ALIGN:
2514                                                         e->align = *event.hudchange.v2fdata;
2515                                                         break;
2516                                                 case HUD_STAT_OFFSET:
2517                                                         e->offset = *event.hudchange.v2fdata;
2518                                                         break;
2519                                                 case HUD_STAT_WORLD_POS:
2520                                                         e->world_pos = *event.hudchange.v3fdata;
2521                                                         break;
2522                                                 case HUD_STAT_SIZE:
2523                                                         e->size = *event.hudchange.v2s32data;
2524                                                         break;
2525                                         }
2526
2527                                         delete event.hudchange.v3fdata;
2528                                         delete event.hudchange.v2fdata;
2529                                         delete event.hudchange.sdata;
2530                                         delete event.hudchange.v2s32data;
2531                                 }
2532                                 else if (event.type == CE_SET_SKY) {
2533                                         sky->setVisible(false);
2534                                         if(skybox){
2535                                                 skybox->remove();
2536                                                 skybox = NULL;
2537                                         }
2538                                         // Handle according to type
2539                                         if(*event.set_sky.type == "regular") {
2540                                                 sky->setVisible(true);
2541                                         }
2542                                         else if(*event.set_sky.type == "skybox" &&
2543                                                         event.set_sky.params->size() == 6) {
2544                                                 sky->setFallbackBgColor(*event.set_sky.bgcolor);
2545                                                 skybox = smgr->addSkyBoxSceneNode(
2546                                                                 tsrc->getTexture((*event.set_sky.params)[0]),
2547                                                                 tsrc->getTexture((*event.set_sky.params)[1]),
2548                                                                 tsrc->getTexture((*event.set_sky.params)[2]),
2549                                                                 tsrc->getTexture((*event.set_sky.params)[3]),
2550                                                                 tsrc->getTexture((*event.set_sky.params)[4]),
2551                                                                 tsrc->getTexture((*event.set_sky.params)[5]));
2552                                         }
2553                                         // Handle everything else as plain color
2554                                         else {
2555                                                 if(*event.set_sky.type != "plain")
2556                                                         infostream<<"Unknown sky type: "
2557                                                                         <<(*event.set_sky.type)<<std::endl;
2558                                                 sky->setFallbackBgColor(*event.set_sky.bgcolor);
2559                                         }
2560
2561                                         delete event.set_sky.bgcolor;
2562                                         delete event.set_sky.type;
2563                                         delete event.set_sky.params;
2564                                 }
2565                                 else if (event.type == CE_OVERRIDE_DAY_NIGHT_RATIO) {
2566                                         bool enable = event.override_day_night_ratio.do_override;
2567                                         u32 value = event.override_day_night_ratio.ratio_f * 1000;
2568                                         client.getEnv().setDayNightRatioOverride(enable, value);
2569                                 }
2570                         }
2571                 }
2572
2573                 //TimeTaker //timer2("//timer2");
2574
2575                 /*
2576                         For interaction purposes, get info about the held item
2577                         - What item is it?
2578                         - Is it a usable item?
2579                         - Can it point to liquids?
2580                 */
2581                 ItemStack playeritem;
2582                 {
2583                         InventoryList *mlist = local_inventory.getList("main");
2584                         if(mlist != NULL)
2585                         {
2586                                 playeritem = mlist->getItem(client.getPlayerItem());
2587                         }
2588                 }
2589                 const ItemDefinition &playeritem_def =
2590                                 playeritem.getDefinition(itemdef);
2591                 ToolCapabilities playeritem_toolcap =
2592                                 playeritem.getToolCapabilities(itemdef);
2593
2594                 /*
2595                         Update camera
2596                 */
2597
2598                 v3s16 old_camera_offset = camera.getOffset();
2599
2600                 LocalPlayer* player = client.getEnv().getLocalPlayer();
2601                 float full_punch_interval = playeritem_toolcap.full_punch_interval;
2602                 float tool_reload_ratio = time_from_last_punch / full_punch_interval;
2603
2604                 if(input->wasKeyDown(getKeySetting("keymap_camera_mode"))) {
2605                         camera.toggleCameraMode();
2606                         GenericCAO* playercao = player->getCAO();
2607
2608                         assert( playercao != NULL );
2609                         if (camera.getCameraMode() > CAMERA_MODE_FIRST) {
2610                                 playercao->setVisible(true);
2611                         }
2612                         else {
2613                                 playercao->setVisible(false);
2614                         }
2615                 }
2616                 tool_reload_ratio = MYMIN(tool_reload_ratio, 1.0);
2617                 camera.update(player, dtime, busytime, tool_reload_ratio,
2618                                 client.getEnv());
2619                 camera.step(dtime);
2620
2621                 v3f player_position = player->getPosition();
2622                 v3f camera_position = camera.getPosition();
2623                 v3f camera_direction = camera.getDirection();
2624                 f32 camera_fov = camera.getFovMax();
2625                 v3s16 camera_offset = camera.getOffset();
2626
2627                 bool camera_offset_changed = (camera_offset != old_camera_offset);
2628
2629                 if(!disable_camera_update){
2630                         client.getEnv().getClientMap().updateCamera(camera_position,
2631                                 camera_direction, camera_fov, camera_offset);
2632                         if (camera_offset_changed){
2633                                 client.updateCameraOffset(camera_offset);
2634                                 client.getEnv().updateCameraOffset(camera_offset);
2635                                 if (clouds)
2636                                         clouds->updateCameraOffset(camera_offset);
2637                         }
2638                 }
2639
2640                 // Update sound listener
2641                 sound->updateListener(camera.getCameraNode()->getPosition()+intToFloat(camera_offset, BS),
2642                                 v3f(0,0,0), // velocity
2643                                 camera.getDirection(),
2644                                 camera.getCameraNode()->getUpVector());
2645                 sound->setListenerGain(g_settings->getFloat("sound_volume"));
2646
2647                 /*
2648                         Update sound maker
2649                 */
2650                 {
2651                         soundmaker.step(dtime);
2652
2653                         ClientMap &map = client.getEnv().getClientMap();
2654                         MapNode n = map.getNodeNoEx(player->getStandingNodePos());
2655                         soundmaker.m_player_step_sound = nodedef->get(n).sound_footstep;
2656                 }
2657
2658                 /*
2659                         Calculate what block is the crosshair pointing to
2660                 */
2661
2662                 //u32 t1 = device->getTimer()->getRealTime();
2663
2664                 f32 d = playeritem_def.range; // max. distance
2665                 f32 d_hand = itemdef->get("").range;
2666                 if(d < 0 && d_hand >= 0)
2667                         d = d_hand;
2668                 else if(d < 0)
2669                         d = 4.0;
2670                 core::line3d<f32> shootline(camera_position,
2671                                 camera_position + camera_direction * BS * (d+1));
2672
2673                 // prevent player pointing anything in front-view
2674                 if (camera.getCameraMode() == CAMERA_MODE_THIRD_FRONT)
2675                         shootline = core::line3d<f32>(0,0,0,0,0,0);
2676
2677                 ClientActiveObject *selected_object = NULL;
2678
2679                 PointedThing pointed = getPointedThing(
2680                                 // input
2681                                 &client, player_position, camera_direction,
2682                                 camera_position, shootline, d,
2683                                 playeritem_def.liquids_pointable, !ldown_for_dig,
2684                                 camera_offset,
2685                                 // output
2686                                 hilightboxes,
2687                                 selected_object);
2688
2689                 if(pointed != pointed_old)
2690                 {
2691                         infostream<<"Pointing at "<<pointed.dump()<<std::endl;
2692                         //dstream<<"Pointing at "<<pointed.dump()<<std::endl;
2693                 }
2694
2695                 /*
2696                         Stop digging when
2697                         - releasing left mouse button
2698                         - pointing away from node
2699                 */
2700                 if(digging)
2701                 {
2702                         if(input->getLeftReleased())
2703                         {
2704                                 infostream<<"Left button released"
2705                                         <<" (stopped digging)"<<std::endl;
2706                                 digging = false;
2707                         }
2708                         else if(pointed != pointed_old)
2709                         {
2710                                 if (pointed.type == POINTEDTHING_NODE
2711                                         && pointed_old.type == POINTEDTHING_NODE
2712                                         && pointed.node_undersurface == pointed_old.node_undersurface)
2713                                 {
2714                                         // Still pointing to the same node,
2715                                         // but a different face. Don't reset.
2716                                 }
2717                                 else
2718                                 {
2719                                         infostream<<"Pointing away from node"
2720                                                 <<" (stopped digging)"<<std::endl;
2721                                         digging = false;
2722                                 }
2723                         }
2724                         if(!digging)
2725                         {
2726                                 client.interact(1, pointed_old);
2727                                 client.setCrack(-1, v3s16(0,0,0));
2728                                 dig_time = 0.0;
2729                         }
2730                 }
2731                 if(!digging && ldown_for_dig && !input->getLeftState())
2732                 {
2733                         ldown_for_dig = false;
2734                 }
2735
2736                 bool left_punch = false;
2737                 soundmaker.m_player_leftpunch_sound.name = "";
2738
2739                 if(input->getRightState())
2740                         repeat_rightclick_timer += dtime;
2741                 else
2742                         repeat_rightclick_timer = 0;
2743
2744                 if(playeritem_def.usable && input->getLeftState())
2745                 {
2746                         if(input->getLeftClicked())
2747                                 client.interact(4, pointed);
2748                 }
2749                 else if(pointed.type == POINTEDTHING_NODE)
2750                 {
2751                         v3s16 nodepos = pointed.node_undersurface;
2752                         v3s16 neighbourpos = pointed.node_abovesurface;
2753
2754                         /*
2755                                 Check information text of node
2756                         */
2757
2758                         ClientMap &map = client.getEnv().getClientMap();
2759                         NodeMetadata *meta = map.getNodeMetadata(nodepos);
2760                         if(meta){
2761                                 infotext = narrow_to_wide(meta->getString("infotext"));
2762                         } else {
2763                                 MapNode n = map.getNode(nodepos);
2764                                 if(nodedef->get(n).tiledef[0].name == "unknown_node.png"){
2765                                         infotext = L"Unknown node: ";
2766                                         infotext += narrow_to_wide(nodedef->get(n).name);
2767                                 }
2768                         }
2769
2770                         /*
2771                                 Handle digging
2772                         */
2773
2774                         if(nodig_delay_timer <= 0.0 && input->getLeftState()
2775                                         && client.checkPrivilege("interact"))
2776                         {
2777                                 if(!digging)
2778                                 {
2779                                         infostream<<"Started digging"<<std::endl;
2780                                         client.interact(0, pointed);
2781                                         digging = true;
2782                                         ldown_for_dig = true;
2783                                 }
2784                                 MapNode n = client.getEnv().getClientMap().getNode(nodepos);
2785
2786                                 // NOTE: Similar piece of code exists on the server side for
2787                                 // cheat detection.
2788                                 // Get digging parameters
2789                                 DigParams params = getDigParams(nodedef->get(n).groups,
2790                                                 &playeritem_toolcap);
2791                                 // If can't dig, try hand
2792                                 if(!params.diggable){
2793                                         const ItemDefinition &hand = itemdef->get("");
2794                                         const ToolCapabilities *tp = hand.tool_capabilities;
2795                                         if(tp)
2796                                                 params = getDigParams(nodedef->get(n).groups, tp);
2797                                 }
2798
2799                                 float dig_time_complete = 0.0;
2800
2801                                 if(params.diggable == false)
2802                                 {
2803                                         // I guess nobody will wait for this long
2804                                         dig_time_complete = 10000000.0;
2805                                 }
2806                                 else
2807                                 {
2808                                         dig_time_complete = params.time;
2809                                         if (g_settings->getBool("enable_particles"))
2810                                         {
2811                                                 const ContentFeatures &features =
2812                                                         client.getNodeDefManager()->get(n);
2813                                                 addPunchingParticles
2814                                                         (gamedef, smgr, player, client.getEnv(),
2815                                                          nodepos, features.tiles);
2816                                         }
2817                                 }
2818
2819                                 if(dig_time_complete >= 0.001)
2820                                 {
2821                                         dig_index = (u16)((float)crack_animation_length
2822                                                         * dig_time/dig_time_complete);
2823                                 }
2824                                 // This is for torches
2825                                 else
2826                                 {
2827                                         dig_index = crack_animation_length;
2828                                 }
2829
2830                                 SimpleSoundSpec sound_dig = nodedef->get(n).sound_dig;
2831                                 if(sound_dig.exists() && params.diggable){
2832                                         if(sound_dig.name == "__group"){
2833                                                 if(params.main_group != ""){
2834                                                         soundmaker.m_player_leftpunch_sound.gain = 0.5;
2835                                                         soundmaker.m_player_leftpunch_sound.name =
2836                                                                         std::string("default_dig_") +
2837                                                                                         params.main_group;
2838                                                 }
2839                                         } else{
2840                                                 soundmaker.m_player_leftpunch_sound = sound_dig;
2841                                         }
2842                                 }
2843
2844                                 // Don't show cracks if not diggable
2845                                 if(dig_time_complete >= 100000.0)
2846                                 {
2847                                 }
2848                                 else if(dig_index < crack_animation_length)
2849                                 {
2850                                         //TimeTaker timer("client.setTempMod");
2851                                         //infostream<<"dig_index="<<dig_index<<std::endl;
2852                                         client.setCrack(dig_index, nodepos);
2853                                 }
2854                                 else
2855                                 {
2856                                         infostream<<"Digging completed"<<std::endl;
2857                                         client.interact(2, pointed);
2858                                         client.setCrack(-1, v3s16(0,0,0));
2859                                         MapNode wasnode = map.getNode(nodepos);
2860                                         client.removeNode(nodepos);
2861
2862                                         if (g_settings->getBool("enable_particles"))
2863                                         {
2864                                                 const ContentFeatures &features =
2865                                                         client.getNodeDefManager()->get(wasnode);
2866                                                 addDiggingParticles
2867                                                         (gamedef, smgr, player, client.getEnv(),
2868                                                          nodepos, features.tiles);
2869                                         }
2870
2871                                         dig_time = 0;
2872                                         digging = false;
2873
2874                                         nodig_delay_timer = dig_time_complete
2875                                                         / (float)crack_animation_length;
2876
2877                                         // We don't want a corresponding delay to
2878                                         // very time consuming nodes
2879                                         if(nodig_delay_timer > 0.3)
2880                                                 nodig_delay_timer = 0.3;
2881                                         // We want a slight delay to very little
2882                                         // time consuming nodes
2883                                         float mindelay = 0.15;
2884                                         if(nodig_delay_timer < mindelay)
2885                                                 nodig_delay_timer = mindelay;
2886
2887                                         // Send event to trigger sound
2888                                         MtEvent *e = new NodeDugEvent(nodepos, wasnode);
2889                                         gamedef->event()->put(e);
2890                                 }
2891
2892                                 if(dig_time_complete < 100000.0)
2893                                         dig_time += dtime;
2894                                 else {
2895                                         dig_time = 0;
2896                                         client.setCrack(-1, nodepos);
2897                                 }
2898
2899                                 camera.setDigging(0);  // left click animation
2900                         }
2901
2902                         if((input->getRightClicked() ||
2903                                         repeat_rightclick_timer >=
2904                                                 g_settings->getFloat("repeat_rightclick_time")) &&
2905                                         client.checkPrivilege("interact"))
2906                         {
2907                                 repeat_rightclick_timer = 0;
2908                                 infostream<<"Ground right-clicked"<<std::endl;
2909
2910                                 // Sign special case, at least until formspec is properly implemented.
2911                                 // Deprecated?
2912                                 if(meta && meta->getString("formspec") == "hack:sign_text_input"
2913                                                 && !random_input
2914                                                 && !input->isKeyDown(getKeySetting("keymap_sneak")))
2915                                 {
2916                                         infostream<<"Launching metadata text input"<<std::endl;
2917
2918                                         // Get a new text for it
2919
2920                                         TextDest *dest = new TextDestNodeMetadata(nodepos, &client);
2921
2922                                         std::wstring wtext = narrow_to_wide(meta->getString("text"));
2923
2924                                         (new GUITextInputMenu(guienv, guiroot, -1,
2925                                                         &g_menumgr, dest,
2926                                                         wtext))->drop();
2927                                 }
2928                                 // If metadata provides an inventory view, activate it
2929                                 else if(meta && meta->getString("formspec") != "" && !random_input
2930                                                 && !input->isKeyDown(getKeySetting("keymap_sneak")))
2931                                 {
2932                                         infostream<<"Launching custom inventory view"<<std::endl;
2933
2934                                         InventoryLocation inventoryloc;
2935                                         inventoryloc.setNodeMeta(nodepos);
2936
2937                                         NodeMetadataFormSource* fs_src = new NodeMetadataFormSource(
2938                                                         &client.getEnv().getClientMap(), nodepos);
2939                                         TextDest* txt_dst = new TextDestNodeMetadata(nodepos, &client);
2940
2941                                         create_formspec_menu(&current_formspec, &client, gamedef,
2942                                                         tsrc, device, fs_src, txt_dst);
2943
2944                                         current_formspec->setFormSpec(meta->getString("formspec"), inventoryloc);
2945                                 }
2946                                 // Otherwise report right click to server
2947                                 else
2948                                 {
2949                                         camera.setDigging(1);  // right click animation (always shown for feedback)
2950
2951                                         // If the wielded item has node placement prediction,
2952                                         // make that happen
2953                                         bool placed = nodePlacementPrediction(client,
2954                                                 playeritem_def,
2955                                                 nodepos, neighbourpos);
2956
2957                                         if(placed) {
2958                                                 // Report to server
2959                                                 client.interact(3, pointed);
2960                                                 // Read the sound
2961                                                 soundmaker.m_player_rightpunch_sound =
2962                                                         playeritem_def.sound_place;
2963                                         } else {
2964                                                 soundmaker.m_player_rightpunch_sound =
2965                                                         SimpleSoundSpec();
2966                                         }
2967
2968                                         if (playeritem_def.node_placement_prediction == "" ||
2969                                                 nodedef->get(map.getNode(nodepos)).rightclickable)
2970                                                 client.interact(3, pointed); // Report to server
2971                                 }
2972                         }
2973                 }
2974                 else if(pointed.type == POINTEDTHING_OBJECT)
2975                 {
2976                         infotext = narrow_to_wide(selected_object->infoText());
2977
2978                         if(infotext == L"" && show_debug){
2979                                 infotext = narrow_to_wide(selected_object->debugInfoText());
2980                         }
2981
2982                         //if(input->getLeftClicked())
2983                         if(input->getLeftState())
2984                         {
2985                                 bool do_punch = false;
2986                                 bool do_punch_damage = false;
2987                                 if(object_hit_delay_timer <= 0.0){
2988                                         do_punch = true;
2989                                         do_punch_damage = true;
2990                                         object_hit_delay_timer = object_hit_delay;
2991                                 }
2992                                 if(input->getLeftClicked()){
2993                                         do_punch = true;
2994                                 }
2995                                 if(do_punch){
2996                                         infostream<<"Left-clicked object"<<std::endl;
2997                                         left_punch = true;
2998                                 }
2999                                 if(do_punch_damage){
3000                                         // Report direct punch
3001                                         v3f objpos = selected_object->getPosition();
3002                                         v3f dir = (objpos - player_position).normalize();
3003
3004                                         bool disable_send = selected_object->directReportPunch(
3005                                                         dir, &playeritem, time_from_last_punch);
3006                                         time_from_last_punch = 0;
3007                                         if(!disable_send)
3008                                                 client.interact(0, pointed);
3009                                 }
3010                         }
3011                         else if(input->getRightClicked())
3012                         {
3013                                 infostream<<"Right-clicked object"<<std::endl;
3014                                 client.interact(3, pointed);  // place
3015                         }
3016                 }
3017                 else if(input->getLeftState())
3018                 {
3019                         // When button is held down in air, show continuous animation
3020                         left_punch = true;
3021                 }
3022
3023                 pointed_old = pointed;
3024
3025                 if(left_punch || input->getLeftClicked())
3026                 {
3027                         camera.setDigging(0); // left click animation
3028                 }
3029
3030                 input->resetLeftClicked();
3031                 input->resetRightClicked();
3032
3033                 input->resetLeftReleased();
3034                 input->resetRightReleased();
3035
3036                 /*
3037                         Calculate stuff for drawing
3038                 */
3039
3040                 /*
3041                         Fog range
3042                 */
3043
3044                 if(draw_control.range_all)
3045                         fog_range = 100000*BS;
3046                 else {
3047                         fog_range = draw_control.wanted_range*BS + 0.0*MAP_BLOCKSIZE*BS;
3048                         fog_range = MYMIN(fog_range, (draw_control.farthest_drawn+20)*BS);
3049                         fog_range *= 0.9;
3050                 }
3051
3052                 /*
3053                         Calculate general brightness
3054                 */
3055                 u32 daynight_ratio = client.getEnv().getDayNightRatio();
3056                 float time_brightness = decode_light_f((float)daynight_ratio/1000.0);
3057                 float direct_brightness = 0;
3058                 bool sunlight_seen = false;
3059                 if(g_settings->getBool("free_move")){
3060                         direct_brightness = time_brightness;
3061                         sunlight_seen = true;
3062                 } else {
3063                         ScopeProfiler sp(g_profiler, "Detecting background light", SPT_AVG);
3064                         float old_brightness = sky->getBrightness();
3065                         direct_brightness = (float)client.getEnv().getClientMap()
3066                                         .getBackgroundBrightness(MYMIN(fog_range*1.2, 60*BS),
3067                                         daynight_ratio, (int)(old_brightness*255.5), &sunlight_seen)
3068                                         / 255.0;
3069                 }
3070
3071                 time_of_day = client.getEnv().getTimeOfDayF();
3072                 float maxsm = 0.05;
3073                 if(fabs(time_of_day - time_of_day_smooth) > maxsm &&
3074                                 fabs(time_of_day - time_of_day_smooth + 1.0) > maxsm &&
3075                                 fabs(time_of_day - time_of_day_smooth - 1.0) > maxsm)
3076                         time_of_day_smooth = time_of_day;
3077                 float todsm = 0.05;
3078                 if(time_of_day_smooth > 0.8 && time_of_day < 0.2)
3079                         time_of_day_smooth = time_of_day_smooth * (1.0-todsm)
3080                                         + (time_of_day+1.0) * todsm;
3081                 else
3082                         time_of_day_smooth = time_of_day_smooth * (1.0-todsm)
3083                                         + time_of_day * todsm;
3084
3085                 sky->update(time_of_day_smooth, time_brightness, direct_brightness,
3086                                 sunlight_seen,camera.getCameraMode(), player->getYaw(),
3087                                 player->getPitch());
3088
3089                 video::SColor bgcolor = sky->getBgColor();
3090                 video::SColor skycolor = sky->getSkyColor();
3091
3092                 /*
3093                         Update clouds
3094                 */
3095                 if(clouds){
3096                         if(sky->getCloudsVisible()){
3097                                 clouds->setVisible(true);
3098                                 clouds->step(dtime);
3099                                 clouds->update(v2f(player_position.X, player_position.Z),
3100                                                 sky->getCloudColor());
3101                         } else{
3102                                 clouds->setVisible(false);
3103                         }
3104                 }
3105
3106                 /*
3107                         Update particles
3108                 */
3109
3110                 allparticles_step(dtime);
3111                 allparticlespawners_step(dtime, client.getEnv());
3112
3113                 /*
3114                         Fog
3115                 */
3116
3117                 if(g_settings->getBool("enable_fog") && !force_fog_off)
3118                 {
3119                         driver->setFog(
3120                                 bgcolor,
3121                                 video::EFT_FOG_LINEAR,
3122                                 fog_range*0.4,
3123                                 fog_range*1.0,
3124                                 0.01,
3125                                 false, // pixel fog
3126                                 false // range fog
3127                         );
3128                 }
3129                 else
3130                 {
3131                         driver->setFog(
3132                                 bgcolor,
3133                                 video::EFT_FOG_LINEAR,
3134                                 100000*BS,
3135                                 110000*BS,
3136                                 0.01,
3137                                 false, // pixel fog
3138                                 false // range fog
3139                         );
3140                 }
3141
3142                 /*
3143                         Update gui stuff (0ms)
3144                 */
3145
3146                 //TimeTaker guiupdatetimer("Gui updating");
3147
3148                 if(show_debug)
3149                 {
3150                         static float drawtime_avg = 0;
3151                         drawtime_avg = drawtime_avg * 0.95 + (float)drawtime*0.05;
3152                         /*static float beginscenetime_avg = 0;
3153                         beginscenetime_avg = beginscenetime_avg * 0.95 + (float)beginscenetime*0.05;
3154                         static float scenetime_avg = 0;
3155                         scenetime_avg = scenetime_avg * 0.95 + (float)scenetime*0.05;
3156                         static float endscenetime_avg = 0;
3157                         endscenetime_avg = endscenetime_avg * 0.95 + (float)endscenetime*0.05;*/
3158
3159                         u16 fps = (1.0/dtime_avg1);
3160
3161                         std::ostringstream os(std::ios_base::binary);
3162                         os<<std::fixed
3163                                 <<"Minetest "<<minetest_version_hash
3164                                 <<" FPS = "<<fps
3165                                 <<" (R: range_all="<<draw_control.range_all<<")"
3166                                 <<std::setprecision(0)
3167                                 <<" drawtime = "<<drawtime_avg
3168                                 <<std::setprecision(1)
3169                                 <<", dtime_jitter = "
3170                                 <<(dtime_jitter1_max_fraction * 100.0)<<" %"
3171                                 <<std::setprecision(1)
3172                                 <<", v_range = "<<draw_control.wanted_range
3173                                 <<std::setprecision(3)
3174                                 <<", RTT = "<<client.getRTT();
3175                         guitext->setText(narrow_to_wide(os.str()).c_str());
3176                         guitext->setVisible(true);
3177                 }
3178                 else if(show_hud || show_chat)
3179                 {
3180                         std::ostringstream os(std::ios_base::binary);
3181                         os<<"Minetest "<<minetest_version_hash;
3182                         guitext->setText(narrow_to_wide(os.str()).c_str());
3183                         guitext->setVisible(true);
3184                 }
3185                 else
3186                 {
3187                         guitext->setVisible(false);
3188                 }
3189
3190                 if (guitext->isVisible())
3191                 {
3192                         core::rect<s32> rect(
3193                                 5,
3194                                 5,
3195                                 screensize.X,
3196                                 5 + text_height
3197                         );
3198                         guitext->setRelativePosition(rect);
3199                 }
3200
3201                 if(show_debug)
3202                 {
3203                         std::ostringstream os(std::ios_base::binary);
3204                         os<<std::setprecision(1)<<std::fixed
3205                                 <<"(" <<(player_position.X/BS)
3206                                 <<", "<<(player_position.Y/BS)
3207                                 <<", "<<(player_position.Z/BS)
3208                                 <<") (yaw="<<(wrapDegrees_0_360(camera_yaw))
3209                                 <<") (seed = "<<((u64)client.getMapSeed())
3210                                 <<")";
3211                         guitext2->setText(narrow_to_wide(os.str()).c_str());
3212                         guitext2->setVisible(true);
3213
3214                         core::rect<s32> rect(
3215                                 5,
3216                                 5 + text_height,
3217                                 screensize.X,
3218                                 5 + (text_height * 2)
3219                         );
3220                         guitext2->setRelativePosition(rect);
3221                 }
3222                 else
3223                 {
3224                         guitext2->setVisible(false);
3225                 }
3226
3227                 {
3228                         guitext_info->setText(infotext.c_str());
3229                         guitext_info->setVisible(show_hud && g_menumgr.menuCount() == 0);
3230                 }
3231
3232                 {
3233                         float statustext_time_max = 1.5;
3234                         if(!statustext.empty())
3235                         {
3236                                 statustext_time += dtime;
3237                                 if(statustext_time >= statustext_time_max)
3238                                 {
3239                                         statustext = L"";
3240                                         statustext_time = 0;
3241                                 }
3242                         }
3243                         guitext_status->setText(statustext.c_str());
3244                         guitext_status->setVisible(!statustext.empty());
3245
3246                         if(!statustext.empty())
3247                         {
3248                                 s32 status_y = screensize.Y - 130;
3249                                 core::rect<s32> rect(
3250                                                 10,
3251                                                 status_y - guitext_status->getTextHeight(),
3252                                                 screensize.X - 10,
3253                                                 status_y
3254                                 );
3255                                 guitext_status->setRelativePosition(rect);
3256
3257                                 // Fade out
3258                                 video::SColor initial_color(255,0,0,0);
3259                                 if(guienv->getSkin())
3260                                         initial_color = guienv->getSkin()->getColor(gui::EGDC_BUTTON_TEXT);
3261                                 video::SColor final_color = initial_color;
3262                                 final_color.setAlpha(0);
3263                                 video::SColor fade_color =
3264                                         initial_color.getInterpolated_quadratic(
3265                                                 initial_color,
3266                                                 final_color,
3267                                                 pow(statustext_time / (float)statustext_time_max, 2.0f));
3268                                 guitext_status->setOverrideColor(fade_color);
3269                                 guitext_status->enableOverrideColor(true);
3270                         }
3271                 }
3272
3273                 /*
3274                         Get chat messages from client
3275                 */
3276                 {
3277                         // Get new messages from error log buffer
3278                         while(!chat_log_error_buf.empty())
3279                         {
3280                                 chat_backend.addMessage(L"", narrow_to_wide(
3281                                                 chat_log_error_buf.get()));
3282                         }
3283                         // Get new messages from client
3284                         std::wstring message;
3285                         while(client.getChatMessage(message))
3286                         {
3287                                 chat_backend.addUnparsedMessage(message);
3288                         }
3289                         // Remove old messages
3290                         chat_backend.step(dtime);
3291
3292                         // Display all messages in a static text element
3293                         u32 recent_chat_count = chat_backend.getRecentBuffer().getLineCount();
3294                         std::wstring recent_chat = chat_backend.getRecentChat();
3295                         guitext_chat->setText(recent_chat.c_str());
3296
3297                         // Update gui element size and position
3298                         s32 chat_y = 5+(text_height+5);
3299                         if(show_debug)
3300                                 chat_y += (text_height+5);
3301                         core::rect<s32> rect(
3302                                 10,
3303                                 chat_y,
3304                                 screensize.X - 10,
3305                                 chat_y + guitext_chat->getTextHeight()
3306                         );
3307                         guitext_chat->setRelativePosition(rect);
3308
3309                         // Don't show chat if disabled or empty or profiler is enabled
3310                         guitext_chat->setVisible(show_chat && recent_chat_count != 0
3311                                         && !show_profiler);
3312                 }
3313
3314                 /*
3315                         Inventory
3316                 */
3317
3318                 if(client.getPlayerItem() != new_playeritem)
3319                 {
3320                         client.selectPlayerItem(new_playeritem);
3321                 }
3322                 if(client.getLocalInventoryUpdated())
3323                 {
3324                         //infostream<<"Updating local inventory"<<std::endl;
3325                         client.getLocalInventory(local_inventory);
3326
3327                         update_wielded_item_trigger = true;
3328                 }
3329                 if(update_wielded_item_trigger)
3330                 {
3331                         update_wielded_item_trigger = false;
3332                         // Update wielded tool
3333                         InventoryList *mlist = local_inventory.getList("main");
3334                         ItemStack item;
3335                         if(mlist != NULL)
3336                                 item = mlist->getItem(client.getPlayerItem());
3337                         camera.wield(item, client.getPlayerItem());
3338                 }
3339
3340                 /*
3341                         Update block draw list every 200ms or when camera direction has
3342                         changed much
3343                 */
3344                 update_draw_list_timer += dtime;
3345                 if(update_draw_list_timer >= 0.2 ||
3346                                 update_draw_list_last_cam_dir.getDistanceFrom(camera_direction) > 0.2 ||
3347                                 camera_offset_changed){
3348                         update_draw_list_timer = 0;
3349                         client.getEnv().getClientMap().updateDrawList(driver);
3350                         update_draw_list_last_cam_dir = camera_direction;
3351                 }
3352
3353                 /*
3354                         Drawing begins
3355                 */
3356                 TimeTaker tt_draw("mainloop: draw");
3357                 {
3358                         TimeTaker timer("beginScene");
3359                         driver->beginScene(true, true, skycolor);
3360                         beginscenetime = timer.stop(true);
3361                 }
3362
3363
3364                 draw_scene(driver, smgr, camera, client, player, hud, guienv,
3365                                 hilightboxes, screensize, skycolor, show_hud);
3366
3367                 /*
3368                         Profiler graph
3369                 */
3370                 if(show_profiler_graph)
3371                 {
3372                         graph.draw(10, screensize.Y - 10, driver, font);
3373                 }
3374
3375                 /*
3376                         Damage flash
3377                 */
3378                 if(damage_flash > 0.0)
3379                 {
3380                         video::SColor color(std::min(damage_flash, 180.0f),180,0,0);
3381                         driver->draw2DRectangle(color,
3382                                         core::rect<s32>(0,0,screensize.X,screensize.Y),
3383                                         NULL);
3384
3385                         damage_flash -= 100.0*dtime;
3386                 }
3387
3388                 /*
3389                         Damage camera tilt
3390                 */
3391                 if(player->hurt_tilt_timer > 0.0)
3392                 {
3393                         player->hurt_tilt_timer -= dtime*5;
3394                         if(player->hurt_tilt_timer < 0)
3395                                 player->hurt_tilt_strength = 0;
3396                 }
3397
3398                 /*
3399                         End scene
3400                 */
3401                 {
3402                         TimeTaker timer("endScene");
3403                         driver->endScene();
3404                         endscenetime = timer.stop(true);
3405                 }
3406
3407                 drawtime = tt_draw.stop(true);
3408                 g_profiler->graphAdd("mainloop_draw", (float)drawtime/1000.0f);
3409
3410                 /*
3411                         End of drawing
3412                 */
3413
3414                 /*
3415                         Log times and stuff for visualization
3416                 */
3417                 Profiler::GraphValues values;
3418                 g_profiler->graphGet(values);
3419                 graph.put(values);
3420         }
3421
3422         /*
3423                 Drop stuff
3424         */
3425         if (clouds)
3426                 clouds->drop();
3427         if (gui_chat_console)
3428                 gui_chat_console->drop();
3429         if (sky)
3430                 sky->drop();
3431         clear_particles();
3432
3433         /* cleanup menus */
3434         while (g_menumgr.menuCount() > 0)
3435         {
3436                 g_menumgr.m_stack.front()->setVisible(false);
3437                 g_menumgr.deletingMenu(g_menumgr.m_stack.front());
3438         }
3439         /*
3440                 Draw a "shutting down" screen, which will be shown while the map
3441                 generator and other stuff quits
3442         */
3443         {
3444                 wchar_t* text = wgettext("Shutting down stuff...");
3445                 draw_load_screen(text, device, guienv, font, 0, -1, false);
3446                 delete[] text;
3447         }
3448
3449         chat_backend.addMessage(L"", L"# Disconnected.");
3450         chat_backend.addMessage(L"", L"");
3451
3452         client.Stop();
3453
3454         //force answer all texture and shader jobs (TODO return empty values)
3455
3456         while(!client.isShutdown()) {
3457                 tsrc->processQueue();
3458                 shsrc->processQueue();
3459                 sleep_ms(100);
3460         }
3461
3462         // Client scope (client is destructed before destructing *def and tsrc)
3463         }while(0);
3464         } // try-catch
3465         catch(SerializationError &e)
3466         {
3467                 error_message = L"A serialization error occurred:\n"
3468                                 + narrow_to_wide(e.what()) + L"\n\nThe server is probably "
3469                                 L" running a different version of Minetest.";
3470                 errorstream<<wide_to_narrow(error_message)<<std::endl;
3471         }
3472         catch(ServerError &e) {
3473                 error_message = narrow_to_wide(e.what());
3474                 errorstream << "ServerError: " << e.what() << std::endl;
3475         }
3476         catch(ModError &e) {
3477                 errorstream << "ModError: " << e.what() << std::endl;
3478                 error_message = narrow_to_wide(e.what()) + wgettext("\nCheck debug.txt for details.");
3479         }
3480
3481
3482
3483         if(!sound_is_dummy)
3484                 delete sound;
3485
3486         //has to be deleted first to stop all server threads
3487         delete server;
3488
3489         delete tsrc;
3490         delete shsrc;
3491         delete nodedef;
3492         delete itemdef;
3493
3494         //extended resource accounting
3495         infostream << "Irrlicht resources after cleanup:" << std::endl;
3496         infostream << "\tRemaining meshes   : "
3497                 << device->getSceneManager()->getMeshCache()->getMeshCount() << std::endl;
3498         infostream << "\tRemaining textures : "
3499                 << driver->getTextureCount() << std::endl;
3500         for (unsigned int i = 0; i < driver->getTextureCount(); i++ ) {
3501                 irr::video::ITexture* texture = driver->getTextureByIndex(i);
3502                 infostream << "\t\t" << i << ":" << texture->getName().getPath().c_str()
3503                                 << std::endl;
3504         }
3505         clearTextureNameCache();
3506         infostream << "\tRemaining materials: "
3507                 << driver-> getMaterialRendererCount ()
3508                 << " (note: irrlicht doesn't support removing renderers)"<< std::endl;
3509 }