Freeciv-3.3
Loading...
Searching...
No Matches
citydlg.c
Go to the documentation of this file.
1/***********************************************************************
2 Freeciv - Copyright (C) 1996 - A Kjeldberg, L Gregersen, P Unold
3 This program is free software; you can redistribute it and/or modify
4 it under the terms of the GNU General Public License as published by
5 the Free Software Foundation; either version 2, or (at your option)
6 any later version.
7
8 This program is distributed in the hope that it will be useful,
9 but WITHOUT ANY WARRANTY; without even the implied warranty of
10 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 GNU General Public License for more details.
12***********************************************************************/
13
14#ifdef HAVE_CONFIG_H
15#include <fc_config.h>
16#endif
17
18#include <stdio.h>
19#include <stdlib.h>
20#include <string.h>
21
22#include <gtk/gtk.h>
23#include <gdk/gdkkeysyms.h>
24
25/* utility */
26#include "bitvector.h"
27#include "fcintl.h"
28#include "log.h"
29#include "mem.h"
30#include "shared.h"
31#include "support.h"
32
33/* common */
34#include "city.h"
35#include "counters.h"
36#include "game.h"
37#include "map.h"
38#include "movement.h"
39#include "packets.h"
40#include "player.h"
41#include "unitlist.h"
42
43/* client */
44#include "chatline_common.h"
45#include "client_main.h"
46#include "colors.h"
47#include "control.h"
48#include "climap.h"
49#include "options.h"
50#include "text.h"
51#include "tilespec.h"
52
53/* client/agents */
54#include "cma_fec.h"
55
56/* client/gui-gtk-3.22 */
57#include "choice_dialog.h"
58#include "citizensinfo.h"
59#include "cityrep.h"
60#include "cma_fe.h"
61#include "dialogs.h"
62#include "graphics.h"
63#include "gui_main.h"
64#include "gui_stuff.h"
65#include "happiness.h"
66#include "helpdlg.h"
67#include "inputdlg.h"
68#include "mapview.h"
69#include "update_queue.h"
70#include "wldlg.h"
71
72#include "citydlg.h"
73
74#define CITYMAP_WIDTH MIN(512, canvas_width)
75#define CITYMAP_HEIGHT (CITYMAP_WIDTH * canvas_height / canvas_width)
76#define CITYMAP_SCALE ((double)CITYMAP_WIDTH / (double)canvas_width)
77
78#define TINYSCREEN_MAX_HEIGHT (500 - 1)
79
80/* Only CDLGR_UNITS button currently uses these, others have
81 * direct callback. */
83
84struct city_dialog;
85
86/* get 'struct dialog_list' and related function */
87#define SPECLIST_TAG dialog
88#define SPECLIST_TYPE struct city_dialog
89#include "speclist.h"
90
91#define dialog_list_iterate(dialoglist, pdialog) \
92 TYPED_LIST_ITERATE(struct city_dialog, dialoglist, pdialog)
93#define dialog_list_iterate_end LIST_ITERATE_END
94
100
101/* get 'struct unit_node' and related function */
102#define SPECVEC_TAG unit_node
103#define SPECVEC_TYPE struct unit_node
104#include "specvec.h"
105
106#define unit_node_vector_iterate(list, elt) \
107 TYPED_VECTOR_ITERATE(struct unit_node, list, elt)
108#define unit_node_vector_iterate_end VECTOR_ITERATE_END
109
110#define NUM_CITIZENS_SHOWN 30
111
114 NUM_PAGES /* the number of pages in city dialog notebook
115 * must match the entries in misc_whichtab_label[] */
117
118enum {
123 NUM_INFO_FIELDS /* number of fields in city_info panel
124 * must match entries in output_label[] */
126
127/* minimal size for the city map scrolling windows*/
128#define CITY_MAP_MIN_SIZE_X 200
129#define CITY_MAP_MIN_SIZE_Y 150
130
136
138 struct city *pcity;
139
144
148
149 struct {
151
156
159
162
163 struct unit_node_vector supported_units;
164 struct unit_node_vector present_units;
165
168
171
172 struct {
174 GtkWidget *production_bar;
175 GtkWidget *buy_command;
178
179 struct {
181
187
188 struct {
192
194
195 struct {
197 GtkWidget *new_citizens_radio[3];
199 GtkWidget *whichtab_radio[NUM_PAGES];
202
206
210
212
214};
215
221
223
224static struct
225{
226 struct city *owner;
227 struct tile *loc;
229
230static bool low_citydlg;
231
232/****************************************/
233
234static void initialize_city_dialogs(void);
235static void city_dialog_map_create(struct city_dialog *pdialog,
238
239static struct city_dialog *get_city_dialog(struct city *pcity);
241 struct city_dialog *pdialog);
242
243static GtkWidget *create_city_info_table(struct city_dialog *pdialog,
246static void create_and_append_overview_page(struct city_dialog *pdialog);
247static void create_and_append_map_page(struct city_dialog *pdialog);
248static void create_and_append_buildings_page(struct city_dialog *pdialog);
249static void create_and_append_worklist_page(struct city_dialog *pdialog);
250static void create_and_append_happiness_page(struct city_dialog *pdialog);
251static void create_and_append_cma_page(struct city_dialog *pdialog);
252static void create_and_append_settings_page(struct city_dialog *pdialog);
253
254static struct city_dialog *create_city_dialog(struct city *pcity);
255
256static void city_dialog_update_title(struct city_dialog *pdialog);
257static void city_dialog_update_citizens(struct city_dialog *pdialog);
258static void city_dialog_update_counters(struct city_dialog *pdialog);
261 struct city_dialog *pdialog);
262static void city_dialog_update_map(struct city_dialog *pdialog);
263static void city_dialog_update_building(struct city_dialog *pdialog);
265 *pdialog);
267 *pdialog);
268static void city_dialog_update_present_units(struct city_dialog *pdialog);
269static void city_dialog_update_prev_next(void);
270
271static void show_units_response(void *data);
272
274 gpointer data);
276 gpointer data);
279 gpointer data);
282 gpointer data);
283
284static void unit_center_callback(GtkWidget * w, gpointer data);
285static void unit_activate_callback(GtkWidget * w, gpointer data);
287 gpointer data);
289 gpointer data);
290static void unit_load_callback(GtkWidget * w, gpointer data);
291static void unit_unload_callback(GtkWidget * w, gpointer data);
292static void unit_sentry_callback(GtkWidget * w, gpointer data);
293static void unit_fortify_callback(GtkWidget * w, gpointer data);
294static void unit_disband_callback(GtkWidget * w, gpointer data);
295static void unit_homecity_callback(GtkWidget * w, gpointer data);
296static void unit_upgrade_callback(GtkWidget * w, gpointer data);
297
299 gpointer data);
301 gpointer data);
302static void draw_map_canvas(struct city_dialog *pdialog);
303
304static void buy_callback(GtkWidget * w, gpointer data);
305static void change_production_callback(GtkComboBox *combo,
306 struct city_dialog *pdialog);
307
308static void sell_callback(struct impr_type *pimprove, gpointer data);
309static void sell_callback_response(GtkWidget *w, gint response, gpointer data);
310
311static void impr_callback(GtkTreeView *view, GtkTreePath *path,
313
314static void rename_callback(GtkWidget * w, gpointer data);
315static void rename_popup_callback(gpointer data, gint response,
316 const char *input);
317static void set_cityopt_values(struct city_dialog *pdialog);
318static void cityopt_callback(GtkWidget * w, gpointer data);
319static void misc_whichtab_callback(GtkWidget * w, gpointer data);
320
321static void city_destroy_callback(GtkWidget *w, gpointer data);
322static void close_city_dialog(struct city_dialog *pdialog);
323static void citydlg_response_callback(GtkDialog *dlg, gint response,
324 void *data);
325static void close_callback(GtkWidget *w, gpointer data);
326static void switch_city_callback(GtkWidget *w, gpointer data);
327
328/**********************************************************************/
337
338/**********************************************************************/
341static void initialize_city_dialogs(void)
342{
343 int height;
344
346
350
351 /* Use default layout when height cannot be determined
352 * (when height == 0) */
353 if (height > 0 && height <= TINYSCREEN_MAX_HEIGHT) {
355 } else {
357 }
358
360}
361
362/**********************************************************************/
366{
368 return;
369 }
370
372
374 /* There's no reasonable way to resize a GtkImage, so we don't try.
375 Instead we just redraw the overview within the existing area. The
376 player has to close and reopen the dialog to fix this. */
377 city_dialog_update_map(pdialog);
379
381}
382
383/**********************************************************************/
387static struct city_dialog *get_city_dialog(struct city *pcity)
388{
391 }
392
394 if (pdialog->pcity == pcity)
395 return pdialog;
396 }
398 return NULL;
399}
400
401/**********************************************************************/
405 gpointer data)
406{
407 struct city_dialog *pdialog = data;
408
411 if (cma_is_city_under_agent(pdialog->pcity, NULL)) {
412 cairo_paint_with_alpha(cr, 0.5);
413 } else {
414 cairo_paint(cr);
415 }
416
417 return TRUE;
418}
419
420/**********************************************************************/
458
459/**********************************************************************/
483
484/**********************************************************************/
488{
489 struct city_dialog *pdialog = get_city_dialog(pcity);
490
491 log_debug("CITYMAP_WIDTH: %d", CITYMAP_WIDTH);
492 log_debug("CITYMAP_HEIGHT: %d", CITYMAP_HEIGHT);
493 log_debug("CITYMAP_SCALE: %.3f", CITYMAP_SCALE);
494
498 }
499
500 if (!pdialog) {
501 return;
502 }
503
507 pdialog->overview.info_label, pdialog);
508 city_dialog_update_map(pdialog);
514
517
519
520 if (!low_citydlg) {
522 pdialog->happiness.info_label, pdialog);
523 }
527 }
528
529 if (!client_is_observer()) {
531 }
532
536 } else {
537 /* Set the buttons we do not want live while a Diplomat investigates */
539 }
540}
541
542/**********************************************************************/
547{
548 struct city *pcity_sup, *pcity_pre;
549 struct city_dialog *pdialog;
550
553
554 if (pcity_sup && (pdialog = get_city_dialog(pcity_sup))) {
556 }
557
558 if (pcity_pre && (pdialog = get_city_dialog(pcity_pre))) {
560 }
561}
562
563/**********************************************************************/
567{
568 struct city_dialog *pdialog;
569
570 if (!(pdialog = get_city_dialog(pcity))) {
571 pdialog = create_city_dialog(pcity);
572 }
573
575
576 /* center the city map(s); this must be *after* the city dialog was drawn
577 * else the size information is missing! */
579 if (pdialog->happiness.map_canvas.sw) {
581 }
582}
583
584/**********************************************************************/
588{
589 return get_city_dialog(pcity) != NULL;
590}
591
592/**********************************************************************/
596{
597 struct city_dialog *pdialog = get_city_dialog(pcity);
598
599 if (pdialog) {
600 close_city_dialog(pdialog);
601 }
602}
603
604/**********************************************************************/
620
621/**********************************************************************/
625 struct city_dialog *pdialog)
626{
627 if (event->state & GDK_CONTROL_MASK) {
628 switch (event->keyval) {
629 case GDK_KEY_Left:
631 return TRUE;
632
633 case GDK_KEY_Right:
635 return TRUE;
636
637 default:
638 break;
639 }
640 }
641
642 return FALSE;
643}
644
645/**********************************************************************/
657
658/**********************************************************************/
662 gpointer data)
663{
664 struct city_dialog *pdialog = g_object_get_data(G_OBJECT(w), "pdialog");
665
666 if (ev->button == 1) {
667 GtkWidget *p, *label, *frame;
668 char buf[1024];
669
670 switch (GPOINTER_TO_UINT(data)) {
671 case INFO_SIZE:
672 fc_snprintf(buf, sizeof(buf), _("Population: %d, Specialists: %d"),
673 pdialog->pcity->size, city_specialists(pdialog->pcity));
674 break;
675 case INFO_FOOD:
676 get_city_dialog_output_text(pdialog->pcity, O_FOOD, buf, sizeof(buf));
677 break;
678 case INFO_SHIELD:
680 buf, sizeof(buf));
681 break;
682 case INFO_TRADE:
683 get_city_dialog_output_text(pdialog->pcity, O_TRADE, buf, sizeof(buf));
684 break;
685 case INFO_GOLD:
686 get_city_dialog_output_text(pdialog->pcity, O_GOLD, buf, sizeof(buf));
687 break;
688 case INFO_SCIENCE:
690 buf, sizeof(buf));
691 break;
692 case INFO_LUXURY:
694 buf, sizeof(buf));
695 break;
696 case INFO_CULTURE:
697 get_city_dialog_culture_text(pdialog->pcity, buf, sizeof(buf));
698 break;
699 case INFO_POLLUTION:
700 get_city_dialog_pollution_text(pdialog->pcity, buf, sizeof(buf));
701 break;
702 case INFO_ILLNESS:
703 get_city_dialog_illness_text(pdialog->pcity, buf, sizeof(buf));
704 break;
705 case INFO_AIRLIFT:
706 get_city_dialog_airlift_text(pdialog->pcity, buf, sizeof(buf));
707 break;
708 default:
709 return TRUE;
710 }
711
713 gtk_widget_set_name(p, "Freeciv");
717
718 frame = gtk_frame_new(NULL);
720
721 label = gtk_label_new(buf);
722 gtk_widget_set_name(label, "city_label");
727 gtk_container_add(GTK_CONTAINER(frame), label);
729
732 TRUE, NULL, (GdkEvent *)ev, NULL, NULL);
733 gtk_grab_add(p);
734
735 g_signal_connect_after(p, "button_release_event",
737 }
738 return TRUE;
739}
740
741/**********************************************************************/
748{
749 int i;
750 GtkWidget *table, *label, *ebox;
751
752 static const char *output_label[NUM_INFO_FIELDS] = {
753 N_("Size:"),
754 N_("Food:"),
755 N_("Prod:"),
756 N_("Trade:"),
757 N_("Gold:"),
758 N_("Luxury:"),
759 N_("Science:"),
760 N_("Granary:"),
761 N_("Change in:"),
762 N_("Corruption:"),
763 N_("Waste:"),
764 N_("Culture:"),
765 N_("Pollution:"),
766 N_("Plague risk:"),
767 N_("Tech Stolen:"),
768 N_("Airlift:"),
769 };
770 static bool output_label_done;
771
773 g_object_set(table, "margin", 4, NULL);
774
776
777 for (i = 0; i < NUM_INFO_FIELDS; i++) {
778 label = gtk_label_new(output_label[i]);
779 switch (i) {
780 case INFO_SIZE:
781 case INFO_TRADE:
782 case INFO_SCIENCE:
783 case INFO_GROWTH:
785 break;
786
787 case INFO_FOOD:
788 case INFO_GOLD:
789 case INFO_GRANARY:
790 case INFO_CORRUPTION:
792 break;
793 default:
794 break;
795 }
797 gtk_widget_set_name(label, "city_label"); /* for font style? */
800 gtk_grid_attach(GTK_GRID(table), label, 0, i, 1, 1);
801
802 ebox = gtk_event_box_new();
803 switch (i) {
804 case INFO_TRADE:
805 case INFO_SCIENCE:
806 case INFO_GROWTH:
808 break;
809
810 case INFO_GOLD:
811 case INFO_GRANARY:
812 case INFO_CORRUPTION:
814 break;
815 default:
816 break;
817 }
819 g_object_set_data(G_OBJECT(ebox), "pdialog", pdialog);
820 g_signal_connect(ebox, "button_press_event",
822 info_ebox[i] = ebox;
823
824 label = gtk_label_new("");
825 info_label[i] = label;
826 gtk_widget_set_name(label, "city_label"); /* ditto */
829
830 gtk_container_add(GTK_CONTAINER(ebox), label);
831
832 gtk_grid_attach(GTK_GRID(table), ebox, 1, i, 1, 1);
833 }
834
835 /*
836 * Allow special highlighting of emergencies for granary etc by
837 * city_dialog_update_information().
838 */
839 {
840 /* This will persist, and can be shared between overview and happiness
841 * pages. */
843
844 if (emergency_provider == NULL) {
846
848 ".emergency {\n"
849 " color: rgba(255, 0.0, 0.0, 255);\n"
850 "}",
851 -1, NULL);
852 }
853
854 /* GRANARY */
858 /* GROWTH */
862 /* POLLUTION */
866 /* ILLNESS */
870 }
871
873
874 return table;
875}
876
877/**********************************************************************/
880static void create_citydlg_main_map(struct city_dialog *pdialog,
882{
883 GtkWidget *frame;
884
885 frame = gtk_frame_new(_("City map"));
889
890 city_dialog_map_create(pdialog, &pdialog->overview.map_canvas);
892}
893
894/**********************************************************************/
898 GtkWidget *vbox)
899{
901 GtkListStore *store;
903
904 /* improvements */
905 /* gtk list store columns: 0 - sell value, 1 - sprite,
906 2 - description, 3 - upkeep, 4 - is redundant, 5 - tooltip */
910
914 g_object_unref(store);
916 gtk_widget_set_name(view, "small_font");
917 pdialog->overview.improvement_list = view;
918
921 rend, "pixbuf", 1, NULL);
924 rend, "text", 2,
925 "strikethrough", 4, NULL);
927 g_object_set(rend, "xalign", 1.0, NULL);
929 rend, "text", 3,
930 "strikethrough", 4, NULL);
931
933
935 pdialog);
936
937 return view;
938}
939
940/**********************************************************************/
957{
959 GtkWidget *hbox, *right, *vbox, *frame, *table;
960 GtkWidget *label, *sw, *view, *bar, *production_combo;
963 /* TRANS: Overview tab in city dialog */
964 const char *tab_title = _("_Overview");
966
967 /* main page */
968 page = gtk_grid_new();
974
975 if (!low_citydlg) {
976 GtkWidget *middle;
977
978 /* middle: city map, improvements */
979 middle = gtk_grid_new();
982
983 /* city map */
984 create_citydlg_main_map(pdialog, middle);
985
986 /* improvements */
987 vbox = gtk_grid_new();
990 gtk_container_add(GTK_CONTAINER(middle), vbox);
991
992 view = create_citydlg_improvement_list(pdialog, middle);
993
994 label = g_object_new(GTK_TYPE_LABEL, "label", _("Production:"),
995 "xalign", 0.0, "yalign", 0.5, NULL);
996 gtk_container_add(GTK_CONTAINER(vbox), label);
997
998 hbox = gtk_grid_new();
1001
1005
1014
1019 rend, "pixbuf", 0, NULL);
1020 g_object_set(rend, "xalign", 0.0, NULL);
1021
1025 rend, "text", 1, "strikethrough", 3, NULL);
1026
1027 bar = gtk_progress_bar_new();
1029 pdialog->overview.production_bar = bar;
1032
1033 gtk_progress_bar_set_text(GTK_PROGRESS_BAR(bar), _("%d/%d %d turns"));
1034
1035 pdialog->overview.buy_command
1036 = icon_label_button_new("system-run", _("_Buy"));
1038 g_signal_connect(pdialog->overview.buy_command, "clicked",
1039 G_CALLBACK(buy_callback), pdialog);
1040
1041 label = g_object_new(GTK_TYPE_LABEL, "use-underline", TRUE,
1042 "mnemonic-widget", view,
1043 "label", _("I_mprovements:"),
1044 "xalign", 0.0, "yalign", 0.5, NULL);
1045 gtk_container_add(GTK_CONTAINER(vbox), label);
1046
1053
1055 } else {
1056 pdialog->overview.buy_command = NULL;
1057 pdialog->overview.production_bar = NULL;
1058 pdialog->overview.production_combo = NULL;
1060 }
1061
1062 /* bottom: info, units */
1063 bottom = gtk_grid_new();
1066
1067 /* info */
1068 frame = gtk_frame_new(_("Info"));
1070
1071 table = create_city_info_table(pdialog,
1072 pdialog->overview.info_ebox,
1073 pdialog->overview.info_label);
1077
1078 /* right: present and supported units (overview page) */
1079 right = gtk_grid_new();
1083
1089 pdialog->overview.present_units_frame);
1090
1091 /* supported units */
1099 sw);
1100
1101
1102 table = gtk_grid_new();
1106
1111
1114
1115 /* present units */
1123
1124 table = gtk_grid_new();
1128
1133
1136
1137 /* show page */
1139}
1140
1141/**********************************************************************/
1144static void create_and_append_map_page(struct city_dialog *pdialog)
1145{
1146 if (low_citydlg) {
1147 GtkWidget *page;
1148 GtkWidget *label;
1149 const char *tab_title = _("Citymap");
1150
1151 page = gtk_grid_new();
1157
1158 create_citydlg_main_map(pdialog, page);
1159
1161 }
1162}
1163
1164/**********************************************************************/
1169 gint x, gint y,
1170 GtkSelectionData *data,
1171 guint info, guint time,
1172 gpointer user_data)
1173{
1174 struct city_dialog *pdialog = (struct city_dialog *) user_data;
1175 GtkTreeModel *model;
1176 GtkTreePath *path;
1177
1178 if (NULL != client.conn.playing
1179 && city_owner(pdialog->pcity) != client.conn.playing) {
1181 }
1182
1183 if (gtk_tree_get_row_drag_data(data, &model, &path)) {
1184 GtkTreeIter it;
1185
1186 if (gtk_tree_model_get_iter(model, &it, path)) {
1187 cid id;
1188 struct universal univ;
1189
1190 gtk_tree_model_get(model, &it, 0, &id, -1);
1191 univ = cid_production(id);
1192 city_change_production(pdialog->pcity, &univ);
1194 }
1195 gtk_tree_path_free(path);
1196 }
1197
1199}
1200
1201/**********************************************************************/
1206{
1207 GtkWidget *hbox, *bar;
1208
1209 hbox = gtk_grid_new();
1210 g_object_set(hbox, "margin", 2, NULL);
1213
1214 /* The label is set in city_dialog_update_building() */
1215 bar = gtk_progress_bar_new();
1218 pdialog->production.production_bar = bar;
1220 gtk_progress_bar_set_text(GTK_PROGRESS_BAR(bar), _("%d/%d %d turns"));
1221
1223
1224 g_signal_connect(bar, "drag_data_received",
1226
1227 pdialog->production.buy_command
1228 = icon_label_button_new("system-run", _("_Buy"));
1230
1231 g_signal_connect(pdialog->production.buy_command, "clicked",
1232 G_CALLBACK(buy_callback), pdialog);
1233}
1234
1235/**********************************************************************/
1239{
1240 if (low_citydlg) {
1241 GtkWidget *page;
1242 GtkWidget *label;
1243 GtkWidget *vbox;
1244 GtkWidget *view;
1245 const char *tab_title = _("Buildings");
1246
1247 page = gtk_grid_new();
1252
1254 gtk_notebook_append_page(GTK_NOTEBOOK(pdialog->notebook), page, label);
1255
1256 vbox = gtk_grid_new();
1259 gtk_container_add(GTK_CONTAINER(page), vbox);
1260
1261 view = create_citydlg_improvement_list(pdialog, vbox);
1262
1264
1265 gtk_widget_show_all(page);
1266 }
1267}
1268
1269/**********************************************************************/
1273{
1274 const char *tab_title = _("P_roduction");
1276 GtkWidget *page, *editor;
1277
1278 page = gtk_grid_new();
1282 gtk_notebook_append_page(GTK_NOTEBOOK(pdialog->notebook), page, label);
1283
1284 /* stuff that's being currently built */
1285 if (!low_citydlg) {
1287 "label", _("Production:"),
1288 "xalign", 0.0, "yalign", 0.5, NULL);
1289 pdialog->production.production_label = label;
1290 gtk_container_add(GTK_CONTAINER(page), label);
1291
1293 } else {
1294 pdialog->production.production_label = NULL;
1295 }
1296
1298 g_object_set(editor, "margin", 6, NULL);
1299 reset_city_worklist(editor, pdialog->pcity);
1301 pdialog->production.worklist = editor;
1302
1303 gtk_widget_show_all(page);
1304}
1305
1306/**********************************************************************/
1317{
1318 GtkWidget *page, *label, *table, *right, *left, *frame;
1319 const char *tab_title = _("Happ_iness");
1320
1321 /* main page */
1322 page = gtk_grid_new();
1326 gtk_notebook_append_page(GTK_NOTEBOOK(pdialog->notebook), page, label);
1327
1328 /* left: info, citizens */
1329 left = gtk_grid_new();
1332 gtk_container_add(GTK_CONTAINER(page), left);
1333
1334 if (!low_citydlg) {
1335 /* upper left: info */
1336 frame = gtk_frame_new(_("Info"));
1337 gtk_container_add(GTK_CONTAINER(left), frame);
1338
1339 table = create_city_info_table(pdialog,
1340 pdialog->happiness.info_ebox,
1341 pdialog->happiness.info_label);
1344 }
1345
1346 /* lower left: citizens */
1348 pdialog->happiness.citizens = gtk_grid_new();
1354 citizens_dialog_display(pdialog->pcity));
1355 }
1356
1357 /* right: city map, happiness */
1358 right = gtk_grid_new();
1361 gtk_container_add(GTK_CONTAINER(page), right);
1362
1363 if (!low_citydlg) {
1364 /* upper right: city map */
1365 frame = gtk_frame_new(_("City map"));
1368 gtk_container_add(GTK_CONTAINER(right), frame);
1369
1370 city_dialog_map_create(pdialog, &pdialog->happiness.map_canvas);
1372 }
1373
1374 /* lower right: happiness */
1375 pdialog->happiness.widget = gtk_grid_new();
1380 get_top_happiness_display(pdialog->pcity, low_citydlg, pdialog->shell));
1381
1382 /* show page */
1383 gtk_widget_show_all(page);
1384}
1385
1386/**********************************************************************/
1389/**********************************************************************/
1394{
1396 GtkLabel *label = GTK_LABEL(gtk_label_new(_("Counters")));
1397
1398 pdialog->counters.container = NULL;
1399 pdialog->counters.widget = NULL;
1400
1402
1404
1406
1407 gtk_widget_show_all(page);
1408}
1409
1410/**********************************************************************/
1413static void city_dialog_update_counters(struct city_dialog *pdialog)
1414{
1419 char int_val[101];
1420 char *text;
1421 int text_size;
1422
1423 if (NULL != pdialog->counters.widget) {
1425 }
1426
1427 if (NULL == pdialog->counters.container) {
1429 }
1430
1434
1438 counterValue = GTK_LABEL(gtk_label_new(_("Current value is: ")));
1440 fc_snprintf(int_val, sizeof(int_val), "%d", pdialog->pcity->counter_values[counter_index(pcount)]);
1444
1446 counterValue = GTK_LABEL(gtk_label_new(_("Activated once value equal or higher than: ")));
1448 fc_snprintf(int_val, sizeof(int_val), "%d", pcount->checkpoint);
1452
1453 text_size = 0;
1454 if (NULL != pcount->helptext) {
1455 strvec_iterate(pcount->helptext, text_) {
1458 }
1459 if (0 < text_size) {
1460 text = malloc(text_size+1);
1461 text_size = 0;
1462 strvec_iterate(pcount->helptext, text_) {
1463 strcpy(&text[text_size], text_);
1467 free(text);
1469 }
1472
1475}
1476
1477/**********************************************************************/
1480static void create_and_append_cma_page(struct city_dialog *pdialog)
1481{
1482 GtkWidget *page, *label;
1483 const char *tab_title = _("_Governor");
1484
1485 page = gtk_grid_new();
1486
1488
1489 gtk_notebook_append_page(GTK_NOTEBOOK(pdialog->notebook), page, label);
1490
1491 pdialog->cma_editor = create_cma_dialog(pdialog->pcity, low_citydlg);
1493
1494 gtk_widget_show(page);
1495}
1496
1497/**********************************************************************/
1501{
1502 int i;
1503 GtkWidget *vbox2, *page, *frame, *label, *button;
1505 GSList *group;
1506 const char *tab_title = _("_Settings");
1507
1508 static const char *new_citizens_output_label[] = {
1509 N_("Luxury"),
1510 N_("Science"),
1511 N_("Gold")
1512 };
1513
1514 static const char *disband_label
1515 = N_("Allow unit production to disband city");
1516
1517 static const char *misc_whichtab_label[NUM_PAGES] = {
1518 N_("Overview page"),
1519 N_("Production page"),
1520 N_("Happiness page"),
1521 N_("Governor page"),
1522 N_("This Settings page"),
1523 N_("Last active page")
1524 };
1525
1526 static bool new_citizens_label_done;
1527 static bool misc_whichtab_label_done;
1528
1529 /* initialize signal_blocker */
1530 pdialog->misc.block_signal = 0;
1531
1532
1533 page = gtk_grid_new();
1536
1538
1540
1541 gtk_notebook_append_page(GTK_NOTEBOOK(pdialog->notebook), page, label);
1542
1543 /* new_citizens radio */
1544 frame = gtk_frame_new(_("New citizens produce"));
1545 gtk_grid_attach(GTK_GRID(page), frame, 0, 0, 1, 1);
1547
1548 vbox2 = gtk_grid_new();
1552
1555
1556 group = NULL;
1557 for (i = 0; i < ARRAY_SIZE(new_citizens_output_label); i++) {
1559 pdialog->misc.new_citizens_radio[i] = button;
1561 g_signal_connect(button, "toggled",
1562 G_CALLBACK(cityopt_callback), pdialog);
1564 }
1565
1566 /* next is the next-time-open radio group in the right column */
1567 frame = gtk_frame_new(_("Next time open"));
1568 gtk_grid_attach(GTK_GRID(page), frame, 1, 0, 1, 1);
1570
1571 vbox2 = gtk_grid_new();
1575
1578
1579 group = NULL;
1580 for (i = 0; i < ARRAY_SIZE(misc_whichtab_label); i++) {
1582 pdialog->misc.whichtab_radio[i] = button;
1584 g_signal_connect(button, "toggled",
1587 }
1588
1589 /* now we go back and fill the hbox rename */
1590 frame = gtk_frame_new(_("City"));
1591 gtk_widget_set_margin_top(frame, 12);
1593 gtk_grid_attach(GTK_GRID(page), frame, 0, 1, 1, 1);
1594
1595 vbox2 = gtk_grid_new();
1599
1600 button = gtk_button_new_with_mnemonic(_("R_ename..."));
1601 pdialog->misc.rename_command = button;
1603 g_signal_connect(button, "clicked",
1604 G_CALLBACK(rename_callback), pdialog);
1605
1607
1608 /* the disband-city-on-unit-production button */
1610 pdialog->misc.disband_on_settler = button;
1612 g_signal_connect(button, "toggled",
1613 G_CALLBACK(cityopt_callback), pdialog);
1614
1615 /* we choose which page to popup by default */
1617 (pdialog->
1619 TRUE);
1620
1621 set_cityopt_values(pdialog);
1622
1623 gtk_widget_show_all(page);
1624
1625 if (new_dialog_def_page == (NUM_PAGES - 1)) {
1627 last_page);
1628 } else {
1631 }
1632}
1633
1634/**********************************************************************/
1643{
1644 struct city_dialog *pdialog;
1646 GtkWidget *vbox, *hbox, *cbox, *ebox;
1649 struct player *owner;
1650
1653 }
1654
1655 pdialog = fc_malloc(sizeof(struct city_dialog));
1656 pdialog->pcity = pcity;
1657 pdialog->sell_shell = NULL;
1658 pdialog->rename_shell = NULL;
1659 pdialog->happiness.map_canvas.sw = NULL; /* make sure NULL if spy */
1660 pdialog->happiness.map_canvas.ebox = NULL; /* ditto */
1661 pdialog->happiness.map_canvas.darea = NULL; /* ditto */
1662 pdialog->happiness.citizens = NULL; /* ditto */
1663 pdialog->production.buy_command = NULL;
1664 pdialog->production.production_label = NULL;
1665 pdialog->production.production_bar = NULL;
1666 pdialog->cma_editor = NULL;
1670
1671 pdialog->shell = gtk_dialog_new();
1673 setup_dialog(pdialog->shell, toplevel);
1674 gtk_window_set_role(GTK_WINDOW(pdialog->shell), "city");
1675
1676 g_signal_connect(pdialog->shell, "destroy",
1679 gtk_widget_set_name(pdialog->shell, "Freeciv");
1680
1681 gtk_widget_realize(pdialog->shell);
1682
1683 /* keep the icon of the executable on Windows (see PR#36491) */
1684#ifndef FREECIV_MSWINDOWS
1685 {
1687
1688 /* Only call this after tileset_load_tiles is called. */
1691 }
1692#endif /* FREECIV_MSWINDOWS */
1693
1694 /* Restore size of the city dialog. */
1698
1699 pdialog->popup_menu = gtk_menu_new();
1700
1702 hbox = gtk_grid_new();
1705
1706 /**** Citizens bar here ****/
1707 cbox = gtk_grid_new();
1709
1710 ebox = gtk_event_box_new();
1712 gtk_container_add(GTK_CONTAINER(cbox), ebox);
1713
1716
1720
1729 g_signal_connect(G_OBJECT(ebox), "button-press-event",
1730 G_CALLBACK(citizens_callback), pdialog);
1731
1732 /**** City name label here ****/
1733 pdialog->name_label = gtk_label_new(NULL);
1738
1739 /**** -Start of Notebook- ****/
1740
1741 pdialog->notebook = gtk_notebook_new();
1744 gtk_container_add(GTK_CONTAINER(vbox), pdialog->notebook);
1745
1749
1750 owner = city_owner(pcity);
1751
1752 /* Only create these tabs if not a spy */
1756 }
1757
1759
1760 if (owner == client_player()
1761 && !client_is_observer()) {
1764 } else {
1767 }
1768
1769 /**** End of Notebook ****/
1770
1771 /* bottom buttons */
1772
1773 pdialog->show_units_command =
1774 gtk_dialog_add_button(GTK_DIALOG(pdialog->shell), _("_List present units..."), CDLGR_UNITS);
1775
1776 g_signal_connect(GTK_DIALOG(pdialog->shell), "response",
1778
1779 pdialog->prev_command = gtk_button_new_from_icon_name("go-previous", 0);
1781 GTK_WIDGET(pdialog->prev_command), 1);
1782
1783 pdialog->next_command = gtk_button_new_from_icon_name("go-next", 0);
1785 GTK_WIDGET(pdialog->next_command), 2);
1786
1787 if (owner != client_player()) {
1790 }
1791
1793 _("_Close"), GTK_RESPONSE_CLOSE);
1794
1797
1799 G_CALLBACK(close_callback), pdialog);
1800
1801 g_signal_connect(pdialog->prev_command, "clicked",
1803
1804 g_signal_connect(pdialog->next_command, "clicked",
1806
1807 /* some other things we gotta do */
1808
1809 g_signal_connect(pdialog->shell, "key_press_event",
1810 G_CALLBACK(keyboard_handler), pdialog);
1811
1813
1815
1816 /* need to do this every time a new dialog is opened. */
1818
1819 gtk_widget_show_all(pdialog->shell);
1820
1822
1823 return pdialog;
1824}
1825
1826/**************** Functions to update parts of the dialog ****************/
1827/**********************************************************************/
1830static void city_dialog_update_title(struct city_dialog *pdialog)
1831{
1832 gchar *buf;
1833 const gchar *now;
1834
1835 if (city_unhappy(pdialog->pcity)) {
1836 /* TRANS: city dialog title */
1837 buf = g_strdup_printf(_("<b>%s</b> - %s citizens - DISORDER"),
1838 city_name_get(pdialog->pcity),
1840 } else if (city_celebrating(pdialog->pcity)) {
1841 /* TRANS: city dialog title */
1842 buf = g_strdup_printf(_("<b>%s</b> - %s citizens - celebrating"),
1843 city_name_get(pdialog->pcity),
1845 } else if (city_happy(pdialog->pcity)) {
1846 /* TRANS: city dialog title */
1847 buf = g_strdup_printf(_("<b>%s</b> - %s citizens - happy"),
1848 city_name_get(pdialog->pcity),
1850 } else {
1851 /* TRANS: city dialog title */
1852 buf = g_strdup_printf(_("<b>%s</b> - %s citizens"),
1853 city_name_get(pdialog->pcity),
1855 }
1856
1858 if (strcmp(now, buf) != 0) {
1861 }
1862
1863 g_free(buf);
1864}
1865
1866/**********************************************************************/
1869static void city_dialog_update_citizens(struct city_dialog *pdialog)
1870{
1871 enum citizen_category categories[MAX_CITY_SIZE];
1874 struct city *pcity = pdialog->pcity;
1875 int num_citizens = get_city_citizen_types(pcity, FEELING_FINAL, categories);
1876 cairo_t *cr;
1877
1878 /* If there is not enough space we stack the icons. We draw from left to */
1879 /* right. width is how far we go to the right for each drawn pixmap. The */
1880 /* last icon is always drawn in full, and so has reserved */
1881 /* tileset_small_sprite_width(tileset) pixels. */
1882
1884 if (num_citizens > 1) {
1886 / (num_citizens - 1));
1887 } else {
1888 width = full_width;
1889 }
1890 pdialog->cwidth = width;
1891
1892 /* overview page */
1893 /* keep these values in sync with create_city_dialog */
1896
1897 cr = cairo_create(pdialog->citizen_surface);
1898
1899 for (i = 0; i < num_citizens; i++) {
1901 get_citizen_sprite(tileset, categories[i], i, pcity)->surface,
1902 i * width, 0);
1903 cairo_rectangle(cr, i * width, 0,
1904 /* Always draw last citizen in full */
1905 i + 1 < num_citizens ? width : full_width,
1907 cairo_fill(cr);
1908 }
1909
1910 total_used_width = (i - 1) * width + full_width;
1911
1913 /* Clear the rest of the area.
1914 * Note that this might still be necessary even in cases where
1915 * num_citizens > NUM_CITIZENS_SHOWN, if the available width cannot be
1916 * divided perfectly. */
1921 cairo_fill(cr);
1922 }
1923
1924 cairo_destroy(cr);
1925
1927}
1928
1929/**********************************************************************/
1934 struct city_dialog *pdialog)
1935{
1936 int i, illness = 0;
1937 char buf[NUM_INFO_FIELDS][512];
1938 struct city *pcity = pdialog->pcity;
1939 int granaryturns;
1940 int non_workers = city_specialists(pcity);
1941
1942 /* fill the buffers with the necessary info */
1943 if (non_workers) {
1944 fc_snprintf(buf[INFO_SIZE], sizeof(buf[INFO_SIZE]), "%3d (%3d)",
1945 pcity->size, non_workers);
1946 } else {
1947 fc_snprintf(buf[INFO_SIZE], sizeof(buf[INFO_SIZE]), "%3d", pcity->size);
1948 }
1949 fc_snprintf(buf[INFO_FOOD], sizeof(buf[INFO_FOOD]), "%3d (%+4d)",
1950 pcity->prod[O_FOOD], pcity->surplus[O_FOOD]);
1951 fc_snprintf(buf[INFO_SHIELD], sizeof(buf[INFO_SHIELD]), "%3d (%+4d)",
1952 pcity->prod[O_SHIELD] + pcity->waste[O_SHIELD],
1953 pcity->surplus[O_SHIELD]);
1954 fc_snprintf(buf[INFO_TRADE], sizeof(buf[INFO_TRADE]), "%3d (%+4d)",
1955 pcity->surplus[O_TRADE] + pcity->waste[O_TRADE],
1956 pcity->surplus[O_TRADE]);
1957 fc_snprintf(buf[INFO_GOLD], sizeof(buf[INFO_GOLD]), "%3d (%+4d)",
1958 pcity->prod[O_GOLD], pcity->surplus[O_GOLD]);
1959 fc_snprintf(buf[INFO_LUXURY], sizeof(buf[INFO_LUXURY]), "%3d",
1960 pcity->prod[O_LUXURY]);
1961 fc_snprintf(buf[INFO_SCIENCE], sizeof(buf[INFO_SCIENCE]), "%3d",
1962 pcity->prod[O_SCIENCE]);
1963 fc_snprintf(buf[INFO_GRANARY], sizeof(buf[INFO_GRANARY]), "%4d/%-4d",
1965
1967 if (granaryturns == 0) {
1968 /* TRANS: city growth is blocked. Keep short. */
1969 fc_snprintf(buf[INFO_GROWTH], sizeof(buf[INFO_GROWTH]), _("blocked"));
1970 } else if (granaryturns == FC_INFINITY) {
1971 /* TRANS: city is not growing. Keep short. */
1972 fc_snprintf(buf[INFO_GROWTH], sizeof(buf[INFO_GROWTH]), _("never"));
1973 } else {
1974 /* A negative value means we'll have famine in that many turns.
1975 But that's handled down below. */
1976 /* TRANS: city growth turns. Keep short. */
1978 PL_("%d turn", "%d turns", abs(granaryturns)),
1979 abs(granaryturns));
1980 }
1982 pcity->waste[O_TRADE]);
1983 fc_snprintf(buf[INFO_WASTE], sizeof(buf[INFO_WASTE]), "%4d",
1984 pcity->waste[O_SHIELD]);
1985 fc_snprintf(buf[INFO_CULTURE], sizeof(buf[INFO_CULTURE]), "%4d",
1986 pcity->client.culture);
1988 pcity->pollution);
1989 if (!game.info.illness_on) {
1990 fc_snprintf(buf[INFO_ILLNESS], sizeof(buf[INFO_ILLNESS]), " -.-");
1991 } else {
1993 /* illness is in tenth of percent */
1994 fc_snprintf(buf[INFO_ILLNESS], sizeof(buf[INFO_ILLNESS]), "%5.1f%%",
1995 (float)illness / 10.0);
1996 }
1997 if (pcity->steal) {
1998 fc_snprintf(buf[INFO_STEAL], sizeof(buf[INFO_STEAL]), PL_("%d time", "%d times", pcity->steal),
1999 pcity->steal);
2000 } else {
2001 fc_snprintf(buf[INFO_STEAL], sizeof(buf[INFO_STEAL]), _("Not stolen"));
2002 }
2003
2005
2006 /* stick 'em in the labels */
2007 for (i = 0; i < NUM_INFO_FIELDS; i++) {
2009 }
2010
2011 /*
2012 * Make use of the emergency-indicating styles set up for certain labels
2013 * in create_city_info_table().
2014 */
2015 /* For starvation, the "4" below is arbitrary. 3 turns should be enough
2016 * of a warning. */
2017 if (granaryturns > -4 && granaryturns < 0) {
2019 } else {
2021 }
2022
2023 if (granaryturns == 0 || pcity->surplus[O_FOOD] < 0) {
2025 } else {
2027 }
2028
2029 /* someone could add the color &orange for better granularity here */
2030 if (pcity->pollution >= 10) {
2032 } else {
2034 }
2035
2036 /* illness is in tenth of percent, i.e 100 == 10.0% */
2037 if (illness >= 100) {
2039 } else {
2041 }
2042}
2043
2044/**********************************************************************/
2047static void city_dialog_update_map(struct city_dialog *pdialog)
2048{
2049 struct canvas store = FC_STATIC_CANVAS_INIT;
2050
2051 store.surface = pdialog->map_canvas_store_unscaled;
2052
2053 /* The drawing is done in three steps.
2054 * 1. First we render to a pixmap with the appropriate canvas size.
2055 * 2. Then the pixmap is rendered into a pixbuf of equal size.
2056 * 3. Finally this pixbuf is composited and scaled onto the GtkImage's
2057 * target pixbuf.
2058 */
2059
2060 city_dialog_redraw_map(pdialog->pcity, &store);
2061
2062 /* draw to real window */
2063 draw_map_canvas(pdialog);
2064}
2065
2066/**********************************************************************/
2069static void city_dialog_update_building(struct city_dialog *pdialog)
2070{
2071 char buf[32], buf2[200];
2072 gdouble pct;
2073
2074 GtkListStore* store;
2076 struct universal targets[MAX_NUM_PRODUCTION_TARGETS];
2077 struct item items[MAX_NUM_PRODUCTION_TARGETS];
2078 int targets_used, item;
2079 struct city *pcity = pdialog->pcity;
2081 const char *descr = city_production_name_translation(pcity);
2083
2084 if (pdialog->overview.buy_command != NULL) {
2086 }
2087 if (pdialog->production.buy_command != NULL) {
2089 }
2090
2091 /* Make sure build slots info is up to date */
2092 if (pdialog->production.production_label != NULL) {
2093 int build_slots = city_build_slots(pcity);
2094
2095 /* Only display extra info if more than one slot is available */
2096 if (build_slots > 1) {
2097 fc_snprintf(buf2, sizeof(buf2),
2098 /* TRANS: never actually used with built_slots <= 1 */
2099 PL_("Production (up to %d unit per turn):",
2100 "Production (up to %d units per turn):", build_slots),
2101 build_slots);
2104 } else {
2106 GTK_LABEL(pdialog->production.production_label), _("Production:"));
2107 }
2108 }
2109
2110 /* Update what the city is working on */
2111 get_city_dialog_production(pcity, buf, sizeof(buf));
2112
2113 if (cost > 0) {
2114 pct = (gdouble) pcity->shield_stock / (gdouble) cost;
2115 pct = CLAMP(pct, 0.0, 1.0);
2116 } else {
2117 pct = 1.0;
2118 }
2119
2120 if (pdialog->overview.production_bar != NULL) {
2121 fc_snprintf(buf2, sizeof(buf2), "%s%s\n%s", descr,
2122 worklist_is_empty(&pcity->worklist) ? "" : " (+)", buf);
2127 }
2128
2129 if (pdialog->production.production_bar != NULL) {
2130 fc_snprintf(buf2, sizeof(buf2), "%s%s: %s", descr,
2131 worklist_is_empty(&pcity->worklist) ? "" : " (+)", buf);
2136 }
2137
2138 if (pdialog->overview.production_combo != NULL) {
2140 -1);
2141 }
2142
2143 store = pdialog->overview.change_production_store;
2144 if (store != NULL) {
2146
2148 = collect_eventually_buildable_targets(targets, pdialog->pcity, FALSE);
2149 name_and_sort_items(targets, targets_used, items, FALSE, pcity);
2150
2151 for (item = 0; item < targets_used; item++) {
2152 if (can_city_build_now(pcity, &items[item].item)) {
2153 const char *name;
2154 struct sprite* sprite;
2155 GdkPixbuf *pix;
2156 struct universal target = items[item].item;
2157 bool useless;
2158
2159 if (VUT_UTYPE == target.kind) {
2164 useless = FALSE;
2165 } else {
2169 }
2171 gtk_list_store_append(store, &iter);
2172 gtk_list_store_set(store, &iter, 0, pix,
2173 1, name, 3, useless,
2174 2, (gint)cid_encode(items[item].item), -1);
2176 }
2177 }
2178 }
2179
2180 /* work around GTK+ refresh bug. */
2181 if (pdialog->overview.production_bar != NULL) {
2183 }
2184 if (pdialog->production.production_bar != NULL) {
2186 }
2187}
2188
2189/**********************************************************************/
2193{
2194 int item, targets_used;
2195 struct universal targets[MAX_NUM_PRODUCTION_TARGETS];
2196 struct item items[MAX_NUM_PRODUCTION_TARGETS];
2197 GtkTreeModel *model;
2198 GtkListStore *store;
2199
2200 const char *tooltip_sellable = _("Press <b>ENTER</b> or double-click to "
2201 "sell an improvement.");
2202 const char *tooltip_great_wonder = _("Great Wonder - cannot be sold.");
2203 const char *tooltip_small_wonder = _("Small Wonder - cannot be sold.");
2204
2205 model =
2207 store = GTK_LIST_STORE(model);
2208
2210 name_and_sort_items(targets, targets_used, items, FALSE, pdialog->pcity);
2211
2212 gtk_list_store_clear(store);
2213
2214 for (item = 0; item < targets_used; item++) {
2215 GdkPixbuf *pix;
2216 GtkTreeIter it;
2217 int upkeep;
2218 struct sprite *sprite;
2219 struct universal target = items[item].item;
2220
2221 fc_assert_action(VUT_IMPROVEMENT == target.kind, continue);
2222 /* This takes effects (like Adam Smith's) into account. */
2223 upkeep = city_improvement_upkeep(pdialog->pcity, target.value.building);
2225
2227 gtk_list_store_append(store, &it);
2228 gtk_list_store_set(store, &it,
2229 0, target.value.building,
2230 1, pix,
2231 2, items[item].descr,
2232 3, upkeep,
2233 4,
2235 target.value.building),
2236 5,
2239 (is_small_wonder(target.value.building) ?
2241 -1);
2243 }
2244}
2245
2246/**********************************************************************/
2250{
2251 struct unit_list *units;
2252 struct unit_node_vector *nodes;
2253 int n, m, i;
2254 gchar *buf;
2256
2257 if (NULL != client.conn.playing
2258 && city_owner(pdialog->pcity) != client.conn.playing) {
2259 units = pdialog->pcity->client.info_units_supported;
2260 } else {
2261 units = pdialog->pcity->units_supported;
2262 }
2263
2264 nodes = &pdialog->overview.supported_units;
2265
2266 n = unit_list_size(units);
2267 m = unit_node_vector_size(nodes);
2268
2269 if (m > n) {
2270 i = 0;
2272 if (i++ >= n) {
2273 gtk_widget_destroy(elt->cmd);
2274 }
2276
2278 } else {
2279 for (i = m; i < n; i++) {
2280 GtkWidget *cmd, *pix;
2281 struct unit_node node;
2282
2283 cmd = gtk_button_new();
2284 node.cmd = cmd;
2285
2289
2290 pix = gtk_image_new();
2291 node.pix = pix;
2293
2295
2297 cmd, i, 0, 1, 1);
2298 unit_node_vector_append(nodes, node);
2299 }
2300 }
2301
2302 i = 0;
2303 unit_list_iterate(units, punit) {
2304 struct unit_node *pnode;
2305 int happy_cost = city_unit_unhappiness(punit, &free_unhappy);
2306
2307 pnode = unit_node_vector_get(nodes, i);
2308 if (pnode) {
2309 GtkWidget *cmd, *pix;
2310
2311 cmd = pnode->cmd;
2312 pix = pnode->pix;
2313
2315 punit->upkeep, happy_cost);
2316
2320
2324
2326
2327 g_signal_connect(cmd, "button_press_event",
2330
2331 g_signal_connect(cmd, "button_release_event",
2334
2335 if (city_owner(pdialog->pcity) != client.conn.playing) {
2337 } else {
2339 }
2340
2343 }
2344 i++;
2346
2347 buf = g_strdup_printf(_("Supported units %d"), n);
2349 g_free(buf);
2350}
2351
2352/**********************************************************************/
2356{
2357 struct unit_list *units;
2358 struct unit_node_vector *nodes;
2359 int n, m, i;
2360 gchar *buf;
2361
2362 if (NULL != client.conn.playing
2363 && city_owner(pdialog->pcity) != client.conn.playing) {
2364 units = pdialog->pcity->client.info_units_present;
2365 } else {
2366 units = pdialog->pcity->tile->units;
2367 }
2368
2369 nodes = &pdialog->overview.present_units;
2370
2371 n = unit_list_size(units);
2372 m = unit_node_vector_size(nodes);
2373
2374 if (m > n) {
2375 i = 0;
2377 if (i++ >= n) {
2378 gtk_widget_destroy(elt->cmd);
2379 }
2381
2383 } else {
2384 for (i = m; i < n; i++) {
2385 GtkWidget *cmd, *pix;
2386 struct unit_node node;
2387
2388 cmd = gtk_button_new();
2389 node.cmd = cmd;
2390
2394
2395 pix = gtk_image_new();
2396 node.pix = pix;
2398
2400
2402 cmd, i, 0, 1, 1);
2403 unit_node_vector_append(nodes, node);
2404 }
2405 }
2406
2407 i = 0;
2408 unit_list_iterate(units, punit) {
2409 struct unit_node *pnode;
2410
2411 pnode = unit_node_vector_get(nodes, i);
2412 if (pnode) {
2413 GtkWidget *cmd, *pix;
2414
2415 cmd = pnode->cmd;
2416 pix = pnode->pix;
2417
2419
2423
2427
2429
2430 g_signal_connect(cmd, "button_press_event",
2433
2434 g_signal_connect(cmd, "button_release_event",
2437
2438 if (city_owner(pdialog->pcity) != client.conn.playing) {
2440 } else {
2442 }
2443
2446 }
2447 i++;
2449
2450 buf = g_strdup_printf(_("Present units %d"), n);
2452 g_free(buf);
2453}
2454
2455/**********************************************************************/
2463{
2464 int count = 0;
2465 int city_number;
2466
2467 if (NULL != client.conn.playing) {
2469 } else {
2470 city_number = FC_INFINITY; /* ? */
2471 }
2472
2473 /* the first time, we see if all the city dialogs are open */
2474
2476 if (city_owner(pdialog->pcity) == client.conn.playing)
2477 count++;
2478 }
2480
2481 if (count == city_number) { /* all are open, shouldn't prev/next */
2483 gtk_widget_set_sensitive(GTK_WIDGET(pdialog->prev_command), FALSE);
2484 gtk_widget_set_sensitive(GTK_WIDGET(pdialog->next_command), FALSE);
2485 }
2487 } else {
2489 if (city_owner(pdialog->pcity) == client.conn.playing) {
2490 gtk_widget_set_sensitive(GTK_WIDGET(pdialog->prev_command), TRUE);
2491 gtk_widget_set_sensitive(GTK_WIDGET(pdialog->next_command), TRUE);
2492 }
2493 }
2495 }
2496}
2497
2498/**********************************************************************/
2501static void citydlg_response_callback(GtkDialog *dlg, gint response,
2502 void *data)
2503{
2504 switch (response) {
2505 case CDLGR_UNITS:
2506 show_units_response(data);
2507 break;
2508 }
2509}
2510
2511/**********************************************************************/
2514static void show_units_response(void *data)
2515{
2516 struct city_dialog *pdialog = (struct city_dialog *) data;
2517 struct tile *ptile = pdialog->pcity->tile;
2518
2519 if (unit_list_size(ptile->units)) {
2521 }
2522}
2523
2524/**********************************************************************/
2527static void destroy_func(GtkWidget *w, gpointer data)
2528{
2530}
2531
2532/**********************************************************************/
2536 gpointer data)
2537{
2538 GtkWidget *menu, *item;
2539 struct city_dialog *pdialog;
2540 struct city *pcity;
2541 struct unit *punit =
2542 player_unit_by_number(client_player(), (size_t) data);
2543
2544 if (NULL != punit
2545 && NULL != (pcity = game_city_by_number(punit->homecity))
2546 && NULL != (pdialog = get_city_dialog(pcity))) {
2547
2548 if (ev->type != GDK_BUTTON_PRESS || ev->button == 2 || ev->button == 3
2550 return FALSE;
2551 }
2552
2553 menu = pdialog->popup_menu;
2554
2557
2559 g_signal_connect(item, "activate",
2563
2564 item = gtk_menu_item_new_with_mnemonic(_("_Activate unit"));
2565 g_signal_connect(item, "activate",
2569
2570 item = gtk_menu_item_new_with_mnemonic(_("Activate unit, _close dialog"));
2571 g_signal_connect(item, "activate",
2575
2576 item = gtk_menu_item_new_with_mnemonic(_("_Disband unit"));
2577 g_signal_connect(item, "activate",
2581
2584 }
2585
2586 gtk_widget_show_all(menu);
2587
2589 }
2590
2591 return TRUE;
2592}
2593
2594/**********************************************************************/
2598 gpointer data)
2599{
2600 GtkWidget *menu, *item;
2601 struct city_dialog *pdialog;
2602 struct city *pcity;
2603 struct unit *punit =
2604 player_unit_by_number(client_player(), (size_t) data);
2605
2606 if (NULL != punit
2607 && NULL != (pcity = tile_city(unit_tile(punit)))
2608 && NULL != (pdialog = get_city_dialog(pcity))) {
2609
2610 if (ev->type != GDK_BUTTON_PRESS || ev->button == 2 || ev->button == 3
2612 return FALSE;
2613 }
2614
2615 menu = pdialog->popup_menu;
2616
2619
2620 item = gtk_menu_item_new_with_mnemonic(_("_Activate unit"));
2621 g_signal_connect(item, "activate",
2625
2626 item = gtk_menu_item_new_with_mnemonic(_("Activate unit, _close dialog"));
2627 g_signal_connect(item, "activate",
2631
2632 item = gtk_menu_item_new_with_mnemonic(_("_Load unit"));
2633 g_signal_connect(item, "activate",
2637
2638 if (!unit_can_load(punit)) {
2640 }
2641
2642 item = gtk_menu_item_new_with_mnemonic(_("_Unload unit"));
2643 g_signal_connect(item, "activate",
2647
2651 }
2652
2653 item = gtk_menu_item_new_with_mnemonic(_("_Sentry unit"));
2654 g_signal_connect(item, "activate",
2658
2662 }
2663
2664 item = gtk_menu_item_new_with_mnemonic(_("_Fortify unit"));
2665 g_signal_connect(item, "activate",
2669
2673 }
2674
2675 item = gtk_menu_item_new_with_mnemonic(_("_Disband unit"));
2676 g_signal_connect(item, "activate",
2680
2683 }
2684
2687 g_signal_connect(item, "activate",
2692
2693 item = gtk_menu_item_new_with_mnemonic(_("U_pgrade unit"));
2695 g_signal_connect(item, "activate",
2699
2702 unit_type_get(punit))) {
2704 }
2705
2706 gtk_widget_show_all(menu);
2707
2709 }
2710
2711 return TRUE;
2712}
2713
2714/**********************************************************************/
2719 gpointer data)
2720{
2721 struct city_dialog *pdialog;
2722 struct city *pcity;
2723 struct unit *punit =
2724 player_unit_by_number(client_player(), (size_t) data);
2725
2726 if (NULL != punit
2727 && NULL != (pcity = tile_city(unit_tile(punit)))
2728 && NULL != (pdialog = get_city_dialog(pcity))
2730
2731 if (ev->button == 3) {
2733 } else if (ev->button == 2) {
2735 close_city_dialog(pdialog);
2736 }
2737 }
2738
2739 return TRUE;
2740}
2741
2742/**********************************************************************/
2747 gpointer data)
2748{
2749 struct city_dialog *pdialog;
2750 struct city *pcity;
2751 struct unit *punit =
2752 player_unit_by_number(client_player(), (size_t) data);
2753
2754 if (NULL != punit
2755 && NULL != (pcity = game_city_by_number(punit->homecity))
2756 && NULL != (pdialog = get_city_dialog(pcity))
2758
2759 if (ev->button == 3) {
2761 } else if (ev->button == 2) {
2763 close_city_dialog(pdialog);
2764 }
2765 }
2766
2767 return TRUE;
2768}
2769
2770/**********************************************************************/
2774{
2775 struct unit *punit =
2776 player_unit_by_number(client_player(), (size_t)data);
2777
2778 if (NULL != punit) {
2780 }
2781}
2782
2783/**********************************************************************/
2787{
2788 struct unit *punit =
2789 player_unit_by_number(client_player(), (size_t)data);
2790
2791 if (NULL != punit) {
2793 }
2794}
2795
2796/**********************************************************************/
2801 gpointer data)
2802{
2803 struct unit *punit =
2804 player_unit_by_number(client_player(), (size_t)data);
2805
2806 if (NULL != punit) {
2807 struct city *pcity =
2809
2811 if (NULL != pcity) {
2812 struct city_dialog *pdialog = get_city_dialog(pcity);
2813
2814 if (NULL != pdialog) {
2815 close_city_dialog(pdialog);
2816 }
2817 }
2818 }
2819}
2820
2821/**********************************************************************/
2826 gpointer data)
2827{
2828 struct unit *punit =
2829 player_unit_by_number(client_player(), (size_t)data);
2830
2831 if (NULL != punit) {
2832 struct city *pcity = tile_city(unit_tile(punit));
2833
2835 if (NULL != pcity) {
2836 struct city_dialog *pdialog = get_city_dialog(pcity);
2837
2838 if (NULL != pdialog) {
2839 close_city_dialog(pdialog);
2840 }
2841 }
2842 }
2843}
2844
2845/**********************************************************************/
2849{
2850 struct unit *punit =
2851 player_unit_by_number(client_player(), (size_t)data);
2852
2853 if (NULL != punit) {
2855 }
2856}
2857
2858/**********************************************************************/
2862{
2863 struct unit *punit =
2864 player_unit_by_number(client_player(), (size_t)data);
2865
2866 if (NULL != punit) {
2868 }
2869}
2870
2871/**********************************************************************/
2875{
2876 struct unit *punit =
2877 player_unit_by_number(client_player(), (size_t)data);
2878
2879 if (NULL != punit) {
2881 }
2882}
2883
2884/**********************************************************************/
2888{
2889 struct unit *punit =
2890 player_unit_by_number(client_player(), (size_t)data);
2891
2892 if (NULL != punit) {
2894 }
2895}
2896
2897/**********************************************************************/
2901{
2902 struct unit_list *punits;
2903 struct unit *punit =
2904 player_unit_by_number(client_player(), (size_t)data);
2905
2906 if (NULL == punit) {
2907 return;
2908 }
2909
2914}
2915
2916/**********************************************************************/
2921{
2922 struct unit *punit =
2923 player_unit_by_number(client_player(), (size_t)data);
2924
2925 if (NULL != punit) {
2927 }
2928}
2929
2930/**********************************************************************/
2934{
2935 struct unit_list *punits;
2936 struct unit *punit =
2937 player_unit_by_number(client_player(), (size_t)data);
2938
2939 if (NULL == punit) {
2940 return;
2941 }
2942
2947}
2948
2949/******** Callbacks for citizen bar, map funcs that are not update *******/
2950/**********************************************************************/
2955 gpointer data)
2956{
2957 struct city_dialog *pdialog = data;
2958 struct city *pcity = pdialog->pcity;
2959 int citnum, tlen, len;
2960
2961 if (!can_client_issue_orders()) {
2962 return FALSE;
2963 }
2964
2966 len = (city_size_get(pcity) - 1) * pdialog->cwidth + tlen;
2967 if (ev->x > len) {
2968 /* no citizen that far to the right */
2969 return FALSE;
2970 }
2971 citnum = MIN(city_size_get(pcity) - 1, ev->x / pdialog->cwidth);
2972
2974
2975 return TRUE;
2976}
2977
2978/**********************************************************************/
2982{
2983 enum unit_activity act = (enum unit_activity)GPOINTER_TO_INT(data);
2984 struct city *pcity = workertask_req.owner;
2985 struct tile *ptile = workertask_req.loc;
2986 struct packet_worker_task task;
2987
2988 task.city_id = pcity->id;
2989
2990 if (act == ACTIVITY_LAST) {
2991 task.tgt = -1;
2992 task.want = 0;
2993 } else {
2994 enum extra_cause cause = activity_to_extra_cause(act);
2996 struct extra_type *tgt;
2997
2998 if (cause != EC_NONE) {
2999 tgt = next_extra_for_tile(ptile, cause, city_owner(pcity), NULL);
3000 } else if (rmcause != ERM_NONE) {
3001 tgt = prev_extra_in_tile(ptile, rmcause, city_owner(pcity), NULL);
3002 } else {
3003 tgt = NULL;
3004 }
3005
3006 if (tgt == NULL) {
3007 struct terrain *pterr = tile_terrain(ptile);
3008
3009 if ((act != ACTIVITY_TRANSFORM
3010 || pterr->transform_result == NULL || pterr->transform_result == pterr)
3011 && (act != ACTIVITY_CULTIVATE || pterr->cultivate_result == NULL)
3012 && (act != ACTIVITY_PLANT || pterr->plant_result == NULL)) {
3013 /* No extra to order */
3014 output_window_append(ftc_client, _("There's no suitable extra to order."));
3015
3016 return;
3017 }
3018
3019 task.tgt = -1;
3020 } else {
3021 task.tgt = extra_index(tgt);
3022 }
3023
3024 task.want = 100;
3025 }
3026
3027 task.tile_id = ptile->index;
3028 task.activity = act;
3029
3031}
3032
3033/**********************************************************************/
3040
3041/**********************************************************************/
3044static void popup_workertask_dlg(struct city *pcity, struct tile *ptile)
3045{
3047 GtkWidget *shl;
3048 struct terrain *pterr = tile_terrain(ptile);
3049 struct universal for_terr = { .kind = VUT_TERRAIN,
3050 .value = { .terrain = pterr }};
3051 struct worker_task *ptask;
3052
3054 workertask_req.owner = pcity;
3055 workertask_req.loc = ptile;
3056
3058 _("What Action to Request"),
3059 _("Select autoworker activity:"));
3060
3062 if (ptask != NULL) {
3063 choice_dialog_add(shl, _("Clear request"),
3066 }
3067
3069 choice_dialog_add(shl, Q_("?act:Mine"),
3072 }
3073 if (pterr->plant_result != NULL
3075 NULL, &for_terr)) {
3076 choice_dialog_add(shl, _("Plant"),
3079 }
3081 choice_dialog_add(shl, _("Irrigate"),
3084 }
3085 if (pterr->cultivate_result != NULL
3087 NULL, &for_terr)) {
3088 choice_dialog_add(shl, _("Cultivate"),
3091 }
3093 choice_dialog_add(shl, _("Road"),
3096 }
3097 if (pterr->transform_result != pterr && pterr->transform_result != NULL
3099 NULL, &for_terr)) {
3100 choice_dialog_add(shl, _("Transform"),
3103 }
3105 city_owner(pcity), NULL) != NULL) {
3106 choice_dialog_add(shl, _("Clean"),
3109 }
3110
3111 choice_dialog_add(shl, _("_Cancel"), 0, 0, FALSE, NULL);
3113
3115 NULL);
3116 }
3117}
3118
3119/**********************************************************************/
3123 gpointer data)
3124{
3125 struct city_dialog *pdialog = data;
3127
3128 if (!can_client_issue_orders()) {
3129 return FALSE;
3130 }
3131
3132 if (ev->button == 1 && cma_is_city_under_agent(pdialog->pcity, NULL)) {
3133 return FALSE;
3134 }
3135
3136 canvas_x = ev->x * (double)canvas_width / (double)CITYMAP_WIDTH;
3137 canvas_y = ev->y * (double)canvas_height / (double)CITYMAP_HEIGHT;
3138
3140 city_map_radius_sq_get(pdialog->pcity),
3141 canvas_x, canvas_y)) {
3142 if (ev->button == 1) {
3144 } else if (ev->button == 3) {
3145 struct city *pcity = pdialog->pcity;
3146
3147 popup_workertask_dlg(pdialog->pcity,
3148 city_map_to_tile(&(wld.map), pcity->tile,
3150 city_x, city_y));
3151 }
3152 }
3153
3154 return TRUE;
3155}
3156
3157/**********************************************************************/
3160static void draw_map_canvas(struct city_dialog *pdialog)
3161{
3163 if (pdialog->happiness.map_canvas.darea) { /* in case of spy */
3165 }
3166}
3167
3168/************** Callbacks for Buy, Change, Sell, Worklist ****************/
3169/**********************************************************************/
3172static void buy_callback_response(GtkWidget *w, gint response, gpointer data)
3173{
3174 struct city_dialog *pdialog = data;
3175
3176 if (response == GTK_RESPONSE_YES) {
3177 city_buy_production(pdialog->pcity);
3178 }
3180}
3181
3182/**********************************************************************/
3185static void buy_callback(GtkWidget *w, gpointer data)
3186{
3188 struct city_dialog *pdialog = data;
3189 const char *name = city_production_name_translation(pdialog->pcity);
3190 int value = pdialog->pcity->client.buy_cost;
3191 char buf[1024];
3192
3193 if (!can_client_issue_orders()) {
3194 return;
3195 }
3196
3197 fc_snprintf(buf, ARRAY_SIZE(buf), PL_("Treasury contains %d gold.",
3198 "Treasury contains %d gold.",
3199 client_player()->economic.gold),
3200 client_player()->economic.gold);
3201
3202 if (value <= client_player()->economic.gold) {
3206 /* TRANS: Last %s is pre-pluralised "Treasury contains %d gold." */
3207 PL_("Buy %s for %d gold?\n%s",
3208 "Buy %s for %d gold?\n%s", value),
3209 name, value, buf);
3210 setup_dialog(shell, pdialog->shell);
3211 gtk_window_set_title(GTK_WINDOW(shell), _("Buy It!"));
3214 pdialog);
3216 } else {
3220 /* TRANS: Last %s is pre-pluralised "Treasury contains %d gold." */
3221 PL_("%s costs %d gold.\n%s",
3222 "%s costs %d gold.\n%s", value),
3223 name, value, buf);
3224 setup_dialog(shell, pdialog->shell);
3225 gtk_window_set_title(GTK_WINDOW(shell), _("Buy It!"));
3227 NULL);
3229 }
3230}
3231
3232/**********************************************************************/
3236 struct city_dialog *pdialog)
3237{
3239
3241 && gtk_combo_box_get_active_iter(combo, &iter)) {
3242 cid id;
3243 struct universal univ;
3244
3245 gtk_tree_model_get(gtk_combo_box_get_model(combo), &iter, 2, &id, -1);
3246 univ = cid_production(id);
3247 city_change_production(pdialog->pcity, &univ);
3248 }
3249}
3250
3251/**********************************************************************/
3254static void sell_callback(struct impr_type *pimprove, gpointer data)
3255{
3256 GtkWidget *shl;
3257 struct city_dialog *pdialog = (struct city_dialog *) data;
3258 pdialog->sell_id = improvement_number(pimprove);
3259 int price;
3260
3261 if (!can_client_issue_orders()) {
3262 return;
3263 }
3264
3266 pimprove) != TR_SUCCESS) {
3267 return;
3268 }
3269
3270 price = impr_sell_gold(pimprove);
3275 PL_("Sell %s for %d gold?",
3276 "Sell %s for %d gold?", price),
3277 city_improvement_name_translation(pdialog->pcity, pimprove), price);
3278 setup_dialog(shl, pdialog->shell);
3279 pdialog->sell_shell = shl;
3280
3281 gtk_window_set_title(GTK_WINDOW(shl), _("Sell It!"));
3283
3284 g_signal_connect(shl, "response",
3286
3288}
3289
3290/**********************************************************************/
3293static void sell_callback_response(GtkWidget *w, gint response, gpointer data)
3294{
3295 struct city_dialog *pdialog = data;
3296
3297 if (response == GTK_RESPONSE_YES) {
3298 city_sell_improvement(pdialog->pcity, pdialog->sell_id);
3299 }
3301
3302 pdialog->sell_shell = NULL;
3303}
3304
3305/**********************************************************************/
3310{
3311 GtkTreeModel *model;
3312 GtkTreeIter it;
3313 GdkWindow *win;
3314 GdkSeat *seat;
3316 struct impr_type *pimprove;
3317
3319
3320 if (!gtk_tree_model_get_iter(model, &it, path)) {
3321 return;
3322 }
3323
3324 gtk_tree_model_get(model, &it, 0, &pimprove, -1);
3325
3328
3330 NULL, NULL, &mask);
3331
3332 if (!(mask & GDK_CONTROL_MASK)) {
3333 sell_callback(pimprove, data);
3334 } else {
3335 if (is_great_wonder(pimprove)) {
3337 } else {
3339 }
3340 }
3341}
3342
3343/************ Callbacks for stuff on the Misc. Settings page *************/
3344/**********************************************************************/
3348{
3349 struct city_dialog *pdialog;
3350
3351 pdialog = (struct city_dialog *) data;
3352
3353 pdialog->rename_shell = input_dialog_create(GTK_WINDOW(pdialog->shell),
3354 /* "shellrenamecity" */
3355 _("Rename City"),
3356 _("What should we rename the city to?"),
3357 city_name_get(pdialog->pcity),
3358 rename_popup_callback, pdialog);
3359}
3360
3361/**********************************************************************/
3364static void rename_popup_callback(gpointer data, gint response,
3365 const char *input)
3366{
3367 struct city_dialog *pdialog = data;
3368
3369 if (pdialog) {
3370 if (response == GTK_RESPONSE_OK) {
3371 city_rename(pdialog->pcity, input);
3372 } /* else CANCEL or DELETE_EVENT */
3373
3374 pdialog->rename_shell = NULL;
3375 }
3376}
3377
3378/**********************************************************************/
3382{
3384}
3385
3386/**********************************************************************/
3390{
3391 struct city_dialog *pdialog = (struct city_dialog *) data;
3392
3393 if (!can_client_issue_orders()) {
3394 return;
3395 }
3396
3397 if (!pdialog->misc.block_signal) {
3398 struct city *pcity = pdialog->pcity;
3400
3401 fc_assert(CITYO_LAST == 3);
3402
3406 }
3409 }
3412 }
3413
3415 }
3416}
3417
3418/**********************************************************************/
3422static void set_cityopt_values(struct city_dialog *pdialog)
3423{
3424 struct city *pcity = pdialog->pcity;
3425
3426 pdialog->misc.block_signal = 1;
3427
3430
3433 (pdialog->misc.new_citizens_radio[1]), TRUE);
3434 } else if (is_city_option_set(pcity, CITYO_GOLD_SPECIALISTS)) {
3436 (pdialog->misc.new_citizens_radio[2]), TRUE);
3437 } else {
3439 (pdialog->misc.new_citizens_radio[0]), TRUE);
3440 }
3441 pdialog->misc.block_signal = 0;
3442}
3443
3444/******************** Callbacks for: Close, Prev, Next. ******************/
3445/**********************************************************************/
3448static void close_callback(GtkWidget *w, gpointer data)
3449{
3450 close_city_dialog((struct city_dialog *) data);
3451}
3452
3453/**********************************************************************/
3457{
3458 struct city_dialog *pdialog;
3459
3460 pdialog = (struct city_dialog *) data;
3461
3462 gtk_widget_hide(pdialog->shell);
3463
3465 citizens_dialog_close(pdialog->pcity);
3466 }
3467 close_happiness_dialog(pdialog->pcity);
3468 close_cma_dialog(pdialog->pcity);
3469
3470 /* Save size of the city dialog. */
3479
3480 last_page
3482
3483 if (pdialog->popup_menu) {
3485 }
3486
3488
3491
3492 if (pdialog->sell_shell) {
3494 }
3495 if (pdialog->rename_shell) {
3497 }
3498
3501
3502 free(pdialog);
3503
3504 /* need to do this every time a new dialog is closed. */
3506}
3507
3508/**********************************************************************/
3511static void close_city_dialog(struct city_dialog *pdialog)
3512{
3513 gtk_widget_destroy(pdialog->shell);
3514}
3515
3516/**********************************************************************/
3521{
3522 struct city_dialog *pdialog = (struct city_dialog *) data;
3523 int i, j, dir, size;
3524 struct city *new_pcity = NULL;
3525
3527 return;
3528 }
3529
3531
3533 fc_assert_ret(size >= 1);
3535
3536 if (size == 1) {
3537 return;
3538 }
3539
3540 /* dir = 1 will advance to the city, dir = -1 will get previous */
3541 if (w == GTK_WIDGET(pdialog->next_command)) {
3542 dir = 1;
3543 } else if (w == GTK_WIDGET(pdialog->prev_command)) {
3544 dir = -1;
3545 } else {
3546 /* Always fails. */
3548 || w == GTK_WIDGET(pdialog->prev_command));
3549 dir = 1;
3550 }
3551
3552 for (i = 0; i < size; i++) {
3553 if (pdialog->pcity == city_list_get(client.conn.playing->cities, i)) {
3554 break;
3555 }
3556 }
3557
3558 fc_assert_ret(i < size);
3559
3560 for (j = 1; j < size; j++) {
3562 (i + dir * j + size) % size);
3564
3565 fc_assert_ret(other_pdialog != pdialog);
3566 if (!other_pdialog) {
3568 break;
3569 }
3570 }
3571
3572 if (!new_pcity) {
3573 /* Every other city has an open city dialog. */
3574 return;
3575 }
3576
3577 /* cleanup happiness dialog */
3579 citizens_dialog_close(pdialog->pcity);
3580 }
3581 close_happiness_dialog(pdialog->pcity);
3582
3583 pdialog->pcity = new_pcity;
3584
3585 /* reinitialize happiness, and cma dialogs */
3588 citizens_dialog_display(pdialog->pcity));
3589 }
3591 get_top_happiness_display(pdialog->pcity, low_citydlg, pdialog->shell));
3592 if (!client_is_observer()) {
3593 fc_assert(pdialog->cma_editor != NULL);
3594 pdialog->cma_editor->pcity = new_pcity;
3595 }
3596
3597 reset_city_worklist(pdialog->production.worklist, pdialog->pcity);
3598
3599 can_slide = FALSE;
3600 center_tile_mapcanvas(pdialog->pcity->tile);
3601 can_slide = TRUE;
3602 if (!client_is_observer()) {
3603 set_cityopt_values(pdialog); /* need not be in real_city_dialog_refresh */
3604 }
3605
3607
3608 /* recenter the city map(s) */
3610 if (pdialog->happiness.map_canvas.sw) {
3612 }
3613}
const char * action_id_name_translation(action_id act_id)
Definition actions.c:1225
bool action_ever_possible(action_id action)
Definition actions.c:7481
#define action_id_univs_not_blocking(act_id, act_uni, tgt_uni)
Definition actions.h:688
#define n
Definition astring.c:77
#define BV_CLR_ALL(bv)
Definition bitvector.h:95
#define BV_SET(bv, bit)
Definition bitvector.h:81
struct canvas int int struct sprite int int int int height
Definition canvas_g.h:44
struct canvas int int canvas_y
Definition canvas_g.h:43
struct canvas int canvas_x
Definition canvas_g.h:43
struct canvas int int struct sprite int int int width
Definition canvas_g.h:44
void output_window_append(const struct ft_color color, const char *featured_text)
const char * city_improvement_name_translation(const struct city *pcity, const struct impr_type *pimprove)
Definition city.c:663
int city_production_build_shield_cost(const struct city *pcity)
Definition city.c:737
int city_granary_size(int city_size)
Definition city.c:2129
bool can_city_build_now(const struct city *pcity, const struct universal *target)
Definition city.c:1011
int city_unit_unhappiness(struct unit *punit, int *free_unhappy)
Definition city.c:3046
int city_build_slots(const struct city *pcity)
Definition city.c:2929
struct tile * city_map_to_tile(const struct civ_map *nmap, const struct tile *city_center, int city_radius_sq, int city_map_x, int city_map_y)
Definition city.c:305
const char * city_name_get(const struct city *pcity)
Definition city.c:1133
int city_improvement_upkeep(const struct city *pcity, const struct impr_type *b)
Definition city.c:1251
bool is_city_option_set(const struct city *pcity, enum city_options option)
Definition city.c:3384
int city_population(const struct city *pcity)
Definition city.c:1187
bool city_unhappy(const struct city *pcity)
Definition city.c:1622
bool city_celebrating(const struct city *pcity)
Definition city.c:1641
int city_illness_calc(const struct city *pcity, int *ill_base, int *ill_size, int *ill_trade, int *ill_pollution)
Definition city.c:2867
bool city_happy(const struct city *pcity)
Definition city.c:1610
int city_map_radius_sq_get(const struct city *pcity)
Definition city.c:137
citizens city_specialists(const struct city *pcity)
Definition city.c:3313
int city_turns_to_grow(const struct city *pcity)
Definition city.c:1992
const char * city_production_name_translation(const struct city *pcity)
Definition city.c:700
static citizens city_size_get(const struct city *pcity)
Definition city.h:569
citizen_category
Definition city.h:267
#define city_owner(_pcity_)
Definition city.h:563
#define MAX_CITY_SIZE
Definition city.h:106
@ FEELING_FINAL
Definition city.h:284
void get_city_dialog_output_text(const struct city *pcity, Output_type_id otype, char *buf, size_t bufsz)
void get_city_dialog_production(struct city *pcity, char *buffer, size_t buffer_len)
int city_rename(struct city *pcity, const char *name)
int get_city_citizen_types(struct city *pcity, enum citizen_feeling idx, enum citizen_category *categories)
int city_buy_production(struct city *pcity)
int city_toggle_worker(struct city *pcity, int city_x, int city_y)
void get_city_dialog_airlift_text(const struct city *pcity, char *buf, size_t bufsz)
int city_change_production(struct city *pcity, struct universal *target)
void city_rotate_specialist(struct city *pcity, int citizen_index)
int get_citydlg_canvas_width(void)
bool canvas_to_city_pos(int *city_x, int *city_y, int city_radius_sq, int canvas_x, int canvas_y)
void get_city_dialog_airlift_value(const struct city *pcity, char *buf, size_t bufsz)
void city_dialog_redraw_map(struct city *pcity, struct canvas *pcanvas)
int city_sell_improvement(struct city *pcity, Impr_type_id sell_id)
void get_city_dialog_pollution_text(const struct city *pcity, char *buf, size_t bufsz)
void get_city_dialog_culture_text(const struct city *pcity, char *buf, size_t bufsz)
bool city_can_buy(const struct city *pcity)
int get_citydlg_canvas_height(void)
void get_city_dialog_illness_text(const struct city *pcity, char *buf, size_t bufsz)
void city_report_dialog_update_city(struct city *pcity)
bool client_is_global_observer(void)
bool client_is_observer(void)
struct civclient client
bool can_client_issue_orders(void)
bool client_has_player(void)
#define client_player()
int collect_eventually_buildable_targets(struct universal *targets, struct city *pcity, bool advanced_tech)
Definition climisc.c:809
void name_and_sort_items(struct universal *targets, int num_targets, struct item *items, bool show_cost, struct city *pcity)
Definition climisc.c:640
cid cid_encode(struct universal target)
Definition climisc.c:482
int collect_already_built_targets(struct universal *targets, struct city *pcity)
Definition climisc.c:902
#define MAX_NUM_PRODUCTION_TARGETS
Definition climisc.h:87
#define cid_production
Definition climisc.h:71
int cid
Definition climisc.h:31
bool cma_is_city_under_agent(const struct city *pcity, struct cm_parameter *parameter)
Definition cma_core.c:551
char * incite_cost
Definition comments.c:74
void request_unit_fortify(struct unit *punit)
Definition control.c:2326
void unit_focus_set(struct unit *punit)
Definition control.c:501
void request_unit_change_homecity(struct unit *punit)
Definition control.c:2067
void request_unit_unload(struct unit *pcargo)
Definition control.c:2167
void request_unit_sentry(struct unit *punit)
Definition control.c:2315
#define can_unit_do_activity_client(_punit_, _act_)
Definition control.h:41
int counter_index(const struct counter *pcount)
Definition counters.c:174
#define city_counters_iterate_end
Definition counters.h:64
#define city_counters_iterate(pcount)
Definition counters.h:57
struct unit struct city struct unit struct tile struct extra_type const struct act_prob *act_probs int actor_unit_id struct unit struct unit * punit
Definition dialogs_g.h:74
struct unit struct city struct unit struct tile struct extra_type const struct act_prob *act_probs int actor_unit_id struct unit struct unit int cost
Definition dialogs_g.h:74
int int id
Definition editgui_g.h:28
static struct editor_state * editor
Definition editor.c:100
int get_city_bonus(const struct city *pcity, enum effect_type effect_type)
Definition effects.c:842
enum event_type event
Definition events.c:81
struct extra_type * next_extra_for_tile(const struct tile *ptile, enum extra_cause cause, const struct player *pplayer, const struct unit *punit)
Definition extras.c:779
struct extra_type * prev_extra_in_tile(const struct tile *ptile, enum extra_rmcause rmcause, const struct player *pplayer, const struct unit *punit)
Definition extras.c:804
enum extra_cause activity_to_extra_cause(enum unit_activity act)
Definition extras.c:1090
enum extra_rmcause activity_to_extra_rmcause(enum unit_activity act)
Definition extras.c:1111
#define extra_index(_e_)
Definition extras.h:183
int Impr_type_id
Definition fc_types.h:380
#define EC_NONE
Definition fc_types.h:1093
@ TR_SUCCESS
Definition fc_types.h:1226
#define ERM_NONE
Definition fc_types.h:1116
@ O_SHIELD
Definition fc_types.h:101
@ O_FOOD
Definition fc_types.h:101
@ O_TRADE
Definition fc_types.h:101
@ O_SCIENCE
Definition fc_types.h:101
@ O_LUXURY
Definition fc_types.h:101
@ O_GOLD
Definition fc_types.h:101
#define Q_(String)
Definition fcintl.h:70
#define PL_(String1, String2, n)
Definition fcintl.h:71
#define _(String)
Definition fcintl.h:67
#define N_(String)
Definition fcintl.h:69
const struct ft_color ftc_client
const char * population_to_text(int thousand_citizen)
Definition game.c:737
struct civ_game game
Definition game.c:61
struct world wld
Definition game.c:62
struct city * game_city_by_number(int id)
Definition game.c:106
#define FC_STATIC_CANVAS_INIT
Definition canvas.h:28
GtkWidget * choice_dialog_start(GtkWindow *parent, const gchar *name, const gchar *text)
void choice_dialog_end(GtkWidget *dshell)
void choice_dialog_add(GtkWidget *dshell, const gchar *label, GCallback handler, gpointer data, bool meta, const gchar *tool_tip)
GtkWidget * citizens_dialog_display(const struct city *pcity)
void citizens_dialog_refresh(const struct city *pcity)
void citizens_dialog_close(const struct city *pcity)
static void unit_sentry_callback(GtkWidget *w, gpointer data)
Definition citydlg.c:2874
citydlg_response
Definition citydlg.c:82
@ CDLGR_UNITS
Definition citydlg.c:82
@ CDLGR_PREV
Definition citydlg.c:82
@ CDLGR_NEXT
Definition citydlg.c:82
static int new_dialog_def_page
Definition citydlg.c:219
static void create_and_append_buildings_page(struct city_dialog *pdialog)
Definition citydlg.c:1238
static void unit_upgrade_callback(GtkWidget *w, gpointer data)
Definition citydlg.c:2933
static void popup_workertask_dlg(struct city *pcity, struct tile *ptile)
Definition citydlg.c:3044
static void city_dialog_update_citizens(struct city_dialog *pdialog)
Definition citydlg.c:1869
static void city_destroy_callback(GtkWidget *w, gpointer data)
Definition citydlg.c:3456
static void city_dialog_update_title(struct city_dialog *pdialog)
Definition citydlg.c:1830
static int last_page
Definition citydlg.c:220
static void init_citydlg_dimensions(void)
Definition citydlg.c:332
static void create_and_append_worklist_page(struct city_dialog *pdialog)
Definition citydlg.c:1272
struct tile * loc
Definition citydlg.c:227
static gboolean canvas_exposed_cb(GtkWidget *w, cairo_t *cr, gpointer data)
Definition citydlg.c:404
@ WORKLIST_PAGE
Definition citydlg.c:112
@ CMA_PAGE
Definition citydlg.c:112
@ HAPPINESS_PAGE
Definition citydlg.c:112
@ SETTINGS_PAGE
Definition citydlg.c:113
@ STICKY_PAGE
Definition citydlg.c:113
@ NUM_PAGES
Definition citydlg.c:114
@ OVERVIEW_PAGE
Definition citydlg.c:112
#define CITY_MAP_MIN_SIZE_X
Definition citydlg.c:128
void real_city_dialog_popup(struct city *pcity)
Definition citydlg.c:566
static void misc_whichtab_callback(GtkWidget *w, gpointer data)
Definition citydlg.c:3381
static bool low_citydlg
Definition citydlg.c:230
static struct @141 workertask_req
bool city_dialog_is_open(struct city *pcity)
Definition citydlg.c:587
static void city_dialog_update_building(struct city_dialog *pdialog)
Definition citydlg.c:2069
static void citydlg_response_callback(GtkDialog *dlg, gint response, void *data)
Definition citydlg.c:2501
static void buy_callback_response(GtkWidget *w, gint response, gpointer data)
Definition citydlg.c:3172
static gboolean present_unit_middle_callback(GtkWidget *w, GdkEventButton *ev, gpointer data)
Definition citydlg.c:2717
void real_city_dialog_refresh(struct city *pcity)
Definition citydlg.c:487
static void unit_center_callback(GtkWidget *w, gpointer data)
Definition citydlg.c:2773
static struct city_dialog * get_city_dialog(struct city *pcity)
Definition citydlg.c:387
#define CITY_MAP_MIN_SIZE_Y
Definition citydlg.c:129
static void city_dialog_update_information(GtkWidget **info_ebox, GtkWidget **info_label, struct city_dialog *pdialog)
Definition citydlg.c:1932
static GtkWidget * create_citydlg_improvement_list(struct city_dialog *pdialog, GtkWidget *vbox)
Definition citydlg.c:897
static void create_production_header(struct city_dialog *pdialog, GtkContainer *contain)
Definition citydlg.c:1205
static void workertask_dlg_destroy(GtkWidget *w, gpointer data)
Definition citydlg.c:3036
static void city_dialog_update_present_units(struct city_dialog *pdialog)
Definition citydlg.c:2355
#define CITYMAP_SCALE
Definition citydlg.c:76
static gboolean keyboard_handler(GtkWidget *widget, GdkEventKey *event, struct city_dialog *pdialog)
Definition citydlg.c:624
static gboolean citizens_callback(GtkWidget *w, GdkEventButton *ev, gpointer data)
Definition citydlg.c:2954
static void change_production_callback(GtkComboBox *combo, struct city_dialog *pdialog)
Definition citydlg.c:3235
static void unit_load_callback(GtkWidget *w, gpointer data)
Definition citydlg.c:2848
static void set_cityopt_values(struct city_dialog *pdialog)
Definition citydlg.c:3422
static void close_city_dialog(struct city_dialog *pdialog)
Definition citydlg.c:3511
static gboolean show_info_popup(GtkWidget *w, GdkEventButton *ev, gpointer data)
Definition citydlg.c:661
static void create_and_append_overview_page(struct city_dialog *pdialog)
Definition citydlg.c:956
static void create_and_append_happiness_page(struct city_dialog *pdialog)
Definition citydlg.c:1316
void popdown_all_city_dialogs(void)
Definition citydlg.c:607
static void buy_callback(GtkWidget *w, gpointer data)
Definition citydlg.c:3185
#define dialog_list_iterate_end
Definition citydlg.c:93
static void impr_callback(GtkTreeView *view, GtkTreePath *path, GtkTreeViewColumn *col, gpointer data)
Definition citydlg.c:3308
static void create_and_append_map_page(struct city_dialog *pdialog)
Definition citydlg.c:1144
static void city_dialog_map_create(struct city_dialog *pdialog, struct city_map_canvas *cmap_canvas)
Definition citydlg.c:423
void refresh_unit_city_dialogs(struct unit *punit)
Definition citydlg.c:546
void reset_city_dialogs(void)
Definition citydlg.c:365
static gboolean show_info_button_release(GtkWidget *w, GdkEventButton *ev, gpointer data)
Definition citydlg.c:648
static void cityopt_callback(GtkWidget *w, gpointer data)
Definition citydlg.c:3389
static void city_dialog_map_recenter(GtkWidget *map_canvas_sw)
Definition citydlg.c:462
static void draw_map_canvas(struct city_dialog *pdialog)
Definition citydlg.c:3160
static bool is_showing_workertask_dialog
Definition citydlg.c:222
#define unit_node_vector_iterate_end
Definition citydlg.c:108
static void sell_callback(struct impr_type *pimprove, gpointer data)
Definition citydlg.c:3254
#define dialog_list_iterate(dialoglist, pdialog)
Definition citydlg.c:91
static void supported_unit_activate_close_callback(GtkWidget *w, gpointer data)
Definition citydlg.c:2800
static void city_dialog_update_prev_next(void)
Definition citydlg.c:2462
static void create_and_append_settings_page(struct city_dialog *pdialog)
Definition citydlg.c:1500
static bool city_dialogs_have_been_initialised
Definition citydlg.c:217
static void close_callback(GtkWidget *w, gpointer data)
Definition citydlg.c:3448
static struct dialog_list * dialog_list
Definition citydlg.c:216
static void sell_callback_response(GtkWidget *w, gint response, gpointer data)
Definition citydlg.c:3293
static void create_citydlg_main_map(struct city_dialog *pdialog, GtkWidget *container)
Definition citydlg.c:880
#define NUM_CITIZENS_SHOWN
Definition citydlg.c:110
#define CITYMAP_HEIGHT
Definition citydlg.c:75
static void destroy_func(GtkWidget *w, gpointer data)
Definition citydlg.c:2527
static void unit_homecity_callback(GtkWidget *w, gpointer data)
Definition citydlg.c:2920
static void unit_fortify_callback(GtkWidget *w, gpointer data)
Definition citydlg.c:2887
static gboolean supported_unit_middle_callback(GtkWidget *w, GdkEventButton *ev, gpointer data)
Definition citydlg.c:2745
static void city_dialog_update_counters(struct city_dialog *pdialog)
Definition citydlg.c:1413
static gboolean present_unit_callback(GtkWidget *w, GdkEventButton *ev, gpointer data)
Definition citydlg.c:2597
struct city * owner
Definition citydlg.c:226
static GtkWidget * create_city_info_table(struct city_dialog *pdialog, GtkWidget **info_ebox, GtkWidget **info_label)
Definition citydlg.c:745
static struct city_dialog * create_city_dialog(struct city *pcity)
Definition citydlg.c:1642
static void target_drag_data_received(GtkWidget *w, GdkDragContext *context, gint x, gint y, GtkSelectionData *data, guint info, guint time, gpointer user_data)
Definition citydlg.c:1167
static void unit_disband_callback(GtkWidget *w, gpointer data)
Definition citydlg.c:2900
#define unit_node_vector_iterate(list, elt)
Definition citydlg.c:106
static void rename_callback(GtkWidget *w, gpointer data)
Definition citydlg.c:3347
static void switch_city_callback(GtkWidget *w, gpointer data)
Definition citydlg.c:3520
static gboolean button_down_citymap(GtkWidget *w, GdkEventButton *ev, gpointer data)
Definition citydlg.c:3122
#define CITYMAP_WIDTH
Definition citydlg.c:74
static void city_dialog_update_map(struct city_dialog *pdialog)
Definition citydlg.c:2047
static void create_and_append_counters_page(struct city_dialog *pdialog)
Definition citydlg.c:1393
static void unit_unload_callback(GtkWidget *w, gpointer data)
Definition citydlg.c:2861
static void show_units_response(void *data)
Definition citydlg.c:2514
static void initialize_city_dialogs(void)
Definition citydlg.c:341
static int canvas_height
Definition citydlg.c:218
static int canvas_width
Definition citydlg.c:218
#define TINYSCREEN_MAX_HEIGHT
Definition citydlg.c:78
static void city_dialog_update_supported_units(struct city_dialog *pdialog)
Definition citydlg.c:2249
static void unit_activate_callback(GtkWidget *w, gpointer data)
Definition citydlg.c:2786
static void present_unit_activate_close_callback(GtkWidget *w, gpointer data)
Definition citydlg.c:2825
@ INFO_LUXURY
Definition citydlg.c:120
@ INFO_STEAL
Definition citydlg.c:122
@ INFO_CORRUPTION
Definition citydlg.c:121
@ NUM_INFO_FIELDS
Definition citydlg.c:123
@ INFO_ILLNESS
Definition citydlg.c:122
@ INFO_WASTE
Definition citydlg.c:121
@ INFO_SIZE
Definition citydlg.c:119
@ INFO_GROWTH
Definition citydlg.c:120
@ INFO_SHIELD
Definition citydlg.c:119
@ INFO_CULTURE
Definition citydlg.c:121
@ INFO_GOLD
Definition citydlg.c:119
@ INFO_SCIENCE
Definition citydlg.c:120
@ INFO_POLLUTION
Definition citydlg.c:121
@ INFO_TRADE
Definition citydlg.c:119
@ INFO_AIRLIFT
Definition citydlg.c:122
@ INFO_GRANARY
Definition citydlg.c:120
@ INFO_FOOD
Definition citydlg.c:119
static void set_city_workertask(GtkWidget *w, gpointer data)
Definition citydlg.c:2981
static void rename_popup_callback(gpointer data, gint response, const char *input)
Definition citydlg.c:3364
static void city_dialog_update_improvement_list(struct city_dialog *pdialog)
Definition citydlg.c:2192
static void create_and_append_cma_page(struct city_dialog *pdialog)
Definition citydlg.c:1480
void popdown_city_dialog(struct city *pcity)
Definition citydlg.c:595
static gboolean supported_unit_callback(GtkWidget *w, GdkEventButton *ev, gpointer data)
Definition citydlg.c:2535
void close_cma_dialog(struct city *pcity)
Definition cma_fe.c:104
struct cma_dialog * create_cma_dialog(struct city *pcity, bool tiny)
Definition cma_fe.c:214
void refresh_cma_dialog(struct city *pcity, enum cma_refresh refresh)
Definition cma_fe.c:471
@ REFRESH_ALL
Definition cma_fe.h:26
void unit_select_dialog_popup(struct tile *ptile)
Definition dialogs.c:377
void popup_upgrade_dialog(struct unit_list *punits)
Definition dialogs.c:1435
void popup_disband_dialog(struct unit_list *punits)
Definition dialogs.c:1473
GtkWidget * toplevel
Definition gui_main.c:125
GtkWidget * map_canvas
Definition gui_main.c:107
int screen_height(void)
Definition gui_main.c:2616
#define GUI_GTK_OPTION(optname)
Definition gui_main.h:25
GtkWidget * icon_label_button_new(const gchar *icon_name, const gchar *label_text)
Definition gui_stuff.c:76
void setup_dialog(GtkWidget *shell, GtkWidget *parent)
Definition gui_stuff.c:287
void intl_slist(int n, const char **s, bool *done)
Definition gui_stuff.c:111
void close_happiness_dialog(struct city *pcity)
Definition happiness.c:330
void refresh_happiness_dialog(struct city *pcity)
Definition happiness.c:317
GtkWidget * get_top_happiness_display(struct city *pcity, bool low_dlg, GtkWidget *win)
Definition happiness.c:356
void popup_help_dialog_typed(const char *item, enum help_page_type htype)
Definition helpdlg.c:196
GtkWidget * input_dialog_create(GtkWindow *parent, const char *dialogname, const char *text, const char *postinputtest, input_dialog_callback_t response_callback, gpointer response_cli_data)
Definition inputdlg.c:66
void put_unit_image_city_overlays(struct unit *punit, GtkImage *p, int height, int *upkeep_cost, int happy_cost)
Definition mapview.c:521
void put_unit_image(struct unit *punit, GtkImage *p, int height)
Definition mapview.c:496
static struct gui_dialog * shell
Definition messagedlg.c:39
GdkPixbuf * sprite_get_pixbuf(struct sprite *sprite)
Definition sprite.c:402
bool request_transport(struct unit *cargo, struct tile *ptile)
void refresh_worklist(GtkWidget *editor)
Definition wldlg.c:1327
void add_worklist_dnd_target(GtkWidget *w)
Definition wldlg.c:339
void reset_city_worklist(GtkWidget *editor, struct city *pcity)
Definition wldlg.c:1279
GtkWidget * create_worklist(void)
Definition wldlg.c:1054
static SDL_Surface * info_label
Definition widget.c:57
@ HELP_IMPROVEMENT
Definition helpdlg_g.h:20
@ HELP_WONDER
Definition helpdlg_g.h:21
int impr_sell_gold(const struct impr_type *pimprove)
enum test_result test_player_sell_building_now(struct player *pplayer, struct city *pcity, const struct impr_type *pimprove)
bool is_improvement_redundant(const struct city *pcity, const struct impr_type *pimprove)
Impr_type_id improvement_number(const struct impr_type *pimprove)
bool is_great_wonder(const struct impr_type *pimprove)
const char * improvement_name_translation(const struct impr_type *pimprove)
bool is_small_wonder(const struct impr_type *pimprove)
const char * name
Definition inputfile.c:127
#define fc_assert_ret(condition)
Definition log.h:191
#define fc_assert(condition)
Definition log.h:176
#define fc_assert_action(condition, action)
Definition log.h:187
#define log_debug(message,...)
Definition log.h:115
void center_tile_mapcanvas(const struct tile *ptile)
bool can_slide
#define fc_malloc(sz)
Definition mem.h:34
bool can_unit_exist_at_tile(const struct civ_map *nmap, const struct unit *punit, const struct tile *ptile)
Definition movement.c:318
bool unit_can_load(const struct unit *punit)
Definition movement.c:884
static const char * name_translation_get(const struct name_translation *ptrans)
#define GUI_GTK3_22_CITYDLG_MAX_XSIZE
Definition options.h:658
#define GUI_GTK3_22_CITYDLG_MIN_XSIZE
Definition options.h:657
int send_packet_worker_task(struct connection *pc, const struct packet_worker_task *packet)
int dsend_packet_city_options_req(struct connection *pc, int city_id, bv_city_options options)
int len
Definition packhand.c:127
struct unit * player_unit_by_number(const struct player *pplayer, int unit_id)
Definition player.c:1229
struct city * player_city_by_number(const struct player *pplayer, int city_id)
Definition player.c:1203
#define CLIP(lower, current, upper)
Definition shared.h:57
#define ARRAY_SIZE(x)
Definition shared.h:85
#define MIN(x, y)
Definition shared.h:55
#define FC_INFINITY
Definition shared.h:36
size_t size
Definition specvec.h:72
struct sprite int int int int struct sprite * mask
Definition sprite_g.h:32
struct sprite int int y
Definition sprite_g.h:31
struct sprite int x
Definition sprite_g.h:31
#define strvec_iterate(psv, str)
#define strvec_iterate_end
cairo_surface_t * surface
Definition canvas.h:23
GtkWidget * prev_command
Definition citydlg.c:208
struct city_dialog::@144 happiness
GtkWidget * name_label
Definition citydlg.c:141
struct city_dialog::@142 overview
GtkWidget * citizen_images
Definition citydlg.c:146
GtkWidget * rename_shell
Definition citydlg.c:205
GtkWidget * info_ebox[NUM_INFO_FIELDS]
Definition citydlg.c:166
GtkWidget * rename_command
Definition citydlg.c:196
GtkWidget * production_bar
Definition citydlg.c:152
GtkWidget * supported_units_frame
Definition citydlg.c:157
GtkWidget * sell_shell
Definition citydlg.c:203
GtkWidget * production_label
Definition citydlg.c:173
GtkWidget * widget
Definition citydlg.c:182
GtkWidget * supported_unit_table
Definition citydlg.c:158
GtkWidget * disband_on_settler
Definition citydlg.c:198
struct city_map_canvas map_canvas
Definition citydlg.c:150
GtkWidget * improvement_list
Definition citydlg.c:155
GtkWidget * container
Definition citydlg.c:189
GtkWidget * buy_command
Definition citydlg.c:154
short block_signal
Definition citydlg.c:200
GtkWidget * whichtab_radio[NUM_PAGES]
Definition citydlg.c:199
struct unit_node_vector supported_units
Definition citydlg.c:163
cairo_surface_t * map_canvas_store_unscaled
Definition citydlg.c:142
struct city * pcity
Definition citydlg.c:138
struct unit_node_vector present_units
Definition citydlg.c:164
city_map * view
Definition citydlg.h:450
struct city_dialog::@146 misc
GtkWidget * citizens
Definition citydlg.c:185
GtkWidget * popup_menu
Definition citydlg.c:145
GtkWidget * show_units_command
Definition citydlg.c:207
Impr_type_id sell_id
Definition citydlg.c:211
GtkWidget * production_combo
Definition citydlg.c:153
enum city_dialog::@214 page
struct cma_dialog * cma_editor
Definition citydlg.c:193
cairo_surface_t * citizen_surface
Definition citydlg.c:147
struct city_dialog::@145 counters
GtkWidget * shell
Definition citydlg.c:140
GtkWidget * worklist
Definition citydlg.c:176
struct city_dialog::@143 production
GtkWidget * present_units_frame
Definition citydlg.c:160
GtkWidget * info_label[NUM_INFO_FIELDS]
Definition citydlg.c:167
GtkWidget * new_citizens_radio[3]
Definition citydlg.c:197
GtkListStore * change_production_store
Definition citydlg.c:169
GtkWidget * present_unit_table
Definition citydlg.c:161
GtkWidget * notebook
Definition citydlg.c:143
GtkWidget * next_command
Definition citydlg.c:209
GtkTreeSelection * change_selection
Definition citydlg.c:204
GtkWidget * darea
Definition citydlg.c:134
GtkWidget * sw
Definition citydlg.c:132
GtkWidget * ebox
Definition citydlg.c:133
Definition city.h:320
struct worker_task_list * task_reqs
Definition city.h:412
int surplus[O_LAST]
Definition city.h:355
int food_stock
Definition city.h:367
int * counter_values
Definition city.h:408
int pollution
Definition city.h:369
int id
Definition city.h:326
int waste[O_LAST]
Definition city.h:356
struct unit_list * info_units_present
Definition city.h:474
struct player * owner
Definition city.h:323
struct unit_list * info_units_supported
Definition city.h:473
struct worklist worklist
Definition city.h:401
int steal
Definition city.h:414
citizens size
Definition city.h:332
int illness
Definition city.h:434
int culture
Definition city.h:465
int buy_cost
Definition city.h:466
struct tile * tile
Definition city.h:322
int shield_stock
Definition city.h:368
int prod[O_LAST]
Definition city.h:358
struct unit_list * units_supported
Definition city.h:406
struct city::@17::@20 client
struct packet_game_info info
Definition game.h:89
struct connection conn
Definition client_main.h:96
GtkWidget * shell
Definition cma_fe.h:33
struct city * pcity
Definition cma_fe.h:32
struct player * playing
Definition connection.h:151
Definition climisc.h:80
struct universal item
Definition climisc.h:81
char descr[MAX_LEN_NAME+40]
Definition climisc.h:82
enum unit_activity activity
struct city_list * cities
Definition player.h:281
Definition tile.h:50
int index
Definition tile.h:51
struct unit_list * units
Definition tile.h:58
int height
Definition citydlg.c:98
GtkWidget * cmd
Definition citydlg.c:96
GtkWidget * pix
Definition citydlg.c:97
Definition unit.h:140
int upkeep[O_LAST]
Definition unit.h:150
enum unit_activity activity
Definition unit.h:159
int id
Definition unit.h:147
int homecity
Definition unit.h:148
enum universals_n kind
Definition fc_types.h:880
universals_u value
Definition fc_types.h:879
struct tile * ptile
Definition workertask.h:22
struct civ_map map
int fc_snprintf(char *str, size_t n, const char *format,...)
Definition support.c:960
#define TRUE
Definition support.h:46
#define FALSE
Definition support.h:47
const char * unit_description(struct unit *punit)
Definition text.c:488
struct city * tile_city(const struct tile *ptile)
Definition tile.c:83
#define tile_terrain(_tile)
Definition tile.h:111
struct sprite * get_building_sprite(const struct tileset *t, const struct impr_type *pimprove)
Definition tilespec.c:6822
int tileset_small_sprite_width(const struct tileset *t)
Definition tilespec.c:902
int tileset_full_tile_height(const struct tileset *t)
Definition tilespec.c:790
int tileset_small_sprite_height(const struct tileset *t)
Definition tilespec.c:938
struct sprite * get_icon_sprite(const struct tileset *t, enum icon_type icon)
Definition tilespec.c:7018
int tileset_unit_with_upkeep_height(const struct tileset *t)
Definition tilespec.c:860
struct sprite * get_citizen_sprite(const struct tileset *t, enum citizen_category type, int citizen_index, const struct city *pcity)
Definition tilespec.c:6761
struct sprite * get_unittype_sprite(const struct tileset *t, const struct unit_type *punittype, enum unit_activity activity, enum direction8 facing)
Definition tilespec.c:6844
@ ICON_CITYDLG
Definition tilespec.h:316
const struct unit_type * utype
Definition fc_types.h:698
const struct impr_type * building
Definition fc_types.h:691
bool can_unit_change_homecity_to(const struct unit *punit, const struct city *pcity)
Definition unit.c:492
struct unit * unit_transport_get(const struct unit *pcargo)
Definition unit.c:2499
bool unit_can_do_action(const struct unit *punit, const action_id act_id)
Definition unit.c:386
bool can_unit_unload(const struct unit *pcargo, const struct unit *ptrans)
Definition unit.c:776
#define unit_tile(_pu)
Definition unit.h:397
#define unit_list_iterate(unitlist, punit)
Definition unitlist.h:31
#define unit_list_iterate_end
Definition unitlist.h:33
const struct unit_type * unit_type_get(const struct unit *punit)
Definition unittype.c:123
const struct unit_type * can_upgrade_unittype(const struct player *pplayer, const struct unit_type *punittype)
Definition unittype.c:1703
const char * utype_name_translation(const struct unit_type *punittype)
Definition unittype.c:1560
void economy_report_dialog_update(void)
bool worklist_is_empty(const struct worklist *pwl)
Definition worklist.c:66