bygfoot/src/cup.h

87 lines
1.8 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
2005-04-14 21:07:25 +02:00
#define query_cup_is_prom(clid) (clid >= ID_PROM_CUP_START && clid < ID_SUPERCUP_START)
#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-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
cup_load_choose_teams(Cup *cup);
void
cup_load_choose_team_user(Cup *cup);
void
cup_choose_team_abort(const Cup *cup, const CupChooseTeam *choose_team, gboolean user);
2004-12-23 21:43:43 +01:00
2005-01-09 21:21:22 +01:00
GPtrArray*
cup_get_team_pointers(const Cup *cup);
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-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
query_cup_supercup_begins(const Cup *supercup);
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);
2004-12-23 21:43:43 +01:00
#endif