Continue manual

This commit is contained in:
Miloslav Ciz 2025-03-11 21:56:31 +01:00
parent a1e5f50e58
commit 65dd5f11e9
3 changed files with 116 additions and 23 deletions

5
map.h
View file

@ -16,7 +16,7 @@
The TEXT format serves for editing maps in human readable format, it more or
less corresponds to the binary storage format (below) with some exceptions.
It has the following structure:
- Target time as a decimal number of milliseconds.
- Target time as a decimal number of physics ticks.
- Non-decimal character.
- Number of environment (0, 1, 2, ...)
- A series of block strings. Blocks may be preceded/followed by characters
@ -729,8 +729,9 @@ uint8_t LCR_mapLoadFromStr(char (*getNextCharFunc)(void), const char *name)
_LCR_mapComputeHash();
LCR_LOG1("map loaded, block count:")
LCR_LOG1("map loaded, block count/hash:")
LCR_LOG1_NUM(LCR_currentMap.blockCount)
LCR_LOG1_NUM(LCR_currentMap.hash)
LCR_mapReset();