~ubuntu-branches/debian/squeeze/freeciv/squeeze

« back to all changes in this revision

Viewing changes to server/cityturn.h

  • Committer: Bazaar Package Importer
  • Author(s): Clint Adams, Karl Goetz, Clint Adams
  • Date: 2010-02-23 22:09:02 UTC
  • mfrom: (1.2.13 upstream)
  • Revision ID: james.westby@ubuntu.com-20100223220902-kiyrmr9i4152cka5
Tags: 2.2.0-1
[ Karl Goetz ]
* Remove civserver files in /etc/ggzd/ (Closes: 523772, 517787)
* Adding ${misc:Depends} to all binary packages (lintian warnings)

[ Clint Adams ]
* New upstream version.
  - Drop data_dsc_use_bindir.diff (binary pathnames have changed).

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
struct cm_result;
23
23
 
24
24
void city_refresh(struct city *pcity);          /* call if city has changed */
25
 
void global_city_refresh(struct player *pplayer); /* tax/govt changed */
 
25
void city_refresh_for_player(struct player *pplayer); /* tax/govt changed */
 
26
 
 
27
void city_refresh_queue_add(struct city *pcity);
 
28
void city_refresh_queue_processing(void);
26
29
 
27
30
void auto_arrange_workers(struct city *pcity); /* will arrange the workers */
28
 
void apply_cmresult_to_city(struct city *pcity, struct cm_result *cmr);
29
 
 
30
 
bool city_reduce_size(struct city *pcity, int pop_loss);
 
31
void apply_cmresult_to_city(struct city *pcity,
 
32
                            const struct cm_result *const cmr);
 
33
 
 
34
bool city_change_size(struct city *pcity, int new_size);
 
35
bool city_reduce_size(struct city *pcity, int pop_loss,
 
36
                      struct player *destroyer);
 
37
void city_repair_size(struct city *pcity, int change);
 
38
 
31
39
void send_global_city_turn_notifications(struct conn_list *dest);
32
40
void send_city_turn_notifications(struct conn_list *dest, struct city *pcity);
33
41
void update_city_activities(struct player *pplayer);
38
46
void advisor_choose_build(struct player *pplayer, struct city *pcity);
39
47
 
40
48
void nullify_prechange_production(struct city *pcity);
 
49
 
 
50
void check_city_migrations(void);
 
51
 
41
52
#endif  /* FC__CITYTURN_H */