From 5c2179bc9afa809fa3b915bea0d75f62f90f0644 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Thu, 15 Oct 2015 09:07:06 -0400 Subject: quest fixes --- src/Quest.cpp | 24 ++++++++++++++++-------- 1 file changed, 16 insertions(+), 8 deletions(-) (limited to 'src/Quest.cpp') diff --git a/src/Quest.cpp b/src/Quest.cpp index 5d19795..8aea006 100644 --- a/src/Quest.cpp +++ b/src/Quest.cpp @@ -1,17 +1,22 @@ #include -//#include -//#include + +#define TITLE Quest( +#define DESC , +#define REWARD ,(struct item_t){ +#define x , +#define END }), const Quest QuestList[TOTAL_QUESTS]={ - Quest("Test","A test quest",(struct item_t){1,TEST_ITEM}) +// Quest("Test","A test quest",(struct item_t){1,TEST_ITEM}), + +// Get quest list +#include "../config/quest_list.txt" + }; Quest::Quest(const char *t,const char *d,struct item_t r){ - size_t len; - title=(char *)malloc((len=strlen(t))); - strncpy(title,t,len); - desc=(char *)malloc((len=strlen(d))); - strncpy(desc,d,len); + strcpy((title=(char *)malloc(strlen(t))),t); + strcpy((desc =(char *)malloc(strlen(d))),d); memcpy(&reward,&r,sizeof(struct item_t)); } @@ -39,6 +44,9 @@ int QuestHandler::assign(const char *t){ #endif // DEBUG return current.size(); } +#ifdef DEBUG + DEBUG_printf("Finding quest: %s != %s\n",t,QuestList[i].title); +#endif // DEBUG } #ifdef DEBUG DEBUG_printf("Quest %s does not exist.\n",t); -- cgit v1.2.3