random comment updates
authorPerttu Ahola <celeron55@gmail.com>
Fri, 29 Apr 2011 23:12:32 +0000 (02:12 +0300)
committerPerttu Ahola <celeron55@gmail.com>
Fri, 29 Apr 2011 23:12:32 +0000 (02:12 +0300)
src/clouds.cpp
src/clouds.h
src/common_irrlicht.h
src/environment.cpp
src/environment.h
src/game.cpp
src/main.cpp
src/map.cpp
src/map.h
src/server.cpp
src/server.h

index 1b34bf8e0566d357f6c12330d98322dd1db70acf..70d19fde5ac4c2e4645a81f23b8291b0f865d97d 100644 (file)
@@ -1,6 +1,6 @@
 /*
 Minetest-c55
-Copyright (C) 2010 celeron55, Perttu Ahola <celeron55@gmail.com>
+Copyright (C) 2010-2011 celeron55, Perttu Ahola <celeron55@gmail.com>
 
 This program is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
index 6972ccaba27020a2549b7ff6d6f7e8db67673552..59861371efd221c5e84a663cd1603e6619b8dff3 100644 (file)
@@ -1,6 +1,6 @@
 /*
 Minetest-c55
-Copyright (C) 2010 celeron55, Perttu Ahola <celeron55@gmail.com>
+Copyright (C) 2010-2011 celeron55, Perttu Ahola <celeron55@gmail.com>
 
 This program is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
index 88e74878bde17eca886c61e5ff6a015285ab9739..785f4fec7646e48e5a02fdd6458d97963491d49b 100644 (file)
@@ -1,6 +1,6 @@
 /*
 Minetest-c55
-Copyright (C) 2010 celeron55, Perttu Ahola <celeron55@gmail.com>
+Copyright (C) 2010-2011 celeron55, Perttu Ahola <celeron55@gmail.com>
 
 This program is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
@@ -20,6 +20,9 @@ with this program; if not, write to the Free Software Foundation, Inc.,
 #ifndef COMMON_IRRLICHT_HEADER
 #define COMMON_IRRLICHT_HEADER
 
+#define endSceneX(d){d->draw2DLine(v2s32(0,0),v2s32(1,0),\
+video::SColor(255,30,30,30));d->endScene();}
+
 #include <irrlicht.h>
 using namespace irr;
 typedef core::vector3df v3f;
index 2b781126b5f1c9bed7ff3bd99bb97b2afd5684e6..e472916657ede944d490dfb9ae6ec8f603520e0e 100644 (file)
@@ -1,6 +1,6 @@
 /*
 Minetest-c55
-Copyright (C) 2010 celeron55, Perttu Ahola <celeron55@gmail.com>
+Copyright (C) 2010-2011 celeron55, Perttu Ahola <celeron55@gmail.com>
 
 This program is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
index 00192d26278d1bb8a4b23c5900a264a4b2980df9..2d3feaca8e9b32583ef17ec5b4b10116da8c068d 100644 (file)
@@ -1,6 +1,6 @@
 /*
 Minetest-c55
-Copyright (C) 2010 celeron55, Perttu Ahola <celeron55@gmail.com>
+Copyright (C) 2010-2011 celeron55, Perttu Ahola <celeron55@gmail.com>
 
 This program is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
index 771b05d87238b10c7974ac5112baa01157024955..92e690a2c8a154cd1fba278135928c0c5a2b3767 100644 (file)
@@ -1,6 +1,6 @@
 /*
 Minetest-c55
-Copyright (C) 2011 celeron55, Perttu Ahola <celeron55@gmail.com>
+Copyright (C) 2010-2011 celeron55, Perttu Ahola <celeron55@gmail.com>
 
 This program is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
@@ -2044,7 +2044,7 @@ void the_game(
                */
                {
                        TimeTaker timer("endScene");
-                       driver->endScene();
+                       endSceneX(driver);
                        endscenetime = timer.stop(true);
                }
 
@@ -2062,7 +2062,7 @@ void the_game(
                {
                        core::stringw str = L"Minetest [";
                        str += driver->getName();
-                       str += "] FPS:";
+                       str += "] FPS=";
                        str += fps;
 
                        device->setWindowCaption(str.c_str());
index edfbc11c3f37aa935b9d3b190766ec4c55e634cc..f5be9c05a8ebd8e5573797bfb8f8ab92d138b33e 100644 (file)
@@ -1,6 +1,6 @@
 /*\r
 Minetest-c55\r
-Copyright (C) 2010 celeron55, Perttu Ahola <celeron55@gmail.com>\r
+Copyright (C) 2010-2011 celeron55, Perttu Ahola <celeron55@gmail.com>\r
 \r
 This program is free software; you can redistribute it and/or modify\r
 it under the terms of the GNU General Public License as published by\r
@@ -270,6 +270,9 @@ FIXME: Server sometimes goes into some infinite PeerNotFoundException loop
 * Make a small history check to transformLiquids to detect and log\r
   continuous oscillations, in such detail that they can be fixed.\r
 \r
+FIXME: The new optimized map sending doesn't sometimes send enough blocks\r
+       from big caves and such\r
+\r
 Objects:\r
 --------\r
 \r
index e81ddb3af76785dd164e5ebfc8ecd5cc0e46004e..ddf8d863e57374cd60f606e0e68c8b2c02ff96f0 100644 (file)
@@ -1,6 +1,6 @@
 /*
 Minetest-c55
-Copyright (C) 2010 celeron55, Perttu Ahola <celeron55@gmail.com>
+Copyright (C) 2010-2011 celeron55, Perttu Ahola <celeron55@gmail.com>
 
 This program is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
index 77a0063902df9d416a5e1b00cc9d11dedd880f56..fa52dc26b33ca1de90ed7e3031e9a60410d9b003 100644 (file)
--- a/src/map.h
+++ b/src/map.h
@@ -1,6 +1,6 @@
 /*
 Minetest-c55
-Copyright (C) 2010 celeron55, Perttu Ahola <celeron55@gmail.com>
+Copyright (C) 2010-2011 celeron55, Perttu Ahola <celeron55@gmail.com>
 
 This program is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
index e899443f44a05173b545b4d86ca7c7770e04e880..d47dcb9ce1ad9cd46e17cbfda3b187c40bedd2f1 100644 (file)
@@ -1,6 +1,6 @@
 /*
 Minetest-c55
-Copyright (C) 2010 celeron55, Perttu Ahola <celeron55@gmail.com>
+Copyright (C) 2010-2011 celeron55, Perttu Ahola <celeron55@gmail.com>
 
 This program is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
index e9477ba53395a8ca9728d3a55a5015849375282f..4603f98ed5eed3b242c10d27ab8f2053af4d5928 100644 (file)
@@ -1,6 +1,6 @@
 /*
 Minetest-c55
-Copyright (C) 2010 celeron55, Perttu Ahola <celeron55@gmail.com>
+Copyright (C) 2010-2011 celeron55, Perttu Ahola <celeron55@gmail.com>
 
 This program is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by