newdungeon.py is now make_dungeon.py.

newdb.[ch] is now dungeon.[ch].
This commit is contained in:
Jason S. Ninneman 2017-06-29 08:45:47 -07:00
parent 074d2c8a0f
commit db281a96d7

View file

@ -47,14 +47,14 @@
import sys, yaml import sys, yaml
yaml_name = "adventure.yaml" yaml_name = "adventure.yaml"
h_name = "newdb.h" h_name = "dungeon.h"
c_name = "newdb.c" c_name = "dungeon.c"
statedefines = "" statedefines = ""
h_template = """/* Generated from adventure.yaml - do not hand-hack! */ h_template = """/* Generated from adventure.yaml - do not hand-hack! */
#ifndef NEWDB_H #ifndef DUNGEON_H
#define NEWDB_H #define DUNGEON_H
#include <stdio.h> #include <stdio.h>
#include <stdbool.h> #include <stdbool.h>
@ -215,7 +215,7 @@ enum special_refs {{
/* State definitions */ /* State definitions */
{} {}
#endif /* end NEWDB_H */ #endif /* end DUNGEON_H */
""" """
c_template = """/* Generated from adventure.yaml - do not hand-hack! */ c_template = """/* Generated from adventure.yaml - do not hand-hack! */