bygfoot/src/xml_loadsave_league_stat.c

289 lines
8.0 KiB
C

/*
xml_loadsave_league_stat.c
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.
*/
#include "file.h"
#include "misc.h"
#include "stat.h"
#include "team.h"
#include "xml.h"
#include "xml_loadsave_league_stat.h"
enum
{
TAG_LEAGUE_STAT = TAG_START_LEAGUE_STAT,
TAG_STAT_LEAGUE_NAME,
TAG_STAT_LEAGUE_SYMBOL,
TAG_STAT_TEAMS_OFF,
TAG_STAT_TEAMS_DEF,
TAG_STAT_PLAYER_SCORERS,
TAG_STAT_PLAYER_GOALIES,
TAG_STAT,
TAG_STAT_TEAM_NAME,
TAG_STAT_VALUE,
TAG_STAT_VALUE_STRING,
TAG_END
};
gint state, in_state, valueidx;
Stat new_stat;
LeagueStat *lig_stat;
void
xml_loadsave_league_stat_start_element (GMarkupParseContext *context,
const gchar *element_name,
const gchar **attribute_names,
const gchar **attribute_values,
gpointer user_data,
GError **error)
{
#ifdef DEBUG
printf("xml_loadsave_league_stat_start_element\n");
#endif
gint i;
gint tag = xml_get_tag_from_name(element_name);
gboolean valid_tag = FALSE;
for(i=TAG_LEAGUE_STAT;i<TAG_END;i++)
if(tag == i)
{
state = i;
valid_tag = TRUE;
}
if(tag == TAG_STAT)
{
valueidx = 0;
new_stat.value_string =
new_stat.team_name = NULL;
}
else if(tag == TAG_STAT_TEAMS_OFF ||
tag == TAG_STAT_TEAMS_DEF ||
tag == TAG_STAT_PLAYER_SCORERS ||
tag == TAG_STAT_PLAYER_GOALIES)
in_state = tag;
if(!valid_tag)
debug_print_message(
"xml_loadsave_league_stat_start_element: unknown tag: %s; I'm in state %d\n",
element_name, state);
}
void
xml_loadsave_league_stat_end_element (GMarkupParseContext *context,
const gchar *element_name,
gpointer user_data,
GError **error)
{
#ifdef DEBUG
printf("xml_loadsave_league_stat_end_element\n");
#endif
GArray *stat_array = NULL;
gint tag = xml_get_tag_from_name(element_name);
if(tag == TAG_STAT_LEAGUE_NAME ||
tag == TAG_STAT_LEAGUE_SYMBOL ||
tag == TAG_STAT_TEAMS_OFF ||
tag == TAG_STAT_TEAMS_DEF ||
tag == TAG_STAT_PLAYER_SCORERS ||
tag == TAG_STAT_PLAYER_GOALIES)
state = TAG_LEAGUE_STAT;
else if(tag == TAG_STAT)
{
state = in_state;
if(in_state == TAG_STAT_TEAMS_OFF)
stat_array = lig_stat->teams_off;
else if(in_state == TAG_STAT_TEAMS_DEF)
stat_array = lig_stat->teams_def;
else if(in_state == TAG_STAT_PLAYER_SCORERS)
stat_array = lig_stat->player_scorers;
else if(in_state == TAG_STAT_PLAYER_GOALIES)
stat_array = lig_stat->player_goalies;
else
{
debug_print_message("xml_loadsave_league_stat_end_element: unknown in_state %d \n",
in_state);
return;
}
g_array_append_val(stat_array, new_stat);
}
else if(tag == TAG_STAT_VALUE_STRING ||
tag == TAG_STAT_VALUE ||
tag == TAG_STAT_VALUE_STRING ||
tag == TAG_STAT_TEAM_NAME)
{
state = TAG_STAT;
if(tag == TAG_STAT_VALUE)
valueidx++;
}
else if(tag != TAG_LEAGUE_STAT)
debug_print_message(
"xml_loadsave_league_stat_end_element: unknown tag: %s; I'm in state %d\n",
element_name, state);
}
void
xml_loadsave_league_stat_text (GMarkupParseContext *context,
const gchar *text,
gsize text_len,
gpointer user_data,
GError **error)
{
#ifdef DEBUG
printf("xml_loadsave_league_stat_text\n");
#endif
gchar buf[SMALL];
gint int_value = -1;
strncpy(buf, text, text_len);
buf[text_len] = '\0';
int_value = (gint)g_ascii_strtod(buf, NULL);
if(state == TAG_STAT_LEAGUE_NAME)
lig_stat->league_name = g_strdup(buf);
else if(state == TAG_STAT_LEAGUE_SYMBOL)
lig_stat->league_symbol = g_strdup(buf);
else if(state == TAG_STAT_TEAM_NAME)
new_stat.team_name = g_strdup(buf);
else if(state == TAG_STAT_VALUE)
{
if(valueidx == 0)
new_stat.value1 = int_value;
else if(valueidx == 1)
new_stat.value2 = int_value;
else
new_stat.value3 = int_value;
}
else if(state == TAG_STAT_VALUE_STRING)
new_stat.value_string = g_strdup(buf);
}
void
xml_loadsave_league_stat_read(const gchar *filename, LeagueStat *league_stat)
{
#ifdef DEBUG
printf("xml_loadsave_league_stat_read\n");
#endif
GMarkupParser parser = {xml_loadsave_league_stat_start_element,
xml_loadsave_league_stat_end_element,
xml_loadsave_league_stat_text, NULL, NULL};
GMarkupParseContext *context;
gchar *file_contents;
gsize length;
GError *error = NULL;
context =
g_markup_parse_context_new(&parser, 0, NULL, NULL);
if(!g_file_get_contents(filename, &file_contents, &length, &error))
{
debug_print_message("xml_loadsave_league_stat_read: error reading file %s\n", filename);
misc_print_error(&error, TRUE);
}
lig_stat = league_stat;
if(g_markup_parse_context_parse(context, file_contents, length, &error))
{
g_markup_parse_context_end_parse(context, NULL);
g_markup_parse_context_free(context);
g_free(file_contents);
}
else
{
debug_print_message("xml_loadsave_league_stat_read: error parsing file %s\n", filename);
misc_print_error(&error, TRUE);
}
}
void
xml_loadsave_league_stat_write(const gchar *filename, const LeagueStat *league_stat)
{
#ifdef DEBUG
printf("xml_loadsave_league_stat_write\n");
#endif
gint i;
FILE *fil = NULL;
file_my_fopen(filename, "w", &fil, TRUE);
fprintf(fil, "<_%d>\n", TAG_LEAGUE_STAT);
xml_write_string(fil, league_stat->league_name, TAG_STAT_LEAGUE_NAME, I0);
xml_write_string(fil, league_stat->league_symbol, TAG_STAT_LEAGUE_SYMBOL, I0);
fprintf(fil, "<_%d>\n", TAG_STAT_TEAMS_OFF);
for(i=0;i<league_stat->teams_off->len;i++)
xml_loadsave_league_stat_write_stat(
fil, &g_array_index(league_stat->teams_off, Stat, i));
fprintf(fil, "</_%d>\n", TAG_STAT_TEAMS_OFF);
fprintf(fil, "<_%d>\n", TAG_STAT_TEAMS_DEF);
for(i=0;i<league_stat->teams_def->len;i++)
xml_loadsave_league_stat_write_stat(
fil, &g_array_index(league_stat->teams_def, Stat, i));
fprintf(fil, "</_%d>\n", TAG_STAT_TEAMS_DEF);
fprintf(fil, "<_%d>\n", TAG_STAT_PLAYER_SCORERS);
for(i=0;i<league_stat->player_scorers->len;i++)
xml_loadsave_league_stat_write_stat(
fil, &g_array_index(league_stat->player_scorers, Stat, i));
fprintf(fil, "</_%d>\n", TAG_STAT_PLAYER_SCORERS);
fprintf(fil, "<_%d>\n", TAG_STAT_PLAYER_GOALIES);
for(i=0;i<league_stat->player_goalies->len;i++)
xml_loadsave_league_stat_write_stat(
fil, &g_array_index(league_stat->player_goalies, Stat, i));
fprintf(fil, "</_%d>\n", TAG_STAT_PLAYER_GOALIES);
fprintf(fil, "</_%d>\n", TAG_LEAGUE_STAT);
fclose(fil);
}
void
xml_loadsave_league_stat_write_stat(FILE *fil, const Stat *stat)
{
#ifdef DEBUG
printf("xml_loadsave_league_stat_write_stat\n");
#endif
fprintf(fil, "%s<_%d>\n", I1, TAG_STAT);
xml_write_string(fil, stat->team_name, TAG_STAT_TEAM_NAME, I1);
xml_write_int(fil, stat->value1, TAG_STAT_VALUE, I1);
xml_write_int(fil, stat->value2, TAG_STAT_VALUE, I1);
xml_write_int(fil, stat->value3, TAG_STAT_VALUE, I1);
xml_write_string(fil, stat->value_string, TAG_STAT_VALUE_STRING, I1);
fprintf(fil, "%s</_%d>\n", I1, TAG_STAT);
}