Freeciv-3.1
Loading...
Searching...
No Matches
government.h
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#ifndef FC__GOVERNMENT_H
14#define FC__GOVERNMENT_H
15
16#ifdef __cplusplus
17extern "C" {
18#endif /* __cplusplus */
19
20/* utility */
21#include "shared.h"
22
23/* common */
24#include "fc_types.h"
25#include "name_translation.h"
26#include "requirements.h"
27
28
29struct strvec; /* Actually defined in "utility/string_vector.h". */
30
31struct ruler_title; /* Opaque type. */
32
33/* 'struct ruler_title_hash' and related functions. */
34#define SPECHASH_TAG ruler_title
35#define SPECHASH_IKEY_TYPE struct nation_type *
36#define SPECHASH_IDATA_TYPE struct ruler_title *
37#include "spechash.h"
38#define ruler_titles_iterate(ARG_hash, NAME_rule_title) \
39 TYPED_HASH_DATA_ITERATE(const struct ruler_title *, ARG_hash, \
40 NAME_rule_title)
41#define ruler_titles_iterate_end HASH_DATA_ITERATE_END
42
43/* G_LAST is a value guaranteed to be larger than any valid
44 * Government_type_id. It defines the maximum number of governments
45 * (so can also be used to size static arrays indexed by governments);
46 * it is sometimes used as a sentinel value (but not in the network
47 * protocol, which generally uses government_count()). */
48#define G_LAST (127)
49
50/* This is struct government itself. All information about a form of
51 * government is contained inhere. -- SKi */
52struct government {
59 struct requirement_vector reqs;
60 struct ruler_title_hash *ruler_titles;
63
64 /* AI cached data for this government. */
65 struct {
66 struct government *better; /* hint: a better government (or NULL) */
67 } ai;
68};
69
70
71/* General government accessor functions. */
75
77struct government *government_of_player(const struct player *pplayer);
78struct government *government_of_city(const struct city *pcity);
79
80struct government *government_by_rule_name(const char *name);
82
83const char *government_rule_name(const struct government *pgovern);
84const char *government_name_translation(const struct government *pgovern);
85const char *government_name_for_player(const struct player *pplayer);
86
87/* Ruler titles. */
88const struct ruler_title_hash *
89government_ruler_titles(const struct government *pgovern);
90struct ruler_title *
92 const struct nation_type *pnation,
93 const char *ruler_male_title,
94 const char *ruler_female_title);
95
96const struct nation_type *
97ruler_title_nation(const struct ruler_title *pruler_title);
98const char *
99ruler_title_male_untranslated_name(const struct ruler_title *pruler_title);
100const char *
101ruler_title_female_untranslated_name(const struct ruler_title *pruler_title);
102
103const char *ruler_title_for_player(const struct player *pplayer,
104 char *buf, size_t buf_len);
105const char *default_title_for_player(const struct player *pplayer,
106 char *buf, size_t buf_len);
107
108/* Ancillary routines */
109bool can_change_to_government(struct player *pplayer,
110 const struct government *pgovern);
111
112/* Initialization and iteration */
113void governments_alloc(int num);
114void governments_free(void);
115
116struct government_iter;
117size_t government_iter_sizeof(void);
119
120/* Iterate over government types. */
121#define governments_iterate(NAME_pgov) \
122 generic_iterate(struct government_iter, struct government *, \
123 NAME_pgov, government_iter_sizeof, government_iter_init)
124#define governments_iterate_end generic_iterate_end
125
126#define governments_re_active_iterate(_p) \
127 governments_iterate(_p) { \
128 if (!_p->ruledit_disabled) {
129
130#define governments_re_active_iterate_end \
131 } \
132 } governments_iterate_end;
133
135
136#ifdef __cplusplus
137}
138#endif /* __cplusplus */
139
140#endif /* FC__GOVERNMENT_H */
int Government_type_id
Definition fc_types.h:351
#define MAX_LEN_NAME
Definition fc_types.h:66
const char * government_name_translation(const struct government *pgovern)
Definition government.c:142
const char * default_title_for_player(const struct player *pplayer, char *buf, size_t buf_len)
Definition government.c:425
void governments_free(void)
Definition government.c:544
const struct nation_type * ruler_title_nation(const struct ruler_title *pruler_title)
Definition government.c:364
bool untargeted_revolution_allowed(void)
Definition government.c:565
struct ruler_title * government_ruler_title_new(struct government *pgovern, const struct nation_type *pnation, const char *ruler_male_title, const char *ruler_female_title)
Definition government.c:324
const char * ruler_title_for_player(const struct player *pplayer, char *buf, size_t buf_len)
Definition government.c:390
struct iterator * government_iter_init(struct government_iter *it)
Definition government.c:482
const char * ruler_title_female_untranslated_name(const struct ruler_title *pruler_title)
Definition government.c:382
Government_type_id government_count(void)
Definition government.c:70
struct government * government_by_number(const Government_type_id gov)
Definition government.c:102
struct government * government_of_player(const struct player *pplayer)
Definition government.c:113
const char * government_name_for_player(const struct player *pplayer)
Definition government.c:153
const char * ruler_title_male_untranslated_name(const struct ruler_title *pruler_title)
Definition government.c:373
struct government * government_of_city(const struct city *pcity)
Definition government.c:122
void governments_alloc(int num)
Definition government.c:528
Government_type_id government_number(const struct government *pgovern)
Definition government.c:90
const struct ruler_title_hash * government_ruler_titles(const struct government *pgovern)
Definition government.c:313
Government_type_id government_index(const struct government *pgovern)
Definition government.c:81
size_t government_iter_sizeof(void)
Definition government.c:449
const char * government_rule_name(const struct government *pgovern)
Definition government.c:132
struct government * government_by_translated_name(const char *name)
Definition government.c:39
bool can_change_to_government(struct player *pplayer, const struct government *pgovern)
Definition government.c:165
struct government * government_by_rule_name(const char *name)
Definition government.c:54
const char * name
Definition inputfile.c:127
Definition city.h:309
struct strvec * helptext
Definition government.h:62
struct requirement_vector reqs
Definition government.h:59
void * ruledit_dlg
Definition government.h:56
char graphic_alt[MAX_LEN_NAME]
Definition government.h:58
bool ruledit_disabled
Definition government.h:55
struct government * better
Definition government.h:66
Government_type_id item_number
Definition government.h:53
int changed_to_times
Definition government.h:61
struct name_translation name
Definition government.h:54
struct government::@40 ai
char graphic_str[MAX_LEN_NAME]
Definition government.h:57
struct ruler_title_hash * ruler_titles
Definition government.h:60
const struct nation_type * pnation
Definition government.c:188