Add support for difficulty-level 1-3 (food placement)

New file for all difficulty related parameters
Food placement parameters depend on difficulty
This commit is contained in:
jonny_jr9 2023-12-17 12:42:44 +01:00
parent 814cee7ba1
commit c94f205e47
4 changed files with 51 additions and 4 deletions

View File

@ -56,6 +56,7 @@ set(SOURCES
src/map.c
src/common.c
src/sound.c
src/difficulty.c
)

12
include/difficulty.h Normal file
View File

@ -0,0 +1,12 @@
#pragma once
#include "config.h"
//----------------------------------------------------------------
// All functions/options regarding/affecting the difficulty level
// -> collected in one file for easy adjustment
//----------------------------------------------------------------
// set parameters for food placement by current difficulty level
void difficulty_getFoodPlacementParam(float * minDist, float * maxDist);

33
src/difficulty.c Normal file
View File

@ -0,0 +1,33 @@
#include "difficulty.h"
//----------------------------------------------------------------
// All functions/options regarding/affecting the difficulty level
// -> collected in one file for easy adjustment
//----------------------------------------------------------------
//======================================
//== difficulty_getFoodPlacementParam ==
//======================================
// set parameters for food placement by current difficulty level
void difficulty_getFoodPlacementParam(float *minDist, float *maxDist)
{
switch (config.difficulty)
{
default:
case 0:
case 1: //EASY/default: always place far away
*minDist = 3.0; // new food has to be at least minDist blocks away from any object
*maxDist = 5.0; // new food has to be closer than maxDist to an object
break;
case 2: //MEDIUM: place next to OR further away
*minDist = 1.0;
*maxDist = 4.0;
break;
case 3: //HARD: always place next to block
*minDist = 1.0;
*maxDist = 1.0;
break;
}
return;
}

View File

@ -5,6 +5,7 @@
#include "common.h"
#include "map.h"
#include "game.h"
#include "difficulty.h"
@ -87,11 +88,11 @@ newValues:
void placeFood()
{
//--- config ---
static const float minDist = 3; // new food has to be at least minDist blocks away from any object
float maxDist = 5; // new food has to be closer than maxDist to an object
float minDist; // new food has to be at least minDist blocks away from any object
float maxDist; // new food has to be closer than maxDist to an object
static const int maxTries = 25; // each maxTries the limit maxDist get loosened (prevents deadlock)
// TODO calculate this range using configured difficulty level
// e.g. in hard difficulty the maxDist could be <2 so it is always placed close to a collision
// get food placement parameters according to difficulty (difficulty.c)
difficulty_getFoodPlacementParam(&minDist, &maxDist);
//--- variables ---
int foodX, foodY, triesMax = 0, triesMin;