Crossfire Server, Trunk
|
#include "global.h"
Go to the source code of this file.
Data Structures | |
struct | quest_condition |
struct | quest_definition |
struct | quest_step_definition |
Typedefs | |
typedef struct quest_condition | quest_condition |
typedef struct quest_definition | quest_definition |
typedef void(* | quest_op) (const quest_definition *, void *) |
typedef struct quest_step_definition | quest_step_definition |
Functions | |
void | quest_clear (quest_definition *quest) |
int | quest_condition_from_string (quest_condition *condition, const char *buffer) |
quest_definition * | quest_create (const char *name) |
quest_condition * | quest_create_condition (void) |
quest_step_definition * | quest_create_step (void) |
void | quest_destroy (quest_definition *quest) |
void | quest_destroy_condition (quest_condition *condition) |
void | quest_destroy_step (quest_step_definition *step) |
void | quest_destroy_steps (quest_step_definition *step) |
void | quest_for_each (quest_op op, void *user) |
void | quest_write_condition (char *buf, size_t len, const quest_condition *condition) |
typedef struct quest_condition quest_condition |
One condition to automatically move to a quest step.
typedef struct quest_definition quest_definition |
Definition of an in-game quest.
typedef void(* quest_op) (const quest_definition *, void *) |
typedef struct quest_step_definition quest_step_definition |
One step of a quest.
void quest_clear | ( | quest_definition * | quest | ) |
Definition at line 91 of file Quests.cpp.
References FREE_AND_CLEAR_STR_IF, free_string(), and quest_destroy_steps().
Referenced by quest_destroy(), and Quests::replace().
int quest_condition_from_string | ( | quest_condition * | condition, |
const char * | buffer | ||
) |
Parse a single step condition. This may be expressed as one of the following:
condition | condition to fill. |
buffer | where to read from. |
Definition at line 104 of file Quests.cpp.
References add_string(), quest_condition::maxstep, quest_condition::minstep, and quest_condition::quest_code.
Referenced by QuestLoader::load(), and QuestStepWrapper::setConditions().
quest_definition* quest_create | ( | const char * | name | ) |
Definition at line 61 of file Quests.cpp.
References add_string(), and give::name.
Referenced by CREResourcesWindow::addQuest(), Quests::create(), and QuestLoader::load().
quest_condition* quest_create_condition | ( | void | ) |
Allocate a quest_condition, will call fatal() if out of memory.
Definition at line 54 of file Quests.cpp.
References fatal(), and OUT_OF_MEMORY.
Referenced by QuestLoader::load(), and QuestStepWrapper::setConditions().
quest_step_definition* quest_create_step | ( | void | ) |
Allocate a quest_step_definition, will call fatal() if out of memory.
Definition at line 47 of file Quests.cpp.
References fatal(), and OUT_OF_MEMORY.
Referenced by QuestWrapper::addStep(), and QuestLoader::load().
void quest_destroy | ( | quest_definition * | quest | ) |
Definition at line 99 of file Quests.cpp.
References quest_clear().
Referenced by Quests::destroy().
void quest_destroy_condition | ( | quest_condition * | condition | ) |
Definition at line 67 of file Quests.cpp.
References free_string(), and quest_condition::quest_code.
Referenced by quest_destroy_step(), and QuestStepWrapper::setConditions().
void quest_destroy_step | ( | quest_step_definition * | step | ) |
Definition at line 72 of file Quests.cpp.
References quest_step_definition::conditions, FREE_AND_CLEAR_STR_IF, quest_condition::next, quest_destroy_condition(), and quest_step_definition::step_description.
Referenced by quest_destroy_steps(), and QuestWrapper::removeChild().
void quest_destroy_steps | ( | quest_step_definition * | step | ) |
Definition at line 83 of file Quests.cpp.
References quest_step_definition::next, and quest_destroy_step().
Referenced by quest_clear().
void quest_for_each | ( | quest_op | op, |
void * | user | ||
) |
Iterate over all quests.
op | function to call for each quest. |
user | extra parameter to give the function. |
Definition at line 709 of file assets.cpp.
References AssetsCollection< T, Key >::each(), manager, give::op, item::q, and AssetsManager::quests().
Referenced by dump_quests(), main(), output_quests(), and update_quests().
void quest_write_condition | ( | char * | buf, |
size_t | len, | ||
const quest_condition * | condition | ||
) |
Write a step condition to a buffer. If the buffer is too small, the line is truncated.
buf | where to write. |
len | length of buf. |
condition | item to write, must not be NULL. |
Definition at line 134 of file Quests.cpp.
References buf, quest_condition::maxstep, quest_condition::minstep, and quest_condition::quest_code.
Referenced by QuestWriter::write().