summaryrefslogtreecommitdiff
path: root/src/subgame.cpp
diff options
context:
space:
mode:
authorkwolekr <kwolekr@minetest.net>2015-01-27 22:29:02 -0500
committerkwolekr <kwolekr@minetest.net>2015-01-27 22:29:28 -0500
commitad690c46b10423b23d515bda0e89228b51f5b5e9 (patch)
treee26cec803414c19585d2456795e46352c42c1b72 /src/subgame.cpp
parent80a7408e4d17e0e388f2d45fb90c5524a5dd7c89 (diff)
downloadminetest-ad690c46b10423b23d515bda0e89228b51f5b5e9.tar.gz
minetest-ad690c46b10423b23d515bda0e89228b51f5b5e9.tar.bz2
minetest-ad690c46b10423b23d515bda0e89228b51f5b5e9.zip
Write common mapgen params to map_meta.txt on world initialization
Diffstat (limited to 'src/subgame.cpp')
-rw-r--r--src/subgame.cpp37
1 files changed, 30 insertions, 7 deletions
diff --git a/src/subgame.cpp b/src/subgame.cpp
index 94d9be181..fd2679eae 100644
--- a/src/subgame.cpp
+++ b/src/subgame.cpp
@@ -21,6 +21,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#include "porting.h"
#include "filesys.h"
#include "settings.h"
+#include "main.h"
#include "log.h"
#include "strfnd.h"
#ifndef SERVER
@@ -265,15 +266,37 @@ std::vector<WorldSpec> getAvailableWorlds()
bool initializeWorld(const std::string &path, const std::string &gameid)
{
- infostream<<"Initializing world at "<<path<<std::endl;
+ infostream << "Initializing world at " << path << std::endl;
+
+ fs::CreateAllDirs(path);
+
// Create world.mt if does not already exist
- std::string worldmt_path = path + DIR_DELIM + "world.mt";
- if(!fs::PathExists(worldmt_path)){
- infostream<<"Creating world.mt ("<<worldmt_path<<")"<<std::endl;
- fs::CreateAllDirs(path);
+ std::string worldmt_path = path + DIR_DELIM "world.mt";
+ if (!fs::PathExists(worldmt_path)) {
+ std::ostringstream ss(std::ios_base::binary);
+ ss << "gameid = " << gameid << "\nbackend = sqlite3\n";
+ if (!fs::safeWriteToFile(worldmt_path, ss.str()))
+ return false;
+
+ infostream << "Wrote world.mt (" << worldmt_path << ")" << std::endl;
+ }
+
+ // Create map_meta.txt if does not already exist
+ std::string mapmeta_path = path + DIR_DELIM "map_meta.txt";
+ if (!fs::PathExists(mapmeta_path)) {
std::ostringstream ss(std::ios_base::binary);
- ss<<"gameid = "<<gameid<< "\nbackend = sqlite3\n";
- fs::safeWriteToFile(worldmt_path, ss.str());
+ ss
+ << "mg_name = " << g_settings->get("mg_name")
+ << "\nseed = " << g_settings->get("fixed_map_seed")
+ << "\nchunksize = " << g_settings->get("chunksize")
+ << "\nwater_level = " << g_settings->get("water_level")
+ << "\nmg_flags = " << g_settings->get("mg_flags")
+ << "\n[end_of_params]\n";
+ if (!fs::safeWriteToFile(mapmeta_path, ss.str()))
+ return false;
+
+ infostream << "Wrote map_meta.txt (" << mapmeta_path << ")" << std::endl;
}
+
return true;
}