Skip to content

Commit

Permalink
Dungeongen: Optionally set ignore to be untouchable to disable floati…
Browse files Browse the repository at this point in the history
…ng dungeons
  • Loading branch information
paramat committed Mar 7, 2015
1 parent e9eda2b commit ffdf8de
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
2 changes: 2 additions & 0 deletions minetest.conf.example
Expand Up @@ -469,6 +469,8 @@
# Controls size of deserts and beaches in Mapgen V6
#mgv6_freq_desert = 0.45
#mgv6_freq_beach = 0.15
# Enable/disable floating dungeons and dungeon slices
#enable_floating_dungeons = true

# Perlin noise attributes for different map generation parameters.
# Noise parameters can be specified as a set of positional values:
Expand Down
1 change: 1 addition & 0 deletions src/defaultsettings.cpp
Expand Up @@ -292,6 +292,7 @@ void set_default_settings(Settings *settings)
settings->setDefault("water_level", "1");
settings->setDefault("chunksize", "5");
settings->setDefault("mg_flags", "");
settings->setDefault("enable_floating_dungeons", "true");

// IPv6
settings->setDefault("enable_ipv6", "true");
Expand Down
9 changes: 6 additions & 3 deletions src/dungeongen.cpp
Expand Up @@ -79,14 +79,17 @@ void DungeonGen::generate(u32 bseed, v3s16 nmin, v3s16 nmax) {
// Dungeon generator doesn't modify places which have this set
vm->clearFlag(VMANIP_FLAG_DUNGEON_INSIDE | VMANIP_FLAG_DUNGEON_PRESERVE);

// Set all air and water to be untouchable to make dungeons open
// to caves and open air
bool no_float = !g_settings->getBool("enable_floating_dungeons");

// Set all air and water (and optionally ignore) to be untouchable
// to make dungeons open to caves and open air
for (s16 z = nmin.Z; z <= nmax.Z; z++) {
for (s16 y = nmin.Y; y <= nmax.Y; y++) {
u32 i = vm->m_area.index(nmin.X, y, z);
for (s16 x = nmin.X; x <= nmax.X; x++) {
content_t c = vm->m_data[i].getContent();
if (c == CONTENT_AIR || c == dp.c_water)
if (c == CONTENT_AIR || c == dp.c_water
|| (no_float && c == CONTENT_IGNORE))
vm->m_flags[i] |= VMANIP_FLAG_DUNGEON_PRESERVE;
i++;
}
Expand Down

1 comment on commit ffdf8de

@HybridDog
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

desdung
Can l somehow reduce the amount of desert dungeons?

Please sign in to comment.