From 5a97bf48f2507ac7e8c3765959c25a9d4f9b74c3 Mon Sep 17 00:00:00 2001 From: John Hodge Date: Sat, 20 Nov 2010 14:08:27 +0800 Subject: [PATCH] Working on item database --- server/src/itemdb.c | 42 ++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 40 insertions(+), 2 deletions(-) diff --git a/server/src/itemdb.c b/server/src/itemdb.c index cf8e7f1..01f801e 100644 --- a/server/src/itemdb.c +++ b/server/src/itemdb.c @@ -9,6 +9,8 @@ */ #include #include +#include +#include #include "common.h" // === GLOBALS === @@ -17,6 +19,10 @@ tItem *gaItems = NULL; tHandler *gaHandlers = NULL; char *gsItemListFile = DEFAULT_ITEM_FILE; +// === PROTOTYPES === +void Load_Itemlist(void); +char *trim(char *__str); + // === CODE === /** * \brief Read the item list from disk @@ -26,6 +32,7 @@ void Load_Itemlist(void) FILE *fp = fopen(gsItemListFile, "r"); char buffer[BUFSIZ]; char *line; + int lineNum = 0; // Error check if(!fp) { @@ -37,6 +44,9 @@ void Load_Itemlist(void) { char *tmp; char *type, *num, *price, *desc; + + lineNum ++; + // Remove comments tmp = strchr(buffer, '#'); if(tmp) *tmp = '\0'; @@ -51,13 +61,41 @@ void Load_Itemlist(void) type = line; // - Number num = strchr(type, ' '); - if(num) while(*num == ' ' || *num == '\t'); - if(!num) { + if(num) { + while(*num == ' ' || *num == '\t') num ++; + } + else { fprintf(stderr, "Syntax error on line %i of item file\n", lineNum); continue; } // - Price price = strchr(num, ' '); + if( price ) { + while(*num == ' ' || *num == '\t') num ++; + } + else { + fprintf(stderr, "Syntax error on line %i of item file\n", lineNum); + continue; + } + // - Name/Description + desc = strchr(price, ' '); } } + +char *trim(char *__str) +{ + char *ret; + int i; + + while( isspace(*__str) ) + __str++; + ret = __str; + + i = strlen(ret); + while( i-- && isspace(__str[i]) ) { + __str[i] = '\0'; + } + + return ret; +} -- 2.20.1