Skip to content

Commit 4434498

Browse files
committedNov 13, 2015
Mgv6: Move global mapgen flag 'flat' into mgv6 spflags
Add mgv6 spflag 'flat' Global flag is kept for backwards compatibility but is now undocumented
1 parent 657a16d commit 4434498

File tree

4 files changed

+12
-10
lines changed

4 files changed

+12
-10
lines changed
 

‎builtin/settingtypes.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -829,10 +829,10 @@ max_block_generate_distance (Max block generate distance) int 6
829829
map_generation_limit (Map generation limit) int 31000 0 31000
830830

831831
# Global map generation attributes.
832+
# The 'trees' flag only has effect in mgv6.
832833
# Flags that are not specified in the flag string are not modified from the default.
833834
# Flags starting with "no" are used to explicitly disable them.
834-
# 'trees' and 'flat' flags only have effect in mgv6.
835-
mg_flags (Mapgen flags) flags trees,caves,dungeons,light trees,caves,dungeons,light,flat,notrees,nocaves,nodungeons,nolight,noflat
835+
mg_flags (Mapgen flags) flags trees,caves,dungeons,light trees,caves,dungeons,light,notrees,nocaves,nodungeons,nolight
836836

837837
[**Advanced]
838838

@@ -889,7 +889,7 @@ mgv5_np_cave2 (Mapgen v5 cave2 noise parameters) noise_params 0, 12, (50, 50, 50
889889
# When snowbiomes are enabled jungles are enabled and the jungles flag is ignored.
890890
# Flags that are not specified in the flag string are not modified from the default.
891891
# Flags starting with "no" are used to explicitly disable them.
892-
mgv6_spflags (Mapgen v6 flags) flags jungles,biomeblend,mudflow,snowbiomes jungles,biomeblend,mudflow,snowbiomes,nojungles,nobiomeblend,nomudflow,nosnowbiomes
892+
mgv6_spflags (Mapgen v6 flags) flags jungles,biomeblend,mudflow,snowbiomes jungles,biomeblend,mudflow,snowbiomes,flat,nojungles,nobiomeblend,nomudflow,nosnowbiomes,noflat
893893

894894
# Controls size of deserts and beaches in Mapgen v6.
895895
# When snowbiomes are enabled 'mgv6_freq_desert' is ignored.

‎minetest.conf.example

+3-3
Original file line numberDiff line numberDiff line change
@@ -1021,10 +1021,10 @@
10211021
# map_generation_limit = 31000
10221022

10231023
# Global map generation attributes.
1024+
# The 'trees' flag only has effect in mgv6.
10241025
# Flags that are not specified in the flag string are not modified from the default.
10251026
# Flags starting with "no" are used to explicitly disable them.
1026-
# 'trees' and 'flat' flags only have effect in mgv6.
1027-
# type: flags possible values: trees, caves, dungeons, light, flat, notrees, nocaves, nodungeons, nolight, noflat
1027+
# type: flags possible values: trees, caves, dungeons, light, notrees, nocaves, nodungeons, nolight
10281028
# mg_flags = trees,caves,dungeons,light
10291029

10301030
### Advanced
@@ -1093,7 +1093,7 @@
10931093
# When snowbiomes are enabled jungles are enabled and the jungles flag is ignored.
10941094
# Flags that are not specified in the flag string are not modified from the default.
10951095
# Flags starting with "no" are used to explicitly disable them.
1096-
# type: flags possible values: jungles, biomeblend, mudflow, snowbiomes, nojungles, nobiomeblend, nomudflow, nosnowbiomes
1096+
# type: flags possible values: jungles, biomeblend, mudflow, snowbiomes, flat, nojungles, nobiomeblend, nomudflow, nosnowbiomes, noflat
10971097
# mgv6_spflags = jungles,biomeblend,mudflow,snowbiomes
10981098

10991099
# Controls size of deserts and beaches in Mapgen v6.

‎src/mapgen_v6.cpp

+5-4
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ FlagDesc flagdesc_mapgen_v6[] = {
4242
{"biomeblend", MGV6_BIOMEBLEND},
4343
{"mudflow", MGV6_MUDFLOW},
4444
{"snowbiomes", MGV6_SNOWBIOMES},
45+
{"flat", MGV6_FLAT},
4546
{NULL, 0}
4647
};
4748

@@ -263,7 +264,7 @@ float MapgenV6::baseTerrainLevel(float terrain_base, float terrain_higher,
263264

264265
float MapgenV6::baseTerrainLevelFromNoise(v2s16 p)
265266
{
266-
if (flags & MG_FLAT)
267+
if ((spflags & MGV6_FLAT) || (flags & MG_FLAT))
267268
return water_level;
268269

269270
float terrain_base = NoisePerlin2D_PO(&noise_terrain_base->np,
@@ -289,7 +290,7 @@ float MapgenV6::baseTerrainLevelFromMap(v2s16 p)
289290

290291
float MapgenV6::baseTerrainLevelFromMap(int index)
291292
{
292-
if (flags & MG_FLAT)
293+
if ((spflags & MGV6_FLAT) || (flags & MG_FLAT))
293294
return water_level;
294295

295296
float terrain_base = noise_terrain_base->result[index];
@@ -386,7 +387,7 @@ bool MapgenV6::getHaveAppleTree(v2s16 p)
386387

387388
float MapgenV6::getMudAmount(int index)
388389
{
389-
if (flags & MG_FLAT)
390+
if ((spflags & MGV6_FLAT) || (flags & MG_FLAT))
390391
return MGV6_AVERAGE_MUD_AMOUNT;
391392

392393
/*return ((float)AVERAGE_MUD_AMOUNT + 2.0 * noise2d_perlin(
@@ -603,7 +604,7 @@ void MapgenV6::calculateNoise()
603604
int fx = full_node_min.X;
604605
int fz = full_node_min.Z;
605606

606-
if (!(flags & MG_FLAT)) {
607+
if (!((spflags & MGV6_FLAT) || (flags & MG_FLAT))) {
607608
noise_terrain_base->perlinMap2D_PO(x, 0.5, z, 0.5);
608609
noise_terrain_higher->perlinMap2D_PO(x, 0.5, z, 0.5);
609610
noise_steepness->perlinMap2D_PO(x, 0.5, z, 0.5);

‎src/mapgen_v6.h

+1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
3636
#define MGV6_BIOMEBLEND 0x02
3737
#define MGV6_MUDFLOW 0x04
3838
#define MGV6_SNOWBIOMES 0x08
39+
#define MGV6_FLAT 0x10
3940

4041

4142
extern FlagDesc flagdesc_mapgen_v6[];

0 commit comments

Comments
 (0)
Please sign in to comment.