snake-pp/src/map.c
jonny_jr9 3e40be47cf Update module structure: Add map.c
=> global config and game struct changed
=> some functions were dropped/moved
- Outsourced data types and functions to map.c / map.h
- Update function and module diagram
- Adjust custom data types in source code
2023-11-10 12:46:00 +01:00

41 lines
854 B
C

#include "map.h"
#include "game.h"
// generate random map based on difficulty level
map_t generateMap(int difficulty)
{
map_t newMap;
return newMap;
// TODO add map generator
}
// search and load map by name (if not found loads default map)
void loadMapByName(char *name)
{
return;
// TODO add map presets
}
// load map by passed definition
void loadMap(map_t map)
{
game.map = map;
game.mapIsLoaded = true;
return;
}
// check if there is collision at certain coordinate
bool checkCollides(int x, int y)
{
// loop through all collision boxes on the map
for (int i = 0; i < game.map.collisionCount; i++)
{
// return true if match found
if (game.map.collisions[i].posX == x && game.map.collisions[i].posY == y)
return true;
}
return false;
}
//TODO add map presets here: