2005-10-20 17:45:00 +02:00
|
|
|
/*
|
2005-11-26 17:52:51 +01:00
|
|
|
xml_lg_commentary.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-06-26 13:42:01 +02:00
|
|
|
#include "free.h"
|
|
|
|
#include "lg_commentary.h"
|
|
|
|
#include "live_game.h"
|
|
|
|
#include "misc.h"
|
|
|
|
#include "variables.h"
|
|
|
|
#include "xml_lg_commentary.h"
|
|
|
|
|
|
|
|
#define TAG_LG_COMMENTARY "lg_commentary"
|
|
|
|
#define TAG_EVENT "event"
|
|
|
|
#define TAG_EVENT_NAME "name"
|
|
|
|
#define TAG_EVENT_COMMENTARY "commentary"
|
|
|
|
|
2005-07-01 22:51:46 +02:00
|
|
|
#define ATT_NAME_CONDITION "cond"
|
|
|
|
#define ATT_NAME_PRIORITY "pri"
|
|
|
|
|
2005-06-26 13:42:01 +02:00
|
|
|
#define EVENT_NAME_GENERAL "general"
|
|
|
|
#define EVENT_NAME_START_MATCH "start_match"
|
|
|
|
#define EVENT_NAME_HALF_TIME "half_time"
|
|
|
|
#define EVENT_NAME_EXTRA_TIME "extra_time"
|
|
|
|
#define EVENT_NAME_END_MATCH "end_match"
|
|
|
|
#define EVENT_NAME_LOST_POSSESSION "lost_possession"
|
|
|
|
#define EVENT_NAME_SCORING_CHANCE "scoring_chance"
|
|
|
|
#define EVENT_NAME_HEADER "header"
|
|
|
|
#define EVENT_NAME_PENALTY "penalty"
|
|
|
|
#define EVENT_NAME_FREE_KICK "free_kick"
|
|
|
|
#define EVENT_NAME_GOAL "goal"
|
|
|
|
#define EVENT_NAME_OWN_GOAL "own_goal"
|
|
|
|
#define EVENT_NAME_POST "post"
|
|
|
|
#define EVENT_NAME_MISS "miss"
|
2010-01-19 14:11:31 +01:00
|
|
|
#define EVENT_NAME_CORNER_KICK "corner"
|
|
|
|
#define EVENT_NAME_KEEPER_PUSHED_IN_CORNER "keeper_pushed_in_corner"
|
|
|
|
#define EVENT_NAME_PLAYER_PUSHED_IN_CORNER "player_pushed_in_corner"
|
2005-06-26 13:42:01 +02:00
|
|
|
#define EVENT_NAME_SAVE "save"
|
|
|
|
#define EVENT_NAME_CROSS_BAR "cross_bar"
|
|
|
|
#define EVENT_NAME_FOUL "foul"
|
|
|
|
#define EVENT_NAME_FOUL_YELLOW "foul_yellow"
|
|
|
|
#define EVENT_NAME_FOUL_RED "foul_red"
|
|
|
|
#define EVENT_NAME_FOUL_RED_INJURY "foul_red_injury"
|
|
|
|
#define EVENT_NAME_SEND_OFF "send_off"
|
|
|
|
#define EVENT_NAME_INJURY "injury"
|
|
|
|
#define EVENT_NAME_TEMP_INJURY "temp_injury"
|
|
|
|
#define EVENT_NAME_PENALTIES "penalties"
|
|
|
|
#define EVENT_NAME_STADIUM_BREAKDOWN "stadium_breakdown"
|
|
|
|
#define EVENT_NAME_STADIUM_RIOTS "stadium_riots"
|
|
|
|
#define EVENT_NAME_STADIUM_FIRE "stadium_fire"
|
|
|
|
#define EVENT_NAME_SUBSTITUTION "substitution"
|
|
|
|
#define EVENT_NAME_STRUCTURE_CHANGE "structure_change"
|
|
|
|
#define EVENT_NAME_STYLE_CHANGE "style_change"
|
|
|
|
#define EVENT_NAME_BOOST_CHANGE "boost_change"
|
|
|
|
|
|
|
|
|
|
|
|
enum XmlLgCommentaryStates
|
|
|
|
{
|
|
|
|
STATE_LG_COMMENTARY = 0,
|
|
|
|
STATE_EVENT,
|
|
|
|
STATE_EVENT_NAME,
|
|
|
|
STATE_EVENT_COMMENTARY,
|
|
|
|
STATE_END
|
|
|
|
};
|
|
|
|
|
2005-07-01 22:51:46 +02:00
|
|
|
gint state, commentary_idx, priority;
|
2005-10-09 11:35:44 +02:00
|
|
|
gchar *condition;
|
2005-06-26 13:42:01 +02:00
|
|
|
|
2005-10-25 17:26:53 +02:00
|
|
|
/** Return the appropriate enum integer going with the event string. */
|
|
|
|
gint
|
|
|
|
xml_lg_commentary_event_name_to_int(const gchar *event_string)
|
|
|
|
{
|
2008-11-25 14:50:07 +01:00
|
|
|
#ifdef DEBUG
|
|
|
|
printf("xml_lg_commentary_event_name_to_int\n");
|
|
|
|
#endif
|
|
|
|
|
2005-10-25 17:26:53 +02:00
|
|
|
gint return_value = -1;
|
|
|
|
|
|
|
|
if(strcmp(event_string, EVENT_NAME_GENERAL) == 0)
|
|
|
|
return_value = LIVE_GAME_EVENT_GENERAL;
|
|
|
|
else if(strcmp(event_string, EVENT_NAME_START_MATCH) == 0)
|
|
|
|
return_value = LIVE_GAME_EVENT_START_MATCH;
|
|
|
|
else if(strcmp(event_string, EVENT_NAME_HALF_TIME) == 0)
|
|
|
|
return_value = LIVE_GAME_EVENT_HALF_TIME;
|
|
|
|
else if(strcmp(event_string, EVENT_NAME_EXTRA_TIME) == 0)
|
|
|
|
return_value = LIVE_GAME_EVENT_EXTRA_TIME;
|
|
|
|
else if(strcmp(event_string, EVENT_NAME_END_MATCH) == 0)
|
|
|
|
return_value = LIVE_GAME_EVENT_END_MATCH;
|
|
|
|
else if(strcmp(event_string, EVENT_NAME_LOST_POSSESSION) == 0)
|
|
|
|
return_value = LIVE_GAME_EVENT_LOST_POSSESSION;
|
|
|
|
else if(strcmp(event_string, EVENT_NAME_SCORING_CHANCE) == 0)
|
|
|
|
return_value = LIVE_GAME_EVENT_SCORING_CHANCE;
|
|
|
|
else if(strcmp(event_string, EVENT_NAME_HEADER) == 0)
|
|
|
|
return_value = LIVE_GAME_EVENT_HEADER;
|
|
|
|
else if(strcmp(event_string, EVENT_NAME_PENALTY) == 0)
|
|
|
|
return_value = LIVE_GAME_EVENT_PENALTY;
|
|
|
|
else if(strcmp(event_string, EVENT_NAME_FREE_KICK) == 0)
|
|
|
|
return_value = LIVE_GAME_EVENT_FREE_KICK;
|
|
|
|
else if(strcmp(event_string, EVENT_NAME_GOAL) == 0)
|
|
|
|
return_value = LIVE_GAME_EVENT_GOAL;
|
|
|
|
else if(strcmp(event_string, EVENT_NAME_OWN_GOAL) == 0)
|
|
|
|
return_value = LIVE_GAME_EVENT_OWN_GOAL;
|
|
|
|
else if(strcmp(event_string, EVENT_NAME_POST) == 0)
|
|
|
|
return_value = LIVE_GAME_EVENT_POST;
|
|
|
|
else if(strcmp(event_string, EVENT_NAME_MISS) == 0)
|
|
|
|
return_value = LIVE_GAME_EVENT_MISS;
|
2010-01-19 14:11:31 +01:00
|
|
|
else if(strcmp(event_string, EVENT_NAME_CORNER_KICK) == 0)
|
|
|
|
return_value = LIVE_GAME_EVENT_CORNER_KICK;
|
|
|
|
else if(strcmp(event_string, EVENT_NAME_KEEPER_PUSHED_IN_CORNER) == 0)
|
|
|
|
return_value = LIVE_GAME_EVENT_KEEPER_PUSHED_IN_CORNER;
|
|
|
|
else if(strcmp(event_string, EVENT_NAME_PLAYER_PUSHED_IN_CORNER) == 0)
|
|
|
|
return_value = LIVE_GAME_EVENT_PLAYER_PUSHED_IN_CORNER;
|
2005-10-25 17:26:53 +02:00
|
|
|
else if(strcmp(event_string, EVENT_NAME_SAVE) == 0)
|
|
|
|
return_value = LIVE_GAME_EVENT_SAVE;
|
|
|
|
else if(strcmp(event_string, EVENT_NAME_CROSS_BAR) == 0)
|
|
|
|
return_value = LIVE_GAME_EVENT_CROSS_BAR;
|
|
|
|
else if(strcmp(event_string, EVENT_NAME_FOUL) == 0)
|
|
|
|
return_value = LIVE_GAME_EVENT_FOUL;
|
|
|
|
else if(strcmp(event_string, EVENT_NAME_FOUL_YELLOW) == 0)
|
|
|
|
return_value = LIVE_GAME_EVENT_FOUL_YELLOW;
|
|
|
|
else if(strcmp(event_string, EVENT_NAME_FOUL_RED) == 0)
|
|
|
|
return_value = LIVE_GAME_EVENT_FOUL_RED;
|
|
|
|
else if(strcmp(event_string, EVENT_NAME_FOUL_RED_INJURY) == 0)
|
|
|
|
return_value = LIVE_GAME_EVENT_FOUL_RED_INJURY;
|
|
|
|
else if(strcmp(event_string, EVENT_NAME_SEND_OFF) == 0)
|
|
|
|
return_value = LIVE_GAME_EVENT_SEND_OFF;
|
|
|
|
else if(strcmp(event_string, EVENT_NAME_INJURY) == 0)
|
|
|
|
return_value = LIVE_GAME_EVENT_INJURY;
|
|
|
|
else if(strcmp(event_string, EVENT_NAME_TEMP_INJURY) == 0)
|
|
|
|
return_value = LIVE_GAME_EVENT_TEMP_INJURY;
|
|
|
|
else if(strcmp(event_string, EVENT_NAME_PENALTIES) == 0)
|
|
|
|
return_value = LIVE_GAME_EVENT_PENALTIES;
|
|
|
|
else if(strcmp(event_string, EVENT_NAME_STADIUM_BREAKDOWN) == 0)
|
|
|
|
return_value = LIVE_GAME_EVENT_STADIUM_BREAKDOWN;
|
|
|
|
else if(strcmp(event_string, EVENT_NAME_STADIUM_RIOTS) == 0)
|
|
|
|
return_value = LIVE_GAME_EVENT_STADIUM_RIOTS;
|
|
|
|
else if(strcmp(event_string, EVENT_NAME_STADIUM_FIRE) == 0)
|
|
|
|
return_value = LIVE_GAME_EVENT_STADIUM_FIRE;
|
|
|
|
else if(strcmp(event_string, EVENT_NAME_SUBSTITUTION) == 0)
|
|
|
|
return_value = LIVE_GAME_EVENT_SUBSTITUTION;
|
|
|
|
else if(strcmp(event_string, EVENT_NAME_STRUCTURE_CHANGE) == 0)
|
|
|
|
return_value = LIVE_GAME_EVENT_STRUCTURE_CHANGE;
|
|
|
|
else if(strcmp(event_string, EVENT_NAME_STYLE_CHANGE) == 0)
|
|
|
|
return_value = LIVE_GAME_EVENT_STYLE_CHANGE_ALL_OUT_DEFEND;
|
|
|
|
else if(strcmp(event_string, EVENT_NAME_BOOST_CHANGE) == 0)
|
|
|
|
return_value = LIVE_GAME_EVENT_BOOST_CHANGE_ANTI;
|
|
|
|
else
|
2009-04-29 19:18:54 +02:00
|
|
|
debug_print_message("xml_lg_commentary_event_name_to_int: unknown event name %s \n",
|
2005-10-25 17:26:53 +02:00
|
|
|
event_string);
|
|
|
|
|
|
|
|
return return_value;
|
|
|
|
}
|
|
|
|
|
2005-06-26 13:42:01 +02:00
|
|
|
/**
|
|
|
|
* The function called by the parser when an opening tag is read.
|
|
|
|
* The state variable is changed in this function and
|
|
|
|
* sometimes memory allocated for the information that's going to be read.
|
|
|
|
* @see The GLib manual (Simple XML parser).
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
xml_lg_commentary_read_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_lg_commentary_read_start_element\n");
|
|
|
|
#endif
|
|
|
|
|
2005-07-01 22:51:46 +02:00
|
|
|
gint atidx = 0;
|
|
|
|
|
2005-06-26 13:42:01 +02:00
|
|
|
if(strcmp(element_name, TAG_EVENT) == 0)
|
|
|
|
state = STATE_EVENT;
|
|
|
|
else if(strcmp(element_name, TAG_EVENT_NAME) == 0)
|
|
|
|
state = STATE_EVENT_NAME;
|
|
|
|
else if(strcmp(element_name, TAG_EVENT_COMMENTARY) == 0)
|
2005-06-28 04:08:56 +02:00
|
|
|
{
|
2005-06-26 13:42:01 +02:00
|
|
|
state = STATE_EVENT_COMMENTARY;
|
2005-07-01 22:51:46 +02:00
|
|
|
|
|
|
|
condition = NULL;
|
|
|
|
priority = 1;
|
|
|
|
|
|
|
|
while(attribute_names[atidx] != NULL)
|
|
|
|
{
|
|
|
|
if(strcmp(attribute_names[atidx], ATT_NAME_CONDITION) == 0)
|
2005-10-09 11:35:44 +02:00
|
|
|
condition = g_strdup(attribute_values[atidx]);
|
2005-07-01 22:51:46 +02:00
|
|
|
else if(strcmp(attribute_names[atidx], ATT_NAME_PRIORITY) == 0)
|
|
|
|
priority = (gint)g_ascii_strtod(attribute_values[atidx], NULL);
|
|
|
|
|
|
|
|
atidx++;
|
|
|
|
}
|
|
|
|
|
2005-06-28 04:08:56 +02:00
|
|
|
}
|
2005-06-26 13:42:01 +02:00
|
|
|
else if(strcmp(element_name, TAG_LG_COMMENTARY) != 0)
|
2009-04-29 19:18:54 +02:00
|
|
|
debug_print_message("xml_lg_commentary_read_start_element: unknown tag: %s; I'm in state %d\n",
|
2005-06-26 13:42:01 +02:00
|
|
|
element_name, state);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The function called by the parser when a closing tag is read.
|
|
|
|
* The state variable is changed in this function.
|
|
|
|
* @see The GLib manual (Simple XML parser).
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
xml_lg_commentary_read_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_lg_commentary_read_end_element\n");
|
|
|
|
#endif
|
|
|
|
|
2005-06-26 13:42:01 +02:00
|
|
|
if(strcmp(element_name, TAG_EVENT) == 0)
|
|
|
|
state = STATE_LG_COMMENTARY;
|
|
|
|
else if(strcmp(element_name, TAG_EVENT_NAME) == 0 ||
|
|
|
|
strcmp(element_name, TAG_EVENT_COMMENTARY) == 0)
|
|
|
|
state = STATE_EVENT;
|
|
|
|
else if(strcmp(element_name, TAG_LG_COMMENTARY) != 0)
|
2009-04-29 19:18:54 +02:00
|
|
|
debug_print_message("xml_lg_commentary_read_end_element: unknown tag: %s; I'm in state %d\n",
|
2005-06-26 13:42:01 +02:00
|
|
|
element_name, state);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The function called by the parser when the text between tags is read.
|
|
|
|
* This function is responsible for filling in the variables (e.g. team names)
|
|
|
|
* when a file gets loaded.
|
|
|
|
* @see The GLib manual (Simple XML parser).
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
xml_lg_commentary_read_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_lg_commentary_read_text\n");
|
|
|
|
#endif
|
|
|
|
|
2005-06-26 13:42:01 +02:00
|
|
|
gchar buf[text_len + 1];
|
2005-07-01 22:51:46 +02:00
|
|
|
LGCommentary commentary;
|
2005-06-26 13:42:01 +02:00
|
|
|
|
2005-10-09 11:35:44 +02:00
|
|
|
commentary.text = NULL;
|
|
|
|
commentary.condition = NULL;
|
|
|
|
|
2005-06-26 13:42:01 +02:00
|
|
|
strncpy(buf, text, text_len);
|
|
|
|
buf[text_len] = '\0';
|
|
|
|
|
|
|
|
if(state == STATE_EVENT_NAME)
|
2005-10-25 17:26:53 +02:00
|
|
|
commentary_idx = xml_lg_commentary_event_name_to_int(buf);
|
|
|
|
else if(state == STATE_EVENT_COMMENTARY && commentary_idx != -1)
|
2005-06-26 13:42:01 +02:00
|
|
|
{
|
2005-10-09 11:35:44 +02:00
|
|
|
misc_string_assign(&commentary.text, buf);
|
2005-07-01 22:51:46 +02:00
|
|
|
commentary.condition = condition;
|
|
|
|
commentary.priority = MAX(1, priority);
|
2005-07-05 20:37:26 +02:00
|
|
|
commentary.id = lg_commentary_id_new;
|
2005-07-01 22:51:46 +02:00
|
|
|
g_array_append_val(lg_commentary[commentary_idx], commentary);
|
2005-06-26 13:42:01 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function reading an XML file specifying a country.
|
|
|
|
* The variable #country gets freed and overwritten afterwards.
|
|
|
|
* @param lg_commentary_name name of the xml file (e.g. 'lg_commentary_england.xml')
|
|
|
|
* to be read. Full path is not necessary, if the file is located in
|
|
|
|
* one of the suppport directories; neither are the prefix 'lg_commentary_'
|
|
|
|
* or the suffix '.xml'.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
xml_lg_commentary_read(const gchar *commentary_file)
|
|
|
|
{
|
2008-11-25 14:50:07 +01:00
|
|
|
#ifdef DEBUG
|
|
|
|
printf("xml_lg_commentary_read\n");
|
|
|
|
#endif
|
|
|
|
|
2005-06-26 13:42:01 +02:00
|
|
|
GMarkupParser parser = {xml_lg_commentary_read_start_element,
|
|
|
|
xml_lg_commentary_read_end_element,
|
|
|
|
xml_lg_commentary_read_text, NULL, NULL};
|
|
|
|
GMarkupParseContext *context;
|
|
|
|
gchar *file_contents;
|
2006-06-04 19:10:08 +02:00
|
|
|
gsize length;
|
2005-06-26 13:42:01 +02:00
|
|
|
GError *error = NULL;
|
|
|
|
|
|
|
|
context =
|
|
|
|
g_markup_parse_context_new(&parser, 0, NULL, NULL);
|
|
|
|
|
|
|
|
if(!g_file_get_contents(commentary_file, &file_contents, &length, &error))
|
|
|
|
{
|
2009-04-29 19:18:54 +02:00
|
|
|
debug_print_message("xml_lg_commentary_read: error reading file %s\n", commentary_file);
|
2005-06-26 13:42:01 +02:00
|
|
|
if(g_str_has_suffix(commentary_file, "lg_commentary_en.xml"))
|
|
|
|
misc_print_error(&error, TRUE);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
misc_print_error(&error, FALSE);
|
|
|
|
lg_commentary_load_commentary_file("lg_commentary_en.xml", TRUE);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2005-07-01 22:51:46 +02:00
|
|
|
free_lg_commentary(TRUE);
|
2005-06-26 13:42:01 +02:00
|
|
|
|
|
|
|
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_lg_commentary_read: error parsing file %s\n", commentary_file);
|
2005-06-26 13:42:01 +02:00
|
|
|
if(g_str_has_suffix(commentary_file, "lg_commentary_en.xml"))
|
|
|
|
misc_print_error(&error, TRUE);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
misc_print_error(&error, FALSE);
|
|
|
|
lg_commentary_load_commentary_file("lg_commentary_en.xml", TRUE);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|