bygfoot/src/training_callbacks.c

232 lines
6.9 KiB
C
Raw Normal View History

2007-01-18 18:36:09 +01:00
/*
bet_struct.h
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.
*/
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <gtk/gtk.h>
#include "bygfoot.h"
#include "game_gui.h"
#include "support.h"
#include "training.h"
#include "training_callbacks.h"
#include "training_interface.h"
#include "training_struct.h"
#include "treeview.h"
#include "user.h"
#include "variables.h"
#include "window.h"
void
on_b_cancel_clicked (GtkButton *button,
gpointer user_data)
{
window_destroy(&window.training_camp);
}
void
on_b_ok_clicked (GtkButton *button,
gpointer user_data)
{
GtkWidget *rb_camp1;
GtkWidget *rb_camp2;
GtkHScale *hs_recreation;
GtkHScale *hs_training;
gdouble value_training;
gdouble value_recreation;
gint number_camp;
Team *current_team = current_user.tm;
//Get active radio
rb_camp1 = GTK_WIDGET(lookup_widget(window.training_camp, "rb_camp1"));
rb_camp2 = GTK_WIDGET(lookup_widget(window.training_camp, "rb_camp2"));
if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(rb_camp1)))
number_camp = 1;
else if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(rb_camp2)))
number_camp = 2;
else
number_camp = 3;
//Get values for training and recreation
hs_recreation = GTK_HSCALE(lookup_widget(window.training_camp, "hs_recreation"));
hs_training = GTK_HSCALE(lookup_widget(window.training_camp, "hs_training"));
value_training = gtk_range_get_value(GTK_RANGE(hs_training));
value_recreation = gtk_range_get_value(GTK_RANGE(hs_recreation));
//Calculate training camp
calculateTrainingCamp(current_team, value_training, value_recreation, number_camp);
//Set new av-values -> GUI
game_gui_write_av_skills(current_team);
//Set new player values in GUI
treeview_show_user_player_list();
//Calculate costs of the training camp
calculateCostsTrainingCamp(number_camp);
//Set new av-values -> GUI
game_gui_write_money();
window_destroy(&window.training_camp);
}
void
on_rb_camp3_clicked (GtkButton *button,
gpointer user_data)
{
GtkEntry *tfCosts;
gchar buf[SMALL];
sprintf(buf, "%d", COSTS_CAMP_3);
tfCosts = GTK_ENTRY(lookup_widget(window.training_camp, "tf_costs"));
gtk_entry_set_text (tfCosts, buf);
}
void
on_rb_camp2_clicked (GtkButton *button,
gpointer user_data)
{
GtkEntry *tfCosts;
gchar buf[SMALL];
sprintf(buf, "%d", COSTS_CAMP_2);
tfCosts = GTK_ENTRY(lookup_widget(window.training_camp, "tf_costs"));
gtk_entry_set_text (tfCosts, buf);
}
void
on_rb_camp1_clicked (GtkButton *button,
gpointer user_data)
{
GtkEntry *tfCosts;
gchar buf[SMALL];
sprintf(buf, "%d", COSTS_CAMP_1);
tfCosts = GTK_ENTRY(lookup_widget(window.training_camp, "tf_costs"));
gtk_entry_set_text (tfCosts, buf);
}
2007-02-12 17:07:19 +01:00
void
on_b_dec_recreation_clicked (GtkButton *button,
2007-01-18 18:36:09 +01:00
gpointer user_data)
{
GtkHScale *hs_camp_points;
2007-02-12 17:07:19 +01:00
GtkHScale *hs_recreation;
2007-01-18 18:36:09 +01:00
gdouble value_camp_points;
gdouble value_recreation;
2007-02-12 17:07:19 +01:00
2007-01-18 18:36:09 +01:00
hs_camp_points = GTK_HSCALE(lookup_widget(window.training_camp, "hs_camp_points"));
2007-02-12 17:07:19 +01:00
hs_recreation = GTK_HSCALE(lookup_widget(window.training_camp, "hs_recreation"));
2007-01-18 18:36:09 +01:00
value_camp_points = gtk_range_get_value(GTK_RANGE(hs_camp_points));
2007-02-12 17:07:19 +01:00
value_recreation = gtk_range_get_value(GTK_RANGE(hs_recreation));
2007-01-18 18:36:09 +01:00
2007-02-12 17:07:19 +01:00
if (value_recreation > CAMP_SCALE_MIN)
{
value_recreation --;
value_camp_points ++;
gtk_range_set_value(GTK_RANGE(hs_recreation), value_recreation);
gtk_range_set_value(GTK_RANGE(hs_camp_points), value_camp_points);
2007-01-18 18:36:09 +01:00
}
2007-02-12 17:07:19 +01:00
}
void
on_b_inc_recreation_clicked (GtkButton *button,
gpointer user_data)
{
GtkHScale *hs_camp_points;
GtkHScale *hs_recreation;
gdouble value_camp_points;
gdouble value_recreation;
hs_camp_points = GTK_HSCALE(lookup_widget(window.training_camp, "hs_camp_points"));
hs_recreation = GTK_HSCALE(lookup_widget(window.training_camp, "hs_recreation"));
value_camp_points = gtk_range_get_value(GTK_RANGE(hs_camp_points));
value_recreation = gtk_range_get_value(GTK_RANGE(hs_recreation));
2007-01-18 18:36:09 +01:00
2007-02-12 17:07:19 +01:00
if (value_camp_points > CAMP_SCALE_MIN)
2007-01-18 18:36:09 +01:00
{
2007-02-12 17:07:19 +01:00
value_recreation ++;
value_camp_points --;
gtk_range_set_value(GTK_RANGE(hs_recreation), value_recreation);
gtk_range_set_value(GTK_RANGE(hs_camp_points), value_camp_points);
2007-01-18 18:36:09 +01:00
}
}
2007-02-12 17:07:19 +01:00
void
on_b_dec_training_clicked (GtkButton *button,
2007-01-18 18:36:09 +01:00
gpointer user_data)
{
GtkHScale *hs_camp_points;
2007-02-12 17:07:19 +01:00
GtkHScale *hs_training;
2007-01-18 18:36:09 +01:00
gdouble value_camp_points;
gdouble value_training;
2007-02-12 17:07:19 +01:00
2007-01-18 18:36:09 +01:00
hs_camp_points = GTK_HSCALE(lookup_widget(window.training_camp, "hs_camp_points"));
2007-02-12 17:07:19 +01:00
hs_training = GTK_HSCALE(lookup_widget(window.training_camp, "hs_training"));
2007-01-18 18:36:09 +01:00
value_camp_points = gtk_range_get_value(GTK_RANGE(hs_camp_points));
2007-02-12 17:07:19 +01:00
value_training = gtk_range_get_value(GTK_RANGE(hs_training));
2007-01-18 18:36:09 +01:00
2007-02-12 17:07:19 +01:00
if (value_training > CAMP_SCALE_MIN)
{
value_training --;
value_camp_points ++;
gtk_range_set_value(GTK_RANGE(hs_training), value_training);
gtk_range_set_value(GTK_RANGE(hs_camp_points), value_camp_points);
2007-01-18 18:36:09 +01:00
}
2007-02-12 17:07:19 +01:00
}
void
on_b_inc_training_clicked (GtkButton *button,
gpointer user_data)
{
GtkHScale *hs_camp_points;
GtkHScale *hs_training;
gdouble value_camp_points;
gdouble value_training;
hs_camp_points = GTK_HSCALE(lookup_widget(window.training_camp, "hs_camp_points"));
hs_training = GTK_HSCALE(lookup_widget(window.training_camp, "hs_training"));
value_camp_points = gtk_range_get_value(GTK_RANGE(hs_camp_points));
value_training = gtk_range_get_value(GTK_RANGE(hs_training));
2007-01-18 18:36:09 +01:00
2007-02-12 17:07:19 +01:00
if (value_camp_points > CAMP_SCALE_MIN)
2007-01-18 18:36:09 +01:00
{
2007-02-12 17:07:19 +01:00
value_training ++;
value_camp_points --;
gtk_range_set_value(GTK_RANGE(hs_training), value_training);
gtk_range_set_value(GTK_RANGE(hs_camp_points), value_camp_points);
2007-01-18 18:36:09 +01:00
}
}