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-4.0 */
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
95struct unit_node {
98 int height;
102};
103
104/* Get 'struct unit_node' and related function */
105#define SPECVEC_TAG unit_node
106#define SPECVEC_TYPE struct unit_node
107#include "specvec.h"
108
109#define unit_node_vector_iterate(list, elt) \
110 TYPED_VECTOR_ITERATE(struct unit_node, list, elt)
111#define unit_node_vector_iterate_end VECTOR_ITERATE_END
112
113#define NUM_CITIZENS_SHOWN 30
114
117 NUM_PAGES /* The number of pages in city dialog notebook
118 * must match the entries in misc_whichtab_label[] */
120
121enum {
126 NUM_INFO_FIELDS /* Number of fields in city_info panel
127 * must match entries in output_label[] */
129
130/* Minimal size for the city map scrolling windows */
131#define CITY_MAP_MIN_SIZE_X 200
132#define CITY_MAP_MIN_SIZE_Y 150
133
134struct city_map_canvas {
135 GtkWidget *sw;
137};
138
139struct city_dialog {
140 struct city *pcity;
141
146
150
151 struct {
153
154 GtkWidget *production_bar;
155 GtkWidget *production_combo;
156 GtkWidget *buy_command;
157 GtkWidget *improvement_list;
158
159 GtkWidget *supported_units_frame;
160 GtkWidget *supported_unit_table;
161
162 GtkWidget *present_units_frame;
163 GtkWidget *present_unit_table;
164
165 struct unit_node_vector supported_units;
166 struct unit_node_vector present_units;
167
169
170 GtkListStore *change_production_store;
172
173 struct {
174 GtkWidget *production_label;
175 GtkWidget *production_bar;
176 GtkWidget *buy_command;
179
180 struct {
182
187
188 struct {
192
193 struct cma_dialog *cma_editor;
194
195 struct {
196 GtkWidget *rename_command;
197 GtkWidget *new_citizens_radio[3];
198 GtkWidget *disband_on_settler;
199 GtkWidget *whichtab_radio[NUM_PAGES];
200 short block_signal;
202
206
210
212
213 int cwidth;
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);
243 GdkModifierType state,
244 gpointer data);
245
246static GtkWidget *create_city_info_table(struct city_dialog *pdialog,
248static void create_and_append_overview_page(struct city_dialog *pdialog);
249static void create_and_append_map_page(struct city_dialog *pdialog);
250static void create_and_append_buildings_page(struct city_dialog *pdialog);
251static void create_and_append_worklist_page(struct city_dialog *pdialog);
252static void create_and_append_happiness_page(struct city_dialog *pdialog);
253static void create_and_append_cma_page(struct city_dialog *pdialog);
254static void create_and_append_settings_page(struct city_dialog *pdialog);
255
256static struct city_dialog *create_city_dialog(struct city *pcity);
257
258static void city_dialog_update_title(struct city_dialog *pdialog);
259static void city_dialog_update_citizens(struct city_dialog *pdialog);
260static void city_dialog_update_counters(struct city_dialog *pdialog);
262 struct city_dialog *pdialog);
263static void city_dialog_update_map(struct city_dialog *pdialog);
264static void city_dialog_update_building(struct city_dialog *pdialog);
266 *pdialog);
268 *pdialog);
269static void city_dialog_update_present_units(struct city_dialog *pdialog);
270static void city_dialog_update_prev_next(void);
271
272static void show_units_response(void *data);
273
275 double x, double y, gpointer data);
277 double x, double y, gpointer data);
279 double x, double y, gpointer data);
281 double x, double y, gpointer data);
283 double x, double y, gpointer data);
284
285static void close_citydlg_unit_popover(struct city_dialog *pdialog);
286
287static void unit_center_callback(GSimpleAction *action, GVariant *parameter,
288 gpointer data);
289static void unit_activate_callback(GSimpleAction *action, GVariant *parameter,
290 gpointer data);
292 GVariant *parameter,
293 gpointer data);
295 GVariant *parameter,
296 gpointer data);
297static void unit_load_callback(GSimpleAction *action, GVariant *parameter,
298 gpointer data);
299static void unit_unload_callback(GSimpleAction *action, GVariant *parameter,
300 gpointer data);
301static void unit_sentry_callback(GSimpleAction *action, GVariant *parameter,
302 gpointer data);
303static void unit_fortify_callback(GSimpleAction *action, GVariant *parameter,
304 gpointer data);
305static void unit_disband_callback(GSimpleAction *action, GVariant *parameter,
306 gpointer data);
307static void unit_homecity_callback(GSimpleAction *action, GVariant *parameter,
308 gpointer data);
309static void unit_upgrade_callback(GSimpleAction *action, GVariant *parameter,
310 gpointer data);
312 double x, double y, gpointer data);
314 double x, double y, gpointer data);
316 double x, double y, gpointer data);
317static void draw_map_canvas(struct city_dialog *pdialog);
318
319static void buy_callback(GtkWidget * w, gpointer data);
320static void change_production_callback(GtkComboBox *combo,
321 struct city_dialog *pdialog);
322
323static void sell_callback(struct impr_type *pimprove, gpointer data);
324static void sell_callback_response(GtkWidget *w, gint response, gpointer data);
325
326static void impr_callback(GtkTreeView *view, GtkTreePath *path,
328
329static void rename_callback(GtkWidget * w, gpointer data);
330static void rename_popup_callback(gpointer data, gint response,
331 const char *input);
332static void set_cityopt_values(struct city_dialog *pdialog);
333static void cityopt_callback(GtkWidget * w, gpointer data);
334static void misc_whichtab_callback(GtkWidget * w, gpointer data);
335
336static void city_destroy_callback(GtkWidget *w, gpointer data);
337static void close_city_dialog(struct city_dialog *pdialog);
338static void citydlg_response_callback(GtkDialog *dlg, gint response,
339 void *data);
340static void close_callback(GtkWidget *w, gpointer data);
341static void switch_city_callback(GtkWidget *w, gpointer data);
342
343/***********************************************************************/
352
353/***********************************************************************/
356static void initialize_city_dialogs(void)
357{
358 int height;
359
361
365
366 /* Use default layout when height cannot be determined
367 * (when height == 0) */
368 if (height > 0 && height <= TINYSCREEN_MAX_HEIGHT) {
370 } else {
372 }
373
375}
376
377/***********************************************************************/
381{
383 return;
384 }
385
387
389 /* There's no reasonable way to resize a GtkImage, so we don't try.
390 Instead we just redraw the overview within the existing area.
391 The player has to close and reopen the dialog to fix this. */
392 city_dialog_update_map(pdialog);
394
396}
397
398/***********************************************************************/
402static struct city_dialog *get_city_dialog(struct city *pcity)
403{
406 }
407
409 if (pdialog->pcity == pcity) {
410 return pdialog;
411 }
413
414 return NULL;
415}
416
417/***********************************************************************/
421 int width, int height, gpointer data)
422{
423 struct city_dialog *pdialog = data;
424
427 if (cma_is_city_under_agent(pdialog->pcity, NULL)) {
428 cairo_paint_with_alpha(cr, 0.5);
429 } else {
430 cairo_paint(cr);
431 }
432}
433
434/***********************************************************************/
437static void city_dialog_map_create(struct city_dialog *pdialog,
439{
440 GtkWidget *sw, *darea;
443
452
453 darea = gtk_drawing_area_new();
456 canvas_draw_cb, pdialog, NULL);
457
459 g_signal_connect(controller, "pressed",
465 g_signal_connect(controller, "pressed",
469
470 /* save all widgets for the city map */
471 cmap_canvas->sw = sw;
472 cmap_canvas->darea = darea;
473}
474
475/***********************************************************************/
499
500/***********************************************************************/
504{
505 struct city_dialog *pdialog = get_city_dialog(pcity);
506
507 log_debug("CITYMAP_WIDTH: %d", CITYMAP_WIDTH);
508 log_debug("CITYMAP_HEIGHT: %d", CITYMAP_HEIGHT);
509 log_debug("CITYMAP_SCALE: %.3f", CITYMAP_SCALE);
510
514 }
515
516 if (!pdialog) {
517 return;
518 }
519
524 city_dialog_update_map(pdialog);
529
532
534
535 if (!low_citydlg) {
537 }
541 }
542
543 if (!client_is_observer()) {
545 }
546
550 } else {
551 /* Set the buttons we do not want live while a Diplomat investigates */
553 }
554}
555
556/***********************************************************************/
561{
562 struct city *pcity_sup, *pcity_pre;
563 struct city_dialog *pdialog;
564
567
568 if (pcity_sup && (pdialog = get_city_dialog(pcity_sup))) {
570 }
571
572 if (pcity_pre && (pdialog = get_city_dialog(pcity_pre))) {
574 }
575}
576
577/***********************************************************************/
581{
582 struct city_dialog *pdialog;
583
584 if (!(pdialog = get_city_dialog(pcity))) {
585 pdialog = create_city_dialog(pcity);
586 }
587
589
590 /* center the city map(s); this must be *after* the city dialog was drawn
591 * else the size information is missing! */
593 if (pdialog->happiness.map_canvas.sw) {
595 }
596}
597
598/***********************************************************************/
602{
603 return get_city_dialog(pcity) != NULL;
604}
605
606/***********************************************************************/
610{
611 struct city_dialog *pdialog = get_city_dialog(pcity);
612
613 if (pdialog) {
614 close_city_dialog(pdialog);
615 }
616}
617
618/***********************************************************************/
634
635/***********************************************************************/
641 GdkModifierType state,
642 gpointer data)
643{
644 struct city_dialog *pdialog = (struct city_dialog *)data;
645
646 if (state & GDK_CONTROL_MASK) {
647 switch (keyval) {
648 case GDK_KEY_Left:
650 return TRUE;
651
652 case GDK_KEY_Right:
654 return TRUE;
655
656 default:
657 break;
658 }
659 }
660
661 return FALSE;
662}
663
664/***********************************************************************/
668 double x, double y, gpointer data)
669{
671 struct city_dialog *pdialog = g_object_get_data(G_OBJECT(w), "pdialog");
672 GtkWidget *p, *label;
673 char buf[1024];
674
675 switch (GPOINTER_TO_UINT(data)) {
676 case INFO_SIZE:
677 fc_snprintf(buf, sizeof(buf), _("Population: %d, Specialists: %d"),
678 pdialog->pcity->size, city_specialists(pdialog->pcity));
679 break;
680 case INFO_FOOD:
681 get_city_dialog_output_text(pdialog->pcity, O_FOOD, buf, sizeof(buf));
682 break;
683 case INFO_SHIELD:
685 buf, sizeof(buf));
686 break;
687 case INFO_TRADE:
688 get_city_dialog_output_text(pdialog->pcity, O_TRADE, buf, sizeof(buf));
689 break;
690 case INFO_GOLD:
691 get_city_dialog_output_text(pdialog->pcity, O_GOLD, buf, sizeof(buf));
692 break;
693 case INFO_SCIENCE:
695 buf, sizeof(buf));
696 break;
697 case INFO_LUXURY:
699 buf, sizeof(buf));
700 break;
701 case INFO_CULTURE:
702 get_city_dialog_culture_text(pdialog->pcity, buf, sizeof(buf));
703 break;
704 case INFO_POLLUTION:
705 get_city_dialog_pollution_text(pdialog->pcity, buf, sizeof(buf));
706 break;
707 case INFO_ILLNESS:
708 get_city_dialog_illness_text(pdialog->pcity, buf, sizeof(buf));
709 break;
710 case INFO_AIRLIFT:
711 get_city_dialog_airlift_text(pdialog->pcity, buf, sizeof(buf));
712 break;
713 default:
714 return TRUE;
715 }
716
717 p = gtk_popover_new();
718
720
721 label = gtk_label_new(buf);
722 gtk_widget_set_name(label, "city_label");
727
729
731
732 return TRUE;
733}
734
735/***********************************************************************/
741{
742 int i;
743 GtkWidget *table, *label;
744
745 static const char *output_label[NUM_INFO_FIELDS] = {
746 N_("Size:"),
747 N_("Food:"),
748 N_("Prod:"),
749 N_("Trade:"),
750 N_("Gold:"),
751 N_("Luxury:"),
752 N_("Science:"),
753 N_("Granary:"),
754 N_("Change in:"),
755 N_("Corruption:"),
756 N_("Waste:"),
757 N_("Culture:"),
758 N_("Pollution:"),
759 N_("Plague risk:"),
760 N_("Tech Stolen:"),
761 N_("Airlift:"),
762 };
763 static bool output_label_done;
765
771
773
774 for (i = 0; i < NUM_INFO_FIELDS; i++) {
775 label = gtk_label_new(output_label[i]);
776 switch (i) {
777 case INFO_SIZE:
778 case INFO_TRADE:
779 case INFO_SCIENCE:
780 case INFO_GROWTH:
782 break;
783
784 case INFO_FOOD:
785 case INFO_GOLD:
786 case INFO_GRANARY:
787 case INFO_CORRUPTION:
789 break;
790 default:
791 break;
792 }
794 gtk_widget_set_name(label, "city_label"); /* For font style? */
797 gtk_grid_attach(GTK_GRID(table), label, 0, i, 1, 1);
798
799 label = gtk_label_new("");
800 switch (i) {
801 case INFO_TRADE:
802 case INFO_SCIENCE:
803 case INFO_GROWTH:
805 break;
806
807 case INFO_GOLD:
808 case INFO_GRANARY:
809 case INFO_CORRUPTION:
811 break;
812 default:
813 break;
814 }
815
816 g_object_set_data(G_OBJECT(label), "pdialog", pdialog);
817
819 g_signal_connect(controller, "pressed",
822
823 info_label[i] = label;
824 gtk_widget_set_name(label, "city_label"); /* Ditto */
827
828 gtk_grid_attach(GTK_GRID(table), label, 1, i, 1, 1);
829 }
830
831 /*
832 * Allow special highlighting of emergencies for granary etc by
833 * city_dialog_update_information().
834 */
835 {
836 /* This will persist, and can be shared between overview and happiness
837 * pages. */
839
840 if (emergency_provider == NULL) {
842
844 ".emergency {\n"
845 " color: rgba(255, 0.0, 0.0, 255);\n"
846 "}",
847 -1);
848
853 }
854 }
855
857
858 return table;
859}
860
861/***********************************************************************/
866static void create_citydlg_main_map(struct city_dialog *pdialog,
867 GtkWidget *grid, int col, int row)
868{
869 GtkWidget *frame;
870
871 frame = gtk_frame_new(_("City map"));
874 gtk_grid_attach(GTK_GRID(grid), frame, col, row, 1, 1);
875
876 city_dialog_map_create(pdialog, &pdialog->overview.map_canvas);
878}
879
880/***********************************************************************/
884{
886 GtkListStore *store;
888
889 /* improvements */
890 /* gtk list store columns: 0 - sell value, 1 - sprite,
891 2 - description, 3 - upkeep, 4 - is redundant, 5 - tooltip */
895
899 gtk_widget_add_css_class(GTK_WIDGET(view), "large-pixbufs");
900 g_object_unref(store);
902 gtk_widget_set_name(view, "small_font");
903 pdialog->overview.improvement_list = view;
904
907 rend, "pixbuf", 1, NULL);
910 rend, "text", 2,
911 "strikethrough", 4, NULL);
913 g_object_set(rend, "xalign", 1.0, NULL);
915 rend, "text", 3,
916 "strikethrough", 4, NULL);
917
919
921 pdialog);
922
923 return view;
924}
925
926/***********************************************************************/
943{
945 GtkWidget *right, *frame, *table;
946 GtkWidget *label, *sw, *view, *bar, *production_combo;
949 /* TRANS: Overview tab in city dialog */
950 const char *tab_title = _("_Overview");
952 int page_row = 0;
953
954 /* Main page */
955 page = gtk_grid_new();
964
965 if (!low_citydlg) {
966 GtkWidget *middle;
967 GtkWidget *vbox;
969 int middle_col = 0;
970
971 /* Middle: city map, improvements */
972 middle = gtk_grid_new();
974 gtk_grid_attach(GTK_GRID(page), middle, 0, page_row++, 1, 1);
975
976 /* City map */
977 create_citydlg_main_map(pdialog, middle, middle_col++, 0);
978
979 /* Improvements */
981 gtk_grid_attach(GTK_GRID(middle), vbox, middle_col++, 0, 1, 1);
982
984
985 label = g_object_new(GTK_TYPE_LABEL, "label", _("Production:"),
986 "xalign", 0.0, "yalign", 0.5, NULL);
987 gtk_box_append(GTK_BOX(vbox), label);
988
991
995
996 bar = gtk_progress_bar_new();
998 pdialog->overview.production_bar = bar;
1000
1001 gtk_progress_bar_set_text(GTK_PROGRESS_BAR(bar), _("%d/%d %d turns"));
1002
1012
1017 rend, "pixbuf", 0, NULL);
1018 g_object_set(rend, "xalign", 0.0, NULL);
1019
1023 rend, "text", 1, "strikethrough", 3, NULL);
1024
1025 pdialog->overview.buy_command
1026 = icon_label_button_new("system-run", _("_Buy"));
1028 g_signal_connect(pdialog->overview.buy_command, "clicked",
1029 G_CALLBACK(buy_callback), pdialog);
1030
1031 label = g_object_new(GTK_TYPE_LABEL, "use-underline", TRUE,
1032 "mnemonic-widget", view,
1033 "label", _("I_mprovements:"),
1034 "xalign", 0.0, "yalign", 0.5, NULL);
1035 gtk_box_append(GTK_BOX(vbox), label);
1036
1041 gtk_box_append(GTK_BOX(vbox), sw);
1042
1044 } else {
1045 pdialog->overview.buy_command = NULL;
1046 pdialog->overview.production_bar = NULL;
1047 pdialog->overview.production_combo = NULL;
1049 }
1050
1051 /* Bottom: info, units */
1054
1055 /* Info */
1056 frame = gtk_frame_new(_("Info"));
1057 gtk_box_append(GTK_BOX(bottom), frame);
1058
1059 table = create_city_info_table(pdialog,
1060 pdialog->overview.info_label);
1064
1065 /* Right: present and supported units (overview page) */
1067 gtk_box_append(GTK_BOX(bottom), right);
1068
1073
1074 /* Supported units */
1081 sw);
1082
1083
1087
1090
1091 /* Present units */
1098
1102
1105
1106 /* Show page */
1108}
1109
1110/***********************************************************************/
1113static void create_and_append_map_page(struct city_dialog *pdialog)
1114{
1115 if (low_citydlg) {
1116 GtkWidget *page;
1117 GtkWidget *label;
1118 const char *tab_title = _("Citymap");
1119 int page_row = 0;
1120
1121 page = gtk_grid_new();
1130
1131 create_citydlg_main_map(pdialog, page, 0, page_row++);
1132
1134 }
1135}
1136
1137/***********************************************************************/
1141 const GValue *value,
1142 double x, double y, gpointer data)
1143{
1144 struct city_dialog *pdialog = (struct city_dialog *) data;
1145 cid id;
1146 struct universal univ;
1147
1148 if (NULL != client.conn.playing
1149 && city_owner(pdialog->pcity) != client.conn.playing) {
1150 return FALSE;
1151 }
1152
1153 id = g_value_get_int(value);
1154 univ = cid_production(id);
1155
1156 city_change_production(pdialog->pcity, &univ);
1157
1158 return TRUE;
1159}
1160
1161/***********************************************************************/
1165static int create_production_header(struct city_dialog *pdialog,
1166 GtkWidget *grid, int row)
1167{
1168 GtkWidget *hgrid, *bar;
1169 int grid_col = 0;
1170
1171 hgrid = gtk_grid_new();
1177 gtk_grid_attach(GTK_GRID(grid), hgrid, 0, row++, 1, 1);
1178
1179 /* The label is set in city_dialog_update_building() */
1180 bar = gtk_progress_bar_new();
1183 pdialog->production.production_bar = bar;
1184 gtk_grid_attach(GTK_GRID(hgrid), bar, grid_col++, 0, 1, 1);
1185 gtk_progress_bar_set_text(GTK_PROGRESS_BAR(bar), _("%d/%d %d turns"));
1186
1188
1189 pdialog->production.buy_command
1190 = icon_label_button_new("system-run", _("_Buy"));
1192 grid_col++, 0, 1, 1);
1193
1194 g_signal_connect(pdialog->production.buy_command, "clicked",
1195 G_CALLBACK(buy_callback), pdialog);
1196
1197 return row;
1198}
1199
1200/***********************************************************************/
1204{
1205 if (low_citydlg) {
1206 GtkWidget *page;
1207 GtkWidget *label;
1208 GtkWidget *vbox;
1209 GtkWidget *view;
1210 const char *tab_title = _("Buildings");
1211 int page_row = 0;
1212
1213 page = gtk_grid_new();
1221
1222 page_row = create_production_header(pdialog, page, page_row);
1223 gtk_notebook_append_page(GTK_NOTEBOOK(pdialog->notebook), page, label);
1224
1226 gtk_grid_attach(GTK_GRID(page), vbox, 0, page_row++, 1, 1);
1227
1229
1230 gtk_box_append(GTK_BOX(vbox), view);
1231
1233 }
1234}
1235
1236/***********************************************************************/
1240{
1241 const char *tab_title = _("P_roduction");
1243 GtkWidget *page, *editor;
1244 int page_row = 0;
1245
1246 page = gtk_grid_new();
1253 gtk_notebook_append_page(GTK_NOTEBOOK(pdialog->notebook), page, label);
1254
1255 /* Stuff that's being currently built */
1256 if (!low_citydlg) {
1258 "label", _("Production:"),
1259 "xalign", 0.0, "yalign", 0.5, NULL);
1260 pdialog->production.production_label = label;
1261 gtk_grid_attach(GTK_GRID(page), label, 0, page_row++, 1, 1);
1262
1263 page_row = create_production_header(pdialog, page, page_row);
1264 } else {
1265 pdialog->production.production_label = NULL;
1266 }
1267
1273 reset_city_worklist(editor, pdialog->pcity);
1274 gtk_grid_attach(GTK_GRID(page), editor, 0, page_row++, 1, 1);
1275 pdialog->production.worklist = editor;
1276
1278}
1279
1280/***********************************************************************/
1291{
1292 GtkWidget *page, *label, *table, *right, *left, *frame;
1293 const char *tab_title = _("Happ_iness");
1294 int page_col = 0;
1295 int left_row = 0;
1296
1297 /* Main page */
1298 page = gtk_grid_new();
1305 gtk_notebook_append_page(GTK_NOTEBOOK(pdialog->notebook), page, label);
1306
1307 /* Left: info, citizens */
1308 left = gtk_grid_new();
1311 gtk_grid_attach(GTK_GRID(page), left, page_col++, 0, 1, 1);
1312
1313 if (!low_citydlg) {
1314 /* Upper left: info */
1315 frame = gtk_frame_new(_("Info"));
1316 gtk_grid_attach(GTK_GRID(left), frame, 0, left_row++, 1, 1);
1317
1318 table = create_city_info_table(pdialog,
1319 pdialog->happiness.info_label);
1322 }
1323
1324 /* Lower left: citizens */
1328 0, left_row++, 1, 1);
1330 citizens_dialog_display(pdialog->pcity));
1331 }
1332
1333 /* Right: city map, happiness */
1335 gtk_grid_attach(GTK_GRID(page), right, page_col++, 0, 1, 1);
1336
1337 if (!low_citydlg) {
1338 /* Upper right: city map */
1339 frame = gtk_frame_new(_("City map"));
1342 gtk_box_append(GTK_BOX(right), frame);
1343
1344 city_dialog_map_create(pdialog, &pdialog->happiness.map_canvas);
1346 }
1347
1348 /* Lower right: happiness */
1350 gtk_box_append(GTK_BOX(right), pdialog->happiness.widget);
1353 pdialog->shell));
1354
1355 /* Show page */
1357}
1358
1359/**********************************************************************/
1362/**********************************************************************/
1367{
1369 GtkLabel *label = GTK_LABEL(gtk_label_new(_("Counters")));
1370
1371 pdialog->counters.container = NULL;
1372 pdialog->counters.widget = NULL;
1373
1375
1377
1379
1380 gtk_widget_show(page);
1381}
1382
1383/***********************************************************************/
1386static void create_and_append_cma_page(struct city_dialog *pdialog)
1387{
1388 GtkWidget *page, *label;
1389 const char *tab_title = _("_Governor");
1390
1392
1394
1395 gtk_notebook_append_page(GTK_NOTEBOOK(pdialog->notebook), page, label);
1396
1397 pdialog->cma_editor = create_cma_dialog(pdialog->pcity, low_citydlg);
1398 gtk_box_append(GTK_BOX(page), pdialog->cma_editor->shell);
1399
1401}
1402
1403/***********************************************************************/
1407{
1408 int i;
1409 GtkWidget *vgrid, *page, *frame, *label, *button;
1411 GtkWidget *group;
1412 const char *tab_title = _("_Settings");
1413 int grid_row = 0;
1414
1415 static const char *new_citizens_output_label[] = {
1416 N_("Luxury"),
1417 N_("Science"),
1418 N_("Gold")
1419 };
1420
1421 static const char *disband_label
1422 = N_("Allow unit production to disband city");
1423
1424 static const char *misc_whichtab_label[NUM_PAGES] = {
1425 N_("Overview page"),
1426 N_("Production page"),
1427 N_("Happiness page"),
1428 N_("Counters Page"),
1429 N_("Governor page"),
1430 N_("This Settings page"),
1431 N_("Last active page")
1432 };
1433
1434 static bool new_citizens_label_done;
1435 static bool misc_whichtab_label_done;
1436
1437 /* Initialize signal_blocker */
1438 pdialog->misc.block_signal = 0;
1439
1440
1441 page = gtk_grid_new();
1447
1449
1451
1452 gtk_notebook_append_page(GTK_NOTEBOOK(pdialog->notebook), page, label);
1453
1454 /* new_citizens radio */
1455 frame = gtk_frame_new(_("New citizens produce"));
1456 gtk_grid_attach(GTK_GRID(page), frame, 0, 0, 1, 1);
1458
1459 vgrid = gtk_grid_new();
1463
1466
1467 group = NULL;
1468 for (i = 0; i < ARRAY_SIZE(new_citizens_output_label); i++) {
1471 GTK_CHECK_BUTTON(group));
1472 pdialog->misc.new_citizens_radio[i] = button;
1473 gtk_grid_attach(GTK_GRID(vgrid), button, 0, grid_row++, 1, 1);
1474 g_signal_connect(button, "toggled",
1475 G_CALLBACK(cityopt_callback), pdialog);
1476 group = button;
1477 }
1478
1479 /* Next is the next-time-open radio group in the right column */
1480 frame = gtk_frame_new(_("Next time open"));
1481 gtk_grid_attach(GTK_GRID(page), frame, 1, 0, 1, 1);
1483
1484 vgrid = gtk_grid_new();
1485 grid_row = 0;
1489
1492
1493 group = NULL;
1494 for (i = 0; i < ARRAY_SIZE(misc_whichtab_label); i++) {
1497 GTK_CHECK_BUTTON(group));
1498 pdialog->misc.whichtab_radio[i] = button;
1499 gtk_grid_attach(GTK_GRID(vgrid), button, 0, grid_row++, 1, 1);
1500 g_signal_connect(button, "toggled",
1502 group = button;
1503 }
1504
1505 /* Now we go back and fill the hbox rename */
1506 frame = gtk_frame_new(_("City"));
1507 gtk_widget_set_margin_top(frame, 12);
1509 gtk_grid_attach(GTK_GRID(page), frame, 0, 1, 1, 1);
1510
1511 vgrid = gtk_grid_new();
1512 grid_row = 0;
1516
1517 button = gtk_button_new_with_mnemonic(_("R_ename..."));
1518 pdialog->misc.rename_command = button;
1519 gtk_grid_attach(GTK_GRID(vgrid), button, 0, grid_row++, 1, 1);
1520 g_signal_connect(button, "clicked",
1521 G_CALLBACK(rename_callback), pdialog);
1522
1524
1525 /* The disband-city-on-unit-production button */
1527 pdialog->misc.disband_on_settler = button;
1528 gtk_grid_attach(GTK_GRID(vgrid), button, 0, grid_row++, 1, 1);
1529 g_signal_connect(button, "toggled",
1530 G_CALLBACK(cityopt_callback), pdialog);
1531
1532 /* We choose which page to popup by default */
1534 (pdialog->
1536 TRUE);
1537
1538 set_cityopt_values(pdialog);
1539
1541
1542 if (new_dialog_def_page == (NUM_PAGES - 1)) {
1544 last_page);
1545 } else {
1548 }
1549}
1550
1551/***********************************************************************/
1560{
1561 struct city_dialog *pdialog;
1563 GtkWidget *vbox, *hbox, *cbox;
1566 int ccol = 0;
1568 struct player *owner;
1569
1572 }
1573
1574 pdialog = fc_malloc(sizeof(struct city_dialog));
1575 pdialog->pcity = pcity;
1576 pdialog->sell_shell = NULL;
1577 pdialog->rename_shell = NULL;
1578 pdialog->happiness.map_canvas.sw = NULL; /* Make sure NULL if spy */
1579 pdialog->happiness.map_canvas.darea = NULL; /* Ditto */
1580 pdialog->happiness.citizens = NULL; /* Ditto */
1581 pdialog->counters.widget = NULL;
1582 pdialog->counters.container = NULL;
1583 pdialog->production.buy_command = NULL;
1584 pdialog->production.production_label = NULL;
1585 pdialog->production.production_bar = NULL;
1586 pdialog->cma_editor = NULL;
1590
1591 pdialog->shell = gtk_dialog_new();
1594 setup_dialog(pdialog->shell, toplevel);
1595
1596 g_signal_connect(pdialog->shell, "destroy",
1598 gtk_widget_set_name(pdialog->shell, "Freeciv");
1599
1600 gtk_widget_realize(pdialog->shell);
1601
1602 /* Keep the icon of the executable on Windows (see PR#36491) */
1603#ifndef FREECIV_MSWINDOWS
1604 {
1605 gtk_window_set_icon_name(GTK_WINDOW(pdialog->shell), "citydlg");
1606 }
1607#endif /* FREECIV_MSWINDOWS */
1608
1609 /* Restore size of the city dialog. */
1613
1614 pdialog->popover = NULL;
1615
1619 gtk_box_append(GTK_BOX(vbox), hbox);
1620
1621 /**** Citizens bar here ****/
1622 cbox = gtk_grid_new();
1623 gtk_box_append(GTK_BOX(hbox), cbox);
1624
1627
1631 pdialog->citizen_pics = gtk_picture_new();
1632
1641 gtk_grid_attach(GTK_GRID(cbox), pdialog->citizen_pics, ccol++, 0, 1, 1);
1642
1644 g_signal_connect(controller, "pressed",
1645 G_CALLBACK(citizens_callback), pdialog);
1647
1648 /**** City name label here ****/
1649 pdialog->name_label = gtk_label_new(NULL);
1654
1655 /**** -Start of Notebook- ****/
1656
1657 pdialog->notebook = gtk_notebook_new();
1660 gtk_box_append(GTK_BOX(vbox), pdialog->notebook);
1661
1665
1667
1668 /* Only create these tabs if not a spy */
1672 }
1673
1675
1676 if (owner == client_player()
1677 && !client_is_observer()) {
1680 } else {
1683 }
1684
1685 /**** End of Notebook ****/
1686
1687 /* Bottom buttons */
1688
1689 pdialog->show_units_command =
1690 gtk_dialog_add_button(GTK_DIALOG(pdialog->shell), _("_List present units..."), CDLGR_UNITS);
1691
1692 g_signal_connect(GTK_DIALOG(pdialog->shell), "response",
1694
1695 pdialog->prev_command = gtk_button_new_from_icon_name("go-previous");
1697 GTK_WIDGET(pdialog->prev_command), 1);
1698
1699 pdialog->next_command = gtk_button_new_from_icon_name("go-next");
1701 GTK_WIDGET(pdialog->next_command), 2);
1702
1703 if (owner != client_player()) {
1706 }
1707
1709 _("_Close"), GTK_RESPONSE_CLOSE);
1710
1713
1715 G_CALLBACK(close_callback), pdialog);
1716
1717 g_signal_connect(pdialog->prev_command, "clicked",
1719
1720 g_signal_connect(pdialog->next_command, "clicked",
1722
1723 /* Some other things we gotta do */
1724
1726 g_signal_connect(controller, "key-pressed",
1729
1731
1733
1734 /* Need to do this every time a new dialog is opened. */
1736
1738
1740
1741 return pdialog;
1742}
1743
1744/**************** Functions to update parts of the dialog *****************/
1745
1746/***********************************************************************/
1749static void city_dialog_update_title(struct city_dialog *pdialog)
1750{
1751 gchar *buf;
1752 const gchar *now;
1753
1754 if (city_unhappy(pdialog->pcity)) {
1755 /* TRANS: city dialog title */
1756 buf = g_strdup_printf(_("<b>%s</b> - %s citizens - DISORDER"),
1757 city_name_getx(pdialog->pcity),
1759 } else if (city_celebrating(pdialog->pcity)) {
1760 /* TRANS: city dialog title */
1761 buf = g_strdup_printf(_("<b>%s</b> - %s citizens - celebrating"),
1762 city_name_getx(pdialog->pcity),
1764 } else if (city_happy(pdialog->pcity)) {
1765 /* TRANS: city dialog title */
1766 buf = g_strdup_printf(_("<b>%s</b> - %s citizens - happy"),
1767 city_name_getx(pdialog->pcity),
1769 } else {
1770 /* TRANS: city dialog title */
1771 buf = g_strdup_printf(_("<b>%s</b> - %s citizens"),
1772 city_name_getx(pdialog->pcity),
1774 }
1775
1777 if (strcmp(now, buf) != 0) {
1780 }
1781
1782 g_free(buf);
1783}
1784
1785/***********************************************************************/
1788static void city_dialog_update_citizens(struct city_dialog *pdialog)
1789{
1790 enum citizen_category categories[MAX_CITY_SIZE];
1793 struct city *pcity = pdialog->pcity;
1795 int num_supers
1797 ARRAY_SIZE(categories) - num_citizens,
1798 &categories[num_citizens]);
1799 cairo_t *cr;
1800
1801 if (num_supers >= 0) {
1802 /* Just draw superspecialists in the common roster */
1804 } else {
1805 /* FIXME: show them in some compact way */
1806 num_citizens = ARRAY_SIZE(categories);
1807 }
1808 /* If there is not enough space we stack the icons. We draw from left to */
1809 /* right. width is how far we go to the right for each drawn pixmap. The */
1810 /* last icon is always drawn in full, and so has reserved */
1811 /* tileset_small_sprite_width(tileset) pixels. */
1812
1814 if (num_citizens > 1) {
1816 / (num_citizens - 1));
1817 } else {
1818 width = full_width;
1819 }
1820 pdialog->cwidth = width;
1821
1822 /* overview page */
1823 /* keep these values in sync with create_city_dialog */
1826
1827 cr = cairo_create(pdialog->citizen_surface);
1828
1829 for (i = 0; i < num_citizens; i++) {
1831 get_citizen_sprite(tileset, categories[i], i, pcity)->surface,
1832 i * width, 0);
1833 cairo_rectangle(cr, i * width, 0,
1834 /* Always draw last citizen in full */
1835 i + 1 < num_citizens ? width : full_width,
1837 cairo_fill(cr);
1838 }
1839
1840 total_used_width = (i - 1) * width + full_width;
1841
1843 /* Clear the rest of the area.
1844 * Note that this might still be necessary even in cases where
1845 * num_citizens > NUM_CITIZENS_SHOWN, if the available width cannot be
1846 * divided perfectly. */
1851 cairo_fill(cr);
1852 }
1853
1854 cairo_destroy(cr);
1855
1857 pdialog->citizen_surface);
1858
1860}
1861
1862
1863/**********************************************************************/
1866static void city_dialog_update_counters(struct city_dialog *pdialog)
1867{
1872 char int_val[101];
1873 char *text;
1874 int text_size;
1875
1876 if (NULL != pdialog->counters.widget) {
1878 GTK_WIDGET(pdialog->counters.widget));
1879 }
1880
1881 if (NULL == pdialog->counters.container) {
1883 }
1884
1888
1892 counterValue = GTK_LABEL(gtk_label_new(_("Current value is: ")));
1894 fc_snprintf(int_val, sizeof(int_val), "%d", pdialog->pcity->counter_values[counter_index(pcount)]);
1898
1900 counterValue = GTK_LABEL(gtk_label_new(_("Activated once value equal or higher than: ")));
1902 fc_snprintf(int_val, sizeof(int_val), "%d", pcount->checkpoint);
1906
1907 text_size = 0;
1908 if (NULL != pcount->helptext) {
1909 strvec_iterate(pcount->helptext, text_) {
1912 }
1913 if (0 < text_size) {
1914 text = malloc(text_size+1);
1915 text_size = 0;
1916 strvec_iterate(pcount->helptext, text_) {
1917 strcpy(&text[text_size], text_);
1921 free(text);
1923 }
1926
1929}
1930
1931/***********************************************************************/
1935 struct city_dialog *pdialog)
1936{
1937 int i, illness = 0;
1938 char buf[NUM_INFO_FIELDS][512];
1939 struct city *pcity = pdialog->pcity;
1940 int granaryturns;
1943
1944 /* fill the buffers with the necessary info */
1945 if (supers) {
1946 fc_snprintf(buf[INFO_SIZE], sizeof(buf[INFO_SIZE]), "%3d (%3d+%d)",
1947 pcity->size, non_workers, supers);
1948 } else if (non_workers) {
1949 fc_snprintf(buf[INFO_SIZE], sizeof(buf[INFO_SIZE]), "%3d (%3d)",
1950 pcity->size, non_workers);
1951 } else {
1952 fc_snprintf(buf[INFO_SIZE], sizeof(buf[INFO_SIZE]), "%3d", pcity->size);
1953 }
1954 fc_snprintf(buf[INFO_FOOD], sizeof(buf[INFO_FOOD]), "%3d (%+4d)",
1955 pcity->prod[O_FOOD], pcity->surplus[O_FOOD]);
1956 fc_snprintf(buf[INFO_SHIELD], sizeof(buf[INFO_SHIELD]), "%3d (%+4d)",
1957 pcity->prod[O_SHIELD] + pcity->waste[O_SHIELD],
1958 pcity->surplus[O_SHIELD]);
1959 fc_snprintf(buf[INFO_TRADE], sizeof(buf[INFO_TRADE]), "%3d (%+4d)",
1960 pcity->surplus[O_TRADE] + pcity->waste[O_TRADE],
1961 pcity->surplus[O_TRADE]);
1962 fc_snprintf(buf[INFO_GOLD], sizeof(buf[INFO_GOLD]), "%3d (%+4d)",
1963 pcity->prod[O_GOLD], pcity->surplus[O_GOLD]);
1964 fc_snprintf(buf[INFO_LUXURY], sizeof(buf[INFO_LUXURY]), "%3d",
1965 pcity->prod[O_LUXURY]);
1966 fc_snprintf(buf[INFO_SCIENCE], sizeof(buf[INFO_SCIENCE]), "%3d",
1967 pcity->prod[O_SCIENCE]);
1968 fc_snprintf(buf[INFO_GRANARY], sizeof(buf[INFO_GRANARY]), "%4d/%-4d",
1970
1972 if (granaryturns == 0) {
1973 /* TRANS: city growth is blocked. Keep short. */
1974 fc_snprintf(buf[INFO_GROWTH], sizeof(buf[INFO_GROWTH]), _("blocked"));
1975 } else if (granaryturns == FC_INFINITY) {
1976 /* TRANS: city is not growing. Keep short. */
1977 fc_snprintf(buf[INFO_GROWTH], sizeof(buf[INFO_GROWTH]), _("never"));
1978 } else {
1979 /* A negative value means we'll have famine in that many turns.
1980 But that's handled down below. */
1981 /* TRANS: city growth turns. Keep short. */
1983 PL_("%d turn", "%d turns", abs(granaryturns)),
1984 abs(granaryturns));
1985 }
1987 pcity->waste[O_TRADE]);
1988 fc_snprintf(buf[INFO_WASTE], sizeof(buf[INFO_WASTE]), "%4d",
1989 pcity->waste[O_SHIELD]);
1990 fc_snprintf(buf[INFO_CULTURE], sizeof(buf[INFO_CULTURE]), "%4d",
1991 pcity->client.culture);
1993 pcity->pollution);
1994 if (!game.info.illness_on) {
1995 fc_snprintf(buf[INFO_ILLNESS], sizeof(buf[INFO_ILLNESS]), " -.-");
1996 } else {
1998 /* illness is in tenth of percent */
1999 fc_snprintf(buf[INFO_ILLNESS], sizeof(buf[INFO_ILLNESS]), "%5.1f%%",
2000 (float)illness / 10.0);
2001 }
2002 if (pcity->steal) {
2003 fc_snprintf(buf[INFO_STEAL], sizeof(buf[INFO_STEAL]), PL_("%d time", "%d times", pcity->steal),
2004 pcity->steal);
2005 } else {
2006 fc_snprintf(buf[INFO_STEAL], sizeof(buf[INFO_STEAL]), _("Not stolen"));
2007 }
2008
2010
2011 /* stick 'em in the labels */
2012 for (i = 0; i < NUM_INFO_FIELDS; i++) {
2014 }
2015
2016 /*
2017 * Make use of the emergency-indicating styles set up for certain labels
2018 * in create_city_info_table().
2019 */
2020 /* For starvation, the "4" below is arbitrary. 3 turns should be enough
2021 * of a warning. */
2022 if (granaryturns > -4 && granaryturns < 0) {
2024 } else {
2026 }
2027
2028 if (granaryturns == 0 || pcity->surplus[O_FOOD] < 0) {
2030 } else {
2032 }
2033
2034 /* Someone could add the color &orange for better granularity here */
2035 if (pcity->pollution >= 10) {
2037 } else {
2039 }
2040
2041 /* Illness is in tenth of percent, i.e 100 == 10.0% */
2042 if (illness >= 100) {
2044 } else {
2046 }
2047}
2048
2049/***********************************************************************/
2052static void city_dialog_update_map(struct city_dialog *pdialog)
2053{
2054 struct canvas store = FC_STATIC_CANVAS_INIT;
2055
2056 store.surface = pdialog->map_canvas_store_unscaled;
2057
2058 /* The drawing is done in three steps.
2059 * 1. First we render to a pixmap with the appropriate canvas size.
2060 * 2. Then the pixmap is rendered into a pixbuf of equal size.
2061 * 3. Finally this pixbuf is composited and scaled onto the GtkImage's
2062 * target pixbuf.
2063 */
2064
2065 city_dialog_redraw_map(pdialog->pcity, &store);
2066
2067 /* draw to real window */
2068 draw_map_canvas(pdialog);
2069}
2070
2071/***********************************************************************/
2074static void city_dialog_update_building(struct city_dialog *pdialog)
2075{
2076 char buf[32], buf2[200];
2077 gdouble pct;
2078 GtkListStore *store;
2080 struct universal targets[MAX_NUM_PRODUCTION_TARGETS];
2081 struct item items[MAX_NUM_PRODUCTION_TARGETS];
2082 int targets_used, item;
2083 struct city *pcity = pdialog->pcity;
2085 const char *descr = city_production_name_translation(pcity);
2087
2088 if (pdialog->overview.buy_command != NULL) {
2090 }
2091 if (pdialog->production.buy_command != NULL) {
2093 }
2094
2095 /* Make sure build slots info is up to date */
2096 if (pdialog->production.production_label != NULL) {
2098
2099 /* Only display extra info if more than one slot is available */
2100 if (build_slots > 1) {
2101 fc_snprintf(buf2, sizeof(buf2),
2102 /* TRANS: never actually used with built_slots <= 1 */
2103 PL_("Production (up to %d unit per turn):",
2104 "Production (up to %d units per turn):", build_slots),
2105 build_slots);
2108 } else {
2110 GTK_LABEL(pdialog->production.production_label), _("Production:"));
2111 }
2112 }
2113
2114 /* Update what the city is working on */
2116
2117 if (cost > 0) {
2118 pct = (gdouble) pcity->shield_stock / (gdouble) cost;
2119 pct = CLAMP(pct, 0.0, 1.0);
2120 } else {
2121 pct = 1.0;
2122 }
2123
2124 if (pdialog->overview.production_bar != NULL) {
2125 fc_snprintf(buf2, sizeof(buf2), "%s%s\n%s", descr,
2126 worklist_is_empty(&pcity->worklist) ? "" : " (+)", buf);
2131 }
2132
2133 if (pdialog->production.production_bar != NULL) {
2134 fc_snprintf(buf2, sizeof(buf2), "%s%s: %s", descr,
2135 worklist_is_empty(&pcity->worklist) ? "" : " (+)", buf);
2140 }
2141
2142 store = pdialog->overview.change_production_store;
2143 if (store != NULL) {
2144 int cur = -1;
2145 int actcount = 0;
2146
2147 if (pdialog->overview.production_combo != NULL) {
2149 -1);
2150 }
2151
2152 gtk_list_store_clear(store);
2153
2155 = collect_eventually_buildable_targets(targets, pdialog->pcity, FALSE);
2156 name_and_sort_items(targets, targets_used, items, FALSE, pcity);
2157
2158 for (item = 0; item < targets_used; item++) {
2159 if (can_city_build_now(&(wld.map), pcity, &items[item].item)) {
2160 const char *name;
2161 struct sprite *sprite;
2162 GdkPixbuf *pix;
2163 struct universal *target = &items[item].item;
2164 bool useless;
2165
2166 if (VUT_UTYPE == target->kind) {
2170 useless = FALSE;
2171 } else {
2174 useless = is_improvement_redundant(pcity, target->value.building);
2175 }
2177 gtk_list_store_append(store, &iter);
2178 gtk_list_store_set(store, &iter, 0, pix,
2179 1, name, 3, useless,
2180 2, (gint)cid_encode(items[item].item), -1);
2182
2183 if (are_universals_equal(target, &pcity->production)) {
2184 cur = actcount;
2185 }
2186
2187 actcount++;
2188 }
2189 }
2190
2191 if (pdialog->overview.production_combo != NULL) {
2193 cur);
2194 }
2195 }
2196}
2197
2198/***********************************************************************/
2202{
2203 int item, targets_used;
2204 struct universal targets[MAX_NUM_PRODUCTION_TARGETS];
2205 struct item items[MAX_NUM_PRODUCTION_TARGETS];
2206 GtkTreeModel *model;
2207 GtkListStore *store;
2208
2209 const char *tooltip_sellable = _("Press <b>ENTER</b> or double-click to "
2210 "sell an improvement.");
2211 const char *tooltip_great_wonder = _("Great Wonder - cannot be sold.");
2212 const char *tooltip_small_wonder = _("Small Wonder - cannot be sold.");
2213
2214 model =
2216 store = GTK_LIST_STORE(model);
2217
2219 name_and_sort_items(targets, targets_used, items, FALSE, pdialog->pcity);
2220
2221 gtk_list_store_clear(store);
2222
2223 for (item = 0; item < targets_used; item++) {
2224 GdkPixbuf *pix;
2225 GtkTreeIter it;
2226 int upkeep;
2227 struct sprite *sprite;
2228 struct universal target = items[item].item;
2229
2230 fc_assert_action(VUT_IMPROVEMENT == target.kind, continue);
2231 /* This takes effects (like Adam Smith's) into account. */
2232 upkeep = city_improvement_upkeep(pdialog->pcity, target.value.building);
2234
2236 gtk_list_store_append(store, &it);
2237 gtk_list_store_set(store, &it,
2238 0, target.value.building,
2239 1, pix,
2240 2, items[item].descr,
2241 3, upkeep,
2242 4,
2244 target.value.building),
2245 5,
2248 (is_small_wonder(target.value.building) ?
2250 -1);
2252 }
2253}
2254
2255/***********************************************************************/
2259{
2260 struct unit_list *units;
2261 struct unit_node_vector *nodes;
2262 int n, m, i;
2263 gchar *buf;
2265 const struct civ_map *nmap = &(wld.map);
2266
2267 if (NULL != client.conn.playing
2268 && city_owner(pdialog->pcity) != client.conn.playing) {
2269 units = pdialog->pcity->client.info_units_supported;
2270 } else {
2271 units = pdialog->pcity->units_supported;
2272 }
2273
2274 nodes = &pdialog->overview.supported_units;
2275
2276 n = unit_list_size(units);
2277 m = unit_node_vector_size(nodes);
2278
2279 if (m > n) {
2280 i = 0;
2282 if (i++ >= n) {
2284 elt->cmd);
2285 }
2287
2289 } else {
2290 for (i = m; i < n; i++) {
2291 GtkWidget *cmd, *pix;
2292 struct unit_node node;
2293
2294 cmd = gtk_button_new();
2295 node.cmd = cmd;
2296
2298
2299 pix = gtk_picture_new();
2300 node.pix = pix;
2302
2304
2306 cmd);
2307
2308 node.left = NULL;
2309 node.middle = NULL;
2310 node.right = NULL;
2311
2312 unit_node_vector_append(nodes, node);
2313 }
2314 }
2315
2316 i = 0;
2317 unit_list_iterate(units, punit) {
2318 struct unit_node *pnode;
2319 int happy_cost = city_unit_unhappiness(nmap, punit, &free_unhappy);
2320
2321 pnode = unit_node_vector_get(nodes, i);
2322 if (pnode) {
2323 GtkWidget *cmd, *pix;
2326
2327 cmd = pnode->cmd;
2328 pix = pnode->pix;
2329
2331 punit->upkeep, happy_cost);
2332
2333 if (pnode->left != NULL) {
2337 }
2338
2340
2342 g_signal_connect(controller, "pressed",
2346 pnode->left = controller;
2350 g_signal_connect(controller, "released",
2354 pnode->middle = controller;
2358 g_signal_connect(controller, "released",
2362 pnode->right = controller;
2363
2364 if (city_owner(pdialog->pcity) != client.conn.playing) {
2366 } else {
2368 }
2369
2372 }
2373 i++;
2375
2376 buf = g_strdup_printf(_("Supported units %d"), n);
2378 g_free(buf);
2379}
2380
2381/***********************************************************************/
2385{
2386 struct unit_list *units;
2387 struct unit_node_vector *nodes;
2388 int n, m, i;
2389 gchar *buf;
2390
2391 if (NULL != client.conn.playing
2392 && city_owner(pdialog->pcity) != client.conn.playing) {
2393 units = pdialog->pcity->client.info_units_present;
2394 } else {
2395 units = pdialog->pcity->tile->units;
2396 }
2397
2398 nodes = &pdialog->overview.present_units;
2399
2400 n = unit_list_size(units);
2401 m = unit_node_vector_size(nodes);
2402
2403 if (m > n) {
2404 i = 0;
2406 if (i++ >= n) {
2408 elt->cmd);
2409 }
2411
2413 } else {
2414 for (i = m; i < n; i++) {
2415 GtkWidget *cmd, *pix;
2416 struct unit_node node;
2417
2418 cmd = gtk_button_new();
2419 node.cmd = cmd;
2420
2422
2423 pix = gtk_picture_new();
2424 node.pix = pix;
2426
2428
2430 cmd);
2431
2432 node.left = NULL;
2433 node.middle = NULL;
2434 node.right = NULL;
2435
2436 unit_node_vector_append(nodes, node);
2437 }
2438 }
2439
2440 i = 0;
2441 unit_list_iterate(units, punit) {
2442 struct unit_node *pnode;
2443
2444 pnode = unit_node_vector_get(nodes, i);
2445 if (pnode) {
2446 GtkWidget *cmd, *pix;
2449
2450 cmd = pnode->cmd;
2451 pix = pnode->pix;
2452
2454
2455 if (pnode->left != NULL) {
2459 }
2460
2462
2464 g_signal_connect(controller, "pressed",
2468 pnode->left = controller;
2472 g_signal_connect(controller, "released",
2476 pnode->middle = controller;
2480 g_signal_connect(controller, "released",
2484 pnode->right = controller;
2485
2486 if (city_owner(pdialog->pcity) != client.conn.playing) {
2488 } else {
2490 }
2491
2494 }
2495 i++;
2497
2498 buf = g_strdup_printf(_("Present units %d"), n);
2500 g_free(buf);
2501}
2502
2503/***********************************************************************/
2511{
2512 int count = 0;
2513 int city_number;
2514
2515 if (NULL != client.conn.playing) {
2517 } else {
2518 city_number = FC_INFINITY; /* ? */
2519 }
2520
2521 /* The first time, we see if all the city dialogs are open */
2523 if (city_owner(pdialog->pcity) == client.conn.playing) {
2524 count++;
2525 }
2527
2528 if (count == city_number) { /* All are open, shouldn't prev/next */
2530 gtk_widget_set_sensitive(GTK_WIDGET(pdialog->prev_command), FALSE);
2531 gtk_widget_set_sensitive(GTK_WIDGET(pdialog->next_command), FALSE);
2533 } else {
2535 if (city_owner(pdialog->pcity) == client.conn.playing) {
2536 gtk_widget_set_sensitive(GTK_WIDGET(pdialog->prev_command), TRUE);
2537 gtk_widget_set_sensitive(GTK_WIDGET(pdialog->next_command), TRUE);
2538 }
2540 }
2541}
2542
2543/***********************************************************************/
2546static void citydlg_response_callback(GtkDialog *dlg, gint response,
2547 void *data)
2548{
2549 switch (response) {
2550 case CDLGR_UNITS:
2551 show_units_response(data);
2552 break;
2553 }
2554}
2555
2556/***********************************************************************/
2559static void show_units_response(void *data)
2560{
2561 struct city_dialog *pdialog = (struct city_dialog *) data;
2562 struct tile *ptile = pdialog->pcity->tile;
2563
2564 if (unit_list_size(ptile->units)) {
2566 }
2567}
2568
2569/***********************************************************************/
2579static bool create_unit_menu(struct city_dialog *pdialog, struct unit *punit,
2580 GtkWidget *wdg, bool supported)
2581{
2582 GMenu *menu;
2583 GActionGroup *group;
2584 GSimpleAction *act;
2585
2586 if (!can_client_issue_orders()) {
2587 return FALSE;
2588 }
2589
2590 if (pdialog->popover != NULL) {
2592 }
2593
2595 menu = g_menu_new();
2596
2597 if (supported) {
2598 act = g_simple_action_new("center", NULL);
2599 g_object_set_data(G_OBJECT(act), "dlg", pdialog);
2603 menu_item_append_unref(menu, g_menu_item_new(_("Cen_ter"), "win.center"));
2604 }
2605
2606 act = g_simple_action_new("activate", NULL);
2607 g_object_set_data(G_OBJECT(act), "dlg", pdialog);
2611 menu_item_append_unref(menu, g_menu_item_new(_("_Activate unit"),
2612 "win.activate"));
2613
2614 act = g_simple_action_new("activate_close", NULL);
2615 g_object_set_data(G_OBJECT(act), "dlg", pdialog);
2617
2618 if (supported) {
2619 g_signal_connect(act, "activate",
2622 } else {
2623 g_signal_connect(act, "activate",
2626 }
2627
2629 g_menu_item_new(_("Activate unit, _close dialog"),
2630 "win.activate_close"));
2631
2632 if (!supported) {
2633 act = g_simple_action_new("load", NULL);
2634 g_object_set_data(G_OBJECT(act), "dlg", pdialog);
2639 menu_item_append_unref(menu, g_menu_item_new(_("_Load unit"), "win.load"));
2640
2641 act = g_simple_action_new("unload", NULL);
2642 g_object_set_data(G_OBJECT(act), "dlg", pdialog);
2650 unit_tile(punit)));
2651 menu_item_append_unref(menu, g_menu_item_new(_("_Unload unit"),
2652 "win.unload"));
2653
2654 act = g_simple_action_new("sentry", NULL);
2655 g_object_set_data(G_OBJECT(act), "dlg", pdialog);
2663 menu_item_append_unref(menu, g_menu_item_new(_("_Sentry unit"),
2664 "win.sentry"));
2665
2666 act = g_simple_action_new("fortify", NULL);
2667 g_object_set_data(G_OBJECT(act), "dlg", pdialog);
2675 menu_item_append_unref(menu, g_menu_item_new(_("_Fortify unit"),
2676 "win.fortify"));
2677 }
2678
2679 act = g_simple_action_new("disband", NULL);
2680 g_object_set_data(G_OBJECT(act), "dlg", pdialog);
2686 menu_item_append_unref(menu, g_menu_item_new(_("_Disband unit"),
2687 "win.disband"));
2688
2689 if (!supported) {
2690 act = g_simple_action_new("rehome", NULL);
2691 g_object_set_data(G_OBJECT(act), "dlg", pdialog);
2697 pdialog->pcity));
2700 "win.rehome"));
2701
2702 act = g_simple_action_new("upgrade", NULL);
2703 g_object_set_data(G_OBJECT(act), "dlg", pdialog);
2712 != NULL);
2713 menu_item_append_unref(menu, g_menu_item_new(_("U_pgrade unit"),
2714 "win.upgrade"));
2715 }
2716
2718 g_object_ref(pdialog->popover);
2719 gtk_widget_insert_action_group(pdialog->popover, "win", group);
2721
2722
2724
2725 return TRUE;
2726}
2727
2728/***********************************************************************/
2732 double x, double y, gpointer data)
2733{
2734 struct city_dialog *pdialog;
2735 struct city *pcity;
2736 struct unit *punit =
2737 player_unit_by_number(client_player(), (size_t) data);
2738
2739 if (NULL != punit
2741 && NULL != (pdialog = get_city_dialog(pcity))) {
2742
2743 return create_unit_menu(pdialog, punit,
2745 TRUE);
2746 }
2747
2748 return TRUE;
2749}
2750
2751/***********************************************************************/
2755 double x, double y, gpointer data)
2756{
2757 struct city_dialog *pdialog;
2758 struct city *pcity;
2759 struct unit *punit =
2760 player_unit_by_number(client_player(), (size_t) data);
2761
2762 if (NULL != punit
2763 && NULL != (pcity = tile_city(unit_tile(punit)))
2764 && NULL != (pdialog = get_city_dialog(pcity))) {
2765
2766 return create_unit_menu(pdialog, punit,
2768 FALSE);
2769 }
2770
2771 return TRUE;
2772}
2773
2774/***********************************************************************/
2779 int n_press, double x, double y,
2780 gpointer data)
2781{
2782 struct city_dialog *pdialog;
2783 struct city *pcity;
2784 struct unit *punit =
2785 player_unit_by_number(client_player(), (size_t) data);
2786
2787 if (NULL != punit
2788 && NULL != (pcity = tile_city(unit_tile(punit)))
2789 && NULL != (pdialog = get_city_dialog(pcity))
2792 close_city_dialog(pdialog);
2793 }
2794
2795 return TRUE;
2796}
2797
2798/***********************************************************************/
2803 double x, double y, gpointer data)
2804{
2805 struct city_dialog *pdialog;
2806 struct city *pcity;
2807 struct unit *punit =
2808 player_unit_by_number(client_player(), (size_t) data);
2809
2810 if (NULL != punit
2812 && NULL != (pdialog = get_city_dialog(pcity))
2815 close_city_dialog(pdialog);
2816 }
2817
2818 return TRUE;
2819}
2820
2821/***********************************************************************/
2825 double x, double y, gpointer data)
2826{
2827 struct unit *punit =
2828 player_unit_by_number(client_player(), (size_t) data);
2829
2830 if (NULL != punit
2833 }
2834
2835 return TRUE;
2836}
2837
2838/***********************************************************************/
2843static void close_citydlg_unit_popover(struct city_dialog *pdialog)
2844{
2845 if (pdialog->popover != NULL) {
2846 gtk_widget_unparent(pdialog->popover);
2847 g_object_unref(pdialog->popover);
2848 pdialog->popover = NULL;
2849 }
2850}
2851
2852/***********************************************************************/
2856 gpointer data)
2857{
2858 struct unit *punit =
2860
2861 if (NULL != punit) {
2863 }
2864
2866}
2867
2868/***********************************************************************/
2872 gpointer data)
2873{
2874 struct unit *punit =
2876
2877 if (NULL != punit) {
2878 /* FIXME: If unit is not idle to begin with, we can only request
2879 * idling, and as we have no server reply yet,
2880 * the unit_focus_try() below will fail. */
2883 }
2884
2886}
2887
2888/***********************************************************************/
2893 GVariant *parameter,
2894 gpointer data)
2895{
2896 struct unit *punit =
2898
2899 if (NULL != punit) {
2900 struct city *pcity =
2902
2903 /* FIXME: If unit is not idle to begin with, we can only request
2904 * idling, and as we have no server reply yet,
2905 * the unit_focus_try() below will fail. */
2908
2909 if (NULL != pcity) {
2910 struct city_dialog *pdialog = get_city_dialog(pcity);
2911
2912 if (NULL != pdialog) {
2913 close_city_dialog(pdialog);
2914 }
2915 }
2916 }
2917
2919}
2920
2921/***********************************************************************/
2926 GVariant *parameter,
2927 gpointer data)
2928{
2929 struct unit *punit =
2931
2932 if (NULL != punit) {
2933 struct city *pcity = tile_city(unit_tile(punit));
2934
2935 /* FIXME: If unit is not idle to begin with, we can only request
2936 * idling, and as we have no server reply yet,
2937 * the unit_focus_try() below will fail. */
2940
2941 if (NULL != pcity) {
2942 struct city_dialog *pdialog = get_city_dialog(pcity);
2943
2944 if (NULL != pdialog) {
2945 close_city_dialog(pdialog);
2946 }
2947 }
2948 }
2949
2951}
2952
2953/***********************************************************************/
2957 gpointer data)
2958{
2959 struct unit *punit =
2961
2962 if (NULL != punit) {
2964 }
2965
2967}
2968
2969/***********************************************************************/
2973 gpointer data)
2974{
2975 struct unit *punit =
2977
2978 if (NULL != punit) {
2980 }
2981
2983}
2984
2985/***********************************************************************/
2989 gpointer data)
2990{
2991 struct unit *punit =
2993
2994 if (NULL != punit) {
2996 }
2997
2999}
3000
3001/***********************************************************************/
3005 gpointer data)
3006{
3007 struct unit *punit =
3009
3010 if (NULL != punit) {
3012 }
3013
3015}
3016
3017/***********************************************************************/
3021 gpointer data)
3022{
3023 struct unit_list *punits;
3024 struct unit *punit =
3026
3027 if (NULL == punit) {
3028 return;
3029 }
3030
3035
3037}
3038
3039/***********************************************************************/
3044 gpointer data)
3045{
3046 struct unit *punit =
3048
3049 if (NULL != punit) {
3051 }
3052
3054}
3055
3056/***********************************************************************/
3060 gpointer data)
3061{
3062 struct unit_list *punits;
3063 struct unit *punit =
3065
3066 if (NULL == punit) {
3067 return;
3068 }
3069
3074
3076}
3077
3078/******** Callbacks for citizen bar, map funcs that are not update ********/
3079
3080/***********************************************************************/
3085 double x, double y, gpointer data)
3086{
3087 struct city_dialog *pdialog = data;
3088 struct city *pcity = pdialog->pcity;
3089 int citnum, tlen, len;
3090
3091 if (!can_client_issue_orders()) {
3092 return FALSE;
3093 }
3094
3096 len = (city_size_get(pcity) - 1) * pdialog->cwidth + tlen;
3097
3098 if (x > len) {
3099 /* No citizen that far to the right */
3100 return FALSE;
3101 }
3102 citnum = MIN(city_size_get(pcity) - 1, x / pdialog->cwidth);
3103
3105
3106 return TRUE;
3107}
3108
3109/***********************************************************************/
3113{
3114 enum unit_activity act = (enum unit_activity)GPOINTER_TO_INT(data);
3115 struct city *pcity = workertask_req.owner;
3116 struct tile *ptile = workertask_req.loc;
3117 struct packet_worker_task task;
3118
3119 task.city_id = pcity->id;
3120
3121 if (act == ACTIVITY_LAST) {
3122 task.tgt = -1;
3123 task.want = 0;
3124 } else {
3125 enum extra_cause cause = activity_to_extra_cause(act);
3127 struct extra_type *tgt;
3128
3129 if (cause != EC_NONE) {
3130 tgt = next_extra_for_tile(ptile, cause, city_owner(pcity), NULL);
3131 } else if (rmcause != ERM_NONE) {
3133 } else {
3134 tgt = NULL;
3135 }
3136
3137 if (tgt == NULL) {
3138 struct terrain *pterr = tile_terrain(ptile);
3139
3140 if ((act != ACTIVITY_TRANSFORM
3141 || pterr->transform_result == NULL || pterr->transform_result == pterr)
3142 && (act != ACTIVITY_CULTIVATE || pterr->cultivate_result == NULL)
3143 && (act != ACTIVITY_PLANT || pterr->plant_result == NULL)) {
3144 /* No extra to order */
3145 output_window_append(ftc_client, _("There's no suitable extra to order."));
3146
3147 return;
3148 }
3149
3150 task.tgt = -1;
3151 } else {
3152 task.tgt = extra_index(tgt);
3153 }
3154
3155 task.want = 100;
3156 }
3157
3158 task.tile_id = ptile->index;
3159 task.activity = act;
3160
3162}
3163
3164/***********************************************************************/
3171
3172/***********************************************************************/
3175static void popup_workertask_dlg(struct city *pcity, struct tile *ptile)
3176{
3178 GtkWidget *shl;
3179 struct terrain *pterr = tile_terrain(ptile);
3180 struct universal for_terr = { .kind = VUT_TERRAIN,
3181 .value = { .terrain = pterr }};
3182 struct worker_task *ptask;
3183
3185 workertask_req.owner = pcity;
3186 workertask_req.loc = ptile;
3187
3189 _("What Action to Request"),
3190 _("Select autoworker activity:"));
3191
3192 ptask = worker_task_list_get(pcity->task_reqs, 0);
3193 if (ptask != NULL) {
3194 choice_dialog_add(shl, _("Clear request"),
3197 }
3198
3200 choice_dialog_add(shl, Q_("?act:Mine"),
3203 }
3204 if (pterr->plant_result != NULL
3206 NULL, &for_terr)) {
3207 choice_dialog_add(shl, _("Plant"),
3210 }
3212 choice_dialog_add(shl, _("Irrigate"),
3215 }
3216 if (pterr->cultivate_result != NULL
3218 NULL, &for_terr)) {
3219 choice_dialog_add(shl, _("Cultivate"),
3222 }
3224 choice_dialog_add(shl, _("Road"),
3227 }
3228 if (pterr->transform_result != pterr && pterr->transform_result != NULL
3230 NULL, &for_terr)) {
3231 choice_dialog_add(shl, _("Transform"),
3234 }
3236 city_owner(pcity), NULL) != NULL) {
3237 choice_dialog_add(shl, _("Clean"),
3240 }
3241
3242 choice_dialog_add(shl, _("_Cancel"), 0, 0, FALSE, NULL);
3244
3246 NULL);
3247 }
3248}
3249
3250/***********************************************************************/
3254 double x, double y, gpointer data)
3255{
3256 struct city_dialog *pdialog = data;
3258
3259 if (!can_client_issue_orders()) {
3260 return FALSE;
3261 }
3262
3263 if (cma_is_city_under_agent(pdialog->pcity, NULL)) {
3264 return FALSE;
3265 }
3266
3269
3271 city_map_radius_sq_get(pdialog->pcity),
3272 canvas_x, canvas_y)) {
3274 }
3275
3276 return TRUE;
3277}
3278
3279/***********************************************************************/
3283 double x, double y, gpointer data)
3284{
3285 struct city_dialog *pdialog = data;
3287
3288 if (!can_client_issue_orders()) {
3289 return FALSE;
3290 }
3291
3294
3296 city_map_radius_sq_get(pdialog->pcity),
3297 canvas_x, canvas_y)) {
3298 struct city *pcity = pdialog->pcity;
3299
3300 popup_workertask_dlg(pdialog->pcity,
3303 city_x, city_y));
3304 }
3305
3306 return TRUE;
3307}
3308
3309/***********************************************************************/
3312static void draw_map_canvas(struct city_dialog *pdialog)
3313{
3315 if (pdialog->happiness.map_canvas.darea) { /* in case of spy */
3317 }
3318}
3319
3320/************** Callbacks for Buy, Change, Sell, Worklist *****************/
3321
3322/***********************************************************************/
3325static void buy_callback_response(GtkWidget *w, gint response, gpointer data)
3326{
3327 struct city_dialog *pdialog = data;
3328
3329 if (response == GTK_RESPONSE_YES) {
3330 city_buy_production(pdialog->pcity);
3331 }
3332
3334}
3335
3336/***********************************************************************/
3339static void buy_callback(GtkWidget *w, gpointer data)
3340{
3342 struct city_dialog *pdialog = data;
3343 const char *name = city_production_name_translation(pdialog->pcity);
3344 int value = pdialog->pcity->client.buy_cost;
3345 char buf[1024];
3346
3347 if (!can_client_issue_orders()) {
3348 return;
3349 }
3350
3351 fc_snprintf(buf, ARRAY_SIZE(buf), PL_("Treasury contains %d gold.",
3352 "Treasury contains %d gold.",
3353 client_player()->economic.gold),
3354 client_player()->economic.gold);
3355
3356 if (value <= client_player()->economic.gold) {
3360 /* TRANS: Last %s is pre-pluralised "Treasury contains %d gold." */
3361 PL_("Buy %s for %d gold?\n%s",
3362 "Buy %s for %d gold?\n%s", value),
3363 name, value, buf);
3364 setup_dialog(shell, pdialog->shell);
3365 gtk_window_set_title(GTK_WINDOW(shell), _("Buy It!"));
3368 pdialog);
3370 } else {
3374 /* TRANS: Last %s is pre-pluralised "Treasury contains %d gold." */
3375 PL_("%s costs %d gold.\n%s",
3376 "%s costs %d gold.\n%s", value),
3377 name, value, buf);
3378 setup_dialog(shell, pdialog->shell);
3379 gtk_window_set_title(GTK_WINDOW(shell), _("Buy It!"));
3381 NULL);
3383 }
3384}
3385
3386/***********************************************************************/
3390 struct city_dialog *pdialog)
3391{
3393
3395 && gtk_combo_box_get_active_iter(combo, &iter)) {
3396 cid id;
3397 struct universal univ;
3398
3399 gtk_tree_model_get(gtk_combo_box_get_model(combo), &iter, 2, &id, -1);
3400 univ = cid_production(id);
3401 city_change_production(pdialog->pcity, &univ);
3402 }
3403}
3404
3405/***********************************************************************/
3408static void sell_callback(struct impr_type *pimprove, gpointer data)
3409{
3410 GtkWidget *shl;
3411 struct city_dialog *pdialog = (struct city_dialog *) data;
3412 pdialog->sell_id = improvement_number(pimprove);
3413 int price;
3414
3415 if (!can_client_issue_orders()) {
3416 return;
3417 }
3418
3420 pimprove) != TR_SUCCESS) {
3421 return;
3422 }
3423
3424 price = impr_sell_gold(pimprove);
3429 PL_("Sell %s for %d gold?",
3430 "Sell %s for %d gold?", price),
3431 city_improvement_name_translation(pdialog->pcity, pimprove), price);
3432 setup_dialog(shl, pdialog->shell);
3433 pdialog->sell_shell = shl;
3434
3435 gtk_window_set_title(GTK_WINDOW(shl), _("Sell It!"));
3436
3437 g_signal_connect(shl, "response",
3439
3441}
3442
3443/***********************************************************************/
3446static void sell_callback_response(GtkWidget *w, gint response, gpointer data)
3447{
3448 struct city_dialog *pdialog = data;
3449
3450 if (response == GTK_RESPONSE_YES) {
3451 city_sell_improvement(pdialog->pcity, pdialog->sell_id);
3452 }
3454
3455 pdialog->sell_shell = NULL;
3456}
3457
3458/***********************************************************************/
3463{
3464 GtkTreeModel *model;
3465 GtkTreeIter it;
3466 GdkSeat *seat;
3468 struct impr_type *pimprove;
3469
3471
3472 if (!gtk_tree_model_get_iter(model, &it, path)) {
3473 return;
3474 }
3475
3476 gtk_tree_model_get(model, &it, 0, &pimprove, -1);
3477
3480
3481 if (!(mask & GDK_CONTROL_MASK)) {
3482 sell_callback(pimprove, data);
3483 } else {
3484 if (is_great_wonder(pimprove)) {
3486 } else {
3488 }
3489 }
3490}
3491
3492/************ Callbacks for stuff on the Misc. Settings page **************/
3493
3494/***********************************************************************/
3498{
3499 struct city_dialog *pdialog;
3500
3501 pdialog = (struct city_dialog *) data;
3502
3503 pdialog->rename_shell = input_dialog_create(GTK_WINDOW(pdialog->shell),
3504 /* "shellrenamecity" */
3505 _("Rename City"),
3506 _("What should we rename the city to?"),
3507 city_name_get(pdialog->pcity),
3508 rename_popup_callback, pdialog);
3509}
3510
3511/***********************************************************************/
3514static void rename_popup_callback(gpointer data, gint response,
3515 const char *input)
3516{
3517 struct city_dialog *pdialog = data;
3518
3519 if (pdialog) {
3520 if (response == GTK_RESPONSE_OK) {
3521 city_rename(pdialog->pcity, input);
3522 } /* else CANCEL or DELETE_EVENT */
3523
3524 pdialog->rename_shell = NULL;
3525 }
3526}
3527
3528/***********************************************************************/
3532{
3534}
3535
3536/***********************************************************************/
3540{
3541 struct city_dialog *pdialog = (struct city_dialog *) data;
3542
3543 if (!can_client_issue_orders()) {
3544 return;
3545 }
3546
3547 if (!pdialog->misc.block_signal) {
3548 struct city *pcity = pdialog->pcity;
3550
3551 fc_assert(CITYO_LAST == 3);
3552
3556 }
3559 }
3562 }
3563
3565 pcity->wlcb);
3566 }
3567}
3568
3569/***********************************************************************/
3594
3595/******************** Callbacks for: Close, Prev, Next. *******************/
3596
3597/***********************************************************************/
3600static void close_callback(GtkWidget *w, gpointer data)
3601{
3602 close_city_dialog((struct city_dialog *) data);
3603}
3604
3605/***********************************************************************/
3609{
3610 struct city_dialog *pdialog;
3611 int width, height;
3612
3613 /* Save size of the city dialog. */
3615
3616 pdialog = (struct city_dialog *) data;
3617
3619
3621 citizens_dialog_close(pdialog->pcity);
3622 }
3623 close_happiness_dialog(pdialog->pcity);
3624 close_cma_dialog(pdialog->pcity);
3625
3626 /* Save size of the city dialog. */
3629 width,
3633 height,
3635
3636 last_page
3638
3641
3644
3645 if (pdialog->sell_shell) {
3647 }
3648 if (pdialog->rename_shell) {
3650 }
3651
3654
3655 free(pdialog);
3656
3657 /* Need to do this every time a new dialog is closed. */
3659}
3660
3661/***********************************************************************/
3664static void close_city_dialog(struct city_dialog *pdialog)
3665{
3667}
3668
3669/***********************************************************************/
3674{
3675 struct city_dialog *pdialog = (struct city_dialog *) data;
3676 int i, j, dir, size;
3677 struct city *new_pcity = NULL;
3678
3680 return;
3681 }
3682
3684
3686 fc_assert_ret(size >= 1);
3688
3689 if (size == 1) {
3690 return;
3691 }
3692
3693 /* dir = 1 will advance to the city, dir = -1 will get previous */
3694 if (w == GTK_WIDGET(pdialog->next_command)) {
3695 dir = 1;
3696 } else if (w == GTK_WIDGET(pdialog->prev_command)) {
3697 dir = -1;
3698 } else {
3699 /* Always fails. */
3701 || w == GTK_WIDGET(pdialog->prev_command));
3702 dir = 1;
3703 }
3704
3705 for (i = 0; i < size; i++) {
3706 if (pdialog->pcity == city_list_get(client.conn.playing->cities, i)) {
3707 break;
3708 }
3709 }
3710
3711 fc_assert_ret(i < size);
3712
3713 for (j = 1; j < size; j++) {
3715 (i + dir * j + size) % size);
3717
3718 fc_assert_ret(other_pdialog != pdialog);
3719 if (!other_pdialog) {
3721 break;
3722 }
3723 }
3724
3725 if (!new_pcity) {
3726 /* Every other city has an open city dialog. */
3727 return;
3728 }
3729
3730 /* cleanup happiness dialog */
3732 citizens_dialog_close(pdialog->pcity);
3733 }
3734 close_happiness_dialog(pdialog->pcity);
3735
3736 pdialog->pcity = new_pcity;
3737
3738 /* reinitialize happiness, and cma dialogs */
3741 citizens_dialog_display(pdialog->pcity));
3742 }
3744 get_top_happiness_display(pdialog->pcity, low_citydlg, pdialog->shell));
3745 if (!client_is_observer()) {
3746 fc_assert(pdialog->cma_editor != NULL);
3747 pdialog->cma_editor->pcity = new_pcity;
3748 }
3749
3750 reset_city_worklist(pdialog->production.worklist, pdialog->pcity);
3751
3752 can_slide = FALSE;
3753 center_tile_mapcanvas(pdialog->pcity->tile);
3754 can_slide = TRUE;
3755 if (!client_is_observer()) {
3756 set_cityopt_values(pdialog); /* Need not be in real_city_dialog_refresh */
3757 }
3758
3760
3761 /* Recenter the city map(s) */
3763 if (pdialog->happiness.map_canvas.sw) {
3765 }
3766}
3767
3768/***********************************************************************/
3772{
3774 refresh_worklist(pdialog->production.worklist);
3776}
const char * action_id_name_translation(action_id act_id)
Definition actions.c:1271
bool action_ever_possible(action_id action)
Definition actions.c:7500
#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:666
int city_production_build_shield_cost(const struct city *pcity)
Definition city.c:740
const char * city_name_getx(const struct city *pcity)
Definition city.c:1150
int city_granary_size(int city_size)
Definition city.c:2173
int city_build_slots(const struct city *pcity)
Definition city.c:2974
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:3400
const char * city_name_get(const struct city *pcity)
Definition city.c:1141
int city_improvement_upkeep(const struct city *pcity, const struct impr_type *b)
Definition city.c:1296
bool is_city_option_set(const struct city *pcity, enum city_options option)
Definition city.c:3470
int city_population(const struct city *pcity)
Definition city.c:1231
int city_unit_unhappiness(const struct civ_map *nmap, struct unit *punit, int *free_unhappy)
Definition city.c:3091
bool city_unhappy(const struct city *pcity)
Definition city.c:1667
bool city_celebrating(const struct city *pcity)
Definition city.c:1686
int city_illness_calc(const struct city *pcity, int *ill_base, int *ill_size, int *ill_trade, int *ill_pollution)
Definition city.c:2912
bool city_happy(const struct city *pcity)
Definition city.c:1655
int city_map_radius_sq_get(const struct city *pcity)
Definition city.c:137
citizens city_specialists(const struct city *pcity)
Definition city.c:3385
bool can_city_build_now(const struct civ_map *nmap, const struct city *pcity, const struct universal *target)
Definition city.c:1017
int city_turns_to_grow(const struct city *pcity)
Definition city.c:2037
const char * city_production_name_translation(const struct city *pcity)
Definition city.c:703
static citizens city_size_get(const struct city *pcity)
Definition city.h:570
citizen_category
Definition city.h:265
#define city_owner(_pcity_)
Definition city.h:564
#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:77
void request_unit_fortify(struct unit *punit)
Definition control.c:2365
void unit_focus_try(struct unit *punit)
Definition control.c:502
void request_unit_change_homecity(struct unit *punit)
Definition control.c:2106
void request_unit_unload(struct unit *pcargo)
Definition control.c:2206
void request_unit_sentry(struct unit *punit)
Definition control.c:2354
void request_new_unit_activity(struct unit *punit, enum unit_activity act)
Definition control.c:1941
#define can_unit_do_activity_client(_punit_, _act_)
Definition control.h:41
int counter_index(const struct counter *pcount)
Definition counters.c:176
#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
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:237
#define EC_NONE
Definition fc_types.h:808
@ TR_SUCCESS
Definition fc_types.h:941
#define ERM_NONE
Definition fc_types.h:831
@ O_SHIELD
Definition fc_types.h:103
@ O_FOOD
Definition fc_types.h:103
@ O_TRADE
Definition fc_types.h:103
@ O_SCIENCE
Definition fc_types.h:103
@ O_LUXURY
Definition fc_types.h:103
@ O_GOLD
Definition fc_types.h:103
#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:744
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:2892
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:2951
static void popup_workertask_dlg(struct city *pcity, struct tile *ptile)
Definition citydlg.c:3062
static void city_dialog_update_citizens(struct city_dialog *pdialog)
Definition citydlg.c:1870
static void city_destroy_callback(GtkWidget *w, gpointer data)
Definition citydlg.c:3475
static void city_dialog_update_title(struct city_dialog *pdialog)
Definition citydlg.c:1831
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
#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:3399
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:2085
static void citydlg_response_callback(GtkDialog *dlg, gint response, void *data)
Definition citydlg.c:2518
static void buy_callback_response(GtkWidget *w, gint response, gpointer data)
Definition citydlg.c:3190
void real_city_dialog_refresh(struct city *pcity)
Definition citydlg.c:487
static void unit_center_callback(GtkWidget *w, gpointer data)
Definition citydlg.c:2791
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:1944
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:3054
static void city_dialog_update_present_units(struct city_dialog *pdialog)
Definition citydlg.c:2372
#define CITYMAP_SCALE
Definition citydlg.c:76
static gboolean citizens_callback(GtkWidget *w, GdkEventButton *ev, gpointer data)
Definition citydlg.c:2972
static void change_production_callback(GtkComboBox *combo, struct city_dialog *pdialog)
Definition citydlg.c:3253
static void unit_load_callback(GtkWidget *w, gpointer data)
Definition citydlg.c:2866
static void set_cityopt_values(struct city_dialog *pdialog)
Definition citydlg.c:3441
static void close_city_dialog(struct city_dialog *pdialog)
Definition citydlg.c:3536
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:3203
#define dialog_list_iterate_end
Definition citydlg.c:93
static void impr_callback(GtkTreeView *view, GtkTreePath *path, GtkTreeViewColumn *col, gpointer data)
Definition citydlg.c:3326
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 void cityopt_callback(GtkWidget *w, gpointer data)
Definition citydlg.c:3407
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:3178
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:3272
#define dialog_list_iterate(dialoglist, pdialog)
Definition citydlg.c:91
static void supported_unit_activate_close_callback(GtkWidget *w, gpointer data)
Definition citydlg.c:2818
static void city_dialog_update_prev_next(void)
Definition citydlg.c:2479
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:3467
static struct dialog_list * dialog_list
Definition citydlg.c:216
static void sell_callback_response(GtkWidget *w, gint response, gpointer data)
Definition citydlg.c:3311
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 unit_homecity_callback(GtkWidget *w, gpointer data)
Definition citydlg.c:2938
static void unit_fortify_callback(GtkWidget *w, gpointer data)
Definition citydlg.c:2905
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:2614
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:2918
#define unit_node_vector_iterate(list, elt)
Definition citydlg.c:106
static void rename_callback(GtkWidget *w, gpointer data)
Definition citydlg.c:3365
static void switch_city_callback(GtkWidget *w, gpointer data)
Definition citydlg.c:3545
#define CITYMAP_WIDTH
Definition citydlg.c:74
static void city_dialog_update_map(struct city_dialog *pdialog)
Definition citydlg.c:2063
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:2879
static void show_units_response(void *data)
Definition citydlg.c:2531
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:2265
static void unit_activate_callback(GtkWidget *w, gpointer data)
Definition citydlg.c:2804
static void present_unit_activate_close_callback(GtkWidget *w, gpointer data)
Definition citydlg.c:2843
static void set_city_workertask(GtkWidget *w, gpointer data)
Definition citydlg.c:2999
static void rename_popup_callback(gpointer data, gint response, const char *input)
Definition citydlg.c:3382
static void city_dialog_update_improvement_list(struct city_dialog *pdialog)
Definition citydlg.c:2208
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:2552
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:2593
#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
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
void refresh_all_city_worklists(void)
Definition citydlg.c:3771
static void canvas_draw_cb(GtkDrawingArea *w, cairo_t *cr, int width, int height, gpointer data)
Definition citydlg.c:420
static gboolean right_button_down_citymap(GtkGestureClick *gesture, int n_press, double x, double y, gpointer data)
Definition citydlg.c:3282
static gboolean middle_present_unit_release(GtkGestureClick *gesture, int n_press, double x, double y, gpointer data)
Definition citydlg.c:2778
static bool create_unit_menu(struct city_dialog *pdialog, struct unit *punit, GtkWidget *wdg, bool supported)
Definition citydlg.c:2579
static gboolean right_unit_release(GtkGestureClick *gesture, int n_press, double x, double y, gpointer data)
Definition citydlg.c:2824
static gboolean left_button_down_citymap(GtkGestureClick *gesture, int n_press, double x, double y, gpointer data)
Definition citydlg.c:3253
@ COUNTERS_PAGE
Definition citydlg.c:115
static void close_citydlg_unit_popover(struct city_dialog *pdialog)
Definition citydlg.c:2843
static gboolean middle_supported_unit_release(GtkGestureClick *gesture, int n_press, double x, double y, gpointer data)
Definition citydlg.c:2802
static gboolean citydlg_keyboard_handler(GtkEventControllerKey *controller, guint keyval, guint keycode, GdkModifierType state, gpointer data)
Definition citydlg.c:638
#define menu_item_append_unref(menu, item)
Definition gui_stuff.h:149
void put_unit_picture_city_overlays(struct unit *punit, GtkPicture *p, int height, int *upkeep_cost, int happy_cost)
Definition mapview.c:519
void put_unit_picture(struct unit *punit, GtkPicture *p, int height)
Definition mapview.c:494
void picture_set_from_surface(GtkPicture *pic, cairo_surface_t *surf)
Definition sprite.c:544
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:934
static const char * name_translation_get(const struct name_translation *ptrans)
#define GUI_GTK4_CITYDLG_MAX_XSIZE
Definition options.h:707
#define GUI_GTK4_CITYDLG_MIN_YSIZE
Definition options.h:710
#define GUI_GTK4_CITYDLG_MIN_XSIZE
Definition options.h:706
#define GUI_GTK4_CITYDLG_MAX_YSIZE
Definition options.h:711
int len
Definition packhand.c:128
struct unit * player_unit_by_number(const struct player *pplayer, int unit_id)
Definition player.c:1217
struct city * player_city_by_number(const struct player *pplayer, int city_id)
Definition player.c:1191
bool are_universals_equal(const struct universal *psource1, const struct universal *psource2)
#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 * rename_shell
Definition citydlg.c:205
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
enum city_dialog::@217 page
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 * popover
Definition citydlg.c:147
GtkWidget * citizen_pics
Definition citydlg.c:148
GtkWidget * citizens
Definition citydlg.c:185
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
GtkBox * container
Definition citydlg.c:189
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
GtkBox * widget
Definition citydlg.c:190
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
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
GtkEventController * right
Definition citydlg.c:101
GtkWidget * cmd
Definition citydlg.c:96
GtkWidget * pix
Definition citydlg.c:97
GtkEventController * middle
Definition citydlg.c:100
GtkEventController * left
Definition citydlg.c:99
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:595
universals_u value
Definition fc_types.h:594
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:7033
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
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:6972
struct sprite * get_unittype_sprite(const struct tileset *t, const struct unit_type *punittype, enum unit_activity activity, enum direction8 facing)
Definition tilespec.c:7055
const struct unit_type * utype
Definition fc_types.h:536
const struct impr_type * building
Definition fc_types.h:529
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