bygfoot/src/cup.h

101 lines
2.2 KiB
C
Raw Normal View History

2004-12-23 21:43:43 +01:00
#ifndef CUP_H
#define CUP_H
#include "bygfoot.h"
#include "cup_struct.h"
2005-03-14 18:47:27 +01:00
#include "fixture_struct.h"
2005-04-14 21:07:25 +02:00
#include "league_struct.h"
2004-12-23 21:43:43 +01:00
#define cup_get_last_tables_round(clid) &g_array_index(cup_from_clid(clid)->rounds, CupRound, cup_has_tables(clid))
#define cup_get_last_tables(clid) g_array_index(cup_from_clid(clid)->rounds, CupRound, cup_has_tables(clid)).tables
2004-12-23 21:43:43 +01:00
2005-05-06 18:35:19 +02:00
#define query_cup_has_property(clid, string) query_misc_string_in_array(string, cup_from_clid(clid)->properties)
#define query_cup_is_international(clid) query_cup_has_property(clid, "international")
#define query_cup_is_national(clid) query_cup_has_property(clid, "national")
2005-05-25 19:58:04 +02:00
#define query_cup_hide(clid) query_cup_has_property(clid, "hide")
2005-05-06 18:35:19 +02:00
2005-04-14 21:07:25 +02:00
Cup
cup_new(gboolean new_id);
2004-12-23 21:43:43 +01:00
CupChooseTeam
cup_choose_team_new(void);
2004-12-23 21:43:43 +01:00
CupRound
cup_round_new(void);
void
2005-05-06 18:35:19 +02:00
cup_reset(Cup *cup);
2005-05-06 18:35:19 +02:00
GPtrArray*
2005-05-08 19:56:26 +02:00
cup_get_team_pointers(Cup *cup, gint round);
void
2005-05-08 19:56:26 +02:00
cup_load_choose_team_generate(Cup *cup, CupRound *cup_round, const CupChooseTeam *ct);
2004-12-23 21:43:43 +01:00
2005-05-06 18:35:19 +02:00
void
cup_load_choose_team(Cup *cup, GPtrArray *teams, const CupChooseTeam *ct);
2005-01-09 21:21:22 +01:00
gint
cup_get_first_week_of_cup_round(const Cup *cup, gint cup_round);
gint
cup_get_matchdays_in_cup_round(const Cup *cup, gint cup_round);
gint
cup_round_get_number_of_teams(const Cup *cup, gint cup_round);
Cup*
cup_from_clid(gint clid);
2005-05-06 18:35:19 +02:00
Cup*
cup_from_sid(const gchar* sid);
2005-03-14 18:47:27 +01:00
void
cup_round_name(const Fixture *fix, gchar *buf);
2005-04-13 15:01:59 +02:00
GPtrArray*
cup_get_teams_sorted(const Cup *cup);
gint
cup_compare_success_tables(const Team *tm1, const Team *tm2, const Cup *cup, gint round);
2005-04-13 15:01:59 +02:00
GPtrArray*
cup_get_teams_from_names(GPtrArray *team_names);
gint
cup_compare_success(gconstpointer a, gconstpointer b, gpointer data);
gint
cup_get_round_reached(const Team *tm, const GArray *fixtures);
2005-04-14 21:07:25 +02:00
GPtrArray*
cup_get_choose_teams_pointers(Cup *cup);
gboolean
2005-05-06 18:35:19 +02:00
query_cup_begins(const Cup *cup);
2005-04-14 21:07:25 +02:00
void
cup_get_choose_team_league_cup(const CupChooseTeam *ct,
League **league, Cup **cup);
gint
cup_get_last_week_from_first(const Cup *cup, gint first_week);
2005-04-16 09:46:04 +02:00
void
cup_get_round_name(const Cup *cup, gint round, gchar *buf);
gint
cup_has_tables(gint clid);
2005-05-01 12:16:14 +02:00
Team*
cup_get_winner(const Cup *cup);
gint
cup_count_international(void);
2005-05-28 16:34:14 +02:00
gchar*
cup_get_highlight_colour(const Cup *cup);
2004-12-23 21:43:43 +01:00
#endif