Added basic saving funcionality.
This commit is contained in:
parent
4e9422b672
commit
67e216d4ee
23
game.c
23
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
|
||||
|
4
game.h
4
game.h
@ -19,6 +19,10 @@ void drawLastPressed(char ch);
|
||||
|
||||
void drawCurPos();
|
||||
|
||||
void saveGame(char* name);
|
||||
|
||||
void loadGame(char* name);
|
||||
|
||||
void endGame();
|
||||
|
||||
#endif
|
||||
|
4
main.c
4
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;
|
||||
|
Loading…
Reference in New Issue
Block a user