Node placement / mineral / serialization / iron freq / node_dig callback
[oweals/minetest.git] / src / mapblock.h
index 693bc51905f499af37a938efe80926b34f9bed4d..c9ff366794911526817fe2db5cebbae2df25db87 100644 (file)
@@ -29,15 +29,15 @@ with this program; if not, write to the Free Software Foundation, Inc.,
 #include "exceptions.h"
 #include "serialization.h"
 #include "constants.h"
-#include "mapblockobject.h"
 #include "voxel.h"
-#include "nodemetadata.h"
 #include "staticobject.h"
 #include "mapblock_nodemod.h"
-#ifndef SERVER
-       #include "mapblock_mesh.h"
-#endif
+#include "modifiedstate.h"
 
+class Map;
+class NodeMetadataList;
+class IGameDef;
+class IWritableNodeDefManager;
 
 #define BLOCK_TIMESTAMP_UNDEFINED 0xffffffff
 
@@ -51,19 +51,6 @@ enum{
        FACE_LEFT
 };*/
 
-enum ModifiedState
-{
-       // Has not been modified.
-       MOD_STATE_CLEAN = 0,
-       MOD_RESERVED1 = 1,
-       // Has been modified, and will be saved when being unloaded.
-       MOD_STATE_WRITE_AT_UNLOAD = 2,
-       MOD_RESERVED3 = 3,
-       // Has been modified, and will be saved as soon as possible.
-       MOD_STATE_WRITE_NEEDED = 4,
-       MOD_RESERVED5 = 5,
-};
-
 // NOTE: If this is enabled, set MapBlock to be initialized with
 //       CONTENT_IGNORE.
 /*enum BlockGenerationStatus
@@ -81,6 +68,7 @@ enum ModifiedState
        BLOCKGEN_FULLY_GENERATED=6
 };*/
 
+#if 0
 enum
 {
        NODECONTAINER_ID_MAPBLOCK,
@@ -108,23 +96,24 @@ public:
                }
        }
 };
+#endif
 
 /*
        MapBlock itself
 */
 
-class MapBlock : public NodeContainer
+class MapBlock /*: public NodeContainer*/
 {
 public:
-       MapBlock(NodeContainer *parent, v3s16 pos, bool dummy=false);
+       MapBlock(Map *parent, v3s16 pos, IGameDef *gamedef, bool dummy=false);
        ~MapBlock();
        
-       virtual u16 nodeContainerId() const
+       /*virtual u16 nodeContainerId() const
        {
                return NODECONTAINER_ID_MAPBLOCK;
-       }
+       }*/
        
-       NodeContainer * getParent()
+       Map * getParent()
        {
                return m_parent;
        }
@@ -139,7 +128,7 @@ public:
                        //data[i] = MapNode();
                        data[i] = MapNode(CONTENT_IGNORE);
                }
-               raiseModified(MOD_STATE_WRITE_NEEDED);
+               raiseModified(MOD_STATE_WRITE_NEEDED, "reallocate");
        }
 
        /*
@@ -156,45 +145,41 @@ public:
                reallocate();
        }
        
-       /*
-               This is called internally or externally after the block is
-               modified, so that the block is saved and possibly not deleted from
-               memory.
-       */
-       // DEPRECATED, use *Modified()
-       void setChangedFlag()
-       {
-               //dstream<<"Deprecated setChangedFlag() called"<<std::endl;
-               raiseModified(MOD_STATE_WRITE_NEEDED);
-       }
-       // DEPRECATED, use *Modified()
-       void resetChangedFlag()
-       {
-               //dstream<<"Deprecated resetChangedFlag() called"<<std::endl;
-               resetModified();
-       }
-       // DEPRECATED, use *Modified()
-       bool getChangedFlag()
-       {
-               //dstream<<"Deprecated getChangedFlag() called"<<std::endl;
-               if(getModified() == MOD_STATE_CLEAN)
-                       return false;
-               else
-                       return true;
-       }
-       
        // m_modified methods
-       void raiseModified(u32 mod)
-       {
-               m_modified = MYMAX(m_modified, mod);
+       void raiseModified(u32 mod, const std::string &reason="unknown")
+       {
+               if(mod > m_modified){
+                       m_modified = mod;
+                       m_modified_reason = reason;
+                       m_modified_reason_too_long = false;
+
+                       if(m_modified >= MOD_STATE_WRITE_AT_UNLOAD){
+                               m_disk_timestamp = m_timestamp;
+                       }
+               } else if(mod == m_modified){
+                       if(!m_modified_reason_too_long){
+                               if(m_modified_reason.size() < 40)
+                                       m_modified_reason += ", " + reason;
+                               else{
+                                       m_modified_reason += "...";
+                                       m_modified_reason_too_long = true;
+                               }
+                       }
+               }
        }
        u32 getModified()
        {
                return m_modified;
        }
+       std::string getModifiedReason()
+       {
+               return m_modified_reason;
+       }
        void resetModified()
        {
                m_modified = MOD_STATE_CLEAN;
+               m_modified_reason = "none";
+               m_modified_reason_too_long = false;
        }
        
        // is_underground getter/setter
@@ -205,7 +190,7 @@ public:
        void setIsUnderground(bool a_is_underground)
        {
                is_underground = a_is_underground;
-               raiseModified(MOD_STATE_WRITE_NEEDED);
+               raiseModified(MOD_STATE_WRITE_NEEDED, "setIsUnderground");
        }
 
 #ifndef SERVER
@@ -222,8 +207,10 @@ public:
 
        void setLightingExpired(bool expired)
        {
-               m_lighting_expired = expired;
-               raiseModified(MOD_STATE_WRITE_NEEDED);
+               if(expired != m_lighting_expired){
+                       m_lighting_expired = expired;
+                       raiseModified(MOD_STATE_WRITE_NEEDED, "setLightingExpired");
+               }
        }
        bool getLightingExpired()
        {
@@ -236,8 +223,10 @@ public:
        }
        void setGenerated(bool b)
        {
-               raiseModified(MOD_STATE_WRITE_NEEDED);
-               m_generated = b;
+               if(b != m_generated){
+                       raiseModified(MOD_STATE_WRITE_NEEDED, "setGenerated");
+                       m_generated = b;
+               }
        }
 
        bool isValid()
@@ -316,7 +305,7 @@ public:
                if(y < 0 || y >= MAP_BLOCKSIZE) throw InvalidPositionException();
                if(z < 0 || z >= MAP_BLOCKSIZE) throw InvalidPositionException();
                data[z*MAP_BLOCKSIZE*MAP_BLOCKSIZE + y*MAP_BLOCKSIZE + x] = n;
-               raiseModified(MOD_STATE_WRITE_NEEDED);
+               raiseModified(MOD_STATE_WRITE_NEEDED, "setNode");
        }
        
        void setNode(v3s16 p, MapNode & n)
@@ -345,7 +334,7 @@ public:
                if(data == NULL)
                        throw InvalidPositionException();
                data[z*MAP_BLOCKSIZE*MAP_BLOCKSIZE + y*MAP_BLOCKSIZE + x] = n;
-               raiseModified(MOD_STATE_WRITE_NEEDED);
+               raiseModified(MOD_STATE_WRITE_NEEDED, "setNodeNoCheck");
        }
        
        void setNodeNoCheck(v3s16 p, MapNode & n)
@@ -374,27 +363,17 @@ public:
                Graphics-related methods
        */
        
-       /*// A quick version with nodes passed as parameters
-       u8 getFaceLight(u32 daynight_ratio, MapNode n, MapNode n2,
-                       v3s16 face_dir);*/
-       /*// A more convenient version
-       u8 getFaceLight(u32 daynight_ratio, v3s16 p, v3s16 face_dir)
-       {
-               return getFaceLight(daynight_ratio,
-                               getNodeParentNoEx(p),
-                               getNodeParentNoEx(p + face_dir),
-                               face_dir);
-       }*/
-       u8 getFaceLight2(u32 daynight_ratio, v3s16 p, v3s16 face_dir)
+#ifndef SERVER // Only on client
+
+       u8 getFaceLight2(u32 daynight_ratio, v3s16 p, v3s16 face_dir,
+                       INodeDefManager *nodemgr)
        {
                return getFaceLight(daynight_ratio,
                                getNodeParentNoEx(p),
                                getNodeParentNoEx(p + face_dir),
-                               face_dir);
+                               face_dir, nodemgr);
        }
        
-#ifndef SERVER // Only on client
-
 #if 1
        /*
                Thread-safely updates the whole mesh of the mapblock.
@@ -416,68 +395,6 @@ public:
        // Copies data from VoxelManipulator getPosRelative()
        void copyFrom(VoxelManipulator &dst);
 
-       /*
-               MapBlockObject stuff
-               DEPRECATED
-       */
-       
-       /*void serializeObjects(std::ostream &os, u8 version)
-       {
-               m_objects.serialize(os, version);
-       }*/
-       // If smgr!=NULL, new objects are added to the scene
-       void updateObjects(std::istream &is, u8 version,
-                       scene::ISceneManager *smgr, u32 daynight_ratio)
-       {
-               m_objects.update(is, version, smgr, daynight_ratio);
-
-               raiseModified(MOD_STATE_WRITE_NEEDED);
-       }
-       void clearObjects()
-       {
-               m_objects.clear();
-
-               raiseModified(MOD_STATE_WRITE_NEEDED);
-       }
-       void addObject(MapBlockObject *object)
-                       throw(ContainerFullException, AlreadyExistsException)
-       {
-               m_objects.add(object);
-
-               raiseModified(MOD_STATE_WRITE_NEEDED);
-       }
-       void removeObject(s16 id)
-       {
-               m_objects.remove(id);
-
-               raiseModified(MOD_STATE_WRITE_NEEDED);
-       }
-       MapBlockObject * getObject(s16 id)
-       {
-               return m_objects.get(id);
-       }
-       JMutexAutoLock * getObjectLock()
-       {
-               return m_objects.getLock();
-       }
-
-       /*
-               Moves objects, deletes objects and spawns new objects
-       */
-       void stepObjects(float dtime, bool server, u32 daynight_ratio);
-
-       // origin is relative to block
-       void getObjects(v3f origin, f32 max_d,
-                       core::array<DistanceSortedObject> &dest)
-       {
-               m_objects.getObjects(origin, max_d, dest);
-       }
-
-       s32 getObjectCount()
-       {
-               return m_objects.getCount();
-       }
-
 #ifndef SERVER // Only on client
        /*
                Methods for setting temporary modifications to nodes for
@@ -560,7 +477,7 @@ public:
        void setTimestamp(u32 time)
        {
                m_timestamp = time;
-               raiseModified(MOD_STATE_WRITE_AT_UNLOAD);
+               raiseModified(MOD_STATE_WRITE_AT_UNLOAD, "setTimestamp");
        }
        void setTimestampNoChangedFlag(u32 time)
        {
@@ -570,6 +487,10 @@ public:
        {
                return m_timestamp;
        }
+       u32 getDiskTimestamp()
+       {
+               return m_disk_timestamp;
+       }
        
        /*
                See m_usage_timer
@@ -592,17 +513,20 @@ public:
        */
        
        // These don't write or read version by itself
-       void serialize(std::ostream &os, u8 version);
-       void deSerialize(std::istream &is, u8 version);
-       // Used after the basic ones when writing on disk (serverside)
-       void serializeDiskExtra(std::ostream &os, u8 version);
-       void deSerializeDiskExtra(std::istream &is, u8 version);
+       // Set disk to true for on-disk format, false for over-the-network format
+       void serialize(std::ostream &os, u8 version, bool disk);
+       // If disk == true: In addition to doing other things, will add
+       // unknown blocks from id-name mapping to wndef
+       void deSerialize(std::istream &is, u8 version, bool disk);
 
 private:
        /*
                Private methods
        */
 
+       void serialize_pre22(std::ostream &os, u8 version, bool disk);
+       void deSerialize_pre22(std::istream &is, u8 version, bool disk);
+
        /*
                Used only internally, because changes can't be tracked
        */
@@ -631,7 +555,7 @@ public:
        JMutex mesh_mutex;
 #endif
        
-       NodeMetadataList m_node_metadata;
+       NodeMetadataList *m_node_metadata;
        StaticObjectList m_static_objects;
        
 private:
@@ -640,9 +564,11 @@ private:
        */
 
        // NOTE: Lots of things rely on this being the Map
-       NodeContainer *m_parent;
+       Map *m_parent;
        // Position in blocks on parent
        v3s16 m_pos;
+
+       IGameDef *m_gamedef;
        
        /*
                If NULL, block is a dummy block.
@@ -656,6 +582,8 @@ private:
                - On the client, this is used for nothing.
        */
        u32 m_modified;
+       std::string m_modified_reason;
+       bool m_modified_reason_too_long;
 
        /*
                When propagating sunlight and the above block doesn't exist,
@@ -681,9 +609,6 @@ private:
 
        bool m_generated;
        
-       // DEPRECATED
-       MapBlockObjectList m_objects;
-
 #ifndef SERVER // Only on client
        /*
                Set to true if the mesh has been ordered to be updated
@@ -703,6 +628,8 @@ private:
                Value BLOCK_TIMESTAMP_UNDEFINED=0xffffffff means there is no timestamp.
        */
        u32 m_timestamp;
+       // The on-disk (or to-be on-disk) timestamp value
+       u32 m_disk_timestamp;
 
        /*
                When the block is accessed, this is set to 0.
@@ -740,5 +667,10 @@ inline s16 getNodeBlockY(s16 y)
        return getContainerPos(y, MAP_BLOCKSIZE);
 }
 
+/*
+       Get a quick string to describe what a block actually contains
+*/
+std::string analyze_block(MapBlock *block);
+
 #endif