#include "cup.h" #include "league.h" #include "player.h" #include "table.h" #include "team.h" #include "variables.h" /** Create a new league with some default values. @return The league we created. @see League */ League league_new(gboolean new_id) { League new; new.name = g_string_new(""); new.sid = g_string_new(""); new.short_name = g_string_new(""); new.symbol = g_string_new(""); new.id = (new_id) ? league_id_new : -1; new.average_skill = -1; new.prom_rel.prom_games_dest_sid = g_string_new(""); new.prom_rel.prom_games_loser_sid = g_string_new(""); new.prom_rel.prom_games_number_of_advance = 1; new.prom_rel.elements = g_array_new(FALSE, FALSE, sizeof(PromRelElement)); new.teams = g_array_new(FALSE, FALSE, sizeof(Team)); new.fixtures = g_array_new(FALSE, FALSE, sizeof(Fixture)); new.table = table_new(); new.table.clid = new.id; new.first_week = new.week_gap = 1; new.yellow_red = 1000; return new; } /** Create a new PromRelElement with default values. @return The PromRelElement we created. @see PromRelElement */ PromRelElement prom_rel_element_new(void) { PromRelElement new; new.ranks[0] = new.ranks[1] = 0; new.dest_sid = g_string_new(""); new.type = PROM_REL_NONE; return new; } /** Get the array index of the given league or cup id. @param clid The id of the league or cup. @return The index in the leagues or cups array. */ gint league_cup_get_index_from_clid(gint clid) { gint i; gint index = -1; if(clid < ID_CUP_START) { for(i=0;ilen;i++) if(lig(i).id == clid) { index = i; break; } } else for(i=0;ilen;i++) if(cp(i).id == clid) { index = i; break; } if(index == -1) g_warning("league_cup_get_index_from_clid: couldn't find league or cup with id %d\n", clid); return index; } /** Return the league pointer belonging to the id. @param clid The id we look for. @return The league pointer or NULL if failed. */ League* league_from_clid(gint clid) { gint i; for(i=0;ilen;i++) if(lig(i).id == clid) return &lig(i); g_warning("league_from_clid: didn't find league with id %d\n", clid); return NULL; } /** Return the id of the next league (or cup if we are at the end of the leagues array). @param clid The id of the current league or cup. */ gint league_cup_get_next_clid(gint clid) { gint i, return_value = -1; if(clid < ID_CUP_START) { for(i=0;ilen;i++) if(lig(i).id == clid) break; if(i != ligs->len - 1) return_value = lig(i + 1).id; else if(cps->len > 0) return_value = cp(0).id; else return_value = lig(0).id; } else { for(i=0;ilen;i++) if(acp(i)->id == clid) break; if(i != acps->len - 1) return_value = acp(i + 1)->id; else return_value = lig(0).id; } return return_value; } /** Return the id of the previous league or cup. @param clid The id of the current league or cup. */ gint league_cup_get_previous_clid(gint clid) { gint i, return_value = -1; if(clid < ID_CUP_START) { for(i=ligs->len - 1;i>=0;i--) if(lig(i).id == clid) break; if(i != 0) return_value = lig(i - 1).id; else if(acps->len > 0) return_value = acp(acps->len - 1)->id; else return_value = lig(ligs->len - 1).id; } else { for(i=acps->len - 1;i>=0;i--) if(acp(i)->id == clid) break; if(i != 0) return_value = acp(i - 1)->id; else return_value = lig(ligs->len - 1).id; } return return_value; } /** Return the fixture coming after the specified week and round. @param league The league the fixtures of which we examine. @return A fixture pointer or NULL. */ Fixture* league_cup_get_next_fixture(gint clid, gint week_number, gint week_round_number) { gint i; GArray *fixtures = league_cup_get_fixtures(clid); for(i=0;ilen;i++) if(g_array_index(fixtures, Fixture, i).week_number > week_number || (g_array_index(fixtures, Fixture, i).week_number == week_number && g_array_index(fixtures, Fixture, i).week_round_number >= week_round_number)) return &g_array_index(fixtures, Fixture, i); return NULL; } /** Return the fixture coming just before the specified week and round. @param league The league the fixtures of which we examine. @return A fixture pointer or NULL. */ Fixture* league_cup_get_previous_fixture(gint clid, gint week_number, gint week_round_number) { gint i; GArray *fixtures = league_cup_get_fixtures(clid); for(i=fixtures->len - 1;i>=0;i--) if(g_array_index(fixtures, Fixture, i).week_number < week_number || (g_array_index(fixtures, Fixture, i).week_number == week_number && g_array_index(fixtures, Fixture, i).week_round_number < week_round_number)) return &g_array_index(fixtures, Fixture, i); return NULL; } /** Return the number of league in the leagues array. */ gint league_get_index(gint clid) { gint i; for(i=0;ilen;i++) if(lig(i).id == clid) return i; g_warning("league_get_index: reached end of leagues array; clid is %d\n", clid); return -1; } /** Return the average stadium capacity of cpu teams in the specified league or cup. */ gint league_cup_average_capacity(gint clid) { gint i; gfloat sum = 0; const GArray *teams = league_cup_get_teams(clid); for(i=0;ilen;i++) if(team_is_user(&g_array_index(teams, Team, i)) == -1) sum += g_array_index(teams, Team, i).stadium.capacity; return sum / (gfloat)teams->len; } /** Get the index of the league with the specified string id. */ gint league_index_from_sid(const gchar *sid) { gint i; for(i=0;ilen;i++) if(strcmp(lig(i).sid->str, sid) == 0) return i; g_warning("league_index_from_sid: no index found for sid '%s'.\n", sid); return -1; } /** Remove the team with the specified id from the teams array without freeing the memory (used in promotion/relegation). */ void league_remove_team_with_id(League *league, gint id) { gint i; for(i=0;iteams->len;i++) if(g_array_index(league->teams, Team, i).id == id) { g_array_remove_index(league->teams, i); return; } g_warning("league_remove_team_with_id: team with id %d in league %s not found\n", id, league->name->str); } /** Add the teams to promote/relegate from the league to the array and remove them from the leagues. */ void league_get_team_movements(League *league, GArray *team_movements) { gint i, j, cp_idx = -1; gint dest_idx; gint move_len = team_movements->len; TeamMove new_move; const GArray *elements = league->prom_rel.elements; GPtrArray *prom_games_teams = NULL; for(i=0;ilen;i++) { for(j=g_array_index(elements, PromRelElement, i).ranks[0]; j<=g_array_index(elements, PromRelElement, i).ranks[1]; j++) { new_move.tm = *(g_array_index(league->table.elements, TableElement, j - 1).team); new_move.league_idx = league_index_from_sid(g_array_index(elements, PromRelElement, i).dest_sid->str); g_array_append_val(team_movements, new_move); } } if(league_has_prom_games(league)) { for(i=0;ilen;i++) if(query_cup_is_prom(acp(i)->id)) { for(j=0;jfixtures->len;j++) { if(g_array_index(acp(i)->fixtures, Fixture, j).teams[0]->clid == league->id || g_array_index(acp(i)->fixtures, Fixture, j).teams[1]->clid == league->id) { cp_idx = i; break; } } if(cp_idx != -1) break; } if(cp_idx == -1) { g_warning("league_get_team_movements: promotion games cup not found for league %s (dest_sid %s).\n", league->name->str, league->prom_rel.prom_games_dest_sid->str); return; } prom_games_teams = cup_get_teams_sorted(acp(cp_idx)); dest_idx = league_index_from_sid(league->prom_rel.prom_games_dest_sid->str); for(i=0;iprom_rel.prom_games_number_of_advance;i++) { new_move.tm = *((Team*)g_ptr_array_index(prom_games_teams, i)); new_move.league_idx = dest_idx; g_array_append_val(team_movements, new_move); } if(strlen(league->prom_rel.prom_games_loser_sid->str) > 0) { dest_idx = league_index_from_sid(league->prom_rel.prom_games_loser_sid->str); for(i=league->prom_rel.prom_games_number_of_advance;ilen;i++) { new_move.tm = *((Team*)g_ptr_array_index(prom_games_teams, i)); new_move.league_idx = dest_idx; g_array_append_val(team_movements, new_move); } } g_ptr_array_free(prom_games_teams, TRUE); } for(i=move_len;ilen;i++) league_remove_team_with_id(league_from_clid(g_array_index(team_movements, TeamMove, i).tm.clid), g_array_index(team_movements, TeamMove, i).tm.id); } /** Nullify league stuff at the beginning of a season. */ void league_season_start(League *league) { gint i, j; for(i=0;itable.elements->len;i++) { g_array_index(league->table.elements, TableElement, i).team = &g_array_index(league->teams, Team, i); g_array_index(league->table.elements, TableElement, i).team_id = g_array_index(league->teams, Team, i).id; for(j=0;jtable.elements, TableElement, i).values[j] = 0; } /*todo: make teams better if user champion?*/ for(i=0;iteams->len;i++) for(j=0;jteams, Team, i).players->len;j++) player_season_start(&g_array_index(g_array_index(league->teams, Team, i).players, Player, j)); } /** Find out whether the team with specified rank in the league would participate in promotion games were the season to end. */ gboolean query_league_rank_in_prom_games(const League *league, gint rank) { gint i, j; /*d*/ /* for(i=0;ilen;i++) */ /* printf("%d les %s lig %s sid %s id %d rank %d\n", i, */ /* lig(i).name->str, league->sid->str, */ /* lig(i).sid->str, lig(i).id, rank);getchar(); */ for(i=0;ilen;i++) if(league_has_prom_games((&lig(i)))) { /* printf("dest %s nam %s ctlen %d\n", */ /* lig(i).prom_rel.prom_games_dest_sid->str, */ /* lig(i).prom_rel.prom_games_cup.name->str, */ /* lig(i).prom_rel.prom_games_cup.choose_teams->len);getchar(); */ for(j=0;jlen;j++) { /* printf("fo %s %s\n", */ /* g_array_index(lig(i).prom_rel.prom_games_cup.choose_teams, CupChooseTeam, j).sid->str, */ /* league->sid->str); */ if(strcmp(g_array_index(lig(i).prom_rel.prom_games_cup.choose_teams, CupChooseTeam, j).sid->str, league->sid->str) == 0 && ((rank >= g_array_index(lig(i).prom_rel.prom_games_cup.choose_teams, CupChooseTeam, j).start_idx && rank <= g_array_index(lig(i).prom_rel.prom_games_cup.choose_teams, CupChooseTeam, j).end_idx && g_array_index(lig(i).prom_rel.prom_games_cup.choose_teams, CupChooseTeam, j).randomly) || (rank >= g_array_index(lig(i).prom_rel.prom_games_cup.choose_teams, CupChooseTeam, j).start_idx && rank < g_array_index(lig(i).prom_rel.prom_games_cup.choose_teams, CupChooseTeam, j).start_idx + g_array_index(lig(i).prom_rel.prom_games_cup.choose_teams, CupChooseTeam, j).number_of_teams && !g_array_index(lig(i).prom_rel.prom_games_cup.choose_teams, CupChooseTeam, j).randomly))) return TRUE; } } return FALSE; } /** Find out whether the promotion games fixtures can be written. */ gboolean query_league_prom_games_begin(const League *league) { gint i, j; gboolean proceed = FALSE; for(i=0;iprom_rel.prom_games_cup.choose_teams->len;i++) { for(j=0;jlen;j++) if(strcmp(lig(j).sid->str, g_array_index(league->prom_rel.prom_games_cup.choose_teams, CupChooseTeam, i).sid->str) == 0 && g_array_index(lig(j).fixtures, Fixture, lig(j).fixtures->len - 1).week_number == week && g_array_index(lig(j).fixtures, Fixture, lig(j).fixtures->len - 1).week_round_number == week_round) proceed = TRUE; } if(!proceed) return FALSE; for(i=0;iprom_rel.prom_games_cup.choose_teams->len;i++) { for(j=0;jlen;j++) if(strcmp(lig(j).sid->str, g_array_index(league->prom_rel.prom_games_cup.choose_teams, CupChooseTeam, i).sid->str) == 0 && g_array_index(lig(j).fixtures, Fixture, lig(j).fixtures->len - 1).attendance == -1) return FALSE; } return TRUE; }