From 78adac4e10469f0dfac417b3085d3b3e0b983c8d Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Mon, 24 Dec 2018 15:10:52 +0100 Subject: [PATCH] an option to disable wandering monsters; settings (reptilecheat, autocheat, safety etc) configurable in map editor; save items/kills and some other settings --- hyper.h | 8 +++-- mapeditor.cpp | 79 +++++++++++++++++++++++++++++++++++++++++++++++++- monstergen.cpp | 3 ++ system.cpp | 5 +++- 4 files changed, 90 insertions(+), 5 deletions(-) diff --git a/hyper.h b/hyper.h index 9d256d8a..a3ac0806 100644 --- a/hyper.h +++ b/hyper.h @@ -2,9 +2,9 @@ // It is quite chaotic. // version numbers -#define VER "10.5d" -#define VERNUM 10504 -#define VERNUM_HEX 0xA504 +#define VER "10.5e" +#define VERNUM 10505 +#define VERNUM_HEX 0xA505 #include @@ -1205,6 +1205,7 @@ namespace mapeditor { bool haveUserShape(eShapegroup group, int id); void draw_texture_ghosts(cell *c, const transmatrix& V); + void map_settings(); } struct renderbuffer; @@ -1739,6 +1740,7 @@ bool needConfirmationEvenIfSaved(); #define DEFAULTNOR(sym) (DEFAULTCONTROL || multi::notremapped(sym)) extern bool timerghost; +extern bool gen_wandering; #define CAP_MENUSCALING (ISPANDORA || ISMOBILE) diff --git a/mapeditor.cpp b/mapeditor.cpp index ba9150cb..1a664d31 100644 --- a/mapeditor.cpp +++ b/mapeditor.cpp @@ -123,6 +123,27 @@ namespace mapstream { f.write(ginf[gCrystal].vertex); } if(geometry == gArchimedean) f.write(arcm::current.symbol); + + // game settings + f.write(safety); + f.write(autocheat); + f.write(gen_wandering); + f.write(reptilecheat); + f.write(timerghost); + f.write(patterns::canvasback); + f.write(patterns::whichShape); + f.write(patterns::subpattern_flags); + f.write(patterns::whichCanvas); + f.write(patterns::displaycodes); + f.write(mapeditor::drawplayer); + + { + int i = ittypes; f.write(i); + for(int k=0; kgamestart() : cwt.at->master->c7); for(int i=0; i= 10505) { + // game settings + f.read(safety); + bool b; + f.read(b); if(b) autocheat = true; + f.read(gen_wandering); + f.read(reptilecheat); + f.read(timerghost); + f.read(patterns::canvasback); + f.read(patterns::whichShape); + f.read(patterns::subpattern_flags); + f.read(patterns::whichCanvas); + f.read(patterns::displaycodes); + f.read(mapeditor::drawplayer); + + int i; + f.read(i); if(i > ittypes || i < 0) throw hstream_exception(); + for(int k=0; k motypes || i < 0) throw hstream_exception(); + for(int k=0; kmonst) return 0; @@ -303,6 +304,8 @@ eItem wanderingTreasure(cell *c) { void wandering() { if(!canmove) return; + if(!gen_wandering) return; + pathdata pd(moYeti); int seepcount = getSeepcount(); int ghostcount = getGhostcount(); diff --git a/system.cpp b/system.cpp index 1db09b90..68ec9ea4 100644 --- a/system.cpp +++ b/system.cpp @@ -268,7 +268,10 @@ void initgame() { cheater = 0; if(autocheat) cheater = 1; hauntedWarning = false; - timerghost = true; + if(!autocheat) { + timerghost = true; + gen_wandering = true; + } truelotus = 0; survivalist = true; crystal::used_compass_inside = false;