- Remove old comments and unused code from main.cpp - Fix the following compiler errors and warnings (compiles now): WARNING: main.cpp:64:23: warning: comparison between ‘gameState_t’ {aka ‘enum gameState_t’} and ‘enum menus_t’ if(game.gameState == PAUSE) WARNING: menu.c:111:9: warning: implicit declaration of function ‘renderSettings’ ERROR: multiple definitions / redefinition of 'int recordsInFile'
27 lines
700 B
C
27 lines
700 B
C
#pragma once
|
|
#include "config.h"
|
|
|
|
#define MAX_PRINTED_SCORES 10
|
|
|
|
extern int recordsInFile;
|
|
|
|
// struct that store player score at the end of the game
|
|
typedef struct playerScore_t
|
|
{
|
|
int score;
|
|
char playerName[30];
|
|
int difficulty;
|
|
char map[30];
|
|
} playerScore_t;
|
|
|
|
// global struct for storing the 10 best players after reading it from the file (defined in files.c)
|
|
extern playerScore_t topScores[MAX_PRINTED_SCORES];
|
|
|
|
// function which saves score in a .bin file
|
|
void savePlayerScore(const char *filename);
|
|
|
|
// function which reads the 10 best finisher from the .bin file
|
|
void readTopScores(const char *filename);
|
|
|
|
// counts records in file
|
|
int countRecordsInFile(const char *filename);
|