X-Git-Url: https://jxself.org/git/?p=open-adventure.git;a=blobdiff_plain;f=newdungeon.py;h=89d8db6f794aca63f9e722c1fbc87f04dfdef9c4;hp=a981a1db4e0f2f23caa7cf866bee61f622afad70;hb=3a93b2b5f08351c3e87d4f41c5c61273c42e9420;hpb=606b590c1e7205e678288c8ad800aba1f3c2edeb diff --git a/newdungeon.py b/newdungeon.py index a981a1d..89d8db6 100755 --- a/newdungeon.py +++ b/newdungeon.py @@ -22,6 +22,8 @@ h_template = """/* Generated from adventure.yaml - do not hand-hack! */ typedef struct {{ const char* inventory; const char** longs; + const char** sounds; + const char** texts; }} object_description_t; typedef struct {{ @@ -216,6 +218,12 @@ def get_object_descriptions(obj): template = """ {{ .inventory = {}, .longs = (const char* []) {{ +{} + }}, + .sounds = (const char* []) {{ +{} + }}, + .texts = (const char* []) {{ {} }}, }}, @@ -242,7 +250,21 @@ def get_object_descriptions(obj): message = message[:45] + "..." statedefines += "#define %s\t%d /* %s */\n" % (label, i, message) statedefines += "\n" - obj_str += template.format(i_msg, longs_str) + sounds_str = "" + if item[1].get("sounds") == None: + sounds_str = " " * 12 + "NULL," + else: + for l_msg in item[1]["sounds"]: + sounds_str += " " * 12 + make_c_string(l_msg) + ",\n" + sounds_str = sounds_str[:-1] # trim trailing newline + texts_str = "" + if item[1].get("texts") == None: + texts_str = " " * 12 + "NULL," + else: + for l_msg in item[1]["texts"]: + texts_str += " " * 12 + make_c_string(l_msg) + ",\n" + texts_str = texts_str[:-1] # trim trailing newline + obj_str += template.format(i_msg, longs_str, sounds_str, texts_str) obj_str = obj_str[:-1] # trim trailing newline return obj_str