bygfoot/src/start_end.c

110 lines
2.5 KiB
C
Raw Normal View History

#include "cup.h"
2005-01-09 21:21:22 +01:00
#include "file.h"
#include "fixture.h"
#include "league.h"
#include "main.h"
#include "maths.h"
#include "player.h"
#include "start_end.h"
#include "team.h"
#include "transfer.h"
#include "variables.h"
#include "xml_name.h"
/** Generate the teams etc. */
void
start_new_game(void)
{
xml_name_read(PLAYER_NAMES_FILE, -1);
2005-01-09 21:21:22 +01:00
start_write_variables();
start_generate_league_teams();
start_new_season();
xml_name_read(PLAYER_NAMES_FILE, 1000);
}
/** Make new fixtures, nullify things etc. */
void
start_new_season(void)
{
2005-01-09 21:21:22 +01:00
gint i;
xml_name_read(PLAYER_NAMES_FILE, 1000);
start_load_cup_teams();
2005-01-09 21:21:22 +01:00
for(i=0;i<ligs->len;i++)
fixture_write_league_fixtures(&lig(i));
for(i=0;i<cps->len;i++)
fixture_write_cup_fixtures(&cp(i));
}
/** Fill some global variables with default values at the
beginning of a new game. */
void
start_write_variables(void)
{
2005-01-09 21:21:22 +01:00
gint i;
season = week = week_round = 1;
scout = physio = QUALITY_AVERAGE;
2005-01-09 21:21:22 +01:00
transfer_list = g_array_new(FALSE, FALSE, sizeof(TransferPlayer));
file_load_conf_file();
}
/** Generate the teams in the leagues. */
void
start_generate_league_teams(void)
{
gint i, j;
Team *tm;
if(ligs->len == 0)
2005-01-09 21:21:22 +01:00
main_exit_program(EXIT_NO_LEAGUES,
"start_generate_league_teams: no leagues found. there must be at least one league in the game.\n");
for(i=0;i<ligs->len;i++)
{
for(j=0;j<lig(i).teams->len;j++)
{
tm = &g_array_index(lig(i).teams, Team, j);
tm->stadium.capacity =
math_gauss_disti((gint)(lig(i).average_capacity * 0.66),
(gint)(lig(i).average_capacity * 1.33));
team_generate_players(tm);
}
}
}
/** Load the names from the xml files for the cups
and generate the teams. */
void
start_load_cup_teams(void)
{
gint i, j;
for(i=0;i<cps->len;i++)
if(cp(i).type == CUP_TYPE_INTERNATIONAL)
{
cup_load_choose_teams(&cp(i));
cup_load_choose_team_user(&cp(i));
2005-01-09 21:21:22 +01:00
/*d*/
/* for(j=0;j<cp(i).teams->len;j++) */
/* { */
/* printf("%d %s clid %d id %d\n", j, */
/* g_array_index(cp(i).teams, Team, j).name->str, */
/* g_array_index(cp(i).teams, Team, j).clid, */
/* g_array_index(cp(i).teams, Team, j).id); */
/* } */
/* for(j=0;j<cp(i).user_teams->len;j++) */
/* { */
/* printf("%d %s clid %d id %d\n", j, */
/* ((Team*)g_ptr_array_index(cp(i).user_teams, j))->name->str, */
/* ((Team*)g_ptr_array_index(cp(i).user_teams, j))->clid, */
/* ((Team*)g_ptr_array_index(cp(i).user_teams, j))->id); */
/* } */
}
}