aboutsummaryrefslogtreecommitdiff
path: root/cmake/Modules/misc.cmake
diff options
context:
space:
mode:
authorPilzAdam <pilzadam@minetest.net>2013-08-05 13:19:16 +0200
committerPilzAdam <pilzadam@minetest.net>2013-08-10 13:35:38 +0200
commit0d60bc55e4373167141f0f08a10a2174cc7e029a (patch)
tree416edc0cbd11e6ccfbf7daa510b12592437a64af /cmake/Modules/misc.cmake
parent35c5ccfad34417e37ecb76bfb2995e47142b272e (diff)
downloadminetest-0d60bc55e4373167141f0f08a10a2174cc7e029a.tar.gz
minetest-0d60bc55e4373167141f0f08a10a2174cc7e029a.tar.bz2
minetest-0d60bc55e4373167141f0f08a10a2174cc7e029a.zip
Dont download modstore info if its isnt needed
Diffstat (limited to 'cmake/Modules/misc.cmake')
0 files changed, 0 insertions, 0 deletions
ass="hl com">GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #ifndef DUNGEONGEN_HEADER #define DUNGEONGEN_HEADER #include "voxel.h" #include "noise.h" #include "mapgen.h" #define VMANIP_FLAG_DUNGEON_INSIDE VOXELFLAG_CHECKED1 #define VMANIP_FLAG_DUNGEON_PRESERVE VOXELFLAG_CHECKED2 #define VMANIP_FLAG_DUNGEON_UNTOUCHABLE (\ VMANIP_FLAG_DUNGEON_INSIDE|VMANIP_FLAG_DUNGEON_PRESERVE) class MMVManip; class INodeDefManager; v3s16 rand_ortho_dir(PseudoRandom &random, bool diagonal_dirs); v3s16 turn_xz(v3s16 olddir, int t); v3s16 random_turn(PseudoRandom &random, v3s16 olddir); int dir_to_facedir(v3s16 d); struct DungeonParams { content_t c_water; content_t c_river_water; content_t c_cobble; content_t c_moss; content_t c_stair; GenNotifyType notifytype; bool diagonal_dirs; float mossratio; v3s16 holesize; v3s16 roomsize; NoiseParams np_rarity; NoiseParams np_wetness; NoiseParams np_density; }; class DungeonGen { public: MMVManip *vm; Mapgen *mg; u32 blockseed; PseudoRandom random; v3s16 csize; content_t c_torch; DungeonParams dp; //RoomWalker v3s16 m_pos; v3s16 m_dir; DungeonGen(Mapgen *mg, DungeonParams *dparams); void generate(u32 bseed, v3s16 full_node_min, v3s16 full_node_max); void makeDungeon(v3s16 start_padding); void makeRoom(v3s16 roomsize, v3s16 roomplace); void makeCorridor(v3s16 doorplace, v3s16 doordir, v3s16 &result_place, v3s16 &result_dir); void makeDoor(v3s16 doorplace, v3s16 doordir); void makeFill(v3s16 place, v3s16 size, u8 avoid_flags, MapNode n, u8 or_flags); void makeHole(v3s16 place); bool findPlaceForDoor(v3s16 &result_place, v3s16 &result_dir); bool findPlaceForRoomDoor(v3s16 roomsize, v3s16 &result_doorplace, v3s16 &result_doordir, v3s16 &result_roomplace); void randomizeDir() { m_dir = rand_ortho_dir(random, dp.diagonal_dirs); } }; extern NoiseParams nparams_dungeon_rarity; extern NoiseParams nparams_dungeon_wetness; extern NoiseParams nparams_dungeon_density; #endif