blob: 82c405d4e1146d9464c571427f3f0ab20211f1ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
#include <Quest.h>
const Quest QuestList[TOTAL_QUESTS]={
Quest("Test","A test quest",0)
};
Quest::Quest(const char *t,const char *d,unsigned int x){
size_t len;
title=(char *)malloc((len=strlen(t)));
strncpy(title,t,len);
desc=(char *)malloc((len=strlen(d)));
strncpy(desc,d,len);
xp=x;
}
Quest::~Quest(){
free(title);
free(desc);
xp=0;
}
QuestHandler::QuestHandler(){
ccnt=0;
}
int QuestHandler::assign(const char *t){
unsigned int i=0;
if(ccnt==QUEST_LIMIT)
return -1;
for(;i<TOTAL_QUESTS;i++){
if(!strcmp(QuestList[i].title,t)){
current[ccnt++]=&QuestList[i];
return ccnt;
}
}
return -1;
}
int QuestHandler::drop(const char *t){
unsigned char i=0;
for(;i<ccnt;i++){
if(!strcmp(current[i]->title,t)){
for(i++;i<ccnt;i++){
current[i-1]=current[i];
}
return (--ccnt);
}
}
return -1;
}
int QuestHandler::finish(const char *t){
unsigned char i=0;
unsigned int j;
for(;i<ccnt;i++){
if(!strcmp(current[i]->title,t)){
j=current[i]->xp;
for(i++;i<ccnt;i++){
current[i-1]=current[i];
}
ccnt--;
return j;
}
}
return -1;
}
|