2005-10-20 17:45:00 +02:00
|
|
|
/*
|
2005-11-26 17:52:51 +01:00
|
|
|
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-03-03 13:46:48 +01:00
|
|
|
#include "cup.h"
|
|
|
|
#include "league.h"
|
2005-06-17 18:24:29 +02:00
|
|
|
#include "misc.h"
|
2005-03-03 13:46:48 +01:00
|
|
|
#include "table.h"
|
2009-01-11 15:51:12 +01:00
|
|
|
#include "team.h"
|
2005-03-03 13:46:48 +01:00
|
|
|
#include "variables.h"
|
|
|
|
|
2005-04-04 12:36:04 +02:00
|
|
|
/** Return a newly allocated empty table. */
|
|
|
|
Table
|
|
|
|
table_new(void)
|
|
|
|
{
|
2008-11-25 14:50:07 +01:00
|
|
|
#ifdef DEBUG
|
|
|
|
printf("table_new\n");
|
|
|
|
#endif
|
|
|
|
|
2005-04-04 12:36:04 +02:00
|
|
|
Table new;
|
|
|
|
|
2005-10-09 11:35:44 +02:00
|
|
|
new.name = NULL;
|
2005-04-04 12:36:04 +02:00
|
|
|
new.clid = -1;
|
|
|
|
new.round = -1;
|
|
|
|
new.elements = g_array_new(FALSE, FALSE, sizeof(TableElement));
|
|
|
|
|
|
|
|
return new;
|
|
|
|
}
|
|
|
|
|
2005-03-03 13:46:48 +01:00
|
|
|
/** Return a nullified table element.
|
|
|
|
@param team The team pointer of the element.
|
2005-05-02 16:39:30 +02:00
|
|
|
@param old_rank The old_rank value of the element.
|
2005-03-03 13:46:48 +01:00
|
|
|
@see #TableElement */
|
|
|
|
TableElement
|
2005-05-02 16:39:30 +02:00
|
|
|
table_element_new(Team *team, gint old_rank)
|
2005-03-03 13:46:48 +01:00
|
|
|
{
|
2008-11-25 14:50:07 +01:00
|
|
|
#ifdef DEBUG
|
|
|
|
printf("table_element_new\n");
|
|
|
|
#endif
|
|
|
|
|
2005-03-03 13:46:48 +01:00
|
|
|
gint i;
|
|
|
|
TableElement new;
|
|
|
|
|
|
|
|
new.team = team;
|
2005-05-02 16:39:30 +02:00
|
|
|
new.old_rank = old_rank;
|
2005-03-03 13:46:48 +01:00
|
|
|
|
|
|
|
for(i=0;i<TABLE_END;i++)
|
|
|
|
new.values[i] = 0;
|
|
|
|
|
|
|
|
return new;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Update the appropriate table entries after
|
|
|
|
a fixture has been calculated.
|
|
|
|
@param fix The fixture that's just been calculated. */
|
|
|
|
void
|
|
|
|
table_update(const Fixture *fix)
|
|
|
|
{
|
2008-11-25 14:50:07 +01:00
|
|
|
#ifdef DEBUG
|
|
|
|
printf("table_update\n");
|
|
|
|
#endif
|
|
|
|
|
2008-11-24 10:37:54 +01:00
|
|
|
gint i, j, end;
|
2005-03-03 13:46:48 +01:00
|
|
|
gint idx = (fix->result[0][0] < fix->result[1][0]);
|
2008-11-22 17:51:31 +01:00
|
|
|
TableElement *elements[2];
|
2005-03-03 13:46:48 +01:00
|
|
|
|
2008-11-24 10:37:54 +01:00
|
|
|
end = (fix->clid < ID_CUP_START) ? 2 : 1;
|
|
|
|
|
|
|
|
for(j = 0; j < end; j++)
|
2008-11-22 17:51:31 +01:00
|
|
|
{
|
|
|
|
elements[0] = elements[1] = NULL;
|
|
|
|
table_update_get_elements(elements, fix, (j == 1));
|
2005-03-03 13:46:48 +01:00
|
|
|
|
2008-11-22 17:51:31 +01:00
|
|
|
for(i=0;i<2;i++)
|
|
|
|
{
|
|
|
|
if(elements[i] != NULL)
|
|
|
|
{
|
|
|
|
elements[i]->values[TABLE_PLAYED]++;
|
|
|
|
elements[i]->values[TABLE_GF] += fix->result[i][0];
|
|
|
|
elements[i]->values[TABLE_GA] += fix->result[!i][0];
|
|
|
|
elements[i]->values[TABLE_GD] =
|
|
|
|
elements[i]->values[TABLE_GF] - elements[i]->values[TABLE_GA];
|
|
|
|
}
|
|
|
|
}
|
2005-03-03 13:46:48 +01:00
|
|
|
|
2008-11-22 17:51:31 +01:00
|
|
|
if(fix->result[0][0] == fix->result[1][0])
|
|
|
|
for(i=0;i<2;i++)
|
|
|
|
{
|
|
|
|
if(elements[i] != NULL)
|
|
|
|
{
|
|
|
|
elements[i]->values[TABLE_DRAW]++;
|
|
|
|
elements[i]->values[TABLE_PTS] += 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if(elements[idx] != NULL)
|
|
|
|
{
|
|
|
|
elements[idx]->values[TABLE_WON]++;
|
|
|
|
elements[idx]->values[TABLE_PTS] += 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(elements[!idx] != NULL)
|
|
|
|
{
|
|
|
|
elements[!idx]->values[TABLE_LOST]++;
|
|
|
|
}
|
|
|
|
}
|
2005-03-03 13:46:48 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Get the pointers to the table entries
|
|
|
|
representing the two teams from the fixture.
|
|
|
|
@param elements The table entries.
|
2008-11-22 17:51:31 +01:00
|
|
|
@fix The fixture.
|
|
|
|
@non_cumulative Whether to return the last non-cumulative table. */
|
2005-03-03 13:46:48 +01:00
|
|
|
void
|
2008-11-22 17:51:31 +01:00
|
|
|
table_update_get_elements(TableElement **elements, const Fixture *fix, gboolean non_cumulative)
|
2005-03-03 13:46:48 +01:00
|
|
|
{
|
2008-11-25 14:50:07 +01:00
|
|
|
#ifdef DEBUG
|
|
|
|
printf("table_update_get_elements\n");
|
|
|
|
#endif
|
|
|
|
|
2005-03-03 13:46:48 +01:00
|
|
|
gint i, j;
|
|
|
|
Table *table;
|
|
|
|
|
|
|
|
if(fix->clid < ID_CUP_START)
|
|
|
|
{
|
2008-11-20 21:20:18 +01:00
|
|
|
for(j = 0; j < 2; j++)
|
|
|
|
{
|
2008-11-22 17:51:31 +01:00
|
|
|
if(non_cumulative &&
|
|
|
|
league_from_clid(fix->teams[j]->clid)->tables->len == 1)
|
|
|
|
{
|
|
|
|
elements[j] = NULL;
|
|
|
|
continue;
|
|
|
|
}
|
2008-11-20 21:20:18 +01:00
|
|
|
|
2008-11-22 17:51:31 +01:00
|
|
|
table = (non_cumulative) ?
|
|
|
|
league_table(league_from_clid(fix->teams[j]->clid)) :
|
|
|
|
league_table_cumul(league_from_clid(fix->teams[j]->clid));
|
|
|
|
|
2008-11-20 21:20:18 +01:00
|
|
|
for(i=0;i<table->elements->len;i++)
|
|
|
|
{
|
|
|
|
if(g_array_index(table->elements, TableElement, i).team == fix->teams[j])
|
|
|
|
elements[j] = &g_array_index(table->elements, TableElement, i);
|
|
|
|
}
|
|
|
|
}
|
2005-03-03 13:46:48 +01:00
|
|
|
}
|
|
|
|
else
|
2005-04-22 17:17:39 +02:00
|
|
|
for(i=0;i<cup_get_last_tables(fix->clid)->len;i++)
|
2005-03-03 13:46:48 +01:00
|
|
|
{
|
2005-04-22 17:17:39 +02:00
|
|
|
table = &g_array_index(cup_get_last_tables(fix->clid), Table, i);
|
|
|
|
|
2005-03-03 13:46:48 +01:00
|
|
|
if(elements[0] == NULL || elements[1] == NULL)
|
|
|
|
for(j=0;j<table->elements->len;j++)
|
|
|
|
{
|
|
|
|
if(g_array_index(table->elements, TableElement, j).team == fix->teams[0])
|
|
|
|
elements[0] = &g_array_index(table->elements, TableElement, j);
|
|
|
|
else if(g_array_index(table->elements, TableElement, j).team == fix->teams[1])
|
|
|
|
elements[1] = &g_array_index(table->elements, TableElement, j);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Compare function used to sort the tables.
|
|
|
|
@param a The first table element.
|
|
|
|
@param b The second element.
|
|
|
|
@param clid_round The clid and the cup round of the table
|
|
|
|
encoded as a gpointer. */
|
|
|
|
gint
|
|
|
|
table_element_compare_func(gconstpointer a,
|
|
|
|
gconstpointer b,
|
|
|
|
gpointer clid_pointer)
|
|
|
|
{
|
2008-11-25 14:50:07 +01:00
|
|
|
#ifdef DEBUG
|
|
|
|
printf("table_element_compare_func\n");
|
|
|
|
#endif
|
|
|
|
|
2005-03-03 13:46:48 +01:00
|
|
|
gint i;
|
|
|
|
gint clid, cup_round, value;
|
|
|
|
TableElement *element1 = (TableElement*)a,
|
|
|
|
*element2 = (TableElement*)b;
|
|
|
|
GArray *fixtures;
|
|
|
|
const Fixture *fix[2] = {NULL, NULL};
|
|
|
|
|
2021-05-01 15:59:18 +02:00
|
|
|
if(element1->team == element2->team)
|
2005-03-03 13:46:48 +01:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
clid = GPOINTER_TO_INT(clid_pointer);
|
2005-03-27 19:59:57 +02:00
|
|
|
|
|
|
|
fixtures = league_cup_get_fixtures(clid);
|
2005-03-03 13:46:48 +01:00
|
|
|
if(clid < ID_CUP_START)
|
|
|
|
cup_round = -1;
|
|
|
|
else
|
2005-04-22 17:17:39 +02:00
|
|
|
cup_round = cup_has_tables(clid);
|
2005-03-09 14:10:28 +01:00
|
|
|
|
|
|
|
/*todo use misc_int_compare*/
|
2005-06-17 18:24:29 +02:00
|
|
|
if(element1->values[TABLE_PTS] != element2->values[TABLE_PTS])
|
|
|
|
value = misc_int_compare(element1->values[TABLE_PTS],
|
|
|
|
element2->values[TABLE_PTS]);
|
|
|
|
else if(element1->values[TABLE_GF] - element1->values[TABLE_GA] !=
|
2005-03-03 13:46:48 +01:00
|
|
|
element2->values[TABLE_GF] - element2->values[TABLE_GA])
|
2005-06-17 18:24:29 +02:00
|
|
|
value = misc_int_compare(element1->values[TABLE_GF] - element1->values[TABLE_GA],
|
|
|
|
element2->values[TABLE_GF] - element2->values[TABLE_GA]);
|
|
|
|
else if(element1->values[TABLE_GA] != element2->values[TABLE_GA])
|
|
|
|
value = misc_int_compare(element1->values[TABLE_GA],
|
|
|
|
element2->values[TABLE_GA]);
|
2005-03-03 13:46:48 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
for(i=0;i<fixtures->len;i++)
|
|
|
|
{
|
|
|
|
if(g_array_index(fixtures, Fixture, i).round == cup_round &&
|
|
|
|
g_array_index(fixtures, Fixture, i).week_number <= week &&
|
|
|
|
g_array_index(fixtures, Fixture, i).week_round_number <= week_round)
|
|
|
|
{
|
2021-05-18 15:07:22 +02:00
|
|
|
if(g_array_index(fixtures, Fixture, i).teams[0] == element1->team &&
|
|
|
|
g_array_index(fixtures, Fixture, i).teams[1] == element2->team)
|
2005-03-03 13:46:48 +01:00
|
|
|
fix[0] = &g_array_index(fixtures, Fixture, i);
|
2021-05-18 15:07:22 +02:00
|
|
|
else if(g_array_index(fixtures, Fixture, i).teams[1] == element1->team &&
|
|
|
|
g_array_index(fixtures, Fixture, i).teams[0] == element2->team)
|
2005-03-03 13:46:48 +01:00
|
|
|
fix[1] = &g_array_index(fixtures, Fixture, i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(fix[0] == NULL || fix[1] == NULL)
|
2005-04-22 17:17:39 +02:00
|
|
|
value = 0;
|
2005-03-03 13:46:48 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
if(fix[0]->result[0][0] + fix[1]->result[1][0] >
|
|
|
|
fix[0]->result[1][0] + fix[1]->result[0][0])
|
|
|
|
value = -1;
|
|
|
|
else if(fix[0]->result[0][0] + fix[1]->result[1][0] <
|
|
|
|
fix[0]->result[1][0] + fix[1]->result[0][0])
|
|
|
|
value = 1;
|
|
|
|
else if(fix[1]->result[1][0] > fix[0]->result[1][0])
|
|
|
|
value = -1;
|
|
|
|
else
|
|
|
|
value = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return value;
|
|
|
|
}
|
2005-09-19 23:13:36 +02:00
|
|
|
|
|
|
|
/** Find out if there are active leagues (which automatically
|
|
|
|
have tables then) or cups with tables in the country. */
|
|
|
|
gboolean
|
|
|
|
query_tables_in_country(void)
|
|
|
|
{
|
2008-11-25 14:50:07 +01:00
|
|
|
#ifdef DEBUG
|
|
|
|
printf("query_tables_in_country\n");
|
|
|
|
#endif
|
|
|
|
|
2005-09-19 23:13:36 +02:00
|
|
|
gint i;
|
|
|
|
|
|
|
|
for(i=0;i<ligs->len;i++)
|
2008-11-24 12:16:36 +01:00
|
|
|
if(query_league_active(&lig(i)))
|
2005-09-19 23:13:36 +02:00
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
for(i=0;i<cps->len;i++)
|
|
|
|
if(cup_has_tables(cp(i).id) != -1)
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
2008-11-22 17:51:31 +01:00
|
|
|
|
|
|
|
/** Copy a table. */
|
|
|
|
Table
|
|
|
|
table_copy(const Table *table)
|
|
|
|
{
|
2008-11-25 14:50:07 +01:00
|
|
|
#ifdef DEBUG
|
|
|
|
printf("table_copy\n");
|
|
|
|
#endif
|
|
|
|
|
2008-11-22 17:51:31 +01:00
|
|
|
gint i, j;
|
|
|
|
Table new_table;
|
|
|
|
TableElement new_table_element;
|
|
|
|
TableElement *elem;
|
|
|
|
|
|
|
|
new_table.name = g_strdup(table->name);
|
|
|
|
new_table.clid = table->clid;
|
|
|
|
new_table.round = table->round;
|
|
|
|
new_table.elements = g_array_new(FALSE, FALSE, sizeof(TableElement));
|
|
|
|
|
|
|
|
for(i = 0; i < table->elements->len; i++)
|
|
|
|
{
|
|
|
|
elem = &g_array_index(table->elements, TableElement, i);
|
|
|
|
new_table_element.team = elem->team;
|
|
|
|
new_table_element.old_rank = elem->old_rank;
|
|
|
|
|
|
|
|
for(j=0;j<TABLE_END;j++)
|
|
|
|
new_table_element.values[j] = elem->values[j];
|
|
|
|
|
|
|
|
g_array_append_val(new_table.elements, new_table_element);
|
|
|
|
}
|
|
|
|
|
|
|
|
return new_table;
|
|
|
|
}
|
2009-01-11 15:51:12 +01:00
|
|
|
|
|
|
|
/** Refresh the team pointers in the table from the team ids. */
|
|
|
|
void
|
|
|
|
table_refresh_team_pointers(Table *table)
|
|
|
|
{
|
|
|
|
gint i;
|
|
|
|
|
|
|
|
for(i = 0; i < table->elements->len; i++)
|
|
|
|
g_array_index(table->elements, TableElement, i).team =
|
2021-05-01 15:59:18 +02:00
|
|
|
team_of_id(GPOINTER_TO_INT(g_array_index(table->elements, TableElement, i).team));
|
2009-01-11 15:51:12 +01:00
|
|
|
}
|