2005-07-24 14:12:37 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
2007-04-04 03:21:14 +00:00
|
|
|
/** @file town_gui.cpp */
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
#include "stdafx.h"
|
2005-06-02 19:30:21 +00:00
|
|
|
#include "openttd.h"
|
2005-02-05 15:58:59 +00:00
|
|
|
#include "debug.h"
|
2004-08-09 17:04:08 +00:00
|
|
|
#include "town.h"
|
2008-01-09 09:45:45 +00:00
|
|
|
#include "viewport_func.h"
|
|
|
|
#include "gfx_func.h"
|
2004-08-09 17:04:08 +00:00
|
|
|
#include "gui.h"
|
2007-12-19 20:45:46 +00:00
|
|
|
#include "window_gui.h"
|
|
|
|
#include "textbuf_gui.h"
|
2007-12-21 21:50:46 +00:00
|
|
|
#include "command_func.h"
|
2008-01-12 14:10:35 +00:00
|
|
|
#include "player_func.h"
|
|
|
|
#include "player_base.h"
|
|
|
|
#include "player_gui.h"
|
2007-01-02 17:34:03 +00:00
|
|
|
#include "network/network.h"
|
2005-07-21 22:15:02 +00:00
|
|
|
#include "variables.h"
|
2007-12-21 19:49:27 +00:00
|
|
|
#include "strings_func.h"
|
2008-03-23 07:35:29 +00:00
|
|
|
#include "sound_func.h"
|
2007-12-21 21:50:46 +00:00
|
|
|
#include "economy_func.h"
|
2007-12-25 09:48:53 +00:00
|
|
|
#include "core/alloc_func.hpp"
|
2008-01-13 14:37:30 +00:00
|
|
|
#include "settings_type.h"
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-01-13 01:21:35 +00:00
|
|
|
#include "table/sprites.h"
|
|
|
|
#include "table/strings.h"
|
|
|
|
|
2008-03-23 07:35:29 +00:00
|
|
|
extern bool GenerateTowns();
|
|
|
|
static int _scengen_town_size = 1; // depress medium-sized towns per default
|
|
|
|
|
2007-09-30 17:38:42 +00:00
|
|
|
enum TownAuthorityWidget {
|
|
|
|
TWA_CLOSEBOX = 0,
|
|
|
|
TWA_CAPTION,
|
|
|
|
TWA_RATING_INFO,
|
|
|
|
TWA_COMMAND_LIST,
|
|
|
|
TWA_SCROLLBAR,
|
|
|
|
TWA_ACTION_INFO,
|
|
|
|
TWA_EXECUTE,
|
|
|
|
};
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
static const Widget _town_authority_widgets[] = {
|
2007-09-30 17:38:42 +00:00
|
|
|
{ WWT_CLOSEBOX, RESIZE_NONE, 13, 0, 10, 0, 13, STR_00C5, STR_018B_CLOSE_WINDOW}, // TWA_CLOSEBOX
|
|
|
|
{ WWT_CAPTION, RESIZE_NONE, 13, 11, 316, 0, 13, STR_2022_LOCAL_AUTHORITY, STR_018C_WINDOW_TITLE_DRAG_THIS}, // TWA_CAPTION
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 13, 0, 316, 14, 105, 0x0, STR_NULL}, // TWA_RATING_INFO
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 13, 0, 304, 106, 157, 0x0, STR_2043_LIST_OF_THINGS_TO_DO_AT}, // TWA_COMMAND_LIST
|
|
|
|
{ WWT_SCROLLBAR, RESIZE_NONE, 13, 305, 316, 106, 157, 0x0, STR_0190_SCROLL_BAR_SCROLLS_LIST}, // TWA_SCROLLBAR
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 13, 0, 316, 158, 209, 0x0, STR_NULL}, // TWA_ACTION_INFO
|
|
|
|
{ WWT_PUSHTXTBTN, RESIZE_NONE, 13, 0, 316, 210, 221, STR_2042_DO_IT, STR_2044_CARRY_OUT_THE_HIGHLIGHTED}, // TWA_EXECUTE
|
2004-09-07 21:48:09 +00:00
|
|
|
{ WIDGETS_END},
|
2004-08-09 17:04:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
extern const byte _town_action_costs[8];
|
|
|
|
|
2007-09-30 17:38:42 +00:00
|
|
|
enum TownActions {
|
|
|
|
TACT_NONE = 0x00,
|
|
|
|
|
|
|
|
TACT_ADVERTISE_SMALL = 0x01,
|
|
|
|
TACT_ADVERTISE_MEDIUM = 0x02,
|
|
|
|
TACT_ADVERTISE_LARGE = 0x04,
|
|
|
|
TACT_ROAD_REBUILD = 0x08,
|
|
|
|
TACT_BUILD_STATUE = 0x10,
|
|
|
|
TACT_FOUND_BUILDINGS = 0x20,
|
|
|
|
TACT_BUY_RIGHTS = 0x40,
|
|
|
|
TACT_BRIBE = 0x80,
|
|
|
|
|
|
|
|
TACT_ADVERTISE = TACT_ADVERTISE_SMALL | TACT_ADVERTISE_MEDIUM | TACT_ADVERTISE_LARGE,
|
|
|
|
TACT_CONSTRUCTION = TACT_ROAD_REBUILD | TACT_BUILD_STATUE | TACT_FOUND_BUILDINGS,
|
|
|
|
TACT_FUNDS = TACT_BUY_RIGHTS | TACT_BRIBE,
|
|
|
|
TACT_ALL = TACT_ADVERTISE | TACT_CONSTRUCTION | TACT_FUNDS,
|
|
|
|
};
|
|
|
|
|
|
|
|
DECLARE_ENUM_AS_BIT_SET(TownActions);
|
|
|
|
|
2005-05-12 00:11:37 +00:00
|
|
|
/** Get a list of available actions to do at a town.
|
2007-04-04 03:21:14 +00:00
|
|
|
* @param nump if not NULL add put the number of available actions in it
|
2005-05-12 00:11:37 +00:00
|
|
|
* @param pid the player that is querying the town
|
2007-04-04 03:21:14 +00:00
|
|
|
* @param t the town that is queried
|
2005-05-12 00:11:37 +00:00
|
|
|
* @return bitmasked value of enabled actions
|
|
|
|
*/
|
|
|
|
uint GetMaskOfTownActions(int *nump, PlayerID pid, const Town *t)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2005-05-12 00:11:37 +00:00
|
|
|
int num = 0;
|
2007-09-30 17:38:42 +00:00
|
|
|
TownActions buttons = TACT_NONE;
|
|
|
|
|
|
|
|
/* Spectators and unwanted have no options */
|
|
|
|
if (pid != PLAYER_SPECTATOR && !(_patches.bribe && t->unwanted[pid])) {
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-04-04 03:21:14 +00:00
|
|
|
/* Things worth more than this are not shown */
|
2007-09-30 17:38:42 +00:00
|
|
|
Money avail = GetPlayer(pid)->player_money + _price.station_value * 200;
|
|
|
|
Money ref = _price.build_industry >> 8;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-09-30 17:38:42 +00:00
|
|
|
/* Check the action bits for validity and
|
|
|
|
* if they are valid add them */
|
|
|
|
for (uint i = 0; i != lengthof(_town_action_costs); i++) {
|
|
|
|
const TownActions cur = (TownActions)(1 << i);
|
|
|
|
|
|
|
|
/* Is the player not able to bribe ? */
|
|
|
|
if (cur == TACT_BRIBE && (!_patches.bribe || t->ratings[pid] >= RATING_BRIBE_MAXIMUM))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* Is the player not able to buy exclusive rights ? */
|
|
|
|
if (cur == TACT_BUY_RIGHTS && !_patches.exclusive_rights)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* Is the player not able to build a statue ? */
|
2007-11-19 21:02:30 +00:00
|
|
|
if (cur == TACT_BUILD_STATUE && HasBit(t->statues, pid))
|
2007-09-30 17:38:42 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
if (avail >= _town_action_costs[i] * ref) {
|
|
|
|
buttons |= cur;
|
2004-08-09 17:04:08 +00:00
|
|
|
num++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-05-12 00:11:37 +00:00
|
|
|
if (nump != NULL) *nump = num;
|
2004-08-09 17:04:08 +00:00
|
|
|
return buttons;
|
|
|
|
}
|
|
|
|
|
2007-11-28 21:59:06 +00:00
|
|
|
/**
|
|
|
|
* Get the position of the Nth set bit.
|
|
|
|
*
|
|
|
|
* If there is no Nth bit set return -1
|
|
|
|
*
|
|
|
|
* @param bits The value to search in
|
|
|
|
* @param n The Nth set bit from which we want to know the position
|
|
|
|
* @return The position of the Nth set bit
|
|
|
|
*/
|
2004-08-09 17:04:08 +00:00
|
|
|
static int GetNthSetBit(uint32 bits, int n)
|
|
|
|
{
|
|
|
|
if (n >= 0) {
|
2007-12-03 09:19:19 +00:00
|
|
|
uint i;
|
|
|
|
FOR_EACH_SET_BIT(i, bits) {
|
|
|
|
n--;
|
2007-11-28 21:59:06 +00:00
|
|
|
if (n < 0) return i;
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void TownAuthorityWndProc(Window *w, WindowEvent *e)
|
|
|
|
{
|
2005-05-12 00:11:37 +00:00
|
|
|
switch (e->event) {
|
2008-04-14 17:06:36 +00:00
|
|
|
case WE_PAINT: {
|
|
|
|
const Town *t = GetTown(w->window_number);
|
|
|
|
int numact;
|
|
|
|
uint buttons = GetMaskOfTownActions(&numact, _local_player, t);
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2008-04-14 17:06:36 +00:00
|
|
|
SetVScrollCount(w, numact + 1);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-04-18 04:37:06 +00:00
|
|
|
if (WP(w, def_d).data_1 != -1 && !HasBit(buttons, WP(w, def_d).data_1))
|
2008-04-14 17:06:36 +00:00
|
|
|
WP(w, def_d).data_1 = -1;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-04-14 17:06:36 +00:00
|
|
|
w->SetWidgetDisabledState(6, WP(w, def_d).data_1 == -1);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-04-14 17:06:36 +00:00
|
|
|
{
|
|
|
|
int y;
|
|
|
|
const Player *p;
|
|
|
|
int r;
|
|
|
|
StringID str;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-04-14 17:06:36 +00:00
|
|
|
SetDParam(0, w->window_number);
|
|
|
|
DrawWindowWidgets(w);
|
|
|
|
|
|
|
|
DrawString(2, 15, STR_2023_TRANSPORT_COMPANY_RATINGS, TC_FROMSTRING);
|
|
|
|
|
|
|
|
/* Draw list of players */
|
|
|
|
y = 25;
|
|
|
|
FOR_ALL_PLAYERS(p) {
|
|
|
|
if (p->is_active && (HasBit(t->have_ratings, p->index) || t->exclusivity == p->index)) {
|
|
|
|
DrawPlayerIcon(p->index, 2, y);
|
|
|
|
|
|
|
|
SetDParam(0, p->index);
|
|
|
|
SetDParam(1, p->index);
|
|
|
|
|
|
|
|
r = t->ratings[p->index];
|
|
|
|
(str = STR_3035_APPALLING, r <= RATING_APPALLING) || // Apalling
|
|
|
|
(str++, r <= RATING_VERYPOOR) || // Very Poor
|
|
|
|
(str++, r <= RATING_POOR) || // Poor
|
|
|
|
(str++, r <= RATING_MEDIOCRE) || // Mediocore
|
|
|
|
(str++, r <= RATING_GOOD) || // Good
|
|
|
|
(str++, r <= RATING_VERYGOOD) || // Very Good
|
|
|
|
(str++, r <= RATING_EXCELLENT) || // Excellent
|
|
|
|
(str++, true); // Outstanding
|
|
|
|
|
|
|
|
SetDParam(2, str);
|
|
|
|
if (t->exclusivity == p->index) { // red icon for player with exclusive rights
|
|
|
|
DrawSprite(SPR_BLOT, PALETTE_TO_RED, 18, y);
|
|
|
|
}
|
|
|
|
|
|
|
|
DrawString(28, y, STR_2024, TC_FROMSTRING);
|
|
|
|
y += 10;
|
2007-01-14 19:57:49 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-04-14 17:06:36 +00:00
|
|
|
/* Draw actions list */
|
|
|
|
{
|
|
|
|
int y = 107, i;
|
|
|
|
int pos = w->vscroll.pos;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-04-14 17:06:36 +00:00
|
|
|
if (--pos < 0) {
|
|
|
|
DrawString(2, y, STR_2045_ACTIONS_AVAILABLE, TC_FROMSTRING);
|
2004-08-09 17:04:08 +00:00
|
|
|
y += 10;
|
|
|
|
}
|
2008-04-14 17:06:36 +00:00
|
|
|
|
|
|
|
for (i = 0; buttons; i++, buttons >>= 1) {
|
|
|
|
if (pos <= -5) break; ///< Draw only the 5 fitting lines
|
|
|
|
|
|
|
|
if ((buttons & 1) && --pos < 0) {
|
|
|
|
DrawString(3, y, STR_2046_SMALL_ADVERTISING_CAMPAIGN + i, TC_ORANGE);
|
|
|
|
y += 10;
|
|
|
|
}
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2004-08-23 21:12:51 +00:00
|
|
|
|
2008-04-14 17:06:36 +00:00
|
|
|
{
|
|
|
|
int i = WP(w, def_d).data_1;
|
2005-11-14 19:48:04 +00:00
|
|
|
|
2008-04-14 17:06:36 +00:00
|
|
|
if (i != -1) {
|
|
|
|
SetDParam(1, (_price.build_industry >> 8) * _town_action_costs[i]);
|
|
|
|
SetDParam(0, STR_2046_SMALL_ADVERTISING_CAMPAIGN + i);
|
|
|
|
DrawStringMultiLine(2, 159, STR_204D_INITIATE_A_SMALL_LOCAL + i, 313);
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2008-04-14 17:06:36 +00:00
|
|
|
} break;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-04-14 17:06:36 +00:00
|
|
|
case WE_DOUBLE_CLICK:
|
|
|
|
case WE_CLICK:
|
|
|
|
switch (e->we.click.widget) {
|
|
|
|
case TWA_COMMAND_LIST: {
|
|
|
|
const Town *t = GetTown(w->window_number);
|
|
|
|
int y = (e->we.click.pt.y - 0x6B) / 10;
|
2005-11-14 19:48:04 +00:00
|
|
|
|
2008-04-14 17:06:36 +00:00
|
|
|
if (!IsInsideMM(y, 0, 5)) return;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-04-14 17:06:36 +00:00
|
|
|
y = GetNthSetBit(GetMaskOfTownActions(NULL, _local_player, t), y + w->vscroll.pos - 1);
|
|
|
|
if (y >= 0) {
|
|
|
|
WP(w, def_d).data_1 = y;
|
|
|
|
SetWindowDirty(w);
|
|
|
|
}
|
|
|
|
/* Fall through to clicking in case we are double-clicked */
|
|
|
|
if (e->event != WE_DOUBLE_CLICK || y < 0) break;
|
2008-02-16 03:12:57 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-04-14 17:06:36 +00:00
|
|
|
case TWA_EXECUTE:
|
|
|
|
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));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-04-14 17:06:36 +00:00
|
|
|
case WE_4:
|
|
|
|
SetWindowDirty(w);
|
|
|
|
break;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static const WindowDesc _town_authority_desc = {
|
2007-07-27 12:49:04 +00:00
|
|
|
WDP_AUTO, WDP_AUTO, 317, 222, 317, 222,
|
2007-02-01 15:49:12 +00:00
|
|
|
WC_TOWN_AUTHORITY, WC_NONE,
|
2004-08-09 17:04:08 +00:00
|
|
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS,
|
|
|
|
_town_authority_widgets,
|
|
|
|
TownAuthorityWndProc
|
|
|
|
};
|
|
|
|
|
2004-11-14 19:44:06 +00:00
|
|
|
static void ShowTownAuthorityWindow(uint town)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2006-07-26 03:33:12 +00:00
|
|
|
Window *w = AllocateWindowDescFront(&_town_authority_desc, town);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2005-11-14 19:48:04 +00:00
|
|
|
if (w != NULL) {
|
2004-08-09 17:04:08 +00:00
|
|
|
w->vscroll.cap = 5;
|
2007-12-16 10:54:08 +00:00
|
|
|
WP(w, def_d).data_1 = -1;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-04-14 17:50:15 +00:00
|
|
|
|
|
|
|
enum TownViewWidget {
|
|
|
|
TVW_CAPTION = 1,
|
2008-04-16 03:05:56 +00:00
|
|
|
TVW_STICKY,
|
2008-04-14 17:50:15 +00:00
|
|
|
TVW_CENTERVIEW = 6,
|
|
|
|
TVW_SHOWAUTORITY,
|
|
|
|
TVW_CHANGENAME,
|
|
|
|
TVW_EXPAND,
|
|
|
|
TVW_DELETE,
|
|
|
|
};
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
static void TownViewWndProc(Window *w, WindowEvent *e)
|
|
|
|
{
|
2005-01-06 22:31:58 +00:00
|
|
|
Town *t = GetTown(w->window_number);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2005-11-14 19:48:04 +00:00
|
|
|
switch (e->event) {
|
2008-04-16 03:05:56 +00:00
|
|
|
case WE_CREATE: {
|
|
|
|
bool ingame = _game_mode != GM_EDITOR;
|
2008-04-14 17:50:15 +00:00
|
|
|
if (t->larger_town) w->widget[TVW_CAPTION].data = STR_CITY;
|
2008-04-16 03:05:56 +00:00
|
|
|
w->SetWidgetHiddenState(TVW_DELETE, ingame); // hide delete button on game mode
|
|
|
|
w->SetWidgetHiddenState(TVW_EXPAND, ingame); // hide expand button on game mode
|
|
|
|
w->SetWidgetHiddenState(TVW_SHOWAUTORITY, !ingame); // hide autority button on editor mode
|
|
|
|
|
|
|
|
if (ingame) {
|
|
|
|
/* resize caption bar */
|
|
|
|
w->widget[TVW_CAPTION].right = w->widget[TVW_STICKY].left -1;
|
|
|
|
/* move the rename from top on scenario to bottom in game */
|
|
|
|
w->widget[TVW_CHANGENAME].top = w->widget[TVW_EXPAND].top;
|
|
|
|
w->widget[TVW_CHANGENAME].bottom = w->widget[TVW_EXPAND].bottom;
|
|
|
|
w->widget[TVW_CHANGENAME].right = w->widget[TVW_STICKY].right;
|
|
|
|
}
|
|
|
|
} break;
|
2008-03-22 11:27:46 +00:00
|
|
|
|
2008-04-14 17:06:36 +00:00
|
|
|
case WE_PAINT:
|
|
|
|
/* disable renaming town in network games if you are not the server */
|
2008-04-14 17:50:15 +00:00
|
|
|
w->SetWidgetDisabledState(TVW_CHANGENAME, _networking && !_network_server);
|
2005-01-04 19:49:44 +00:00
|
|
|
|
2008-04-14 17:06:36 +00:00
|
|
|
SetDParam(0, t->index);
|
|
|
|
DrawWindowWidgets(w);
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2008-04-14 17:06:36 +00:00
|
|
|
SetDParam(0, t->population);
|
|
|
|
SetDParam(1, t->num_houses);
|
|
|
|
DrawString(2, 107, STR_2006_POPULATION, TC_FROMSTRING);
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2008-04-14 17:06:36 +00:00
|
|
|
SetDParam(0, t->act_pass);
|
|
|
|
SetDParam(1, t->max_pass);
|
|
|
|
DrawString(2, 117, STR_200D_PASSENGERS_LAST_MONTH_MAX, TC_FROMSTRING);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-04-14 17:06:36 +00:00
|
|
|
SetDParam(0, t->act_mail);
|
|
|
|
SetDParam(1, t->max_mail);
|
|
|
|
DrawString(2, 127, STR_200E_MAIL_LAST_MONTH_MAX, TC_FROMSTRING);
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2008-04-14 17:06:36 +00:00
|
|
|
DrawWindowViewport(w);
|
|
|
|
break;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-04-14 17:06:36 +00:00
|
|
|
case WE_CLICK:
|
|
|
|
switch (e->we.click.widget) {
|
2008-04-14 17:50:15 +00:00
|
|
|
case TVW_CENTERVIEW: /* scroll to location */
|
2008-05-05 11:36:43 +00:00
|
|
|
if (_ctrl_pressed) {
|
|
|
|
ShowExtraViewPortWindow(t->xy);
|
|
|
|
} else {
|
|
|
|
ScrollMainWindowToTile(t->xy);
|
|
|
|
}
|
2008-04-14 17:06:36 +00:00
|
|
|
break;
|
2005-11-14 19:48:04 +00:00
|
|
|
|
2008-04-14 17:50:15 +00:00
|
|
|
case TVW_SHOWAUTORITY: /* town authority */
|
2008-04-14 17:06:36 +00:00
|
|
|
ShowTownAuthorityWindow(w->window_number);
|
|
|
|
break;
|
2005-11-14 19:48:04 +00:00
|
|
|
|
2008-04-14 17:50:15 +00:00
|
|
|
case TVW_CHANGENAME: /* rename */
|
2008-04-14 17:06:36 +00:00
|
|
|
SetDParam(0, w->window_number);
|
|
|
|
ShowQueryString(STR_TOWN, STR_2007_RENAME_TOWN, 31, 130, w, CS_ALPHANUMERAL);
|
|
|
|
break;
|
2005-11-14 19:48:04 +00:00
|
|
|
|
2008-04-14 17:50:15 +00:00
|
|
|
case TVW_EXPAND: /* expand town - only available on Scenario editor */
|
2008-04-14 17:06:36 +00:00
|
|
|
ExpandTown(t);
|
|
|
|
break;
|
2005-11-14 19:48:04 +00:00
|
|
|
|
2008-04-14 17:50:15 +00:00
|
|
|
case TVW_DELETE: /* delete town - only available on Scenario editor */
|
2008-04-14 17:06:36 +00:00
|
|
|
delete t;
|
|
|
|
break;
|
|
|
|
} break;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-04-14 17:06:36 +00:00
|
|
|
case WE_ON_EDIT_TEXT:
|
|
|
|
if (e->we.edittext.str[0] != '\0') {
|
|
|
|
_cmd_text = e->we.edittext.str;
|
|
|
|
DoCommandP(0, w->window_number, 0, NULL,
|
|
|
|
CMD_RENAME_TOWN | CMD_MSG(STR_2008_CAN_T_RENAME_TOWN));
|
|
|
|
}
|
|
|
|
break;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static const Widget _town_view_widgets[] = {
|
2006-08-22 14:38:37 +00:00
|
|
|
{ WWT_CLOSEBOX, RESIZE_NONE, 13, 0, 10, 0, 13, STR_00C5, STR_018B_CLOSE_WINDOW},
|
2008-04-16 03:05:56 +00:00
|
|
|
{ WWT_CAPTION, RESIZE_NONE, 13, 11, 172, 0, 13, STR_2005, STR_018C_WINDOW_TITLE_DRAG_THIS},
|
2006-08-22 14:38:37 +00:00
|
|
|
{ WWT_STICKYBOX, RESIZE_NONE, 13, 248, 259, 0, 13, 0x0, STR_STICKY_BUTTON},
|
2006-10-24 14:15:17 +00:00
|
|
|
{ WWT_PANEL, RESIZE_NONE, 13, 0, 259, 14, 105, 0x0, STR_NULL},
|
2006-10-24 16:27:18 +00:00
|
|
|
{ WWT_INSET, RESIZE_NONE, 13, 2, 257, 16, 103, 0x0, STR_NULL},
|
2006-10-24 14:15:17 +00:00
|
|
|
{ WWT_PANEL, RESIZE_NONE, 13, 0, 259, 106, 137, 0x0, STR_NULL},
|
2006-08-22 14:38:37 +00:00
|
|
|
{ WWT_PUSHTXTBTN, RESIZE_NONE, 13, 0, 85, 138, 149, STR_00E4_LOCATION, STR_200B_CENTER_THE_MAIN_VIEW_ON},
|
|
|
|
{ WWT_PUSHTXTBTN, RESIZE_NONE, 13, 86, 171, 138, 149, STR_2020_LOCAL_AUTHORITY, STR_2021_SHOW_INFORMATION_ON_LOCAL},
|
2008-04-16 03:05:56 +00:00
|
|
|
{ WWT_PUSHTXTBTN, RESIZE_NONE, 13, 172, 247, 0, 13, STR_0130_RENAME, STR_200C_CHANGE_TOWN_NAME},
|
|
|
|
{ WWT_PUSHTXTBTN, RESIZE_NONE, 13, 86, 171, 138, 149, STR_023C_EXPAND, STR_023B_INCREASE_SIZE_OF_TOWN},
|
|
|
|
{ WWT_PUSHTXTBTN, RESIZE_NONE, 13, 172, 259, 138, 149, STR_0290_DELETE, STR_0291_DELETE_THIS_TOWN_COMPLETELY},
|
2004-09-07 21:48:09 +00:00
|
|
|
{ WIDGETS_END},
|
2004-08-09 17:04:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static const WindowDesc _town_view_desc = {
|
2007-07-27 12:49:04 +00:00
|
|
|
WDP_AUTO, WDP_AUTO, 260, 150, 260, 150,
|
2007-02-01 15:49:12 +00:00
|
|
|
WC_TOWN_VIEW, WC_NONE,
|
2004-12-22 01:32:30 +00:00
|
|
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON,
|
2004-08-09 17:04:08 +00:00
|
|
|
_town_view_widgets,
|
|
|
|
TownViewWndProc
|
|
|
|
};
|
|
|
|
|
2006-03-26 22:58:11 +00:00
|
|
|
void ShowTownViewWindow(TownID town)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
|
|
|
Window *w;
|
|
|
|
|
2008-04-16 03:05:56 +00:00
|
|
|
w = AllocateWindowDescFront(&_town_view_desc, town);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2005-11-14 19:48:04 +00:00
|
|
|
if (w != NULL) {
|
2004-08-09 17:04:08 +00:00
|
|
|
w->flags4 |= WF_DISABLE_VP_SCROLL;
|
2008-04-19 13:17:19 +00:00
|
|
|
InitializeWindowViewport(w, 3, 17, 254, 86, GetTown(town)->xy, ZOOM_LVL_TOWN);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-02-16 03:12:57 +00:00
|
|
|
enum TownDirectoryWidget {
|
|
|
|
TDW_SORTNAME = 3,
|
|
|
|
TDW_SORTPOPULATION,
|
|
|
|
TDW_CENTERTOWN,
|
|
|
|
};
|
2004-08-09 17:04:08 +00:00
|
|
|
static const Widget _town_directory_widgets[] = {
|
2006-08-22 14:38:37 +00:00
|
|
|
{ WWT_CLOSEBOX, RESIZE_NONE, 13, 0, 10, 0, 13, STR_00C5, STR_018B_CLOSE_WINDOW},
|
|
|
|
{ WWT_CAPTION, RESIZE_NONE, 13, 11, 195, 0, 13, STR_2000_TOWNS, STR_018C_WINDOW_TITLE_DRAG_THIS},
|
|
|
|
{ WWT_STICKYBOX, RESIZE_NONE, 13, 196, 207, 0, 13, 0x0, STR_STICKY_BUTTON},
|
|
|
|
{ WWT_PUSHTXTBTN, RESIZE_NONE, 13, 0, 98, 14, 25, STR_SORT_BY_NAME, STR_SORT_ORDER_TIP},
|
|
|
|
{ WWT_PUSHTXTBTN, RESIZE_NONE, 13, 99, 195, 14, 25, STR_SORT_BY_POPULATION, STR_SORT_ORDER_TIP},
|
2006-10-24 14:15:17 +00:00
|
|
|
{ WWT_PANEL, RESIZE_BOTTOM, 13, 0, 195, 26, 189, 0x0, STR_200A_TOWN_NAMES_CLICK_ON_NAME},
|
2006-08-22 14:38:37 +00:00
|
|
|
{ WWT_SCROLLBAR, RESIZE_BOTTOM, 13, 196, 207, 14, 189, 0x0, STR_0190_SCROLL_BAR_SCROLLS_LIST},
|
2006-10-24 14:15:17 +00:00
|
|
|
{ WWT_PANEL, RESIZE_TB, 13, 0, 195, 190, 201, 0x0, STR_NULL},
|
2006-08-22 14:38:37 +00:00
|
|
|
{ WWT_RESIZEBOX, RESIZE_TB, 13, 196, 207, 190, 201, 0x0, STR_RESIZE_BUTTON},
|
2004-09-07 21:48:09 +00:00
|
|
|
{ WIDGETS_END},
|
2004-08-09 17:04:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2007-04-04 03:21:14 +00:00
|
|
|
/* used to get a sorted list of the towns */
|
2004-08-09 17:04:08 +00:00
|
|
|
static uint _num_town_sort;
|
|
|
|
|
|
|
|
static char _bufcache[64];
|
2006-08-15 07:07:17 +00:00
|
|
|
static const Town* _last_town;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2004-09-06 18:15:13 +00:00
|
|
|
static int CDECL TownNameSorter(const void *a, const void *b)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2006-08-15 07:07:17 +00:00
|
|
|
const Town* ta = *(const Town**)a;
|
|
|
|
const Town* tb = *(const Town**)b;
|
2004-08-09 17:04:08 +00:00
|
|
|
char buf1[64];
|
|
|
|
int r;
|
|
|
|
|
2006-08-27 10:04:33 +00:00
|
|
|
SetDParam(0, ta->index);
|
2006-10-21 23:31:34 +00:00
|
|
|
GetString(buf1, STR_TOWN, lastof(buf1));
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2005-02-01 18:32:01 +00:00
|
|
|
/* If 'b' is the same town as in the last round, use the cached value
|
|
|
|
* We do this to speed stuff up ('b' is called with the same value a lot of
|
2006-08-15 07:07:17 +00:00
|
|
|
* times after eachother) */
|
|
|
|
if (tb != _last_town) {
|
|
|
|
_last_town = tb;
|
2006-08-27 10:04:33 +00:00
|
|
|
SetDParam(0, tb->index);
|
2006-10-21 23:31:34 +00:00
|
|
|
GetString(_bufcache, STR_TOWN, lastof(_bufcache));
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
r = strcmp(buf1, _bufcache);
|
|
|
|
if (_town_sort_order & 1) r = -r;
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2004-09-06 18:15:13 +00:00
|
|
|
static int CDECL TownPopSorter(const void *a, const void *b)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2006-08-15 07:07:17 +00:00
|
|
|
const Town* ta = *(const Town**)a;
|
|
|
|
const Town* tb = *(const Town**)b;
|
2004-09-06 18:15:13 +00:00
|
|
|
int r = ta->population - tb->population;
|
2004-08-09 17:04:08 +00:00
|
|
|
if (_town_sort_order & 1) r = -r;
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2007-03-07 11:47:46 +00:00
|
|
|
static void MakeSortedTownList()
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2005-11-13 13:43:55 +00:00
|
|
|
const Town* t;
|
2005-11-14 19:48:04 +00:00
|
|
|
uint n = 0;
|
2005-01-06 22:31:58 +00:00
|
|
|
|
|
|
|
/* Create array for sorting */
|
2007-01-11 17:29:39 +00:00
|
|
|
_town_sort = ReallocT(_town_sort, GetMaxTownIndex() + 1);
|
2005-01-06 22:31:58 +00:00
|
|
|
|
2006-08-22 15:33:35 +00:00
|
|
|
FOR_ALL_TOWNS(t) _town_sort[n++] = t;
|
2004-12-28 17:50:17 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
_num_town_sort = n;
|
|
|
|
|
2006-08-15 07:07:17 +00:00
|
|
|
_last_town = NULL; // used for "cache"
|
|
|
|
qsort((void*)_town_sort, n, sizeof(_town_sort[0]), _town_sort_order & 2 ? TownPopSorter : TownNameSorter);
|
2004-08-16 14:48:35 +00:00
|
|
|
|
2006-12-26 17:36:18 +00:00
|
|
|
DEBUG(misc, 3, "Resorting towns list");
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void TownDirectoryWndProc(Window *w, WindowEvent *e)
|
|
|
|
{
|
2005-11-14 19:48:04 +00:00
|
|
|
switch (e->event) {
|
2008-04-14 17:06:36 +00:00
|
|
|
case WE_PAINT: {
|
|
|
|
if (_town_sort_dirty) {
|
|
|
|
_town_sort_dirty = false;
|
|
|
|
MakeSortedTownList();
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-04-14 17:06:36 +00:00
|
|
|
SetVScrollCount(w, _num_town_sort);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-04-14 17:06:36 +00:00
|
|
|
DrawWindowWidgets(w);
|
|
|
|
DrawSortButtonState(w, (_town_sort_order <= 1) ? TDW_SORTNAME : TDW_SORTPOPULATION, _town_sort_order & 1 ? SBS_DOWN : SBS_UP);
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2008-04-14 17:06:36 +00:00
|
|
|
{
|
|
|
|
int n = 0;
|
|
|
|
uint16 i = w->vscroll.pos;
|
|
|
|
int y = 28;
|
2004-09-07 19:01:06 +00:00
|
|
|
|
2008-04-14 17:06:36 +00:00
|
|
|
while (i < _num_town_sort) {
|
|
|
|
const Town* t = _town_sort[i];
|
2004-09-07 19:01:06 +00:00
|
|
|
|
2008-04-14 17:06:36 +00:00
|
|
|
assert(t->xy);
|
2004-09-07 19:01:06 +00:00
|
|
|
|
2008-04-14 17:06:36 +00:00
|
|
|
SetDParam(0, t->index);
|
|
|
|
SetDParam(1, t->population);
|
|
|
|
DrawString(2, y, STR_2057, TC_FROMSTRING);
|
2004-09-07 19:01:06 +00:00
|
|
|
|
2008-04-14 17:06:36 +00:00
|
|
|
y += 10;
|
|
|
|
i++;
|
|
|
|
if (++n == w->vscroll.cap) break; // max number of towns in 1 window
|
|
|
|
}
|
|
|
|
SetDParam(0, GetWorldPopulation());
|
|
|
|
DrawString(3, w->height - 12 + 2, STR_TOWN_POPULATION, TC_FROMSTRING);
|
2004-09-07 19:01:06 +00:00
|
|
|
}
|
2008-04-14 17:06:36 +00:00
|
|
|
} break;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-04-14 17:06:36 +00:00
|
|
|
case WE_CLICK:
|
|
|
|
switch (e->we.click.widget) {
|
|
|
|
case TDW_SORTNAME: /* Sort by Name ascending/descending */
|
|
|
|
_town_sort_order = (_town_sort_order == 0) ? 1 : 0;
|
|
|
|
_town_sort_dirty = true;
|
|
|
|
SetWindowDirty(w);
|
|
|
|
break;
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2008-04-14 17:06:36 +00:00
|
|
|
case TDW_SORTPOPULATION: /* Sort by Population ascending/descending */
|
|
|
|
_town_sort_order = (_town_sort_order == 2) ? 3 : 2;
|
|
|
|
_town_sort_dirty = true;
|
|
|
|
SetWindowDirty(w);
|
|
|
|
break;
|
2006-08-15 07:07:17 +00:00
|
|
|
|
2008-04-14 17:06:36 +00:00
|
|
|
case TDW_CENTERTOWN: { /* Click on Town Matrix */
|
|
|
|
const Town* t;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-04-14 17:06:36 +00:00
|
|
|
uint16 id_v = (e->we.click.pt.y - 28) / 10;
|
2004-09-07 19:01:06 +00:00
|
|
|
|
2008-04-14 17:06:36 +00:00
|
|
|
if (id_v >= w->vscroll.cap) return; // click out of bounds
|
2004-09-07 19:01:06 +00:00
|
|
|
|
2008-04-14 17:06:36 +00:00
|
|
|
id_v += w->vscroll.pos;
|
2004-09-07 19:01:06 +00:00
|
|
|
|
2008-04-14 17:06:36 +00:00
|
|
|
if (id_v >= _num_town_sort) return; // click out of town bounds
|
|
|
|
|
|
|
|
t = _town_sort[id_v];
|
|
|
|
assert(t->xy);
|
2008-05-05 11:36:43 +00:00
|
|
|
if (_ctrl_pressed) {
|
|
|
|
ShowExtraViewPortWindow(t->xy);
|
|
|
|
} else {
|
|
|
|
ScrollMainWindowToTile(t->xy);
|
|
|
|
}
|
2008-04-14 17:06:36 +00:00
|
|
|
} break;
|
|
|
|
}
|
|
|
|
break;
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2008-04-14 17:06:36 +00:00
|
|
|
case WE_4:
|
|
|
|
SetWindowDirty(w);
|
|
|
|
break;
|
2005-01-03 19:45:18 +00:00
|
|
|
|
2008-04-14 17:06:36 +00:00
|
|
|
case WE_RESIZE:
|
|
|
|
w->vscroll.cap += e->we.sizing.diff.y / 10;
|
|
|
|
break;
|
2004-09-10 19:02:27 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static const WindowDesc _town_directory_desc = {
|
2007-07-27 12:49:04 +00:00
|
|
|
WDP_AUTO, WDP_AUTO, 208, 202, 208, 202,
|
2007-02-01 15:49:12 +00:00
|
|
|
WC_TOWN_DIRECTORY, WC_NONE,
|
2005-01-03 19:45:18 +00:00
|
|
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
|
2004-08-09 17:04:08 +00:00
|
|
|
_town_directory_widgets,
|
|
|
|
TownDirectoryWndProc
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2007-03-07 11:47:46 +00:00
|
|
|
void ShowTownDirectory()
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2006-07-26 03:33:12 +00:00
|
|
|
Window *w = AllocateWindowDescFront(&_town_directory_desc, 0);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2005-11-14 19:48:04 +00:00
|
|
|
if (w != NULL) {
|
2004-08-09 17:04:08 +00:00
|
|
|
w->vscroll.cap = 16;
|
2005-01-03 19:45:18 +00:00
|
|
|
w->resize.step_height = 10;
|
2005-01-21 16:51:25 +00:00
|
|
|
w->resize.height = w->height - 10 * 6; // minimum of 10 items in the list, each item 10 high
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
2008-03-23 07:35:29 +00:00
|
|
|
|
|
|
|
void CcBuildTown(bool success, TileIndex tile, uint32 p1, uint32 p2)
|
|
|
|
{
|
|
|
|
if (success) {
|
|
|
|
SndPlayTileFx(SND_1F_SPLAT, tile);
|
|
|
|
ResetObjectToPlace();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void PlaceProc_Town(TileIndex tile)
|
|
|
|
{
|
|
|
|
uint32 size = min(_scengen_town_size, (int)TSM_CITY);
|
|
|
|
uint32 mode = _scengen_town_size > TSM_CITY ? TSM_CITY : TSM_FIXED;
|
|
|
|
DoCommandP(tile, size, mode, CcBuildTown, CMD_BUILD_TOWN | CMD_MSG(STR_0236_CAN_T_BUILD_TOWN_HERE));
|
|
|
|
}
|
|
|
|
|
2008-04-14 17:50:15 +00:00
|
|
|
enum TownScenarioEditorWidget {
|
|
|
|
TSEW_NEWTOWN = 4,
|
|
|
|
TSEW_RANDOMTOWN,
|
|
|
|
TSEW_MANYRANDOMTOWNS,
|
|
|
|
TSEW_SMALLTOWN,
|
|
|
|
TSEW_MEDIUMTOWN,
|
|
|
|
TSEW_LARGETOWN,
|
|
|
|
TSEW_CITY,
|
|
|
|
};
|
|
|
|
|
2008-03-23 07:35:29 +00:00
|
|
|
static const Widget _scen_edit_town_gen_widgets[] = {
|
|
|
|
{ WWT_CLOSEBOX, RESIZE_NONE, 7, 0, 10, 0, 13, STR_00C5, STR_018B_CLOSE_WINDOW},
|
|
|
|
{ WWT_CAPTION, RESIZE_NONE, 7, 11, 147, 0, 13, STR_0233_TOWN_GENERATION, STR_018C_WINDOW_TITLE_DRAG_THIS},
|
|
|
|
{ WWT_STICKYBOX, RESIZE_NONE, 7, 148, 159, 0, 13, 0x0, STR_STICKY_BUTTON},
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 7, 0, 159, 14, 94, 0x0, STR_NULL},
|
|
|
|
{ WWT_TEXTBTN, RESIZE_NONE, 14, 2, 157, 16, 27, STR_0234_NEW_TOWN, STR_0235_CONSTRUCT_NEW_TOWN},
|
|
|
|
{ WWT_TEXTBTN, RESIZE_NONE, 14, 2, 157, 29, 40, STR_023D_RANDOM_TOWN, STR_023E_BUILD_TOWN_IN_RANDOM_LOCATION},
|
|
|
|
{ WWT_TEXTBTN, RESIZE_NONE, 14, 2, 157, 42, 53, STR_MANY_RANDOM_TOWNS, STR_RANDOM_TOWNS_TIP},
|
|
|
|
{ WWT_TEXTBTN, RESIZE_NONE, 14, 2, 53, 68, 79, STR_02A1_SMALL, STR_02A4_SELECT_TOWN_SIZE},
|
|
|
|
{ WWT_TEXTBTN, RESIZE_NONE, 14, 54, 105, 68, 79, STR_02A2_MEDIUM, STR_02A4_SELECT_TOWN_SIZE},
|
|
|
|
{ WWT_TEXTBTN, RESIZE_NONE, 14, 106, 157, 68, 79, STR_02A3_LARGE, STR_02A4_SELECT_TOWN_SIZE},
|
|
|
|
{ WWT_TEXTBTN, RESIZE_NONE, 14, 2, 157, 81, 92, STR_SCENARIO_EDITOR_CITY, STR_02A4_SELECT_TOWN_SIZE},
|
|
|
|
{ WWT_LABEL, RESIZE_NONE, 7, 0, 147, 54, 67, STR_02A5_TOWN_SIZE, STR_NULL},
|
|
|
|
{ WIDGETS_END},
|
|
|
|
};
|
|
|
|
|
|
|
|
static void ScenEditTownGenWndProc(Window *w, WindowEvent *e)
|
|
|
|
{
|
|
|
|
switch (e->event) {
|
2008-04-14 17:06:36 +00:00
|
|
|
case WE_PAINT:
|
|
|
|
DrawWindowWidgets(w);
|
2008-03-23 07:35:29 +00:00
|
|
|
break;
|
|
|
|
|
2008-04-14 17:06:36 +00:00
|
|
|
case WE_CREATE:
|
2008-04-14 17:50:15 +00:00
|
|
|
w->LowerWidget(_scengen_town_size + TSEW_SMALLTOWN);
|
2008-03-23 07:35:29 +00:00
|
|
|
break;
|
|
|
|
|
2008-04-14 17:06:36 +00:00
|
|
|
case WE_CLICK:
|
|
|
|
switch (e->we.click.widget) {
|
2008-04-14 17:50:15 +00:00
|
|
|
case TSEW_NEWTOWN:
|
|
|
|
HandlePlacePushButton(w, TSEW_NEWTOWN, SPR_CURSOR_TOWN, VHM_RECT, PlaceProc_Town);
|
2008-04-14 17:06:36 +00:00
|
|
|
break;
|
|
|
|
|
2008-04-14 17:50:15 +00:00
|
|
|
case TSEW_RANDOMTOWN: {
|
2008-04-14 17:06:36 +00:00
|
|
|
Town *t;
|
|
|
|
uint size = min(_scengen_town_size, (int)TSM_CITY);
|
|
|
|
TownSizeMode mode = _scengen_town_size > TSM_CITY ? TSM_CITY : TSM_FIXED;
|
|
|
|
|
2008-04-14 17:50:15 +00:00
|
|
|
w->HandleButtonClick(TSEW_RANDOMTOWN);
|
2008-04-14 17:06:36 +00:00
|
|
|
_generating_world = true;
|
|
|
|
t = CreateRandomTown(20, mode, size);
|
|
|
|
_generating_world = false;
|
|
|
|
|
|
|
|
if (t == NULL) {
|
|
|
|
ShowErrorMessage(STR_NO_SPACE_FOR_TOWN, STR_CANNOT_GENERATE_TOWN, 0, 0);
|
|
|
|
} else {
|
|
|
|
ScrollMainWindowToTile(t->xy);
|
|
|
|
}
|
|
|
|
} break;
|
|
|
|
|
2008-04-14 17:50:15 +00:00
|
|
|
case TSEW_MANYRANDOMTOWNS:
|
|
|
|
w->HandleButtonClick(TSEW_MANYRANDOMTOWNS);
|
2008-04-14 17:06:36 +00:00
|
|
|
|
|
|
|
_generating_world = true;
|
|
|
|
if (!GenerateTowns()) ShowErrorMessage(STR_NO_SPACE_FOR_TOWN, STR_CANNOT_GENERATE_TOWN, 0, 0);
|
|
|
|
_generating_world = false;
|
|
|
|
break;
|
|
|
|
|
2008-04-14 17:50:15 +00:00
|
|
|
case TSEW_SMALLTOWN: case TSEW_MEDIUMTOWN: case TSEW_LARGETOWN: case TSEW_CITY:
|
|
|
|
w->RaiseWidget(_scengen_town_size + TSEW_SMALLTOWN);
|
|
|
|
_scengen_town_size = e->we.click.widget - TSEW_SMALLTOWN;
|
|
|
|
w->LowerWidget(_scengen_town_size + TSEW_SMALLTOWN);
|
2008-04-14 17:06:36 +00:00
|
|
|
SetWindowDirty(w);
|
|
|
|
break;
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case WE_TIMEOUT:
|
2008-04-14 17:50:15 +00:00
|
|
|
w->RaiseWidget(TSEW_RANDOMTOWN);
|
|
|
|
w->RaiseWidget(TSEW_MANYRANDOMTOWNS);
|
2008-04-14 17:06:36 +00:00
|
|
|
SetWindowDirty(w);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WE_PLACE_OBJ:
|
|
|
|
_place_proc(e->we.place.tile);
|
2008-03-23 07:35:29 +00:00
|
|
|
break;
|
|
|
|
|
2008-04-14 17:06:36 +00:00
|
|
|
case WE_ABORT_PLACE_OBJ:
|
|
|
|
w->RaiseButtons();
|
2008-04-14 17:50:15 +00:00
|
|
|
w->LowerWidget(_scengen_town_size + TSEW_SMALLTOWN);
|
2008-03-23 07:35:29 +00:00
|
|
|
SetWindowDirty(w);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static const WindowDesc _scen_edit_town_gen_desc = {
|
|
|
|
WDP_AUTO, WDP_AUTO, 160, 95, 160, 95,
|
|
|
|
WC_SCEN_TOWN_GEN, WC_NONE,
|
|
|
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_STICKY_BUTTON,
|
|
|
|
_scen_edit_town_gen_widgets,
|
|
|
|
ScenEditTownGenWndProc,
|
|
|
|
};
|
|
|
|
|
|
|
|
void ShowBuildTownWindow()
|
|
|
|
{
|
|
|
|
if (_game_mode != GM_EDITOR && !IsValidPlayer(_current_player)) return;
|
|
|
|
AllocateWindowDescFront(&_scen_edit_town_gen_desc, 0);
|
|
|
|
}
|
|
|
|
|