#include <stdlib.h>#include <stdio.h>#include <string.h>#include <assert.h>#include "define.h"

Go to the source code of this file.
To build:
gcc -g -pg -O0 -Wall -pedantic gridarta-types-convert.c -I../include -o gridarta-types-convertTo 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.


| void add_type_to_attribute | ( | attribute_definition * | attribute, | |
| type_definition * | type, | |||
| int | attr | |||
| ) |
Definition at line 718 of file gridarta-types-convert.c.


| void copy_attributes | ( | const type_definition * | source, | |
| type_definition * | type | |||
| ) |
Definition at line 372 of file gridarta-types-convert.c.


| void copy_default_attributes | ( | type_definition * | type | ) |
Definition at line 388 of file gridarta-types-convert.c.


| void dump_ignore_lists | ( | void | ) |
Definition at line 767 of file gridarta-types-convert.c.
| void dump_type | ( | type_definition * | type | ) |
Definition at line 654 of file gridarta-types-convert.c.

| void dump_types | ( | void | ) |
| type_attribute* duplicate_attribute | ( | type_attribute * | attr | ) |
Definition at line 327 of file gridarta-types-convert.c.
| const flag_definition* find_flag | ( | const char * | name | ) |
Return flag if exists, NULL else.
Definition at line 198 of file gridarta-types-convert.c.

| ignore_list* find_ignore_list | ( | const char * | name | ) |
Definition at line 432 of file gridarta-types-convert.c.

| type_definition* find_type_definition | ( | const char * | name | ) |
Used for type import.
Definition at line 413 of file gridarta-types-convert.c.

| void free_attribute | ( | type_attribute * | attr | ) |
Definition at line 335 of file gridarta-types-convert.c.

| 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.

| 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.

| 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.

| 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.


| 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.


| 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.


| int is_custom_attribute | ( | const char * | attribute | ) |
Definition at line 814 of file gridarta-types-convert.c.

| 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.

| 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.


| char* read_line | ( | char * | buffer, | |
| int | size, | |||
| FILE * | file | |||
| ) |
Definition at line 445 of file gridarta-types-convert.c.

| 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.


| int sort_type_attribute | ( | const void * | a, | |
| const void * | b | |||
| ) |
To sort attributes.
Definition at line 425 of file gridarta-types-convert.c.

| void write_attribute_file | ( | attribute_definition * | attribute | ) |
Write the description of a field.
Definition at line 922 of file gridarta-types-convert.c.


| 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.


| void write_type_file | ( | type_definition * | type | ) |
Write a type definition file.
Definition at line 856 of file gridarta-types-convert.c.


| void write_type_index | ( | void | ) |
Write index of all types.
Definition at line 901 of file gridarta-types-convert.c.

| int attribute_count = 0 |
Definition at line 91 of file gridarta-types-convert.c.
| attribute_definition** attributes = NULL |
Definition at line 90 of file gridarta-types-convert.c.
| 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.
| type_definition* fallback_type = NULL |
Dummy object type that non defined objects use.
Definition at line 63 of file gridarta-types-convert.c.
| const char* field_dir = "fields" |
Where the files about the fields will be stored.
Definition at line 32 of file gridarta-types-convert.c.
| int list_count = 0 |
Definition at line 73 of file gridarta-types-convert.c.
| 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.
| const char* type_dir = "types" |
Where the files about types will be stored.
Definition at line 33 of file gridarta-types-convert.c.
| type_definition** types = NULL |
Defined types.
Definition at line 55 of file gridarta-types-convert.c.
1.5.8