Freeciv-3.1
|
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <gtk/gtk.h>
#include <gdk/gdkkeysyms.h>
#include "fcintl.h"
#include "log.h"
#include "shared.h"
#include "support.h"
#include "fc_types.h"
#include "game.h"
#include "government.h"
#include "packets.h"
#include "research.h"
#include "tech.h"
#include "unitlist.h"
#include "chatline_common.h"
#include "client_main.h"
#include "climisc.h"
#include "control.h"
#include "mapview_common.h"
#include "options.h"
#include "packhand_gen.h"
#include "reqtree.h"
#include "text.h"
#include "canvas.h"
#include "cityrep.h"
#include "dialogs.h"
#include "gui_main.h"
#include "gui_stuff.h"
#include "helpdlg.h"
#include "plrdlg.h"
#include "sprite.h"
#include "repodlgs.h"
Go to the source code of this file.
Data Structures | |
class | science_report |
struct | economy_report |
struct | units_report |
class | endgame_report |
Enumerations | |
enum | science_report_columns { SRD_COL_NAME , SRD_COL_STEPS , SRD_COL_ID , SRD_COL_NUM } |
enum | economy_report_response { ERD_RES_SELL_REDUNDANT = 1 , ERD_RES_SELL_ALL , ERD_RES_DISBAND_UNITS } |
enum | economy_report_columns { ERD_COL_SPRITE , ERD_COL_NAME , ERD_COL_REDUNDANT , ERD_COL_COUNT , ERD_COL_COST , ERD_COL_TOTAL_COST , ERD_COL_EMPTY , ERD_COL_IS_IMPROVEMENT , ERD_COL_CID , ERD_COL_NUM } |
enum | units_report_response { URD_RES_NEAREST = 1 , URD_RES_UPGRADE } |
enum | units_report_columns { URD_COL_UTYPE_NAME , URD_COL_UPGRADABLE , URD_COL_N_UPGRADABLE , URD_COL_IN_PROGRESS , URD_COL_ACTIVE , URD_COL_SHIELD , URD_COL_FOOD , URD_COL_GOLD , URD_COL_EMPTY , URD_COL_TEXT_WEIGHT , URD_COL_UPG_VISIBLE , URD_COL_NUPG_VISIBLE , URD_COL_UTYPE_ID , URD_COL_NUM } |
enum | endgame_report_columns { FRD_COL_PLAYER , FRD_COL_NATION , FRD_COL_SCORE , FRD_COL_TOOLTIP , FRD_COL_NUM } |
Functions | |
static GtkListStore * | science_report_store_new (void) |
static void | science_report_store_set (GtkListStore *store, GtkTreeIter *iter, Tech_type_id tech) |
static bool | science_report_combo_get_active (GtkComboBox *combo, Tech_type_id *tech, char **name) |
static void | science_report_combo_set_active (GtkComboBox *combo, Tech_type_id tech) |
static gboolean | science_diagram_left_button_up (GtkGestureClick *gesture, int n_press, double x, double y) |
static gboolean | science_diagram_right_button_up (GtkGestureClick *gesture, int n_press, double x, double y) |
static void | science_diagram_update (GtkDrawingArea *widget, cairo_t *cr, int width, int height, gpointer data) |
static GtkWidget * | science_diagram_new (void) |
static void | science_diagram_data (GtkWidget *widget, bool show_all) |
static void | science_diagram_center (GtkWidget *diagram, Tech_type_id tech) |
static void | science_report_redraw (struct science_report *preport) |
static gint | cmp_func (gconstpointer a_p, gconstpointer b_p) |
static void | science_report_update (struct science_report *preport) |
static void | science_report_current_callback (GtkComboBox *combo, gpointer data) |
static void | science_report_show_all_callback (GtkComboBox *combo, gpointer data) |
static void | science_report_goal_callback (GtkComboBox *combo, gpointer data) |
static void | science_report_init (struct science_report *preport) |
static void | science_report_free (struct science_report *preport) |
void | science_report_dialog_popup (bool raise) |
void | science_report_dialog_popdown (void) |
void | real_science_report_dialog_update (void *unused) |
void | science_report_dialog_redraw (void) |
static GtkListStore * | economy_report_store_new (void) |
static const char * | economy_report_column_name (enum economy_report_columns col) |
static void | economy_report_update (struct economy_report *preport) |
static void | economy_report_command_callback (struct gui_dialog *pdialog, int response, gpointer data) |
static void | economy_report_selection_callback (GtkTreeSelection *selection, gpointer data) |
static void | economy_report_init (struct economy_report *preport) |
static void | economy_report_free (struct economy_report *preport) |
void | economy_report_dialog_popup (bool raise) |
void | economy_report_dialog_popdown (void) |
void | real_economy_report_dialog_update (void *unused) |
static GtkListStore * | units_report_store_new (void) |
static void | units_report_update (struct units_report *preport) |
static void | units_report_selection_callback (GtkTreeSelection *selection, gpointer data) |
static struct unit * | find_nearest_unit (const struct unit_type *utype, struct tile *ptile) |
static void | units_report_command_callback (struct gui_dialog *pdialog, int response, gpointer data) |
static void | units_report_init (struct units_report *preport) |
static void | units_report_free (struct units_report *preport) |
void | units_report_dialog_popup (bool raise) |
void | units_report_dialog_popdown (void) |
void | real_units_report_dialog_update (void *unused) |
static const char * | endgame_report_column_name (enum endgame_report_columns col) |
static void | endgame_report_update (struct endgame_report *preport, const struct packet_endgame_report *packet) |
void | endgame_report_dialog_player (const struct packet_endgame_player *packet) |
static void | endgame_report_init (struct endgame_report *preport) |
void | endgame_report_dialog_start (const struct packet_endgame_report *packet) |
Variables | ||
static struct science_report | science_report = { NULL, } | |
static bool | science_report_no_combo_callback = FALSE | |
static struct economy_report | economy_report = { NULL, NULL, NULL } | |
static struct units_report | units_report = { NULL, NULL } | |
struct { | ||
GType type | ||
const char * title | ||
const char * tooltip | ||
bool rightalign | ||
int visible_col | ||
} | unit_report_columns [] | |
static struct endgame_report | endgame_report = { NULL, NULL } | |
Enumerator | |
---|---|
ERD_COL_SPRITE | |
ERD_COL_NAME | |
ERD_COL_REDUNDANT | |
ERD_COL_COUNT | |
ERD_COL_COST | |
ERD_COL_TOTAL_COST | |
ERD_COL_EMPTY | |
ERD_COL_IS_IMPROVEMENT | |
ERD_COL_CID | |
ERD_COL_NUM |
Definition at line 819 of file repodlgs.c.
Enumerator | |
---|---|
ERD_RES_SELL_REDUNDANT | |
ERD_RES_SELL_ALL | |
ERD_RES_DISBAND_UNITS |
Definition at line 811 of file repodlgs.c.
Enumerator | |
---|---|
FRD_COL_PLAYER | |
FRD_COL_NATION | |
FRD_COL_SCORE | |
FRD_COL_TOOLTIP | |
FRD_COL_NUM |
Definition at line 1835 of file repodlgs.c.
Enumerator | |
---|---|
SRD_COL_NAME | |
SRD_COL_STEPS | |
SRD_COL_ID | |
SRD_COL_NUM |
Definition at line 116 of file repodlgs.c.
enum units_report_columns |
Definition at line 1319 of file repodlgs.c.
Enumerator | |
---|---|
URD_RES_NEAREST | |
URD_RES_UPGRADE |
Definition at line 1313 of file repodlgs.c.
|
static |
Utility for g_list_sort.
Definition at line 403 of file repodlgs.c.
|
static |
Returns the title of the column (translated).
Definition at line 857 of file repodlgs.c.
|
static |
Issue a command on the economy report.
Definition at line 983 of file repodlgs.c.
void economy_report_dialog_popdown | ( | void | ) |
Close the economy report dialog.
Definition at line 1285 of file repodlgs.c.
void economy_report_dialog_popup | ( | bool | raise | ) |
Create the economy report if needed.
Definition at line 1270 of file repodlgs.c.
|
static |
Free an economy report.
Definition at line 1257 of file repodlgs.c.
|
static |
Create a new economy report.
Definition at line 1148 of file repodlgs.c.
|
static |
Called when a building or a unit type is selected in the economy list.
Definition at line 1099 of file repodlgs.c.
|
static |
Create a new economy report list store.
Definition at line 838 of file repodlgs.c.
|
static |
Update the economy report dialog.
Definition at line 889 of file repodlgs.c.
|
static |
Returns the title of the column (translated).
Definition at line 1850 of file repodlgs.c.
void endgame_report_dialog_player | ( | const struct packet_endgame_player * | packet | ) |
Handle endgame report information about one player.
Definition at line 1939 of file repodlgs.c.
void endgame_report_dialog_start | ( | const struct packet_endgame_report * | packet | ) |
Start building a dialog with player statistics at endgame.
Definition at line 2004 of file repodlgs.c.
|
static |
Prepare a final report.
Definition at line 1970 of file repodlgs.c.
|
static |
Fill a final report with statistics for each player.
Definition at line 1870 of file repodlgs.c.
|
static |
Returns the nearest unit of the type 'utype'.
Definition at line 1565 of file repodlgs.c.
void real_economy_report_dialog_update | ( | void * | unused | ) |
Update the economy report dialog.
Definition at line 1295 of file repodlgs.c.
void real_science_report_dialog_update | ( | void * | unused | ) |
Update the science report dialog.
Definition at line 782 of file repodlgs.c.
void real_units_report_dialog_update | ( | void * | unused | ) |
Update the units report dialog.
Definition at line 1816 of file repodlgs.c.
|
static |
Set the diagram parent to point to 'tech' location.
Definition at line 351 of file repodlgs.c.
|
static |
Recreate the req tree.
Definition at line 332 of file repodlgs.c.
|
static |
Change tech goal or research.
Definition at line 202 of file repodlgs.c.
Referenced by science_diagram_new().
|
static |
Return the drawing area widget of new technology diagram. Set in 'x' the position of the current tech to center to it.
Definition at line 305 of file repodlgs.c.
|
static |
Open tech help dialog.
Definition at line 238 of file repodlgs.c.
Referenced by science_diagram_new().
|
static |
Draw the invalidated portion of the reqtree.
Definition at line 267 of file repodlgs.c.
|
static |
Get the active tech of the combo.
Definition at line 158 of file repodlgs.c.
|
static |
Set the active tech of the combo.
Definition at line 180 of file repodlgs.c.
|
static |
Activated item in the reachable techs combo box.
Definition at line 554 of file repodlgs.c.
void science_report_dialog_popdown | ( | void | ) |
Closes the science report dialog.
Definition at line 771 of file repodlgs.c.
void science_report_dialog_popup | ( | bool | raise | ) |
Create the science report is needed.
Definition at line 747 of file repodlgs.c.
void science_report_dialog_redraw | ( | void | ) |
Resize and redraw the requirement tree.
Definition at line 792 of file repodlgs.c.
|
static |
Free a science report.
Definition at line 734 of file repodlgs.c.
|
static |
Activated item in the reachable goals combo box.
Definition at line 590 of file repodlgs.c.
|
static |
Initialize a science report.
Definition at line 614 of file repodlgs.c.
|
static |
Resize and redraw the requirement tree.
Definition at line 380 of file repodlgs.c.
|
static |
Show or hide unreachable techs.
Definition at line 579 of file repodlgs.c.
|
static |
Create a science report list store.
Definition at line 129 of file repodlgs.c.
|
inlinestatic |
Append a technology to the list store.
Definition at line 140 of file repodlgs.c.
|
static |
Update a science report dialog.
Definition at line 418 of file repodlgs.c.
|
static |
Gui dialog handler.
Definition at line 1597 of file repodlgs.c.
void units_report_dialog_popdown | ( | void | ) |
Closes the units report dialog.
Definition at line 1805 of file repodlgs.c.
void units_report_dialog_popup | ( | bool | raise | ) |
Create the units report if needed.
Definition at line 1790 of file repodlgs.c.
|
static |
Free an units report.
Definition at line 1777 of file repodlgs.c.
|
static |
Create a units report.
Definition at line 1679 of file repodlgs.c.
|
static |
GtkTreeSelection "changed" signal handler.
Definition at line 1527 of file repodlgs.c.
|
static |
Create a new units report list store.
Definition at line 1375 of file repodlgs.c.
|
static |
Update the units report.
Definition at line 1391 of file repodlgs.c.
|
static |
Definition at line 809 of file repodlgs.c.
|
static |
Definition at line 1844 of file repodlgs.c.
bool rightalign |
Definition at line 1343 of file repodlgs.c.
|
static |
Definition at line 112 of file repodlgs.c.
Definition at line 113 of file repodlgs.c.
const char* title |
Definition at line 1341 of file repodlgs.c.
const char* tooltip |
Definition at line 1342 of file repodlgs.c.
GType type |
Definition at line 1340 of file repodlgs.c.
const struct { ... } unit_report_columns[] |
|
static |
Definition at line 1311 of file repodlgs.c.
int visible_col |
Definition at line 1344 of file repodlgs.c.