Freeciv-3.2
Loading...
Searching...
No Matches
rallypointdlg.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 <gtk/gtk.h>
19
20/* utility */
21#include "fcintl.h"
22
23/* common */
24#include "city.h"
25#include "game.h"
26#include "tile.h"
27
28/* client */
29#include "client_main.h"
30#include "goto.h"
31
32/* client/gui-gtk-3.22 */
33#include "gui_main.h"
34#include "gui_stuff.h"
35
36#include "rallypointdlg.h"
37
41
42static int rally_city_id = -1;
43
44/************************************************************************/
47static bool rally_dialog_open(void)
48{
49 return rally_dialog;
50}
51
52/************************************************************************/
62
63/************************************************************************/
112
113/************************************************************************/
117{
118 if (!rally_dialog) {
119 return RALLY_NONE;
120 }
121
122 if (rally_city_id > 0) {
123 return RALLY_TILE;
124 }
125
126 return RALLY_CITY;
127}
128
129/************************************************************************/
133bool rally_set_tile(struct tile *ptile)
134{
135 struct city *pcity = NULL;
136 enum rally_phase phase = rally_placement_phase();
137
138 if (phase == RALLY_NONE) {
139 return FALSE;
140 }
141
142 if (ptile == NULL) {
143 return TRUE;
144 }
145
146 if (rally_city_id > 0) {
148
149 if (pcity == NULL || city_owner(pcity) != client_player()) {
150 /* City destroyed or captured while we've
151 * been setting the rally point? */
152 rally_city_id = -1;
153 phase = RALLY_CITY;
154
156 _("Select another city."));
157 }
158 }
159
160 if (phase == RALLY_CITY) {
161 char buffer[100];
162
163 pcity = tile_city(ptile);
164
165 if (pcity == NULL || city_owner(pcity) != client_player()) {
166 return TRUE;
167 }
168
169 rally_city_id = pcity->id;
170
171 fc_snprintf(buffer, sizeof(buffer), _("Now select rally point for %s"),
172 city_name_get(pcity));
174 } else {
175 char buffer[100];
177
178 fc_assert(pcity != NULL);
179
180 rally_city_id = -1;
181
182 if (send_rally_tile(pcity, ptile, psist)) {
183 fc_snprintf(buffer, sizeof(buffer),
184 _("%s rally point set. Select another city."),
185 city_name_get(pcity));
186 } else {
187 fc_snprintf(buffer, sizeof(buffer),
188 _("%s rally point setting failed. Select next city."),
189 city_name_get(pcity));
190 }
191
193 }
194
195 return TRUE;
196}
const char * city_name_get(const struct city *pcity)
Definition city.c:1137
#define city_owner(_pcity_)
Definition city.h:563
#define client_player()
char * incite_cost
Definition comments.c:75
#define _(String)
Definition fcintl.h:67
struct city * game_city_by_number(int id)
Definition game.c:107
bool send_rally_tile(struct city *pcity, struct tile *ptile, bool persistent)
Definition goto.c:1575
GtkWidget * toplevel
Definition gui_main.c:125
void setup_dialog(GtkWidget *shell, GtkWidget *parent)
Definition gui_stuff.c:287
static GtkWidget * instruction_label
bool rally_set_tile(struct tile *ptile)
static GtkWidget * persistent
void rally_dialog_popup(void)
static void rally_response_callback(GtkWidget *dlg, gint arg)
static bool rally_dialog_open(void)
enum rally_phase rally_placement_phase(void)
static int rally_city_id
bool rally_dialog
rally_phase
@ RALLY_TILE
@ RALLY_CITY
@ RALLY_NONE
#define fc_assert(condition)
Definition log.h:176
Definition city.h:320
int id
Definition city.h:326
Definition tile.h:50
int fc_snprintf(char *str, size_t n, const char *format,...)
Definition support.c:974
#define TRUE
Definition support.h:46
#define FALSE
Definition support.h:47
struct city * tile_city(const struct tile *ptile)
Definition tile.c:83