src/town_gui.cpp
author smatz
Wed, 14 May 2008 16:38:53 +0000
changeset 9222 78f27b94fe76
parent 9164 18e971e0b44f
child 9247 e6a5d49fd58f
permissions -rw-r--r--
(svn r13088) -Codechange: use SigSegState enum instead of bool variable (michi_cc)
2186
db48cf29b983 (svn r2701) Insert Id tags into all source files
tron
parents: 2163
diff changeset
     1
/* $Id$ */
db48cf29b983 (svn r2701) Insert Id tags into all source files
tron
parents: 2163
diff changeset
     2
9111
48ce04029fe4 (svn r12971) -Documentation: add @file in files that missed them and add something more than whitespace as description of files that don't have a description.
rubidium
parents: 9094
diff changeset
     3
/** @file town_gui.cpp GUI for towns. */
6422
6679df1c05ba (svn r9558) -Documentation: doxygen and comment changes: 'T' now. Almost done
belugas
parents: 6247
diff changeset
     4
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
     5
#include "stdafx.h"
1891
862800791170 (svn r2397) - CodeChange: rename all "ttd" files to "openttd" files.
Darkvater
parents: 1820
diff changeset
     6
#include "openttd.h"
1299
39c06aba09aa (svn r1803) Move debugging stuff into files of it's own
tron
parents: 1260
diff changeset
     7
#include "debug.h"
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
     8
#include "town.h"
8224
c5a64d87cc54 (svn r11787) -Codechange: more header rewrites. This time related to viewport.h.
rubidium
parents: 8131
diff changeset
     9
#include "viewport_func.h"
c5a64d87cc54 (svn r11787) -Codechange: more header rewrites. This time related to viewport.h.
rubidium
parents: 8131
diff changeset
    10
#include "gfx_func.h"
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    11
#include "gui.h"
8107
bb7deea89175 (svn r11668) -Codechange: more refactoring aimed at reducing compile time and making it more logic where function definitions can be found.
rubidium
parents: 8106
diff changeset
    12
#include "window_gui.h"
bb7deea89175 (svn r11668) -Codechange: more refactoring aimed at reducing compile time and making it more logic where function definitions can be found.
rubidium
parents: 8106
diff changeset
    13
#include "textbuf_gui.h"
8116
8da76dcb3287 (svn r11677) -Codechange: move price and command related types/functions to their respective places.
rubidium
parents: 8114
diff changeset
    14
#include "command_func.h"
8254
1496654ca5e7 (svn r11818) -Codechange: split player.h into smaller pieces.
rubidium
parents: 8224
diff changeset
    15
#include "player_func.h"
1496654ca5e7 (svn r11818) -Codechange: split player.h into smaller pieces.
rubidium
parents: 8224
diff changeset
    16
#include "player_base.h"
1496654ca5e7 (svn r11818) -Codechange: split player.h into smaller pieces.
rubidium
parents: 8224
diff changeset
    17
#include "player_gui.h"
5469
7edfc643abbc (svn r7751) -Codechange: move network_* to a new network map. Furthermore move the low level network functions to network/core, so they can be reused by the masterserver and website-serverlist-updater.
rubidium
parents: 5431
diff changeset
    18
#include "network/network.h"
2159
f6284cf5fab0 (svn r2669) Shuffle some more stuff around to reduce dependencies
tron
parents: 2070
diff changeset
    19
#include "variables.h"
8114
dd6d21dc99c1 (svn r11675) -Codechange: split the string types from the string functions.
rubidium
parents: 8107
diff changeset
    20
#include "strings_func.h"
8723
e513a23c2797 (svn r12398) -Codechange [FS#1770]: Move toolbar related code to it's own little neighbourhood. Based on a patch by Dominik.
rubidium
parents: 8717
diff changeset
    21
#include "sound_func.h"
8116
8da76dcb3287 (svn r11677) -Codechange: move price and command related types/functions to their respective places.
rubidium
parents: 8114
diff changeset
    22
#include "economy_func.h"
8130
d2eb7d04f6e1 (svn r11691) -Codechange: move+rename helpers.hpp and only include it when it is really needed.
rubidium
parents: 8121
diff changeset
    23
#include "core/alloc_func.hpp"
8270
e7c342f6b14c (svn r11834) -Codechange: only include settings_type.h if needed.
rubidium
parents: 8264
diff changeset
    24
#include "settings_type.h"
9127
14f21c5954ee (svn r12987) -Codechange: split viewport and tile selection.
rubidium
parents: 9116
diff changeset
    25
#include "tilehighlight_func.h"
9164
18e971e0b44f (svn r13027) -Codechange: use StrEmpty instead of arr[0] == '\0' and remove the need for WE_ON_EDIT_TEXT_CANCEL.
rubidium
parents: 9161
diff changeset
    26
#include "string_func.h"
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    27
8264
b1e85998c7d3 (svn r11828) -Codechange: include table/* as the last includes and remove an unneeded include from openttd.h.
rubidium
parents: 8254
diff changeset
    28
#include "table/sprites.h"
b1e85998c7d3 (svn r11828) -Codechange: include table/* as the last includes and remove an unneeded include from openttd.h.
rubidium
parents: 8254
diff changeset
    29
#include "table/strings.h"
b1e85998c7d3 (svn r11828) -Codechange: include table/* as the last includes and remove an unneeded include from openttd.h.
rubidium
parents: 8254
diff changeset
    30
8723
e513a23c2797 (svn r12398) -Codechange [FS#1770]: Move toolbar related code to it's own little neighbourhood. Based on a patch by Dominik.
rubidium
parents: 8717
diff changeset
    31
extern bool GenerateTowns();
e513a23c2797 (svn r12398) -Codechange [FS#1770]: Move toolbar related code to it's own little neighbourhood. Based on a patch by Dominik.
rubidium
parents: 8717
diff changeset
    32
static int _scengen_town_size = 1; // depress medium-sized towns per default
e513a23c2797 (svn r12398) -Codechange [FS#1770]: Move toolbar related code to it's own little neighbourhood. Based on a patch by Dominik.
rubidium
parents: 8717
diff changeset
    33
7657
2b55af55cc51 (svn r11188) -Codechange: rewrite of the town action related code (remove some of the magic).
rubidium
parents: 7386
diff changeset
    34
enum TownAuthorityWidget {
2b55af55cc51 (svn r11188) -Codechange: rewrite of the town action related code (remove some of the magic).
rubidium
parents: 7386
diff changeset
    35
	TWA_CLOSEBOX = 0,
2b55af55cc51 (svn r11188) -Codechange: rewrite of the town action related code (remove some of the magic).
rubidium
parents: 7386
diff changeset
    36
	TWA_CAPTION,
2b55af55cc51 (svn r11188) -Codechange: rewrite of the town action related code (remove some of the magic).
rubidium
parents: 7386
diff changeset
    37
	TWA_RATING_INFO,
2b55af55cc51 (svn r11188) -Codechange: rewrite of the town action related code (remove some of the magic).
rubidium
parents: 7386
diff changeset
    38
	TWA_COMMAND_LIST,
2b55af55cc51 (svn r11188) -Codechange: rewrite of the town action related code (remove some of the magic).
rubidium
parents: 7386
diff changeset
    39
	TWA_SCROLLBAR,
2b55af55cc51 (svn r11188) -Codechange: rewrite of the town action related code (remove some of the magic).
rubidium
parents: 7386
diff changeset
    40
	TWA_ACTION_INFO,
2b55af55cc51 (svn r11188) -Codechange: rewrite of the town action related code (remove some of the magic).
rubidium
parents: 7386
diff changeset
    41
	TWA_EXECUTE,
2b55af55cc51 (svn r11188) -Codechange: rewrite of the town action related code (remove some of the magic).
rubidium
parents: 7386
diff changeset
    42
};
2b55af55cc51 (svn r11188) -Codechange: rewrite of the town action related code (remove some of the magic).
rubidium
parents: 7386
diff changeset
    43
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    44
static const Widget _town_authority_widgets[] = {
7657
2b55af55cc51 (svn r11188) -Codechange: rewrite of the town action related code (remove some of the magic).
rubidium
parents: 7386
diff changeset
    45
{   WWT_CLOSEBOX,   RESIZE_NONE,    13,     0,    10,     0,    13, STR_00C5,                 STR_018B_CLOSE_WINDOW},              // TWA_CLOSEBOX
2b55af55cc51 (svn r11188) -Codechange: rewrite of the town action related code (remove some of the magic).
rubidium
parents: 7386
diff changeset
    46
{    WWT_CAPTION,   RESIZE_NONE,    13,    11,   316,     0,    13, STR_2022_LOCAL_AUTHORITY, STR_018C_WINDOW_TITLE_DRAG_THIS},    // TWA_CAPTION
2b55af55cc51 (svn r11188) -Codechange: rewrite of the town action related code (remove some of the magic).
rubidium
parents: 7386
diff changeset
    47
{      WWT_PANEL,   RESIZE_NONE,    13,     0,   316,    14,   105, 0x0,                      STR_NULL},                           // TWA_RATING_INFO
2b55af55cc51 (svn r11188) -Codechange: rewrite of the town action related code (remove some of the magic).
rubidium
parents: 7386
diff changeset
    48
{      WWT_PANEL,   RESIZE_NONE,    13,     0,   304,   106,   157, 0x0,                      STR_2043_LIST_OF_THINGS_TO_DO_AT},   // TWA_COMMAND_LIST
2b55af55cc51 (svn r11188) -Codechange: rewrite of the town action related code (remove some of the magic).
rubidium
parents: 7386
diff changeset
    49
{  WWT_SCROLLBAR,   RESIZE_NONE,    13,   305,   316,   106,   157, 0x0,                      STR_0190_SCROLL_BAR_SCROLLS_LIST},   // TWA_SCROLLBAR
2b55af55cc51 (svn r11188) -Codechange: rewrite of the town action related code (remove some of the magic).
rubidium
parents: 7386
diff changeset
    50
{      WWT_PANEL,   RESIZE_NONE,    13,     0,   316,   158,   209, 0x0,                      STR_NULL},                           // TWA_ACTION_INFO
2b55af55cc51 (svn r11188) -Codechange: rewrite of the town action related code (remove some of the magic).
rubidium
parents: 7386
diff changeset
    51
{ WWT_PUSHTXTBTN,   RESIZE_NONE,    13,     0,   316,   210,   221, STR_2042_DO_IT,           STR_2044_CARRY_OUT_THE_HIGHLIGHTED}, // TWA_EXECUTE
176
84990c4b9212 (svn r177) -Fix: padded out Widget code to solve warnings on C99 compiler (Tron)
darkvater
parents: 174
diff changeset
    52
{   WIDGETS_END},
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    53
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    54
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    55
extern const byte _town_action_costs[8];
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    56
7657
2b55af55cc51 (svn r11188) -Codechange: rewrite of the town action related code (remove some of the magic).
rubidium
parents: 7386
diff changeset
    57
enum TownActions {
2b55af55cc51 (svn r11188) -Codechange: rewrite of the town action related code (remove some of the magic).
rubidium
parents: 7386
diff changeset
    58
	TACT_NONE             = 0x00,
2b55af55cc51 (svn r11188) -Codechange: rewrite of the town action related code (remove some of the magic).
rubidium
parents: 7386
diff changeset
    59
2b55af55cc51 (svn r11188) -Codechange: rewrite of the town action related code (remove some of the magic).
rubidium
parents: 7386
diff changeset
    60
	TACT_ADVERTISE_SMALL  = 0x01,
2b55af55cc51 (svn r11188) -Codechange: rewrite of the town action related code (remove some of the magic).
rubidium
parents: 7386
diff changeset
    61
	TACT_ADVERTISE_MEDIUM = 0x02,
2b55af55cc51 (svn r11188) -Codechange: rewrite of the town action related code (remove some of the magic).
rubidium
parents: 7386
diff changeset
    62
	TACT_ADVERTISE_LARGE  = 0x04,
2b55af55cc51 (svn r11188) -Codechange: rewrite of the town action related code (remove some of the magic).
rubidium
parents: 7386
diff changeset
    63
	TACT_ROAD_REBUILD     = 0x08,
2b55af55cc51 (svn r11188) -Codechange: rewrite of the town action related code (remove some of the magic).
rubidium
parents: 7386
diff changeset
    64
	TACT_BUILD_STATUE     = 0x10,
2b55af55cc51 (svn r11188) -Codechange: rewrite of the town action related code (remove some of the magic).
rubidium
parents: 7386
diff changeset
    65
	TACT_FOUND_BUILDINGS  = 0x20,
2b55af55cc51 (svn r11188) -Codechange: rewrite of the town action related code (remove some of the magic).
rubidium
parents: 7386
diff changeset
    66
	TACT_BUY_RIGHTS       = 0x40,
2b55af55cc51 (svn r11188) -Codechange: rewrite of the town action related code (remove some of the magic).
rubidium
parents: 7386
diff changeset
    67
	TACT_BRIBE            = 0x80,
2b55af55cc51 (svn r11188) -Codechange: rewrite of the town action related code (remove some of the magic).
rubidium
parents: 7386
diff changeset
    68
2b55af55cc51 (svn r11188) -Codechange: rewrite of the town action related code (remove some of the magic).
rubidium
parents: 7386
diff changeset
    69
	TACT_ADVERTISE        = TACT_ADVERTISE_SMALL | TACT_ADVERTISE_MEDIUM | TACT_ADVERTISE_LARGE,
2b55af55cc51 (svn r11188) -Codechange: rewrite of the town action related code (remove some of the magic).
rubidium
parents: 7386
diff changeset
    70
	TACT_CONSTRUCTION     = TACT_ROAD_REBUILD | TACT_BUILD_STATUE | TACT_FOUND_BUILDINGS,
2b55af55cc51 (svn r11188) -Codechange: rewrite of the town action related code (remove some of the magic).
rubidium
parents: 7386
diff changeset
    71
	TACT_FUNDS            = TACT_BUY_RIGHTS | TACT_BRIBE,
2b55af55cc51 (svn r11188) -Codechange: rewrite of the town action related code (remove some of the magic).
rubidium
parents: 7386
diff changeset
    72
	TACT_ALL              = TACT_ADVERTISE | TACT_CONSTRUCTION | TACT_FUNDS,
2b55af55cc51 (svn r11188) -Codechange: rewrite of the town action related code (remove some of the magic).
rubidium
parents: 7386
diff changeset
    73
};
2b55af55cc51 (svn r11188) -Codechange: rewrite of the town action related code (remove some of the magic).
rubidium
parents: 7386
diff changeset
    74
2b55af55cc51 (svn r11188) -Codechange: rewrite of the town action related code (remove some of the magic).
rubidium
parents: 7386
diff changeset
    75
DECLARE_ENUM_AS_BIT_SET(TownActions);
2b55af55cc51 (svn r11188) -Codechange: rewrite of the town action related code (remove some of the magic).
rubidium
parents: 7386
diff changeset
    76
1793
b9a37c98b468 (svn r2297) - CodeChange: server-check the next batch of commands.
Darkvater
parents: 1363
diff changeset
    77
/** Get a list of available actions to do at a town.
6422
6679df1c05ba (svn r9558) -Documentation: doxygen and comment changes: 'T' now. Almost done
belugas
parents: 6247
diff changeset
    78
 * @param nump if not NULL add put the number of available actions in it
1793
b9a37c98b468 (svn r2297) - CodeChange: server-check the next batch of commands.
Darkvater
parents: 1363
diff changeset
    79
 * @param pid the player that is querying the town
6422
6679df1c05ba (svn r9558) -Documentation: doxygen and comment changes: 'T' now. Almost done
belugas
parents: 6247
diff changeset
    80
 * @param t the town that is queried
1793
b9a37c98b468 (svn r2297) - CodeChange: server-check the next batch of commands.
Darkvater
parents: 1363
diff changeset
    81
 * @return bitmasked value of enabled actions
b9a37c98b468 (svn r2297) - CodeChange: server-check the next batch of commands.
Darkvater
parents: 1363
diff changeset
    82
 */
b9a37c98b468 (svn r2297) - CodeChange: server-check the next batch of commands.
Darkvater
parents: 1363
diff changeset
    83
uint GetMaskOfTownActions(int *nump, PlayerID pid, const Town *t)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    84
{
1793
b9a37c98b468 (svn r2297) - CodeChange: server-check the next batch of commands.
Darkvater
parents: 1363
diff changeset
    85
	int num = 0;
7657
2b55af55cc51 (svn r11188) -Codechange: rewrite of the town action related code (remove some of the magic).
rubidium
parents: 7386
diff changeset
    86
	TownActions buttons = TACT_NONE;
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
    87
7657
2b55af55cc51 (svn r11188) -Codechange: rewrite of the town action related code (remove some of the magic).
rubidium
parents: 7386
diff changeset
    88
	/* Spectators and unwanted have no options */
2b55af55cc51 (svn r11188) -Codechange: rewrite of the town action related code (remove some of the magic).
rubidium
parents: 7386
diff changeset
    89
	if (pid != PLAYER_SPECTATOR && !(_patches.bribe && t->unwanted[pid])) {
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    90
6422
6679df1c05ba (svn r9558) -Documentation: doxygen and comment changes: 'T' now. Almost done
belugas
parents: 6247
diff changeset
    91
		/* Things worth more than this are not shown */
7657
2b55af55cc51 (svn r11188) -Codechange: rewrite of the town action related code (remove some of the magic).
rubidium
parents: 7386
diff changeset
    92
		Money avail = GetPlayer(pid)->player_money + _price.station_value * 200;
2b55af55cc51 (svn r11188) -Codechange: rewrite of the town action related code (remove some of the magic).
rubidium
parents: 7386
diff changeset
    93
		Money ref = _price.build_industry >> 8;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    94
7657
2b55af55cc51 (svn r11188) -Codechange: rewrite of the town action related code (remove some of the magic).
rubidium
parents: 7386
diff changeset
    95
		/* Check the action bits for validity and
2b55af55cc51 (svn r11188) -Codechange: rewrite of the town action related code (remove some of the magic).
rubidium
parents: 7386
diff changeset
    96
		 * if they are valid add them */
2b55af55cc51 (svn r11188) -Codechange: rewrite of the town action related code (remove some of the magic).
rubidium
parents: 7386
diff changeset
    97
		for (uint i = 0; i != lengthof(_town_action_costs); i++) {
2b55af55cc51 (svn r11188) -Codechange: rewrite of the town action related code (remove some of the magic).
rubidium
parents: 7386
diff changeset
    98
			const TownActions cur = (TownActions)(1 << i);
2b55af55cc51 (svn r11188) -Codechange: rewrite of the town action related code (remove some of the magic).
rubidium
parents: 7386
diff changeset
    99
2b55af55cc51 (svn r11188) -Codechange: rewrite of the town action related code (remove some of the magic).
rubidium
parents: 7386
diff changeset
   100
			/* Is the player not able to bribe ? */
2b55af55cc51 (svn r11188) -Codechange: rewrite of the town action related code (remove some of the magic).
rubidium
parents: 7386
diff changeset
   101
			if (cur == TACT_BRIBE && (!_patches.bribe || t->ratings[pid] >= RATING_BRIBE_MAXIMUM))
2b55af55cc51 (svn r11188) -Codechange: rewrite of the town action related code (remove some of the magic).
rubidium
parents: 7386
diff changeset
   102
				continue;
2b55af55cc51 (svn r11188) -Codechange: rewrite of the town action related code (remove some of the magic).
rubidium
parents: 7386
diff changeset
   103
2b55af55cc51 (svn r11188) -Codechange: rewrite of the town action related code (remove some of the magic).
rubidium
parents: 7386
diff changeset
   104
			/* Is the player not able to buy exclusive rights ? */
2b55af55cc51 (svn r11188) -Codechange: rewrite of the town action related code (remove some of the magic).
rubidium
parents: 7386
diff changeset
   105
			if (cur == TACT_BUY_RIGHTS && !_patches.exclusive_rights)
2b55af55cc51 (svn r11188) -Codechange: rewrite of the town action related code (remove some of the magic).
rubidium
parents: 7386
diff changeset
   106
				continue;
2b55af55cc51 (svn r11188) -Codechange: rewrite of the town action related code (remove some of the magic).
rubidium
parents: 7386
diff changeset
   107
2b55af55cc51 (svn r11188) -Codechange: rewrite of the town action related code (remove some of the magic).
rubidium
parents: 7386
diff changeset
   108
			/* Is the player not able to build a statue ? */
7928
63e18de69e50 (svn r11481) -Codechange: Rename the HASBIT function to fit with the naming style
skidd13
parents: 7824
diff changeset
   109
			if (cur == TACT_BUILD_STATUE && HasBit(t->statues, pid))
7657
2b55af55cc51 (svn r11188) -Codechange: rewrite of the town action related code (remove some of the magic).
rubidium
parents: 7386
diff changeset
   110
				continue;
2b55af55cc51 (svn r11188) -Codechange: rewrite of the town action related code (remove some of the magic).
rubidium
parents: 7386
diff changeset
   111
2b55af55cc51 (svn r11188) -Codechange: rewrite of the town action related code (remove some of the magic).
rubidium
parents: 7386
diff changeset
   112
			if (avail >= _town_action_costs[i] * ref) {
2b55af55cc51 (svn r11188) -Codechange: rewrite of the town action related code (remove some of the magic).
rubidium
parents: 7386
diff changeset
   113
				buttons |= cur;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   114
				num++;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   115
			}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   116
		}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   117
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   118
1793
b9a37c98b468 (svn r2297) - CodeChange: server-check the next batch of commands.
Darkvater
parents: 1363
diff changeset
   119
	if (nump != NULL) *nump = num;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   120
	return buttons;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   121
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   122
7982
0d1198a12414 (svn r11538) -Codechange: Rewrite GetNthSetBit in a more uncontroversial way and add its documentation
skidd13
parents: 7954
diff changeset
   123
/**
0d1198a12414 (svn r11538) -Codechange: Rewrite GetNthSetBit in a more uncontroversial way and add its documentation
skidd13
parents: 7954
diff changeset
   124
 * Get the position of the Nth set bit.
0d1198a12414 (svn r11538) -Codechange: Rewrite GetNthSetBit in a more uncontroversial way and add its documentation
skidd13
parents: 7954
diff changeset
   125
 *
0d1198a12414 (svn r11538) -Codechange: Rewrite GetNthSetBit in a more uncontroversial way and add its documentation
skidd13
parents: 7954
diff changeset
   126
 * If there is no Nth bit set return -1
0d1198a12414 (svn r11538) -Codechange: Rewrite GetNthSetBit in a more uncontroversial way and add its documentation
skidd13
parents: 7954
diff changeset
   127
 *
0d1198a12414 (svn r11538) -Codechange: Rewrite GetNthSetBit in a more uncontroversial way and add its documentation
skidd13
parents: 7954
diff changeset
   128
 * @param bits The value to search in
0d1198a12414 (svn r11538) -Codechange: Rewrite GetNthSetBit in a more uncontroversial way and add its documentation
skidd13
parents: 7954
diff changeset
   129
 * @param n The Nth set bit from which we want to know the position
0d1198a12414 (svn r11538) -Codechange: Rewrite GetNthSetBit in a more uncontroversial way and add its documentation
skidd13
parents: 7954
diff changeset
   130
 * @return The position of the Nth set bit
0d1198a12414 (svn r11538) -Codechange: Rewrite GetNthSetBit in a more uncontroversial way and add its documentation
skidd13
parents: 7954
diff changeset
   131
 */
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   132
static int GetNthSetBit(uint32 bits, int n)
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   133
{
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   134
	if (n >= 0) {
8005
2318a0547719 (svn r11564) -Codechange: Increase the usage of the for_each_bit macro and rename it fitting to the naming style
skidd13
parents: 7997
diff changeset
   135
		uint i;
2318a0547719 (svn r11564) -Codechange: Increase the usage of the for_each_bit macro and rename it fitting to the naming style
skidd13
parents: 7997
diff changeset
   136
		FOR_EACH_SET_BIT(i, bits) {
2318a0547719 (svn r11564) -Codechange: Increase the usage of the for_each_bit macro and rename it fitting to the naming style
skidd13
parents: 7997
diff changeset
   137
			n--;
7982
0d1198a12414 (svn r11538) -Codechange: Rewrite GetNthSetBit in a more uncontroversial way and add its documentation
skidd13
parents: 7954
diff changeset
   138
			if (n < 0) return i;
0d1198a12414 (svn r11538) -Codechange: Rewrite GetNthSetBit in a more uncontroversial way and add its documentation
skidd13
parents: 7954
diff changeset
   139
		}
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   140
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   141
	return -1;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   142
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   143
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   144
static void TownAuthorityWndProc(Window *w, WindowEvent *e)
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   145
{
1793
b9a37c98b468 (svn r2297) - CodeChange: server-check the next batch of commands.
Darkvater
parents: 1363
diff changeset
   146
	switch (e->event) {
8932
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   147
		case WE_PAINT: {
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   148
			const Town *t = GetTown(w->window_number);
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   149
			int numact;
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   150
			uint buttons = GetMaskOfTownActions(&numact, _local_player, t);
122
6e56237f536c (svn r123) Fixed some indentions... btw credits for the last commit go to Celestar
dominik
parents: 121
diff changeset
   151
8932
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   152
			SetVScrollCount(w, numact + 1);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   153
8969
6d1c74e0e2cd (svn r12761) -Codechange: lots of minor whitespace coding style fixes around operators.
rubidium
parents: 8945
diff changeset
   154
			if (WP(w, def_d).data_1 != -1 && !HasBit(buttons, WP(w, def_d).data_1))
8932
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   155
				WP(w, def_d).data_1 = -1;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   156
8932
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   157
			w->SetWidgetDisabledState(6, WP(w, def_d).data_1 == -1);
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   158
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   159
			{
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   160
				int y;
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   161
				const Player *p;
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   162
				int r;
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   163
				StringID str;
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   164
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   165
				SetDParam(0, w->window_number);
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   166
				DrawWindowWidgets(w);
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   167
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   168
				DrawString(2, 15, STR_2023_TRANSPORT_COMPANY_RATINGS, TC_FROMSTRING);
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   169
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   170
				/* Draw list of players */
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   171
				y = 25;
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   172
				FOR_ALL_PLAYERS(p) {
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   173
					if (p->is_active && (HasBit(t->have_ratings, p->index) || t->exclusivity == p->index)) {
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   174
						DrawPlayerIcon(p->index, 2, y);
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   175
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   176
						SetDParam(0, p->index);
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   177
						SetDParam(1, p->index);
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   178
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   179
						r = t->ratings[p->index];
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   180
						(str = STR_3035_APPALLING, r <= RATING_APPALLING) || // Apalling
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   181
						(str++,                    r <= RATING_VERYPOOR)  || // Very Poor
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   182
						(str++,                    r <= RATING_POOR)      || // Poor
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   183
						(str++,                    r <= RATING_MEDIOCRE)  || // Mediocore
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   184
						(str++,                    r <= RATING_GOOD)      || // Good
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   185
						(str++,                    r <= RATING_VERYGOOD)  || // Very Good
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   186
						(str++,                    r <= RATING_EXCELLENT) || // Excellent
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   187
						(str++,                    true);                    // Outstanding
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   188
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   189
						SetDParam(2, str);
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   190
						if (t->exclusivity == p->index) { // red icon for player with exclusive rights
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   191
							DrawSprite(SPR_BLOT, PALETTE_TO_RED, 18, y);
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   192
						}
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   193
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   194
						DrawString(28, y, STR_2024, TC_FROMSTRING);
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   195
						y += 10;
5668
36b39f4a9032 (svn r8128) -Codechange: Split sprite and palette remap into separate 32 bit values.
peter1138
parents: 5609
diff changeset
   196
					}
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   197
				}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   198
			}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   199
8932
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   200
			/* Draw actions list */
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   201
			{
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   202
				int y = 107, i;
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   203
				int pos = w->vscroll.pos;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   204
8932
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   205
				if (--pos < 0) {
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   206
					DrawString(2, y, STR_2045_ACTIONS_AVAILABLE, TC_FROMSTRING);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   207
					y += 10;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   208
				}
8932
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   209
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   210
				for (i = 0; buttons; i++, buttons >>= 1) {
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   211
					if (pos <= -5) break; ///< Draw only the 5 fitting lines
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   212
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   213
					if ((buttons & 1) && --pos < 0) {
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   214
						DrawString(3, y, STR_2046_SMALL_ADVERTISING_CAMPAIGN + i, TC_ORANGE);
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   215
						y += 10;
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   216
					}
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   217
				}
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   218
			}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   219
8932
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   220
			{
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   221
				int i = WP(w, def_d).data_1;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   222
8932
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   223
				if (i != -1) {
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   224
					SetDParam(1, (_price.build_industry >> 8) * _town_action_costs[i]);
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   225
					SetDParam(0, STR_2046_SMALL_ADVERTISING_CAMPAIGN + i);
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   226
					DrawStringMultiLine(2, 159, STR_204D_INITIATE_A_SMALL_LOCAL + i, 313);
8578
80b5c7d84399 (svn r12159) -Codechange: Enumify some widget magical numbers
belugas
parents: 8349
diff changeset
   227
				}
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   228
			}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   229
8932
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   230
		} break;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   231
8932
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   232
		case WE_DOUBLE_CLICK:
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   233
		case WE_CLICK:
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   234
			switch (e->we.click.widget) {
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   235
				case TWA_COMMAND_LIST: {
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   236
					const Town *t = GetTown(w->window_number);
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   237
					int y = (e->we.click.pt.y - 0x6B) / 10;
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   238
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   239
					if (!IsInsideMM(y, 0, 5)) return;
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   240
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   241
					y = GetNthSetBit(GetMaskOfTownActions(NULL, _local_player, t), y + w->vscroll.pos - 1);
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   242
					if (y >= 0) {
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   243
						WP(w, def_d).data_1 = y;
9116
f2491d3c321b (svn r12976) -Codechange: use w->SetDirty() instead of SetWindowDirty(w) when it's certain that w != NULL.
rubidium
parents: 9111
diff changeset
   244
						w->SetDirty();
8932
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   245
					}
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   246
					/* Fall through to clicking in case we are double-clicked */
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   247
					if (e->event != WE_DOUBLE_CLICK || y < 0) break;
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   248
				}
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   249
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   250
				case TWA_EXECUTE:
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   251
					DoCommandP(GetTown(w->window_number)->xy, w->window_number, WP(w, def_d).data_1, NULL, CMD_DO_TOWN_ACTION | CMD_MSG(STR_00B4_CAN_T_DO_THIS));
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   252
					break;
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   253
			}
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   254
			break;
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   255
9161
fda175383e87 (svn r13024) -Codechange: do not use WE_MOUSELOOP when WE_TICK suffices, rename WE_4 to something more descriptive and correct some (completely incorrect) comments.
rubidium
parents: 9143
diff changeset
   256
		case WE_100_TICKS:
9116
f2491d3c321b (svn r12976) -Codechange: use w->SetDirty() instead of SetWindowDirty(w) when it's certain that w != NULL.
rubidium
parents: 9111
diff changeset
   257
			w->SetDirty();
8932
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   258
			break;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   259
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   260
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   261
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   262
static const WindowDesc _town_authority_desc = {
7341
02515d0d4ced (svn r10704) -Codechange: provide an infrastructure to have resizable windows that are smaller than the default window size.
rubidium
parents: 7058
diff changeset
   263
	WDP_AUTO, WDP_AUTO, 317, 222, 317, 222,
5893
7e431a4abebb (svn r8511) -Codechange: make WindowClass an enumerated value.
rubidium
parents: 5750
diff changeset
   264
	WC_TOWN_AUTHORITY, WC_NONE,
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   265
	WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   266
	_town_authority_widgets,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   267
	TownAuthorityWndProc
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   268
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   269
410
0efd84450b01 (svn r607) -Patch: [ 985102 ] static cleanup
tron
parents: 246
diff changeset
   270
static void ShowTownAuthorityWindow(uint town)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   271
{
9143
029e126e3439 (svn r13005) -Codechange: prepare AllocateWindowDescFront for subclassing of Window.
rubidium
parents: 9127
diff changeset
   272
	Window *w = AllocateWindowDescFront<Window>(&_town_authority_desc, town);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   273
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   274
	if (w != NULL) {
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   275
		w->vscroll.cap = 5;
8082
63240e1bd6cc (svn r11643) -Codechange: conform with the coding style for the WP macro uses.
rubidium
parents: 8040
diff changeset
   276
		WP(w, def_d).data_1 = -1;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   277
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   278
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   279
8933
c1f075679c2e (svn r12705) -Codechange: enumification of some more widgets
belugas
parents: 8932
diff changeset
   280
c1f075679c2e (svn r12705) -Codechange: enumification of some more widgets
belugas
parents: 8932
diff changeset
   281
enum TownViewWidget {
c1f075679c2e (svn r12705) -Codechange: enumification of some more widgets
belugas
parents: 8932
diff changeset
   282
	TVW_CAPTION = 1,
8945
7fa9c9bf5522 (svn r12733) -Codechange: Merge two more Widgets arrays (town views ) into one.
belugas
parents: 8933
diff changeset
   283
	TVW_STICKY,
8933
c1f075679c2e (svn r12705) -Codechange: enumification of some more widgets
belugas
parents: 8932
diff changeset
   284
	TVW_CENTERVIEW = 6,
c1f075679c2e (svn r12705) -Codechange: enumification of some more widgets
belugas
parents: 8932
diff changeset
   285
	TVW_SHOWAUTORITY,
c1f075679c2e (svn r12705) -Codechange: enumification of some more widgets
belugas
parents: 8932
diff changeset
   286
	TVW_CHANGENAME,
c1f075679c2e (svn r12705) -Codechange: enumification of some more widgets
belugas
parents: 8932
diff changeset
   287
	TVW_EXPAND,
c1f075679c2e (svn r12705) -Codechange: enumification of some more widgets
belugas
parents: 8932
diff changeset
   288
	TVW_DELETE,
c1f075679c2e (svn r12705) -Codechange: enumification of some more widgets
belugas
parents: 8932
diff changeset
   289
};
c1f075679c2e (svn r12705) -Codechange: enumification of some more widgets
belugas
parents: 8932
diff changeset
   290
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   291
static void TownViewWndProc(Window *w, WindowEvent *e)
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   292
{
919
544f374ee392 (svn r1407) -Codechange: changed a lot around _stations, _vehicles, _towns and _industries
truelight
parents: 893
diff changeset
   293
	Town *t = GetTown(w->window_number);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   294
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   295
	switch (e->event) {
8945
7fa9c9bf5522 (svn r12733) -Codechange: Merge two more Widgets arrays (town views ) into one.
belugas
parents: 8933
diff changeset
   296
		case WE_CREATE: {
7fa9c9bf5522 (svn r12733) -Codechange: Merge two more Widgets arrays (town views ) into one.
belugas
parents: 8933
diff changeset
   297
			bool ingame = _game_mode != GM_EDITOR;
8933
c1f075679c2e (svn r12705) -Codechange: enumification of some more widgets
belugas
parents: 8932
diff changeset
   298
			if (t->larger_town) w->widget[TVW_CAPTION].data = STR_CITY;
8945
7fa9c9bf5522 (svn r12733) -Codechange: Merge two more Widgets arrays (town views ) into one.
belugas
parents: 8933
diff changeset
   299
			w->SetWidgetHiddenState(TVW_DELETE, ingame);  // hide delete button on game mode
7fa9c9bf5522 (svn r12733) -Codechange: Merge two more Widgets arrays (town views ) into one.
belugas
parents: 8933
diff changeset
   300
			w->SetWidgetHiddenState(TVW_EXPAND, ingame);  // hide expand button on game mode
7fa9c9bf5522 (svn r12733) -Codechange: Merge two more Widgets arrays (town views ) into one.
belugas
parents: 8933
diff changeset
   301
			w->SetWidgetHiddenState(TVW_SHOWAUTORITY, !ingame); // hide autority button on editor mode
7fa9c9bf5522 (svn r12733) -Codechange: Merge two more Widgets arrays (town views ) into one.
belugas
parents: 8933
diff changeset
   302
7fa9c9bf5522 (svn r12733) -Codechange: Merge two more Widgets arrays (town views ) into one.
belugas
parents: 8933
diff changeset
   303
			if (ingame) {
7fa9c9bf5522 (svn r12733) -Codechange: Merge two more Widgets arrays (town views ) into one.
belugas
parents: 8933
diff changeset
   304
				/* resize caption bar */
7fa9c9bf5522 (svn r12733) -Codechange: Merge two more Widgets arrays (town views ) into one.
belugas
parents: 8933
diff changeset
   305
				w->widget[TVW_CAPTION].right = w->widget[TVW_STICKY].left -1;
7fa9c9bf5522 (svn r12733) -Codechange: Merge two more Widgets arrays (town views ) into one.
belugas
parents: 8933
diff changeset
   306
				/* move the rename from top on scenario to bottom in game */
7fa9c9bf5522 (svn r12733) -Codechange: Merge two more Widgets arrays (town views ) into one.
belugas
parents: 8933
diff changeset
   307
				w->widget[TVW_CHANGENAME].top = w->widget[TVW_EXPAND].top;
7fa9c9bf5522 (svn r12733) -Codechange: Merge two more Widgets arrays (town views ) into one.
belugas
parents: 8933
diff changeset
   308
				w->widget[TVW_CHANGENAME].bottom = w->widget[TVW_EXPAND].bottom;
7fa9c9bf5522 (svn r12733) -Codechange: Merge two more Widgets arrays (town views ) into one.
belugas
parents: 8933
diff changeset
   309
				w->widget[TVW_CHANGENAME].right = w->widget[TVW_STICKY].right;
7fa9c9bf5522 (svn r12733) -Codechange: Merge two more Widgets arrays (town views ) into one.
belugas
parents: 8933
diff changeset
   310
			}
7fa9c9bf5522 (svn r12733) -Codechange: Merge two more Widgets arrays (town views ) into one.
belugas
parents: 8933
diff changeset
   311
		} break;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   312
8932
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   313
		case WE_PAINT:
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   314
			/* disable renaming town in network games if you are not the server */
8933
c1f075679c2e (svn r12705) -Codechange: enumification of some more widgets
belugas
parents: 8932
diff changeset
   315
			w->SetWidgetDisabledState(TVW_CHANGENAME, _networking && !_network_server);
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   316
8932
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   317
			SetDParam(0, t->index);
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   318
			DrawWindowWidgets(w);
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   319
8932
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   320
			SetDParam(0, t->population);
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   321
			SetDParam(1, t->num_houses);
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   322
			DrawString(2, 107, STR_2006_POPULATION, TC_FROMSTRING);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   323
8932
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   324
			SetDParam(0, t->act_pass);
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   325
			SetDParam(1, t->max_pass);
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   326
			DrawString(2, 117, STR_200D_PASSENGERS_LAST_MONTH_MAX, TC_FROMSTRING);
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   327
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   328
			SetDParam(0, t->act_mail);
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   329
			SetDParam(1, t->max_mail);
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   330
			DrawString(2, 127, STR_200E_MAIL_LAST_MONTH_MAX, TC_FROMSTRING);
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   331
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   332
			DrawWindowViewport(w);
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   333
			break;
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   334
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   335
		case WE_CLICK:
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   336
			switch (e->we.click.widget) {
8933
c1f075679c2e (svn r12705) -Codechange: enumification of some more widgets
belugas
parents: 8932
diff changeset
   337
				case TVW_CENTERVIEW: /* scroll to location */
9094
48004fcef409 (svn r12953) -Feature: Open a new viewport when ctrl-clicking on a 'Location' button, a town/station/industry list, or some news items.
peter1138
parents: 8994
diff changeset
   338
					if (_ctrl_pressed) {
48004fcef409 (svn r12953) -Feature: Open a new viewport when ctrl-clicking on a 'Location' button, a town/station/industry list, or some news items.
peter1138
parents: 8994
diff changeset
   339
						ShowExtraViewPortWindow(t->xy);
48004fcef409 (svn r12953) -Feature: Open a new viewport when ctrl-clicking on a 'Location' button, a town/station/industry list, or some news items.
peter1138
parents: 8994
diff changeset
   340
					} else {
48004fcef409 (svn r12953) -Feature: Open a new viewport when ctrl-clicking on a 'Location' button, a town/station/industry list, or some news items.
peter1138
parents: 8994
diff changeset
   341
						ScrollMainWindowToTile(t->xy);
48004fcef409 (svn r12953) -Feature: Open a new viewport when ctrl-clicking on a 'Location' button, a town/station/industry list, or some news items.
peter1138
parents: 8994
diff changeset
   342
					}
8932
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   343
					break;
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   344
8933
c1f075679c2e (svn r12705) -Codechange: enumification of some more widgets
belugas
parents: 8932
diff changeset
   345
				case TVW_SHOWAUTORITY: /* town authority */
8932
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   346
					ShowTownAuthorityWindow(w->window_number);
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   347
					break;
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   348
8933
c1f075679c2e (svn r12705) -Codechange: enumification of some more widgets
belugas
parents: 8932
diff changeset
   349
				case TVW_CHANGENAME: /* rename */
8932
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   350
					SetDParam(0, w->window_number);
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   351
					ShowQueryString(STR_TOWN, STR_2007_RENAME_TOWN, 31, 130, w, CS_ALPHANUMERAL);
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   352
					break;
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   353
8933
c1f075679c2e (svn r12705) -Codechange: enumification of some more widgets
belugas
parents: 8932
diff changeset
   354
				case TVW_EXPAND: /* expand town - only available on Scenario editor */
8932
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   355
					ExpandTown(t);
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   356
					break;
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   357
8933
c1f075679c2e (svn r12705) -Codechange: enumification of some more widgets
belugas
parents: 8932
diff changeset
   358
				case TVW_DELETE: /* delete town - only available on Scenario editor */
8932
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   359
					delete t;
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   360
					break;
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   361
			} break;
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   362
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   363
		case WE_ON_EDIT_TEXT:
9164
18e971e0b44f (svn r13027) -Codechange: use StrEmpty instead of arr[0] == '\0' and remove the need for WE_ON_EDIT_TEXT_CANCEL.
rubidium
parents: 9161
diff changeset
   364
			if (!StrEmpty(e->we.edittext.str)) {
8932
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   365
				_cmd_text = e->we.edittext.str;
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   366
				DoCommandP(0, w->window_number, 0, NULL,
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   367
					CMD_RENAME_TOWN | CMD_MSG(STR_2008_CAN_T_RENAME_TOWN));
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   368
			}
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   369
			break;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   370
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   371
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   372
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   373
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   374
static const Widget _town_view_widgets[] = {
4344
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4299
diff changeset
   375
{   WWT_CLOSEBOX,   RESIZE_NONE,    13,     0,    10,     0,    13, STR_00C5,                 STR_018B_CLOSE_WINDOW},
8945
7fa9c9bf5522 (svn r12733) -Codechange: Merge two more Widgets arrays (town views ) into one.
belugas
parents: 8933
diff changeset
   376
{    WWT_CAPTION,   RESIZE_NONE,    13,    11,   172,     0,    13, STR_2005,                 STR_018C_WINDOW_TITLE_DRAG_THIS},
4344
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4299
diff changeset
   377
{  WWT_STICKYBOX,   RESIZE_NONE,    13,   248,   259,     0,    13, 0x0,                      STR_STICKY_BUTTON},
4938
0447845fd1b3 (svn r6925) -Codechange: Be more strict with widget distinctions. WWT_PANEL is only plain panel,
Darkvater
parents: 4913
diff changeset
   378
{      WWT_PANEL,   RESIZE_NONE,    13,     0,   259,    14,   105, 0x0,                      STR_NULL},
4939
bef7c24a6027 (svn r6926) -Codechange: Rename WWT_4 to WWT_TEXTBTN_2 and WWT_6 to WWT_INSET (credits to peter1138
Darkvater
parents: 4938
diff changeset
   379
{      WWT_INSET,   RESIZE_NONE,    13,     2,   257,    16,   103, 0x0,                      STR_NULL},
4938
0447845fd1b3 (svn r6925) -Codechange: Be more strict with widget distinctions. WWT_PANEL is only plain panel,
Darkvater
parents: 4913
diff changeset
   380
{      WWT_PANEL,   RESIZE_NONE,    13,     0,   259,   106,   137, 0x0,                      STR_NULL},
4344
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4299
diff changeset
   381
{ WWT_PUSHTXTBTN,   RESIZE_NONE,    13,     0,    85,   138,   149, STR_00E4_LOCATION,        STR_200B_CENTER_THE_MAIN_VIEW_ON},
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4299
diff changeset
   382
{ WWT_PUSHTXTBTN,   RESIZE_NONE,    13,    86,   171,   138,   149, STR_2020_LOCAL_AUTHORITY, STR_2021_SHOW_INFORMATION_ON_LOCAL},
8945
7fa9c9bf5522 (svn r12733) -Codechange: Merge two more Widgets arrays (town views ) into one.
belugas
parents: 8933
diff changeset
   383
{ WWT_PUSHTXTBTN,   RESIZE_NONE,    13,   172,   247,     0,    13, STR_0130_RENAME,          STR_200C_CHANGE_TOWN_NAME},
7fa9c9bf5522 (svn r12733) -Codechange: Merge two more Widgets arrays (town views ) into one.
belugas
parents: 8933
diff changeset
   384
{ WWT_PUSHTXTBTN,   RESIZE_NONE,    13,    86,   171,   138,   149, STR_023C_EXPAND,          STR_023B_INCREASE_SIZE_OF_TOWN},
7fa9c9bf5522 (svn r12733) -Codechange: Merge two more Widgets arrays (town views ) into one.
belugas
parents: 8933
diff changeset
   385
{ WWT_PUSHTXTBTN,   RESIZE_NONE,    13,   172,   259,   138,   149, STR_0290_DELETE,          STR_0291_DELETE_THIS_TOWN_COMPLETELY},
176
84990c4b9212 (svn r177) -Fix: padded out Widget code to solve warnings on C99 compiler (Tron)
darkvater
parents: 174
diff changeset
   386
{   WIDGETS_END},
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   387
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   388
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   389
static const WindowDesc _town_view_desc = {
7341
02515d0d4ced (svn r10704) -Codechange: provide an infrastructure to have resizable windows that are smaller than the default window size.
rubidium
parents: 7058
diff changeset
   390
	WDP_AUTO, WDP_AUTO, 260, 150, 260, 150,
5893
7e431a4abebb (svn r8511) -Codechange: make WindowClass an enumerated value.
rubidium
parents: 5750
diff changeset
   391
	WC_TOWN_VIEW, WC_NONE,
758
423ae0bcba07 (svn r1214) -Feature: Stickified Industries (list & window), Smallmaps (all three), Stations (list & window) and Towns (list & window). I hope I didn't forget to update a widget somewhere :O
darkvater
parents: 727
diff changeset
   392
	WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON,
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   393
	_town_view_widgets,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   394
	TownViewWndProc
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   395
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   396
3349
716104d39983 (svn r4133) - Some miscellaneous changes (unconverted TownID in function definition, Owner instead of byte, remove obsolete member and compare waypoint index with 0 not STR_NULL)
Darkvater
parents: 2952
diff changeset
   397
void ShowTownViewWindow(TownID town)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   398
{
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   399
	Window *w;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   400
9143
029e126e3439 (svn r13005) -Codechange: prepare AllocateWindowDescFront for subclassing of Window.
rubidium
parents: 9127
diff changeset
   401
	w = AllocateWindowDescFront<Window>(&_town_view_desc, town);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   402
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   403
	if (w != NULL) {
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   404
		w->flags4 |= WF_DISABLE_VP_SCROLL;
8994
fb5e761cf141 (svn r12789) -Codechange: rename AssignWindowViewport to InitializeWindowViewport because the viewport is now part of the window struct. Patch by Alberth.
rubidium
parents: 8969
diff changeset
   405
		InitializeWindowViewport(w, 3, 17, 254, 86, GetTown(town)->xy, ZOOM_LVL_TOWN);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   406
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   407
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   408
8578
80b5c7d84399 (svn r12159) -Codechange: Enumify some widget magical numbers
belugas
parents: 8349
diff changeset
   409
enum TownDirectoryWidget {
80b5c7d84399 (svn r12159) -Codechange: Enumify some widget magical numbers
belugas
parents: 8349
diff changeset
   410
	TDW_SORTNAME = 3,
80b5c7d84399 (svn r12159) -Codechange: Enumify some widget magical numbers
belugas
parents: 8349
diff changeset
   411
	TDW_SORTPOPULATION,
80b5c7d84399 (svn r12159) -Codechange: Enumify some widget magical numbers
belugas
parents: 8349
diff changeset
   412
	TDW_CENTERTOWN,
80b5c7d84399 (svn r12159) -Codechange: Enumify some widget magical numbers
belugas
parents: 8349
diff changeset
   413
};
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   414
static const Widget _town_directory_widgets[] = {
4344
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4299
diff changeset
   415
{   WWT_CLOSEBOX,   RESIZE_NONE,    13,     0,    10,     0,    13, STR_00C5,               STR_018B_CLOSE_WINDOW},
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4299
diff changeset
   416
{    WWT_CAPTION,   RESIZE_NONE,    13,    11,   195,     0,    13, STR_2000_TOWNS,         STR_018C_WINDOW_TITLE_DRAG_THIS},
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4299
diff changeset
   417
{  WWT_STICKYBOX,   RESIZE_NONE,    13,   196,   207,     0,    13, 0x0,                    STR_STICKY_BUTTON},
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4299
diff changeset
   418
{ WWT_PUSHTXTBTN,   RESIZE_NONE,    13,     0,    98,    14,    25, STR_SORT_BY_NAME,       STR_SORT_ORDER_TIP},
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4299
diff changeset
   419
{ WWT_PUSHTXTBTN,   RESIZE_NONE,    13,    99,   195,    14,    25, STR_SORT_BY_POPULATION, STR_SORT_ORDER_TIP},
4938
0447845fd1b3 (svn r6925) -Codechange: Be more strict with widget distinctions. WWT_PANEL is only plain panel,
Darkvater
parents: 4913
diff changeset
   420
{      WWT_PANEL, RESIZE_BOTTOM,    13,     0,   195,    26,   189, 0x0,                    STR_200A_TOWN_NAMES_CLICK_ON_NAME},
4344
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4299
diff changeset
   421
{  WWT_SCROLLBAR, RESIZE_BOTTOM,    13,   196,   207,    14,   189, 0x0,                    STR_0190_SCROLL_BAR_SCROLLS_LIST},
4938
0447845fd1b3 (svn r6925) -Codechange: Be more strict with widget distinctions. WWT_PANEL is only plain panel,
Darkvater
parents: 4913
diff changeset
   422
{      WWT_PANEL,     RESIZE_TB,    13,     0,   195,   190,   201, 0x0,                    STR_NULL},
4344
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4299
diff changeset
   423
{  WWT_RESIZEBOX,     RESIZE_TB,    13,   196,   207,   190,   201, 0x0,                    STR_RESIZE_BUTTON},
176
84990c4b9212 (svn r177) -Fix: padded out Widget code to solve warnings on C99 compiler (Tron)
darkvater
parents: 174
diff changeset
   424
{   WIDGETS_END},
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   425
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   426
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   427
6422
6679df1c05ba (svn r9558) -Documentation: doxygen and comment changes: 'T' now. Almost done
belugas
parents: 6247
diff changeset
   428
/* used to get a sorted list of the towns */
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   429
static uint _num_town_sort;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   430
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   431
static char _bufcache[64];
4277
345e1bd9525a (svn r5907) Remove more indirection by using pointers instead of IDs. Also fix some bogus warnings on MSVC by using (void*) casts
tron
parents: 4171
diff changeset
   432
static const Town* _last_town;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   433
164
0cbdf3c9bde1 (svn r165) -Feature: Option to sort vehicles in vehicle-list window by different criteria. Total independent sort for all types and players. Periodic resort of list every 10 TTD days. Thank you for your graphical inspiration follow and buxo (since none of you provided any code).
darkvater
parents: 125
diff changeset
   434
static int CDECL TownNameSorter(const void *a, const void *b)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   435
{
4277
345e1bd9525a (svn r5907) Remove more indirection by using pointers instead of IDs. Also fix some bogus warnings on MSVC by using (void*) casts
tron
parents: 4171
diff changeset
   436
	const Town* ta = *(const Town**)a;
345e1bd9525a (svn r5907) Remove more indirection by using pointers instead of IDs. Also fix some bogus warnings on MSVC by using (void*) casts
tron
parents: 4171
diff changeset
   437
	const Town* tb = *(const Town**)b;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   438
	char buf1[64];
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   439
	int r;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   440
4416
442b18840569 (svn r6169) -Codechange: Use GetString() instead of GetStringWithArgs() which should be
Darkvater
parents: 4354
diff changeset
   441
	SetDParam(0, ta->index);
4912
0f51b47cb983 (svn r6884) -Codechange: Add strict bounds checking in string formatting system.
Darkvater
parents: 4848
diff changeset
   442
	GetString(buf1, STR_TOWN, lastof(buf1));
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   443
1260
632f63689178 (svn r1764) -Add: dynamic towns, you can now have up to 64k towns (let me know when
truelight
parents: 1093
diff changeset
   444
	/* If 'b' is the same town as in the last round, use the cached value
632f63689178 (svn r1764) -Add: dynamic towns, you can now have up to 64k towns (let me know when
truelight
parents: 1093
diff changeset
   445
	 *  We do this to speed stuff up ('b' is called with the same value a lot of
4277
345e1bd9525a (svn r5907) Remove more indirection by using pointers instead of IDs. Also fix some bogus warnings on MSVC by using (void*) casts
tron
parents: 4171
diff changeset
   446
	 *  times after eachother) */
345e1bd9525a (svn r5907) Remove more indirection by using pointers instead of IDs. Also fix some bogus warnings on MSVC by using (void*) casts
tron
parents: 4171
diff changeset
   447
	if (tb != _last_town) {
345e1bd9525a (svn r5907) Remove more indirection by using pointers instead of IDs. Also fix some bogus warnings on MSVC by using (void*) casts
tron
parents: 4171
diff changeset
   448
		_last_town = tb;
4416
442b18840569 (svn r6169) -Codechange: Use GetString() instead of GetStringWithArgs() which should be
Darkvater
parents: 4354
diff changeset
   449
		SetDParam(0, tb->index);
4912
0f51b47cb983 (svn r6884) -Codechange: Add strict bounds checking in string formatting system.
Darkvater
parents: 4848
diff changeset
   450
		GetString(_bufcache, STR_TOWN, lastof(_bufcache));
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   451
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   452
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   453
	r = strcmp(buf1, _bufcache);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   454
	if (_town_sort_order & 1) r = -r;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   455
	return r;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   456
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   457
164
0cbdf3c9bde1 (svn r165) -Feature: Option to sort vehicles in vehicle-list window by different criteria. Total independent sort for all types and players. Periodic resort of list every 10 TTD days. Thank you for your graphical inspiration follow and buxo (since none of you provided any code).
darkvater
parents: 125
diff changeset
   458
static int CDECL TownPopSorter(const void *a, const void *b)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   459
{
4277
345e1bd9525a (svn r5907) Remove more indirection by using pointers instead of IDs. Also fix some bogus warnings on MSVC by using (void*) casts
tron
parents: 4171
diff changeset
   460
	const Town* ta = *(const Town**)a;
345e1bd9525a (svn r5907) Remove more indirection by using pointers instead of IDs. Also fix some bogus warnings on MSVC by using (void*) casts
tron
parents: 4171
diff changeset
   461
	const Town* tb = *(const Town**)b;
164
0cbdf3c9bde1 (svn r165) -Feature: Option to sort vehicles in vehicle-list window by different criteria. Total independent sort for all types and players. Periodic resort of list every 10 TTD days. Thank you for your graphical inspiration follow and buxo (since none of you provided any code).
darkvater
parents: 125
diff changeset
   462
	int r = ta->population - tb->population;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   463
	if (_town_sort_order & 1) r = -r;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   464
	return r;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   465
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   466
6247
7d81e3a5d803 (svn r9050) -Codechange: Foo(void) -> Foo()
rubidium
parents: 5893
diff changeset
   467
static void MakeSortedTownList()
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   468
{
2630
7206058a7e82 (svn r3172) static, const
tron
parents: 2549
diff changeset
   469
	const Town* t;
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   470
	uint n = 0;
919
544f374ee392 (svn r1407) -Codechange: changed a lot around _stations, _vehicles, _towns and _industries
truelight
parents: 893
diff changeset
   471
544f374ee392 (svn r1407) -Codechange: changed a lot around _stations, _vehicles, _towns and _industries
truelight
parents: 893
diff changeset
   472
	/* Create array for sorting */
5609
dc6a58930ba4 (svn r8066) - Codechange: MallocT(), CallocT(), ReallocT() now return the pointer to allocated memory instead of modifying the pointer given as parameter
KUDr
parents: 5587
diff changeset
   473
	_town_sort = ReallocT(_town_sort, GetMaxTownIndex() + 1);
919
544f374ee392 (svn r1407) -Codechange: changed a lot around _stations, _vehicles, _towns and _industries
truelight
parents: 893
diff changeset
   474
4346
66105d4f6e83 (svn r6047) -Codechange: FOR_ALL now _only_ loops valid items, and skips invalid ones
truelight
parents: 4344
diff changeset
   475
	FOR_ALL_TOWNS(t) _town_sort[n++] = t;
821
60524daa442c (svn r1292) -Codechange: also updated the town/industry sort-list to be uint16 compatible
truelight
parents: 758
diff changeset
   476
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   477
	_num_town_sort = n;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   478
4277
345e1bd9525a (svn r5907) Remove more indirection by using pointers instead of IDs. Also fix some bogus warnings on MSVC by using (void*) casts
tron
parents: 4171
diff changeset
   479
	_last_town = NULL; // used for "cache"
345e1bd9525a (svn r5907) Remove more indirection by using pointers instead of IDs. Also fix some bogus warnings on MSVC by using (void*) casts
tron
parents: 4171
diff changeset
   480
	qsort((void*)_town_sort, n, sizeof(_town_sort[0]), _town_sort_order & 2 ? TownPopSorter : TownNameSorter);
65
f9f866bc609c (svn r66) -Fix Station list updated on station deletion/station rename
darkvater
parents: 16
diff changeset
   481
5380
8ea58542b6e0 (svn r7565) -Codechange: Rework DEBUG functionality. Look for appropiate debugging levels to
Darkvater
parents: 5247
diff changeset
   482
	DEBUG(misc, 3, "Resorting towns list");
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   483
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   484
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   485
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   486
static void TownDirectoryWndProc(Window *w, WindowEvent *e)
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   487
{
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   488
	switch (e->event) {
8932
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   489
		case WE_PAINT: {
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   490
			if (_town_sort_dirty) {
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   491
				_town_sort_dirty = false;
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   492
				MakeSortedTownList();
174
bd79fb899824 (svn r175) -Fix: [1023771] inconsistent/missing stations in station list. Forgot to change owner-sort after changing function.
darkvater
parents: 164
diff changeset
   493
			}
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   494
8932
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   495
			SetVScrollCount(w, _num_town_sort);
8578
80b5c7d84399 (svn r12159) -Codechange: Enumify some widget magical numbers
belugas
parents: 8349
diff changeset
   496
8932
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   497
			DrawWindowWidgets(w);
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   498
			DrawSortButtonState(w, (_town_sort_order <= 1) ? TDW_SORTNAME : TDW_SORTPOPULATION, _town_sort_order & 1 ? SBS_DOWN : SBS_UP);
8578
80b5c7d84399 (svn r12159) -Codechange: Enumify some widget magical numbers
belugas
parents: 8349
diff changeset
   499
8932
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   500
			{
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   501
				int n = 0;
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   502
				uint16 i = w->vscroll.pos;
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   503
				int y = 28;
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 176
diff changeset
   504
8932
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   505
				while (i < _num_town_sort) {
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   506
					const Town* t = _town_sort[i];
867
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 821
diff changeset
   507
8932
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   508
					assert(t->xy);
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   509
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   510
					SetDParam(0, t->index);
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   511
					SetDParam(1, t->population);
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   512
					DrawString(2, y, STR_2057, TC_FROMSTRING);
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   513
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   514
					y += 10;
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   515
					i++;
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   516
					if (++n == w->vscroll.cap) break; // max number of towns in 1 window
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   517
				}
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   518
				SetDParam(0, GetWorldPopulation());
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   519
				DrawString(3, w->height - 12 + 2, STR_TOWN_POPULATION, TC_FROMSTRING);
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   520
			}
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   521
		} break;
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   522
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   523
		case WE_CLICK:
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   524
			switch (e->we.click.widget) {
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   525
				case TDW_SORTNAME: /* Sort by Name ascending/descending */
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   526
					_town_sort_order = (_town_sort_order == 0) ? 1 : 0;
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   527
					_town_sort_dirty = true;
9116
f2491d3c321b (svn r12976) -Codechange: use w->SetDirty() instead of SetWindowDirty(w) when it's certain that w != NULL.
rubidium
parents: 9111
diff changeset
   528
					w->SetDirty();
8932
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   529
					break;
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   530
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   531
				case TDW_SORTPOPULATION: /* Sort by Population ascending/descending */
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   532
					_town_sort_order = (_town_sort_order == 2) ? 3 : 2;
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   533
					_town_sort_dirty = true;
9116
f2491d3c321b (svn r12976) -Codechange: use w->SetDirty() instead of SetWindowDirty(w) when it's certain that w != NULL.
rubidium
parents: 9111
diff changeset
   534
					w->SetDirty();
8932
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   535
					break;
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   536
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   537
				case TDW_CENTERTOWN: { /* Click on Town Matrix */
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   538
					const Town* t;
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   539
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   540
					uint16 id_v = (e->we.click.pt.y - 28) / 10;
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   541
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   542
					if (id_v >= w->vscroll.cap) return; // click out of bounds
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   543
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   544
					id_v += w->vscroll.pos;
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   545
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   546
					if (id_v >= _num_town_sort) return; // click out of town bounds
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   547
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   548
					t = _town_sort[id_v];
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   549
					assert(t->xy);
9094
48004fcef409 (svn r12953) -Feature: Open a new viewport when ctrl-clicking on a 'Location' button, a town/station/industry list, or some news items.
peter1138
parents: 8994
diff changeset
   550
					if (_ctrl_pressed) {
48004fcef409 (svn r12953) -Feature: Open a new viewport when ctrl-clicking on a 'Location' button, a town/station/industry list, or some news items.
peter1138
parents: 8994
diff changeset
   551
						ShowExtraViewPortWindow(t->xy);
48004fcef409 (svn r12953) -Feature: Open a new viewport when ctrl-clicking on a 'Location' button, a town/station/industry list, or some news items.
peter1138
parents: 8994
diff changeset
   552
					} else {
48004fcef409 (svn r12953) -Feature: Open a new viewport when ctrl-clicking on a 'Location' button, a town/station/industry list, or some news items.
peter1138
parents: 8994
diff changeset
   553
						ScrollMainWindowToTile(t->xy);
48004fcef409 (svn r12953) -Feature: Open a new viewport when ctrl-clicking on a 'Location' button, a town/station/industry list, or some news items.
peter1138
parents: 8994
diff changeset
   554
					}
8932
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   555
				} break;
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   556
			}
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   557
			break;
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   558
9161
fda175383e87 (svn r13024) -Codechange: do not use WE_MOUSELOOP when WE_TICK suffices, rename WE_4 to something more descriptive and correct some (completely incorrect) comments.
rubidium
parents: 9143
diff changeset
   559
		case WE_100_TICKS:
9116
f2491d3c321b (svn r12976) -Codechange: use w->SetDirty() instead of SetWindowDirty(w) when it's certain that w != NULL.
rubidium
parents: 9111
diff changeset
   560
			w->SetDirty();
8932
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   561
			break;
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   562
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   563
		case WE_RESIZE:
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   564
			w->vscroll.cap += e->we.sizing.diff.y / 10;
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   565
			break;
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 176
diff changeset
   566
	}
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   567
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   568
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   569
static const WindowDesc _town_directory_desc = {
7341
02515d0d4ced (svn r10704) -Codechange: provide an infrastructure to have resizable windows that are smaller than the default window size.
rubidium
parents: 7058
diff changeset
   570
	WDP_AUTO, WDP_AUTO, 208, 202, 208, 202,
5893
7e431a4abebb (svn r8511) -Codechange: make WindowClass an enumerated value.
rubidium
parents: 5750
diff changeset
   571
	WC_TOWN_DIRECTORY, WC_NONE,
867
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 821
diff changeset
   572
	WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   573
	_town_directory_widgets,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   574
	TownDirectoryWndProc
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   575
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   576
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   577
6247
7d81e3a5d803 (svn r9050) -Codechange: Foo(void) -> Foo()
rubidium
parents: 5893
diff changeset
   578
void ShowTownDirectory()
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   579
{
9143
029e126e3439 (svn r13005) -Codechange: prepare AllocateWindowDescFront for subclassing of Window.
rubidium
parents: 9127
diff changeset
   580
	Window *w = AllocateWindowDescFront<Window>(&_town_directory_desc, 0);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   581
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2630
diff changeset
   582
	if (w != NULL) {
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   583
		w->vscroll.cap = 16;
867
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 821
diff changeset
   584
		w->resize.step_height = 10;
1080
23797dda4792 (svn r1581) Added a display for the total map population to the town display (Jango)
celestar
parents: 1005
diff changeset
   585
		w->resize.height = w->height - 10 * 6; // minimum of 10 items in the list, each item 10 high
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   586
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   587
}
8723
e513a23c2797 (svn r12398) -Codechange [FS#1770]: Move toolbar related code to it's own little neighbourhood. Based on a patch by Dominik.
rubidium
parents: 8717
diff changeset
   588
e513a23c2797 (svn r12398) -Codechange [FS#1770]: Move toolbar related code to it's own little neighbourhood. Based on a patch by Dominik.
rubidium
parents: 8717
diff changeset
   589
void CcBuildTown(bool success, TileIndex tile, uint32 p1, uint32 p2)
e513a23c2797 (svn r12398) -Codechange [FS#1770]: Move toolbar related code to it's own little neighbourhood. Based on a patch by Dominik.
rubidium
parents: 8717
diff changeset
   590
{
e513a23c2797 (svn r12398) -Codechange [FS#1770]: Move toolbar related code to it's own little neighbourhood. Based on a patch by Dominik.
rubidium
parents: 8717
diff changeset
   591
	if (success) {
e513a23c2797 (svn r12398) -Codechange [FS#1770]: Move toolbar related code to it's own little neighbourhood. Based on a patch by Dominik.
rubidium
parents: 8717
diff changeset
   592
		SndPlayTileFx(SND_1F_SPLAT, tile);
e513a23c2797 (svn r12398) -Codechange [FS#1770]: Move toolbar related code to it's own little neighbourhood. Based on a patch by Dominik.
rubidium
parents: 8717
diff changeset
   593
		ResetObjectToPlace();
e513a23c2797 (svn r12398) -Codechange [FS#1770]: Move toolbar related code to it's own little neighbourhood. Based on a patch by Dominik.
rubidium
parents: 8717
diff changeset
   594
	}
e513a23c2797 (svn r12398) -Codechange [FS#1770]: Move toolbar related code to it's own little neighbourhood. Based on a patch by Dominik.
rubidium
parents: 8717
diff changeset
   595
}
e513a23c2797 (svn r12398) -Codechange [FS#1770]: Move toolbar related code to it's own little neighbourhood. Based on a patch by Dominik.
rubidium
parents: 8717
diff changeset
   596
e513a23c2797 (svn r12398) -Codechange [FS#1770]: Move toolbar related code to it's own little neighbourhood. Based on a patch by Dominik.
rubidium
parents: 8717
diff changeset
   597
static void PlaceProc_Town(TileIndex tile)
e513a23c2797 (svn r12398) -Codechange [FS#1770]: Move toolbar related code to it's own little neighbourhood. Based on a patch by Dominik.
rubidium
parents: 8717
diff changeset
   598
{
e513a23c2797 (svn r12398) -Codechange [FS#1770]: Move toolbar related code to it's own little neighbourhood. Based on a patch by Dominik.
rubidium
parents: 8717
diff changeset
   599
	uint32 size = min(_scengen_town_size, (int)TSM_CITY);
e513a23c2797 (svn r12398) -Codechange [FS#1770]: Move toolbar related code to it's own little neighbourhood. Based on a patch by Dominik.
rubidium
parents: 8717
diff changeset
   600
	uint32 mode = _scengen_town_size > TSM_CITY ? TSM_CITY : TSM_FIXED;
e513a23c2797 (svn r12398) -Codechange [FS#1770]: Move toolbar related code to it's own little neighbourhood. Based on a patch by Dominik.
rubidium
parents: 8717
diff changeset
   601
	DoCommandP(tile, size, mode, CcBuildTown, CMD_BUILD_TOWN | CMD_MSG(STR_0236_CAN_T_BUILD_TOWN_HERE));
e513a23c2797 (svn r12398) -Codechange [FS#1770]: Move toolbar related code to it's own little neighbourhood. Based on a patch by Dominik.
rubidium
parents: 8717
diff changeset
   602
}
e513a23c2797 (svn r12398) -Codechange [FS#1770]: Move toolbar related code to it's own little neighbourhood. Based on a patch by Dominik.
rubidium
parents: 8717
diff changeset
   603
8933
c1f075679c2e (svn r12705) -Codechange: enumification of some more widgets
belugas
parents: 8932
diff changeset
   604
enum TownScenarioEditorWidget {
c1f075679c2e (svn r12705) -Codechange: enumification of some more widgets
belugas
parents: 8932
diff changeset
   605
	TSEW_NEWTOWN = 4,
c1f075679c2e (svn r12705) -Codechange: enumification of some more widgets
belugas
parents: 8932
diff changeset
   606
	TSEW_RANDOMTOWN,
c1f075679c2e (svn r12705) -Codechange: enumification of some more widgets
belugas
parents: 8932
diff changeset
   607
	TSEW_MANYRANDOMTOWNS,
c1f075679c2e (svn r12705) -Codechange: enumification of some more widgets
belugas
parents: 8932
diff changeset
   608
	TSEW_SMALLTOWN,
c1f075679c2e (svn r12705) -Codechange: enumification of some more widgets
belugas
parents: 8932
diff changeset
   609
	TSEW_MEDIUMTOWN,
c1f075679c2e (svn r12705) -Codechange: enumification of some more widgets
belugas
parents: 8932
diff changeset
   610
	TSEW_LARGETOWN,
c1f075679c2e (svn r12705) -Codechange: enumification of some more widgets
belugas
parents: 8932
diff changeset
   611
	TSEW_CITY,
c1f075679c2e (svn r12705) -Codechange: enumification of some more widgets
belugas
parents: 8932
diff changeset
   612
};
c1f075679c2e (svn r12705) -Codechange: enumification of some more widgets
belugas
parents: 8932
diff changeset
   613
8723
e513a23c2797 (svn r12398) -Codechange [FS#1770]: Move toolbar related code to it's own little neighbourhood. Based on a patch by Dominik.
rubidium
parents: 8717
diff changeset
   614
static const Widget _scen_edit_town_gen_widgets[] = {
e513a23c2797 (svn r12398) -Codechange [FS#1770]: Move toolbar related code to it's own little neighbourhood. Based on a patch by Dominik.
rubidium
parents: 8717
diff changeset
   615
{   WWT_CLOSEBOX,   RESIZE_NONE,     7,     0,    10,     0,    13, STR_00C5,                 STR_018B_CLOSE_WINDOW},
e513a23c2797 (svn r12398) -Codechange [FS#1770]: Move toolbar related code to it's own little neighbourhood. Based on a patch by Dominik.
rubidium
parents: 8717
diff changeset
   616
{    WWT_CAPTION,   RESIZE_NONE,     7,    11,   147,     0,    13, STR_0233_TOWN_GENERATION, STR_018C_WINDOW_TITLE_DRAG_THIS},
e513a23c2797 (svn r12398) -Codechange [FS#1770]: Move toolbar related code to it's own little neighbourhood. Based on a patch by Dominik.
rubidium
parents: 8717
diff changeset
   617
{  WWT_STICKYBOX,   RESIZE_NONE,     7,   148,   159,     0,    13, 0x0,                      STR_STICKY_BUTTON},
e513a23c2797 (svn r12398) -Codechange [FS#1770]: Move toolbar related code to it's own little neighbourhood. Based on a patch by Dominik.
rubidium
parents: 8717
diff changeset
   618
{      WWT_PANEL,   RESIZE_NONE,     7,     0,   159,    14,    94, 0x0,                      STR_NULL},
e513a23c2797 (svn r12398) -Codechange [FS#1770]: Move toolbar related code to it's own little neighbourhood. Based on a patch by Dominik.
rubidium
parents: 8717
diff changeset
   619
{    WWT_TEXTBTN,   RESIZE_NONE,    14,     2,   157,    16,    27, STR_0234_NEW_TOWN,        STR_0235_CONSTRUCT_NEW_TOWN},
e513a23c2797 (svn r12398) -Codechange [FS#1770]: Move toolbar related code to it's own little neighbourhood. Based on a patch by Dominik.
rubidium
parents: 8717
diff changeset
   620
{    WWT_TEXTBTN,   RESIZE_NONE,    14,     2,   157,    29,    40, STR_023D_RANDOM_TOWN,     STR_023E_BUILD_TOWN_IN_RANDOM_LOCATION},
e513a23c2797 (svn r12398) -Codechange [FS#1770]: Move toolbar related code to it's own little neighbourhood. Based on a patch by Dominik.
rubidium
parents: 8717
diff changeset
   621
{    WWT_TEXTBTN,   RESIZE_NONE,    14,     2,   157,    42,    53, STR_MANY_RANDOM_TOWNS,    STR_RANDOM_TOWNS_TIP},
e513a23c2797 (svn r12398) -Codechange [FS#1770]: Move toolbar related code to it's own little neighbourhood. Based on a patch by Dominik.
rubidium
parents: 8717
diff changeset
   622
{    WWT_TEXTBTN,   RESIZE_NONE,    14,     2,    53,    68,    79, STR_02A1_SMALL,           STR_02A4_SELECT_TOWN_SIZE},
e513a23c2797 (svn r12398) -Codechange [FS#1770]: Move toolbar related code to it's own little neighbourhood. Based on a patch by Dominik.
rubidium
parents: 8717
diff changeset
   623
{    WWT_TEXTBTN,   RESIZE_NONE,    14,    54,   105,    68,    79, STR_02A2_MEDIUM,          STR_02A4_SELECT_TOWN_SIZE},
e513a23c2797 (svn r12398) -Codechange [FS#1770]: Move toolbar related code to it's own little neighbourhood. Based on a patch by Dominik.
rubidium
parents: 8717
diff changeset
   624
{    WWT_TEXTBTN,   RESIZE_NONE,    14,   106,   157,    68,    79, STR_02A3_LARGE,           STR_02A4_SELECT_TOWN_SIZE},
e513a23c2797 (svn r12398) -Codechange [FS#1770]: Move toolbar related code to it's own little neighbourhood. Based on a patch by Dominik.
rubidium
parents: 8717
diff changeset
   625
{    WWT_TEXTBTN,   RESIZE_NONE,    14,     2,   157,    81,    92, STR_SCENARIO_EDITOR_CITY, STR_02A4_SELECT_TOWN_SIZE},
e513a23c2797 (svn r12398) -Codechange [FS#1770]: Move toolbar related code to it's own little neighbourhood. Based on a patch by Dominik.
rubidium
parents: 8717
diff changeset
   626
{      WWT_LABEL,   RESIZE_NONE,     7,     0,   147,    54,    67, STR_02A5_TOWN_SIZE,       STR_NULL},
e513a23c2797 (svn r12398) -Codechange [FS#1770]: Move toolbar related code to it's own little neighbourhood. Based on a patch by Dominik.
rubidium
parents: 8717
diff changeset
   627
{   WIDGETS_END},
e513a23c2797 (svn r12398) -Codechange [FS#1770]: Move toolbar related code to it's own little neighbourhood. Based on a patch by Dominik.
rubidium
parents: 8717
diff changeset
   628
};
e513a23c2797 (svn r12398) -Codechange [FS#1770]: Move toolbar related code to it's own little neighbourhood. Based on a patch by Dominik.
rubidium
parents: 8717
diff changeset
   629
e513a23c2797 (svn r12398) -Codechange [FS#1770]: Move toolbar related code to it's own little neighbourhood. Based on a patch by Dominik.
rubidium
parents: 8717
diff changeset
   630
static void ScenEditTownGenWndProc(Window *w, WindowEvent *e)
e513a23c2797 (svn r12398) -Codechange [FS#1770]: Move toolbar related code to it's own little neighbourhood. Based on a patch by Dominik.
rubidium
parents: 8717
diff changeset
   631
{
e513a23c2797 (svn r12398) -Codechange [FS#1770]: Move toolbar related code to it's own little neighbourhood. Based on a patch by Dominik.
rubidium
parents: 8717
diff changeset
   632
	switch (e->event) {
8932
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   633
		case WE_PAINT:
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   634
			DrawWindowWidgets(w);
8723
e513a23c2797 (svn r12398) -Codechange [FS#1770]: Move toolbar related code to it's own little neighbourhood. Based on a patch by Dominik.
rubidium
parents: 8717
diff changeset
   635
			break;
e513a23c2797 (svn r12398) -Codechange [FS#1770]: Move toolbar related code to it's own little neighbourhood. Based on a patch by Dominik.
rubidium
parents: 8717
diff changeset
   636
8932
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   637
		case WE_CREATE:
8933
c1f075679c2e (svn r12705) -Codechange: enumification of some more widgets
belugas
parents: 8932
diff changeset
   638
			w->LowerWidget(_scengen_town_size + TSEW_SMALLTOWN);
8723
e513a23c2797 (svn r12398) -Codechange [FS#1770]: Move toolbar related code to it's own little neighbourhood. Based on a patch by Dominik.
rubidium
parents: 8717
diff changeset
   639
			break;
e513a23c2797 (svn r12398) -Codechange [FS#1770]: Move toolbar related code to it's own little neighbourhood. Based on a patch by Dominik.
rubidium
parents: 8717
diff changeset
   640
8932
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   641
		case WE_CLICK:
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   642
			switch (e->we.click.widget) {
8933
c1f075679c2e (svn r12705) -Codechange: enumification of some more widgets
belugas
parents: 8932
diff changeset
   643
				case TSEW_NEWTOWN:
c1f075679c2e (svn r12705) -Codechange: enumification of some more widgets
belugas
parents: 8932
diff changeset
   644
					HandlePlacePushButton(w, TSEW_NEWTOWN, SPR_CURSOR_TOWN, VHM_RECT, PlaceProc_Town);
8932
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   645
					break;
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   646
8933
c1f075679c2e (svn r12705) -Codechange: enumification of some more widgets
belugas
parents: 8932
diff changeset
   647
				case TSEW_RANDOMTOWN: {
8932
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   648
					Town *t;
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   649
					uint size = min(_scengen_town_size, (int)TSM_CITY);
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   650
					TownSizeMode mode = _scengen_town_size > TSM_CITY ? TSM_CITY : TSM_FIXED;
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   651
8933
c1f075679c2e (svn r12705) -Codechange: enumification of some more widgets
belugas
parents: 8932
diff changeset
   652
					w->HandleButtonClick(TSEW_RANDOMTOWN);
8932
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   653
					_generating_world = true;
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   654
					t = CreateRandomTown(20, mode, size);
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   655
					_generating_world = false;
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   656
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   657
					if (t == NULL) {
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   658
						ShowErrorMessage(STR_NO_SPACE_FOR_TOWN, STR_CANNOT_GENERATE_TOWN, 0, 0);
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   659
					} else {
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   660
						ScrollMainWindowToTile(t->xy);
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   661
					}
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   662
				} break;
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   663
8933
c1f075679c2e (svn r12705) -Codechange: enumification of some more widgets
belugas
parents: 8932
diff changeset
   664
				case TSEW_MANYRANDOMTOWNS:
c1f075679c2e (svn r12705) -Codechange: enumification of some more widgets
belugas
parents: 8932
diff changeset
   665
					w->HandleButtonClick(TSEW_MANYRANDOMTOWNS);
8932
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   666
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   667
					_generating_world = true;
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   668
					if (!GenerateTowns()) ShowErrorMessage(STR_NO_SPACE_FOR_TOWN, STR_CANNOT_GENERATE_TOWN, 0, 0);
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   669
					_generating_world = false;
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   670
					break;
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   671
8933
c1f075679c2e (svn r12705) -Codechange: enumification of some more widgets
belugas
parents: 8932
diff changeset
   672
				case TSEW_SMALLTOWN: case TSEW_MEDIUMTOWN: case TSEW_LARGETOWN: case TSEW_CITY:
c1f075679c2e (svn r12705) -Codechange: enumification of some more widgets
belugas
parents: 8932
diff changeset
   673
					w->RaiseWidget(_scengen_town_size + TSEW_SMALLTOWN);
c1f075679c2e (svn r12705) -Codechange: enumification of some more widgets
belugas
parents: 8932
diff changeset
   674
					_scengen_town_size = e->we.click.widget - TSEW_SMALLTOWN;
c1f075679c2e (svn r12705) -Codechange: enumification of some more widgets
belugas
parents: 8932
diff changeset
   675
					w->LowerWidget(_scengen_town_size + TSEW_SMALLTOWN);
9116
f2491d3c321b (svn r12976) -Codechange: use w->SetDirty() instead of SetWindowDirty(w) when it's certain that w != NULL.
rubidium
parents: 9111
diff changeset
   676
					w->SetDirty();
8932
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   677
					break;
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   678
			} break;
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   679
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   680
		case WE_TIMEOUT:
8933
c1f075679c2e (svn r12705) -Codechange: enumification of some more widgets
belugas
parents: 8932
diff changeset
   681
			w->RaiseWidget(TSEW_RANDOMTOWN);
c1f075679c2e (svn r12705) -Codechange: enumification of some more widgets
belugas
parents: 8932
diff changeset
   682
			w->RaiseWidget(TSEW_MANYRANDOMTOWNS);
9116
f2491d3c321b (svn r12976) -Codechange: use w->SetDirty() instead of SetWindowDirty(w) when it's certain that w != NULL.
rubidium
parents: 9111
diff changeset
   683
			w->SetDirty();
8723
e513a23c2797 (svn r12398) -Codechange [FS#1770]: Move toolbar related code to it's own little neighbourhood. Based on a patch by Dominik.
rubidium
parents: 8717
diff changeset
   684
			break;
e513a23c2797 (svn r12398) -Codechange [FS#1770]: Move toolbar related code to it's own little neighbourhood. Based on a patch by Dominik.
rubidium
parents: 8717
diff changeset
   685
8932
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   686
		case WE_PLACE_OBJ:
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   687
			_place_proc(e->we.place.tile);
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   688
			break;
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   689
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   690
		case WE_ABORT_PLACE_OBJ:
c1650d1cdc31 (svn r12704) -Codechange: code style cleanup, mostly switch case alignment
belugas
parents: 8723
diff changeset
   691
			w->RaiseButtons();
8933
c1f075679c2e (svn r12705) -Codechange: enumification of some more widgets
belugas
parents: 8932
diff changeset
   692
			w->LowerWidget(_scengen_town_size + TSEW_SMALLTOWN);
9116
f2491d3c321b (svn r12976) -Codechange: use w->SetDirty() instead of SetWindowDirty(w) when it's certain that w != NULL.
rubidium
parents: 9111
diff changeset
   693
			w->SetDirty();
8723
e513a23c2797 (svn r12398) -Codechange [FS#1770]: Move toolbar related code to it's own little neighbourhood. Based on a patch by Dominik.
rubidium
parents: 8717
diff changeset
   694
			break;
e513a23c2797 (svn r12398) -Codechange [FS#1770]: Move toolbar related code to it's own little neighbourhood. Based on a patch by Dominik.
rubidium
parents: 8717
diff changeset
   695
	}
e513a23c2797 (svn r12398) -Codechange [FS#1770]: Move toolbar related code to it's own little neighbourhood. Based on a patch by Dominik.
rubidium
parents: 8717
diff changeset
   696
}
e513a23c2797 (svn r12398) -Codechange [FS#1770]: Move toolbar related code to it's own little neighbourhood. Based on a patch by Dominik.
rubidium
parents: 8717
diff changeset
   697
e513a23c2797 (svn r12398) -Codechange [FS#1770]: Move toolbar related code to it's own little neighbourhood. Based on a patch by Dominik.
rubidium
parents: 8717
diff changeset
   698
static const WindowDesc _scen_edit_town_gen_desc = {
e513a23c2797 (svn r12398) -Codechange [FS#1770]: Move toolbar related code to it's own little neighbourhood. Based on a patch by Dominik.
rubidium
parents: 8717
diff changeset
   699
	WDP_AUTO, WDP_AUTO, 160, 95, 160, 95,
e513a23c2797 (svn r12398) -Codechange [FS#1770]: Move toolbar related code to it's own little neighbourhood. Based on a patch by Dominik.
rubidium
parents: 8717
diff changeset
   700
	WC_SCEN_TOWN_GEN, WC_NONE,
e513a23c2797 (svn r12398) -Codechange [FS#1770]: Move toolbar related code to it's own little neighbourhood. Based on a patch by Dominik.
rubidium
parents: 8717
diff changeset
   701
	WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_STICKY_BUTTON,
e513a23c2797 (svn r12398) -Codechange [FS#1770]: Move toolbar related code to it's own little neighbourhood. Based on a patch by Dominik.
rubidium
parents: 8717
diff changeset
   702
	_scen_edit_town_gen_widgets,
e513a23c2797 (svn r12398) -Codechange [FS#1770]: Move toolbar related code to it's own little neighbourhood. Based on a patch by Dominik.
rubidium
parents: 8717
diff changeset
   703
	ScenEditTownGenWndProc,
e513a23c2797 (svn r12398) -Codechange [FS#1770]: Move toolbar related code to it's own little neighbourhood. Based on a patch by Dominik.
rubidium
parents: 8717
diff changeset
   704
};
e513a23c2797 (svn r12398) -Codechange [FS#1770]: Move toolbar related code to it's own little neighbourhood. Based on a patch by Dominik.
rubidium
parents: 8717
diff changeset
   705
e513a23c2797 (svn r12398) -Codechange [FS#1770]: Move toolbar related code to it's own little neighbourhood. Based on a patch by Dominik.
rubidium
parents: 8717
diff changeset
   706
void ShowBuildTownWindow()
e513a23c2797 (svn r12398) -Codechange [FS#1770]: Move toolbar related code to it's own little neighbourhood. Based on a patch by Dominik.
rubidium
parents: 8717
diff changeset
   707
{
e513a23c2797 (svn r12398) -Codechange [FS#1770]: Move toolbar related code to it's own little neighbourhood. Based on a patch by Dominik.
rubidium
parents: 8717
diff changeset
   708
	if (_game_mode != GM_EDITOR && !IsValidPlayer(_current_player)) return;
9143
029e126e3439 (svn r13005) -Codechange: prepare AllocateWindowDescFront for subclassing of Window.
rubidium
parents: 9127
diff changeset
   709
	AllocateWindowDescFront<Window>(&_scen_edit_town_gen_desc, 0);
8723
e513a23c2797 (svn r12398) -Codechange [FS#1770]: Move toolbar related code to it's own little neighbourhood. Based on a patch by Dominik.
rubidium
parents: 8717
diff changeset
   710
}
e513a23c2797 (svn r12398) -Codechange [FS#1770]: Move toolbar related code to it's own little neighbourhood. Based on a patch by Dominik.
rubidium
parents: 8717
diff changeset
   711