Freeciv-3.3
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
652 g_object_unref(store);
653
656 NULL);
658 NULL, NULL);
659
665
668 "pixbuf", 2, NULL);
672 "text", 3, "strikethrough", 1, NULL);
674 }
675
676 gtk_list_store_append(store, &it);
677
678 used = (pnation->player != NULL && pnation->player != races_player);
679 gtk_list_store_set(store, &it, 0, nation_number(pnation), 1, used, -1);
680 img = get_flag(pnation);
681 if (img != NULL) {
682 gtk_list_store_set(store, &it, 2, img, -1);
684 }
685
688 gtk_list_store_set_value(store, &it, 3, &value);
689 g_value_unset(&value);
691
692 races_nation_list[index] = list;
693 return sw;
694}
695
696/**********************************************************************/
700{
703 int i;
704
705 for (i = 0; i < nation_group_count(); i++) {
706 struct nation_group *group = (nation_group_by_number(i));
707
708 if (is_nation_group_hidden(group)) {
710 continue;
711 }
713 if (nation_list) {
717 }
718 }
719
721 /* Even this list can be empty if there are no pickable nations (due to
722 * a combination of start position and nationset restrictions). */
723 if (nation_list) {
727 }
728}
729
730/**********************************************************************/
734void races_update_pickable(bool nationset_change)
735{
736 int tab, groupidx;
737
738 if (!races_shell) {
739 return;
740 }
741
742 /* Save selected tab */
744 if (tab != -1) {
745 int i = 0;
746
747 groupidx = 0;
748 /* Turn tab index into a nation group index (they're not always equal,
749 * as some groups may not currently have tabs). */
750 do {
751 while (groupidx <= nation_group_count()
753 groupidx++;
754 }
756 /* Nation group 'groupidx' is what's displayed on the i'th tab */
757 if (i == tab) {
758 break;
759 }
760 i++;
761 groupidx++;
762 } while (TRUE);
763 } else {
764 /* No tabs currently */
765 groupidx = -1;
766 }
767
768 /* selected_nation already contains currently selected nation; however,
769 * it may no longer be a valid choice */
770 if (selected_nation != -1
772 select_nation(-1, NULL, FALSE, 0);
773 }
774
775 /* Delete all list stores, treeviews, tabs */
778 }
779
780 /* (Re)create all of them */
782
783 /* Can't set current tab before child widget is visible */
785
786 /* Restore selected tab */
787 if (groupidx != -1 && races_nation_list[groupidx] != nullptr) {
788 int i;
789
790 tab = 0;
791 for (i = 0; i < groupidx; i++) {
792 if (races_nation_list[i] != NULL) {
793 tab++;
794 }
795 }
797 }
798
799 /* Restore selected nation */
801}
802
803/**********************************************************************/
806void nationset_sync_to_server(const char *nationset)
807{
808 if (nationsets_chooser) {
809 struct nation_set *set = nation_set_by_setting_value(nationset);
810
812 nation_set_index(set));
813 }
814}
815
816/**********************************************************************/
820{
822
824 struct option *poption = optset_option_by_name(server_optset, "nationset");
825 gchar *rule_name;
826
828 0, &rule_name, -1);
829 /* Suppress propagation of an option value equivalent to the current
830 * server state, after canonicalisation, to avoid loops from
831 * nationset_sync_to_server().
832 * (HACK: relies on local Gtk "changed" signal getting here before
833 * server response.) */
835 != nation_set_by_rule_name(rule_name)) {
836 option_str_set(poption, rule_name);
837 }
838 FC_FREE(rule_name);
839 }
840}
841
842/**********************************************************************/
845static void create_races_dialog(struct player *pplayer)
846{
848 GtkWidget *cmd;
849 GtkWidget *group;
851 GtkWidget *frame, *label, *combo;
852 GtkWidget *text;
853 GtkWidget *notebook;
854 GtkWidget *sw;
856 GtkListStore *store;
857 GtkCellRenderer *render;
859 int i;
860 char *title;
861
862 /* Init. */
863 selected_nation = -1;
864
865 if (C_S_RUNNING == client_state()) {
866 title = _("Edit Nation");
867 } else if (NULL != pplayer && pplayer == client.conn.playing) {
868 title = _("What Nation Will You Be?");
869 } else {
870 title = _("Pick Nation");
871 }
872
874 NULL,
875 0,
876 _("_Cancel"),
878 _("_Random Nation"),
879 GTK_RESPONSE_NO, /* Arbitrary */
880 _("_OK"),
882 NULL);
884 races_player = pplayer;
886
888
889 frame = gtk_frame_new(_("Select a nation"));
891
897
899
900 /* Left side: nation list */
901 {
903
905
907
908 /* Nationset selector dropdown */
909 /* Only present this if there is more than one choice.
910 * (If ruleset is changed, possibly changing the number of available sets
911 * and invalidating this decision, then dialog will be popped down.) */
912 if (nation_set_count() > 1) {
917 GtkCellRenderer *renderer;
918
920 /* Index in list store must match nation_set_index(). */
921 gchar *escaped;
922 struct astring s = ASTRING_INIT;
923 int num_nations = 0;
924
925 nations_iterate(pnation) {
926 if (is_nation_playable(pnation) && nation_is_in_set(pnation, pset)) {
927 num_nations++;
928 }
931 /* TRANS: nation set name followed by number of playable nations;
932 * <b> and </b> are Pango markup and should be left alone */
933 astr_set(&s, PL_("<b>%s</b> (%d nation)",
934 "<b>%s</b> (%d nations)", num_nations),
935 escaped, num_nations);
936 g_free(escaped);
938 /* While in principle it would be better to get Gtk to wrap the
939 * drop-down (e.g. via "wrap-width" property), there's no way
940 * to specify the indentation we want. So we do it ourselves. */
941 char *desc = fc_strdup(_(nation_set_description(pset)));
942 char *p = desc;
943
944 fc_break_lines(desc, 70);
945 astr_add(&s, "\n");
946 while (*p) {
947 int len = strcspn(p, "\n");
948
949 if (p[len] == '\n') {
950 len++;
951 }
952 escaped = g_markup_escape_text(p, len);
953 astr_add(&s, "\t%s", escaped);
954 g_free(escaped);
955 p += len;
956 }
957 FC_FREE(desc);
958 }
961 1, astr_str(&s),
963 -1);
964 astr_free(&s);
966
967 /* We want a combo box where the button displays just the set name,
968 * but the dropdown displays the expanded description. */
972 {
973 /* Do our best to turn the text-entry widget into something more
974 * like a cell-view: disable editing, and focusing (which removes
975 * the caret). */
977
980 }
981 /* The entry displays the set name. */
983 2);
984 /* The dropdown displays the marked-up description. */
985 renderer = gtk_cell_renderer_text_new();
988 renderer, TRUE);
990 renderer, "markup", 1, NULL);
995 {
996 /* Populate initially from client's view of server setting */
998 "nationset");
999 if (poption) {
1001 }
1002 }
1003
1005 "use-underline", TRUE,
1006 "label", _("_Nation Set:"),
1007 "xalign", 0.0,
1008 "yalign", 0.5,
1009 NULL);
1011
1014 0, 0, 1, 1);
1016 1, 0, 1, 1);
1017 }
1018
1022 0, 2, 2, 1);
1023
1024 /* Suppress notebook tabs if there will be only one ("All") */
1025 {
1026 bool show_groups = FALSE;
1027
1030 show_groups = TRUE;
1031 break;
1032 }
1034 if (!show_groups) {
1036 } else {
1038 "use-underline", TRUE,
1039 "label", _("Nation _Groups:"),
1040 "xalign", 0.0,
1041 "yalign", 0.5,
1042 NULL);
1045 0, 1, 2, 1);
1047 }
1048 }
1049
1050 /* Populate treeview */
1052
1054 }
1055
1056 /* Right side. */
1057 notebook = gtk_notebook_new();
1059 gtk_box_append(GTK_BOX(hbox), notebook);
1060
1061 /* Properties pane. */
1062 label = gtk_label_new_with_mnemonic(_("_Properties"));
1063
1065 g_signal_connect(table, "destroy",
1072 gtk_notebook_append_page(GTK_NOTEBOOK(notebook), table, label);
1073
1074 /* Leader. */
1075 {
1077
1080 g_object_unref(G_OBJECT(model));
1081 }
1082 races_leader = combo;
1084 "use-underline", TRUE,
1085 "mnemonic-widget", GTK_COMBO_BOX(combo),
1086 "label", _("_Leader:"),
1087 "xalign", 0.0,
1088 "yalign", 0.5,
1089 NULL);
1091 gtk_widget_set_margin_end(label, 12);
1092 gtk_grid_attach(GTK_GRID(table), label, 0, 0, 1, 2);
1093 gtk_grid_attach(GTK_GRID(table), combo, 1, 0, 2, 1);
1094
1096 "_"));
1098 races_sex[0] = cmd;
1099 gtk_grid_attach(GTK_GRID(table), cmd, 1, 1, 1, 1);
1100 group = cmd;
1101
1103 "_"));
1105 GTK_CHECK_BUTTON(group));
1107 races_sex[1] = cmd;
1108 gtk_grid_attach(GTK_GRID(table), cmd, 2, 1, 1, 1);
1109
1110 /* City style. */
1111 store = gtk_list_store_new(3, G_TYPE_INT,
1113
1118 g_object_unref(store);
1122
1129 gtk_grid_attach(GTK_GRID(table), sw, 1, 2, 2, 2);
1130
1132 "use-underline", TRUE,
1133 "mnemonic-widget", list,
1134 "label", _("City _Styles:"),
1135 "xalign", 0.0,
1136 "yalign", 0.5,
1137 NULL);
1138 gtk_widget_set_margin_top(label, 6);
1139 gtk_widget_set_margin_end(label, 12);
1140 gtk_grid_attach(GTK_GRID(table), label, 0, 2, 1, 1);
1141
1144 "pixbuf", 1, NULL);
1146 render = gtk_cell_renderer_text_new();
1148 "text", 2, NULL);
1150
1151 /* Populate style store. */
1153 GdkPixbuf *img;
1154 struct sprite *s;
1155 GtkTreeIter it;
1156
1158
1159 if (i >= 0) {
1160 gtk_list_store_append(store, &it);
1161
1164 free_sprite(s);
1165 gtk_list_store_set(store, &it, 0, i, 1, img, 2,
1168 }
1170
1171 /* Legend pane. */
1172 label = gtk_label_new_with_mnemonic(_("_Description"));
1173
1174 text = gtk_text_view_new();
1187
1188 gtk_notebook_append_page(GTK_NOTEBOOK(notebook), text, label);
1189
1190 /* Signals. */
1191 g_signal_connect(shell, "destroy",
1193 g_signal_connect(shell, "response",
1195
1198
1199 g_signal_connect(races_sex[0], "toggled",
1201 g_signal_connect(races_sex[1], "toggled",
1203
1204 /* Finish up. */
1206
1207 /* You can't assign NO_NATION during a running game. */
1208 if (C_S_RUNNING == client_state()) {
1210 FALSE);
1211 }
1212
1214 TRUE);
1215
1216 /* Select player's current nation in UI, if any */
1217 if (races_player->nation) {
1222 /* Make sure selected nation is visible
1223 * (last page, "All", will certainly contain it) */
1226 } else {
1227 select_nation(-1, NULL, FALSE, 0);
1228 }
1229}
1230
1231/**********************************************************************/
1234void popup_races_dialog(struct player *pplayer)
1235{
1236 if (!pplayer) {
1237 return;
1238 }
1239
1240 if (!races_shell) {
1241 create_races_dialog(pplayer);
1243 }
1244}
1245
1246/**********************************************************************/
1250{
1251 if (races_shell) {
1253 }
1254
1255 /* We're probably starting a new game, maybe with a new ruleset.
1256 So we warn the worklist dialog. */
1258}
1259
1260/**********************************************************************/
1265{
1266 int i;
1267
1268 if (!races_shell) {
1269 return;
1270 }
1271
1272 for (i = 0; i <= nation_group_count(); i++) {
1273 if (races_nation_list[i]) {
1277 GtkTreeIter it;
1279
1280 /* Update 'chosen' column in model */
1281 if (gtk_tree_model_get_iter_first(model, &it)) {
1282 do {
1283 int nation_no;
1284 struct nation_type *nation;
1285
1286 gtk_tree_model_get(model, &it, 0, &nation_no, -1);
1287 nation = nation_by_number(nation_no);
1288
1289 chosen = !is_nation_pickable(nation)
1290 || (nation->player && nation->player != races_player);
1291
1292 gtk_list_store_set(GTK_LIST_STORE(model), &it, 1, chosen, -1);
1293
1294 } while (gtk_tree_model_iter_next(model, &it));
1295 }
1296
1297 /* If our selection is now invalid, deselect it */
1298 if (gtk_tree_selection_get_selected(select, &model, &it)) {
1299 gtk_tree_model_get(model, &it, 1, &chosen, -1);
1300
1301 if (chosen) {
1303 }
1304 }
1305 }
1306 }
1307}
1308
1309/**********************************************************************/
1313{
1314 GtkTreeModel *model;
1315 GtkTreeIter it;
1316
1317 if (gtk_tree_selection_get_selected(select, &model, &it)) {
1319 int newnation;
1320
1321 gtk_tree_model_get(model, &it, 0, &newnation, 1, &chosen, -1);
1322
1323 /* Only allow nations not chosen by another player */
1324 if (!chosen) {
1325 if (newnation != selected_nation) {
1326 /* Choose a random leader */
1329 }
1330 return;
1331 }
1332 }
1333
1334 /* Fall-through if no valid nation selected */
1335 select_nation(-1, NULL, FALSE, 0);
1336}
1337
1338/**********************************************************************/
1357
1358/**********************************************************************/
1362{
1364}
1365
1366/**********************************************************************/
1370 GtkTreeModel *model, GtkTreePath *path,
1371 gboolean selected, gpointer data)
1372{
1373 GtkTreeIter it;
1375
1376 gtk_tree_model_get_iter(model, &it, path);
1377 gtk_tree_model_get(model, &it, 1, &chosen, -1);
1378 return (!chosen || selected);
1379}
1380
1381/**********************************************************************/
1385{
1386 GtkTreeModel *model;
1387 GtkTreeIter it;
1388
1389 if (gtk_tree_selection_get_selected(select, &model, &it)) {
1390 gtk_tree_model_get(model, &it, 0, &selected_style, -1);
1391 } else {
1392 selected_style = -1;
1393 }
1394}
1395
1396/**********************************************************************/
1399static void races_response(GtkWidget *w, gint response, gpointer data)
1400{
1401 if (response == GTK_RESPONSE_ACCEPT) {
1402 const char *s;
1403
1404 /* This shouldn't be possible but... */
1405 if (selected_nation == -1) {
1406 return;
1407 }
1408
1409 if (selected_sex == -1) {
1410 output_window_append(ftc_client, _("You must select your sex."));
1411 return;
1412 }
1413
1414 if (selected_style == -1) {
1415 output_window_append(ftc_client, _("You must select your style."));
1416 return;
1417 }
1418
1421
1422 /* Perform a minimum of sanity test on the name. */
1423 /* This could call is_allowed_player_name() if it were available. */
1424 if (strlen(s) == 0) {
1425 output_window_append(ftc_client, _("You must type a legal name."));
1426 return;
1427 }
1428
1431 selected_sex, s,
1433 } else if (response == GTK_RESPONSE_NO) {
1436 -1, FALSE, "", 0);
1437 }
1438
1440}
1441
1442/**********************************************************************/
1455
1456/**********************************************************************/
1469
1470/**********************************************************************/
1473void popup_upgrade_dialog(struct unit_list *punits)
1474{
1476 char buf[512];
1477
1478 if (!punits || unit_list_size(punits) == 0) {
1479 return;
1480 }
1481
1482 if (!get_units_upgrade_info(buf, sizeof(buf), punits)) {
1485 "%s", buf);
1486 gtk_window_set_title(GTK_WINDOW(shell), _("Upgrade Unit!"));
1489 NULL);
1491 } else {
1494 "%s", buf);
1495 gtk_window_set_title(GTK_WINDOW(shell), _("Upgrade Obsolete Units"));
1498
1499 /* FIXME: Should not block */
1504 }
1506 }
1507}
1508
1509/**********************************************************************/
1512void popup_disband_dialog(struct unit_list *punits)
1513{
1515 char buf[512];
1516
1517 if (!punits || unit_list_size(punits) == 0) {
1518 return;
1519 }
1520
1521 if (!get_units_disband_info(buf, sizeof(buf), punits)) {
1524 "%s", buf);
1525 gtk_window_set_title(GTK_WINDOW(shell), _("Disband Units"));
1528 NULL);
1530 } else {
1533 "%s", buf);
1534 gtk_window_set_title(GTK_WINDOW(shell), _("Disband Units"));
1537
1538 /* FIXME: Should not block */
1543 }
1545 }
1547 }
1548}
1549
1550/**********************************************************************/
1560
1561/**********************************************************************/
1575
1576/**********************************************************************/
1580void show_tileset_error(bool fatal, const char *tset_name, const char *msg)
1581{
1582 if (is_gui_up()) {
1583 GtkWidget *dialog;
1584
1585 if (tset_name != NULL) {
1588 _("Tileset \"%s\" problem, "
1589 "it's probably incompatible with "
1590 "the ruleset:\n%s"),
1591 tset_name, msg);
1592 } else {
1595 _("Tileset problem, "
1596 "it's probably incompatible with "
1597 "the ruleset:\n%s"),
1598 msg);
1599 }
1600
1601 setup_dialog(dialog, toplevel);
1602
1603 blocking_dialog(dialog);
1604
1606 }
1607}
1608
1609/**********************************************************************/
1614{
1615 /* Just tell the client common code to handle this. */
1616 return FALSE;
1617}
1618
1619/**********************************************************************/
1623void popup_combat_info(int attacker_unit_id, int defender_unit_id,
1624 int attacker_hp, int defender_hp,
1625 bool make_att_veteran, bool make_def_veteran)
1626{
1627}
1628
1629/**********************************************************************/
1632static void act_conf_response(GtkWidget *dialog, gint response,
1633 gpointer data)
1634{
1636
1637 if (response == GTK_RESPONSE_YES) {
1639 } else {
1641 }
1642}
1643
1644/**********************************************************************/
1648 struct act_confirmation_data *data)
1649{
1650 GtkWidget *dialog;
1651 char buf[1024];
1652
1653 if (expl != NULL) {
1654 fc_snprintf(buf, sizeof(buf), _("Are you sure you want to do %s?\n%s"),
1656 } else {
1657 fc_snprintf(buf, sizeof(buf), _("Are you sure you want to do %s?"),
1659 }
1660
1662 0,
1665 "%s", buf);
1666 setup_dialog(dialog, toplevel);
1667
1668 g_signal_connect(dialog, "response",
1670
1672}
1673
1674/**********************************************************************/
1677void popup_image(const char *tag)
1678{
1679 struct sprite *spr = load_popup_sprite(tag);
1680
1681 if (spr != NULL) {
1683 GtkWidget *win = gtk_window_new();
1685 int width, height;
1686
1690 gtk_widget_show(win);
1691
1693 } else {
1694 log_error(_("No image for tag \"%s\", requested by the server."), tag);
1695 }
1696}
const char * action_id_name_translation(action_id act_id)
Definition actions.c:1250
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:1756
#define city_owner(_pcity_)
Definition city.h:560
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:76
void request_unit_disband(struct unit *punit)
Definition control.c:2075
void request_new_unit_activity_targeted(struct unit *punit, enum unit_activity act, struct extra_type *tgt)
Definition control.c:1938
void action_confirmation(struct act_confirmation_data *data, bool confirm)
Definition control.c:1766
void request_unit_upgrade(struct unit *punit)
Definition control.c:2106
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:236
int Nation_type_id
Definition fc_types.h:239
#define MAX_NUM_NATION_GROUPS
Definition fc_types.h:58
#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:61
struct unit * game_unit_by_number(int id)
Definition game.c:115
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:2059
GtkWidget * toplevel
Definition gui_main.c:126
#define GUI_GTK_OPTION(optname)
Definition gui_main.h:25
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:193
void unit_select_dialog_popdown(void)
Definition unitselect.c:214
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:1459
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:5034
@ 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
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:486
struct nation_leader * nation_leader_by_name(const struct nation_type *pnation, const char *name)
Definition nation.c:267
bool nation_leader_is_male(const struct nation_leader *pleader)
Definition nation.c:290
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:475
int nation_set_index(const struct nation_set *pset)
Definition nation.c:699
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:230
const char * nation_set_name_translation(const struct nation_set *pset)
Definition nation.c:818
bool is_nation_playable(const struct nation_type *nation)
Definition nation.c:200
bool nation_is_in_group(const struct nation_type *pnation, const struct nation_group *pgroup)
Definition nation.c:1099
bool nation_is_in_set(const struct nation_type *pnation, const struct nation_set *pset)
Definition nation.c:837
const char * nation_set_description(const struct nation_set *pset)
Definition nation.c:828
const char * nation_group_name_translation(const struct nation_group *pgroup)
Definition nation.c:1090
int nation_set_count(void)
Definition nation.c:691
struct nation_group * nation_group_by_number(int id)
Definition nation.c:1004
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:1057
struct nation_set * nation_set_by_setting_value(const char *setting)
Definition nation.c:859
const char * nation_leader_name(const struct nation_leader *pleader)
Definition nation.c:281
int nation_group_count(void)
Definition nation.c:935
const char * nation_set_rule_name(const struct nation_set *pset)
Definition nation.c:807
struct nation_style * style_of_nation(const struct nation_type *pnation)
Definition nation.c:672
#define nation_leader_list_iterate(leaderlist, pleader)
Definition nation.h:57
#define nation_sets_iterate_end
Definition nation.h:305
#define nation_sets_iterate(NAME_pset)
Definition nation.h:301
#define nations_iterate_end
Definition nation.h:336
#define nations_iterate(NAME_pnation)
Definition nation.h:333
#define nation_leader_list_iterate_end
Definition nation.h:59
#define nation_groups_iterate(NAME_pgroup)
Definition nation.h:311
#define nation_groups_iterate_end
Definition nation.h:315
const struct option_set * server_optset
Definition options.c:4278
bool option_str_set(struct option *poption, const char *str)
Definition options.c:962
const char * option_str_get(const struct option *poption)
Definition options.c:929
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:467
@ GUI_POPUP_TECH_HELP_RULESET
Definition options.h:77
@ GUI_POPUP_TECH_HELP_ENABLED
Definition options.h:75
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 start_revolution(void)
Definition packhand.c:2398
void set_government_choice(struct government *government)
Definition packhand.c:2385
char * lines
Definition packhand.c:131
int len
Definition packhand.c:127
int player_number(const struct player *pplayer)
Definition player.c:837
const char * player_name(const struct player *pplayer)
Definition player.c:895
#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:317
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:300
struct advance * valid_advance_by_number(const Tech_type_id id)
Definition tech.c:176
struct extra_type * get_preferred_pillage(bv_extras extras)
Definition terrain.c:550
bool get_units_upgrade_info(char *buf, size_t bufsz, struct unit_list *punits)
Definition text.c:1304
bool get_units_disband_info(char *buf, size_t bufsz, struct unit_list *punits)
Definition text.c:1370
struct city * tile_city(const struct tile *ptile)
Definition tile.c:83
struct sprite * load_popup_sprite(const char *tag)
Definition tilespec.c:7807
struct sprite * get_sample_city_sprite(const struct tileset *t, int style_idx)
Definition tilespec.c:7075
void unload_popup_sprite(const char *tag)
Definition tilespec.c:7815
bool unit_can_do_action(const struct unit *punit, const action_id act_id)
Definition unit.c:383
#define unit_tile(_pu)
Definition unit.h:404
#define unit_list_iterate(unitlist, punit)
Definition unitlist.h:31
#define unit_list_iterate_end
Definition unitlist.h:33