bygfoot/src/xml.h

116 lines
3.3 KiB
C

/*
xml.h
Bygfoot Football Manager -- a small and simple GTK2-based
football management game.
http://bygfoot.sourceforge.net
Copyright (C) 2005 Gyözö Both (gyboth@bygfoot.com)
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#ifndef XML_H
#define XML_H
#include "bygfoot.h"
#include "maths.h"
#include "cup_struct.h"
/** Indentations for xml files. */
#define I0 ""
#define I1 "\t"
#define I2 "\t\t"
#define I3 "\t\t\t"
#define I4 "\t\t\t\t"
#define I5 "\t\t\t\t\t"
#define I6 "\t\t\t\t\t\t"
#define I7 "\t\t\t\t\t\t\t"
#define I8 "\t\t\t\t\t\t\t\t"
/** Tags that are used in more than one type of xml file. */
enum XmlTags
{
TAG_NAME = 0,
TAG_SYMBOL,
TAG_SID,
TAG_SHORT_NAME,
TAG_ID,
TAG_WEEK_GAP,
TAG_WEEK_BREAK,
TAG_WEEK_BREAK_LENGTH,
TAG_SKIP_WEEKS_WITH,
TAG_YELLOW_RED,
TAG_TEAM_ID,
TAG_NAMES_FILE,
TAG_PROPERTY,
TAG_ROUND
};
#define TAG_DEF_NAME "name"
#define TAG_DEF_SHORT_NAME "short_name"
#define TAG_DEF_SID "sid"
#define TAG_DEF_SYMBOL "symbol"
#define TAG_DEF_WEEK_GAP "week_gap"
#define TAG_DEF_PROPERTY "property"
#define TAG_DEF_YELLOW_RED "yellow_red"
#define TAG_DEF_WEEK_BREAK "break_in"
#define ATT_DEF_NAME_WEEK_BREAK_LENGTH "length"
#define TAG_DEF_SKIP_WEEKS_WITH "skip_weeks_with"
/** Starting values for tag enums in the various xml loading source files. */
#define TAG_START_MISC 1000
#define TAG_START_LEAGUE 2000
#define TAG_START_CUP 3000
#define TAG_START_TEAMS 4000
#define TAG_START_FIXTURES 5000
#define TAG_START_TABLE 6000
#define TAG_START_USERS 7000
#define TAG_START_LIVE_GAME 8000
#define TAG_START_PLAYERS 9000
#define TAG_END_PLAYERS 9900
#define TAG_START_LEAGUE_STAT 10000
#define TAG_START_SEASON_STATS 11000
#define TAG_START_LEAGUES_CUPS 12000
#define TAG_START_TRANSFERS 20000
#define TAG_START_JOBS 21000
#define TAG_START_NEWS_PAPER 22000
#define xml_write_g_string(fil, gstring, tag, indent) xml_write_string(fil, (gstring)->str, tag, indent)
#define xml_write_int(fil, value, tag, indent) fprintf(fil, "%s<_%d>%d</_%d>\n", indent, tag, value, tag)
#define xml_write_float(fil, value, tag, indent) fprintf(fil, "%s<_%d>%d</_%d>\n", indent, tag, (gint)rint(value * 10000), tag)
#define xml_get_tag_from_name(name) (gint)g_ascii_strtod(name + 1, NULL)
void
xml_write_string(FILE *fil, const gchar *string, gint tag, const gchar* indent);
void
xml_load_users(const gchar *dirname, const gchar *basename);
void
xml_load_league(Bygfoot *bygfoot, GArray *league_list, const gchar *dirname, const gchar *basename);
void
xml_load_cup(Bygfoot *bygfoot, Cup *cup, const gchar *dirname, const gchar *basename);
void
xml_load_transfers(const gchar *dirname, const gchar *basename);
#endif