Freeciv-3.4
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
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;
1876 int num_supers
1878 ARRAY_SIZE(categories) - num_citizens,
1879 &categories[num_citizens]);
1880 cairo_t *cr;
1881
1882 if (num_supers >= 0) {
1883 /* Just draw superspecialists in the common roster */
1885 } else {
1886 /* FIXME: show them in some compact way */
1887 num_citizens = ARRAY_SIZE(categories);
1888 }
1889 /* If there is not enough space we stack the icons. We draw from left to */
1890 /* right. width is how far we go to the right for each drawn pixmap. The */
1891 /* last icon is always drawn in full, and so has reserved */
1892 /* tileset_small_sprite_width(tileset) pixels. */
1893
1895 if (num_citizens > 1) {
1897 / (num_citizens - 1));
1898 } else {
1899 width = full_width;
1900 }
1901 pdialog->cwidth = width;
1902
1903 /* overview page */
1904 /* keep these values in sync with create_city_dialog */
1907
1908 cr = cairo_create(pdialog->citizen_surface);
1909
1910 for (i = 0; i < num_citizens; i++) {
1912 get_citizen_sprite(tileset, categories[i], i, pcity)->surface,
1913 i * width, 0);
1914 cairo_rectangle(cr, i * width, 0,
1915 /* Always draw last citizen in full */
1916 i + 1 < num_citizens ? width : full_width,
1918 cairo_fill(cr);
1919 }
1920
1921 total_used_width = (i - 1) * width + full_width;
1922
1924 /* Clear the rest of the area.
1925 * Note that this might still be necessary even in cases where
1926 * num_citizens > NUM_CITIZENS_SHOWN, if the available width cannot be
1927 * divided perfectly. */
1932 cairo_fill(cr);
1933 }
1934
1935 cairo_destroy(cr);
1936
1938}
1939
1940/**********************************************************************/
1945 struct city_dialog *pdialog)
1946{
1947 int i, illness = 0;
1948 char buf[NUM_INFO_FIELDS][512];
1949 struct city *pcity = pdialog->pcity;
1950 int granaryturns;
1953
1954 /* fill the buffers with the necessary info */
1955 if (supers) {
1956 fc_snprintf(buf[INFO_SIZE], sizeof(buf[INFO_SIZE]), "%3d (%3d+%d)",
1957 pcity->size, non_workers, supers);
1958 } else if (non_workers) {
1959 fc_snprintf(buf[INFO_SIZE], sizeof(buf[INFO_SIZE]), "%3d (%3d)",
1960 pcity->size, non_workers);
1961 } else {
1962 fc_snprintf(buf[INFO_SIZE], sizeof(buf[INFO_SIZE]), "%3d", pcity->size);
1963 }
1964 fc_snprintf(buf[INFO_FOOD], sizeof(buf[INFO_FOOD]), "%3d (%+4d)",
1965 pcity->prod[O_FOOD], pcity->surplus[O_FOOD]);
1966 fc_snprintf(buf[INFO_SHIELD], sizeof(buf[INFO_SHIELD]), "%3d (%+4d)",
1967 pcity->prod[O_SHIELD] + pcity->waste[O_SHIELD],
1968 pcity->surplus[O_SHIELD]);
1969 fc_snprintf(buf[INFO_TRADE], sizeof(buf[INFO_TRADE]), "%3d (%+4d)",
1970 pcity->surplus[O_TRADE] + pcity->waste[O_TRADE],
1971 pcity->surplus[O_TRADE]);
1972 fc_snprintf(buf[INFO_GOLD], sizeof(buf[INFO_GOLD]), "%3d (%+4d)",
1973 pcity->prod[O_GOLD], pcity->surplus[O_GOLD]);
1974 fc_snprintf(buf[INFO_LUXURY], sizeof(buf[INFO_LUXURY]), "%3d",
1975 pcity->prod[O_LUXURY]);
1976 fc_snprintf(buf[INFO_SCIENCE], sizeof(buf[INFO_SCIENCE]), "%3d",
1977 pcity->prod[O_SCIENCE]);
1978 fc_snprintf(buf[INFO_GRANARY], sizeof(buf[INFO_GRANARY]), "%4d/%-4d",
1980
1982 if (granaryturns == 0) {
1983 /* TRANS: city growth is blocked. Keep short. */
1984 fc_snprintf(buf[INFO_GROWTH], sizeof(buf[INFO_GROWTH]), _("blocked"));
1985 } else if (granaryturns == FC_INFINITY) {
1986 /* TRANS: city is not growing. Keep short. */
1987 fc_snprintf(buf[INFO_GROWTH], sizeof(buf[INFO_GROWTH]), _("never"));
1988 } else {
1989 /* A negative value means we'll have famine in that many turns.
1990 But that's handled down below. */
1991 /* TRANS: city growth turns. Keep short. */
1993 PL_("%d turn", "%d turns", abs(granaryturns)),
1994 abs(granaryturns));
1995 }
1997 pcity->waste[O_TRADE]);
1998 fc_snprintf(buf[INFO_WASTE], sizeof(buf[INFO_WASTE]), "%4d",
1999 pcity->waste[O_SHIELD]);
2000 fc_snprintf(buf[INFO_CULTURE], sizeof(buf[INFO_CULTURE]), "%4d",
2001 pcity->client.culture);
2003 pcity->pollution);
2004 if (!game.info.illness_on) {
2005 fc_snprintf(buf[INFO_ILLNESS], sizeof(buf[INFO_ILLNESS]), " -.-");
2006 } else {
2008 /* illness is in tenth of percent */
2009 fc_snprintf(buf[INFO_ILLNESS], sizeof(buf[INFO_ILLNESS]), "%5.1f%%",
2010 (float)illness / 10.0);
2011 }
2012 if (pcity->steal) {
2013 fc_snprintf(buf[INFO_STEAL], sizeof(buf[INFO_STEAL]), PL_("%d time", "%d times", pcity->steal),
2014 pcity->steal);
2015 } else {
2016 fc_snprintf(buf[INFO_STEAL], sizeof(buf[INFO_STEAL]), _("Not stolen"));
2017 }
2018
2020
2021 /* stick 'em in the labels */
2022 for (i = 0; i < NUM_INFO_FIELDS; i++) {
2024 }
2025
2026 /*
2027 * Make use of the emergency-indicating styles set up for certain labels
2028 * in create_city_info_table().
2029 */
2030 /* For starvation, the "4" below is arbitrary. 3 turns should be enough
2031 * of a warning. */
2032 if (granaryturns > -4 && granaryturns < 0) {
2034 } else {
2036 }
2037
2038 if (granaryturns == 0 || pcity->surplus[O_FOOD] < 0) {
2040 } else {
2042 }
2043
2044 /* someone could add the color &orange for better granularity here */
2045 if (pcity->pollution >= 10) {
2047 } else {
2049 }
2050
2051 /* illness is in tenth of percent, i.e 100 == 10.0% */
2052 if (illness >= 100) {
2054 } else {
2056 }
2057}
2058
2059/**********************************************************************/
2062static void city_dialog_update_map(struct city_dialog *pdialog)
2063{
2064 struct canvas store = FC_STATIC_CANVAS_INIT;
2065
2066 store.surface = pdialog->map_canvas_store_unscaled;
2067
2068 /* The drawing is done in three steps.
2069 * 1. First we render to a pixmap with the appropriate canvas size.
2070 * 2. Then the pixmap is rendered into a pixbuf of equal size.
2071 * 3. Finally this pixbuf is composited and scaled onto the GtkImage's
2072 * target pixbuf.
2073 */
2074
2075 city_dialog_redraw_map(pdialog->pcity, &store);
2076
2077 /* draw to real window */
2078 draw_map_canvas(pdialog);
2079}
2080
2081/**********************************************************************/
2084static void city_dialog_update_building(struct city_dialog *pdialog)
2085{
2086 char buf[32], buf2[200];
2087 gdouble pct;
2088
2089 GtkListStore* store;
2091 struct universal targets[MAX_NUM_PRODUCTION_TARGETS];
2092 struct item items[MAX_NUM_PRODUCTION_TARGETS];
2093 int targets_used, item;
2094 struct city *pcity = pdialog->pcity;
2096 const char *descr = city_production_name_translation(pcity);
2098
2099 if (pdialog->overview.buy_command != NULL) {
2101 }
2102 if (pdialog->production.buy_command != NULL) {
2104 }
2105
2106 /* Make sure build slots info is up to date */
2107 if (pdialog->production.production_label != NULL) {
2109
2110 /* Only display extra info if more than one slot is available */
2111 if (build_slots > 1) {
2112 fc_snprintf(buf2, sizeof(buf2),
2113 /* TRANS: never actually used with built_slots <= 1 */
2114 PL_("Production (up to %d unit per turn):",
2115 "Production (up to %d units per turn):", build_slots),
2116 build_slots);
2119 } else {
2121 GTK_LABEL(pdialog->production.production_label), _("Production:"));
2122 }
2123 }
2124
2125 /* Update what the city is working on */
2127
2128 if (cost > 0) {
2129 pct = (gdouble) pcity->shield_stock / (gdouble) cost;
2130 pct = CLAMP(pct, 0.0, 1.0);
2131 } else {
2132 pct = 1.0;
2133 }
2134
2135 if (pdialog->overview.production_bar != NULL) {
2136 fc_snprintf(buf2, sizeof(buf2), "%s%s\n%s", descr,
2137 worklist_is_empty(&pcity->worklist) ? "" : " (+)", buf);
2142 }
2143
2144 if (pdialog->production.production_bar != NULL) {
2145 fc_snprintf(buf2, sizeof(buf2), "%s%s: %s", descr,
2146 worklist_is_empty(&pcity->worklist) ? "" : " (+)", buf);
2151 }
2152
2153 if (pdialog->overview.production_combo != NULL) {
2155 -1);
2156 }
2157
2158 store = pdialog->overview.change_production_store;
2159 if (store != NULL) {
2161
2163 = collect_eventually_buildable_targets(targets, pdialog->pcity, FALSE);
2164 name_and_sort_items(targets, targets_used, items, FALSE, pcity);
2165
2166 for (item = 0; item < targets_used; item++) {
2167 if (can_city_build_now(&(wld.map), pcity, &items[item].item)) {
2168 const char *name;
2169 struct sprite* sprite;
2170 GdkPixbuf *pix;
2171 struct universal target = items[item].item;
2172 bool useless;
2173
2174 if (VUT_UTYPE == target.kind) {
2179 useless = FALSE;
2180 } else {
2183 useless = is_improvement_redundant(pcity, target.value.building);
2184 }
2186 gtk_list_store_append(store, &iter);
2187 gtk_list_store_set(store, &iter, 0, pix,
2188 1, name, 3, useless,
2189 2, (gint)cid_encode(items[item].item), -1);
2191 }
2192 }
2193 }
2194
2195 /* work around GTK+ refresh bug. */
2196 if (pdialog->overview.production_bar != NULL) {
2198 }
2199 if (pdialog->production.production_bar != NULL) {
2201 }
2202}
2203
2204/**********************************************************************/
2208{
2209 int item, targets_used;
2210 struct universal targets[MAX_NUM_PRODUCTION_TARGETS];
2211 struct item items[MAX_NUM_PRODUCTION_TARGETS];
2212 GtkTreeModel *model;
2213 GtkListStore *store;
2214
2215 const char *tooltip_sellable = _("Press <b>ENTER</b> or double-click to "
2216 "sell an improvement.");
2217 const char *tooltip_great_wonder = _("Great Wonder - cannot be sold.");
2218 const char *tooltip_small_wonder = _("Small Wonder - cannot be sold.");
2219
2220 model =
2222 store = GTK_LIST_STORE(model);
2223
2225 name_and_sort_items(targets, targets_used, items, FALSE, pdialog->pcity);
2226
2227 gtk_list_store_clear(store);
2228
2229 for (item = 0; item < targets_used; item++) {
2230 GdkPixbuf *pix;
2231 GtkTreeIter it;
2232 int upkeep;
2233 struct sprite *sprite;
2234 struct universal target = items[item].item;
2235
2236 fc_assert_action(VUT_IMPROVEMENT == target.kind, continue);
2237 /* This takes effects (like Adam Smith's) into account. */
2238 upkeep = city_improvement_upkeep(pdialog->pcity, target.value.building);
2240
2242 gtk_list_store_append(store, &it);
2243 gtk_list_store_set(store, &it,
2244 0, target.value.building,
2245 1, pix,
2246 2, items[item].descr,
2247 3, upkeep,
2248 4,
2250 target.value.building),
2251 5,
2254 (is_small_wonder(target.value.building) ?
2256 -1);
2258 }
2259}
2260
2261/**********************************************************************/
2265{
2266 struct unit_list *units;
2267 struct unit_node_vector *nodes;
2268 int n, m, i;
2269 gchar *buf;
2271 const struct civ_map *nmap = &(wld.map);
2272
2273 if (NULL != client.conn.playing
2274 && city_owner(pdialog->pcity) != client.conn.playing) {
2275 units = pdialog->pcity->client.info_units_supported;
2276 } else {
2277 units = pdialog->pcity->units_supported;
2278 }
2279
2280 nodes = &pdialog->overview.supported_units;
2281
2282 n = unit_list_size(units);
2283 m = unit_node_vector_size(nodes);
2284
2285 if (m > n) {
2286 i = 0;
2288 if (i++ >= n) {
2289 gtk_widget_destroy(elt->cmd);
2290 }
2292
2294 } else {
2295 for (i = m; i < n; i++) {
2296 GtkWidget *cmd, *pix;
2297 struct unit_node node;
2298
2299 cmd = gtk_button_new();
2300 node.cmd = cmd;
2301
2305
2306 pix = gtk_image_new();
2307 node.pix = pix;
2309
2311
2313 cmd, i, 0, 1, 1);
2314 unit_node_vector_append(nodes, node);
2315 }
2316 }
2317
2318 i = 0;
2319 unit_list_iterate(units, punit) {
2320 struct unit_node *pnode;
2321 int happy_cost = city_unit_unhappiness(nmap, punit, &free_unhappy);
2322
2323 pnode = unit_node_vector_get(nodes, i);
2324 if (pnode) {
2325 GtkWidget *cmd, *pix;
2326
2327 cmd = pnode->cmd;
2328 pix = pnode->pix;
2329
2331 punit->upkeep, happy_cost);
2332
2336
2340
2342
2343 g_signal_connect(cmd, "button_press_event",
2346
2347 g_signal_connect(cmd, "button_release_event",
2350
2351 if (city_owner(pdialog->pcity) != client.conn.playing) {
2353 } else {
2355 }
2356
2359 }
2360 i++;
2362
2363 buf = g_strdup_printf(_("Supported units %d"), n);
2365 g_free(buf);
2366}
2367
2368/**********************************************************************/
2372{
2373 struct unit_list *units;
2374 struct unit_node_vector *nodes;
2375 int n, m, i;
2376 gchar *buf;
2377
2378 if (NULL != client.conn.playing
2379 && city_owner(pdialog->pcity) != client.conn.playing) {
2380 units = pdialog->pcity->client.info_units_present;
2381 } else {
2382 units = pdialog->pcity->tile->units;
2383 }
2384
2385 nodes = &pdialog->overview.present_units;
2386
2387 n = unit_list_size(units);
2388 m = unit_node_vector_size(nodes);
2389
2390 if (m > n) {
2391 i = 0;
2393 if (i++ >= n) {
2394 gtk_widget_destroy(elt->cmd);
2395 }
2397
2399 } else {
2400 for (i = m; i < n; i++) {
2401 GtkWidget *cmd, *pix;
2402 struct unit_node node;
2403
2404 cmd = gtk_button_new();
2405 node.cmd = cmd;
2406
2410
2411 pix = gtk_image_new();
2412 node.pix = pix;
2414
2416
2418 cmd, i, 0, 1, 1);
2419 unit_node_vector_append(nodes, node);
2420 }
2421 }
2422
2423 i = 0;
2424 unit_list_iterate(units, punit) {
2425 struct unit_node *pnode;
2426
2427 pnode = unit_node_vector_get(nodes, i);
2428 if (pnode) {
2429 GtkWidget *cmd, *pix;
2430
2431 cmd = pnode->cmd;
2432 pix = pnode->pix;
2433
2435
2439
2443
2445
2446 g_signal_connect(cmd, "button_press_event",
2449
2450 g_signal_connect(cmd, "button_release_event",
2453
2454 if (city_owner(pdialog->pcity) != client.conn.playing) {
2456 } else {
2458 }
2459
2462 }
2463 i++;
2465
2466 buf = g_strdup_printf(_("Present units %d"), n);
2468 g_free(buf);
2469}
2470
2471/**********************************************************************/
2479{
2480 int count = 0;
2481 int city_number;
2482
2483 if (NULL != client.conn.playing) {
2485 } else {
2486 city_number = FC_INFINITY; /* ? */
2487 }
2488
2489 /* the first time, we see if all the city dialogs are open */
2490
2492 if (city_owner(pdialog->pcity) == client.conn.playing)
2493 count++;
2494 }
2496
2497 if (count == city_number) { /* all are open, shouldn't prev/next */
2499 gtk_widget_set_sensitive(GTK_WIDGET(pdialog->prev_command), FALSE);
2500 gtk_widget_set_sensitive(GTK_WIDGET(pdialog->next_command), FALSE);
2501 }
2503 } else {
2505 if (city_owner(pdialog->pcity) == client.conn.playing) {
2506 gtk_widget_set_sensitive(GTK_WIDGET(pdialog->prev_command), TRUE);
2507 gtk_widget_set_sensitive(GTK_WIDGET(pdialog->next_command), TRUE);
2508 }
2509 }
2511 }
2512}
2513
2514/**********************************************************************/
2517static void citydlg_response_callback(GtkDialog *dlg, gint response,
2518 void *data)
2519{
2520 switch (response) {
2521 case CDLGR_UNITS:
2522 show_units_response(data);
2523 break;
2524 }
2525}
2526
2527/**********************************************************************/
2530static void show_units_response(void *data)
2531{
2532 struct city_dialog *pdialog = (struct city_dialog *) data;
2533 struct tile *ptile = pdialog->pcity->tile;
2534
2535 if (unit_list_size(ptile->units)) {
2537 }
2538}
2539
2540/**********************************************************************/
2543static void destroy_func(GtkWidget *w, gpointer data)
2544{
2546}
2547
2548/**********************************************************************/
2552 gpointer data)
2553{
2554 GtkWidget *menu, *item;
2555 struct city_dialog *pdialog;
2556 struct city *pcity;
2557 struct unit *punit =
2558 player_unit_by_number(client_player(), (size_t) data);
2559
2560 if (NULL != punit
2562 && NULL != (pdialog = get_city_dialog(pcity))) {
2563
2564 if (ev->type != GDK_BUTTON_PRESS || ev->button == 2 || ev->button == 3
2566 return FALSE;
2567 }
2568
2569 menu = pdialog->popup_menu;
2570
2573
2575 g_signal_connect(item, "activate",
2579
2580 item = gtk_menu_item_new_with_mnemonic(_("_Activate unit"));
2581 g_signal_connect(item, "activate",
2585
2586 item = gtk_menu_item_new_with_mnemonic(_("Activate unit, _close dialog"));
2587 g_signal_connect(item, "activate",
2591
2592 item = gtk_menu_item_new_with_mnemonic(_("_Disband unit"));
2593 g_signal_connect(item, "activate",
2597
2600 }
2601
2602 gtk_widget_show_all(menu);
2603
2605 }
2606
2607 return TRUE;
2608}
2609
2610/**********************************************************************/
2614 gpointer data)
2615{
2616 GtkWidget *menu, *item;
2617 struct city_dialog *pdialog;
2618 struct city *pcity;
2619 struct unit *punit =
2620 player_unit_by_number(client_player(), (size_t) data);
2621
2622 if (NULL != punit
2623 && NULL != (pcity = tile_city(unit_tile(punit)))
2624 && NULL != (pdialog = get_city_dialog(pcity))) {
2625
2626 if (ev->type != GDK_BUTTON_PRESS || ev->button == 2 || ev->button == 3
2628 return FALSE;
2629 }
2630
2631 menu = pdialog->popup_menu;
2632
2635
2636 item = gtk_menu_item_new_with_mnemonic(_("_Activate unit"));
2637 g_signal_connect(item, "activate",
2641
2642 item = gtk_menu_item_new_with_mnemonic(_("Activate unit, _close dialog"));
2643 g_signal_connect(item, "activate",
2647
2648 item = gtk_menu_item_new_with_mnemonic(_("_Load unit"));
2649 g_signal_connect(item, "activate",
2653
2654 if (!unit_can_load(punit)) {
2656 }
2657
2658 item = gtk_menu_item_new_with_mnemonic(_("_Unload unit"));
2659 g_signal_connect(item, "activate",
2663
2667 }
2668
2669 item = gtk_menu_item_new_with_mnemonic(_("_Sentry unit"));
2670 g_signal_connect(item, "activate",
2674
2678 }
2679
2680 item = gtk_menu_item_new_with_mnemonic(_("_Fortify unit"));
2681 g_signal_connect(item, "activate",
2685
2689 }
2690
2691 item = gtk_menu_item_new_with_mnemonic(_("_Disband unit"));
2692 g_signal_connect(item, "activate",
2696
2699 }
2700
2703 g_signal_connect(item, "activate",
2708 punit, pcity));
2709
2710 item = gtk_menu_item_new_with_mnemonic(_("U_pgrade unit"));
2712 g_signal_connect(item, "activate",
2716
2719 unit_type_get(punit))) {
2721 }
2722
2723 gtk_widget_show_all(menu);
2724
2726 }
2727
2728 return TRUE;
2729}
2730
2731/**********************************************************************/
2736 gpointer data)
2737{
2738 struct city_dialog *pdialog;
2739 struct city *pcity;
2740 struct unit *punit =
2741 player_unit_by_number(client_player(), (size_t) data);
2742
2743 if (NULL != punit
2744 && NULL != (pcity = tile_city(unit_tile(punit)))
2745 && NULL != (pdialog = get_city_dialog(pcity))
2747
2748 if (ev->button == 3) {
2750 } else if (ev->button == 2) {
2752 close_city_dialog(pdialog);
2753 }
2754 }
2755
2756 return TRUE;
2757}
2758
2759/**********************************************************************/
2764 gpointer data)
2765{
2766 struct city_dialog *pdialog;
2767 struct city *pcity;
2768 struct unit *punit =
2769 player_unit_by_number(client_player(), (size_t) data);
2770
2771 if (NULL != punit
2773 && NULL != (pdialog = get_city_dialog(pcity))
2775
2776 if (ev->button == 3) {
2778 } else if (ev->button == 2) {
2780 close_city_dialog(pdialog);
2781 }
2782 }
2783
2784 return TRUE;
2785}
2786
2787/**********************************************************************/
2791{
2792 struct unit *punit =
2793 player_unit_by_number(client_player(), (size_t)data);
2794
2795 if (NULL != punit) {
2797 }
2798}
2799
2800/**********************************************************************/
2804{
2805 struct unit *punit =
2806 player_unit_by_number(client_player(), (size_t)data);
2807
2808 if (NULL != punit) {
2810 }
2811}
2812
2813/**********************************************************************/
2818 gpointer data)
2819{
2820 struct unit *punit =
2821 player_unit_by_number(client_player(), (size_t)data);
2822
2823 if (NULL != punit) {
2824 struct city *pcity =
2826
2828 if (NULL != pcity) {
2829 struct city_dialog *pdialog = get_city_dialog(pcity);
2830
2831 if (NULL != pdialog) {
2832 close_city_dialog(pdialog);
2833 }
2834 }
2835 }
2836}
2837
2838/**********************************************************************/
2843 gpointer data)
2844{
2845 struct unit *punit =
2846 player_unit_by_number(client_player(), (size_t)data);
2847
2848 if (NULL != punit) {
2849 struct city *pcity = tile_city(unit_tile(punit));
2850
2852 if (NULL != pcity) {
2853 struct city_dialog *pdialog = get_city_dialog(pcity);
2854
2855 if (NULL != pdialog) {
2856 close_city_dialog(pdialog);
2857 }
2858 }
2859 }
2860}
2861
2862/**********************************************************************/
2866{
2867 struct unit *punit =
2868 player_unit_by_number(client_player(), (size_t)data);
2869
2870 if (NULL != punit) {
2872 }
2873}
2874
2875/**********************************************************************/
2879{
2880 struct unit *punit =
2881 player_unit_by_number(client_player(), (size_t)data);
2882
2883 if (NULL != punit) {
2885 }
2886}
2887
2888/**********************************************************************/
2892{
2893 struct unit *punit =
2894 player_unit_by_number(client_player(), (size_t)data);
2895
2896 if (NULL != punit) {
2898 }
2899}
2900
2901/**********************************************************************/
2905{
2906 struct unit *punit =
2907 player_unit_by_number(client_player(), (size_t)data);
2908
2909 if (NULL != punit) {
2911 }
2912}
2913
2914/**********************************************************************/
2918{
2919 struct unit_list *punits;
2920 struct unit *punit =
2921 player_unit_by_number(client_player(), (size_t)data);
2922
2923 if (NULL == punit) {
2924 return;
2925 }
2926
2931}
2932
2933/**********************************************************************/
2938{
2939 struct unit *punit =
2940 player_unit_by_number(client_player(), (size_t)data);
2941
2942 if (NULL != punit) {
2944 }
2945}
2946
2947/**********************************************************************/
2951{
2952 struct unit_list *punits;
2953 struct unit *punit =
2954 player_unit_by_number(client_player(), (size_t)data);
2955
2956 if (NULL == punit) {
2957 return;
2958 }
2959
2964}
2965
2966/******** Callbacks for citizen bar, map funcs that are not update *******/
2967/**********************************************************************/
2972 gpointer data)
2973{
2974 struct city_dialog *pdialog = data;
2975 struct city *pcity = pdialog->pcity;
2976 int citnum, tlen, len;
2977
2978 if (!can_client_issue_orders()) {
2979 return FALSE;
2980 }
2981
2983 len = (city_size_get(pcity) - 1) * pdialog->cwidth + tlen;
2984 if (ev->x > len) {
2985 /* no citizen that far to the right */
2986 return FALSE;
2987 }
2988 citnum = MIN(city_size_get(pcity) - 1, ev->x / pdialog->cwidth);
2989
2991
2992 return TRUE;
2993}
2994
2995/**********************************************************************/
2999{
3000 enum unit_activity act = (enum unit_activity)GPOINTER_TO_INT(data);
3001 struct city *pcity = workertask_req.owner;
3002 struct tile *ptile = workertask_req.loc;
3003 struct packet_worker_task task;
3004
3005 task.city_id = pcity->id;
3006
3007 if (act == ACTIVITY_LAST) {
3008 task.tgt = -1;
3009 task.want = 0;
3010 } else {
3011 enum extra_cause cause = activity_to_extra_cause(act);
3013 struct extra_type *tgt;
3014
3015 if (cause != EC_NONE) {
3016 tgt = next_extra_for_tile(ptile, cause, city_owner(pcity), NULL);
3017 } else if (rmcause != ERM_NONE) {
3019 } else {
3020 tgt = NULL;
3021 }
3022
3023 if (tgt == NULL) {
3024 struct terrain *pterr = tile_terrain(ptile);
3025
3026 if ((act != ACTIVITY_TRANSFORM
3027 || pterr->transform_result == NULL || pterr->transform_result == pterr)
3028 && (act != ACTIVITY_CULTIVATE || pterr->cultivate_result == NULL)
3029 && (act != ACTIVITY_PLANT || pterr->plant_result == NULL)) {
3030 /* No extra to order */
3031 output_window_append(ftc_client, _("There's no suitable extra to order."));
3032
3033 return;
3034 }
3035
3036 task.tgt = -1;
3037 } else {
3038 task.tgt = extra_index(tgt);
3039 }
3040
3041 task.want = 100;
3042 }
3043
3044 task.tile_id = ptile->index;
3045 task.activity = act;
3046
3048}
3049
3050/**********************************************************************/
3057
3058/**********************************************************************/
3061static void popup_workertask_dlg(struct city *pcity, struct tile *ptile)
3062{
3064 GtkWidget *shl;
3065 struct terrain *pterr = tile_terrain(ptile);
3066 struct universal for_terr = { .kind = VUT_TERRAIN,
3067 .value = { .terrain = pterr }};
3068 struct worker_task *ptask;
3069
3071 workertask_req.owner = pcity;
3072 workertask_req.loc = ptile;
3073
3075 _("What Action to Request"),
3076 _("Select autoworker activity:"));
3077
3078 ptask = worker_task_list_get(pcity->task_reqs, 0);
3079 if (ptask != NULL) {
3080 choice_dialog_add(shl, _("Clear request"),
3083 }
3084
3086 choice_dialog_add(shl, Q_("?act:Mine"),
3089 }
3090 if (pterr->plant_result != NULL
3092 NULL, &for_terr)) {
3093 choice_dialog_add(shl, _("Plant"),
3096 }
3098 choice_dialog_add(shl, _("Irrigate"),
3101 }
3102 if (pterr->cultivate_result != NULL
3104 NULL, &for_terr)) {
3105 choice_dialog_add(shl, _("Cultivate"),
3108 }
3110 choice_dialog_add(shl, _("Road"),
3113 }
3114 if (pterr->transform_result != pterr && pterr->transform_result != NULL
3116 NULL, &for_terr)) {
3117 choice_dialog_add(shl, _("Transform"),
3120 }
3122 city_owner(pcity), NULL) != NULL) {
3123 choice_dialog_add(shl, _("Clean"),
3126 }
3127
3128 choice_dialog_add(shl, _("_Cancel"), 0, 0, FALSE, NULL);
3130
3132 NULL);
3133 }
3134}
3135
3136/**********************************************************************/
3140 gpointer data)
3141{
3142 struct city_dialog *pdialog = data;
3144
3145 if (!can_client_issue_orders()) {
3146 return FALSE;
3147 }
3148
3149 if (ev->button == 1 && cma_is_city_under_agent(pdialog->pcity, NULL)) {
3150 return FALSE;
3151 }
3152
3153 canvas_x = ev->x * (double)canvas_width / (double)CITYMAP_WIDTH;
3154 canvas_y = ev->y * (double)canvas_height / (double)CITYMAP_HEIGHT;
3155
3157 city_map_radius_sq_get(pdialog->pcity),
3158 canvas_x, canvas_y)) {
3159 if (ev->button == 1) {
3161 } else if (ev->button == 3) {
3162 struct city *pcity = pdialog->pcity;
3163
3164 popup_workertask_dlg(pdialog->pcity,
3167 city_x, city_y));
3168 }
3169 }
3170
3171 return TRUE;
3172}
3173
3174/**********************************************************************/
3177static void draw_map_canvas(struct city_dialog *pdialog)
3178{
3180 if (pdialog->happiness.map_canvas.darea) { /* in case of spy */
3182 }
3183}
3184
3185/************** Callbacks for Buy, Change, Sell, Worklist ****************/
3186/**********************************************************************/
3189static void buy_callback_response(GtkWidget *w, gint response, gpointer data)
3190{
3191 struct city_dialog *pdialog = data;
3192
3193 if (response == GTK_RESPONSE_YES) {
3194 city_buy_production(pdialog->pcity);
3195 }
3197}
3198
3199/**********************************************************************/
3202static void buy_callback(GtkWidget *w, gpointer data)
3203{
3205 struct city_dialog *pdialog = data;
3206 const char *name = city_production_name_translation(pdialog->pcity);
3207 int value = pdialog->pcity->client.buy_cost;
3208 char buf[1024];
3209
3210 if (!can_client_issue_orders()) {
3211 return;
3212 }
3213
3214 fc_snprintf(buf, ARRAY_SIZE(buf), PL_("Treasury contains %d gold.",
3215 "Treasury contains %d gold.",
3216 client_player()->economic.gold),
3217 client_player()->economic.gold);
3218
3219 if (value <= client_player()->economic.gold) {
3223 /* TRANS: Last %s is pre-pluralised "Treasury contains %d gold." */
3224 PL_("Buy %s for %d gold?\n%s",
3225 "Buy %s for %d gold?\n%s", value),
3226 name, value, buf);
3227 setup_dialog(shell, pdialog->shell);
3228 gtk_window_set_title(GTK_WINDOW(shell), _("Buy It!"));
3231 pdialog);
3233 } else {
3237 /* TRANS: Last %s is pre-pluralised "Treasury contains %d gold." */
3238 PL_("%s costs %d gold.\n%s",
3239 "%s costs %d gold.\n%s", value),
3240 name, value, buf);
3241 setup_dialog(shell, pdialog->shell);
3242 gtk_window_set_title(GTK_WINDOW(shell), _("Buy It!"));
3244 NULL);
3246 }
3247}
3248
3249/**********************************************************************/
3253 struct city_dialog *pdialog)
3254{
3256
3258 && gtk_combo_box_get_active_iter(combo, &iter)) {
3259 cid id;
3260 struct universal univ;
3261
3262 gtk_tree_model_get(gtk_combo_box_get_model(combo), &iter, 2, &id, -1);
3263 univ = cid_production(id);
3264 city_change_production(pdialog->pcity, &univ);
3265 }
3266}
3267
3268/**********************************************************************/
3271static void sell_callback(struct impr_type *pimprove, gpointer data)
3272{
3273 GtkWidget *shl;
3274 struct city_dialog *pdialog = (struct city_dialog *) data;
3275 pdialog->sell_id = improvement_number(pimprove);
3276 int price;
3277
3278 if (!can_client_issue_orders()) {
3279 return;
3280 }
3281
3283 pimprove) != TR_SUCCESS) {
3284 return;
3285 }
3286
3287 price = impr_sell_gold(pimprove);
3292 PL_("Sell %s for %d gold?",
3293 "Sell %s for %d gold?", price),
3294 city_improvement_name_translation(pdialog->pcity, pimprove), price);
3295 setup_dialog(shl, pdialog->shell);
3296 pdialog->sell_shell = shl;
3297
3298 gtk_window_set_title(GTK_WINDOW(shl), _("Sell It!"));
3300
3301 g_signal_connect(shl, "response",
3303
3305}
3306
3307/**********************************************************************/
3310static void sell_callback_response(GtkWidget *w, gint response, gpointer data)
3311{
3312 struct city_dialog *pdialog = data;
3313
3314 if (response == GTK_RESPONSE_YES) {
3315 city_sell_improvement(pdialog->pcity, pdialog->sell_id);
3316 }
3318
3319 pdialog->sell_shell = NULL;
3320}
3321
3322/**********************************************************************/
3327{
3328 GtkTreeModel *model;
3329 GtkTreeIter it;
3330 GdkWindow *win;
3331 GdkSeat *seat;
3333 struct impr_type *pimprove;
3334
3336
3337 if (!gtk_tree_model_get_iter(model, &it, path)) {
3338 return;
3339 }
3340
3341 gtk_tree_model_get(model, &it, 0, &pimprove, -1);
3342
3345
3347 NULL, NULL, &mask);
3348
3349 if (!(mask & GDK_CONTROL_MASK)) {
3350 sell_callback(pimprove, data);
3351 } else {
3352 if (is_great_wonder(pimprove)) {
3354 } else {
3356 }
3357 }
3358}
3359
3360/************ Callbacks for stuff on the Misc. Settings page *************/
3361/**********************************************************************/
3365{
3366 struct city_dialog *pdialog;
3367
3368 pdialog = (struct city_dialog *) data;
3369
3370 pdialog->rename_shell = input_dialog_create(GTK_WINDOW(pdialog->shell),
3371 /* "shellrenamecity" */
3372 _("Rename City"),
3373 _("What should we rename the city to?"),
3374 city_name_get(pdialog->pcity),
3375 rename_popup_callback, pdialog);
3376}
3377
3378/**********************************************************************/
3381static void rename_popup_callback(gpointer data, gint response,
3382 const char *input)
3383{
3384 struct city_dialog *pdialog = data;
3385
3386 if (pdialog) {
3387 if (response == GTK_RESPONSE_OK) {
3388 city_rename(pdialog->pcity, input);
3389 } /* else CANCEL or DELETE_EVENT */
3390
3391 pdialog->rename_shell = NULL;
3392 }
3393}
3394
3395/**********************************************************************/
3399{
3401}
3402
3403/**********************************************************************/
3407{
3408 struct city_dialog *pdialog = (struct city_dialog *) data;
3409
3410 if (!can_client_issue_orders()) {
3411 return;
3412 }
3413
3414 if (!pdialog->misc.block_signal) {
3415 struct city *pcity = pdialog->pcity;
3417
3418 fc_assert(CITYO_LAST == 3);
3419
3423 }
3426 }
3429 }
3430
3432 pcity->wlcb);
3433 }
3434}
3435
3436/**********************************************************************/
3461
3462/******************** Callbacks for: Close, Prev, Next. ******************/
3463/**********************************************************************/
3466static void close_callback(GtkWidget *w, gpointer data)
3467{
3468 close_city_dialog((struct city_dialog *) data);
3469}
3470
3471/**********************************************************************/
3475{
3476 struct city_dialog *pdialog;
3477 int width, height;
3479
3480 pdialog = (struct city_dialog *) data;
3481
3485
3486 gtk_widget_hide(pdialog->shell);
3487
3489 citizens_dialog_close(pdialog->pcity);
3490 }
3491 close_happiness_dialog(pdialog->pcity);
3492 close_cma_dialog(pdialog->pcity);
3493
3494 /* Save size of the city dialog. */
3497 width,
3501 height,
3503
3504 last_page
3506
3507 if (pdialog->popup_menu) {
3509 }
3510
3512
3515
3516 if (pdialog->sell_shell) {
3518 }
3519 if (pdialog->rename_shell) {
3521 }
3522
3525
3526 free(pdialog);
3527
3528 /* need to do this every time a new dialog is closed. */
3530}
3531
3532/**********************************************************************/
3535static void close_city_dialog(struct city_dialog *pdialog)
3536{
3537 gtk_widget_destroy(pdialog->shell);
3538}
3539
3540/**********************************************************************/
3545{
3546 struct city_dialog *pdialog = (struct city_dialog *) data;
3547 int i, j, dir, size;
3548 struct city *new_pcity = NULL;
3549
3551 return;
3552 }
3553
3555
3557 fc_assert_ret(size >= 1);
3559
3560 if (size == 1) {
3561 return;
3562 }
3563
3564 /* dir = 1 will advance to the city, dir = -1 will get previous */
3565 if (w == GTK_WIDGET(pdialog->next_command)) {
3566 dir = 1;
3567 } else if (w == GTK_WIDGET(pdialog->prev_command)) {
3568 dir = -1;
3569 } else {
3570 /* Always fails. */
3572 || w == GTK_WIDGET(pdialog->prev_command));
3573 dir = 1;
3574 }
3575
3576 for (i = 0; i < size; i++) {
3577 if (pdialog->pcity == city_list_get(client.conn.playing->cities, i)) {
3578 break;
3579 }
3580 }
3581
3582 fc_assert_ret(i < size);
3583
3584 for (j = 1; j < size; j++) {
3586 (i + dir * j + size) % size);
3588
3589 fc_assert_ret(other_pdialog != pdialog);
3590 if (!other_pdialog) {
3592 break;
3593 }
3594 }
3595
3596 if (!new_pcity) {
3597 /* Every other city has an open city dialog. */
3598 return;
3599 }
3600
3601 /* cleanup happiness dialog */
3603 citizens_dialog_close(pdialog->pcity);
3604 }
3605 close_happiness_dialog(pdialog->pcity);
3606
3607 pdialog->pcity = new_pcity;
3608
3609 /* reinitialize happiness, and cma dialogs */
3612 citizens_dialog_display(pdialog->pcity));
3613 }
3615 get_top_happiness_display(pdialog->pcity, low_citydlg, pdialog->shell));
3616 if (!client_is_observer()) {
3617 fc_assert(pdialog->cma_editor != NULL);
3618 pdialog->cma_editor->pcity = new_pcity;
3619 }
3620
3621 reset_city_worklist(pdialog->production.worklist, pdialog->pcity);
3622
3623 can_slide = FALSE;
3624 center_tile_mapcanvas(pdialog->pcity->tile);
3625 can_slide = TRUE;
3626 if (!client_is_observer()) {
3627 set_cityopt_values(pdialog); /* need not be in real_city_dialog_refresh */
3628 }
3629
3631
3632 /* recenter the city map(s) */
3634 if (pdialog->happiness.map_canvas.sw) {
3636 }
3637}
const char * action_id_name_translation(action_id act_id)
Definition actions.c:1271
bool action_ever_possible(action_id action)
Definition actions.c:7489
#define action_id_univs_not_blocking(act_id, act_uni, tgt_uni)
Definition actions.h:740
#define n
Definition astring.c:77
#define BV_CLR_ALL(bv)
Definition bitvector.h:103
#define BV_SET(bv, bit)
Definition bitvector.h:89
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:2132
int city_build_slots(const struct city *pcity)
Definition city.c:2932
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
int city_superspecialists(const struct city *pcity)
Definition city.c:3358
const char * city_name_get(const struct city *pcity)
Definition city.c:1137
int city_improvement_upkeep(const struct city *pcity, const struct impr_type *b)
Definition city.c:1255
bool is_city_option_set(const struct city *pcity, enum city_options option)
Definition city.c:3428
int city_population(const struct city *pcity)
Definition city.c:1191
int city_unit_unhappiness(const struct civ_map *nmap, struct unit *punit, int *free_unhappy)
Definition city.c:3049
bool city_unhappy(const struct city *pcity)
Definition city.c:1626
bool city_celebrating(const struct city *pcity)
Definition city.c:1645
int city_illness_calc(const struct city *pcity, int *ill_base, int *ill_size, int *ill_trade, int *ill_pollution)
Definition city.c:2870
bool city_happy(const struct city *pcity)
Definition city.c:1614
int city_map_radius_sq_get(const struct city *pcity)
Definition city.c:137
citizens city_specialists(const struct city *pcity)
Definition city.c:3343
bool can_city_build_now(const struct civ_map *nmap, const struct city *pcity, const struct universal *target)
Definition city.c:1013
int city_turns_to_grow(const struct city *pcity)
Definition city.c:1996
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:265
#define city_owner(_pcity_)
Definition city.h:563
#define MAX_CITY_SIZE
Definition city.h:104
@ FEELING_FINAL
Definition city.h:282
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)
int city_try_fill_superspecialists(struct city *pcity, int cat_len, enum citizen_category *categories)
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:819
void name_and_sort_items(struct universal *targets, int num_targets, struct item *items, bool show_cost, struct city *pcity)
Definition climisc.c:650
cid cid_encode(struct universal target)
Definition climisc.c:483
int collect_already_built_targets(struct universal *targets, struct city *pcity)
Definition climisc.c:913
#define MAX_NUM_PRODUCTION_TARGETS
Definition climisc.h:89
#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:552
char * incite_cost
Definition comments.c:76
void request_unit_fortify(struct unit *punit)
Definition control.c:2353
void unit_focus_set(struct unit *punit)
Definition control.c:506
void request_unit_change_homecity(struct unit *punit)
Definition control.c:2094
void request_unit_unload(struct unit *pcargo)
Definition control.c:2194
void request_unit_sentry(struct unit *punit)
Definition control.c:2342
#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 const struct action *paction struct unit struct city * pcity
Definition dialogs_g.h:78
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:236
#define EC_NONE
Definition fc_types.h:806
@ TR_SUCCESS
Definition fc_types.h:939
#define ERM_NONE
Definition fc_types.h:829
@ O_SHIELD
Definition fc_types.h:102
@ O_FOOD
Definition fc_types.h:102
@ O_TRADE
Definition fc_types.h:102
@ O_SCIENCE
Definition fc_types.h:102
@ O_LUXURY
Definition fc_types.h:102
@ O_GOLD
Definition fc_types.h:102
#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:742
struct civ_game game
Definition game.c:62
struct world wld
Definition game.c:63
struct city * game_city_by_number(int id)
Definition game.c:107
#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:2891
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:2950
static void popup_workertask_dlg(struct city *pcity, struct tile *ptile)
Definition citydlg.c:3061
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:3474
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
#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:3398
static bool low_citydlg
Definition citydlg.c:230
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:2084
static void citydlg_response_callback(GtkDialog *dlg, gint response, void *data)
Definition citydlg.c:2517
static void buy_callback_response(GtkWidget *w, gint response, gpointer data)
Definition citydlg.c:3189
static gboolean present_unit_middle_callback(GtkWidget *w, GdkEventButton *ev, gpointer data)
Definition citydlg.c:2734
void real_city_dialog_refresh(struct city *pcity)
Definition citydlg.c:487
static void unit_center_callback(GtkWidget *w, gpointer data)
Definition citydlg.c:2790
static struct city_dialog * get_city_dialog(struct city *pcity)
Definition citydlg.c:387
@ 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
#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:1943
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:3053
static void city_dialog_update_present_units(struct city_dialog *pdialog)
Definition citydlg.c:2371
#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:2971
static void change_production_callback(GtkComboBox *combo, struct city_dialog *pdialog)
Definition citydlg.c:3252
static void unit_load_callback(GtkWidget *w, gpointer data)
Definition citydlg.c:2865
static void set_cityopt_values(struct city_dialog *pdialog)
Definition citydlg.c:3440
static void close_city_dialog(struct city_dialog *pdialog)
Definition citydlg.c:3535
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:3202
#define dialog_list_iterate_end
Definition citydlg.c:93
static void impr_callback(GtkTreeView *view, GtkTreePath *path, GtkTreeViewColumn *col, gpointer data)
Definition citydlg.c:3325
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:3406
static void city_dialog_map_recenter(GtkWidget *map_canvas_sw)
Definition citydlg.c:462
@ 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
static void draw_map_canvas(struct city_dialog *pdialog)
Definition citydlg.c:3177
static struct @145 workertask_req
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:3271
#define dialog_list_iterate(dialoglist, pdialog)
Definition citydlg.c:91
static void supported_unit_activate_close_callback(GtkWidget *w, gpointer data)
Definition citydlg.c:2817
static void city_dialog_update_prev_next(void)
Definition citydlg.c:2478
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:3466
static struct dialog_list * dialog_list
Definition citydlg.c:216
static void sell_callback_response(GtkWidget *w, gint response, gpointer data)
Definition citydlg.c:3310
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:2543
static void unit_homecity_callback(GtkWidget *w, gpointer data)
Definition citydlg.c:2937
static void unit_fortify_callback(GtkWidget *w, gpointer data)
Definition citydlg.c:2904
static gboolean supported_unit_middle_callback(GtkWidget *w, GdkEventButton *ev, gpointer data)
Definition citydlg.c:2762
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:2613
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:2917
#define unit_node_vector_iterate(list, elt)
Definition citydlg.c:106
static void rename_callback(GtkWidget *w, gpointer data)
Definition citydlg.c:3364
static void switch_city_callback(GtkWidget *w, gpointer data)
Definition citydlg.c:3544
static gboolean button_down_citymap(GtkWidget *w, GdkEventButton *ev, gpointer data)
Definition citydlg.c:3139
#define CITYMAP_WIDTH
Definition citydlg.c:74
static void city_dialog_update_map(struct city_dialog *pdialog)
Definition citydlg.c:2062
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:2878
static void show_units_response(void *data)
Definition citydlg.c:2530
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:2264
static void unit_activate_callback(GtkWidget *w, gpointer data)
Definition citydlg.c:2803
static void present_unit_activate_close_callback(GtkWidget *w, gpointer data)
Definition citydlg.c:2842
static void set_city_workertask(GtkWidget *w, gpointer data)
Definition citydlg.c:2998
static void rename_popup_callback(gpointer data, gint response, const char *input)
Definition citydlg.c:3381
static void city_dialog_update_improvement_list(struct city_dialog *pdialog)
Definition citydlg.c:2207
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:2551
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:126
GtkWidget * map_canvas
Definition gui_main.c:108
int screen_height(void)
Definition gui_main.c:2594
#define GUI_GTK_OPTION(optname)
Definition gui_main.h:32
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:192
#define fc_assert(condition)
Definition log.h:177
#define fc_assert_action(condition, action)
Definition log.h:188
#define log_debug(message,...)
Definition log.h:116
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, enum city_wl_cancel_behavior wl_cb)
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:350
bool unit_can_load(const struct unit *punit)
Definition movement.c:916
static const char * name_translation_get(const struct name_translation *ptrans)
#define GUI_GTK3_22_CITYDLG_MIN_YSIZE
Definition options.h:675
#define GUI_GTK3_22_CITYDLG_MAX_XSIZE
Definition options.h:672
#define GUI_GTK3_22_CITYDLG_MIN_XSIZE
Definition options.h:671
#define GUI_GTK3_22_CITYDLG_MAX_YSIZE
Definition options.h:676
int len
Definition packhand.c:128
struct unit * player_unit_by_number(const struct player *pplayer, int unit_id)
Definition player.c:1237
struct city * player_city_by_number(const struct player *pplayer, int city_id)
Definition player.c:1211
#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
GtkWidget * name_label
Definition citydlg.c:141
GtkWidget * citizen_images
Definition citydlg.c:146
GtkWidget * rename_shell
Definition citydlg.c:205
GtkWidget * info_ebox[NUM_INFO_FIELDS]
Definition citydlg.c:166
enum city_dialog::@220 page
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 city_dialog::@148 happiness
struct unit_node_vector present_units
Definition citydlg.c:164
city_map * view
Definition citydlg.h:446
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
struct city_dialog::@150 misc
struct cma_dialog * cma_editor
Definition citydlg.c:193
cairo_surface_t * citizen_surface
Definition citydlg.c:147
GtkWidget * shell
Definition citydlg.c:140
GtkWidget * worklist
Definition citydlg.c:176
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
struct city_dialog::@149 counters
GtkWidget * notebook
Definition citydlg.c:143
struct city_dialog::@146 overview
GtkWidget * next_command
Definition citydlg.c:209
GtkTreeSelection * change_selection
Definition citydlg.c:204
struct city_dialog::@147 production
GtkWidget * darea
Definition citydlg.c:134
GtkWidget * sw
Definition citydlg.c:132
GtkWidget * ebox
Definition citydlg.c:133
Definition city.h:318
int * counter_values
Definition city.h:406
struct unit_list * info_units_present
Definition city.h:474
struct unit_list * info_units_supported
Definition city.h:473
citizens size
Definition city.h:330
int illness
Definition city.h:432
int buy_cost
Definition city.h:466
struct city::@18::@21 client
struct tile * tile
Definition city.h:320
struct unit_list * units_supported
Definition city.h:404
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:82
struct universal item
Definition climisc.h:83
char descr[MAX_LEN_NAME+40]
Definition climisc.h:84
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
struct tile * tile
Definition unit.h:142
struct unit::@84::@86 client
int homecity
Definition unit.h:148
struct player * owner
Definition unit.h:145
enum universals_n kind
Definition fc_types.h:593
universals_u value
Definition fc_types.h:592
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:528
struct city * tile_city(const struct tile *ptile)
Definition tile.c:83
#define tile_terrain(_tile)
Definition tile.h:115
struct sprite * get_building_sprite(const struct tileset *t, const struct impr_type *pimprove)
Definition tilespec.c:7023
int tileset_small_sprite_width(const struct tileset *t)
Definition tilespec.c:927
int tileset_full_tile_height(const struct tileset *t)
Definition tilespec.c:815
int tileset_small_sprite_height(const struct tileset *t)
Definition tilespec.c:963
struct sprite * get_icon_sprite(const struct tileset *t, enum icon_type icon)
Definition tilespec.c:7227
int tileset_unit_with_upkeep_height(const struct tileset *t)
Definition tilespec.c:885
struct sprite * get_citizen_sprite(const struct tileset *t, enum citizen_category type, int citizen_index, const struct city *pcity)
Definition tilespec.c:6962
struct sprite * get_unittype_sprite(const struct tileset *t, const struct unit_type *punittype, enum unit_activity activity, enum direction8 facing)
Definition tilespec.c:7045
@ ICON_CITYDLG
Definition tilespec.h:316
const struct unit_type * utype
Definition fc_types.h:535
const struct impr_type * building
Definition fc_types.h:528
bool can_unit_change_homecity_to(const struct civ_map *nmap, const struct unit *punit, const struct city *pcity)
Definition unit.c:508
struct unit * unit_transport_get(const struct unit *pcargo)
Definition unit.c:2545
bool unit_can_do_action(const struct unit *punit, const action_id act_id)
Definition unit.c:402
bool can_unit_unload(const struct unit *pcargo, const struct unit *ptrans)
Definition unit.c:795
#define unit_tile(_pu)
Definition unit.h:407
#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:126
const struct unit_type * can_upgrade_unittype(const struct player *pplayer, const struct unit_type *punittype)
Definition unittype.c:1729
const char * utype_name_translation(const struct unit_type *punittype)
Definition unittype.c:1586
void economy_report_dialog_update(void)
bool worklist_is_empty(const struct worklist *pwl)
Definition worklist.c:66