From 45533f77052e408bede422f211736f2979fe19a4 Mon Sep 17 00:00:00 2001 From: Christian Heller Date: Sun, 26 May 2013 01:55:18 +0200 Subject: [PATCH] Added experimental map loading / saving. --- keybindings | 2 ++ map | Bin 0 -> 3074 bytes roguelike.c | 41 ++++++++++++++++++++++++++++++++++++++++- 3 files changed, 42 insertions(+), 1 deletion(-) create mode 100644 map diff --git a/keybindings b/keybindings index cb285c7..9b0f2a1 100644 --- a/keybindings +++ b/keybindings @@ -17,6 +17,8 @@ 95 shrink horizontally 43 grow vertically 45 shrink vertically +108 load map +115 save map 119 map up 120 map down 97 map left diff --git a/map b/map new file mode 100644 index 0000000000000000000000000000000000000000..8fc90f7d3c24beac9b625cafb7fdb5489c473b52 GIT binary patch literal 3074 zcmdT@*>%G(4C^SFz&oUqbpI(T96V&pQS)AZlB5y|fFLEiUq8>s=YNg^XE?M)bUgGO z_}~g<4upDEl9mWI_#3Ostg{QsggBs5dUGsftfngPN`KYBfFCy#1@lpiFN0bUaV7;^ z3xOPt+*k`i_#+mnXj-jy^_@(&!onN-$@I>~qOv$uRRdl^T;W=^a>-+?N{qP3udcHQT_0VuQ>|@=heLaGWYVe_(43*d^mKaCbZ!SeDxbP`QLbdXKcVYR%&L z4wZhZIn2Oec4I?86C4Q%Uq24f&M^|tIrsVzcXVqi2K9PR0Cp*E}uEG`gTvjq~W m>63*LxB;d@YyMaa0$O0&BN!0L6hMT83)PTDIk^vBzJCGS+4*w- literal 0 HcmV?d00001 diff --git a/roguelike.c b/roguelike.c index 532ae70..cc218a3 100644 --- a/roguelike.c +++ b/roguelike.c @@ -1,4 +1,5 @@ #include +#include #include #include #include @@ -143,11 +144,45 @@ void move_player (struct World * world, char d) { prev = success * d; next_turn (world); } -void player_wait(struct World * world) { +void player_wait (struct World * world) { // Make player wait one turn. next_turn (world); update_log (world, "\nYou wait."); } +void save_map (struct Map * map) { +// Save map to file "map". + FILE * file = fopen("map", "w"); + fputc(map->width / CHAR_MAX, file); + fputc(map->width % CHAR_MAX, file); + uint16_t y, x; + for (y = 0; y < map->height; y++) + for (x = 0; x < map->width; x++) + fputc(map->cells[y * map->width + x], file); + fclose(file); } + +struct Map load_map () { +// Load map from file. + FILE * file = fopen("map", "r"); + struct Map map; + map.width = (fgetc(file) * CHAR_MAX) + fgetc(file); + long pos = ftell(file); + int c = fgetc(file); + uint32_t i = 0; + while (EOF != c) { + i++; + c = fgetc(file); } + map.cells = malloc(i * sizeof(char)); + map.height = i / map.width; + fseek(file, pos, SEEK_SET); + c = fgetc(file); + i = 0; + while (EOF != c) { + map.cells[i] = (char) c; + c = fgetc(file); + i++; } + fclose(file); + return map; } + int main () { struct World world; init_keybindings(&world); @@ -218,6 +253,10 @@ int main () { keyswin_move_selection (&world, 'd'); else if (key == get_action_key(world.keybindings, "keys mod")) keyswin_mod_key (&world, &win_meta); + else if (key == get_action_key(world.keybindings, "load map")) + map = load_map(); + else if (key == get_action_key(world.keybindings, "save map")) + save_map(&map); else if (key == get_action_key(world.keybindings, "map up")) map_scroll (&map, 'n'); else if (key == get_action_key(world.keybindings, "map down")) -- 2.30.2