1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-06-27 16:36:03 +00:00

Mapgen: Remove unused 'flat' and 'trees' flags from mg_flags

When the 'flat' and 'trees' flags were moved into mgv6_spflags they
were left in mg_flags in an attempt to support old mgv6 worlds. However
their appearence in mg_flags causes confusion, also, later, old-world
support was found to be broken for mgv6 worlds with 'notrees'.

This commit cleans up the mess and comes a month after a thread warning
of the change, and explaining the required action, was posted in the
news subforum. Only old mgv6 worlds with 'flat' or 'notrees' are
affected, a small minority of worlds, the required action being
correctly setting these flags in mgv6_spflags.

Disable a section of the 'map settings manager' unit test which is to
be changed as it is causing problems for pull requests.
This commit is contained in:
paramat 2016-07-29 03:44:58 +01:00
parent fca8e53842
commit ea12da939f
4 changed files with 13 additions and 11 deletions

View file

@ -187,10 +187,13 @@ void TestMapSettingsManager::testMapSettingsManager()
UASSERT(mgr.mapgen_params == params);
UASSERT(mgr.makeMapgenParams() == params);
#if 0
// TODO(paramat or hmmmm): change this to compare the result against a static file
// Load the resulting map_meta.txt and make sure it contains what we expect
unsigned char expected_contents_hash[20] = {
0xf6, 0x44, 0x90, 0xb7, 0xab, 0xd8, 0x91, 0xf4, 0x08, 0x96,
0xfc, 0x7e, 0xed, 0x01, 0xc5, 0x9a, 0xfd, 0x2f, 0x2d, 0x79
0x48, 0x3f, 0x88, 0x5a, 0xc0, 0x7a, 0x14, 0x48, 0xa4, 0x71,
0x78, 0x56, 0x95, 0x2d, 0xdc, 0x6a, 0xf7, 0x61, 0x36, 0x5f
};
SHA1 ctx;
@ -201,6 +204,7 @@ void TestMapSettingsManager::testMapSettingsManager()
free(sha1_result);
UASSERT(!resultdiff);
#endif
}