home · contact · privacy
Moved config files into config/ directory.
authorChristian Heller <c.heller@plomlompom.de>
Wed, 28 Aug 2013 22:17:34 +0000 (00:17 +0200)
committerChristian Heller <c.heller@plomlompom.de>
Wed, 28 Aug 2013 22:17:34 +0000 (00:17 +0200)
config/defs [new file with mode: 0644]
config/keybindings [new file with mode: 0644]
defs [deleted file]
keybindings [deleted file]
src/keybindings.c
src/main.c

diff --git a/config/defs b/config/defs
new file mode 100644 (file)
index 0000000..5761952
--- /dev/null
@@ -0,0 +1,5 @@
+1 m a 4 1 ANT
+2 m z 5 3 ZOMBIE
+3 m S 5 9 SHOGGOTH
+4 i # DIRT
+5 i % SKELETON
diff --git a/config/keybindings b/config/keybindings
new file mode 100644 (file)
index 0000000..6884e61
--- /dev/null
@@ -0,0 +1,29 @@
+81 quit
+75 save keys
+260 scroll pad left
+261 scroll pad right
+258 keys nav down
+259 keys nav up
+10 keys mod
+265 toggle keys window
+266 toggle map window
+267 toggle info window
+268 toggle log window
+62 cycle forwards
+60 cycle backwards
+121 shift forwards
+89 shift backwards
+42 grow horizontally
+95 shrink horizontally
+43 grow vertically
+45 shrink vertically
+119 map up
+120 map down
+97 map left
+100 map right
+115 map center player
+87 player up
+88 player down
+65 player left
+68 player right
+83 wait / next turn
diff --git a/defs b/defs
deleted file mode 100644 (file)
index 5761952..0000000
--- a/defs
+++ /dev/null
@@ -1,5 +0,0 @@
-1 m a 4 1 ANT
-2 m z 5 3 ZOMBIE
-3 m S 5 9 SHOGGOTH
-4 i # DIRT
-5 i % SKELETON
diff --git a/keybindings b/keybindings
deleted file mode 100644 (file)
index 6884e61..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-81 quit
-75 save keys
-260 scroll pad left
-261 scroll pad right
-258 keys nav down
-259 keys nav up
-10 keys mod
-265 toggle keys window
-266 toggle map window
-267 toggle info window
-268 toggle log window
-62 cycle forwards
-60 cycle backwards
-121 shift forwards
-89 shift backwards
-42 grow horizontally
-95 shrink horizontally
-43 grow vertically
-45 shrink vertically
-119 map up
-120 map down
-97 map left
-100 map right
-115 map center player
-87 player up
-88 player down
-65 player left
-68 player right
-83 wait / next turn
index 6fabea65ed499074ef9deb3e65077e8572f0ab64..c318ec18f49c1501c0e72640d7e01db01303350a 100644 (file)
@@ -16,7 +16,7 @@
 
 extern void init_keybindings(struct World * world)
 {
-    FILE * file = fopen("keybindings", "r");
+    FILE * file = fopen("config/keybindings", "r");
     uint16_t lines, linemax;
     textfile_sizes(file, &linemax, &lines);
     struct KeyBinding * keybindings = malloc(lines * sizeof(struct KeyBinding));
@@ -49,7 +49,7 @@ extern void save_keybindings(struct World * world)
     struct KeysWinData * keyswindata = (struct KeysWinData *)
                                        world->keyswindata;
     struct KeyBinding * keybindings = world->keybindings;
-    FILE * file = fopen("keybindings", "w");
+    FILE * file = fopen("config/keybindings", "w");
     uint16_t linemax = 0;
     uint16_t i;
     for (i = 0; i <= keyswindata->max; i++)
index 247ec507173c9af85e02d6549926f08e3d5b6db4..38e67b8471a2347f9834e6868e129f423824bf74 100644 (file)
@@ -99,7 +99,7 @@ int main(int argc, char *argv[])
     world.player = &player;
     world.monster = 0;
     world.item = 0;
-    init_map_object_defs(&world, "defs");
+    init_map_object_defs(&world, "config/defs");
 
     /* For interactive mode, try to load world state from savefile. */
     char * err_o = "Trouble loading game (fopen() in main()) / "