From: Perttu Ahola Date: Sun, 5 Jun 2011 18:07:54 +0000 (+0300) Subject: ...and the map part of that X-Git-Tag: 0.2.20110731_3~138 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=fdee31abf1ec41434cae843c30847dad5ce4388b;p=oweals%2Fminetest.git ...and the map part of that --- diff --git a/src/map.h b/src/map.h index 6f7ac0d3b..e74f89beb 100644 --- a/src/map.h +++ b/src/map.h @@ -41,6 +41,17 @@ with this program; if not, write to the Free Software Foundation, Inc., #include "mapchunk.h" #include "nodemetadata.h" +/* + Temporarily exposed map generator stuff + Should only be used for testing +*/ + +double base_rock_level_2d(u64 seed, v2s16 p); + +/* + MapEditEvent +*/ + #define MAPTYPE_BASE 0 #define MAPTYPE_SERVER 1 #define MAPTYPE_CLIENT 2 @@ -592,6 +603,8 @@ public: bool isSavingEnabled(){ return m_map_saving_enabled; } + u64 getSeed(){ return m_seed; } + private: // Seed used for all kinds of randomness u64 m_seed;