]> git.lizzy.rs Git - dragonfireclient.git/blobdiff - src/test.cpp
added sand to map generator
[dragonfireclient.git] / src / test.cpp
index 726930ce69f01495124e49c404af617ef69ff0a8..d3c17f70cb42fda2403bb27108f87e33e6823328 100644 (file)
@@ -30,14 +30,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
 #include "serialization.h"
 #include "voxel.h"
 #include <sstream>
-
-#ifdef _WIN32
-       #include <windows.h>
-       #define sleep_ms(x) Sleep(x)
-#else
-       #include <unistd.h>
-       #define sleep_ms(x) usleep(x*1000)
-#endif
+#include "porting.h"
 
 /*
        Asserts that the exception occurs
@@ -72,6 +65,8 @@ struct TestCompress
 {
        void Run()
        {
+               { // ver 0
+
                SharedBuffer<u8> fromdata(4);
                fromdata[0]=1;
                fromdata[1]=5;
@@ -123,6 +118,64 @@ struct TestCompress
                {
                        assert(str_out2[i] == fromdata[i]);
                }
+
+               }
+
+               { // ver HIGHEST
+
+               SharedBuffer<u8> fromdata(4);
+               fromdata[0]=1;
+               fromdata[1]=5;
+               fromdata[2]=5;
+               fromdata[3]=1;
+               
+               std::ostringstream os(std::ios_base::binary);
+               compress(fromdata, os, SER_FMT_VER_HIGHEST);
+
+               std::string str_out = os.str();
+               
+               dstream<<"str_out.size()="<<str_out.size()<<std::endl;
+               dstream<<"TestCompress: 1,5,5,1 -> ";
+               for(u32 i=0; i<str_out.size(); i++)
+               {
+                       dstream<<(u32)str_out[i]<<",";
+               }
+               dstream<<std::endl;
+
+               /*assert(str_out.size() == 10);
+
+               assert(str_out[0] == 0);
+               assert(str_out[1] == 0);
+               assert(str_out[2] == 0);
+               assert(str_out[3] == 4);
+               assert(str_out[4] == 0);
+               assert(str_out[5] == 1);
+               assert(str_out[6] == 1);
+               assert(str_out[7] == 5);
+               assert(str_out[8] == 0);
+               assert(str_out[9] == 1);*/
+
+               std::istringstream is(str_out, std::ios_base::binary);
+               std::ostringstream os2(std::ios_base::binary);
+
+               decompress(is, os2, SER_FMT_VER_HIGHEST);
+               std::string str_out2 = os2.str();
+
+               dstream<<"decompress: ";
+               for(u32 i=0; i<str_out2.size(); i++)
+               {
+                       dstream<<(u32)str_out2[i]<<",";
+               }
+               dstream<<std::endl;
+
+               assert(str_out2.size() == fromdata.getSize());
+
+               for(u32 i=0; i<str_out2.size(); i++)
+               {
+                       assert(str_out2[i] == fromdata[i]);
+               }
+
+               }
        }
 };
 
@@ -134,7 +187,8 @@ struct TestMapNode
 
                // Default values
                assert(n.d == CONTENT_AIR);
-               assert(n.getLight() == 0);
+               assert(n.getLight(LIGHTBANK_DAY) == 0);
+               assert(n.getLight(LIGHTBANK_NIGHT) == 0);
                
                // Transparency
                n.d = CONTENT_AIR;
@@ -214,6 +268,7 @@ struct TestVoxelManipulator
                assert(v.getNode(v3s16(-1,0,-1)).d == 2);
                EXCEPTION_CHECK(InvalidPositionException, v.getNode(v3s16(0,1,1)));
 
+#if 0
                /*
                        Water stuff
                */
@@ -261,7 +316,7 @@ struct TestVoxelManipulator
 
                v.print(dstream, VOXELPRINT_WATERPRESSURE);
                
-               s16 highest_y = -32768;
+               //s16 highest_y = -32768;
                /*
                        NOTE: These are commented out because this behaviour is changed
                              all the time
@@ -273,11 +328,12 @@ struct TestVoxelManipulator
                
                active_nodes.clear();
                active_nodes[v3s16(9,1,0)] = 1;
-               //v.flowWater(active_nodes, 0, false);
-               v.flowWater(active_nodes, 0, true, 1000);
+               //v.flowWater(active_nodes, 0, true, 1000);
+               v.flowWater(active_nodes, 0, false, 1000);
                
                dstream<<"Final result of flowWater:"<<std::endl;
                v.print(dstream, VOXELPRINT_WATERPRESSURE);
+#endif
                
                //assert(0);
        }
@@ -371,11 +427,13 @@ struct TestMapBlock
                // All nodes should have been set to
                // .d=CONTENT_AIR and .getLight() = 0
                for(u16 z=0; z<MAP_BLOCKSIZE; z++)
-                       for(u16 y=0; y<MAP_BLOCKSIZE; y++)
-                               for(u16 x=0; x<MAP_BLOCKSIZE; x++){
-                                       assert(b.getNode(v3s16(x,y,z)).d == CONTENT_AIR);
-                                       assert(b.getNode(v3s16(x,y,z)).getLight() == 0);
-                               }
+               for(u16 y=0; y<MAP_BLOCKSIZE; y++)
+               for(u16 x=0; x<MAP_BLOCKSIZE; x++)
+               {
+                       assert(b.getNode(v3s16(x,y,z)).d == CONTENT_AIR);
+                       assert(b.getNode(v3s16(x,y,z)).getLight(LIGHTBANK_DAY) == 0);
+                       assert(b.getNode(v3s16(x,y,z)).getLight(LIGHTBANK_NIGHT) == 0);
+               }
                
                /*
                        Parent fetch functions
@@ -424,8 +482,9 @@ struct TestMapBlock
                n.d = 4;
                b.setNode(p, n);
                assert(b.getNode(p).d == 4);
-               assert(b.getNodeTile(p) == 4);
-               assert(b.getNodeTile(v3s16(-1,-1,0)) == 5);
+               //TODO: Update to new system
+               /*assert(b.getNodeTile(p) == 4);
+               assert(b.getNodeTile(v3s16(-1,-1,0)) == 5);*/
                
                /*
                        propagateSunlight()
@@ -435,7 +494,8 @@ struct TestMapBlock
                        for(u16 y=0; y<MAP_BLOCKSIZE; y++){
                                for(u16 x=0; x<MAP_BLOCKSIZE; x++){
                                        MapNode n = b.getNode(v3s16(x,y,z));
-                                       n.setLight(0);
+                                       n.setLight(LIGHTBANK_DAY, 0);
+                                       n.setLight(LIGHTBANK_NIGHT, 0);
                                        b.setNode(v3s16(x,y,z), n);
                                }
                        }
@@ -447,21 +507,25 @@ struct TestMapBlock
                        parent.position_valid = true;
                        b.setIsUnderground(false);
                        parent.node.d = CONTENT_AIR;
-                       parent.node.setLight(LIGHT_SUN);
+                       parent.node.setLight(LIGHTBANK_DAY, LIGHT_SUN);
+                       parent.node.setLight(LIGHTBANK_NIGHT, 0);
                        core::map<v3s16, bool> light_sources;
                        // The bottom block is invalid, because we have a shadowing node
                        assert(b.propagateSunlight(light_sources) == false);
-                       assert(b.getNode(v3s16(1,4,0)).getLight() == LIGHT_SUN);
-                       assert(b.getNode(v3s16(1,3,0)).getLight() == LIGHT_SUN);
-                       assert(b.getNode(v3s16(1,2,0)).getLight() == 0);
-                       assert(b.getNode(v3s16(1,1,0)).getLight() == 0);
-                       assert(b.getNode(v3s16(1,0,0)).getLight() == 0);
-                       assert(b.getNode(v3s16(1,2,3)).getLight() == LIGHT_SUN);
-                       assert(b.getFaceLight(p, v3s16(0,1,0)) == LIGHT_SUN);
-                       assert(b.getFaceLight(p, v3s16(0,-1,0)) == 0);
+                       assert(b.getNode(v3s16(1,4,0)).getLight(LIGHTBANK_DAY) == LIGHT_SUN);
+                       assert(b.getNode(v3s16(1,3,0)).getLight(LIGHTBANK_DAY) == LIGHT_SUN);
+                       assert(b.getNode(v3s16(1,2,0)).getLight(LIGHTBANK_DAY) == 0);
+                       assert(b.getNode(v3s16(1,1,0)).getLight(LIGHTBANK_DAY) == 0);
+                       assert(b.getNode(v3s16(1,0,0)).getLight(LIGHTBANK_DAY) == 0);
+                       assert(b.getNode(v3s16(1,2,3)).getLight(LIGHTBANK_DAY) == LIGHT_SUN);
+                       assert(b.getFaceLight(1000, p, v3s16(0,1,0)) == LIGHT_SUN);
+                       assert(b.getFaceLight(1000, p, v3s16(0,-1,0)) == 0);
+                       assert(b.getFaceLight(0, p, v3s16(0,-1,0)) == 0);
                        // According to MapBlock::getFaceLight,
                        // The face on the z+ side should have double-diminished light
-                       assert(b.getFaceLight(p, v3s16(0,0,1)) == diminish_light(diminish_light(LIGHT_MAX)));
+                       //assert(b.getFaceLight(p, v3s16(0,0,1)) == diminish_light(diminish_light(LIGHT_MAX)));
+                       // The face on the z+ side should have diminished light
+                       assert(b.getFaceLight(1000, p, v3s16(0,0,1)) == diminish_light(LIGHT_MAX));
                }
                /*
                        Check how the block handles being in between blocks with some non-sunlight
@@ -471,15 +535,15 @@ struct TestMapBlock
                        // Make neighbours to exist and set some non-sunlight to them
                        parent.position_valid = true;
                        b.setIsUnderground(true);
-                       parent.node.setLight(LIGHT_MAX/2);
+                       parent.node.setLight(LIGHTBANK_DAY, LIGHT_MAX/2);
                        core::map<v3s16, bool> light_sources;
                        // The block below should be valid because there shouldn't be
                        // sunlight in there either
-                       assert(b.propagateSunlight(light_sources) == true);
+                       assert(b.propagateSunlight(light_sources, true) == true);
                        // Should not touch nodes that are not affected (that is, all of them)
                        //assert(b.getNode(v3s16(1,2,3)).getLight() == LIGHT_SUN);
                        // Should set light of non-sunlighted blocks to 0.
-                       assert(b.getNode(v3s16(1,2,3)).getLight() == 0);
+                       assert(b.getNode(v3s16(1,2,3)).getLight(LIGHTBANK_DAY) == 0);
                }
                /*
                        Set up a situation where:
@@ -498,7 +562,7 @@ struct TestMapBlock
                                        for(u16 x=0; x<MAP_BLOCKSIZE; x++){
                                                MapNode n;
                                                n.d = CONTENT_AIR;
-                                               n.setLight(0);
+                                               n.setLight(LIGHTBANK_DAY, 0);
                                                b.setNode(v3s16(x,y,z), n);
                                        }
                                }
@@ -512,7 +576,7 @@ struct TestMapBlock
                                parent.validity_exceptions.push_back(v3s16(MAP_BLOCKSIZE+x, MAP_BLOCKSIZE-1, MAP_BLOCKSIZE+z));
                        }
                        // Lighting value for the valid nodes
-                       parent.node.setLight(LIGHT_MAX/2);
+                       parent.node.setLight(LIGHTBANK_DAY, LIGHT_MAX/2);
                        core::map<v3s16, bool> light_sources;
                        // Bottom block is not valid
                        assert(b.propagateSunlight(light_sources) == false);
@@ -633,10 +697,12 @@ struct TestHeightmap
        {
                //g_heightmap_debugprint = true;
                const s16 BS1 = 4;
-               UnlimitedHeightmap hm1(BS1,
+               /*UnlimitedHeightmap hm1(BS1,
                                new ConstantGenerator(0.0),
                                new ConstantGenerator(0.0),
-                               new ConstantGenerator(5.0));
+                               new ConstantGenerator(5.0));*/
+               PointAttributeDatabase padb;
+               UnlimitedHeightmap hm1(BS1, &padb);
                // Go through it so it generates itself
                for(s16 y=0; y<=BS1; y++){
                        for(s16 x=0; x<=BS1; x++){
@@ -661,16 +727,32 @@ struct TestHeightmap
        void Random()
        {
                dstream<<"Running random code (get a human to check this)"<<std::endl;
-               dstream<<"rand() values: ";
+               dstream<<"myrand() values: ";
                for(u16 i=0; i<5; i++)
-                       dstream<<(u16)rand()<<" ";
+                       dstream<<(u16)myrand()<<" ";
                dstream<<std::endl;
 
                const s16 BS1 = 8;
-               UnlimitedHeightmap hm1(BS1,
+               /*UnlimitedHeightmap hm1(BS1,
                                new ConstantGenerator(10.0),
                                new ConstantGenerator(0.3),
-                               new ConstantGenerator(0.0));
+                               new ConstantGenerator(0.0));*/
+
+               PointAttributeDatabase padb;
+
+               padb.getList("hm_baseheight")->addPoint(v2s16(-BS1,0), Attribute(0));
+               padb.getList("hm_randmax")->addPoint(v2s16(-BS1,0), Attribute(0));
+               padb.getList("hm_randfactor")->addPoint(v2s16(-BS1,0), Attribute(0.0));
+
+               padb.getList("hm_baseheight")->addPoint(v2s16(0,0), Attribute(-20));
+               padb.getList("hm_randmax")->addPoint(v2s16(0,0), Attribute(0));
+               padb.getList("hm_randfactor")->addPoint(v2s16(0,0), Attribute(0.5));
+
+               padb.getList("hm_baseheight")->addPoint(v2s16(BS1*2,BS1), Attribute(0));
+               padb.getList("hm_randmax")->addPoint(v2s16(BS1*2,BS1), Attribute(30));
+               padb.getList("hm_randfactor")->addPoint(v2s16(BS1*2,BS1), Attribute(0.63));
+
+               UnlimitedHeightmap hm1(BS1, &padb);
 
                // Force hm1 to generate a some heightmap
                hm1.getGroundHeight(v2s16(0,0));
@@ -1008,8 +1090,8 @@ struct TestConnection
 
                        dstream<<"Sending data (size="<<1100<<"):";
                        for(int i=0; i<1100 && i<20; i++){
-                               if(i%2==0) printf(" ");
-                               printf("%.2X", ((int)((const char*)*data1)[i])&0xff);
+                               if(i%2==0) DEBUGPRINT(" ");
+                               DEBUGPRINT("%.2X", ((int)((const char*)*data1)[i])&0xff);
                        }
                        if(1100>20)
                                dstream<<"...";
@@ -1029,8 +1111,8 @@ struct TestConnection
 
                        dstream<<"Received data (size="<<size<<"):";
                        for(int i=0; i<size && i<20; i++){
-                               if(i%2==0) printf(" ");
-                               printf("%.2X", ((int)((const char*)recvdata)[i])&0xff);
+                               if(i%2==0) DEBUGPRINT(" ");
+                               DEBUGPRINT("%.2X", ((int)((const char*)recvdata)[i])&0xff);
                        }
                        if(size>20)
                                dstream<<"...";