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-4.0 */
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/************************************************************************/
110
111/************************************************************************/
115{
116 if (!rally_dialog) {
117 return RALLY_NONE;
118 }
119
120 if (rally_city_id > 0) {
121 return RALLY_TILE;
122 }
123
124 return RALLY_CITY;
125}
126
127/************************************************************************/
131bool rally_set_tile(struct tile *ptile)
132{
133 struct city *pcity = NULL;
134 enum rally_phase phase = rally_placement_phase();
135
136 if (phase == RALLY_NONE) {
137 return FALSE;
138 }
139
140 if (ptile == NULL) {
141 return TRUE;
142 }
143
144 if (rally_city_id > 0) {
146
147 if (pcity == NULL || city_owner(pcity) != client_player()) {
148 /* City destroyed or captured while we've
149 * been setting the rally point? */
150 rally_city_id = -1;
151 phase = RALLY_CITY;
152
154 _("Select another city."));
155 }
156 }
157
158 if (phase == RALLY_CITY) {
159 char buffer[100];
160
161 pcity = tile_city(ptile);
162
163 if (pcity == NULL || city_owner(pcity) != client_player()) {
164 return TRUE;
165 }
166
167 rally_city_id = pcity->id;
168
169 fc_snprintf(buffer, sizeof(buffer), _("Now select rally point for %s"),
170 city_name_get(pcity));
172 } else {
173 char buffer[100];
175
176 fc_assert(pcity != NULL);
177
178 rally_city_id = -1;
179
180 if (send_rally_tile(pcity, ptile, psist)) {
181 fc_snprintf(buffer, sizeof(buffer),
182 _("%s rally point set. Select another city."),
183 city_name_get(pcity));
184 } else {
185 fc_snprintf(buffer, sizeof(buffer),
186 _("%s rally point setting failed. Select next city."),
187 city_name_get(pcity));
188 }
189
191 }
192
193 return TRUE;
194}
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