2013-03-09 21:28:19 -05:00
|
|
|
/*
|
|
|
|
Minetest
|
|
|
|
Copyright (C) 2010-2013 celeron55, Perttu Ahola <celeron55@gmail.com>
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2.1 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
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"
|
2014-12-06 04:18:04 -05:00
|
|
|
#include "mapgen.h"
|
2013-03-09 21:28:19 -05:00
|
|
|
|
|
|
|
#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 ManualMapVoxelManipulator;
|
|
|
|
class INodeDefManager;
|
2013-12-07 22:45:21 -05:00
|
|
|
|
|
|
|
v3s16 rand_ortho_dir(PseudoRandom &random, bool diagonal_dirs);
|
2013-03-09 21:28:19 -05:00
|
|
|
v3s16 turn_xz(v3s16 olddir, int t);
|
|
|
|
v3s16 random_turn(PseudoRandom &random, v3s16 olddir);
|
|
|
|
int dir_to_facedir(v3s16 d);
|
|
|
|
|
2013-12-07 22:45:21 -05:00
|
|
|
|
|
|
|
struct DungeonParams {
|
|
|
|
content_t c_water;
|
|
|
|
content_t c_cobble;
|
|
|
|
content_t c_moss;
|
|
|
|
content_t c_stair;
|
|
|
|
|
2014-12-06 04:18:04 -05:00
|
|
|
GenNotifyType notifytype;
|
2013-12-07 22:45:21 -05:00
|
|
|
bool diagonal_dirs;
|
|
|
|
float mossratio;
|
|
|
|
v3s16 holesize;
|
|
|
|
v3s16 roomsize;
|
|
|
|
|
|
|
|
NoiseParams np_rarity;
|
|
|
|
NoiseParams np_wetness;
|
|
|
|
NoiseParams np_density;
|
|
|
|
};
|
|
|
|
|
2013-03-09 21:28:19 -05:00
|
|
|
class DungeonGen {
|
|
|
|
public:
|
2013-12-14 01:52:06 -05:00
|
|
|
ManualMapVoxelManipulator *vm;
|
|
|
|
Mapgen *mg;
|
2013-03-09 21:28:19 -05:00
|
|
|
u32 blockseed;
|
|
|
|
PseudoRandom random;
|
|
|
|
v3s16 csize;
|
2013-12-07 22:45:21 -05:00
|
|
|
|
|
|
|
content_t c_torch;
|
|
|
|
DungeonParams dp;
|
2014-12-06 04:18:04 -05:00
|
|
|
|
2013-03-09 21:28:19 -05:00
|
|
|
//RoomWalker
|
|
|
|
v3s16 m_pos;
|
|
|
|
v3s16 m_dir;
|
|
|
|
|
2013-12-14 01:52:06 -05:00
|
|
|
DungeonGen(Mapgen *mg, DungeonParams *dparams);
|
|
|
|
void generate(u32 bseed, v3s16 full_node_min, v3s16 full_node_max);
|
2014-12-06 04:18:04 -05:00
|
|
|
|
2013-03-09 21:28:19 -05:00
|
|
|
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);
|
2014-12-06 04:18:04 -05:00
|
|
|
|
2013-03-09 21:28:19 -05:00
|
|
|
void randomizeDir()
|
|
|
|
{
|
2013-12-07 22:45:21 -05:00
|
|
|
m_dir = rand_ortho_dir(random, dp.diagonal_dirs);
|
2013-03-09 21:28:19 -05:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-12-07 22:45:21 -05:00
|
|
|
extern NoiseParams nparams_dungeon_rarity;
|
|
|
|
extern NoiseParams nparams_dungeon_wetness;
|
|
|
|
extern NoiseParams nparams_dungeon_density;
|
2013-03-09 21:28:19 -05:00
|
|
|
|
|
|
|
#endif
|