Crossfire Server, Branches 1.12
R18729
|
Go to the source code of this file.
Data Structures | |
struct | attribute_definition |
struct | attribute_type |
struct | flag_definition |
struct | ignore_list |
struct | type_attribute |
struct | type_definition |
struct | type_name |
Variables | |
int | attribute_count = 0 |
attribute_definition ** | attributes = NULL |
static const char * | custom_attributes [] |
type_definition * | default_type = NULL |
const char * | destination_dir = "../doc/Developers" |
type_definition * | fallback_type = NULL |
const char * | field_dir = "fields" |
static const flag_definition | flags [] |
static const char * | in_living [] |
int | list_count = 0 |
ignore_list ** | lists = NULL |
int | type_count = 0 |
const char * | type_dir = "types" |
static type_name | type_names [] |
type_definition ** | types = NULL |
This small program will extract information from Gridarta's types.xml file to generate documentation about types and fields. Files are placed in developer's documentation subdirs by default.
To build:
gcc -g -pg -O0 -Wall -pedantic gridarta-types-convert.c -I../include -o gridarta-types-convert
To run:
./gridarta-types-convert ../../gridarta/crossfire/resource/conf/types.xml
(adjust the path according to your setup)
Note that someone wishing to tweak this program should know the format of Gridarta's types.xml.
This program isn't terribly robust, there could be more conditions, and it just doesn't free memory. May be fixed someday, but since it's a "run and exit", not high priority.
This program can be modified and altered at will, as long as it's for the Crossfire project. Else don't touch it :)
Note that "attribute" is used for "field in a object/living structure".
Definition in file gridarta-types-convert.c.
void add_required_parameter | ( | type_definition * | type, |
const char * | buf | ||
) |
Add a required parameter to the specified type. buf is the line read from the file, non processed.
Definition at line 480 of file gridarta-types-convert.c.
References flag_definition::code_name, find_flag(), type_definition::require_count, type_definition::required, and snprintf().
Referenced by read_type().
void add_type_to_attribute | ( | attribute_definition * | attribute, |
type_definition * | type, | ||
int | attr | ||
) |
Definition at line 718 of file gridarta-types-convert.c.
References type_definition::attributes, attribute_type::count, type_attribute::description, get_description_for_attribute(), type_definition::name, type_definition::number, attribute_type::number, and attribute_type::type.
Referenced by main().
void copy_attributes | ( | const type_definition * | source, |
type_definition * | type | ||
) |
Definition at line 372 of file gridarta-types-convert.c.
References type_definition::attribute_count, type_definition::attributes, type_attribute::description, type_attribute::field, get_attribute_for_type(), and type_attribute::name.
Referenced by copy_default_attributes(), and read_type().
void copy_default_attributes | ( | type_definition * | type | ) |
Definition at line 388 of file gridarta-types-convert.c.
References copy_attributes().
Referenced by get_type_definition().
void dump_ignore_lists | ( | void | ) |
Definition at line 767 of file gridarta-types-convert.c.
References ignore_list::count, and list_count.
void dump_type | ( | type_definition * | type | ) |
Definition at line 654 of file gridarta-types-convert.c.
References type_definition::attribute_count, type_definition::attributes, type_attribute::description, type_attribute::field, type_attribute::name, type_definition::name, and type_definition::number.
Referenced by dump_types().
void dump_types | ( | void | ) |
Definition at line 665 of file gridarta-types-convert.c.
References dump_type(), and type_count.
type_attribute* duplicate_attribute | ( | type_attribute * | attr | ) |
Definition at line 327 of file gridarta-types-convert.c.
References type_attribute::description, type_attribute::field, and type_attribute::name.
const flag_definition* find_flag | ( | const char * | name | ) |
Return flag if exists, NULL else.
Definition at line 198 of file gridarta-types-convert.c.
References flag_definition::field.
Referenced by add_required_parameter(), and write_attribute_reference().
ignore_list* find_ignore_list | ( | const char * | name | ) |
Definition at line 432 of file gridarta-types-convert.c.
References list_count.
Referenced by read_type().
type_definition* find_type_definition | ( | const char * | name | ) |
Used for type import.
Definition at line 413 of file gridarta-types-convert.c.
References type_count.
Referenced by read_type().
void free_attribute | ( | type_attribute * | attr | ) |
Definition at line 335 of file gridarta-types-convert.c.
References type_attribute::description, type_attribute::field, and type_attribute::name.
Referenced by ignore_attribute().
attribute_definition* get_attribute | ( | const char * | name | ) |
Get an attribute, create it if it doesn't exist yet.
Definition at line 676 of file gridarta-types-convert.c.
References attribute_count, and attribute_definition::field.
Referenced by main().
type_attribute* get_attribute_for_type | ( | type_definition * | type, |
const char * | attribute, | ||
int | clean | ||
) |
Gets the attribute for the specified type. If it doesn't exist, create it. If the attribute is already defined, return the existing one, after cleaning its fields if clean is set.
Definition at line 346 of file gridarta-types-convert.c.
References type_definition::attribute_count, type_definition::attributes, type_attribute::description, type_attribute::field, and type_attribute::name.
Referenced by copy_attributes(), and read_type().
attribute_type* get_description_for_attribute | ( | attribute_definition * | attribute, |
const char * | description | ||
) |
Gets a type description for specified attribute, create it if doesn't exist.
Definition at line 696 of file gridarta-types-convert.c.
References attribute_type::description, attribute_definition::type_count, and attribute_definition::types.
Referenced by add_type_to_attribute().
type_definition* get_type_definition | ( | void | ) |
Returns a new type_definition having the default attributes.
Definition at line 397 of file gridarta-types-convert.c.
References type_definition::attribute_count, type_definition::attributes, copy_default_attributes(), and type_definition::description.
Referenced by main().
void ignore_attribute | ( | type_definition * | type, |
const char * | attribute | ||
) |
Remove an attribute from the type.
Definition at line 450 of file gridarta-types-convert.c.
References type_definition::attribute_count, attribute_count, type_definition::attributes, type_attribute::field, and free_attribute().
Referenced by ignore_attributes(), and read_type().
void ignore_attributes | ( | type_definition * | type, |
ignore_list * | list | ||
) |
Remove all attributes in the specified list from the type.
Definition at line 466 of file gridarta-types-convert.c.
References ignore_list::count, ignore_list::fields, and ignore_attribute().
Referenced by read_type().
int is_custom_attribute | ( | const char * | attribute | ) |
Definition at line 814 of file gridarta-types-convert.c.
References custom_attributes.
Referenced by main(), and write_attribute_reference().
int main | ( | int | argc, |
char ** | argv | ||
) |
Main entry point.
argc | length of argv. |
argv | command-line options. |
Definition at line 962 of file gridarta-types-convert.c.
References add_type_to_attribute(), type_definition::attribute_count, attribute_count, type_definition::description, fallback_type, get_attribute(), get_type_definition(), is_custom_attribute(), type_definition::name, type_definition::number, OBJECT_TYPE_MAX, read_ignore_list(), read_line(), read_type(), type_count, write_attribute_file(), write_type_file(), and write_type_index().
void read_ignore_list | ( | const char * | name, |
FILE * | file | ||
) |
Read the contents of a <ignore_list>
tag.
Definition at line 730 of file gridarta-types-convert.c.
References ignore_list::count, ignore_list::fields, list_count, ignore_list::name, and read_line().
Referenced by main().
char* read_line | ( | char * | buffer, |
int | size, | ||
FILE * | file | ||
) |
Definition at line 445 of file gridarta-types-convert.c.
Referenced by main(), read_ignore_list(), and read_type().
void read_type | ( | type_definition * | type, |
FILE * | file, | ||
const char * | block_end | ||
) |
Read all lines related to a type, stop when "block_end" is found on a line.
Definition at line 515 of file gridarta-types-convert.c.
References add_required_parameter(), type_definition::attribute_count, type_definition::attributes, copy_attributes(), type_attribute::description, type_definition::description, find_ignore_list(), find_type_definition(), get_attribute_for_type(), ignore_attribute(), ignore_attributes(), type_attribute::name, type_definition::name, read_line(), and sort_type_attribute().
Referenced by main().
int sort_type_attribute | ( | const void * | a, |
const void * | b | ||
) |
To sort attributes.
Definition at line 425 of file gridarta-types-convert.c.
Referenced by read_type().
void write_attribute_file | ( | attribute_definition * | attribute | ) |
Write the description of a field.
Definition at line 922 of file gridarta-types-convert.c.
References attribute_type::count, attribute_type::description, destination_dir, attribute_definition::field, field_dir, attribute_type::number, snprintf(), attribute_definition::type_count, attribute_definition::types, and write_attribute_reference().
Referenced by main().
void write_attribute_reference | ( | const char * | attribute, |
FILE * | file | ||
) |
Write the part to the right of a @ref for the specified attribute.
Definition at line 826 of file gridarta-types-convert.c.
References flag_definition::code_name, find_flag(), in_living, and is_custom_attribute().
Referenced by write_attribute_file(), and write_type_file().
void write_type_file | ( | type_definition * | type | ) |
Write a type definition file.
Definition at line 856 of file gridarta-types-convert.c.
References type_definition::attribute_count, type_definition::attributes, type_name::code_name, type_attribute::description, type_definition::description, destination_dir, type_attribute::field, type_attribute::name, type_definition::name, type_definition::number, OBJECT_TYPE_MAX, type_definition::require_count, type_definition::required, snprintf(), type_dir, and write_attribute_reference().
Referenced by main().
void write_type_index | ( | void | ) |
Write index of all types.
Definition at line 901 of file gridarta-types-convert.c.
References destination_dir, snprintf(), type_count, and type_dir.
Referenced by main().
int attribute_count = 0 |
Definition at line 91 of file gridarta-types-convert.c.
Referenced by get_attribute(), ignore_attribute(), and main().
attribute_definition** attributes = NULL |
Definition at line 90 of file gridarta-types-convert.c.
|
static |
Custom attributes we know about, to point to the right page.
Definition at line 804 of file gridarta-types-convert.c.
Referenced by is_custom_attribute().
type_definition* default_type = NULL |
Definitions all types have by default.
Definition at line 60 of file gridarta-types-convert.c.
const char* destination_dir = "../doc/Developers" |
Root destination dir.
Definition at line 31 of file gridarta-types-convert.c.
Referenced by write_attribute_file(), write_type_file(), and write_type_index().
type_definition* fallback_type = NULL |
Dummy object type that non defined objects use.
Definition at line 63 of file gridarta-types-convert.c.
Referenced by main().
const char* field_dir = "fields" |
Where the files about the fields will be stored.
Definition at line 32 of file gridarta-types-convert.c.
Referenced by write_attribute_file().
|
static |
Flag mapping.
Definition at line 100 of file gridarta-types-convert.c.
Referenced by add_object_to_socklist(), cfapi_object_query_cost(), cfapi_player_message(), Crossfire_Object_Apply(), Crossfire_Object_QueryCost(), enter_exit(), esrv_update_spells(), esrv_update_stats(), query_flags(), readyMap(), remove_adjacent_doors(), roll_ob(), update_object(), and update_position().
|
static |
Fields part of the living structure.
Definition at line 780 of file gridarta-types-convert.c.
Referenced by write_attribute_reference().
int list_count = 0 |
Definition at line 73 of file gridarta-types-convert.c.
Referenced by dump_ignore_lists(), find_ignore_list(), and read_ignore_list().
ignore_list** lists = NULL |
Definition at line 72 of file gridarta-types-convert.c.
int type_count = 0 |
Definition at line 57 of file gridarta-types-convert.c.
Referenced by dump_types(), find_type_definition(), main(), and write_type_index().
const char* type_dir = "types" |
Where the files about types will be stored.
Definition at line 33 of file gridarta-types-convert.c.
Referenced by write_type_file(), and write_type_index().
|
static |
Definition at line 212 of file gridarta-types-convert.c.
type_definition** types = NULL |
Defined types.
Definition at line 55 of file gridarta-types-convert.c.
Referenced by command_applymode(), command_bowmode(), command_petmode(), and command_usekeys().