Add default config values, Update px size on map load

This commit is contained in:
jonny_jr9 2023-12-09 18:28:39 +01:00
parent 92c47929b3
commit 859b4c99b2
3 changed files with 34 additions and 2 deletions

View File

@ -33,6 +33,10 @@ typedef struct map_t {
} map_t; } map_t;
// calculates width in pixels of one block in the SDL window according to currently loaded map and configured window size and updates the config.
void updateBlockSizePx();
// search and load map by name in storedMaps[] (map.c) // search and load map by name in storedMaps[] (map.c)
// stops program when map not found! // stops program when map not found!
void loadMapByName(char *name); void loadMapByName(char *name);

View File

@ -1,4 +1,12 @@
#include "config.h" #include "config.h"
//global config struct //define global struct for configuration values
config_t config; //default values defined here: (note: gets modified by map.c or menu.c)
config_t config = {
.windowSize = 800,
.blockSizePx = 800/10, //default map is 10x10 blocks
.cycleDurationMs = 300,
.difficulty = 1,
.snakeDefaultLength = 2,
.leaderboardFilename = ""
};

View File

@ -105,6 +105,24 @@ map_t generateMap(int difficulty, int sizeX, int sizeY)
//===========================
//==== updateBlockSizePx ====
//===========================
// calculates width in pixels of one block in the SDL window according to currently loaded map and configured window size and updates the config.
void updateBlockSizePx(){
// due to square pixel requirement
// larger dimension of the map has to be used if map is not square
if (game.map.height >= game.map.width) {
config.blockSizePx = config.windowSize / game.map.height;
}
else
{
config.blockSizePx = config.windowSize / game.map.width;
}
}
//=========================== //===========================
//====== loadMapByName ====== //====== loadMapByName ======
//=========================== //===========================
@ -142,6 +160,8 @@ void loadMap(map_t map)
printMap(map); printMap(map);
#endif #endif
game.map = map; game.map = map;
// update rendered pixel size (due to new map size)
updateBlockSizePx();
game.mapIsLoaded = true; game.mapIsLoaded = true;
return; return;
} }