X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=src%2Fdungeongen.h;h=4bd208330714387e755328936aafeabc80ab7b5a;hb=25a24c0cdf1467df51c41d0b24e2ab6318ba1850;hp=8986274834e2f6adc55c12095c10ff04a030f2cb;hpb=dfbdb5bcd7bc48efb21d585d5c22454a9d5f0f1e;p=oweals%2Fminetest.git diff --git a/src/dungeongen.h b/src/dungeongen.h index 898627483..4bd208330 100644 --- a/src/dungeongen.h +++ b/src/dungeongen.h @@ -43,19 +43,27 @@ struct DungeonParams { content_t c_water; content_t c_river_water; - content_t c_cobble; - content_t c_moss; + content_t c_wall; + content_t c_alt_wall; content_t c_stair; - GenNotifyType notifytype; bool diagonal_dirs; - float mossratio; + bool only_in_ground; v3s16 holesize; - v3s16 roomsize; + u16 corridor_len_min; + u16 corridor_len_max; + v3s16 room_size_min; + v3s16 room_size_max; + v3s16 room_size_large_min; + v3s16 room_size_large_max; + u16 rooms_min; + u16 rooms_max; + s16 y_min; + s16 y_max; + GenNotifyType notifytype; - NoiseParams np_rarity; - NoiseParams np_wetness; NoiseParams np_density; + NoiseParams np_alt_wall; }; class DungeonGen { @@ -99,8 +107,7 @@ public: } }; -extern NoiseParams nparams_dungeon_rarity; -extern NoiseParams nparams_dungeon_wetness; extern NoiseParams nparams_dungeon_density; +extern NoiseParams nparams_dungeon_alt_wall; #endif