2005-10-20 17:45:00 +02:00
|
|
|
/*
|
2005-11-26 17:52:51 +01:00
|
|
|
xml_loadsave_table.c
|
|
|
|
|
2005-10-20 17:45:00 +02:00
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2005-04-06 00:14:39 +02:00
|
|
|
#include "file.h"
|
|
|
|
#include "misc.h"
|
|
|
|
#include "team.h"
|
|
|
|
#include "xml.h"
|
|
|
|
#include "xml_loadsave_table.h"
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
TAG_TABLE = TAG_START_TABLE,
|
|
|
|
TAG_TABLE_ELEMENT,
|
|
|
|
TAG_TABLE_ELEMENT_VALUE,
|
2005-05-02 16:39:30 +02:00
|
|
|
TAG_TABLE_ELEMENT_OLD_RANK,
|
2005-04-06 00:14:39 +02:00
|
|
|
TAG_END
|
|
|
|
};
|
|
|
|
|
2005-04-13 15:01:59 +02:00
|
|
|
gint state, valueidx;
|
2005-04-06 00:14:39 +02:00
|
|
|
TableElement new_element;
|
|
|
|
Table *new_table;
|
|
|
|
|
|
|
|
void
|
|
|
|
xml_loadsave_table_start_element (GMarkupParseContext *context,
|
|
|
|
const gchar *element_name,
|
|
|
|
const gchar **attribute_names,
|
|
|
|
const gchar **attribute_values,
|
|
|
|
gpointer user_data,
|
|
|
|
GError **error)
|
|
|
|
{
|
2008-11-25 14:50:07 +01:00
|
|
|
#ifdef DEBUG
|
|
|
|
printf("xml_loadsave_table_start_element\n");
|
|
|
|
#endif
|
|
|
|
|
2005-04-06 00:14:39 +02:00
|
|
|
gint i;
|
|
|
|
gint tag = xml_get_tag_from_name(element_name);
|
|
|
|
gboolean valid_tag = FALSE;
|
|
|
|
|
|
|
|
for(i=TAG_TABLE;i<TAG_END;i++)
|
|
|
|
if(tag == i)
|
|
|
|
{
|
|
|
|
state = i;
|
|
|
|
valid_tag = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
for(i=TAG_NAME;i<=TAG_ROUND;i++)
|
|
|
|
if(tag == i)
|
|
|
|
{
|
|
|
|
state = i;
|
|
|
|
valid_tag = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(tag == TAG_TABLE_ELEMENT)
|
|
|
|
valueidx = 0;
|
|
|
|
|
|
|
|
if(!valid_tag)
|
2009-04-29 19:18:54 +02:00
|
|
|
debug_print_message("xml_loadsave_table_start_element: unknown tag: %s; I'm in state %d\n",
|
2005-04-06 00:14:39 +02:00
|
|
|
element_name, state);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
xml_loadsave_table_end_element (GMarkupParseContext *context,
|
|
|
|
const gchar *element_name,
|
|
|
|
gpointer user_data,
|
|
|
|
GError **error)
|
|
|
|
{
|
2008-11-25 14:50:07 +01:00
|
|
|
#ifdef DEBUG
|
|
|
|
printf("xml_loadsave_table_end_element\n");
|
|
|
|
#endif
|
|
|
|
|
2005-04-06 00:14:39 +02:00
|
|
|
gint tag = xml_get_tag_from_name(element_name);
|
|
|
|
|
|
|
|
if(tag == TAG_NAME ||
|
|
|
|
tag == TAG_ID ||
|
|
|
|
tag == TAG_ROUND ||
|
|
|
|
tag == TAG_TABLE_ELEMENT)
|
|
|
|
{
|
|
|
|
state = TAG_TABLE;
|
|
|
|
if(tag == TAG_TABLE_ELEMENT)
|
|
|
|
g_array_append_val(new_table->elements, new_element);
|
|
|
|
}
|
|
|
|
else if(tag == TAG_TABLE_ELEMENT_VALUE ||
|
2005-05-02 16:39:30 +02:00
|
|
|
tag == TAG_TABLE_ELEMENT_OLD_RANK ||
|
2005-04-13 15:01:59 +02:00
|
|
|
tag == TAG_TEAM_ID)
|
2005-04-06 00:14:39 +02:00
|
|
|
{
|
|
|
|
state = TAG_TABLE_ELEMENT;
|
|
|
|
if(tag == TAG_TABLE_ELEMENT_VALUE)
|
|
|
|
valueidx++;
|
|
|
|
}
|
|
|
|
else if(tag != TAG_TABLE)
|
2009-04-29 19:18:54 +02:00
|
|
|
debug_print_message("xml_loadsave_table_end_element: unknown tag: %s; I'm in state %d\n",
|
2005-04-06 00:14:39 +02:00
|
|
|
element_name, state);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
xml_loadsave_table_text (GMarkupParseContext *context,
|
|
|
|
const gchar *text,
|
|
|
|
gsize text_len,
|
|
|
|
gpointer user_data,
|
|
|
|
GError **error)
|
|
|
|
{
|
2008-11-25 14:50:07 +01:00
|
|
|
#ifdef DEBUG
|
|
|
|
printf("xml_loadsave_table_text\n");
|
|
|
|
#endif
|
|
|
|
|
2005-04-06 00:14:39 +02:00
|
|
|
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_NAME)
|
2005-10-09 11:35:44 +02:00
|
|
|
misc_string_assign(&new_table->name, buf);
|
2005-04-06 00:14:39 +02:00
|
|
|
else if(state == TAG_ID)
|
|
|
|
new_table->clid = int_value;
|
|
|
|
else if(state == TAG_ROUND)
|
|
|
|
new_table->round = int_value;
|
|
|
|
else if(state == TAG_TEAM_ID)
|
2005-04-13 15:01:59 +02:00
|
|
|
new_element.team_id = int_value;
|
2005-04-06 00:14:39 +02:00
|
|
|
else if(state == TAG_TABLE_ELEMENT_VALUE)
|
|
|
|
new_element.values[valueidx] = int_value;
|
2005-05-02 16:39:30 +02:00
|
|
|
else if(state == TAG_TABLE_ELEMENT_OLD_RANK)
|
|
|
|
new_element.old_rank = int_value;
|
2005-04-06 00:14:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
xml_loadsave_table_read(const gchar *filename, Table *table)
|
|
|
|
{
|
2008-11-25 14:50:07 +01:00
|
|
|
#ifdef DEBUG
|
|
|
|
printf("xml_loadsave_table_read\n");
|
|
|
|
#endif
|
|
|
|
|
2005-04-06 00:14:39 +02:00
|
|
|
GMarkupParser parser = {xml_loadsave_table_start_element,
|
|
|
|
xml_loadsave_table_end_element,
|
|
|
|
xml_loadsave_table_text, NULL, NULL};
|
|
|
|
GMarkupParseContext *context;
|
|
|
|
gchar *file_contents;
|
2006-06-04 19:10:08 +02:00
|
|
|
gsize length;
|
2005-04-06 00:14:39 +02:00
|
|
|
GError *error = NULL;
|
|
|
|
|
|
|
|
context =
|
|
|
|
g_markup_parse_context_new(&parser, 0, NULL, NULL);
|
|
|
|
|
|
|
|
if(!g_file_get_contents(filename, &file_contents, &length, &error))
|
|
|
|
{
|
2009-04-29 19:18:54 +02:00
|
|
|
debug_print_message("xml_loadsave_table_read: error reading file %s\n", filename);
|
2005-04-06 00:14:39 +02:00
|
|
|
misc_print_error(&error, TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
new_table = table;
|
|
|
|
|
|
|
|
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
|
|
|
|
{
|
2009-04-29 19:18:54 +02:00
|
|
|
debug_print_message("xml_loadsave_table_read: error parsing file %s\n", filename);
|
2005-04-06 00:14:39 +02:00
|
|
|
misc_print_error(&error, TRUE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
xml_loadsave_table_write(const gchar *filename, const Table *table)
|
|
|
|
{
|
2008-11-25 14:50:07 +01:00
|
|
|
#ifdef DEBUG
|
|
|
|
printf("xml_loadsave_table_write\n");
|
|
|
|
#endif
|
|
|
|
|
2005-04-06 00:14:39 +02:00
|
|
|
gint i, j;
|
|
|
|
FILE *fil = NULL;
|
|
|
|
|
|
|
|
file_my_fopen(filename, "w", &fil, TRUE);
|
|
|
|
|
|
|
|
fprintf(fil, "<_%d>\n", TAG_TABLE);
|
|
|
|
|
2005-10-09 11:35:44 +02:00
|
|
|
xml_write_string(fil, table->name, TAG_NAME, I0);
|
2005-04-06 00:14:39 +02:00
|
|
|
xml_write_int(fil, table->clid, TAG_ID, I0);
|
|
|
|
xml_write_int(fil, table->round, TAG_ROUND, I0);
|
2008-11-21 18:00:47 +01:00
|
|
|
|
2005-04-06 00:14:39 +02:00
|
|
|
for(i=0;i<table->elements->len;i++)
|
|
|
|
{
|
|
|
|
fprintf(fil, "<_%d>\n", TAG_TABLE_ELEMENT);
|
|
|
|
|
|
|
|
xml_write_int(fil, g_array_index(table->elements, TableElement, i).team->id,
|
|
|
|
TAG_TEAM_ID, I1);
|
2005-05-02 16:39:30 +02:00
|
|
|
|
|
|
|
xml_write_int(fil, g_array_index(table->elements, TableElement, i).old_rank,
|
|
|
|
TAG_TABLE_ELEMENT_OLD_RANK, I1);
|
2005-04-13 15:01:59 +02:00
|
|
|
|
2005-04-06 00:14:39 +02:00
|
|
|
for(j=0;j<TABLE_END;j++)
|
|
|
|
xml_write_int(fil, g_array_index(table->elements, TableElement, i).values[j],
|
|
|
|
TAG_TABLE_ELEMENT_VALUE, I1);
|
|
|
|
|
|
|
|
fprintf(fil, "</_%d>\n", TAG_TABLE_ELEMENT);
|
|
|
|
}
|
|
|
|
|
|
|
|
fprintf(fil, "</_%d>\n", TAG_TABLE);
|
|
|
|
|
|
|
|
fclose(fil);
|
|
|
|
}
|