Merge remote-tracking branch 'kahrl/sectors2sqlite-fix'
[oweals/minetest.git] / src / game.cpp
1 /*
2 Minetest-c55
3 Copyright (C) 2010-2011 celeron55, Perttu Ahola <celeron55@gmail.com>
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License along
16 with this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19
20 #include "common_irrlicht.h"
21 #include "game.h"
22 #include "client.h"
23 #include "server.h"
24 #include "guiPauseMenu.h"
25 #include "guiPasswordChange.h"
26 #include "guiInventoryMenu.h"
27 #include "guiTextInputMenu.h"
28 #include "materials.h"
29 #include "config.h"
30 #include "clouds.h"
31 #include "camera.h"
32 #include "farmesh.h"
33 #include "mapblock.h"
34
35 /*
36         TODO: Move content-aware stuff to separate file by adding properties
37               and virtual interfaces
38 */
39 #include "content_mapnode.h"
40 #include "content_nodemeta.h"
41
42 /*
43         Setting this to 1 enables a special camera mode that forces
44         the renderers to think that the camera statically points from
45         the starting place to a static direction.
46
47         This allows one to move around with the player and see what
48         is actually drawn behind solid things and behind the player.
49 */
50 #define FIELD_OF_VIEW_TEST 0
51
52
53 // Chat data
54 struct ChatLine
55 {
56         ChatLine():
57                 age(0.0)
58         {
59         }
60         ChatLine(const std::wstring &a_text):
61                 age(0.0),
62                 text(a_text)
63         {
64         }
65         float age;
66         std::wstring text;
67 };
68
69 /*
70         Inventory stuff
71 */
72
73 // Inventory actions from the menu are buffered here before sending
74 Queue<InventoryAction*> inventory_action_queue;
75 // This is a copy of the inventory that the client's environment has
76 Inventory local_inventory;
77
78 u16 g_selected_item = 0;
79
80 /*
81         Text input system
82 */
83
84 struct TextDestSign : public TextDest
85 {
86         TextDestSign(v3s16 blockpos, s16 id, Client *client)
87         {
88                 m_blockpos = blockpos;
89                 m_id = id;
90                 m_client = client;
91         }
92         void gotText(std::wstring text)
93         {
94                 std::string ntext = wide_to_narrow(text);
95                 dstream<<"Changing text of a sign object: "
96                                 <<ntext<<std::endl;
97                 m_client->sendSignText(m_blockpos, m_id, ntext);
98         }
99
100         v3s16 m_blockpos;
101         s16 m_id;
102         Client *m_client;
103 };
104
105 struct TextDestChat : public TextDest
106 {
107         TextDestChat(Client *client)
108         {
109                 m_client = client;
110         }
111         void gotText(std::wstring text)
112         {
113                 // Discard empty line
114                 if(text == L"")
115                         return;
116
117                 // Send to others
118                 m_client->sendChatMessage(text);
119                 // Show locally
120                 m_client->addChatMessage(text);
121         }
122
123         Client *m_client;
124 };
125
126 struct TextDestSignNode : public TextDest
127 {
128         TextDestSignNode(v3s16 p, Client *client)
129         {
130                 m_p = p;
131                 m_client = client;
132         }
133         void gotText(std::wstring text)
134         {
135                 std::string ntext = wide_to_narrow(text);
136                 dstream<<"Changing text of a sign node: "
137                                 <<ntext<<std::endl;
138                 m_client->sendSignNodeText(m_p, ntext);
139         }
140
141         v3s16 m_p;
142         Client *m_client;
143 };
144
145 /*
146         Hotbar draw routine
147 */
148 void draw_hotbar(video::IVideoDriver *driver, gui::IGUIFont *font,
149                 v2s32 centerlowerpos, s32 imgsize, s32 itemcount,
150                 Inventory *inventory, s32 halfheartcount)
151 {
152         InventoryList *mainlist = inventory->getList("main");
153         if(mainlist == NULL)
154         {
155                 dstream<<"WARNING: draw_hotbar(): mainlist == NULL"<<std::endl;
156                 return;
157         }
158         
159         s32 padding = imgsize/12;
160         //s32 height = imgsize + padding*2;
161         s32 width = itemcount*(imgsize+padding*2);
162         
163         // Position of upper left corner of bar
164         v2s32 pos = centerlowerpos - v2s32(width/2, imgsize+padding*2);
165         
166         // Draw background color
167         /*core::rect<s32> barrect(0,0,width,height);
168         barrect += pos;
169         video::SColor bgcolor(255,128,128,128);
170         driver->draw2DRectangle(bgcolor, barrect, NULL);*/
171
172         core::rect<s32> imgrect(0,0,imgsize,imgsize);
173
174         for(s32 i=0; i<itemcount; i++)
175         {
176                 InventoryItem *item = mainlist->getItem(i);
177                 
178                 core::rect<s32> rect = imgrect + pos
179                                 + v2s32(padding+i*(imgsize+padding*2), padding);
180                 
181                 if(g_selected_item == i)
182                 {
183                         video::SColor c_outside(255,255,0,0);
184                         //video::SColor c_outside(255,0,0,0);
185                         //video::SColor c_inside(255,192,192,192);
186                         s32 x1 = rect.UpperLeftCorner.X;
187                         s32 y1 = rect.UpperLeftCorner.Y;
188                         s32 x2 = rect.LowerRightCorner.X;
189                         s32 y2 = rect.LowerRightCorner.Y;
190                         // Black base borders
191                         driver->draw2DRectangle(c_outside,
192                                         core::rect<s32>(
193                                                 v2s32(x1 - padding, y1 - padding),
194                                                 v2s32(x2 + padding, y1)
195                                         ), NULL);
196                         driver->draw2DRectangle(c_outside,
197                                         core::rect<s32>(
198                                                 v2s32(x1 - padding, y2),
199                                                 v2s32(x2 + padding, y2 + padding)
200                                         ), NULL);
201                         driver->draw2DRectangle(c_outside,
202                                         core::rect<s32>(
203                                                 v2s32(x1 - padding, y1),
204                                                 v2s32(x1, y2)
205                                         ), NULL);
206                         driver->draw2DRectangle(c_outside,
207                                         core::rect<s32>(
208                                                 v2s32(x2, y1),
209                                                 v2s32(x2 + padding, y2)
210                                         ), NULL);
211                         /*// Light inside borders
212                         driver->draw2DRectangle(c_inside,
213                                         core::rect<s32>(
214                                                 v2s32(x1 - padding/2, y1 - padding/2),
215                                                 v2s32(x2 + padding/2, y1)
216                                         ), NULL);
217                         driver->draw2DRectangle(c_inside,
218                                         core::rect<s32>(
219                                                 v2s32(x1 - padding/2, y2),
220                                                 v2s32(x2 + padding/2, y2 + padding/2)
221                                         ), NULL);
222                         driver->draw2DRectangle(c_inside,
223                                         core::rect<s32>(
224                                                 v2s32(x1 - padding/2, y1),
225                                                 v2s32(x1, y2)
226                                         ), NULL);
227                         driver->draw2DRectangle(c_inside,
228                                         core::rect<s32>(
229                                                 v2s32(x2, y1),
230                                                 v2s32(x2 + padding/2, y2)
231                                         ), NULL);
232                         */
233                 }
234
235                 video::SColor bgcolor2(128,0,0,0);
236                 driver->draw2DRectangle(bgcolor2, rect, NULL);
237
238                 if(item != NULL)
239                 {
240                         drawInventoryItem(driver, font, item, rect, NULL);
241                 }
242         }
243         
244         /*
245                 Draw hearts
246         */
247         {
248                 video::ITexture *heart_texture =
249                                 driver->getTexture(getTexturePath("heart.png").c_str());
250                 v2s32 p = pos + v2s32(0, -20);
251                 for(s32 i=0; i<halfheartcount/2; i++)
252                 {
253                         const video::SColor color(255,255,255,255);
254                         const video::SColor colors[] = {color,color,color,color};
255                         core::rect<s32> rect(0,0,16,16);
256                         rect += p;
257                         driver->draw2DImage(heart_texture, rect,
258                                 core::rect<s32>(core::position2d<s32>(0,0),
259                                 core::dimension2di(heart_texture->getOriginalSize())),
260                                 NULL, colors, true);
261                         p += v2s32(16,0);
262                 }
263                 if(halfheartcount % 2 == 1)
264                 {
265                         const video::SColor color(255,255,255,255);
266                         const video::SColor colors[] = {color,color,color,color};
267                         core::rect<s32> rect(0,0,16/2,16);
268                         rect += p;
269                         core::dimension2di srcd(heart_texture->getOriginalSize());
270                         srcd.Width /= 2;
271                         driver->draw2DImage(heart_texture, rect,
272                                 core::rect<s32>(core::position2d<s32>(0,0), srcd),
273                                 NULL, colors, true);
274                         p += v2s32(16,0);
275                 }
276         }
277 }
278
279 /*
280         Find what the player is pointing at
281 */
282 void getPointedNode(Client *client, v3f player_position,
283                 v3f camera_direction, v3f camera_position,
284                 bool &nodefound, core::line3d<f32> shootline,
285                 v3s16 &nodepos, v3s16 &neighbourpos,
286                 core::aabbox3d<f32> &nodehilightbox,
287                 f32 d)
288 {
289         f32 mindistance = BS * 1001;
290         
291         v3s16 pos_i = floatToInt(player_position, BS);
292
293         /*std::cout<<"pos_i=("<<pos_i.X<<","<<pos_i.Y<<","<<pos_i.Z<<")"
294                         <<std::endl;*/
295
296         s16 a = d;
297         s16 ystart = pos_i.Y + 0 - (camera_direction.Y<0 ? a : 1);
298         s16 zstart = pos_i.Z - (camera_direction.Z<0 ? a : 1);
299         s16 xstart = pos_i.X - (camera_direction.X<0 ? a : 1);
300         s16 yend = pos_i.Y + 1 + (camera_direction.Y>0 ? a : 1);
301         s16 zend = pos_i.Z + (camera_direction.Z>0 ? a : 1);
302         s16 xend = pos_i.X + (camera_direction.X>0 ? a : 1);
303         
304         for(s16 y = ystart; y <= yend; y++)
305         for(s16 z = zstart; z <= zend; z++)
306         for(s16 x = xstart; x <= xend; x++)
307         {
308                 MapNode n;
309                 try
310                 {
311                         n = client->getNode(v3s16(x,y,z));
312                         if(content_pointable(n.getContent()) == false)
313                                 continue;
314                 }
315                 catch(InvalidPositionException &e)
316                 {
317                         continue;
318                 }
319
320                 v3s16 np(x,y,z);
321                 v3f npf = intToFloat(np, BS);
322                 
323                 f32 d = 0.01;
324                 
325                 v3s16 dirs[6] = {
326                         v3s16(0,0,1), // back
327                         v3s16(0,1,0), // top
328                         v3s16(1,0,0), // right
329                         v3s16(0,0,-1), // front
330                         v3s16(0,-1,0), // bottom
331                         v3s16(-1,0,0), // left
332                 };
333                 
334                 /*
335                         Meta-objects
336                 */
337                 if(n.getContent() == CONTENT_TORCH)
338                 {
339                         v3s16 dir = unpackDir(n.param2);
340                         v3f dir_f = v3f(dir.X, dir.Y, dir.Z);
341                         dir_f *= BS/2 - BS/6 - BS/20;
342                         v3f cpf = npf + dir_f;
343                         f32 distance = (cpf - camera_position).getLength();
344
345                         core::aabbox3d<f32> box;
346                         
347                         // bottom
348                         if(dir == v3s16(0,-1,0))
349                         {
350                                 box = core::aabbox3d<f32>(
351                                         npf - v3f(BS/6, BS/2, BS/6),
352                                         npf + v3f(BS/6, -BS/2+BS/3*2, BS/6)
353                                 );
354                         }
355                         // top
356                         else if(dir == v3s16(0,1,0))
357                         {
358                                 box = core::aabbox3d<f32>(
359                                         npf - v3f(BS/6, -BS/2+BS/3*2, BS/6),
360                                         npf + v3f(BS/6, BS/2, BS/6)
361                                 );
362                         }
363                         // side
364                         else
365                         {
366                                 box = core::aabbox3d<f32>(
367                                         cpf - v3f(BS/6, BS/3, BS/6),
368                                         cpf + v3f(BS/6, BS/3, BS/6)
369                                 );
370                         }
371
372                         if(distance < mindistance)
373                         {
374                                 if(box.intersectsWithLine(shootline))
375                                 {
376                                         nodefound = true;
377                                         nodepos = np;
378                                         neighbourpos = np;
379                                         mindistance = distance;
380                                         nodehilightbox = box;
381                                 }
382                         }
383                 }
384                 else if(n.getContent() == CONTENT_SIGN_WALL)
385                 {
386                         v3s16 dir = unpackDir(n.param2);
387                         v3f dir_f = v3f(dir.X, dir.Y, dir.Z);
388                         dir_f *= BS/2 - BS/6 - BS/20;
389                         v3f cpf = npf + dir_f;
390                         f32 distance = (cpf - camera_position).getLength();
391
392                         v3f vertices[4] =
393                         {
394                                 v3f(BS*0.42,-BS*0.35,-BS*0.4),
395                                 v3f(BS*0.49, BS*0.35, BS*0.4),
396                         };
397
398                         for(s32 i=0; i<2; i++)
399                         {
400                                 if(dir == v3s16(1,0,0))
401                                         vertices[i].rotateXZBy(0);
402                                 if(dir == v3s16(-1,0,0))
403                                         vertices[i].rotateXZBy(180);
404                                 if(dir == v3s16(0,0,1))
405                                         vertices[i].rotateXZBy(90);
406                                 if(dir == v3s16(0,0,-1))
407                                         vertices[i].rotateXZBy(-90);
408                                 if(dir == v3s16(0,-1,0))
409                                         vertices[i].rotateXYBy(-90);
410                                 if(dir == v3s16(0,1,0))
411                                         vertices[i].rotateXYBy(90);
412
413                                 vertices[i] += npf;
414                         }
415
416                         core::aabbox3d<f32> box;
417
418                         box = core::aabbox3d<f32>(vertices[0]);
419                         box.addInternalPoint(vertices[1]);
420
421                         if(distance < mindistance)
422                         {
423                                 if(box.intersectsWithLine(shootline))
424                                 {
425                                         nodefound = true;
426                                         nodepos = np;
427                                         neighbourpos = np;
428                                         mindistance = distance;
429                                         nodehilightbox = box;
430                                 }
431                         }
432                 }
433
434                 else if(n.getContent() == CONTENT_LADDER)
435                 {
436                         v3s16 dir = unpackDir(n.param2);
437                         v3f dir_f = v3f(dir.X, dir.Y, dir.Z);
438                         dir_f *= BS/2 - BS/6 - BS/20;
439                         v3f cpf = npf + dir_f;
440                         f32 distance = (cpf - camera_position).getLength();
441
442                         v3f vertices[4] =
443                         {
444                                 v3f(BS*0.42,-BS/2,-BS/2),
445                                 v3f(BS*0.49, BS/2, BS/2),
446                         };
447
448                         for(s32 i=0; i<2; i++)
449                         {
450                                 if(dir == v3s16(1,0,0))
451                                         vertices[i].rotateXZBy(0);
452                                 if(dir == v3s16(-1,0,0))
453                                         vertices[i].rotateXZBy(180);
454                                 if(dir == v3s16(0,0,1))
455                                         vertices[i].rotateXZBy(90);
456                                 if(dir == v3s16(0,0,-1))
457                                         vertices[i].rotateXZBy(-90);
458                                 if(dir == v3s16(0,-1,0))
459                                         vertices[i].rotateXYBy(-90);
460                                 if(dir == v3s16(0,1,0))
461                                         vertices[i].rotateXYBy(90);
462
463                                 vertices[i] += npf;
464                         }
465
466                         core::aabbox3d<f32> box;
467
468                         box = core::aabbox3d<f32>(vertices[0]);
469                         box.addInternalPoint(vertices[1]);
470
471                         if(distance < mindistance)
472                         {
473                                 if(box.intersectsWithLine(shootline))
474                                 {
475                                         nodefound = true;
476                                         nodepos = np;
477                                         neighbourpos = np;
478                                         mindistance = distance;
479                                         nodehilightbox = box;
480                                 }
481                         }
482                 }
483                 else if(n.getContent() == CONTENT_RAIL)
484                 {
485                         v3s16 dir = unpackDir(n.param0);
486                         v3f dir_f = v3f(dir.X, dir.Y, dir.Z);
487                         dir_f *= BS/2 - BS/6 - BS/20;
488                         v3f cpf = npf + dir_f;
489                         f32 distance = (cpf - camera_position).getLength();
490
491                         float d = (float)BS/16;
492                         v3f vertices[4] =
493                         {
494                                 v3f(BS/2, -BS/2+d, -BS/2),
495                                 v3f(-BS/2, -BS/2, BS/2),
496                         };
497
498                         for(s32 i=0; i<2; i++)
499                         {
500                                 vertices[i] += npf;
501                         }
502
503                         core::aabbox3d<f32> box;
504
505                         box = core::aabbox3d<f32>(vertices[0]);
506                         box.addInternalPoint(vertices[1]);
507
508                         if(distance < mindistance)
509                         {
510                                 if(box.intersectsWithLine(shootline))
511                                 {
512                                         nodefound = true;
513                                         nodepos = np;
514                                         neighbourpos = np;
515                                         mindistance = distance;
516                                         nodehilightbox = box;
517                                 }
518                         }
519                 }
520                 /*
521                         Regular blocks
522                 */
523                 else
524                 {
525                         for(u16 i=0; i<6; i++)
526                         {
527                                 v3f dir_f = v3f(dirs[i].X,
528                                                 dirs[i].Y, dirs[i].Z);
529                                 v3f centerpoint = npf + dir_f * BS/2;
530                                 f32 distance =
531                                                 (centerpoint - camera_position).getLength();
532                                 
533                                 if(distance < mindistance)
534                                 {
535                                         core::CMatrix4<f32> m;
536                                         m.buildRotateFromTo(v3f(0,0,1), dir_f);
537
538                                         // This is the back face
539                                         v3f corners[2] = {
540                                                 v3f(BS/2, BS/2, BS/2),
541                                                 v3f(-BS/2, -BS/2, BS/2+d)
542                                         };
543                                         
544                                         for(u16 j=0; j<2; j++)
545                                         {
546                                                 m.rotateVect(corners[j]);
547                                                 corners[j] += npf;
548                                         }
549
550                                         core::aabbox3d<f32> facebox(corners[0]);
551                                         facebox.addInternalPoint(corners[1]);
552
553                                         if(facebox.intersectsWithLine(shootline))
554                                         {
555                                                 nodefound = true;
556                                                 nodepos = np;
557                                                 neighbourpos = np + dirs[i];
558                                                 mindistance = distance;
559
560                                                 //nodehilightbox = facebox;
561
562                                                 const float d = 0.502;
563                                                 core::aabbox3d<f32> nodebox
564                                                                 (-BS*d, -BS*d, -BS*d, BS*d, BS*d, BS*d);
565                                                 v3f nodepos_f = intToFloat(nodepos, BS);
566                                                 nodebox.MinEdge += nodepos_f;
567                                                 nodebox.MaxEdge += nodepos_f;
568                                                 nodehilightbox = nodebox;
569                                         }
570                                 } // if distance < mindistance
571                         } // for dirs
572                 } // regular block
573         } // for coords
574 }
575
576 void update_skybox(video::IVideoDriver* driver,
577                 scene::ISceneManager* smgr, scene::ISceneNode* &skybox,
578                 float brightness)
579 {
580         if(skybox)
581         {
582                 skybox->remove();
583         }
584         
585         /*// Disable skybox if FarMesh is enabled
586         if(g_settings.getBool("enable_farmesh"))
587                 return;*/
588         
589         if(brightness >= 0.5)
590         {
591                 skybox = smgr->addSkyBoxSceneNode(
592                         driver->getTexture(getTexturePath("skybox2.png").c_str()),
593                         driver->getTexture(getTexturePath("skybox3.png").c_str()),
594                         driver->getTexture(getTexturePath("skybox1.png").c_str()),
595                         driver->getTexture(getTexturePath("skybox1.png").c_str()),
596                         driver->getTexture(getTexturePath("skybox1.png").c_str()),
597                         driver->getTexture(getTexturePath("skybox1.png").c_str()));
598         }
599         else if(brightness >= 0.2)
600         {
601                 skybox = smgr->addSkyBoxSceneNode(
602                         driver->getTexture(getTexturePath("skybox2_dawn.png").c_str()),
603                         driver->getTexture(getTexturePath("skybox3_dawn.png").c_str()),
604                         driver->getTexture(getTexturePath("skybox1_dawn.png").c_str()),
605                         driver->getTexture(getTexturePath("skybox1_dawn.png").c_str()),
606                         driver->getTexture(getTexturePath("skybox1_dawn.png").c_str()),
607                         driver->getTexture(getTexturePath("skybox1_dawn.png").c_str()));
608         }
609         else
610         {
611                 skybox = smgr->addSkyBoxSceneNode(
612                         driver->getTexture(getTexturePath("skybox2_night.png").c_str()),
613                         driver->getTexture(getTexturePath("skybox3_night.png").c_str()),
614                         driver->getTexture(getTexturePath("skybox1_night.png").c_str()),
615                         driver->getTexture(getTexturePath("skybox1_night.png").c_str()),
616                         driver->getTexture(getTexturePath("skybox1_night.png").c_str()),
617                         driver->getTexture(getTexturePath("skybox1_night.png").c_str()));
618         }
619 }
620
621 /*
622         Draws a screen with a single text on it.
623         Text will be removed when the screen is drawn the next time.
624 */
625 /*gui::IGUIStaticText **/
626 void draw_load_screen(const std::wstring &text,
627                 video::IVideoDriver* driver, gui::IGUIFont* font)
628 {
629         v2u32 screensize = driver->getScreenSize();
630         const wchar_t *loadingtext = text.c_str();
631         core::vector2d<u32> textsize_u = font->getDimension(loadingtext);
632         core::vector2d<s32> textsize(textsize_u.X,textsize_u.Y);
633         core::vector2d<s32> center(screensize.X/2, screensize.Y/2);
634         core::rect<s32> textrect(center - textsize/2, center + textsize/2);
635
636         gui::IGUIStaticText *guitext = guienv->addStaticText(
637                         loadingtext, textrect, false, false);
638         guitext->setTextAlignment(gui::EGUIA_CENTER, gui::EGUIA_UPPERLEFT);
639
640         driver->beginScene(true, true, video::SColor(255,0,0,0));
641         guienv->drawAll();
642         driver->endScene();
643         
644         guitext->remove();
645         
646         //return guitext;
647 }
648
649 void the_game(
650         bool &kill,
651         bool random_input,
652         InputHandler *input,
653         IrrlichtDevice *device,
654         gui::IGUIFont* font,
655         std::string map_dir,
656         std::string playername,
657         std::string password,
658         std::string address,
659         u16 port,
660         std::wstring &error_message,
661     std::string configpath
662 )
663 {
664         video::IVideoDriver* driver = device->getVideoDriver();
665         scene::ISceneManager* smgr = device->getSceneManager();
666         
667         // Calculate text height using the font
668         u32 text_height = font->getDimension(L"Random test string").Height;
669
670         v2u32 screensize(0,0);
671         v2u32 last_screensize(0,0);
672         screensize = driver->getScreenSize();
673
674         const s32 hotbar_itemcount = 8;
675         //const s32 hotbar_imagesize = 36;
676         //const s32 hotbar_imagesize = 64;
677         s32 hotbar_imagesize = 48;
678         
679         // The color of the sky
680
681         //video::SColor skycolor = video::SColor(255,140,186,250);
682
683         video::SColor bgcolor_bright = video::SColor(255,170,200,230);
684
685         /*
686                 Draw "Loading" screen
687         */
688         /*gui::IGUIStaticText *gui_loadingtext = */
689         //draw_load_screen(L"Loading and connecting...", driver, font);
690
691         draw_load_screen(L"Loading...", driver, font);
692         
693         /*
694                 Create server.
695                 SharedPtr will delete it when it goes out of scope.
696         */
697         SharedPtr<Server> server;
698         if(address == ""){
699                 draw_load_screen(L"Creating server...", driver, font);
700                 std::cout<<DTIME<<"Creating server"<<std::endl;
701                 server = new Server(map_dir, configpath);
702                 server->start(port);
703         }
704         
705         /*
706                 Create client
707         */
708
709         draw_load_screen(L"Creating client...", driver, font);
710         std::cout<<DTIME<<"Creating client"<<std::endl;
711         MapDrawControl draw_control;
712         Client client(device, playername.c_str(), password, draw_control);
713                         
714         draw_load_screen(L"Resolving address...", driver, font);
715         Address connect_address(0,0,0,0, port);
716         try{
717                 if(address == "")
718                         //connect_address.Resolve("localhost");
719                         connect_address.setAddress(127,0,0,1);
720                 else
721                         connect_address.Resolve(address.c_str());
722         }
723         catch(ResolveError &e)
724         {
725                 std::cout<<DTIME<<"Couldn't resolve address"<<std::endl;
726                 //return 0;
727                 error_message = L"Couldn't resolve address";
728                 //gui_loadingtext->remove();
729                 return;
730         }
731
732         /*
733                 Attempt to connect to the server
734         */
735         
736         dstream<<DTIME<<"Connecting to server at ";
737         connect_address.print(&dstream);
738         dstream<<std::endl;
739         client.connect(connect_address);
740
741         bool could_connect = false;
742         
743         try{
744                 float time_counter = 0.0;
745                 for(;;)
746                 {
747                         if(client.connectedAndInitialized())
748                         {
749                                 could_connect = true;
750                                 break;
751                         }
752                         if(client.accessDenied())
753                         {
754                                 break;
755                         }
756                         // Wait for 10 seconds
757                         if(time_counter >= 10.0)
758                         {
759                                 break;
760                         }
761                         
762                         std::wostringstream ss;
763                         ss<<L"Connecting to server... (timeout in ";
764                         ss<<(int)(10.0 - time_counter + 1.0);
765                         ss<<L" seconds)";
766                         draw_load_screen(ss.str(), driver, font);
767
768                         /*// Update screen
769                         driver->beginScene(true, true, video::SColor(255,0,0,0));
770                         guienv->drawAll();
771                         driver->endScene();*/
772
773                         // Update client and server
774
775                         client.step(0.1);
776
777                         if(server != NULL)
778                                 server->step(0.1);
779                         
780                         // Delay a bit
781                         sleep_ms(100);
782                         time_counter += 0.1;
783                 }
784         }
785         catch(con::PeerNotFoundException &e)
786         {}
787
788         if(could_connect == false)
789         {
790                 if(client.accessDenied())
791                 {
792                         error_message = L"Access denied. Reason: "
793                                         +client.accessDeniedReason();
794                         std::cout<<DTIME<<wide_to_narrow(error_message)<<std::endl;
795                 }
796                 else
797                 {
798                         error_message = L"Connection timed out.";
799                         std::cout<<DTIME<<"Timed out."<<std::endl;
800                 }
801                 //gui_loadingtext->remove();
802                 return;
803         }
804
805         /*
806                 Create skybox
807         */
808         float old_brightness = 1.0;
809         scene::ISceneNode* skybox = NULL;
810         update_skybox(driver, smgr, skybox, 1.0);
811         
812         /*
813                 Create the camera node
814         */
815         Camera camera(smgr, draw_control);
816         if (!camera.successfullyCreated(error_message))
817                 return;
818
819         f32 camera_yaw = 0; // "right/left"
820         f32 camera_pitch = 0; // "up/down"
821
822         /*
823                 Clouds
824         */
825         
826         float cloud_height = BS*100;
827         Clouds *clouds = NULL;
828         if(g_settings.getBool("enable_clouds"))
829         {
830                 clouds = new Clouds(smgr->getRootSceneNode(), smgr, -1,
831                                 cloud_height, time(0));
832         }
833         
834         /*
835                 FarMesh
836         */
837
838         FarMesh *farmesh = NULL;
839         if(g_settings.getBool("enable_farmesh"))
840         {
841                 farmesh = new FarMesh(smgr->getRootSceneNode(), smgr, -1, client.getMapSeed(), &client);
842         }
843
844         /*
845                 Move into game
846         */
847         
848         //gui_loadingtext->remove();
849
850         /*
851                 Add some gui stuff
852         */
853
854         // First line of debug text
855         gui::IGUIStaticText *guitext = guienv->addStaticText(
856                         L"Minetest-c55",
857                         core::rect<s32>(5, 5, 795, 5+text_height),
858                         false, false);
859         // Second line of debug text
860         gui::IGUIStaticText *guitext2 = guienv->addStaticText(
861                         L"",
862                         core::rect<s32>(5, 5+(text_height+5)*1, 795, (5+text_height)*2),
863                         false, false);
864         
865         // At the middle of the screen
866         // Object infos are shown in this
867         gui::IGUIStaticText *guitext_info = guienv->addStaticText(
868                         L"",
869                         core::rect<s32>(0,0,400,text_height+5) + v2s32(100,200),
870                         false, false);
871         
872         // Chat text
873         gui::IGUIStaticText *guitext_chat = guienv->addStaticText(
874                         L"",
875                         core::rect<s32>(0,0,0,0),
876                         //false, false); // Disable word wrap as of now
877                         false, true);
878         //guitext_chat->setBackgroundColor(video::SColor(96,0,0,0));
879         core::list<ChatLine> chat_lines;
880         
881         /*GUIQuickInventory *quick_inventory = new GUIQuickInventory
882                         (guienv, NULL, v2s32(10, 70), 5, &local_inventory);*/
883         /*GUIQuickInventory *quick_inventory = new GUIQuickInventory
884                         (guienv, NULL, v2s32(0, 0), quickinv_itemcount, &local_inventory);*/
885         
886         // Test the text input system
887         /*(new GUITextInputMenu(guienv, guiroot, -1, &g_menumgr,
888                         NULL))->drop();*/
889         /*GUIMessageMenu *menu =
890                         new GUIMessageMenu(guienv, guiroot, -1, 
891                                 &g_menumgr,
892                                 L"Asd");
893         menu->drop();*/
894         
895         // Launch pause menu
896         (new GUIPauseMenu(guienv, guiroot, -1, g_gamecallback,
897                         &g_menumgr))->drop();
898         
899         // Enable texts
900         /*guitext2->setVisible(true);
901         guitext_info->setVisible(true);
902         guitext_chat->setVisible(true);*/
903
904         //s32 guitext_chat_pad_bottom = 70;
905
906         /*
907                 Some statistics are collected in these
908         */
909         u32 drawtime = 0;
910         u32 beginscenetime = 0;
911         u32 scenetime = 0;
912         u32 endscenetime = 0;
913         
914         // A test
915         //throw con::PeerNotFoundException("lol");
916
917         core::list<float> frametime_log;
918
919         float damage_flash_timer = 0;
920         s16 farmesh_range = 20*MAP_BLOCKSIZE;
921         
922         bool invert_mouse = g_settings.getBool("invert_mouse");
923
924         /*
925                 Main loop
926         */
927
928         bool first_loop_after_window_activation = true;
929
930         // TODO: Convert the static interval timers to these
931         // Interval limiter for profiler
932         IntervalLimiter m_profiler_interval;
933
934         // Time is in milliseconds
935         // NOTE: getRealTime() causes strange problems in wine (imprecision?)
936         // NOTE: So we have to use getTime() and call run()s between them
937         u32 lasttime = device->getTimer()->getTime();
938
939         while(device->run() && kill == false)
940         {
941                 //std::cerr<<"frame"<<std::endl;
942
943                 if(client.accessDenied())
944                 {
945                         error_message = L"Access denied. Reason: "
946                                         +client.accessDeniedReason();
947                         std::cout<<DTIME<<wide_to_narrow(error_message)<<std::endl;
948                         break;
949                 }
950
951                 if(g_gamecallback->disconnect_requested)
952                 {
953                         g_gamecallback->disconnect_requested = false;
954                         break;
955                 }
956
957                 if(g_gamecallback->changepassword_requested)
958                 {
959                         (new GUIPasswordChange(guienv, guiroot, -1,
960                                 &g_menumgr, &client))->drop();
961                         g_gamecallback->changepassword_requested = false;
962                 }
963
964                 /*
965                         Process TextureSource's queue
966                 */
967                 ((TextureSource*)g_texturesource)->processQueue();
968
969                 /*
970                         Random calculations
971                 */
972                 last_screensize = screensize;
973                 screensize = driver->getScreenSize();
974                 v2s32 displaycenter(screensize.X/2,screensize.Y/2);
975                 //bool screensize_changed = screensize != last_screensize;
976
977                 // Resize hotbar
978                 if(screensize.Y <= 800)
979                         hotbar_imagesize = 32;
980                 else if(screensize.Y <= 1280)
981                         hotbar_imagesize = 48;
982                 else
983                         hotbar_imagesize = 64;
984                 
985                 // Hilight boxes collected during the loop and displayed
986                 core::list< core::aabbox3d<f32> > hilightboxes;
987                 
988                 // Info text
989                 std::wstring infotext;
990
991                 // When screen size changes, update positions and sizes of stuff
992                 /*if(screensize_changed)
993                 {
994                         v2s32 pos(displaycenter.X-((quickinv_itemcount-1)*quickinv_spacing+quickinv_size)/2, screensize.Y-quickinv_spacing);
995                         quick_inventory->updatePosition(pos);
996                 }*/
997
998                 //TimeTaker //timer1("//timer1");
999                 
1000                 // Time of frame without fps limit
1001                 float busytime;
1002                 u32 busytime_u32;
1003                 {
1004                         // not using getRealTime is necessary for wine
1005                         u32 time = device->getTimer()->getTime();
1006                         if(time > lasttime)
1007                                 busytime_u32 = time - lasttime;
1008                         else
1009                                 busytime_u32 = 0;
1010                         busytime = busytime_u32 / 1000.0;
1011                 }
1012
1013                 //std::cout<<"busytime_u32="<<busytime_u32<<std::endl;
1014         
1015                 // Necessary for device->getTimer()->getTime()
1016                 device->run();
1017
1018                 /*
1019                         FPS limiter
1020                 */
1021
1022                 {
1023                         float fps_max = g_settings.getFloat("fps_max");
1024                         u32 frametime_min = 1000./fps_max;
1025                         
1026                         if(busytime_u32 < frametime_min)
1027                         {
1028                                 u32 sleeptime = frametime_min - busytime_u32;
1029                                 device->sleep(sleeptime);
1030                         }
1031                 }
1032
1033                 // Necessary for device->getTimer()->getTime()
1034                 device->run();
1035
1036                 /*
1037                         Time difference calculation
1038                 */
1039                 f32 dtime; // in seconds
1040                 
1041                 u32 time = device->getTimer()->getTime();
1042                 if(time > lasttime)
1043                         dtime = (time - lasttime) / 1000.0;
1044                 else
1045                         dtime = 0;
1046                 lasttime = time;
1047
1048                 /*
1049                         Log frametime for visualization
1050                 */
1051                 frametime_log.push_back(dtime);
1052                 if(frametime_log.size() > 100)
1053                 {
1054                         core::list<float>::Iterator i = frametime_log.begin();
1055                         frametime_log.erase(i);
1056                 }
1057
1058                 /*
1059                         Visualize frametime in terminal
1060                 */
1061                 /*for(u32 i=0; i<dtime*400; i++)
1062                         std::cout<<"X";
1063                 std::cout<<std::endl;*/
1064
1065                 /*
1066                         Time average and jitter calculation
1067                 */
1068
1069                 static f32 dtime_avg1 = 0.0;
1070                 dtime_avg1 = dtime_avg1 * 0.96 + dtime * 0.04;
1071                 f32 dtime_jitter1 = dtime - dtime_avg1;
1072
1073                 static f32 dtime_jitter1_max_sample = 0.0;
1074                 static f32 dtime_jitter1_max_fraction = 0.0;
1075                 {
1076                         static f32 jitter1_max = 0.0;
1077                         static f32 counter = 0.0;
1078                         if(dtime_jitter1 > jitter1_max)
1079                                 jitter1_max = dtime_jitter1;
1080                         counter += dtime;
1081                         if(counter > 0.0)
1082                         {
1083                                 counter -= 3.0;
1084                                 dtime_jitter1_max_sample = jitter1_max;
1085                                 dtime_jitter1_max_fraction
1086                                                 = dtime_jitter1_max_sample / (dtime_avg1+0.001);
1087                                 jitter1_max = 0.0;
1088                         }
1089                 }
1090                 
1091                 /*
1092                         Busytime average and jitter calculation
1093                 */
1094
1095                 static f32 busytime_avg1 = 0.0;
1096                 busytime_avg1 = busytime_avg1 * 0.98 + busytime * 0.02;
1097                 f32 busytime_jitter1 = busytime - busytime_avg1;
1098                 
1099                 static f32 busytime_jitter1_max_sample = 0.0;
1100                 static f32 busytime_jitter1_min_sample = 0.0;
1101                 {
1102                         static f32 jitter1_max = 0.0;
1103                         static f32 jitter1_min = 0.0;
1104                         static f32 counter = 0.0;
1105                         if(busytime_jitter1 > jitter1_max)
1106                                 jitter1_max = busytime_jitter1;
1107                         if(busytime_jitter1 < jitter1_min)
1108                                 jitter1_min = busytime_jitter1;
1109                         counter += dtime;
1110                         if(counter > 0.0){
1111                                 counter -= 3.0;
1112                                 busytime_jitter1_max_sample = jitter1_max;
1113                                 busytime_jitter1_min_sample = jitter1_min;
1114                                 jitter1_max = 0.0;
1115                                 jitter1_min = 0.0;
1116                         }
1117                 }
1118                 
1119                 /*
1120                         Debug info for client
1121                 */
1122                 {
1123                         static float counter = 0.0;
1124                         counter -= dtime;
1125                         if(counter < 0)
1126                         {
1127                                 counter = 30.0;
1128                                 client.printDebugInfo(std::cout);
1129                         }
1130                 }
1131
1132                 /*
1133                         Profiler
1134                 */
1135                 float profiler_print_interval =
1136                                 g_settings.getFloat("profiler_print_interval");
1137                 if(profiler_print_interval != 0)
1138                 {
1139                         if(m_profiler_interval.step(0.030, profiler_print_interval))
1140                         {
1141                                 dstream<<"Profiler:"<<std::endl;
1142                                 g_profiler.print(dstream);
1143                                 g_profiler.clear();
1144                         }
1145                 }
1146
1147                 /*
1148                         Direct handling of user input
1149                 */
1150                 
1151                 // Reset input if window not active or some menu is active
1152                 if(device->isWindowActive() == false || noMenuActive() == false)
1153                 {
1154                         input->clear();
1155                 }
1156
1157                 // Input handler step() (used by the random input generator)
1158                 input->step(dtime);
1159
1160                 /*
1161                         Launch menus according to keys
1162                 */
1163                 if(input->wasKeyDown(getKeySetting("keymap_inventory")))
1164                 {
1165                         dstream<<DTIME<<"the_game: "
1166                                         <<"Launching inventory"<<std::endl;
1167                         
1168                         GUIInventoryMenu *menu =
1169                                 new GUIInventoryMenu(guienv, guiroot, -1,
1170                                         &g_menumgr, v2s16(8,7),
1171                                         client.getInventoryContext(),
1172                                         &client);
1173
1174                         core::array<GUIInventoryMenu::DrawSpec> draw_spec;
1175                         draw_spec.push_back(GUIInventoryMenu::DrawSpec(
1176                                         "list", "current_player", "main",
1177                                         v2s32(0, 3), v2s32(8, 4)));
1178                         draw_spec.push_back(GUIInventoryMenu::DrawSpec(
1179                                         "list", "current_player", "craft",
1180                                         v2s32(3, 0), v2s32(3, 3)));
1181                         draw_spec.push_back(GUIInventoryMenu::DrawSpec(
1182                                         "list", "current_player", "craftresult",
1183                                         v2s32(7, 1), v2s32(1, 1)));
1184
1185                         menu->setDrawSpec(draw_spec);
1186
1187                         menu->drop();
1188                 }
1189                 else if(input->wasKeyDown(EscapeKey))
1190                 {
1191                         dstream<<DTIME<<"the_game: "
1192                                         <<"Launching pause menu"<<std::endl;
1193                         // It will delete itself by itself
1194                         (new GUIPauseMenu(guienv, guiroot, -1, g_gamecallback,
1195                                         &g_menumgr))->drop();
1196
1197                         // Move mouse cursor on top of the disconnect button
1198                         input->setMousePos(displaycenter.X, displaycenter.Y+25);
1199                 }
1200                 else if(input->wasKeyDown(getKeySetting("keymap_chat")))
1201                 {
1202                         TextDest *dest = new TextDestChat(&client);
1203
1204                         (new GUITextInputMenu(guienv, guiroot, -1,
1205                                         &g_menumgr, dest,
1206                                         L""))->drop();
1207                 }
1208                 else if(input->wasKeyDown(getKeySetting("keymap_cmd")))
1209                 {
1210                         TextDest *dest = new TextDestChat(&client);
1211
1212                         (new GUITextInputMenu(guienv, guiroot, -1,
1213                                         &g_menumgr, dest,
1214                                         L"/"))->drop();
1215                 }
1216                 else if(input->wasKeyDown(getKeySetting("keymap_freemove")))
1217                 {
1218                         if(g_settings.getBool("free_move"))
1219                         {
1220                                 g_settings.set("free_move","false");
1221                                 chat_lines.push_back(ChatLine(L"free_move disabled"));
1222                         }
1223                         else
1224                         {
1225                                 g_settings.set("free_move","true");
1226                                 chat_lines.push_back(ChatLine(L"free_move enabled"));
1227                         }
1228                 }
1229                 else if(input->wasKeyDown(getKeySetting("keymap_fastmove")))
1230                 {
1231                         if(g_settings.getBool("fast_move"))
1232                         {
1233                                 g_settings.set("fast_move","false");
1234                                 chat_lines.push_back(ChatLine(L"fast_move disabled"));
1235                         }
1236                         else
1237                         {
1238                                 g_settings.set("fast_move","true");
1239                                 chat_lines.push_back(ChatLine(L"fast_move enabled"));
1240                         }
1241                 }
1242                 else if(input->wasKeyDown(getKeySetting("keymap_frametime_graph")))
1243                 {
1244                         if(g_settings.getBool("frametime_graph"))
1245                         {
1246                                 g_settings.set("frametime_graph","false");
1247                                 chat_lines.push_back(ChatLine(L"frametime_graph disabled"));
1248                         }
1249                         else
1250                         {
1251                                 g_settings.set("frametime_graph","true");
1252                                 chat_lines.push_back(ChatLine(L"frametime_graph enabled"));
1253                         }
1254                 }
1255                 else if(input->wasKeyDown(getKeySetting("keymap_screenshot")))
1256                 {
1257                         irr::video::IImage* const image = driver->createScreenShot(); 
1258                         if (image) { 
1259                                 irr::c8 filename[256]; 
1260                                 snprintf(filename, 256, "%s/screenshot_%u.png", 
1261                                                  g_settings.get("screenshot_path").c_str(),
1262                                                  device->getTimer()->getRealTime()); 
1263                                 if (driver->writeImageToFile(image, filename)) {
1264                                         std::wstringstream sstr;
1265                                         sstr<<"Saved screenshot to '"<<filename<<"'";
1266                                         dstream<<"Saved screenshot to '"<<filename<<"'"<<std::endl;
1267                                         chat_lines.push_back(ChatLine(sstr.str()));
1268                                 } else{
1269                                         dstream<<"Failed to save screenshot '"<<filename<<"'"<<std::endl;
1270                                 }
1271                                 image->drop(); 
1272                         }                        
1273                 }
1274
1275                 // Item selection with mouse wheel
1276                 {
1277                         s32 wheel = input->getMouseWheel();
1278                         u16 max_item = MYMIN(PLAYER_INVENTORY_SIZE-1,
1279                                         hotbar_itemcount-1);
1280
1281                         if(wheel < 0)
1282                         {
1283                                 if(g_selected_item < max_item)
1284                                         g_selected_item++;
1285                                 else
1286                                         g_selected_item = 0;
1287                         }
1288                         else if(wheel > 0)
1289                         {
1290                                 if(g_selected_item > 0)
1291                                         g_selected_item--;
1292                                 else
1293                                         g_selected_item = max_item;
1294                         }
1295                 }
1296                 
1297                 // Item selection
1298                 for(u16 i=0; i<10; i++)
1299                 {
1300                         const KeyPress *kp = NumberKey + (i + 1) % 10;
1301                         if(input->wasKeyDown(*kp))
1302                         {
1303                                 if(i < PLAYER_INVENTORY_SIZE && i < hotbar_itemcount)
1304                                 {
1305                                         g_selected_item = i;
1306
1307                                         dstream<<DTIME<<"Selected item: "
1308                                                         <<g_selected_item<<std::endl;
1309                                 }
1310                         }
1311                 }
1312
1313                 // Viewing range selection
1314                 if(input->wasKeyDown(getKeySetting("keymap_rangeselect")))
1315                 {
1316                         if(draw_control.range_all)
1317                         {
1318                                 draw_control.range_all = false;
1319                                 dstream<<DTIME<<"Disabled full viewing range"<<std::endl;
1320                         }
1321                         else
1322                         {
1323                                 draw_control.range_all = true;
1324                                 dstream<<DTIME<<"Enabled full viewing range"<<std::endl;
1325                         }
1326                 }
1327
1328                 // Print debug stacks
1329                 if(input->wasKeyDown(getKeySetting("keymap_print_debug_stacks")))
1330                 {
1331                         dstream<<"-----------------------------------------"
1332                                         <<std::endl;
1333                         dstream<<DTIME<<"Printing debug stacks:"<<std::endl;
1334                         dstream<<"-----------------------------------------"
1335                                         <<std::endl;
1336                         debug_stacks_print();
1337                 }
1338
1339                 /*
1340                         Mouse and camera control
1341                         NOTE: Do this before client.setPlayerControl() to not cause a camera lag of one frame
1342                 */
1343                 
1344                 if((device->isWindowActive() && noMenuActive()) || random_input)
1345                 {
1346                         if(!random_input)
1347                         {
1348                                 // Mac OSX gets upset if this is set every frame
1349                                 if(device->getCursorControl()->isVisible())
1350                                         device->getCursorControl()->setVisible(false);
1351                         }
1352
1353                         if(first_loop_after_window_activation){
1354                                 //std::cout<<"window active, first loop"<<std::endl;
1355                                 first_loop_after_window_activation = false;
1356                         }
1357                         else{
1358                                 s32 dx = input->getMousePos().X - displaycenter.X;
1359                                 s32 dy = input->getMousePos().Y - displaycenter.Y;
1360                                 if(invert_mouse)
1361                                         dy = -dy;
1362                                 //std::cout<<"window active, pos difference "<<dx<<","<<dy<<std::endl;
1363                                 
1364                                 /*const float keyspeed = 500;
1365                                 if(input->isKeyDown(irr::KEY_UP))
1366                                         dy -= dtime * keyspeed;
1367                                 if(input->isKeyDown(irr::KEY_DOWN))
1368                                         dy += dtime * keyspeed;
1369                                 if(input->isKeyDown(irr::KEY_LEFT))
1370                                         dx -= dtime * keyspeed;
1371                                 if(input->isKeyDown(irr::KEY_RIGHT))
1372                                         dx += dtime * keyspeed;*/
1373
1374                                 camera_yaw -= dx*0.2;
1375                                 camera_pitch += dy*0.2;
1376                                 if(camera_pitch < -89.5) camera_pitch = -89.5;
1377                                 if(camera_pitch > 89.5) camera_pitch = 89.5;
1378                         }
1379                         input->setMousePos(displaycenter.X, displaycenter.Y);
1380                 }
1381                 else{
1382                         // Mac OSX gets upset if this is set every frame
1383                         if(device->getCursorControl()->isVisible() == false)
1384                                 device->getCursorControl()->setVisible(true);
1385
1386                         //std::cout<<"window inactive"<<std::endl;
1387                         first_loop_after_window_activation = true;
1388                 }
1389
1390                 /*
1391                         Player speed control
1392                         TODO: Cache the keycodes from getKeySetting
1393                 */
1394                 
1395                 {
1396                         /*bool a_up,
1397                         bool a_down,
1398                         bool a_left,
1399                         bool a_right,
1400                         bool a_jump,
1401                         bool a_superspeed,
1402                         bool a_sneak,
1403                         float a_pitch,
1404                         float a_yaw*/
1405                         PlayerControl control(
1406                                 input->isKeyDown(getKeySetting("keymap_forward")),
1407                                 input->isKeyDown(getKeySetting("keymap_backward")),
1408                                 input->isKeyDown(getKeySetting("keymap_left")),
1409                                 input->isKeyDown(getKeySetting("keymap_right")),
1410                                 input->isKeyDown(getKeySetting("keymap_jump")),
1411                                 input->isKeyDown(getKeySetting("keymap_special1")),
1412                                 input->isKeyDown(getKeySetting("keymap_sneak")),
1413                                 camera_pitch,
1414                                 camera_yaw
1415                         );
1416                         client.setPlayerControl(control);
1417                 }
1418                 
1419                 /*
1420                         Run server
1421                 */
1422
1423                 if(server != NULL)
1424                 {
1425                         //TimeTaker timer("server->step(dtime)");
1426                         server->step(dtime);
1427                 }
1428
1429                 /*
1430                         Process environment
1431                 */
1432                 
1433                 {
1434                         //TimeTaker timer("client.step(dtime)");
1435                         client.step(dtime);
1436                         //client.step(dtime_avg1);
1437                 }
1438
1439                 // Read client events
1440                 for(;;)
1441                 {
1442                         ClientEvent event = client.getClientEvent();
1443                         if(event.type == CE_NONE)
1444                         {
1445                                 break;
1446                         }
1447                         else if(event.type == CE_PLAYER_DAMAGE)
1448                         {
1449                                 //u16 damage = event.player_damage.amount;
1450                                 //dstream<<"Player damage: "<<damage<<std::endl;
1451                                 damage_flash_timer = 0.05;
1452                         }
1453                         else if(event.type == CE_PLAYER_FORCE_MOVE)
1454                         {
1455                                 camera_yaw = event.player_force_move.yaw;
1456                                 camera_pitch = event.player_force_move.pitch;
1457                         }
1458                 }
1459                 
1460                 //TimeTaker //timer2("//timer2");
1461
1462                 LocalPlayer* player = client.getLocalPlayer();
1463                 camera.update(player, busytime, screensize);
1464                 camera.step(dtime);
1465
1466                 v3f player_position = player->getPosition();
1467                 v3f camera_position = camera.getPosition();
1468                 v3f camera_direction = camera.getDirection();
1469                 f32 camera_fov = camera.getFovMax();
1470
1471                 if(FIELD_OF_VIEW_TEST)
1472                 {
1473                         client.updateCamera(v3f(0,0,0), v3f(0,0,1), camera_fov);
1474                 }
1475                 else
1476                 {
1477                         client.updateCamera(camera_position,
1478                                 camera_direction, camera_fov);
1479                 }
1480
1481                 //timer2.stop();
1482                 //TimeTaker //timer3("//timer3");
1483
1484                 /*
1485                         Calculate what block is the crosshair pointing to
1486                 */
1487                 
1488                 //u32 t1 = device->getTimer()->getRealTime();
1489                 
1490                 //f32 d = 4; // max. distance
1491                 f32 d = 4; // max. distance
1492                 core::line3d<f32> shootline(camera_position,
1493                                 camera_position + camera_direction * BS * (d+1));
1494
1495                 MapBlockObject *selected_object = client.getSelectedObject
1496                                 (d*BS, camera_position, shootline);
1497
1498                 ClientActiveObject *selected_active_object
1499                                 = client.getSelectedActiveObject
1500                                         (d*BS, camera_position, shootline);
1501
1502                 if(selected_object != NULL)
1503                 {
1504                         //dstream<<"Client returned selected_object != NULL"<<std::endl;
1505
1506                         core::aabbox3d<f32> box_on_map
1507                                         = selected_object->getSelectionBoxOnMap();
1508
1509                         hilightboxes.push_back(box_on_map);
1510
1511                         infotext = narrow_to_wide(selected_object->infoText());
1512
1513                         if(input->getLeftClicked())
1514                         {
1515                                 std::cout<<DTIME<<"Left-clicked object"<<std::endl;
1516                                 client.clickObject(0, selected_object->getBlock()->getPos(),
1517                                                 selected_object->getId(), g_selected_item);
1518                         }
1519                         else if(input->getRightClicked())
1520                         {
1521                                 std::cout<<DTIME<<"Right-clicked object"<<std::endl;
1522                                 /*
1523                                         Check if we want to modify the object ourselves
1524                                 */
1525                                 if(selected_object->getTypeId() == MAPBLOCKOBJECT_TYPE_SIGN)
1526                                 {
1527                                         dstream<<"Sign object right-clicked"<<std::endl;
1528                                         
1529                                         if(random_input == false)
1530                                         {
1531                                                 // Get a new text for it
1532
1533                                                 TextDest *dest = new TextDestSign(
1534                                                                 selected_object->getBlock()->getPos(),
1535                                                                 selected_object->getId(),
1536                                                                 &client);
1537
1538                                                 SignObject *sign_object = (SignObject*)selected_object;
1539
1540                                                 std::wstring wtext =
1541                                                                 narrow_to_wide(sign_object->getText());
1542
1543                                                 (new GUITextInputMenu(guienv, guiroot, -1,
1544                                                                 &g_menumgr, dest,
1545                                                                 wtext))->drop();
1546                                         }
1547                                 }
1548                                 /*
1549                                         Otherwise pass the event to the server as-is
1550                                 */
1551                                 else
1552                                 {
1553                                         client.clickObject(1, selected_object->getBlock()->getPos(),
1554                                                         selected_object->getId(), g_selected_item);
1555                                 }
1556                         }
1557                 }
1558                 else if(selected_active_object != NULL)
1559                 {
1560                         //dstream<<"Client returned selected_active_object != NULL"<<std::endl;
1561                         
1562                         core::aabbox3d<f32> *selection_box
1563                                         = selected_active_object->getSelectionBox();
1564                         // Box should exist because object was returned in the
1565                         // first place
1566                         assert(selection_box);
1567
1568                         v3f pos = selected_active_object->getPosition();
1569
1570                         core::aabbox3d<f32> box_on_map(
1571                                         selection_box->MinEdge + pos,
1572                                         selection_box->MaxEdge + pos
1573                         );
1574
1575                         hilightboxes.push_back(box_on_map);
1576
1577                         //infotext = narrow_to_wide("A ClientActiveObject");
1578                         infotext = narrow_to_wide(selected_active_object->infoText());
1579
1580                         if(input->getLeftClicked())
1581                         {
1582                                 std::cout<<DTIME<<"Left-clicked object"<<std::endl;
1583                                 client.clickActiveObject(0,
1584                                                 selected_active_object->getId(), g_selected_item);
1585                         }
1586                         else if(input->getRightClicked())
1587                         {
1588                                 std::cout<<DTIME<<"Right-clicked object"<<std::endl;
1589                                 client.clickActiveObject(1,
1590                                                 selected_active_object->getId(), g_selected_item);
1591                         }
1592                 }
1593                 else // selected_object == NULL
1594                 {
1595
1596                 /*
1597                         Find out which node we are pointing at
1598                 */
1599                 
1600                 bool nodefound = false;
1601                 v3s16 nodepos;
1602                 v3s16 neighbourpos;
1603                 core::aabbox3d<f32> nodehilightbox;
1604
1605                 getPointedNode(&client, player_position,
1606                                 camera_direction, camera_position,
1607                                 nodefound, shootline,
1608                                 nodepos, neighbourpos,
1609                                 nodehilightbox, d);
1610         
1611                 static float nodig_delay_counter = 0.0;
1612
1613                 if(nodefound)
1614                 {
1615                         static v3s16 nodepos_old(-32768,-32768,-32768);
1616
1617                         static float dig_time = 0.0;
1618                         static u16 dig_index = 0;
1619                         
1620                         /*
1621                                 Visualize selection
1622                         */
1623
1624                         hilightboxes.push_back(nodehilightbox);
1625
1626                         /*
1627                                 Check information text of node
1628                         */
1629
1630                         NodeMetadata *meta = client.getNodeMetadata(nodepos);
1631                         if(meta)
1632                         {
1633                                 infotext = narrow_to_wide(meta->infoText());
1634                         }
1635                         
1636                         //MapNode node = client.getNode(nodepos);
1637
1638                         /*
1639                                 Handle digging
1640                         */
1641                         
1642                         if(input->getLeftReleased())
1643                         {
1644                                 client.clearTempMod(nodepos);
1645                                 dig_time = 0.0;
1646                         }
1647                         
1648                         if(nodig_delay_counter > 0.0)
1649                         {
1650                                 nodig_delay_counter -= dtime;
1651                         }
1652                         else
1653                         {
1654                                 if(nodepos != nodepos_old)
1655                                 {
1656                                         std::cout<<DTIME<<"Pointing at ("<<nodepos.X<<","
1657                                                         <<nodepos.Y<<","<<nodepos.Z<<")"<<std::endl;
1658
1659                                         if(nodepos_old != v3s16(-32768,-32768,-32768))
1660                                         {
1661                                                 client.clearTempMod(nodepos_old);
1662                                                 dig_time = 0.0;
1663                                         }
1664                                 }
1665
1666                                 if(input->getLeftClicked() ||
1667                                                 (input->getLeftState() && nodepos != nodepos_old))
1668                                 {
1669                                         dstream<<DTIME<<"Started digging"<<std::endl;
1670                                         client.groundAction(0, nodepos, neighbourpos, g_selected_item);
1671                                 }
1672                                 if(input->getLeftClicked())
1673                                 {
1674                                         client.setTempMod(nodepos, NodeMod(NODEMOD_CRACK, 0));
1675                                 }
1676                                 if(input->getLeftState())
1677                                 {
1678                                         MapNode n = client.getNode(nodepos);
1679                                 
1680                                         // Get tool name. Default is "" = bare hands
1681                                         std::string toolname = "";
1682                                         InventoryList *mlist = local_inventory.getList("main");
1683                                         if(mlist != NULL)
1684                                         {
1685                                                 InventoryItem *item = mlist->getItem(g_selected_item);
1686                                                 if(item && (std::string)item->getName() == "ToolItem")
1687                                                 {
1688                                                         ToolItem *titem = (ToolItem*)item;
1689                                                         toolname = titem->getToolName();
1690                                                 }
1691                                         }
1692
1693                                         // Get digging properties for material and tool
1694                                         content_t material = n.getContent();
1695                                         DiggingProperties prop =
1696                                                         getDiggingProperties(material, toolname);
1697                                         
1698                                         float dig_time_complete = 0.0;
1699
1700                                         if(prop.diggable == false)
1701                                         {
1702                                                 /*dstream<<"Material "<<(int)material
1703                                                                 <<" not diggable with \""
1704                                                                 <<toolname<<"\""<<std::endl;*/
1705                                                 // I guess nobody will wait for this long
1706                                                 dig_time_complete = 10000000.0;
1707                                         }
1708                                         else
1709                                         {
1710                                                 dig_time_complete = prop.time;
1711                                         }
1712                                         
1713                                         if(dig_time_complete >= 0.001)
1714                                         {
1715                                                 dig_index = (u16)((float)CRACK_ANIMATION_LENGTH
1716                                                                 * dig_time/dig_time_complete);
1717                                         }
1718                                         // This is for torches
1719                                         else
1720                                         {
1721                                                 dig_index = CRACK_ANIMATION_LENGTH;
1722                                         }
1723
1724                                         if(dig_index < CRACK_ANIMATION_LENGTH)
1725                                         {
1726                                                 //TimeTaker timer("client.setTempMod");
1727                                                 //dstream<<"dig_index="<<dig_index<<std::endl;
1728                                                 client.setTempMod(nodepos, NodeMod(NODEMOD_CRACK, dig_index));
1729                                         }
1730                                         else
1731                                         {
1732                                                 dstream<<DTIME<<"Digging completed"<<std::endl;
1733                                                 client.groundAction(3, nodepos, neighbourpos, g_selected_item);
1734                                                 client.clearTempMod(nodepos);
1735                                                 client.removeNode(nodepos);
1736
1737                                                 dig_time = 0;
1738
1739                                                 nodig_delay_counter = dig_time_complete
1740                                                                 / (float)CRACK_ANIMATION_LENGTH;
1741
1742                                                 // We don't want a corresponding delay to
1743                                                 // very time consuming nodes
1744                                                 if(nodig_delay_counter > 0.5)
1745                                                 {
1746                                                         nodig_delay_counter = 0.5;
1747                                                 }
1748                                                 // We want a slight delay to very little
1749                                                 // time consuming nodes
1750                                                 float mindelay = 0.15;
1751                                                 if(nodig_delay_counter < mindelay)
1752                                                 {
1753                                                         nodig_delay_counter = mindelay;
1754                                                 }
1755                                         }
1756
1757                                         dig_time += dtime;
1758
1759                                         camera.setDigging(0);  // left click animation
1760                                 }
1761                         }
1762                         
1763                         
1764                         if(input->getRightClicked())
1765                         {
1766                                 std::cout<<DTIME<<"Ground right-clicked"<<std::endl;
1767                                 
1768                                 // If metadata provides an inventory view, activate it
1769                                 if(meta && meta->getInventoryDrawSpecString() != "" && !random_input)
1770                                 {
1771                                         dstream<<DTIME<<"Launching custom inventory view"<<std::endl;
1772                                         /*
1773                                                 Construct the unique identification string of the node
1774                                         */
1775                                         std::string current_name;
1776                                         current_name += "nodemeta:";
1777                                         current_name += itos(nodepos.X);
1778                                         current_name += ",";
1779                                         current_name += itos(nodepos.Y);
1780                                         current_name += ",";
1781                                         current_name += itos(nodepos.Z);
1782                                         
1783                                         /*
1784                                                 Create menu
1785                                         */
1786
1787                                         core::array<GUIInventoryMenu::DrawSpec> draw_spec;
1788                                         v2s16 invsize =
1789                                                 GUIInventoryMenu::makeDrawSpecArrayFromString(
1790                                                         draw_spec,
1791                                                         meta->getInventoryDrawSpecString(),
1792                                                         current_name);
1793
1794                                         GUIInventoryMenu *menu =
1795                                                 new GUIInventoryMenu(guienv, guiroot, -1,
1796                                                         &g_menumgr, invsize,
1797                                                         client.getInventoryContext(),
1798                                                         &client);
1799                                         menu->setDrawSpec(draw_spec);
1800                                         menu->drop();
1801                                 }
1802                                 else if(meta && meta->typeId() == CONTENT_SIGN_WALL && !random_input)
1803                                 {
1804                                         dstream<<"Sign node right-clicked"<<std::endl;
1805                                         
1806                                         SignNodeMetadata *signmeta = (SignNodeMetadata*)meta;
1807                                         
1808                                         // Get a new text for it
1809
1810                                         TextDest *dest = new TextDestSignNode(nodepos, &client);
1811
1812                                         std::wstring wtext =
1813                                                         narrow_to_wide(signmeta->getText());
1814
1815                                         (new GUITextInputMenu(guienv, guiroot, -1,
1816                                                         &g_menumgr, dest,
1817                                                         wtext))->drop();
1818                                 }
1819                                 else
1820                                 {
1821                                         client.groundAction(1, nodepos, neighbourpos, g_selected_item);
1822                                         camera.setDigging(1);  // right click animation
1823                                 }
1824                         }
1825                         
1826                         nodepos_old = nodepos;
1827                 }
1828
1829                 } // selected_object == NULL
1830                 
1831                 if(input->getLeftClicked())
1832                 {
1833                         camera.setDigging(0); // left click animation
1834                 }
1835
1836                 input->resetLeftClicked();
1837                 input->resetRightClicked();
1838                 
1839                 if(input->getLeftReleased())
1840                 {
1841                         std::cout<<DTIME<<"Left button released (stopped digging)"
1842                                         <<std::endl;
1843                         client.groundAction(2, v3s16(0,0,0), v3s16(0,0,0), 0);
1844                 }
1845                 if(input->getRightReleased())
1846                 {
1847                         //std::cout<<DTIME<<"Right released"<<std::endl;
1848                         // Nothing here
1849                 }
1850                 
1851                 input->resetLeftReleased();
1852                 input->resetRightReleased();
1853                 
1854                 /*
1855                         Calculate stuff for drawing
1856                 */
1857
1858                 u32 daynight_ratio = client.getDayNightRatio();
1859                 u8 l = decode_light((daynight_ratio * LIGHT_SUN) / 1000);
1860                 video::SColor bgcolor = video::SColor(
1861                                 255,
1862                                 bgcolor_bright.getRed() * l / 255,
1863                                 bgcolor_bright.getGreen() * l / 255,
1864                                 bgcolor_bright.getBlue() * l / 255);
1865                                 /*skycolor.getRed() * l / 255,
1866                                 skycolor.getGreen() * l / 255,
1867                                 skycolor.getBlue() * l / 255);*/
1868
1869                 float brightness = (float)l/255.0;
1870
1871                 /*
1872                         Update skybox
1873                 */
1874                 if(fabs(brightness - old_brightness) > 0.01)
1875                         update_skybox(driver, smgr, skybox, brightness);
1876
1877                 /*
1878                         Update clouds
1879                 */
1880                 if(clouds)
1881                 {
1882                         clouds->step(dtime);
1883                         clouds->update(v2f(player_position.X, player_position.Z),
1884                                         0.05+brightness*0.95);
1885                 }
1886                 
1887                 /*
1888                         Update farmesh
1889                 */
1890                 if(farmesh)
1891                 {
1892                         farmesh_range = draw_control.wanted_range * 10;
1893                         if(draw_control.range_all && farmesh_range < 500)
1894                                 farmesh_range = 500;
1895                         if(farmesh_range > 1000)
1896                                 farmesh_range = 1000;
1897
1898                         farmesh->step(dtime);
1899                         farmesh->update(v2f(player_position.X, player_position.Z),
1900                                         0.05+brightness*0.95, farmesh_range);
1901                 }
1902                 
1903                 // Store brightness value
1904                 old_brightness = brightness;
1905
1906                 /*
1907                         Fog
1908                 */
1909                 
1910                 if(g_settings.getBool("enable_fog") == true)
1911                 {
1912                         f32 range;
1913                         if(farmesh)
1914                         {
1915                                 range = BS*farmesh_range;
1916                         }
1917                         else
1918                         {
1919                                 range = draw_control.wanted_range*BS + MAP_BLOCKSIZE*BS*1.5;
1920                                 if(draw_control.range_all)
1921                                         range = 100000*BS;
1922                                 if(range < 50*BS)
1923                                         range = range * 0.5 + 25*BS;
1924                         }
1925
1926                         driver->setFog(
1927                                 bgcolor,
1928                                 video::EFT_FOG_LINEAR,
1929                                 range*0.4,
1930                                 range*1.0,
1931                                 0.01,
1932                                 false, // pixel fog
1933                                 false // range fog
1934                         );
1935                 }
1936                 else
1937                 {
1938                         driver->setFog(
1939                                 bgcolor,
1940                                 video::EFT_FOG_LINEAR,
1941                                 100000*BS,
1942                                 110000*BS,
1943                                 0.01,
1944                                 false, // pixel fog
1945                                 false // range fog
1946                         );
1947                 }
1948
1949                 /*
1950                         Update gui stuff (0ms)
1951                 */
1952
1953                 //TimeTaker guiupdatetimer("Gui updating");
1954                 
1955                 {
1956                         static float drawtime_avg = 0;
1957                         drawtime_avg = drawtime_avg * 0.95 + (float)drawtime*0.05;
1958                         static float beginscenetime_avg = 0;
1959                         beginscenetime_avg = beginscenetime_avg * 0.95 + (float)beginscenetime*0.05;
1960                         static float scenetime_avg = 0;
1961                         scenetime_avg = scenetime_avg * 0.95 + (float)scenetime*0.05;
1962                         static float endscenetime_avg = 0;
1963                         endscenetime_avg = endscenetime_avg * 0.95 + (float)endscenetime*0.05;
1964                         
1965                         char temptext[300];
1966                         snprintf(temptext, 300, "Minetest-c55 %s ("
1967                                         "R: range_all=%i"
1968                                         ")"
1969                                         " drawtime=%.0f, beginscenetime=%.0f"
1970                                         ", scenetime=%.0f, endscenetime=%.0f",
1971                                         VERSION_STRING,
1972                                         draw_control.range_all,
1973                                         drawtime_avg,
1974                                         beginscenetime_avg,
1975                                         scenetime_avg,
1976                                         endscenetime_avg
1977                                         );
1978                         
1979                         guitext->setText(narrow_to_wide(temptext).c_str());
1980                 }
1981                 
1982                 {
1983                         char temptext[300];
1984                         snprintf(temptext, 300,
1985                                         "(% .1f, % .1f, % .1f)"
1986                                         " (% .3f < btime_jitter < % .3f"
1987                                         ", dtime_jitter = % .1f %%"
1988                                         ", v_range = %.1f)",
1989                                         player_position.X/BS,
1990                                         player_position.Y/BS,
1991                                         player_position.Z/BS,
1992                                         busytime_jitter1_min_sample,
1993                                         busytime_jitter1_max_sample,
1994                                         dtime_jitter1_max_fraction * 100.0,
1995                                         draw_control.wanted_range
1996                                         );
1997
1998                         guitext2->setText(narrow_to_wide(temptext).c_str());
1999                 }
2000                 
2001                 {
2002                         guitext_info->setText(infotext.c_str());
2003                 }
2004                 
2005                 /*
2006                         Get chat messages from client
2007                 */
2008                 {
2009                         // Get new messages
2010                         std::wstring message;
2011                         while(client.getChatMessage(message))
2012                         {
2013                                 chat_lines.push_back(ChatLine(message));
2014                                 /*if(chat_lines.size() > 6)
2015                                 {
2016                                         core::list<ChatLine>::Iterator
2017                                                         i = chat_lines.begin();
2018                                         chat_lines.erase(i);
2019                                 }*/
2020                         }
2021                         // Append them to form the whole static text and throw
2022                         // it to the gui element
2023                         std::wstring whole;
2024                         // This will correspond to the line number counted from
2025                         // top to bottom, from size-1 to 0
2026                         s16 line_number = chat_lines.size();
2027                         // Count of messages to be removed from the top
2028                         u16 to_be_removed_count = 0;
2029                         for(core::list<ChatLine>::Iterator
2030                                         i = chat_lines.begin();
2031                                         i != chat_lines.end(); i++)
2032                         {
2033                                 // After this, line number is valid for this loop
2034                                 line_number--;
2035                                 // Increment age
2036                                 (*i).age += dtime;
2037                                 /*
2038                                         This results in a maximum age of 60*6 to the
2039                                         lowermost line and a maximum of 6 lines
2040                                 */
2041                                 float allowed_age = (6-line_number) * 60.0;
2042
2043                                 if((*i).age > allowed_age)
2044                                 {
2045                                         to_be_removed_count++;
2046                                         continue;
2047                                 }
2048                                 whole += (*i).text + L'\n';
2049                         }
2050                         for(u16 i=0; i<to_be_removed_count; i++)
2051                         {
2052                                 core::list<ChatLine>::Iterator
2053                                                 it = chat_lines.begin();
2054                                 chat_lines.erase(it);
2055                         }
2056                         guitext_chat->setText(whole.c_str());
2057
2058                         // Update gui element size and position
2059
2060                         /*core::rect<s32> rect(
2061                                         10,
2062                                         screensize.Y - guitext_chat_pad_bottom
2063                                                         - text_height*chat_lines.size(),
2064                                         screensize.X - 10,
2065                                         screensize.Y - guitext_chat_pad_bottom
2066                         );*/
2067                         core::rect<s32> rect(
2068                                         10,
2069                                         50,
2070                                         screensize.X - 10,
2071                                         50 + guitext_chat->getTextHeight()
2072                         );
2073
2074                         guitext_chat->setRelativePosition(rect);
2075
2076                         if(chat_lines.size() == 0)
2077                                 guitext_chat->setVisible(false);
2078                         else
2079                                 guitext_chat->setVisible(true);
2080                 }
2081
2082                 /*
2083                         Inventory
2084                 */
2085                 
2086                 static u16 old_selected_item = 65535;
2087                 if(client.getLocalInventoryUpdated()
2088                                 || g_selected_item != old_selected_item)
2089                 {
2090                         client.selectPlayerItem(g_selected_item);
2091                         old_selected_item = g_selected_item;
2092                         //std::cout<<"Updating local inventory"<<std::endl;
2093                         client.getLocalInventory(local_inventory);
2094
2095                         // Update wielded tool
2096                         InventoryList *mlist = local_inventory.getList("main");
2097                         InventoryItem *item = NULL;
2098                         if(mlist != NULL)
2099                                 item = mlist->getItem(g_selected_item);
2100                         camera.wield(item);
2101                 }
2102                 
2103                 /*
2104                         Send actions returned by the inventory menu
2105                 */
2106                 while(inventory_action_queue.size() != 0)
2107                 {
2108                         InventoryAction *a = inventory_action_queue.pop_front();
2109
2110                         client.sendInventoryAction(a);
2111                         // Eat it
2112                         delete a;
2113                 }
2114
2115                 /*
2116                         Drawing begins
2117                 */
2118
2119                 TimeTaker drawtimer("Drawing");
2120
2121                 
2122                 {
2123                         TimeTaker timer("beginScene");
2124                         driver->beginScene(true, true, bgcolor);
2125                         //driver->beginScene(false, true, bgcolor);
2126                         beginscenetime = timer.stop(true);
2127                 }
2128                 
2129                 //timer3.stop();
2130                 
2131                 //std::cout<<DTIME<<"smgr->drawAll()"<<std::endl;
2132                 
2133                 {
2134                         TimeTaker timer("smgr");
2135                         smgr->drawAll();
2136                         scenetime = timer.stop(true);
2137                 }
2138                 
2139                 {
2140                 //TimeTaker timer9("auxiliary drawings");
2141                 // 0ms
2142                 
2143                 //timer9.stop();
2144                 //TimeTaker //timer10("//timer10");
2145                 
2146                 video::SMaterial m;
2147                 //m.Thickness = 10;
2148                 m.Thickness = 3;
2149                 m.Lighting = false;
2150                 driver->setMaterial(m);
2151
2152                 driver->setTransform(video::ETS_WORLD, core::IdentityMatrix);
2153
2154                 for(core::list< core::aabbox3d<f32> >::Iterator i=hilightboxes.begin();
2155                                 i != hilightboxes.end(); i++)
2156                 {
2157                         /*std::cout<<"hilightbox min="
2158                                         <<"("<<i->MinEdge.X<<","<<i->MinEdge.Y<<","<<i->MinEdge.Z<<")"
2159                                         <<" max="
2160                                         <<"("<<i->MaxEdge.X<<","<<i->MaxEdge.Y<<","<<i->MaxEdge.Z<<")"
2161                                         <<std::endl;*/
2162                         driver->draw3DBox(*i, video::SColor(255,0,0,0));
2163                 }
2164
2165                 /*
2166                         Wielded tool
2167                 */
2168                 {
2169                         // Warning: This clears the Z buffer.
2170                         camera.drawWieldedTool();
2171                 }
2172
2173                 /*
2174                         Post effects
2175                 */
2176                 {
2177                         client.renderPostFx();
2178                 }
2179
2180                 /*
2181                         Frametime log
2182                 */
2183                 if(g_settings.getBool("frametime_graph") == true)
2184                 {
2185                         s32 x = 10;
2186                         for(core::list<float>::Iterator
2187                                         i = frametime_log.begin();
2188                                         i != frametime_log.end();
2189                                         i++)
2190                         {
2191                                 driver->draw2DLine(v2s32(x,50),
2192                                                 v2s32(x,50+(*i)*1000),
2193                                                 video::SColor(255,255,255,255));
2194                                 x++;
2195                         }
2196                 }
2197
2198                 /*
2199                         Draw crosshair
2200                 */
2201                 driver->draw2DLine(displaycenter - core::vector2d<s32>(10,0),
2202                                 displaycenter + core::vector2d<s32>(10,0),
2203                                 video::SColor(255,255,255,255));
2204                 driver->draw2DLine(displaycenter - core::vector2d<s32>(0,10),
2205                                 displaycenter + core::vector2d<s32>(0,10),
2206                                 video::SColor(255,255,255,255));
2207
2208                 } // timer
2209
2210                 //timer10.stop();
2211                 //TimeTaker //timer11("//timer11");
2212
2213                 /*
2214                         Draw gui
2215                 */
2216                 // 0-1ms
2217                 guienv->drawAll();
2218
2219                 /*
2220                         Draw hotbar
2221                 */
2222                 {
2223                         draw_hotbar(driver, font, v2s32(displaycenter.X, screensize.Y),
2224                                         hotbar_imagesize, hotbar_itemcount, &local_inventory,
2225                                         client.getHP());
2226                 }
2227
2228                 /*
2229                         Damage flash
2230                 */
2231                 if(damage_flash_timer > 0.0)
2232                 {
2233                         damage_flash_timer -= dtime;
2234                         
2235                         video::SColor color(128,255,0,0);
2236                         driver->draw2DRectangle(color,
2237                                         core::rect<s32>(0,0,screensize.X,screensize.Y),
2238                                         NULL);
2239                 }
2240
2241                 /*
2242                         End scene
2243                 */
2244                 {
2245                         TimeTaker timer("endScene");
2246                         endSceneX(driver);
2247                         endscenetime = timer.stop(true);
2248                 }
2249
2250                 drawtime = drawtimer.stop(true);
2251
2252                 /*
2253                         End of drawing
2254                 */
2255
2256                 static s16 lastFPS = 0;
2257                 //u16 fps = driver->getFPS();
2258                 u16 fps = (1.0/dtime_avg1);
2259
2260                 if (lastFPS != fps)
2261                 {
2262                         core::stringw str = L"Minetest [";
2263                         str += driver->getName();
2264                         str += "] FPS=";
2265                         str += fps;
2266
2267                         device->setWindowCaption(str.c_str());
2268                         lastFPS = fps;
2269                 }
2270         }
2271
2272         /*
2273                 Drop stuff
2274         */
2275         if(clouds)
2276                 clouds->drop();
2277         
2278         /*
2279                 Draw a "shutting down" screen, which will be shown while the map
2280                 generator and other stuff quits
2281         */
2282         {
2283                 /*gui::IGUIStaticText *gui_shuttingdowntext = */
2284                 draw_load_screen(L"Shutting down stuff...", driver, font);
2285                 /*driver->beginScene(true, true, video::SColor(255,0,0,0));
2286                 guienv->drawAll();
2287                 driver->endScene();
2288                 gui_shuttingdowntext->remove();*/
2289         }
2290 }
2291
2292