Freeciv-3.4
Loading...
Searching...
No Matches
dialogs.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 <stdarg.h>
19#include <stdio.h>
20#include <stdlib.h>
21#include <string.h>
22
23#include <gtk/gtk.h>
24#include <gdk/gdkkeysyms.h>
25
26/* utility */
27#include "astring.h"
28#include "bitvector.h"
29#include "fcintl.h"
30#include "log.h"
31#include "mem.h"
32#include "rand.h"
33#include "support.h"
34
35/* common */
36#include "game.h"
37#include "government.h"
38#include "map.h"
39#include "packets.h"
40#include "player.h"
41#include "sex.h"
42
43/* client */
44#include "client_main.h"
45#include "climisc.h"
46#include "connectdlg_common.h"
47#include "control.h"
48#include "helpdata.h" /* for helptext_nation() */
49#include "goto.h"
50#include "options.h"
51#include "packhand.h"
52#include "text.h"
53#include "tilespec.h"
54
55/* client/gui-gtk-4.0 */
56#include "chatline.h"
57#include "choice_dialog.h"
58#include "citydlg.h"
59#include "editprop.h"
60#include "graphics.h"
61#include "gui_main.h"
62#include "gui_stuff.h"
63#include "mapview.h"
64#include "plrdlg.h"
65#include "wldlg.h"
66#include "unitselect.h"
67#include "unitselextradlg.h"
68
69#include "dialogs.h"
70
71/******************************************************************/
75/* One entry per nation group, plus one at the end for 'all nations' */
83
84static void create_races_dialog(struct player *pplayer);
85static void races_response(GtkWidget *w, gint response, gpointer data);
86static void races_nation_callback(GtkTreeSelection *select, gpointer data);
87static void races_leader_callback(void);
88static void races_sex_callback(GtkWidget *w, gpointer data);
89static void races_style_callback(GtkTreeSelection *select, gpointer data);
91 GtkTreeModel *model, GtkTreePath *path,
92 gboolean selected, gpointer data);
93
94static int selected_nation;
95static int selected_sex;
96static int selected_style;
97
99
100/**********************************************************************/
103void popup_notify_dialog(const char *caption, const char *headline,
104 const char *lines)
105{
106 static struct gui_dialog *shell;
108 int grid_row = 0;
109
112
113 gui_dialog_add_button(shell, "window-close", _("_Close"),
115
121
124 gtk_widget_set_name(headline_label, "notify_label");
125
129
138
139 gtk_widget_set_name(label, "notify_label");
143
144 gtk_grid_attach(GTK_GRID(vgrid), sw, 0, grid_row++, 1, 1);
145
147
150
151 shell = NULL;
152}
153
154/**********************************************************************/
158static void notify_goto_response(GtkWidget *w, gint response)
159{
160 struct city *pcity = NULL;
161 struct tile *ptile = g_object_get_data(G_OBJECT(w), "tile");
162
163 switch (response) {
164 case 1:
166 break;
167 case 2:
168 pcity = tile_city(ptile);
169
172 }
173
174 if (pcity) {
176 }
177 break;
178 }
179
181}
182
183/**********************************************************************/
187{
189}
190
191/**********************************************************************/
196void popup_notify_goto_dialog(const char *headline, const char *lines,
197 const struct text_tag_list *tags,
198 struct tile *ptile)
199{
201
202 if (ptile == NULL) {
204 _("_Close"), GTK_RESPONSE_CLOSE,
205 NULL);
206 } else {
207 struct city *pcity = tile_city(ptile);
208
209 if (pcity != NULL && city_owner(pcity) == client.conn.playing) {
211 _("Goto _Location"), 1,
212 _("I_nspect City"), 2,
213 _("_Close"), GTK_RESPONSE_CLOSE,
214 NULL);
215 } else {
217 _("Goto _Location"), 1,
218 _("_Close"), GTK_RESPONSE_CLOSE,
219 NULL);
220 }
221 }
224
225 label = gtk_label_new(lines);
227 label);
229
230 g_object_set_data(G_OBJECT(shell), "tile", ptile);
231
234}
235
236/**********************************************************************/
261
262/**********************************************************************/
265static void revolution_response(GtkWidget *w, gint response, gpointer data)
266{
267 struct government *government = data;
268
269 if (response == GTK_RESPONSE_YES) {
270 if (!government) {
272 } else {
274 }
275 }
276 if (w) {
278 }
279}
280
281/**********************************************************************/
285{
286 static GtkWidget *shell = NULL;
287
289 if (!shell) {
291 0,
294 _("You say you wanna revolution?"));
295 gtk_window_set_title(GTK_WINDOW(shell), _("Revolution!"));
297
298 g_signal_connect(shell, "destroy",
300 }
301 g_signal_connect(shell, "response",
303
305 } else {
307 }
308}
309
310/**********************************************************************/
313static void pillage_callback(GtkWidget *dlg, gint arg)
314{
316
317 if (arg == GTK_RESPONSE_YES) {
319 "actor"));
321
323 "target"));
325
326 if (actor && tgt_extra) {
328 tgt_extra);
329 }
330 }
331
333}
334
335/**********************************************************************/
339{
341 /* Possibly legal target extras. */
342 bv_extras alternative;
343 /* Selected by default. */
345 /* Current target to check. */
346 struct extra_type *tgt;
347
349
350 BV_CLR_ALL(alternative);
352
353 while ((tgt = get_preferred_pillage(extras))) {
354 int what;
355
356 what = extra_index(tgt);
358 BV_SET(alternative, what);
359 }
360
362 /* TRANS: Pillage dialog title. */
363 _("What To Pillage"),
364 /* TRANS: Pillage dialog actor text. */
365 _("Looking for target extra:"),
366 /* TRANS: Pillage dialog target text. */
367 _("Select what to pillage:"),
368 /* TRANS: Pillage dialog do button text. */
369 _("Pillage"), G_CALLBACK(pillage_callback));
370 }
371}
372
373/**********************************************************************/
378{
380}
381
382/**********************************************************************/
390
391/**************************************************************************
392 NATION SELECTION DIALOG
393**************************************************************************/
394/**********************************************************************/
401{
402 if (nation == -1 || list == NULL) {
403 return NULL;
404 } else {
407 GtkTreePath *path = NULL;
408
410 do {
411 int nation_of_row;
412
413 gtk_tree_model_get(model, &iter, 0, &nation_of_row, -1);
414 if (nation == nation_of_row) {
415 path = gtk_tree_model_get_path(model, &iter);
416 break;
417 }
418 } while (gtk_tree_model_iter_next(model, &iter));
419
420 return path;
421 }
422}
423
424/**********************************************************************/
430static void select_nation_on_tab(GtkWidget *tab_list, int nation)
431{
432 /* tab_list is a GtkTreeView (not its enclosing GtkScrolledWindow). */
435 GtkTreePath *path = path_to_nation_on_list(nation, list);
436
437 /* Suppress normal effects of selection change to avoid loops. */
439 if (path) {
440 /* Found nation on this list. */
441 /* Avoid disturbing tabs that already have the correct selection. */
442 if (!gtk_tree_selection_path_is_selected(select, path)) {
443 /* Set cursor -- this will cause the nation to be selected */
445 /* Make sure selected nation is visible in list */
447 }
448 } else {
449 /* Either no nation was selected, or the nation is not mentioned in
450 * this tab. Either way we want to end up with no selection. */
452
453 /* If there is no cursor, Gtk tends to focus and select the first row
454 * at the first opportunity, disturbing any existing state. We want to
455 * allow the no-rows-selected state, so detect this case and defuse
456 * it by setting a cursor. */
458 /* Set the cursor in the case above, or if there was a previous
459 * selection */
463 }
466 }
467 gtk_tree_path_free(path);
468 /* Re-enable selection change side-effects */
470}
471
472/**********************************************************************/
475static void sync_tabs_to_nation(int nation)
476{
477 /* Ensure that all tabs are in sync with the new selection */
478 int i;
479
480 for (i = 0; i <= nation_group_count(); i++) {
481 if (races_nation_list[i]) {
483 }
484 }
485}
486
487/**********************************************************************/
510
511/**********************************************************************/
517static void select_nation(int nation,
518 const char *leadername, bool is_male,
519 int style_id)
520{
522
523 selected_nation = nation;
524
525 /* Refresh the available leaders. */
527
528 if (selected_nation != -1) {
529
530 /* Select leader name and sex. */
531 if (leadername) {
533 /* Assume is_male is valid too. */
535 TRUE);
536 } else {
539
541 /* This also updates the leader sex, eventually. */
542 }
543
544 /* Select the appropriate city style entry. */
545 {
546 int i;
547 int j = 0;
548 GtkTreePath *path;
549
552
553 if (i >= 0 && i < style_id) {
554 j++;
555 } else {
556 break;
557 }
559
560 path = gtk_tree_path_new();
563 NULL, FALSE);
564 gtk_tree_path_free(path);
565 }
566
567 /* Update nation description. */
568 {
569 char buf[4096];
570
571 helptext_nation(buf, sizeof(buf),
574 }
575
577 /* Once we've made a nation selection, allow user to ok */
580 } else {
581 /* No nation selected. Blank properties and make controls insensitive. */
582 /* Leader name */
583 gtk_entry_buffer_set_text(buffer, "", -1);
584 /* Leader sex (*shrug*) */
586 /* City style */
587 {
588 GtkTreeSelection *select
590
592 }
593 /* Nation description */
595
597 /* Don't allow OK without a selection
598 * (user can still do "Random Nation") */
601 }
602
603 /* Update notebook to reflect the current selection */
605}
606
607/**********************************************************************/
614 int index)
615{
616 GtkWidget *sw = NULL;
617 GtkListStore *store = NULL;
619
620 /* Populate nation list store. */
621 nations_iterate(pnation) {
622 bool used;
623 GdkPixbuf *img;
624 GtkTreeIter it;
625 GValue value = { 0, };
626
627 if (!is_nation_playable(pnation) || !is_nation_pickable(pnation)) {
628 continue;
629 }
630
631 if (NULL != group && !nation_is_in_group(pnation, group)) {
632 continue;
633 }
634
635 /* Only create tab on demand -- we don't want it if there aren't any
636 * currently pickable nations in this group. */
637 if (sw == NULL) {
638 GtkTreeSelection *select;
639 GtkCellRenderer *render;
641
646
650 gtk_widget_add_css_class(GTK_WIDGET(list), "large-pixbufs");
653 g_object_unref(store);
654
657 NULL);
659 NULL, NULL);
660
666
669 "pixbuf", 2, NULL);
673 "text", 3, "strikethrough", 1, NULL);
675 }
676
677 gtk_list_store_append(store, &it);
678
679 used = (pnation->player != NULL && pnation->player != races_player);
680 gtk_list_store_set(store, &it, 0, nation_number(pnation), 1, used, -1);
681 img = get_flag(pnation);
682 if (img != NULL) {
683 gtk_list_store_set(store, &it, 2, img, -1);
685 }
686
689 gtk_list_store_set_value(store, &it, 3, &value);
690 g_value_unset(&value);
692
693 races_nation_list[index] = list;
694 return sw;
695}
696
697/**********************************************************************/
701{
704 int i;
705
706 for (i = 0; i < nation_group_count(); i++) {
707 struct nation_group *group = (nation_group_by_number(i));
708
709 if (is_nation_group_hidden(group)) {
711 continue;
712 }
714 if (nation_list) {
718 }
719 }
720
722 /* Even this list can be empty if there are no pickable nations (due to
723 * a combination of start position and nationset restrictions). */
724 if (nation_list) {
728 }
729}
730
731/**********************************************************************/
735void races_update_pickable(bool nationset_change)
736{
737 int tab, groupidx;
738
739 if (!races_shell) {
740 return;
741 }
742
743 /* Save selected tab */
745 if (tab != -1) {
746 int i = 0;
747
748 groupidx = 0;
749 /* Turn tab index into a nation group index (they're not always equal,
750 * as some groups may not currently have tabs). */
751 do {
752 while (groupidx <= nation_group_count()
754 groupidx++;
755 }
757 /* Nation group 'groupidx' is what's displayed on the i'th tab */
758 if (i == tab) {
759 break;
760 }
761 i++;
762 groupidx++;
763 } while (TRUE);
764 } else {
765 /* No tabs currently */
766 groupidx = -1;
767 }
768
769 /* selected_nation already contains currently selected nation; however,
770 * it may no longer be a valid choice */
771 if (selected_nation != -1
773 select_nation(-1, NULL, FALSE, 0);
774 }
775
776 /* Delete all list stores, treeviews, tabs */
779 }
780
781 /* (Re)create all of them */
783
784 /* Can't set current tab before child widget is visible */
786
787 /* Restore selected tab */
788 if (groupidx != -1 && races_nation_list[groupidx] != nullptr) {
789 int i;
790
791 tab = 0;
792 for (i = 0; i < groupidx; i++) {
793 if (races_nation_list[i] != NULL) {
794 tab++;
795 }
796 }
798 }
799
800 /* Restore selected nation */
802}
803
804/**********************************************************************/
807void nationset_sync_to_server(const char *nationset)
808{
809 if (nationsets_chooser) {
810 struct nation_set *set = nation_set_by_setting_value(nationset);
811
813 nation_set_index(set));
814 }
815}
816
817/**********************************************************************/
821{
823
825 struct option *poption = optset_option_by_name(server_optset, "nationset");
826 gchar *rule_name;
827
829 0, &rule_name, -1);
830 /* Suppress propagation of an option value equivalent to the current
831 * server state, after canonicalisation, to avoid loops from
832 * nationset_sync_to_server().
833 * (HACK: relies on local Gtk "changed" signal getting here before
834 * server response.) */
836 != nation_set_by_rule_name(rule_name)) {
837 option_str_set(poption, rule_name);
838 }
839 FC_FREE(rule_name);
840 }
841}
842
843/**********************************************************************/
846static void create_races_dialog(struct player *pplayer)
847{
849 GtkWidget *cmd;
850 GtkWidget *group;
852 GtkWidget *frame, *label, *combo;
853 GtkWidget *text;
854 GtkWidget *notebook;
855 GtkWidget *sw;
857 GtkListStore *store;
858 GtkCellRenderer *render;
860 int i;
861 char *title;
862
863 /* Init. */
864 selected_nation = -1;
865
866 if (C_S_RUNNING == client_state()) {
867 title = _("Edit Nation");
868 } else if (NULL != pplayer && pplayer == client.conn.playing) {
869 title = _("What Nation Will You Be?");
870 } else {
871 title = _("Pick Nation");
872 }
873
875 NULL,
876 0,
877 _("_Cancel"),
879 _("_Random Nation"),
880 GTK_RESPONSE_NO, /* Arbitrary */
881 _("_OK"),
883 NULL);
885 races_player = pplayer;
887
889
890 frame = gtk_frame_new(_("Select a nation"));
892
898
900
901 /* Left side: nation list */
902 {
904
906
908
909 /* Nationset selector dropdown */
910 /* Only present this if there is more than one choice.
911 * (If ruleset is changed, possibly changing the number of available sets
912 * and invalidating this decision, then dialog will be popped down.) */
913 if (nation_set_count() > 1) {
918 GtkCellRenderer *renderer;
919
921 /* Index in list store must match nation_set_index(). */
922 gchar *escaped;
923 struct astring s = ASTRING_INIT;
924 int num_nations = 0;
925
926 nations_iterate(pnation) {
927 if (is_nation_playable(pnation) && nation_is_in_set(pnation, pset)) {
928 num_nations++;
929 }
932 /* TRANS: nation set name followed by number of playable nations;
933 * <b> and </b> are Pango markup and should be left alone */
934 astr_set(&s, PL_("<b>%s</b> (%d nation)",
935 "<b>%s</b> (%d nations)", num_nations),
936 escaped, num_nations);
937 g_free(escaped);
939 /* While in principle it would be better to get Gtk to wrap the
940 * drop-down (e.g. via "wrap-width" property), there's no way
941 * to specify the indentation we want. So we do it ourselves. */
942 char *desc = fc_strdup(_(nation_set_description(pset)));
943 char *p = desc;
944
945 fc_break_lines(desc, 70);
946 astr_add(&s, "\n");
947 while (*p) {
948 int len = strcspn(p, "\n");
949
950 if (p[len] == '\n') {
951 len++;
952 }
953 escaped = g_markup_escape_text(p, len);
954 astr_add(&s, "\t%s", escaped);
955 g_free(escaped);
956 p += len;
957 }
958 FC_FREE(desc);
959 }
962 1, astr_str(&s),
964 -1);
965 astr_free(&s);
967
968 /* We want a combo box where the button displays just the set name,
969 * but the dropdown displays the expanded description. */
973 {
974 /* Do our best to turn the text-entry widget into something more
975 * like a cell-view: disable editing, and focusing (which removes
976 * the caret). */
978
981 }
982 /* The entry displays the set name. */
984 2);
985 /* The dropdown displays the marked-up description. */
986 renderer = gtk_cell_renderer_text_new();
989 renderer, TRUE);
991 renderer, "markup", 1, NULL);
996 {
997 /* Populate initially from client's view of server setting */
999 "nationset");
1000 if (poption) {
1002 }
1003 }
1004
1006 "use-underline", TRUE,
1007 "label", _("_Nation Set:"),
1008 "xalign", 0.0,
1009 "yalign", 0.5,
1010 NULL);
1012
1015 0, 0, 1, 1);
1017 1, 0, 1, 1);
1018 }
1019
1023 0, 2, 2, 1);
1024
1025 /* Suppress notebook tabs if there will be only one ("All") */
1026 {
1027 bool show_groups = FALSE;
1028
1031 show_groups = TRUE;
1032 break;
1033 }
1035 if (!show_groups) {
1037 } else {
1039 "use-underline", TRUE,
1040 "label", _("Nation _Groups:"),
1041 "xalign", 0.0,
1042 "yalign", 0.5,
1043 NULL);
1046 0, 1, 2, 1);
1048 }
1049 }
1050
1051 /* Populate treeview */
1053
1055 }
1056
1057 /* Right side. */
1058 notebook = gtk_notebook_new();
1060 gtk_box_append(GTK_BOX(hbox), notebook);
1061
1062 /* Properties pane. */
1063 label = gtk_label_new_with_mnemonic(_("_Properties"));
1064
1066 g_signal_connect(table, "destroy",
1073 gtk_notebook_append_page(GTK_NOTEBOOK(notebook), table, label);
1074
1075 /* Leader. */
1076 {
1078
1081 g_object_unref(G_OBJECT(model));
1082 }
1083 races_leader = combo;
1085 "use-underline", TRUE,
1086 "mnemonic-widget", GTK_COMBO_BOX(combo),
1087 "label", _("_Leader:"),
1088 "xalign", 0.0,
1089 "yalign", 0.5,
1090 NULL);
1092 gtk_widget_set_margin_end(label, 12);
1093 gtk_grid_attach(GTK_GRID(table), label, 0, 0, 1, 2);
1094 gtk_grid_attach(GTK_GRID(table), combo, 1, 0, 2, 1);
1095
1097 "_"));
1099 races_sex[0] = cmd;
1100 gtk_grid_attach(GTK_GRID(table), cmd, 1, 1, 1, 1);
1101 group = cmd;
1102
1104 "_"));
1106 GTK_CHECK_BUTTON(group));
1108 races_sex[1] = cmd;
1109 gtk_grid_attach(GTK_GRID(table), cmd, 2, 1, 1, 1);
1110
1111 /* City style. */
1112 store = gtk_list_store_new(3, G_TYPE_INT,
1114
1118 gtk_widget_add_css_class(GTK_WIDGET(list), "large-pixbufs");
1120 g_object_unref(store);
1124
1131 gtk_grid_attach(GTK_GRID(table), sw, 1, 2, 2, 2);
1132
1134 "use-underline", TRUE,
1135 "mnemonic-widget", list,
1136 "label", _("City _Styles:"),
1137 "xalign", 0.0,
1138 "yalign", 0.5,
1139 NULL);
1140 gtk_widget_set_margin_top(label, 6);
1141 gtk_widget_set_margin_end(label, 12);
1142 gtk_grid_attach(GTK_GRID(table), label, 0, 2, 1, 1);
1143
1146 "pixbuf", 1, NULL);
1148 render = gtk_cell_renderer_text_new();
1150 "text", 2, NULL);
1152
1153 /* Populate style store. */
1155 GdkPixbuf *img;
1156 struct sprite *s;
1157 GtkTreeIter it;
1158
1160
1161 if (i >= 0) {
1162 gtk_list_store_append(store, &it);
1163
1166 free_sprite(s);
1167 gtk_list_store_set(store, &it, 0, i, 1, img, 2,
1170 }
1172
1173 /* Legend pane. */
1174 label = gtk_label_new_with_mnemonic(_("_Description"));
1175
1176 text = gtk_text_view_new();
1189
1190 gtk_notebook_append_page(GTK_NOTEBOOK(notebook), text, label);
1191
1192 /* Signals. */
1193 g_signal_connect(shell, "destroy",
1195 g_signal_connect(shell, "response",
1197
1200
1201 g_signal_connect(races_sex[0], "toggled",
1203 g_signal_connect(races_sex[1], "toggled",
1205
1206 /* Finish up. */
1208
1209 /* You can't assign NO_NATION during a running game. */
1210 if (C_S_RUNNING == client_state()) {
1212 FALSE);
1213 }
1214
1216 TRUE);
1217
1218 /* Select player's current nation in UI, if any */
1219 if (races_player->nation) {
1224 /* Make sure selected nation is visible
1225 * (last page, "All", will certainly contain it) */
1228 } else {
1229 select_nation(-1, NULL, FALSE, 0);
1230 }
1231}
1232
1233/**********************************************************************/
1236void popup_races_dialog(struct player *pplayer)
1237{
1238 if (!pplayer) {
1239 return;
1240 }
1241
1242 if (!races_shell) {
1243 create_races_dialog(pplayer);
1245 }
1246}
1247
1248/**********************************************************************/
1252{
1253 if (races_shell) {
1255 }
1256
1257 /* We're probably starting a new game, maybe with a new ruleset.
1258 So we warn the worklist dialog. */
1260}
1261
1262/**********************************************************************/
1267{
1268 int i;
1269
1270 if (!races_shell) {
1271 return;
1272 }
1273
1274 for (i = 0; i <= nation_group_count(); i++) {
1275 if (races_nation_list[i]) {
1279 GtkTreeIter it;
1281
1282 /* Update 'chosen' column in model */
1283 if (gtk_tree_model_get_iter_first(model, &it)) {
1284 do {
1285 int nation_no;
1286 struct nation_type *nation;
1287
1288 gtk_tree_model_get(model, &it, 0, &nation_no, -1);
1289 nation = nation_by_number(nation_no);
1290
1291 chosen = !is_nation_pickable(nation)
1292 || (nation->player && nation->player != races_player);
1293
1294 gtk_list_store_set(GTK_LIST_STORE(model), &it, 1, chosen, -1);
1295
1296 } while (gtk_tree_model_iter_next(model, &it));
1297 }
1298
1299 /* If our selection is now invalid, deselect it */
1300 if (gtk_tree_selection_get_selected(select, &model, &it)) {
1301 gtk_tree_model_get(model, &it, 1, &chosen, -1);
1302
1303 if (chosen) {
1305 }
1306 }
1307 }
1308 }
1309}
1310
1311/**********************************************************************/
1315{
1316 GtkTreeModel *model;
1317 GtkTreeIter it;
1318
1319 if (gtk_tree_selection_get_selected(select, &model, &it)) {
1321 int newnation;
1322
1323 gtk_tree_model_get(model, &it, 0, &newnation, 1, &chosen, -1);
1324
1325 /* Only allow nations not chosen by another player */
1326 if (!chosen) {
1327 if (newnation != selected_nation) {
1328 /* Choose a random leader */
1331 }
1332 return;
1333 }
1334 }
1335
1336 /* Fall-through if no valid nation selected */
1337 select_nation(-1, NULL, FALSE, 0);
1338}
1339
1340/**********************************************************************/
1359
1360/**********************************************************************/
1364{
1366}
1367
1368/**********************************************************************/
1372 GtkTreeModel *model, GtkTreePath *path,
1373 gboolean selected, gpointer data)
1374{
1375 GtkTreeIter it;
1377
1378 gtk_tree_model_get_iter(model, &it, path);
1379 gtk_tree_model_get(model, &it, 1, &chosen, -1);
1380 return (!chosen || selected);
1381}
1382
1383/**********************************************************************/
1387{
1388 GtkTreeModel *model;
1389 GtkTreeIter it;
1390
1391 if (gtk_tree_selection_get_selected(select, &model, &it)) {
1392 gtk_tree_model_get(model, &it, 0, &selected_style, -1);
1393 } else {
1394 selected_style = -1;
1395 }
1396}
1397
1398/**********************************************************************/
1401static void races_response(GtkWidget *w, gint response, gpointer data)
1402{
1403 if (response == GTK_RESPONSE_ACCEPT) {
1404 const char *s;
1405
1406 /* This shouldn't be possible but... */
1407 if (selected_nation == -1) {
1408 return;
1409 }
1410
1411 if (selected_sex == -1) {
1412 output_window_append(ftc_client, _("You must select your sex."));
1413 return;
1414 }
1415
1416 if (selected_style == -1) {
1417 output_window_append(ftc_client, _("You must select your style."));
1418 return;
1419 }
1420
1423
1424 /* Perform a minimum of sanity test on the name. */
1425 /* This could call is_allowed_player_name() if it were available. */
1426 if (strlen(s) == 0) {
1427 output_window_append(ftc_client, _("You must type a legal name."));
1428 return;
1429 }
1430
1433 selected_sex, s,
1435 } else if (response == GTK_RESPONSE_NO) {
1438 -1, FALSE, "", 0);
1439 }
1440
1442}
1443
1444/**********************************************************************/
1457
1458/**********************************************************************/
1471
1472/**********************************************************************/
1475void popup_upgrade_dialog(struct unit_list *punits)
1476{
1478 char buf[512];
1479
1480 if (!punits || unit_list_size(punits) == 0) {
1481 return;
1482 }
1483
1484 if (!get_units_upgrade_info(buf, sizeof(buf), punits)) {
1487 "%s", buf);
1488 gtk_window_set_title(GTK_WINDOW(shell), _("Upgrade Unit!"));
1491 NULL);
1493 } else {
1496 "%s", buf);
1497 gtk_window_set_title(GTK_WINDOW(shell), _("Upgrade Obsolete Units"));
1500
1501 /* FIXME: Should not block */
1506 }
1508 }
1509}
1510
1511/**********************************************************************/
1514void popup_disband_dialog(struct unit_list *punits)
1515{
1517 char buf[512];
1518
1519 if (!punits || unit_list_size(punits) == 0) {
1520 return;
1521 }
1522
1523 if (!get_units_disband_info(buf, sizeof(buf), punits)) {
1526 "%s", buf);
1527 gtk_window_set_title(GTK_WINDOW(shell), _("Disband Units"));
1530 NULL);
1532 } else {
1535 "%s", buf);
1536 gtk_window_set_title(GTK_WINDOW(shell), _("Disband Units"));
1539
1540 /* FIXME: Should not block */
1545 }
1547 }
1549 }
1550}
1551
1552/**********************************************************************/
1562
1563/**********************************************************************/
1577
1578/**********************************************************************/
1582void show_tileset_error(bool fatal, const char *tset_name, const char *msg)
1583{
1584 if (is_gui_up()) {
1585 GtkWidget *dialog;
1586
1587 if (tset_name != NULL) {
1590 _("Tileset \"%s\" problem, "
1591 "it's probably incompatible with "
1592 "the ruleset:\n%s"),
1593 tset_name, msg);
1594 } else {
1597 _("Tileset problem, "
1598 "it's probably incompatible with "
1599 "the ruleset:\n%s"),
1600 msg);
1601 }
1602
1603 setup_dialog(dialog, toplevel);
1604
1605 blocking_dialog(dialog);
1606
1608 }
1609}
1610
1611/**********************************************************************/
1616{
1617 /* Just tell the client common code to handle this. */
1618 return FALSE;
1619}
1620
1621/**********************************************************************/
1625void popup_combat_info(int attacker_unit_id, int defender_unit_id,
1626 int attacker_hp, int defender_hp,
1627 bool make_att_veteran, bool make_def_veteran)
1628{
1629}
1630
1631/**********************************************************************/
1634static void act_conf_response(GtkWidget *dialog, gint response,
1635 gpointer data)
1636{
1638
1639 if (response == GTK_RESPONSE_YES) {
1641 } else {
1643 }
1644}
1645
1646/**********************************************************************/
1650 struct act_confirmation_data *data)
1651{
1652 GtkWidget *dialog;
1653 char buf[1024];
1654
1655 if (expl != NULL) {
1656 fc_snprintf(buf, sizeof(buf), _("Are you sure you want to do %s?\n%s"),
1658 } else {
1659 fc_snprintf(buf, sizeof(buf), _("Are you sure you want to do %s?"),
1661 }
1662
1664 0,
1667 "%s", buf);
1668 setup_dialog(dialog, toplevel);
1669
1670 g_signal_connect(dialog, "response",
1672
1674}
1675
1676/**********************************************************************/
1679void popup_image(const char *tag)
1680{
1681 struct sprite *spr = load_popup_sprite(tag);
1682
1683 if (spr != NULL) {
1685 GtkWidget *win = gtk_window_new();
1687 int width, height;
1688
1692 gtk_widget_show(win);
1693
1695 } else {
1696 log_error(_("No image for tag \"%s\", requested by the server."), tag);
1697 }
1698}
const char * action_id_name_translation(action_id act_id)
Definition actions.c:1271
void astr_free(struct astring *astr)
Definition astring.c:148
void astr_set(struct astring *astr, const char *format,...)
Definition astring.c:251
void astr_add(struct astring *astr, const char *format,...)
Definition astring.c:271
static const char * astr_str(const struct astring *astr) fc__attribute((nonnull(1)))
Definition astring.h:93
#define ASTRING_INIT
Definition astring.h:44
#define BV_CLR_ALL(bv)
Definition bitvector.h:103
#define BV_SET(bv, bit)
Definition bitvector.h:89
#define BV_CLR(bv, bit)
Definition bitvector.h:94
struct canvas int int struct sprite int int int int height
Definition canvas_g.h:44
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_style_name_translation(const int style)
Definition city.c:1797
#define city_owner(_pcity_)
Definition city.h:564
void popup_city_dialog(struct city *pcity)
struct civclient client
enum client_states client_state(void)
@ C_S_RUNNING
Definition client_main.h:47
void common_taxrates_callback(int idx, bool reverse)
Definition climisc.c:1194
static struct fc_sockaddr_list * list
Definition clinet.c:102
char * incite_cost
Definition comments.c:77
void request_unit_disband(struct unit *punit)
Definition control.c:2087
void request_new_unit_activity_targeted(struct unit *punit, enum unit_activity act, struct extra_type *tgt)
Definition control.c:1950
void action_confirmation(struct act_confirmation_data *data, bool confirm)
Definition control.c:1778
void request_unit_upgrade(struct unit *punit)
Definition control.c:2118
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 const struct action *paction const char * expl
Definition dialogs_g.h:94
struct unit struct city struct unit struct tile struct extra_type const struct act_prob *act_probs int actor_unit_id struct unit * actor
Definition dialogs_g.h:73
const char * caption
Definition dialogs_g.h:37
const char const char * headline
Definition dialogs_g.h:38
popup_notify_dialog
Definition dialogs_g.h:37
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 const struct action *paction struct unit struct city const struct action *paction request_action_confirmation
Definition dialogs_g.h:94
struct extra_type * extra_by_number(int id)
Definition extras.c:183
static struct extra_type extras[MAX_EXTRA_TYPES]
Definition extras.c:31
#define extra_index(_e_)
Definition extras.h:183
int Tech_type_id
Definition fc_types.h:238
int Nation_type_id
Definition fc_types.h:241
#define MAX_NUM_NATION_GROUPS
Definition fc_types.h:59
#define PL_(String1, String2, n)
Definition fcintl.h:71
#define _(String)
Definition fcintl.h:67
const struct ft_color ftc_client
struct civ_game game
Definition game.c:62
struct unit * game_unit_by_number(int id)
Definition game.c:116
static GtkWidget * races_properties
Definition dialogs.c:78
static gboolean races_selection_func(GtkTreeSelection *select, GtkTreeModel *model, GtkTreePath *path, gboolean selected, gpointer data)
Definition dialogs.c:1350
static GtkWidget * races_shell
Definition dialogs.c:72
static void select_nation(int nation, const char *leadername, bool is_male, int style_id)
Definition dialogs.c:513
static void sync_tabs_to_nation(int nation)
Definition dialogs.c:471
static GtkWidget * races_style_list
Definition dialogs.c:81
static void revolution_response(GtkWidget *w, gint response, gpointer data)
Definition dialogs.c:265
static void races_leader_callback(void)
Definition dialogs.c:1322
static int selected_style
Definition dialogs.c:96
static void create_nation_selection_lists(void)
Definition dialogs.c:696
static int is_showing_pillage_dialog
Definition dialogs.c:98
static void create_races_dialog(struct player *pplayer)
Definition dialogs.c:839
static GtkWidget * races_leader
Definition dialogs.c:79
static GtkWidget * races_nation_list[MAX_NUM_NATION_GROUPS+1]
Definition dialogs.c:76
static void populate_leader_list(void)
Definition dialogs.c:487
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 races_update_pickable(bool nationset_change)
Definition dialogs.c:731
static void notify_connect_msg_response(GtkWidget *w, gint response)
Definition dialogs.c:186
static void races_sex_callback(GtkWidget *w, gpointer data)
Definition dialogs.c:1342
static void pillage_callback(GtkWidget *dlg, gint arg)
Definition dialogs.c:313
void popup_notify_goto_dialog(const char *headline, const char *lines, const struct text_tag_list *tags, struct tile *ptile)
Definition dialogs.c:196
void show_tech_gained_dialog(Tech_type_id tech)
Definition dialogs.c:1524
static GtkWidget * races_sex[2]
Definition dialogs.c:80
void popup_races_dialog(struct player *pplayer)
Definition dialogs.c:1215
void popup_disband_dialog(struct unit_list *punits)
Definition dialogs.c:1473
static GtkTreePath * path_to_nation_on_list(Nation_type_id nation, GtkTreeView *list)
Definition dialogs.c:399
void popdown_races_dialog(void)
Definition dialogs.c:1230
static int selected_nation
Definition dialogs.c:94
static GtkWidget * races_notebook
Definition dialogs.c:77
void popup_pillage_dialog(struct unit *punit, bv_extras extras)
Definition dialogs.c:338
static void races_response(GtkWidget *w, gint response, gpointer data)
Definition dialogs.c:1380
static void act_conf_response(GtkWidget *dialog, gint response, gpointer data)
Definition dialogs.c:1592
static void notify_goto_response(GtkWidget *w, gint response)
Definition dialogs.c:159
static void races_nation_callback(GtkTreeSelection *select, gpointer data)
Definition dialogs.c:1293
void popup_connect_msg(const char *headline, const char *message)
Definition dialogs.c:239
bool handmade_scenario_warning(void)
Definition dialogs.c:1573
void unit_select_dialog_update_real(void *unused)
Definition dialogs.c:386
static void nationset_callback(GtkComboBox *b, gpointer data)
Definition dialogs.c:814
void races_toggles_set_sensitive(void)
Definition dialogs.c:1245
void show_tileset_error(bool fatal, const char *tset_name, const char *msg)
Definition dialogs.c:1540
static void races_style_callback(GtkTreeSelection *select, gpointer data)
Definition dialogs.c:1365
void popup_combat_info(int attacker_unit_id, int defender_unit_id, int attacker_hp, int defender_hp, bool make_att_veteran, bool make_def_veteran)
Definition dialogs.c:1583
static int selected_sex
Definition dialogs.c:95
struct player * races_player
Definition dialogs.c:74
static GtkWidget * nationsets_chooser
Definition dialogs.c:73
static GtkTextBuffer * races_text
Definition dialogs.c:82
void nationset_sync_to_server(const char *nationset)
Definition dialogs.c:801
gboolean taxrates_callback(GtkWidget *w, GdkEventButton *ev, gpointer data)
Definition dialogs.c:1425
static GtkWidget * create_list_of_nations_in_group(struct nation_group *group, int index)
Definition dialogs.c:609
void popup_image(const char *tag)
Definition dialogs.c:1636
static void select_nation_on_tab(GtkWidget *tab_list, int nation)
Definition dialogs.c:427
void popdown_all_game_dialogs(void)
Definition dialogs.c:1514
struct property_editor * editprop_get_property_editor(void)
Definition editprop.c:6245
void property_editor_popdown(struct property_editor *pe)
Definition editprop.c:6310
GtkWidget * bottom_notebook
Definition gui_main.c:130
bool is_gui_up(void)
Definition gui_main.c:2058
GtkWidget * toplevel
Definition gui_main.c:126
#define GUI_GTK_OPTION(optname)
Definition gui_main.h:32
void gui_dialog_present(struct gui_dialog *dlg)
Definition gui_stuff.c:835
void gui_dialog_new(struct gui_dialog **pdlg, GtkNotebook *notebook, gpointer user_data, bool check_top)
Definition gui_stuff.c:517
void gui_dialog_show_all(struct gui_dialog *dlg)
Definition gui_stuff.c:795
void gui_dialog_set_title(struct gui_dialog *dlg, const char *title)
Definition gui_stuff.c:935
void gui_dialog_set_default_size(struct gui_dialog *dlg, int width, int height)
Definition gui_stuff.c:919
void gui_dialog_destroy_all(void)
Definition gui_stuff.c:974
GtkWidget * gui_dialog_add_button(struct gui_dialog *dlg, const char *icon_name, const char *text, int response)
Definition gui_stuff.c:706
void setup_dialog(GtkWidget *shell, GtkWidget *parent)
Definition gui_stuff.c:287
void popup_help_dialog_typed(const char *item, enum help_page_type htype)
Definition helpdlg.c:196
static struct gui_dialog * shell
Definition messagedlg.c:39
GdkPixbuf * get_flag(const struct nation_type *nation)
Definition plrdlg.c:607
const char * title
Definition repodlgs.c:1314
void free_sprite(struct sprite *s)
Definition sprite.c:278
GdkPixbuf * sprite_get_pixbuf(struct sprite *sprite)
Definition sprite.c:402
struct sprite * crop_blankspace(struct sprite *s)
Definition sprite.c:386
void unit_select_dialog_popup_main(struct tile *ptile, bool create)
Definition unitselect.c:186
void unit_select_dialog_popdown(void)
Definition unitselect.c:207
bool select_tgt_extra(struct unit *actor, struct tile *ptile, bv_extras potential_tgt_extras, struct extra_type *suggested_tgt_extra, const gchar *dlg_title, const gchar *actor_label, const gchar *tgt_label, const gchar *do_label, GCallback do_callback)
void blank_max_unit_size(void)
Definition wldlg.c:79
gboolean reverse_taxrates_callback(GtkGestureClick *gesture, int n_press, double x, double y)
Definition dialogs.c:1461
gint blocking_dialog(GtkWidget *dlg)
Definition gui_stuff.c:1136
void gui_dialog_add_content_widget(struct gui_dialog *dlg, GtkWidget *wdg)
Definition gui_stuff.c:1105
void widget_destroyed(GtkWidget *wdg, void *data)
Definition gui_stuff.c:1155
static char * leader_name
Definition dialogs.c:97
void popup_revolution_dialog(void)
Definition dialogs.c:112
void helptext_nation(char *buf, size_t bufsz, struct nation_type *pnation, const char *user_text)
Definition helpdata.c:5134
@ HELP_TECH
Definition helpdlg_g.h:21
const char * name
Definition inputfile.c:127
#define fc_assert(condition)
Definition log.h:177
#define fc_assert_action(condition, action)
Definition log.h:188
#define log_error(message,...)
Definition log.h:104
int dsend_packet_nation_select_req(struct connection *pc, int player_no, Nation_type_id nation_no, bool is_male, const char *name, int style)
void center_tile_mapcanvas(const struct tile *ptile)
#define FC_FREE(ptr)
Definition mem.h:41
#define fc_strdup(str)
Definition mem.h:43
Nation_type_id nation_number(const struct nation_type *pnation)
Definition nation.c:484
struct nation_leader * nation_leader_by_name(const struct nation_type *pnation, const char *name)
Definition nation.c:271
bool nation_leader_is_male(const struct nation_leader *pleader)
Definition nation.c:295
const char * nation_adjective_translation(const struct nation_type *pnation)
Definition nation.c:149
struct nation_type * nation_by_number(const Nation_type_id nation)
Definition nation.c:472
int nation_set_index(const struct nation_set *pset)
Definition nation.c:698
bool is_nation_pickable(const struct nation_type *nation)
Definition nation.c:188
const struct nation_leader_list * nation_leaders(const struct nation_type *pnation)
Definition nation.c:231
const char * nation_set_name_translation(const struct nation_set *pset)
Definition nation.c:815
bool is_nation_playable(const struct nation_type *nation)
Definition nation.c:201
bool nation_is_in_group(const struct nation_type *pnation, const struct nation_group *pgroup)
Definition nation.c:1088
bool nation_is_in_set(const struct nation_type *pnation, const struct nation_set *pset)
Definition nation.c:832
const char * nation_set_description(const struct nation_set *pset)
Definition nation.c:824
const char * nation_group_name_translation(const struct nation_group *pgroup)
Definition nation.c:1080
int nation_set_count(void)
Definition nation.c:690
struct nation_group * nation_group_by_number(int id)
Definition nation.c:999
struct nation_set * nation_set_by_rule_name(const char *name)
Definition nation.c:779
bool is_nation_group_hidden(struct nation_group *pgroup)
Definition nation.c:1051
struct nation_set * nation_set_by_setting_value(const char *setting)
Definition nation.c:853
const char * nation_leader_name(const struct nation_leader *pleader)
Definition nation.c:287
int nation_group_count(void)
Definition nation.c:929
const char * nation_set_rule_name(const struct nation_set *pset)
Definition nation.c:806
struct nation_style * style_of_nation(const struct nation_type *pnation)
Definition nation.c:670
#define nation_leader_list_iterate(leaderlist, pleader)
Definition nation.h:57
#define nation_sets_iterate_end
Definition nation.h:333
#define nation_sets_iterate(NAME_pset)
Definition nation.h:329
#define nations_iterate_end
Definition nation.h:364
#define nations_iterate(NAME_pnation)
Definition nation.h:361
#define nation_leader_list_iterate_end
Definition nation.h:59
#define nation_groups_iterate(NAME_pgroup)
Definition nation.h:339
#define nation_groups_iterate_end
Definition nation.h:343
const struct option_set * server_optset
Definition options.c:4369
bool option_str_set(struct option *poption, const char *str)
Definition options.c:977
const char * option_str_get(const struct option *poption)
Definition options.c:944
struct client_options gui_options
Definition options.c:71
struct option * optset_option_by_name(const struct option_set *poptset, const char *name)
Definition options.c:482
@ GUI_POPUP_TECH_HELP_RULESET
Definition options.h:77
@ GUI_POPUP_TECH_HELP_ENABLED
Definition options.h:75
void start_revolution(void)
Definition packhand.c:2408
void set_government_choice(struct government *government)
Definition packhand.c:2395
char * lines
Definition packhand.c:132
int len
Definition packhand.c:128
int player_number(const struct player *pplayer)
Definition player.c:826
const char * player_name(const struct player *pplayer)
Definition player.c:885
#define fc_rand(_size)
Definition rand.h:56
const char * sex_name_mnemonic(sex_t kind, const char *mnemonic)
Definition sex.c:74
@ SEX_FEMALE
Definition sex.h:22
@ SEX_MALE
Definition sex.h:23
struct sprite int int y
Definition sprite_g.h:31
struct sprite int x
Definition sprite_g.h:31
struct sprite int int int int struct sprite int int float bool smooth get_sprite_dimensions
Definition sprite_g.h:36
Definition city.h:318
struct packet_ruleset_control control
Definition game.h:83
struct connection conn
Definition client_main.h:96
bool center_when_popup_city
Definition options.h:162
struct player * playing
Definition connection.h:151
GtkWidget * label
Definition gui_stuff.h:87
Definition mapimg.c:367
struct player * player
Definition nation.h:118
bool is_male
Definition player.h:257
int revolution_finishes
Definition player.h:273
struct nation_type * nation
Definition player.h:260
struct nation_style * style
Definition player.h:279
Definition tile.h:50
char * label
Definition tile.h:66
Definition unit.h:140
int style_number(const struct nation_style *pstyle)
Definition style.c:68
int basic_city_style_for_style(struct nation_style *pstyle)
Definition style.c:210
#define styles_iterate(_p)
Definition style.h:46
#define styles_iterate_end
Definition style.h:52
int fc_snprintf(char *str, size_t n, const char *format,...)
Definition support.c:960
int fc_break_lines(char *str, size_t desired_len)
Definition support.c:1135
#define TRUE
Definition support.h:46
#define FALSE
Definition support.h:47
const char * advance_name_translation(const struct advance *padvance)
Definition tech.c:305
struct advance * valid_advance_by_number(const Tech_type_id id)
Definition tech.c:181
struct extra_type * get_preferred_pillage(bv_extras extras)
Definition terrain.c:553
bool get_units_upgrade_info(char *buf, size_t bufsz, struct unit_list *punits)
Definition text.c:1310
bool get_units_disband_info(char *buf, size_t bufsz, struct unit_list *punits)
Definition text.c:1376
struct city * tile_city(const struct tile *ptile)
Definition tile.c:83
struct sprite * load_popup_sprite(const char *tag)
Definition tilespec.c:7841
struct sprite * get_sample_city_sprite(const struct tileset *t, int style_idx)
Definition tilespec.c:7109
void unload_popup_sprite(const char *tag)
Definition tilespec.c:7849
bool unit_can_do_action(const struct unit *punit, const action_id act_id)
Definition unit.c:402
#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