From 67e216d4ee1ce8d8b0c149143a5c16314979f918 Mon Sep 17 00:00:00 2001 From: Sheldon Lee Date: Sat, 4 Jul 2020 00:26:34 +0100 Subject: [PATCH] Added basic saving funcionality. --- game.c | 23 +++++++++++++++++++++++ game.h | 4 ++++ main.c | 4 ++-- 3 files changed, 29 insertions(+), 2 deletions(-) diff --git a/game.c b/game.c index 459651b..ddff868 100644 --- a/game.c +++ b/game.c @@ -2,6 +2,7 @@ #include "game.h" #include "grid.h" #include "vect.h" +#include "log.h" static Grid* grid = 0; @@ -122,6 +123,28 @@ void drawCurPos() 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() { // free stuff diff --git a/game.h b/game.h index 50a0507..1772c51 100644 --- a/game.h +++ b/game.h @@ -19,6 +19,10 @@ void drawLastPressed(char ch); void drawCurPos(); +void saveGame(char* name); + +void loadGame(char* name); + void endGame(); #endif diff --git a/main.c b/main.c index 5055e84..b86ba38 100644 --- a/main.c +++ b/main.c @@ -12,7 +12,6 @@ int main() { - // framerate of the game const int FRAME_RATE = 30; const float FRAME_TIME = 1.f/(float)FRAME_RATE; @@ -37,9 +36,10 @@ int main() usleep(pow(10,6)*(FRAME_TIME-t)); float t = (float) (clock()-start_t) / (float) CLOCKS_PER_SEC; - } + saveGame("test.txt"); + endGame(); endLog(); return 0;