Added basic saving funcionality.

This commit is contained in:
Sheldon Lee 2020-07-04 00:26:34 +01:00
parent 4e9422b672
commit 67e216d4ee
3 changed files with 29 additions and 2 deletions

23
game.c
View File

@ -2,6 +2,7 @@
#include "game.h" #include "game.h"
#include "grid.h" #include "grid.h"
#include "vect.h" #include "vect.h"
#include "log.h"
static Grid* grid = 0; static Grid* grid = 0;
@ -122,6 +123,28 @@ void drawCurPos()
attroff(COLOR_PAIR(3)); attroff(COLOR_PAIR(3));
} }
void saveGame(char* name)
{
unsigned int width, height;
getDimensions(grid, &width, &height);
FILE* file = fopen(name, "w");
if (file) {
for (int y = 0; y < height; y++) {
for (int x = 0; x < width; x++) {
fprintf(file, "%i", getPixel(grid, x, y));
}
fprintf(file, "\n");
}
fclose(file);
}
}
void loadGame(char* name)
{
}
void endGame() void endGame()
{ {
// free stuff // free stuff

4
game.h
View File

@ -19,6 +19,10 @@ void drawLastPressed(char ch);
void drawCurPos(); void drawCurPos();
void saveGame(char* name);
void loadGame(char* name);
void endGame(); void endGame();
#endif #endif

4
main.c
View File

@ -12,7 +12,6 @@
int main() int main()
{ {
// framerate of the game // framerate of the game
const int FRAME_RATE = 30; const int FRAME_RATE = 30;
const float FRAME_TIME = 1.f/(float)FRAME_RATE; const float FRAME_TIME = 1.f/(float)FRAME_RATE;
@ -37,9 +36,10 @@ int main()
usleep(pow(10,6)*(FRAME_TIME-t)); usleep(pow(10,6)*(FRAME_TIME-t));
float t = (float) (clock()-start_t) / (float) CLOCKS_PER_SEC; float t = (float) (clock()-start_t) / (float) CLOCKS_PER_SEC;
} }
saveGame("test.txt");
endGame(); endGame();
endLog(); endLog();
return 0; return 0;