2005-07-24 14:12:37 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
#include "stdafx.h"
|
2005-06-02 19:30:21 +00:00
|
|
|
#include "openttd.h"
|
(svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
- New optional landscape generator (TerraGenesis Perlin)
- Load heightmaps (either BMP or PNG)
- Progress dialog while generating worlds (no longer a 'hanging' screen)
- New dialogs for NewGame, Create Scenario and Play Heightmap
- Easier to configure your landscape
- More things to configure (tree-placer, ..)
- Speedup of world generation
- New console command 'restart': restart the map EXACTLY as it was when you
first started it (needs a game made after or with this commit)
- New console command 'getseed': get the seed of your map and share it with
others (of course only works with generated maps)
- Many new, world generation related, things
- Many internal cleanups and rewrites
Many tnx to those people who helped making this:
Belugas, DaleStan, glx, KUDr, RichK67, Rubidium, and TrueLight (alfabetic)
Many tnx to those who helped testing:
Arnau, Bjarni, and tokai (alfabetic)
And to all other people who helped testing and sending comments / bugs
Stats: 673 lines changed, 3534 new lines, 79 new strings
2006-08-19 10:00:30 +00:00
|
|
|
#include "heightmap.h"
|
2005-08-06 15:18:26 +00:00
|
|
|
#include "currency.h"
|
2005-07-22 07:02:20 +00:00
|
|
|
#include "functions.h"
|
2005-02-10 05:43:30 +00:00
|
|
|
#include "spritecache.h"
|
2005-09-27 18:51:04 +00:00
|
|
|
#include "station.h"
|
2005-02-06 08:18:00 +00:00
|
|
|
#include "strings.h"
|
2005-02-13 11:18:02 +00:00
|
|
|
#include "table/sprites.h"
|
2004-11-25 10:47:30 +00:00
|
|
|
#include "table/strings.h"
|
2004-12-15 22:18:54 +00:00
|
|
|
#include "map.h"
|
2005-01-29 12:19:05 +00:00
|
|
|
#include "tile.h"
|
2004-08-09 17:04:08 +00:00
|
|
|
#include "window.h"
|
|
|
|
#include "gui.h"
|
|
|
|
#include "viewport.h"
|
|
|
|
#include "gfx.h"
|
|
|
|
#include "player.h"
|
|
|
|
#include "command.h"
|
|
|
|
#include "news.h"
|
|
|
|
#include "town.h"
|
2004-08-24 12:34:16 +00:00
|
|
|
#include "vehicle.h"
|
2004-08-24 08:34:28 +00:00
|
|
|
#include "console.h"
|
2004-11-05 23:12:33 +00:00
|
|
|
#include "sound.h"
|
2004-12-04 17:54:56 +00:00
|
|
|
#include "network.h"
|
2005-01-12 11:21:28 +00:00
|
|
|
#include "signs.h"
|
2005-03-24 17:03:37 +00:00
|
|
|
#include "waypoint.h"
|
2005-07-21 22:15:02 +00:00
|
|
|
#include "variables.h"
|
2005-11-18 23:41:03 +00:00
|
|
|
#include "train.h"
|
2006-03-23 20:47:56 +00:00
|
|
|
#include "unmovable_map.h"
|
2006-07-28 21:51:00 +00:00
|
|
|
#include "screenshot.h"
|
(svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
- New optional landscape generator (TerraGenesis Perlin)
- Load heightmaps (either BMP or PNG)
- Progress dialog while generating worlds (no longer a 'hanging' screen)
- New dialogs for NewGame, Create Scenario and Play Heightmap
- Easier to configure your landscape
- More things to configure (tree-placer, ..)
- Speedup of world generation
- New console command 'restart': restart the map EXACTLY as it was when you
first started it (needs a game made after or with this commit)
- New console command 'getseed': get the seed of your map and share it with
others (of course only works with generated maps)
- Many new, world generation related, things
- Many internal cleanups and rewrites
Many tnx to those people who helped making this:
Belugas, DaleStan, glx, KUDr, RichK67, Rubidium, and TrueLight (alfabetic)
Many tnx to those who helped testing:
Arnau, Bjarni, and tokai (alfabetic)
And to all other people who helped testing and sending comments / bugs
Stats: 673 lines changed, 3534 new lines, 79 new strings
2006-08-19 10:00:30 +00:00
|
|
|
#include "genworld.h"
|
|
|
|
#include "settings.h"
|
2006-08-14 14:21:15 +00:00
|
|
|
#include "date.h"
|
2006-09-28 23:05:03 +00:00
|
|
|
#include "vehicle_gui.h"
|
2004-12-04 17:54:56 +00:00
|
|
|
|
|
|
|
#include "network_data.h"
|
|
|
|
#include "network_client.h"
|
|
|
|
#include "network_server.h"
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
static int _rename_id;
|
|
|
|
static int _rename_what;
|
|
|
|
|
|
|
|
static byte _terraform_size = 1;
|
2005-10-16 09:13:04 +00:00
|
|
|
static RailType _last_built_railtype;
|
2006-10-03 20:16:20 +00:00
|
|
|
static int _scengen_town_size = 1;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2005-01-22 20:23:18 +00:00
|
|
|
extern void GenerateIndustries(void);
|
2005-09-16 00:33:33 +00:00
|
|
|
extern bool GenerateTowns(void);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2004-12-04 17:54:56 +00:00
|
|
|
|
2005-05-13 17:09:05 +00:00
|
|
|
void HandleOnEditText(WindowEvent *e)
|
|
|
|
{
|
2006-09-23 02:39:24 +00:00
|
|
|
const char *b = e->we.edittext.str;
|
2004-08-09 17:04:08 +00:00
|
|
|
int id;
|
2005-05-15 18:50:55 +00:00
|
|
|
|
|
|
|
_cmd_text = b;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
id = _rename_id;
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2005-05-13 17:09:05 +00:00
|
|
|
switch (_rename_what) {
|
|
|
|
case 0: /* Rename a s sign, if string is empty, delete sign */
|
2005-05-12 00:11:37 +00:00
|
|
|
DoCommandP(0, id, 0, NULL, CMD_RENAME_SIGN | CMD_MSG(STR_280C_CAN_T_CHANGE_SIGN_NAME));
|
2004-08-09 17:04:08 +00:00
|
|
|
break;
|
2005-05-13 17:09:05 +00:00
|
|
|
case 1: /* Rename a waypoint */
|
2005-10-22 06:39:32 +00:00
|
|
|
if (*b == '\0') return;
|
2004-11-14 13:07:07 +00:00
|
|
|
DoCommandP(0, id, 0, NULL, CMD_RENAME_WAYPOINT | CMD_MSG(STR_CANT_CHANGE_WAYPOINT_NAME));
|
2004-08-09 17:04:08 +00:00
|
|
|
break;
|
2004-12-04 17:54:56 +00:00
|
|
|
#ifdef ENABLE_NETWORK
|
2005-05-13 17:09:05 +00:00
|
|
|
case 3: { /* Give money, you can only give money in excess of loan */
|
2005-06-21 16:28:17 +00:00
|
|
|
const Player *p = GetPlayer(_current_player);
|
2006-09-23 02:39:24 +00:00
|
|
|
int32 money = min(p->money64 - p->current_loan, atoi(e->we.edittext.str) / _currency->rate);
|
2005-05-13 17:09:05 +00:00
|
|
|
char msg[20];
|
2004-12-28 09:24:02 +00:00
|
|
|
|
2005-05-13 17:09:05 +00:00
|
|
|
money = clamp(money, 0, 20000000); // Clamp between 20 million and 0
|
2004-12-28 09:24:02 +00:00
|
|
|
|
2004-12-04 17:54:56 +00:00
|
|
|
// Give 'id' the money, and substract it from ourself
|
2005-05-13 17:09:05 +00:00
|
|
|
if (!DoCommandP(0, money, id, NULL, CMD_GIVE_MONEY | CMD_MSG(STR_INSUFFICIENT_FUNDS))) break;
|
2004-12-04 17:54:56 +00:00
|
|
|
|
|
|
|
// Inform the player of this action
|
2005-05-13 17:09:05 +00:00
|
|
|
snprintf(msg, sizeof(msg), "%d", money);
|
2004-12-04 17:54:56 +00:00
|
|
|
|
2006-06-27 21:25:53 +00:00
|
|
|
if (!_network_server) {
|
2004-12-04 17:54:56 +00:00
|
|
|
SEND_COMMAND(PACKET_CLIENT_CHAT)(NETWORK_ACTION_GIVE_MONEY, DESTTYPE_PLAYER, id + 1, msg);
|
2006-06-27 21:25:53 +00:00
|
|
|
} else {
|
2004-12-04 17:54:56 +00:00
|
|
|
NetworkServer_HandleChat(NETWORK_ACTION_GIVE_MONEY, DESTTYPE_PLAYER, id + 1, msg, NETWORK_SERVER_INDEX);
|
2006-06-27 21:25:53 +00:00
|
|
|
}
|
2004-12-04 17:54:56 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
#endif /* ENABLE_NETWORK */
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-01-19 20:55:23 +00:00
|
|
|
/**
|
|
|
|
* This code is shared for the majority of the pushbuttons.
|
|
|
|
* Handles e.g. the pressing of a button (to build things), playing of click sound and sets certain parameters
|
|
|
|
*
|
|
|
|
* @param w Window which called the function
|
|
|
|
* @param widget ID of the widget (=button) that called this function
|
|
|
|
* @param cursor How should the cursor image change? E.g. cursor with depot image in it
|
|
|
|
* @param mode Tile highlighting mode, e.g. drawing a rectangle or a dot on the ground
|
|
|
|
* @param placeproc Procedure which will be called when someone clicks on the map
|
2005-01-23 13:09:35 +00:00
|
|
|
|
2005-01-19 20:55:23 +00:00
|
|
|
* @return true if the button is clicked, false if it's unclicked
|
|
|
|
*/
|
2005-06-06 13:47:06 +00:00
|
|
|
bool HandlePlacePushButton(Window *w, int widget, CursorID cursor, int mode, PlaceProc *placeproc)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2006-10-03 02:08:15 +00:00
|
|
|
if (IsWindowWidgetDisabled(w, widget)) return false;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2005-11-09 11:32:15 +00:00
|
|
|
SndPlayFx(SND_15_BEEP);
|
2004-08-09 17:04:08 +00:00
|
|
|
SetWindowDirty(w);
|
|
|
|
|
2006-10-03 20:16:20 +00:00
|
|
|
if (IsWindowWidgetLowered(w, widget)) {
|
2004-08-09 17:04:08 +00:00
|
|
|
ResetObjectToPlace();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
SetObjectToPlace(cursor, mode, w->window_class, w->window_number);
|
2006-10-03 20:16:20 +00:00
|
|
|
LowerWindowWidget(w, widget);
|
2004-08-09 17:04:08 +00:00
|
|
|
_place_proc = placeproc;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-06-24 12:38:35 +00:00
|
|
|
void CcPlaySound10(bool success, TileIndex tile, uint32 p1, uint32 p2)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2004-12-04 09:26:39 +00:00
|
|
|
if (success) SndPlayTileFx(SND_12_EXPLOSION, tile);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void ToolbarPauseClick(Window *w)
|
|
|
|
{
|
2005-10-23 13:04:44 +00:00
|
|
|
if (_networking && !_network_server) return; // only server can pause the game
|
2004-09-12 15:29:37 +00:00
|
|
|
|
2005-11-14 19:48:04 +00:00
|
|
|
if (DoCommandP(0, _pause ? 0 : 1, 0, NULL, CMD_PAUSE)) SndPlayFx(SND_15_BEEP);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void ToolbarFastForwardClick(Window *w)
|
|
|
|
{
|
|
|
|
_fast_forward ^= true;
|
2004-12-04 09:26:39 +00:00
|
|
|
SndPlayFx(SND_15_BEEP);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-11-14 19:44:06 +00:00
|
|
|
static void MenuClickSettings(int index)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2005-11-13 14:54:09 +00:00
|
|
|
switch (index) {
|
|
|
|
case 0: ShowGameOptions(); return;
|
|
|
|
case 1: ShowGameDifficulty(); return;
|
|
|
|
case 2: ShowPatchesSelection(); return;
|
|
|
|
case 3: ShowNewgrf(); return;
|
|
|
|
|
|
|
|
case 5: _display_opt ^= DO_SHOW_TOWN_NAMES; break;
|
|
|
|
case 6: _display_opt ^= DO_SHOW_STATION_NAMES; break;
|
|
|
|
case 7: _display_opt ^= DO_SHOW_SIGNS; break;
|
|
|
|
case 8: _display_opt ^= DO_WAYPOINTS; break;
|
|
|
|
case 9: _display_opt ^= DO_FULL_ANIMATION; break;
|
|
|
|
case 10: _display_opt ^= DO_FULL_DETAIL; break;
|
|
|
|
case 11: _display_opt ^= DO_TRANS_BUILDINGS; break;
|
|
|
|
case 12: _display_opt ^= DO_TRANS_SIGNS; break;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2005-11-13 14:54:09 +00:00
|
|
|
MarkWholeScreenDirty();
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2004-11-14 19:44:06 +00:00
|
|
|
static void MenuClickSaveLoad(int index)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
|
|
|
if (_game_mode == GM_EDITOR) {
|
2005-11-13 14:54:09 +00:00
|
|
|
switch (index) {
|
|
|
|
case 0: ShowSaveLoadDialog(SLD_SAVE_SCENARIO); break;
|
|
|
|
case 1: ShowSaveLoadDialog(SLD_LOAD_SCENARIO); break;
|
|
|
|
case 2: AskExitToGameMenu(); break;
|
2006-09-04 17:30:30 +00:00
|
|
|
case 4: HandleExitGameRequest(); break;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
} else {
|
2005-11-13 14:54:09 +00:00
|
|
|
switch (index) {
|
|
|
|
case 0: ShowSaveLoadDialog(SLD_SAVE_GAME); break;
|
|
|
|
case 1: ShowSaveLoadDialog(SLD_LOAD_GAME); break;
|
|
|
|
case 2: AskExitToGameMenu(); break;
|
2006-09-04 17:30:30 +00:00
|
|
|
case 3: HandleExitGameRequest(); break;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-11-14 19:44:06 +00:00
|
|
|
static void MenuClickMap(int index)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2005-11-13 14:54:09 +00:00
|
|
|
switch (index) {
|
|
|
|
case 0: ShowSmallMap(); break;
|
|
|
|
case 1: ShowExtraViewPortWindow(); break;
|
|
|
|
case 2: ShowSignList(); break;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-11-14 19:44:06 +00:00
|
|
|
static void MenuClickTown(int index)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
|
|
|
ShowTownDirectory();
|
|
|
|
}
|
|
|
|
|
2004-11-14 19:44:06 +00:00
|
|
|
static void MenuClickScenMap(int index)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2005-11-13 14:54:09 +00:00
|
|
|
switch (index) {
|
|
|
|
case 0: ShowSmallMap(); break;
|
|
|
|
case 1: ShowExtraViewPortWindow(); break;
|
|
|
|
case 2: ShowSignList(); break;
|
|
|
|
case 3: ShowTownDirectory(); break;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-11-14 19:44:06 +00:00
|
|
|
static void MenuClickSubsidies(int index)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
|
|
|
ShowSubsidiesList();
|
|
|
|
}
|
|
|
|
|
2004-11-14 19:44:06 +00:00
|
|
|
static void MenuClickStations(int index)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
|
|
|
ShowPlayerStations(index);
|
|
|
|
}
|
|
|
|
|
2004-11-14 19:44:06 +00:00
|
|
|
static void MenuClickFinances(int index)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
|
|
|
ShowPlayerFinances(index);
|
|
|
|
}
|
|
|
|
|
2004-12-04 17:54:56 +00:00
|
|
|
#ifdef ENABLE_NETWORK
|
2005-01-13 20:46:39 +00:00
|
|
|
extern void ShowClientList(void);
|
2004-12-04 17:54:56 +00:00
|
|
|
#endif /* ENABLE_NETWORK */
|
|
|
|
|
2004-11-14 19:44:06 +00:00
|
|
|
static void MenuClickCompany(int index)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2004-12-04 17:54:56 +00:00
|
|
|
if (_networking && index == 0) {
|
|
|
|
#ifdef ENABLE_NETWORK
|
|
|
|
ShowClientList();
|
|
|
|
#endif /* ENABLE_NETWORK */
|
|
|
|
} else {
|
|
|
|
if (_networking) index--;
|
|
|
|
ShowPlayerCompany(index);
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2004-11-14 19:44:06 +00:00
|
|
|
static void MenuClickGraphs(int index)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2005-11-13 14:54:09 +00:00
|
|
|
switch (index) {
|
|
|
|
case 0: ShowOperatingProfitGraph(); break;
|
|
|
|
case 1: ShowIncomeGraph(); break;
|
|
|
|
case 2: ShowDeliveredCargoGraph(); break;
|
|
|
|
case 3: ShowPerformanceHistoryGraph(); break;
|
|
|
|
case 4: ShowCompanyValueGraph(); break;
|
|
|
|
case 5: ShowCargoPaymentRates(); break;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-11-14 19:44:06 +00:00
|
|
|
static void MenuClickLeague(int index)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2005-11-13 14:54:09 +00:00
|
|
|
switch (index) {
|
|
|
|
case 0: ShowCompanyLeagueTable(); break;
|
|
|
|
case 1: ShowPerformanceRatingDetail(); break;
|
2004-08-23 10:59:03 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2004-11-14 19:44:06 +00:00
|
|
|
static void MenuClickIndustry(int index)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2005-11-13 14:54:09 +00:00
|
|
|
switch (index) {
|
|
|
|
case 0: ShowIndustryDirectory(); break;
|
|
|
|
case 1: ShowBuildIndustryWindow(); break;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-11-14 19:44:06 +00:00
|
|
|
static void MenuClickShowTrains(int index)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2006-09-28 23:05:03 +00:00
|
|
|
ShowVehicleListWindow(index, INVALID_STATION, VEH_Train);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2004-11-14 19:44:06 +00:00
|
|
|
static void MenuClickShowRoad(int index)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2006-09-28 23:05:03 +00:00
|
|
|
ShowVehicleListWindow(index, INVALID_STATION, VEH_Road);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2004-11-14 19:44:06 +00:00
|
|
|
static void MenuClickShowShips(int index)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2006-09-28 23:05:03 +00:00
|
|
|
ShowVehicleListWindow(index, INVALID_STATION, VEH_Ship);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2004-11-14 19:44:06 +00:00
|
|
|
static void MenuClickShowAir(int index)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2006-09-28 23:05:03 +00:00
|
|
|
ShowVehicleListWindow(index, INVALID_STATION, VEH_Aircraft);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2004-11-14 19:44:06 +00:00
|
|
|
static void MenuClickBuildRail(int index)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2005-07-20 22:02:58 +00:00
|
|
|
_last_built_railtype = index;
|
2004-08-09 17:04:08 +00:00
|
|
|
ShowBuildRailToolbar(_last_built_railtype, -1);
|
|
|
|
}
|
|
|
|
|
2004-11-14 19:44:06 +00:00
|
|
|
static void MenuClickBuildRoad(int index)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
|
|
|
ShowBuildRoadToolbar();
|
|
|
|
}
|
|
|
|
|
2004-11-14 19:44:06 +00:00
|
|
|
static void MenuClickBuildWater(int index)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
|
|
|
ShowBuildDocksToolbar();
|
|
|
|
}
|
|
|
|
|
2004-11-14 19:44:06 +00:00
|
|
|
static void MenuClickBuildAir(int index)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
|
|
|
ShowBuildAirToolbar();
|
|
|
|
}
|
|
|
|
|
2004-12-04 17:54:56 +00:00
|
|
|
#ifdef ENABLE_NETWORK
|
2004-12-14 16:53:38 +00:00
|
|
|
|
2004-12-04 17:54:56 +00:00
|
|
|
void ShowNetworkGiveMoneyWindow(byte player)
|
|
|
|
{
|
|
|
|
_rename_id = player;
|
|
|
|
_rename_what = 3;
|
2006-08-19 09:31:22 +00:00
|
|
|
ShowQueryString(STR_EMPTY, STR_NETWORK_GIVE_MONEY_CAPTION, 30, 180, 1, 0, CS_NUMERAL);
|
2004-12-04 17:54:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* ENABLE_NETWORK */
|
|
|
|
|
2006-08-22 16:38:50 +00:00
|
|
|
void ShowRenameSignWindow(const Sign *si)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2006-08-22 16:38:50 +00:00
|
|
|
_rename_id = si->index;
|
2004-08-09 17:04:08 +00:00
|
|
|
_rename_what = 0;
|
2006-08-22 16:38:50 +00:00
|
|
|
ShowQueryString(si->str, STR_280B_EDIT_SIGN_TEXT, 30, 180, 1, 0, CS_ALPHANUMERAL);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2005-07-17 20:14:58 +00:00
|
|
|
void ShowRenameWaypointWindow(const Waypoint *wp)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2005-03-24 17:03:37 +00:00
|
|
|
int id = wp->index;
|
2004-12-17 17:06:20 +00:00
|
|
|
|
|
|
|
/* Are we allowed to change the name of the waypoint? */
|
2005-03-24 17:03:37 +00:00
|
|
|
if (!CheckTileOwnership(wp->xy)) {
|
2005-01-07 17:02:43 +00:00
|
|
|
ShowErrorMessage(_error_message, STR_CANT_CHANGE_WAYPOINT_NAME,
|
2006-04-03 09:07:21 +00:00
|
|
|
TileX(wp->xy) * TILE_SIZE, TileY(wp->xy) * TILE_SIZE);
|
2004-12-17 17:06:20 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
_rename_id = id;
|
|
|
|
_rename_what = 1;
|
2004-12-02 22:53:07 +00:00
|
|
|
SetDParam(0, id);
|
2006-08-19 09:31:22 +00:00
|
|
|
ShowQueryString(STR_WAYPOINT_RAW, STR_EDIT_WAYPOINT_NAME, 30, 180, 1, 0, CS_ALPHANUMERAL);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2005-01-22 20:23:18 +00:00
|
|
|
static void SelectSignTool(void)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2005-11-14 19:48:04 +00:00
|
|
|
if (_cursor.sprite == SPR_CURSOR_SIGN) {
|
2004-08-09 17:04:08 +00:00
|
|
|
ResetObjectToPlace();
|
2005-11-14 19:48:04 +00:00
|
|
|
} else {
|
2005-06-06 13:47:06 +00:00
|
|
|
SetObjectToPlace(SPR_CURSOR_SIGN, 1, 1, 0);
|
2004-08-09 17:04:08 +00:00
|
|
|
_place_proc = PlaceProc_Sign;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-11-14 19:44:06 +00:00
|
|
|
static void MenuClickForest(int index)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2005-11-13 14:54:09 +00:00
|
|
|
switch (index) {
|
|
|
|
case 0: ShowTerraformToolbar(); break;
|
|
|
|
case 1: ShowBuildTreesToolbar(); break;
|
|
|
|
case 2: SelectSignTool(); break;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-11-14 19:44:06 +00:00
|
|
|
static void MenuClickMusicWindow(int index)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
|
|
|
ShowMusicWindow();
|
|
|
|
}
|
|
|
|
|
2004-11-14 19:44:06 +00:00
|
|
|
static void MenuClickNewspaper(int index)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2005-11-13 14:54:09 +00:00
|
|
|
switch (index) {
|
|
|
|
case 0: ShowLastNewsMessage(); break;
|
|
|
|
case 1: ShowMessageOptions(); break;
|
|
|
|
case 2: ShowMessageHistory(); break;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-07-28 21:51:00 +00:00
|
|
|
static void MenuClickSmallScreenshot(void)
|
|
|
|
{
|
|
|
|
SetScreenshotType(SC_VIEWPORT);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void MenuClickWorldScreenshot(void)
|
|
|
|
{
|
|
|
|
SetScreenshotType(SC_WORLD);
|
|
|
|
}
|
|
|
|
|
2004-11-14 19:44:06 +00:00
|
|
|
static void MenuClickHelp(int index)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2005-09-16 10:50:06 +00:00
|
|
|
switch (index) {
|
2006-07-28 21:51:00 +00:00
|
|
|
case 0: PlaceLandBlockInfo(); break;
|
|
|
|
case 2: IConsoleSwitch(); break;
|
|
|
|
case 3: MenuClickSmallScreenshot(); break;
|
|
|
|
case 4: MenuClickWorldScreenshot(); break;
|
|
|
|
case 5: ShowAboutWindow(); break;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-11-14 19:48:04 +00:00
|
|
|
|
|
|
|
typedef void MenuClickedProc(int index);
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
static MenuClickedProc * const _menu_clicked_procs[] = {
|
2006-08-22 14:38:37 +00:00
|
|
|
NULL, /* 0 */
|
|
|
|
NULL, /* 1 */
|
|
|
|
MenuClickSettings, /* 2 */
|
|
|
|
MenuClickSaveLoad, /* 3 */
|
|
|
|
MenuClickMap, /* 4 */
|
|
|
|
MenuClickTown, /* 5 */
|
|
|
|
MenuClickSubsidies, /* 6 */
|
|
|
|
MenuClickStations, /* 7 */
|
|
|
|
MenuClickFinances, /* 8 */
|
|
|
|
MenuClickCompany, /* 9 */
|
|
|
|
MenuClickGraphs, /* 10 */
|
|
|
|
MenuClickLeague, /* 11 */
|
|
|
|
MenuClickIndustry, /* 12 */
|
|
|
|
MenuClickShowTrains, /* 13 */
|
|
|
|
MenuClickShowRoad, /* 14 */
|
|
|
|
MenuClickShowShips, /* 15 */
|
|
|
|
MenuClickShowAir, /* 16 */
|
|
|
|
MenuClickScenMap, /* 17 */
|
|
|
|
NULL, /* 18 */
|
|
|
|
MenuClickBuildRail, /* 19 */
|
|
|
|
MenuClickBuildRoad, /* 20 */
|
|
|
|
MenuClickBuildWater, /* 21 */
|
|
|
|
MenuClickBuildAir, /* 22 */
|
|
|
|
MenuClickForest, /* 23 */
|
2004-08-09 17:04:08 +00:00
|
|
|
MenuClickMusicWindow, /* 24 */
|
2006-08-22 14:38:37 +00:00
|
|
|
MenuClickNewspaper, /* 25 */
|
|
|
|
MenuClickHelp, /* 26 */
|
2004-08-09 17:04:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static void MenuWndProc(Window *w, WindowEvent *e)
|
|
|
|
{
|
2005-11-14 19:48:04 +00:00
|
|
|
switch (e->event) {
|
2004-08-09 17:04:08 +00:00
|
|
|
case WE_PAINT: {
|
|
|
|
int count,sel;
|
|
|
|
int x,y;
|
|
|
|
uint16 chk;
|
|
|
|
StringID string;
|
|
|
|
int eo;
|
|
|
|
int inc;
|
2005-07-28 08:49:29 +00:00
|
|
|
byte color;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
DrawWindowWidgets(w);
|
|
|
|
|
|
|
|
count = WP(w,menu_d).item_count;
|
|
|
|
sel = WP(w,menu_d).sel_index;
|
|
|
|
chk = WP(w,menu_d).checked_items;
|
|
|
|
string = WP(w,menu_d).string_id;
|
|
|
|
|
|
|
|
x = 1;
|
|
|
|
y = 1;
|
|
|
|
|
|
|
|
eo = 157;
|
|
|
|
|
|
|
|
inc = (chk != 0) ? 2 : 1;
|
|
|
|
|
|
|
|
do {
|
|
|
|
if (sel== 0) GfxFillRect(x, y, x + eo, y+9, 0);
|
2005-07-28 08:49:29 +00:00
|
|
|
color = sel == 0 ? 0xC : 0x10;
|
|
|
|
if (HASBIT(WP(w,menu_d).disabled_items, (string - WP(w, menu_d).string_id))) color = 0xE;
|
|
|
|
DrawString(x + 2, y, string + (chk & 1), color);
|
2004-08-09 17:04:08 +00:00
|
|
|
y += 10;
|
|
|
|
string += inc;
|
|
|
|
chk >>= 1;
|
|
|
|
} while (--sel,--count);
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case WE_DESTROY: {
|
|
|
|
Window *v = FindWindowById(WC_MAIN_TOOLBAR, 0);
|
2006-10-03 20:16:20 +00:00
|
|
|
RaiseWindowWidget(v, WP(w,menu_d).main_button);
|
2004-08-09 17:04:08 +00:00
|
|
|
SetWindowDirty(v);
|
|
|
|
return;
|
|
|
|
}
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
case WE_POPUPMENU_SELECT: {
|
2006-09-23 02:39:24 +00:00
|
|
|
int index = GetMenuItemIndex(w, e->we.popupmenu.pt.x, e->we.popupmenu.pt.y);
|
2004-08-09 17:04:08 +00:00
|
|
|
int action_id;
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
if (index < 0) {
|
|
|
|
Window *w2 = FindWindowById(WC_MAIN_TOOLBAR,0);
|
2006-09-23 02:39:24 +00:00
|
|
|
if (GetWidgetFromPos(w2, e->we.popupmenu.pt.x - w2->left, e->we.popupmenu.pt.y - w2->top) == WP(w,menu_d).main_button)
|
2004-08-09 17:04:08 +00:00
|
|
|
index = WP(w,menu_d).sel_index;
|
|
|
|
}
|
|
|
|
|
|
|
|
action_id = WP(w,menu_d).action_id;
|
|
|
|
DeleteWindow(w);
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2005-11-14 19:48:04 +00:00
|
|
|
if (index >= 0) _menu_clicked_procs[action_id](index);
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
break;
|
|
|
|
}
|
2005-11-14 19:48:04 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
case WE_POPUPMENU_OVER: {
|
2006-09-23 02:39:24 +00:00
|
|
|
int index = GetMenuItemIndex(w, e->we.popupmenu.pt.x, e->we.popupmenu.pt.y);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2005-11-14 19:48:04 +00:00
|
|
|
if (index == -1 || index == WP(w,menu_d).sel_index) return;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
WP(w,menu_d).sel_index = index;
|
|
|
|
SetWindowDirty(w);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-01-03 19:45:18 +00:00
|
|
|
static const Widget _menu_widgets[] = {
|
2006-08-22 14:38:37 +00:00
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 0, 159, 0, 65535, 0, STR_NULL},
|
2004-09-07 21:48:09 +00:00
|
|
|
{ WIDGETS_END},
|
2004-08-09 17:04:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2005-01-03 19:45:18 +00:00
|
|
|
static const Widget _player_menu_widgets[] = {
|
2006-08-22 14:38:37 +00:00
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 0, 240, 0, 81, 0, STR_NULL},
|
2004-09-07 21:48:09 +00:00
|
|
|
{ WIDGETS_END},
|
2004-08-09 17:04:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static int GetPlayerIndexFromMenu(int index)
|
|
|
|
{
|
|
|
|
if (index >= 0) {
|
2006-07-26 03:33:12 +00:00
|
|
|
const Player *p;
|
2005-11-13 13:43:55 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
FOR_ALL_PLAYERS(p) {
|
2005-11-14 19:48:04 +00:00
|
|
|
if (p->is_active && --index < 0) return p->index;
|
2004-09-10 19:02:27 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void UpdatePlayerMenuHeight(Window *w)
|
|
|
|
{
|
2005-11-14 19:48:04 +00:00
|
|
|
uint num = 0;
|
2006-07-26 03:33:12 +00:00
|
|
|
const Player *p;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
FOR_ALL_PLAYERS(p) {
|
2005-11-14 19:48:04 +00:00
|
|
|
if (p->is_active) num++;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2005-11-14 19:48:04 +00:00
|
|
|
// Increase one to fit in PlayerList in the menu when in network
|
|
|
|
if (_networking && WP(w,menu_d).main_button == 9) num++;
|
2004-12-04 17:54:56 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
if (WP(w,menu_d).item_count != num) {
|
|
|
|
WP(w,menu_d).item_count = num;
|
|
|
|
SetWindowDirty(w);
|
|
|
|
num = num * 10 + 2;
|
|
|
|
w->height = num;
|
2005-01-03 19:45:18 +00:00
|
|
|
w->widget[0].bottom = w->widget[0].top + num - 1;
|
2004-08-09 17:04:08 +00:00
|
|
|
SetWindowDirty(w);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-04-29 14:31:16 +00:00
|
|
|
extern void DrawPlayerIcon(PlayerID pid, int x, int y);
|
2004-12-04 17:54:56 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
static void PlayerMenuWndProc(Window *w, WindowEvent *e)
|
|
|
|
{
|
2005-11-14 19:48:04 +00:00
|
|
|
switch (e->event) {
|
2004-08-09 17:04:08 +00:00
|
|
|
case WE_PAINT: {
|
|
|
|
int x,y;
|
|
|
|
byte sel, color;
|
|
|
|
Player *p;
|
|
|
|
uint16 chk;
|
|
|
|
|
|
|
|
UpdatePlayerMenuHeight(w);
|
|
|
|
DrawWindowWidgets(w);
|
|
|
|
|
|
|
|
x = 1;
|
|
|
|
y = 1;
|
|
|
|
sel = WP(w,menu_d).sel_index;
|
|
|
|
chk = WP(w,menu_d).checked_items; // let this mean gray items.
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2004-12-04 17:54:56 +00:00
|
|
|
// 9 = playerlist
|
|
|
|
if (_networking && WP(w,menu_d).main_button == 9) {
|
|
|
|
if (sel == 0) {
|
|
|
|
GfxFillRect(x, y, x + 238, y + 9, 0);
|
|
|
|
}
|
|
|
|
DrawString(x + 19, y, STR_NETWORK_CLIENT_LIST, 0x0);
|
|
|
|
y += 10;
|
|
|
|
sel--;
|
|
|
|
}
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
FOR_ALL_PLAYERS(p) {
|
|
|
|
if (p->is_active) {
|
|
|
|
if (p->index == sel) {
|
2004-12-04 17:54:56 +00:00
|
|
|
GfxFillRect(x, y, x + 238, y + 9, 0);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2004-12-04 17:54:56 +00:00
|
|
|
|
|
|
|
DrawPlayerIcon(p->index, x + 2, y + 1);
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2004-12-02 22:53:07 +00:00
|
|
|
SetDParam(0, p->name_1);
|
|
|
|
SetDParam(1, p->name_2);
|
|
|
|
SetDParam(2, GetPlayerNameString(p->index, 3));
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2005-07-21 06:31:02 +00:00
|
|
|
color = (p->index == sel) ? 0xC : 0x10;
|
2004-08-09 17:04:08 +00:00
|
|
|
if (chk&1) color = 14;
|
2004-12-04 17:54:56 +00:00
|
|
|
DrawString(x + 19, y, STR_7021, color);
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
y += 10;
|
2004-09-10 19:02:27 +00:00
|
|
|
}
|
|
|
|
chk >>= 1;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2004-12-04 17:54:56 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case WE_DESTROY: {
|
|
|
|
Window *v = FindWindowById(WC_MAIN_TOOLBAR, 0);
|
2006-10-03 20:16:20 +00:00
|
|
|
RaiseWindowWidget(v, WP(w,menu_d).main_button);
|
2004-08-09 17:04:08 +00:00
|
|
|
SetWindowDirty(v);
|
|
|
|
return;
|
|
|
|
}
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
case WE_POPUPMENU_SELECT: {
|
2006-09-23 02:39:24 +00:00
|
|
|
int index = GetMenuItemIndex(w, e->we.popupmenu.pt.x, e->we.popupmenu.pt.y);
|
2004-08-09 17:04:08 +00:00
|
|
|
int action_id = WP(w,menu_d).action_id;
|
|
|
|
|
2004-12-04 17:54:56 +00:00
|
|
|
// We have a new entry at the top of the list of menu 9 when networking
|
|
|
|
// so keep that in count
|
2004-12-19 19:17:15 +00:00
|
|
|
if (_networking && WP(w,menu_d).main_button == 9) {
|
2005-11-14 19:48:04 +00:00
|
|
|
if (index > 0) index = GetPlayerIndexFromMenu(index - 1) + 1;
|
|
|
|
} else {
|
2004-12-19 19:17:15 +00:00
|
|
|
index = GetPlayerIndexFromMenu(index);
|
2005-11-14 19:48:04 +00:00
|
|
|
}
|
2004-12-04 17:54:56 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
if (index < 0) {
|
|
|
|
Window *w2 = FindWindowById(WC_MAIN_TOOLBAR,0);
|
2006-09-23 02:39:24 +00:00
|
|
|
if (GetWidgetFromPos(w2, e->we.popupmenu.pt.x - w2->left, e->we.popupmenu.pt.y - w2->top) == WP(w,menu_d).main_button)
|
2004-08-09 17:04:08 +00:00
|
|
|
index = WP(w,menu_d).sel_index;
|
|
|
|
}
|
|
|
|
|
|
|
|
DeleteWindow(w);
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
if (index >= 0) {
|
|
|
|
assert(index >= 0 && index < 30);
|
|
|
|
_menu_clicked_procs[action_id](index);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case WE_POPUPMENU_OVER: {
|
|
|
|
int index;
|
|
|
|
UpdatePlayerMenuHeight(w);
|
2006-09-23 02:39:24 +00:00
|
|
|
index = GetMenuItemIndex(w, e->we.popupmenu.pt.x, e->we.popupmenu.pt.y);
|
2004-12-04 17:54:56 +00:00
|
|
|
|
|
|
|
// We have a new entry at the top of the list of menu 9 when networking
|
|
|
|
// so keep that in count
|
2004-12-19 19:17:15 +00:00
|
|
|
if (_networking && WP(w,menu_d).main_button == 9) {
|
2005-11-14 19:48:04 +00:00
|
|
|
if (index > 0) index = GetPlayerIndexFromMenu(index - 1) + 1;
|
|
|
|
} else {
|
2004-12-19 19:17:15 +00:00
|
|
|
index = GetPlayerIndexFromMenu(index);
|
2005-11-14 19:48:04 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2005-11-14 19:48:04 +00:00
|
|
|
if (index == -1 || index == WP(w,menu_d).sel_index) return;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
WP(w,menu_d).sel_index = index;
|
|
|
|
SetWindowDirty(w);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-07-28 08:49:29 +00:00
|
|
|
static Window *PopupMainToolbMenu(Window *w, int x, int main_button, StringID base_string, int item_count, byte disabled_mask)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
|
|
|
x += w->left;
|
|
|
|
|
2006-10-03 20:16:20 +00:00
|
|
|
LowerWindowWidget(w, main_button);
|
|
|
|
InvalidateWidget(w, main_button);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
DeleteWindowById(WC_TOOLBAR_MENU, 0);
|
|
|
|
|
2005-01-03 19:45:18 +00:00
|
|
|
w = AllocateWindow(x, 0x16, 0xA0, item_count * 10 + 2, MenuWndProc, WC_TOOLBAR_MENU, _menu_widgets);
|
|
|
|
w->widget[0].bottom = item_count * 10 + 1;
|
2004-08-09 17:04:08 +00:00
|
|
|
w->flags4 &= ~WF_WHITE_BORDER_MASK;
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
WP(w,menu_d).item_count = item_count;
|
|
|
|
WP(w,menu_d).sel_index = 0;
|
|
|
|
WP(w,menu_d).main_button = main_button;
|
|
|
|
WP(w,menu_d).action_id = (main_button >> 8) ? (main_button >> 8) : main_button;
|
|
|
|
WP(w,menu_d).string_id = base_string;
|
|
|
|
WP(w,menu_d).checked_items = 0;
|
2005-07-28 08:49:29 +00:00
|
|
|
WP(w,menu_d).disabled_items = disabled_mask;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
_popup_menu_active = true;
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2004-12-04 09:26:39 +00:00
|
|
|
SndPlayFx(SND_15_BEEP);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
return w;
|
|
|
|
}
|
|
|
|
|
|
|
|
static Window *PopupMainPlayerToolbMenu(Window *w, int x, int main_button, int gray)
|
|
|
|
{
|
|
|
|
x += w->left;
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2006-10-03 20:16:20 +00:00
|
|
|
LowerWindowWidget(w, main_button);
|
2004-08-09 17:04:08 +00:00
|
|
|
InvalidateWidget(w, main_button);
|
|
|
|
|
|
|
|
DeleteWindowById(WC_TOOLBAR_MENU, 0);
|
|
|
|
w = AllocateWindow(x, 0x16, 0xF1, 0x52, PlayerMenuWndProc, WC_TOOLBAR_MENU, _player_menu_widgets);
|
|
|
|
w->flags4 &= ~WF_WHITE_BORDER_MASK;
|
|
|
|
WP(w,menu_d).item_count = 0;
|
2004-12-19 19:17:15 +00:00
|
|
|
WP(w,menu_d).sel_index = (_local_player != OWNER_SPECTATOR) ? _local_player : GetPlayerIndexFromMenu(0);
|
|
|
|
if (_networking && main_button == 9) {
|
2005-11-14 19:48:04 +00:00
|
|
|
if (_local_player != OWNER_SPECTATOR) {
|
2004-12-19 19:17:15 +00:00
|
|
|
WP(w,menu_d).sel_index++;
|
2005-11-14 19:48:04 +00:00
|
|
|
} else {
|
2004-12-19 19:17:15 +00:00
|
|
|
/* Select client list by default for spectators */
|
|
|
|
WP(w,menu_d).sel_index = 0;
|
2005-11-14 19:48:04 +00:00
|
|
|
}
|
2004-12-04 17:54:56 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
WP(w,menu_d).action_id = main_button;
|
|
|
|
WP(w,menu_d).main_button = main_button;
|
|
|
|
WP(w,menu_d).checked_items = gray;
|
2005-07-28 08:49:29 +00:00
|
|
|
WP(w,menu_d).disabled_items = 0;
|
2004-08-09 17:04:08 +00:00
|
|
|
_popup_menu_active = true;
|
2004-12-04 09:26:39 +00:00
|
|
|
SndPlayFx(SND_15_BEEP);
|
2004-08-09 17:04:08 +00:00
|
|
|
return w;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ToolbarSaveClick(Window *w)
|
|
|
|
{
|
2005-07-28 08:49:29 +00:00
|
|
|
PopupMainToolbMenu(w, 66, 3, STR_015C_SAVE_GAME, 4, 0);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void ToolbarMapClick(Window *w)
|
|
|
|
{
|
2005-07-28 08:49:29 +00:00
|
|
|
PopupMainToolbMenu(w, 96, 4, STR_02DE_MAP_OF_WORLD, 3, 0);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void ToolbarTownClick(Window *w)
|
|
|
|
{
|
2005-07-28 08:49:29 +00:00
|
|
|
PopupMainToolbMenu(w, 118, 5, STR_02BB_TOWN_DIRECTORY, 1, 0);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void ToolbarSubsidiesClick(Window *w)
|
|
|
|
{
|
2005-07-28 08:49:29 +00:00
|
|
|
PopupMainToolbMenu(w, 140, 6, STR_02DD_SUBSIDIES, 1, 0);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void ToolbarStationsClick(Window *w)
|
|
|
|
{
|
|
|
|
PopupMainPlayerToolbMenu(w, 162, 7, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ToolbarMoneyClick(Window *w)
|
|
|
|
{
|
|
|
|
PopupMainPlayerToolbMenu(w, 191, 8, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ToolbarPlayersClick(Window *w)
|
|
|
|
{
|
|
|
|
PopupMainPlayerToolbMenu(w, 213, 9, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ToolbarGraphsClick(Window *w)
|
|
|
|
{
|
2005-07-28 08:49:29 +00:00
|
|
|
PopupMainToolbMenu(w, 236, 10, STR_0154_OPERATING_PROFIT_GRAPH, 6, 0);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void ToolbarLeagueClick(Window *w)
|
|
|
|
{
|
2005-07-28 08:49:29 +00:00
|
|
|
PopupMainToolbMenu(w, 258, 11, STR_015A_COMPANY_LEAGUE_TABLE, 2, 0);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void ToolbarIndustryClick(Window *w)
|
|
|
|
{
|
2006-01-21 21:45:34 +00:00
|
|
|
int dis = _current_player == OWNER_SPECTATOR ? 2 : 0;
|
|
|
|
PopupMainToolbMenu(w, 280, 12, STR_INDUSTRY_DIR, 2, dis);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void ToolbarTrainClick(Window *w)
|
|
|
|
{
|
2006-07-26 03:33:12 +00:00
|
|
|
const Vehicle *v;
|
2004-08-09 17:04:08 +00:00
|
|
|
int dis = -1;
|
2005-11-14 19:48:04 +00:00
|
|
|
|
|
|
|
FOR_ALL_VEHICLES(v) {
|
2005-11-18 23:41:03 +00:00
|
|
|
if (v->type == VEH_Train && IsFrontEngine(v)) CLRBIT(dis, v->owner);
|
2005-11-14 19:48:04 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
PopupMainPlayerToolbMenu(w, 310, 13, dis);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ToolbarRoadClick(Window *w)
|
|
|
|
{
|
2006-07-26 03:33:12 +00:00
|
|
|
const Vehicle *v;
|
2004-08-09 17:04:08 +00:00
|
|
|
int dis = -1;
|
2005-11-14 19:48:04 +00:00
|
|
|
|
|
|
|
FOR_ALL_VEHICLES(v) {
|
2004-08-09 17:04:08 +00:00
|
|
|
if (v->type == VEH_Road) CLRBIT(dis, v->owner);
|
2005-11-14 19:48:04 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
PopupMainPlayerToolbMenu(w, 332, 14, dis);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ToolbarShipClick(Window *w)
|
|
|
|
{
|
2006-07-26 03:33:12 +00:00
|
|
|
const Vehicle *v;
|
2004-08-09 17:04:08 +00:00
|
|
|
int dis = -1;
|
2005-11-14 19:48:04 +00:00
|
|
|
|
|
|
|
FOR_ALL_VEHICLES(v) {
|
2004-08-09 17:04:08 +00:00
|
|
|
if (v->type == VEH_Ship) CLRBIT(dis, v->owner);
|
2005-11-14 19:48:04 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
PopupMainPlayerToolbMenu(w, 354, 15, dis);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ToolbarAirClick(Window *w)
|
|
|
|
{
|
2006-07-26 03:33:12 +00:00
|
|
|
const Vehicle *v;
|
2004-08-09 17:04:08 +00:00
|
|
|
int dis = -1;
|
2005-11-14 19:48:04 +00:00
|
|
|
|
|
|
|
FOR_ALL_VEHICLES(v) {
|
2004-08-09 17:04:08 +00:00
|
|
|
if (v->type == VEH_Aircraft) CLRBIT(dis, v->owner);
|
2005-11-14 19:48:04 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
PopupMainPlayerToolbMenu(w, 376, 16, dis);
|
|
|
|
}
|
|
|
|
|
2004-09-03 19:59:05 +00:00
|
|
|
/* Zooms a viewport in a window in or out */
|
|
|
|
/* No button handling or what so ever */
|
|
|
|
bool DoZoomInOutWindow(int how, Window *w)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
|
|
|
ViewPort *vp;
|
|
|
|
int button;
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2005-11-13 14:54:09 +00:00
|
|
|
switch (_game_mode) {
|
|
|
|
case GM_EDITOR: button = 9; break;
|
|
|
|
case GM_NORMAL: button = 17; break;
|
|
|
|
default: return false;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
assert(w);
|
|
|
|
vp = w->viewport;
|
|
|
|
|
|
|
|
if (how == ZOOM_IN) {
|
|
|
|
if (vp->zoom == 0) return false;
|
|
|
|
vp->zoom--;
|
|
|
|
vp->virtual_width >>= 1;
|
|
|
|
vp->virtual_height >>= 1;
|
|
|
|
|
|
|
|
WP(w,vp_d).scrollpos_x += vp->virtual_width >> 1;
|
|
|
|
WP(w,vp_d).scrollpos_y += vp->virtual_height >> 1;
|
|
|
|
|
|
|
|
SetWindowDirty(w);
|
|
|
|
} else if (how == ZOOM_OUT) {
|
|
|
|
if (vp->zoom == 2) return false;
|
|
|
|
vp->zoom++;
|
|
|
|
|
|
|
|
WP(w,vp_d).scrollpos_x -= vp->virtual_width >> 1;
|
|
|
|
WP(w,vp_d).scrollpos_y -= vp->virtual_height >> 1;
|
|
|
|
|
|
|
|
vp->virtual_width <<= 1;
|
|
|
|
vp->virtual_height <<= 1;
|
|
|
|
|
|
|
|
SetWindowDirty(w);
|
|
|
|
}
|
|
|
|
|
2004-09-03 19:59:05 +00:00
|
|
|
// routine to disable/enable the zoom buttons. Didn't know where to place these otherwise
|
|
|
|
{
|
2006-07-26 03:33:12 +00:00
|
|
|
Window *wt = NULL;
|
2005-11-14 19:48:04 +00:00
|
|
|
|
2004-09-03 19:59:05 +00:00
|
|
|
switch (w->window_class) {
|
2005-11-14 19:48:04 +00:00
|
|
|
case WC_MAIN_WINDOW:
|
|
|
|
wt = FindWindowById(WC_MAIN_TOOLBAR, 0);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WC_EXTRA_VIEW_PORT:
|
|
|
|
wt = FindWindowById(WC_EXTRA_VIEW_PORT, w->window_number);
|
|
|
|
button = 5;
|
|
|
|
break;
|
2004-09-03 19:59:05 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2004-09-03 19:59:05 +00:00
|
|
|
assert(wt);
|
|
|
|
|
|
|
|
// update the toolbar button too
|
2006-10-03 02:08:15 +00:00
|
|
|
SetWindowWidgetDisabledState(wt, button, vp->zoom == 0);
|
|
|
|
SetWindowWidgetDisabledState(wt, button + 1, vp->zoom == 2);
|
|
|
|
|
2004-09-03 19:59:05 +00:00
|
|
|
SetWindowDirty(wt);
|
|
|
|
}
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2005-01-22 20:23:18 +00:00
|
|
|
static void MaxZoomIn(void)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2004-09-03 19:59:05 +00:00
|
|
|
while (DoZoomInOutWindow(ZOOM_IN, FindWindowById(WC_MAIN_WINDOW, 0) ) ) {}
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void ToolbarZoomInClick(Window *w)
|
|
|
|
{
|
2004-09-03 19:59:05 +00:00
|
|
|
if (DoZoomInOutWindow(ZOOM_IN, FindWindowById(WC_MAIN_WINDOW, 0))) {
|
2004-08-09 17:04:08 +00:00
|
|
|
HandleButtonClick(w, 17);
|
2004-12-04 09:26:39 +00:00
|
|
|
SndPlayFx(SND_15_BEEP);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ToolbarZoomOutClick(Window *w)
|
|
|
|
{
|
2004-09-03 19:59:05 +00:00
|
|
|
if (DoZoomInOutWindow(ZOOM_OUT,FindWindowById(WC_MAIN_WINDOW, 0))) {
|
2004-08-09 17:04:08 +00:00
|
|
|
HandleButtonClick(w, 18);
|
2004-12-04 09:26:39 +00:00
|
|
|
SndPlayFx(SND_15_BEEP);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ToolbarBuildRailClick(Window *w)
|
|
|
|
{
|
2006-07-26 03:33:12 +00:00
|
|
|
const Player *p = GetPlayer(_local_player);
|
2004-08-09 17:04:08 +00:00
|
|
|
Window *w2;
|
2005-07-28 08:49:29 +00:00
|
|
|
w2 = PopupMainToolbMenu(w, 457, 19, STR_1015_RAILROAD_CONSTRUCTION, RAILTYPE_END, ~p->avail_railtypes);
|
2004-08-09 17:04:08 +00:00
|
|
|
WP(w2,menu_d).sel_index = _last_built_railtype;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ToolbarBuildRoadClick(Window *w)
|
|
|
|
{
|
2005-07-28 08:49:29 +00:00
|
|
|
PopupMainToolbMenu(w, 479, 20, STR_180A_ROAD_CONSTRUCTION, 1, 0);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void ToolbarBuildWaterClick(Window *w)
|
|
|
|
{
|
2005-07-28 08:49:29 +00:00
|
|
|
PopupMainToolbMenu(w, 501, 21, STR_9800_DOCK_CONSTRUCTION, 1, 0);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void ToolbarBuildAirClick(Window *w)
|
|
|
|
{
|
2005-07-28 08:49:29 +00:00
|
|
|
PopupMainToolbMenu(w, 0x1E0, 22, STR_A01D_AIRPORT_CONSTRUCTION, 1, 0);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void ToolbarForestClick(Window *w)
|
|
|
|
{
|
2005-07-28 08:49:29 +00:00
|
|
|
PopupMainToolbMenu(w, 0x1E0, 23, STR_LANDSCAPING, 3, 0);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void ToolbarMusicClick(Window *w)
|
|
|
|
{
|
2005-07-28 08:49:29 +00:00
|
|
|
PopupMainToolbMenu(w, 0x1E0, 24, STR_01D3_SOUND_MUSIC, 1, 0);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void ToolbarNewspaperClick(Window *w)
|
|
|
|
{
|
2005-07-28 08:49:29 +00:00
|
|
|
PopupMainToolbMenu(w, 0x1E0, 25, STR_0200_LAST_MESSAGE_NEWS_REPORT, 3, 0);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void ToolbarHelpClick(Window *w)
|
|
|
|
{
|
2005-09-16 10:50:06 +00:00
|
|
|
PopupMainToolbMenu(w, 0x1E0, 26, STR_02D5_LAND_BLOCK_INFO, 6, 0);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void ToolbarOptionsClick(Window *w)
|
|
|
|
{
|
|
|
|
uint16 x;
|
|
|
|
|
2005-07-28 08:49:29 +00:00
|
|
|
w = PopupMainToolbMenu(w, 43, 2, STR_02C3_GAME_OPTIONS, 13, 0);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
x = (uint16)-1;
|
2005-11-14 08:09:57 +00:00
|
|
|
if (_display_opt & DO_SHOW_TOWN_NAMES) CLRBIT(x, 5);
|
|
|
|
if (_display_opt & DO_SHOW_STATION_NAMES) CLRBIT(x, 6);
|
|
|
|
if (_display_opt & DO_SHOW_SIGNS) CLRBIT(x, 7);
|
|
|
|
if (_display_opt & DO_WAYPOINTS) CLRBIT(x, 8);
|
|
|
|
if (_display_opt & DO_FULL_ANIMATION) CLRBIT(x, 9);
|
|
|
|
if (_display_opt & DO_FULL_DETAIL) CLRBIT(x, 10);
|
|
|
|
if (_display_opt & DO_TRANS_BUILDINGS) CLRBIT(x, 11);
|
|
|
|
if (_display_opt & DO_TRANS_SIGNS) CLRBIT(x, 12);
|
2004-08-09 17:04:08 +00:00
|
|
|
WP(w,menu_d).checked_items = x;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void ToolbarScenSaveOrLoad(Window *w)
|
|
|
|
{
|
2005-07-28 08:49:29 +00:00
|
|
|
PopupMainToolbMenu(w, 0x2C, 3, STR_0292_SAVE_SCENARIO, 5, 0);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void ToolbarScenDateBackward(Window *w)
|
|
|
|
{
|
|
|
|
// don't allow too fast scrolling
|
|
|
|
if ((w->flags4 & WF_TIMEOUT_MASK) <= 2 << WF_TIMEOUT_SHL) {
|
|
|
|
HandleButtonClick(w, 6);
|
(svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
- New optional landscape generator (TerraGenesis Perlin)
- Load heightmaps (either BMP or PNG)
- Progress dialog while generating worlds (no longer a 'hanging' screen)
- New dialogs for NewGame, Create Scenario and Play Heightmap
- Easier to configure your landscape
- More things to configure (tree-placer, ..)
- Speedup of world generation
- New console command 'restart': restart the map EXACTLY as it was when you
first started it (needs a game made after or with this commit)
- New console command 'getseed': get the seed of your map and share it with
others (of course only works with generated maps)
- Many new, world generation related, things
- Many internal cleanups and rewrites
Many tnx to those people who helped making this:
Belugas, DaleStan, glx, KUDr, RichK67, Rubidium, and TrueLight (alfabetic)
Many tnx to those who helped testing:
Arnau, Bjarni, and tokai (alfabetic)
And to all other people who helped testing and sending comments / bugs
Stats: 673 lines changed, 3534 new lines, 79 new strings
2006-08-19 10:00:30 +00:00
|
|
|
SetWindowDirty(w);
|
2004-09-10 19:02:27 +00:00
|
|
|
|
(svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
- New optional landscape generator (TerraGenesis Perlin)
- Load heightmaps (either BMP or PNG)
- Progress dialog while generating worlds (no longer a 'hanging' screen)
- New dialogs for NewGame, Create Scenario and Play Heightmap
- Easier to configure your landscape
- More things to configure (tree-placer, ..)
- Speedup of world generation
- New console command 'restart': restart the map EXACTLY as it was when you
first started it (needs a game made after or with this commit)
- New console command 'getseed': get the seed of your map and share it with
others (of course only works with generated maps)
- Many new, world generation related, things
- Many internal cleanups and rewrites
Many tnx to those people who helped making this:
Belugas, DaleStan, glx, KUDr, RichK67, Rubidium, and TrueLight (alfabetic)
Many tnx to those who helped testing:
Arnau, Bjarni, and tokai (alfabetic)
And to all other people who helped testing and sending comments / bugs
Stats: 673 lines changed, 3534 new lines, 79 new strings
2006-08-19 10:00:30 +00:00
|
|
|
_patches_newgame.starting_year = clamp(_patches_newgame.starting_year - 1, MIN_YEAR, MAX_YEAR);
|
|
|
|
SetDate(ConvertYMDToDate(_patches_newgame.starting_year, 0, 1));
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
_left_button_clicked = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ToolbarScenDateForward(Window *w)
|
|
|
|
{
|
|
|
|
// don't allow too fast scrolling
|
|
|
|
if ((w->flags4 & WF_TIMEOUT_MASK) <= 2 << WF_TIMEOUT_SHL) {
|
|
|
|
HandleButtonClick(w, 7);
|
(svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
- New optional landscape generator (TerraGenesis Perlin)
- Load heightmaps (either BMP or PNG)
- Progress dialog while generating worlds (no longer a 'hanging' screen)
- New dialogs for NewGame, Create Scenario and Play Heightmap
- Easier to configure your landscape
- More things to configure (tree-placer, ..)
- Speedup of world generation
- New console command 'restart': restart the map EXACTLY as it was when you
first started it (needs a game made after or with this commit)
- New console command 'getseed': get the seed of your map and share it with
others (of course only works with generated maps)
- Many new, world generation related, things
- Many internal cleanups and rewrites
Many tnx to those people who helped making this:
Belugas, DaleStan, glx, KUDr, RichK67, Rubidium, and TrueLight (alfabetic)
Many tnx to those who helped testing:
Arnau, Bjarni, and tokai (alfabetic)
And to all other people who helped testing and sending comments / bugs
Stats: 673 lines changed, 3534 new lines, 79 new strings
2006-08-19 10:00:30 +00:00
|
|
|
SetWindowDirty(w);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
(svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
- New optional landscape generator (TerraGenesis Perlin)
- Load heightmaps (either BMP or PNG)
- Progress dialog while generating worlds (no longer a 'hanging' screen)
- New dialogs for NewGame, Create Scenario and Play Heightmap
- Easier to configure your landscape
- More things to configure (tree-placer, ..)
- Speedup of world generation
- New console command 'restart': restart the map EXACTLY as it was when you
first started it (needs a game made after or with this commit)
- New console command 'getseed': get the seed of your map and share it with
others (of course only works with generated maps)
- Many new, world generation related, things
- Many internal cleanups and rewrites
Many tnx to those people who helped making this:
Belugas, DaleStan, glx, KUDr, RichK67, Rubidium, and TrueLight (alfabetic)
Many tnx to those who helped testing:
Arnau, Bjarni, and tokai (alfabetic)
And to all other people who helped testing and sending comments / bugs
Stats: 673 lines changed, 3534 new lines, 79 new strings
2006-08-19 10:00:30 +00:00
|
|
|
_patches_newgame.starting_year = clamp(_patches_newgame.starting_year + 1, MIN_YEAR, MAX_YEAR);
|
|
|
|
SetDate(ConvertYMDToDate(_patches_newgame.starting_year, 0, 1));
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
_left_button_clicked = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ToolbarScenMapTownDir(Window *w)
|
|
|
|
{
|
2005-07-28 08:49:29 +00:00
|
|
|
PopupMainToolbMenu(w, 0x16A, 8 | (17<<8), STR_02DE_MAP_OF_WORLD, 4, 0);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void ToolbarScenZoomIn(Window *w)
|
|
|
|
{
|
2004-09-03 19:59:05 +00:00
|
|
|
if (DoZoomInOutWindow(ZOOM_IN, FindWindowById(WC_MAIN_WINDOW, 0))) {
|
2004-08-09 17:04:08 +00:00
|
|
|
HandleButtonClick(w, 9);
|
2004-12-04 09:26:39 +00:00
|
|
|
SndPlayFx(SND_15_BEEP);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ToolbarScenZoomOut(Window *w)
|
|
|
|
{
|
2004-09-03 19:59:05 +00:00
|
|
|
if (DoZoomInOutWindow(ZOOM_OUT, FindWindowById(WC_MAIN_WINDOW, 0))) {
|
2004-08-09 17:04:08 +00:00
|
|
|
HandleButtonClick(w, 10);
|
2004-12-04 09:26:39 +00:00
|
|
|
SndPlayFx(SND_15_BEEP);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-09-10 19:02:27 +00:00
|
|
|
void ZoomInOrOutToCursorWindow(bool in, Window *w)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2006-07-26 03:33:12 +00:00
|
|
|
ViewPort *vp;
|
2004-08-09 17:04:08 +00:00
|
|
|
Point pt;
|
|
|
|
|
|
|
|
assert(w != 0);
|
|
|
|
|
|
|
|
vp = w->viewport;
|
|
|
|
|
2006-09-03 22:07:28 +00:00
|
|
|
if (_game_mode != GM_MENU) {
|
2004-08-09 17:04:08 +00:00
|
|
|
if ((in && vp->zoom == 0) || (!in && vp->zoom == 2))
|
|
|
|
return;
|
|
|
|
|
2004-09-03 19:59:05 +00:00
|
|
|
pt = GetTileZoomCenterWindow(in,w);
|
2004-08-09 17:04:08 +00:00
|
|
|
if (pt.x != -1) {
|
2004-09-03 19:59:05 +00:00
|
|
|
ScrollWindowTo(pt.x, pt.y, w);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2004-09-03 19:59:05 +00:00
|
|
|
DoZoomInOutWindow(in ? ZOOM_IN : ZOOM_OUT, w);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
(svn r2136) - Fix: [ 1174313 ] terrain hotkeys nonfunctional in scenario editor (D,Q,W,E,R,T,Y,U fltr)
- Fix: 'L' no longer opens ingame terraform bar in scenario editor bar, but the land generator one
- Feature: [ 1095110 ] Create Lake and draggable Create Desert tools (initial implementation GoneWacko), also added sticky buttons to land generator and town generator
- CodeChange: moved around some of the draggable tools, demystifying them
- CodeChange: change CmdBuildCanal to allow for XANDY dragging not only X or Y (only scenario editor)
- CodeChange: add some more enums to sprites.
- TODO: merge most of the ingame and scenario editor land terraform code. This can only be done after OnClickButton function is changed so it also includes the backreference to the widget being clicked, postponed to after 0.4.0
2005-04-02 23:05:09 +00:00
|
|
|
// TODO - Incorporate into game itself to allow for ingame raising/lowering of
|
|
|
|
// larger chunks at the same time OR remove altogether, as we have 'level land' ?
|
|
|
|
/**
|
|
|
|
* Raise/Lower a bigger chunk of land at the same time in the editor. When
|
|
|
|
* raising get the lowest point, when lowering the highest point, and set all
|
|
|
|
* tiles in the selection to that height.
|
|
|
|
* @param tile The top-left tile where the terraforming will start
|
|
|
|
* @param mode 1 for raising, 0 for lowering land
|
|
|
|
*/
|
2005-06-24 12:38:35 +00:00
|
|
|
static void CommonRaiseLowerBigLand(TileIndex tile, int mode)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2005-04-14 22:59:49 +00:00
|
|
|
int sizex, sizey;
|
2004-12-04 17:54:56 +00:00
|
|
|
byte h;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
(svn r2136) - Fix: [ 1174313 ] terrain hotkeys nonfunctional in scenario editor (D,Q,W,E,R,T,Y,U fltr)
- Fix: 'L' no longer opens ingame terraform bar in scenario editor bar, but the land generator one
- Feature: [ 1095110 ] Create Lake and draggable Create Desert tools (initial implementation GoneWacko), also added sticky buttons to land generator and town generator
- CodeChange: moved around some of the draggable tools, demystifying them
- CodeChange: change CmdBuildCanal to allow for XANDY dragging not only X or Y (only scenario editor)
- CodeChange: add some more enums to sprites.
- TODO: merge most of the ingame and scenario editor land terraform code. This can only be done after OnClickButton function is changed so it also includes the backreference to the widget being clicked, postponed to after 0.4.0
2005-04-02 23:05:09 +00:00
|
|
|
_generating_world = true; // used to create green terraformed land
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
if (_terraform_size == 1) {
|
2006-03-12 10:15:36 +00:00
|
|
|
StringID msg =
|
|
|
|
mode ? STR_0808_CAN_T_RAISE_LAND_HERE : STR_0809_CAN_T_LOWER_LAND_HERE;
|
|
|
|
|
|
|
|
DoCommandP(tile, 8, (uint32)mode, CcTerraform, CMD_TERRAFORM_LAND | CMD_AUTO | CMD_MSG(msg));
|
2004-08-09 17:04:08 +00:00
|
|
|
} else {
|
2004-12-04 09:26:39 +00:00
|
|
|
SndPlayTileFx(SND_1F_SPLAT, tile);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2005-04-14 22:59:49 +00:00
|
|
|
assert(_terraform_size != 0);
|
|
|
|
// check out for map overflows
|
|
|
|
sizex = min(MapSizeX() - TileX(tile) - 1, _terraform_size);
|
|
|
|
sizey = min(MapSizeY() - TileY(tile) - 1, _terraform_size);
|
|
|
|
|
|
|
|
if (sizex == 0 || sizey == 0) return;
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
if (mode != 0) {
|
|
|
|
/* Raise land */
|
(svn r2136) - Fix: [ 1174313 ] terrain hotkeys nonfunctional in scenario editor (D,Q,W,E,R,T,Y,U fltr)
- Fix: 'L' no longer opens ingame terraform bar in scenario editor bar, but the land generator one
- Feature: [ 1095110 ] Create Lake and draggable Create Desert tools (initial implementation GoneWacko), also added sticky buttons to land generator and town generator
- CodeChange: moved around some of the draggable tools, demystifying them
- CodeChange: change CmdBuildCanal to allow for XANDY dragging not only X or Y (only scenario editor)
- CodeChange: add some more enums to sprites.
- TODO: merge most of the ingame and scenario editor land terraform code. This can only be done after OnClickButton function is changed so it also includes the backreference to the widget being clicked, postponed to after 0.4.0
2005-04-02 23:05:09 +00:00
|
|
|
h = 15; // XXX - max height
|
2005-04-14 22:59:49 +00:00
|
|
|
BEGIN_TILE_LOOP(tile2, sizex, sizey, tile) {
|
2005-01-16 14:50:01 +00:00
|
|
|
h = min(h, TileHeight(tile2));
|
2005-04-14 22:59:49 +00:00
|
|
|
} END_TILE_LOOP(tile2, sizex, sizey, tile)
|
2004-08-09 17:04:08 +00:00
|
|
|
} else {
|
|
|
|
/* Lower land */
|
|
|
|
h = 0;
|
2005-04-14 22:59:49 +00:00
|
|
|
BEGIN_TILE_LOOP(tile2, sizex, sizey, tile) {
|
2005-01-16 14:50:01 +00:00
|
|
|
h = max(h, TileHeight(tile2));
|
2005-04-14 22:59:49 +00:00
|
|
|
} END_TILE_LOOP(tile2, sizex, sizey, tile)
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2005-04-14 22:59:49 +00:00
|
|
|
BEGIN_TILE_LOOP(tile2, sizex, sizey, tile) {
|
2005-01-16 14:50:01 +00:00
|
|
|
if (TileHeight(tile2) == h) {
|
2004-08-09 17:04:08 +00:00
|
|
|
DoCommandP(tile2, 8, (uint32)mode, NULL, CMD_TERRAFORM_LAND | CMD_AUTO);
|
|
|
|
}
|
2005-04-14 22:59:49 +00:00
|
|
|
} END_TILE_LOOP(tile2, sizex, sizey, tile)
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
_generating_world = false;
|
|
|
|
}
|
|
|
|
|
2005-06-24 12:38:35 +00:00
|
|
|
static void PlaceProc_RaiseBigLand(TileIndex tile)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
|
|
|
CommonRaiseLowerBigLand(tile, 1);
|
|
|
|
}
|
|
|
|
|
2005-06-24 12:38:35 +00:00
|
|
|
static void PlaceProc_LowerBigLand(TileIndex tile)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
|
|
|
CommonRaiseLowerBigLand(tile, 0);
|
|
|
|
}
|
|
|
|
|
2005-06-24 12:38:35 +00:00
|
|
|
static void PlaceProc_RockyArea(TileIndex tile)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2005-11-07 16:19:45 +00:00
|
|
|
VpStartPlaceSizing(tile, VPM_X_AND_Y | GUI_PlaceProc_RockyArea);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2005-06-24 12:38:35 +00:00
|
|
|
static void PlaceProc_LightHouse(TileIndex tile)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2006-04-23 13:48:16 +00:00
|
|
|
if (!IsTileType(tile, MP_CLEAR) || IsSteepSlope(GetTileSlope(tile, NULL))) {
|
2004-08-09 17:04:08 +00:00
|
|
|
return;
|
2005-11-16 11:52:21 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2006-03-23 20:47:56 +00:00
|
|
|
MakeLighthouse(tile);
|
|
|
|
MarkTileDirtyByTile(tile);
|
2004-12-04 09:26:39 +00:00
|
|
|
SndPlayTileFx(SND_1F_SPLAT, tile);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2005-06-24 12:38:35 +00:00
|
|
|
static void PlaceProc_Transmitter(TileIndex tile)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2006-04-23 13:48:16 +00:00
|
|
|
if (!IsTileType(tile, MP_CLEAR) || IsSteepSlope(GetTileSlope(tile, NULL))) {
|
2004-08-09 17:04:08 +00:00
|
|
|
return;
|
2005-11-16 11:52:21 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2006-03-23 20:47:56 +00:00
|
|
|
MakeTransmitter(tile);
|
|
|
|
MarkTileDirtyByTile(tile);
|
2004-12-04 09:26:39 +00:00
|
|
|
SndPlayTileFx(SND_1F_SPLAT, tile);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
(svn r2136) - Fix: [ 1174313 ] terrain hotkeys nonfunctional in scenario editor (D,Q,W,E,R,T,Y,U fltr)
- Fix: 'L' no longer opens ingame terraform bar in scenario editor bar, but the land generator one
- Feature: [ 1095110 ] Create Lake and draggable Create Desert tools (initial implementation GoneWacko), also added sticky buttons to land generator and town generator
- CodeChange: moved around some of the draggable tools, demystifying them
- CodeChange: change CmdBuildCanal to allow for XANDY dragging not only X or Y (only scenario editor)
- CodeChange: add some more enums to sprites.
- TODO: merge most of the ingame and scenario editor land terraform code. This can only be done after OnClickButton function is changed so it also includes the backreference to the widget being clicked, postponed to after 0.4.0
2005-04-02 23:05:09 +00:00
|
|
|
static void PlaceProc_DesertArea(TileIndex tile)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
(svn r2136) - Fix: [ 1174313 ] terrain hotkeys nonfunctional in scenario editor (D,Q,W,E,R,T,Y,U fltr)
- Fix: 'L' no longer opens ingame terraform bar in scenario editor bar, but the land generator one
- Feature: [ 1095110 ] Create Lake and draggable Create Desert tools (initial implementation GoneWacko), also added sticky buttons to land generator and town generator
- CodeChange: moved around some of the draggable tools, demystifying them
- CodeChange: change CmdBuildCanal to allow for XANDY dragging not only X or Y (only scenario editor)
- CodeChange: add some more enums to sprites.
- TODO: merge most of the ingame and scenario editor land terraform code. This can only be done after OnClickButton function is changed so it also includes the backreference to the widget being clicked, postponed to after 0.4.0
2005-04-02 23:05:09 +00:00
|
|
|
VpStartPlaceSizing(tile, VPM_X_AND_Y | GUI_PlaceProc_DesertArea);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void PlaceProc_WaterArea(TileIndex tile)
|
|
|
|
{
|
|
|
|
VpStartPlaceSizing(tile, VPM_X_AND_Y | GUI_PlaceProc_WaterArea);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static const Widget _scen_edit_land_gen_widgets[] = {
|
2005-12-07 15:48:52 +00:00
|
|
|
{ WWT_CLOSEBOX, RESIZE_NONE, 7, 0, 10, 0, 13, STR_00C5, STR_018B_CLOSE_WINDOW},
|
(svn r2136) - Fix: [ 1174313 ] terrain hotkeys nonfunctional in scenario editor (D,Q,W,E,R,T,Y,U fltr)
- Fix: 'L' no longer opens ingame terraform bar in scenario editor bar, but the land generator one
- Feature: [ 1095110 ] Create Lake and draggable Create Desert tools (initial implementation GoneWacko), also added sticky buttons to land generator and town generator
- CodeChange: moved around some of the draggable tools, demystifying them
- CodeChange: change CmdBuildCanal to allow for XANDY dragging not only X or Y (only scenario editor)
- CodeChange: add some more enums to sprites.
- TODO: merge most of the ingame and scenario editor land terraform code. This can only be done after OnClickButton function is changed so it also includes the backreference to the widget being clicked, postponed to after 0.4.0
2005-04-02 23:05:09 +00:00
|
|
|
{ WWT_CAPTION, RESIZE_NONE, 7, 11, 169, 0, 13, STR_0223_LAND_GENERATION, STR_018C_WINDOW_TITLE_DRAG_THIS},
|
|
|
|
{ WWT_STICKYBOX, RESIZE_NONE, 7, 170, 181, 0, 13, STR_NULL, STR_STICKY_BUTTON},
|
(svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
- New optional landscape generator (TerraGenesis Perlin)
- Load heightmaps (either BMP or PNG)
- Progress dialog while generating worlds (no longer a 'hanging' screen)
- New dialogs for NewGame, Create Scenario and Play Heightmap
- Easier to configure your landscape
- More things to configure (tree-placer, ..)
- Speedup of world generation
- New console command 'restart': restart the map EXACTLY as it was when you
first started it (needs a game made after or with this commit)
- New console command 'getseed': get the seed of your map and share it with
others (of course only works with generated maps)
- Many new, world generation related, things
- Many internal cleanups and rewrites
Many tnx to those people who helped making this:
Belugas, DaleStan, glx, KUDr, RichK67, Rubidium, and TrueLight (alfabetic)
Many tnx to those who helped testing:
Arnau, Bjarni, and tokai (alfabetic)
And to all other people who helped testing and sending comments / bugs
Stats: 673 lines changed, 3534 new lines, 79 new strings
2006-08-19 10:00:30 +00:00
|
|
|
{ WWT_IMGBTN, RESIZE_NONE, 7, 0, 181, 14, 95, STR_NULL, STR_NULL},
|
(svn r2136) - Fix: [ 1174313 ] terrain hotkeys nonfunctional in scenario editor (D,Q,W,E,R,T,Y,U fltr)
- Fix: 'L' no longer opens ingame terraform bar in scenario editor bar, but the land generator one
- Feature: [ 1095110 ] Create Lake and draggable Create Desert tools (initial implementation GoneWacko), also added sticky buttons to land generator and town generator
- CodeChange: moved around some of the draggable tools, demystifying them
- CodeChange: change CmdBuildCanal to allow for XANDY dragging not only X or Y (only scenario editor)
- CodeChange: add some more enums to sprites.
- TODO: merge most of the ingame and scenario editor land terraform code. This can only be done after OnClickButton function is changed so it also includes the backreference to the widget being clicked, postponed to after 0.4.0
2005-04-02 23:05:09 +00:00
|
|
|
{ WWT_IMGBTN, RESIZE_NONE, 14, 2, 23, 14, 35, SPR_IMG_DYNAMITE, STR_018D_DEMOLISH_BUILDINGS_ETC},
|
2006-03-03 20:48:03 +00:00
|
|
|
{ WWT_IMGBTN, RESIZE_NONE, 14, 24, 45, 14, 35, SPR_IMG_TERRAFORM_DOWN, STR_018E_LOWER_A_CORNER_OF_LAND},
|
|
|
|
{ WWT_IMGBTN, RESIZE_NONE, 14, 46, 67, 14, 35, SPR_IMG_TERRAFORM_UP, STR_018F_RAISE_A_CORNER_OF_LAND},
|
(svn r2136) - Fix: [ 1174313 ] terrain hotkeys nonfunctional in scenario editor (D,Q,W,E,R,T,Y,U fltr)
- Fix: 'L' no longer opens ingame terraform bar in scenario editor bar, but the land generator one
- Feature: [ 1095110 ] Create Lake and draggable Create Desert tools (initial implementation GoneWacko), also added sticky buttons to land generator and town generator
- CodeChange: moved around some of the draggable tools, demystifying them
- CodeChange: change CmdBuildCanal to allow for XANDY dragging not only X or Y (only scenario editor)
- CodeChange: add some more enums to sprites.
- TODO: merge most of the ingame and scenario editor land terraform code. This can only be done after OnClickButton function is changed so it also includes the backreference to the widget being clicked, postponed to after 0.4.0
2005-04-02 23:05:09 +00:00
|
|
|
{ WWT_IMGBTN, RESIZE_NONE, 14, 68, 89, 14, 35, SPR_IMG_LEVEL_LAND, STR_LEVEL_LAND_TOOLTIP},
|
|
|
|
{ WWT_IMGBTN, RESIZE_NONE, 14, 90, 111, 14, 35, SPR_IMG_BUILD_CANAL, STR_CREATE_LAKE},
|
|
|
|
{ WWT_IMGBTN, RESIZE_NONE, 14, 112, 134, 14, 35, SPR_IMG_ROCKS, STR_028C_PLACE_ROCKY_AREAS_ON_LANDSCAPE},
|
|
|
|
{ WWT_IMGBTN, RESIZE_NONE, 14, 135, 157, 14, 35, SPR_IMG_LIGHTHOUSE_DESERT, STR_NULL}, // XXX - dynamic
|
|
|
|
{ WWT_IMGBTN, RESIZE_NONE, 14, 158, 179, 14, 35, SPR_IMG_TRANSMITTER, STR_028E_PLACE_TRANSMITTER},
|
|
|
|
{ WWT_TEXTBTN, RESIZE_NONE, 14, 139, 149, 43, 54, STR_0224, STR_0228_INCREASE_SIZE_OF_LAND_AREA},
|
|
|
|
{ WWT_TEXTBTN, RESIZE_NONE, 14, 139, 149, 56, 67, STR_0225, STR_0229_DECREASE_SIZE_OF_LAND_AREA},
|
(svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
- New optional landscape generator (TerraGenesis Perlin)
- Load heightmaps (either BMP or PNG)
- Progress dialog while generating worlds (no longer a 'hanging' screen)
- New dialogs for NewGame, Create Scenario and Play Heightmap
- Easier to configure your landscape
- More things to configure (tree-placer, ..)
- Speedup of world generation
- New console command 'restart': restart the map EXACTLY as it was when you
first started it (needs a game made after or with this commit)
- New console command 'getseed': get the seed of your map and share it with
others (of course only works with generated maps)
- Many new, world generation related, things
- Many internal cleanups and rewrites
Many tnx to those people who helped making this:
Belugas, DaleStan, glx, KUDr, RichK67, Rubidium, and TrueLight (alfabetic)
Many tnx to those who helped testing:
Arnau, Bjarni, and tokai (alfabetic)
And to all other people who helped testing and sending comments / bugs
Stats: 673 lines changed, 3534 new lines, 79 new strings
2006-08-19 10:00:30 +00:00
|
|
|
{ WWT_TEXTBTN, RESIZE_NONE, 14, 34, 149, 75, 86, STR_SE_NEW_WORLD, STR_022A_GENERATE_RANDOM_LAND},
|
2004-09-07 21:48:09 +00:00
|
|
|
{ WIDGETS_END},
|
2004-08-09 17:04:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static const int8 _multi_terraform_coords[][2] = {
|
|
|
|
{ 0, -2},
|
2006-08-22 14:38:37 +00:00
|
|
|
{ 4, 0}, { -4, 0}, { 0, 2},
|
|
|
|
{ -8, 2}, { -4, 4}, { 0, 6}, { 4, 4}, { 8, 2},
|
|
|
|
{-12, 0}, { -8, -2}, { -4, -4}, { 0, -6}, { 4, -4}, { 8, -2}, { 12, 0},
|
|
|
|
{-16, 2}, {-12, 4}, { -8, 6}, { -4, 8}, { 0, 10}, { 4, 8}, { 8, 6}, { 12, 4}, { 16, 2},
|
|
|
|
{-20, 0}, {-16, -2}, {-12, -4}, { -8, -6}, { -4, -8}, { 0,-10}, { 4, -8}, { 8, -6}, { 12, -4}, { 16, -2}, { 20, 0},
|
|
|
|
{-24, 2}, {-20, 4}, {-16, 6}, {-12, 8}, { -8, 10}, { -4, 12}, { 0, 14}, { 4, 12}, { 8, 10}, { 12, 8}, { 16, 6}, { 20, 4}, { 24, 2},
|
|
|
|
{-28, 0}, {-24, -2}, {-20, -4}, {-16, -6}, {-12, -8}, { -8,-10}, { -4,-12}, { 0,-14}, { 4,-12}, { 8,-10}, { 12, -8}, { 16, -6}, { 20, -4}, { 24, -2}, { 28, 0},
|
2004-08-09 17:04:08 +00:00
|
|
|
};
|
|
|
|
|
(svn r2136) - Fix: [ 1174313 ] terrain hotkeys nonfunctional in scenario editor (D,Q,W,E,R,T,Y,U fltr)
- Fix: 'L' no longer opens ingame terraform bar in scenario editor bar, but the land generator one
- Feature: [ 1095110 ] Create Lake and draggable Create Desert tools (initial implementation GoneWacko), also added sticky buttons to land generator and town generator
- CodeChange: moved around some of the draggable tools, demystifying them
- CodeChange: change CmdBuildCanal to allow for XANDY dragging not only X or Y (only scenario editor)
- CodeChange: add some more enums to sprites.
- TODO: merge most of the ingame and scenario editor land terraform code. This can only be done after OnClickButton function is changed so it also includes the backreference to the widget being clicked, postponed to after 0.4.0
2005-04-02 23:05:09 +00:00
|
|
|
// TODO - Merge with terraform_gui.c (move there) after I have cooled down at its braindeadness
|
|
|
|
// and changed OnButtonClick to include the widget as well in the function decleration. Post 0.4.0 - Darkvater
|
|
|
|
static void EditorTerraformClick_Dynamite(Window *w)
|
|
|
|
{
|
|
|
|
HandlePlacePushButton(w, 4, ANIMCURSOR_DEMOLISH, 1, PlaceProc_DemolishArea);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void EditorTerraformClick_LowerBigLand(Window *w)
|
|
|
|
{
|
|
|
|
HandlePlacePushButton(w, 5, ANIMCURSOR_LOWERLAND, 2, PlaceProc_LowerBigLand);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void EditorTerraformClick_RaiseBigLand(Window *w)
|
|
|
|
{
|
|
|
|
HandlePlacePushButton(w, 6, ANIMCURSOR_RAISELAND, 2, PlaceProc_RaiseBigLand);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void EditorTerraformClick_LevelLand(Window *w)
|
|
|
|
{
|
|
|
|
HandlePlacePushButton(w, 7, SPR_CURSOR_LEVEL_LAND, 2, PlaceProc_LevelLand);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void EditorTerraformClick_WaterArea(Window *w)
|
|
|
|
{
|
|
|
|
HandlePlacePushButton(w, 8, SPR_CURSOR_CANAL, 1, PlaceProc_WaterArea);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void EditorTerraformClick_RockyArea(Window *w)
|
|
|
|
{
|
|
|
|
HandlePlacePushButton(w, 9, SPR_CURSOR_ROCKY_AREA, 1, PlaceProc_RockyArea);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void EditorTerraformClick_DesertLightHouse(Window *w)
|
|
|
|
{
|
|
|
|
HandlePlacePushButton(w, 10, SPR_CURSOR_LIGHTHOUSE, 1, (_opt.landscape == LT_DESERT) ? PlaceProc_DesertArea : PlaceProc_LightHouse);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void EditorTerraformClick_Transmitter(Window *w)
|
|
|
|
{
|
|
|
|
HandlePlacePushButton(w, 11, SPR_CURSOR_TRANSMITTER, 1, PlaceProc_Transmitter);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const uint16 _editor_terraform_keycodes[] = {
|
|
|
|
'D',
|
|
|
|
'Q',
|
|
|
|
'W',
|
|
|
|
'E',
|
|
|
|
'R',
|
|
|
|
'T',
|
|
|
|
'Y',
|
|
|
|
'U'
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef void OnButtonClick(Window *w);
|
|
|
|
static OnButtonClick * const _editor_terraform_button_proc[] = {
|
|
|
|
EditorTerraformClick_Dynamite,
|
|
|
|
EditorTerraformClick_LowerBigLand,
|
|
|
|
EditorTerraformClick_RaiseBigLand,
|
|
|
|
EditorTerraformClick_LevelLand,
|
|
|
|
EditorTerraformClick_WaterArea,
|
|
|
|
EditorTerraformClick_RockyArea,
|
|
|
|
EditorTerraformClick_DesertLightHouse,
|
|
|
|
EditorTerraformClick_Transmitter
|
|
|
|
};
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
static void ScenEditLandGenWndProc(Window *w, WindowEvent *e)
|
|
|
|
{
|
(svn r2136) - Fix: [ 1174313 ] terrain hotkeys nonfunctional in scenario editor (D,Q,W,E,R,T,Y,U fltr)
- Fix: 'L' no longer opens ingame terraform bar in scenario editor bar, but the land generator one
- Feature: [ 1095110 ] Create Lake and draggable Create Desert tools (initial implementation GoneWacko), also added sticky buttons to land generator and town generator
- CodeChange: moved around some of the draggable tools, demystifying them
- CodeChange: change CmdBuildCanal to allow for XANDY dragging not only X or Y (only scenario editor)
- CodeChange: add some more enums to sprites.
- TODO: merge most of the ingame and scenario editor land terraform code. This can only be done after OnClickButton function is changed so it also includes the backreference to the widget being clicked, postponed to after 0.4.0
2005-04-02 23:05:09 +00:00
|
|
|
switch (e->event) {
|
|
|
|
case WE_CREATE:
|
|
|
|
// XXX - lighthouse button is widget 10!! Don't forget when changing
|
|
|
|
w->widget[10].tooltips = (_opt.landscape == LT_DESERT) ? STR_028F_DEFINE_DESERT_AREA : STR_028D_PLACE_LIGHTHOUSE;
|
|
|
|
break;
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
case WE_PAINT:
|
|
|
|
DrawWindowWidgets(w);
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
|
|
|
int n = _terraform_size * _terraform_size;
|
|
|
|
const int8 *coords = &_multi_terraform_coords[0][0];
|
|
|
|
|
|
|
|
assert(n != 0);
|
|
|
|
do {
|
(svn r2136) - Fix: [ 1174313 ] terrain hotkeys nonfunctional in scenario editor (D,Q,W,E,R,T,Y,U fltr)
- Fix: 'L' no longer opens ingame terraform bar in scenario editor bar, but the land generator one
- Feature: [ 1095110 ] Create Lake and draggable Create Desert tools (initial implementation GoneWacko), also added sticky buttons to land generator and town generator
- CodeChange: moved around some of the draggable tools, demystifying them
- CodeChange: change CmdBuildCanal to allow for XANDY dragging not only X or Y (only scenario editor)
- CodeChange: add some more enums to sprites.
- TODO: merge most of the ingame and scenario editor land terraform code. This can only be done after OnClickButton function is changed so it also includes the backreference to the widget being clicked, postponed to after 0.4.0
2005-04-02 23:05:09 +00:00
|
|
|
DrawSprite(SPR_WHITE_POINT, 77 + coords[0], 55 + coords[1]);
|
2004-08-09 17:04:08 +00:00
|
|
|
coords += 2;
|
|
|
|
} while (--n);
|
|
|
|
}
|
|
|
|
|
2006-10-03 20:16:20 +00:00
|
|
|
if (IsWindowWidgetLowered(w, 5) || IsWindowWidgetLowered(w, 6)) // change area-size if raise/lower corner is selected
|
2004-08-09 17:04:08 +00:00
|
|
|
SetTileSelectSize(_terraform_size, _terraform_size);
|
(svn r2136) - Fix: [ 1174313 ] terrain hotkeys nonfunctional in scenario editor (D,Q,W,E,R,T,Y,U fltr)
- Fix: 'L' no longer opens ingame terraform bar in scenario editor bar, but the land generator one
- Feature: [ 1095110 ] Create Lake and draggable Create Desert tools (initial implementation GoneWacko), also added sticky buttons to land generator and town generator
- CodeChange: moved around some of the draggable tools, demystifying them
- CodeChange: change CmdBuildCanal to allow for XANDY dragging not only X or Y (only scenario editor)
- CodeChange: add some more enums to sprites.
- TODO: merge most of the ingame and scenario editor land terraform code. This can only be done after OnClickButton function is changed so it also includes the backreference to the widget being clicked, postponed to after 0.4.0
2005-04-02 23:05:09 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
break;
|
(svn r2136) - Fix: [ 1174313 ] terrain hotkeys nonfunctional in scenario editor (D,Q,W,E,R,T,Y,U fltr)
- Fix: 'L' no longer opens ingame terraform bar in scenario editor bar, but the land generator one
- Feature: [ 1095110 ] Create Lake and draggable Create Desert tools (initial implementation GoneWacko), also added sticky buttons to land generator and town generator
- CodeChange: moved around some of the draggable tools, demystifying them
- CodeChange: change CmdBuildCanal to allow for XANDY dragging not only X or Y (only scenario editor)
- CodeChange: add some more enums to sprites.
- TODO: merge most of the ingame and scenario editor land terraform code. This can only be done after OnClickButton function is changed so it also includes the backreference to the widget being clicked, postponed to after 0.4.0
2005-04-02 23:05:09 +00:00
|
|
|
|
|
|
|
case WE_KEYPRESS: {
|
2005-11-14 19:48:04 +00:00
|
|
|
uint i;
|
(svn r2136) - Fix: [ 1174313 ] terrain hotkeys nonfunctional in scenario editor (D,Q,W,E,R,T,Y,U fltr)
- Fix: 'L' no longer opens ingame terraform bar in scenario editor bar, but the land generator one
- Feature: [ 1095110 ] Create Lake and draggable Create Desert tools (initial implementation GoneWacko), also added sticky buttons to land generator and town generator
- CodeChange: moved around some of the draggable tools, demystifying them
- CodeChange: change CmdBuildCanal to allow for XANDY dragging not only X or Y (only scenario editor)
- CodeChange: add some more enums to sprites.
- TODO: merge most of the ingame and scenario editor land terraform code. This can only be done after OnClickButton function is changed so it also includes the backreference to the widget being clicked, postponed to after 0.4.0
2005-04-02 23:05:09 +00:00
|
|
|
|
|
|
|
for (i = 0; i != lengthof(_editor_terraform_keycodes); i++) {
|
2006-09-23 02:39:24 +00:00
|
|
|
if (e->we.keypress.keycode == _editor_terraform_keycodes[i]) {
|
|
|
|
e->we.keypress.cont = false;
|
(svn r2136) - Fix: [ 1174313 ] terrain hotkeys nonfunctional in scenario editor (D,Q,W,E,R,T,Y,U fltr)
- Fix: 'L' no longer opens ingame terraform bar in scenario editor bar, but the land generator one
- Feature: [ 1095110 ] Create Lake and draggable Create Desert tools (initial implementation GoneWacko), also added sticky buttons to land generator and town generator
- CodeChange: moved around some of the draggable tools, demystifying them
- CodeChange: change CmdBuildCanal to allow for XANDY dragging not only X or Y (only scenario editor)
- CodeChange: add some more enums to sprites.
- TODO: merge most of the ingame and scenario editor land terraform code. This can only be done after OnClickButton function is changed so it also includes the backreference to the widget being clicked, postponed to after 0.4.0
2005-04-02 23:05:09 +00:00
|
|
|
_editor_terraform_button_proc[i](w);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} break;
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
case WE_CLICK:
|
2006-09-23 02:39:24 +00:00
|
|
|
switch (e->we.click.widget) {
|
(svn r2136) - Fix: [ 1174313 ] terrain hotkeys nonfunctional in scenario editor (D,Q,W,E,R,T,Y,U fltr)
- Fix: 'L' no longer opens ingame terraform bar in scenario editor bar, but the land generator one
- Feature: [ 1095110 ] Create Lake and draggable Create Desert tools (initial implementation GoneWacko), also added sticky buttons to land generator and town generator
- CodeChange: moved around some of the draggable tools, demystifying them
- CodeChange: change CmdBuildCanal to allow for XANDY dragging not only X or Y (only scenario editor)
- CodeChange: add some more enums to sprites.
- TODO: merge most of the ingame and scenario editor land terraform code. This can only be done after OnClickButton function is changed so it also includes the backreference to the widget being clicked, postponed to after 0.4.0
2005-04-02 23:05:09 +00:00
|
|
|
case 4: case 5: case 6: case 7: case 8: case 9: case 10: case 11:
|
2006-09-23 02:39:24 +00:00
|
|
|
_editor_terraform_button_proc[e->we.click.widget - 4](w);
|
2004-08-09 17:04:08 +00:00
|
|
|
break;
|
(svn r2136) - Fix: [ 1174313 ] terrain hotkeys nonfunctional in scenario editor (D,Q,W,E,R,T,Y,U fltr)
- Fix: 'L' no longer opens ingame terraform bar in scenario editor bar, but the land generator one
- Feature: [ 1095110 ] Create Lake and draggable Create Desert tools (initial implementation GoneWacko), also added sticky buttons to land generator and town generator
- CodeChange: moved around some of the draggable tools, demystifying them
- CodeChange: change CmdBuildCanal to allow for XANDY dragging not only X or Y (only scenario editor)
- CodeChange: add some more enums to sprites.
- TODO: merge most of the ingame and scenario editor land terraform code. This can only be done after OnClickButton function is changed so it also includes the backreference to the widget being clicked, postponed to after 0.4.0
2005-04-02 23:05:09 +00:00
|
|
|
case 12: case 13: { /* Increase/Decrease terraform size */
|
2006-09-23 02:39:24 +00:00
|
|
|
int size = (e->we.click.widget == 12) ? 1 : -1;
|
|
|
|
HandleButtonClick(w, e->we.click.widget);
|
2004-08-09 17:04:08 +00:00
|
|
|
size += _terraform_size;
|
(svn r2136) - Fix: [ 1174313 ] terrain hotkeys nonfunctional in scenario editor (D,Q,W,E,R,T,Y,U fltr)
- Fix: 'L' no longer opens ingame terraform bar in scenario editor bar, but the land generator one
- Feature: [ 1095110 ] Create Lake and draggable Create Desert tools (initial implementation GoneWacko), also added sticky buttons to land generator and town generator
- CodeChange: moved around some of the draggable tools, demystifying them
- CodeChange: change CmdBuildCanal to allow for XANDY dragging not only X or Y (only scenario editor)
- CodeChange: add some more enums to sprites.
- TODO: merge most of the ingame and scenario editor land terraform code. This can only be done after OnClickButton function is changed so it also includes the backreference to the widget being clicked, postponed to after 0.4.0
2005-04-02 23:05:09 +00:00
|
|
|
|
2006-08-28 18:53:03 +00:00
|
|
|
if (!IS_INT_INSIDE(size, 1, 8 + 1)) return;
|
2004-08-09 17:04:08 +00:00
|
|
|
_terraform_size = size;
|
(svn r2136) - Fix: [ 1174313 ] terrain hotkeys nonfunctional in scenario editor (D,Q,W,E,R,T,Y,U fltr)
- Fix: 'L' no longer opens ingame terraform bar in scenario editor bar, but the land generator one
- Feature: [ 1095110 ] Create Lake and draggable Create Desert tools (initial implementation GoneWacko), also added sticky buttons to land generator and town generator
- CodeChange: moved around some of the draggable tools, demystifying them
- CodeChange: change CmdBuildCanal to allow for XANDY dragging not only X or Y (only scenario editor)
- CodeChange: add some more enums to sprites.
- TODO: merge most of the ingame and scenario editor land terraform code. This can only be done after OnClickButton function is changed so it also includes the backreference to the widget being clicked, postponed to after 0.4.0
2005-04-02 23:05:09 +00:00
|
|
|
|
2004-12-04 09:26:39 +00:00
|
|
|
SndPlayFx(SND_15_BEEP);
|
2004-08-09 17:04:08 +00:00
|
|
|
SetWindowDirty(w);
|
(svn r2136) - Fix: [ 1174313 ] terrain hotkeys nonfunctional in scenario editor (D,Q,W,E,R,T,Y,U fltr)
- Fix: 'L' no longer opens ingame terraform bar in scenario editor bar, but the land generator one
- Feature: [ 1095110 ] Create Lake and draggable Create Desert tools (initial implementation GoneWacko), also added sticky buttons to land generator and town generator
- CodeChange: moved around some of the draggable tools, demystifying them
- CodeChange: change CmdBuildCanal to allow for XANDY dragging not only X or Y (only scenario editor)
- CodeChange: add some more enums to sprites.
- TODO: merge most of the ingame and scenario editor land terraform code. This can only be done after OnClickButton function is changed so it also includes the backreference to the widget being clicked, postponed to after 0.4.0
2005-04-02 23:05:09 +00:00
|
|
|
} break;
|
|
|
|
case 14: /* gen random land */
|
|
|
|
HandleButtonClick(w, 14);
|
(svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
- New optional landscape generator (TerraGenesis Perlin)
- Load heightmaps (either BMP or PNG)
- Progress dialog while generating worlds (no longer a 'hanging' screen)
- New dialogs for NewGame, Create Scenario and Play Heightmap
- Easier to configure your landscape
- More things to configure (tree-placer, ..)
- Speedup of world generation
- New console command 'restart': restart the map EXACTLY as it was when you
first started it (needs a game made after or with this commit)
- New console command 'getseed': get the seed of your map and share it with
others (of course only works with generated maps)
- Many new, world generation related, things
- Many internal cleanups and rewrites
Many tnx to those people who helped making this:
Belugas, DaleStan, glx, KUDr, RichK67, Rubidium, and TrueLight (alfabetic)
Many tnx to those who helped testing:
Arnau, Bjarni, and tokai (alfabetic)
And to all other people who helped testing and sending comments / bugs
Stats: 673 lines changed, 3534 new lines, 79 new strings
2006-08-19 10:00:30 +00:00
|
|
|
ShowCreateScenario();
|
2004-08-09 17:04:08 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
(svn r2136) - Fix: [ 1174313 ] terrain hotkeys nonfunctional in scenario editor (D,Q,W,E,R,T,Y,U fltr)
- Fix: 'L' no longer opens ingame terraform bar in scenario editor bar, but the land generator one
- Feature: [ 1095110 ] Create Lake and draggable Create Desert tools (initial implementation GoneWacko), also added sticky buttons to land generator and town generator
- CodeChange: moved around some of the draggable tools, demystifying them
- CodeChange: change CmdBuildCanal to allow for XANDY dragging not only X or Y (only scenario editor)
- CodeChange: add some more enums to sprites.
- TODO: merge most of the ingame and scenario editor land terraform code. This can only be done after OnClickButton function is changed so it also includes the backreference to the widget being clicked, postponed to after 0.4.0
2005-04-02 23:05:09 +00:00
|
|
|
|
2006-10-03 20:16:20 +00:00
|
|
|
case WE_TIMEOUT: {
|
|
|
|
int i;
|
|
|
|
for (i = 0; w->widget[i].type != WWT_LAST; i++) {
|
|
|
|
if (IsWindowWidgetLowered(w, i)) {
|
|
|
|
RaiseWindowWidget(w, i);
|
|
|
|
InvalidateWidget(w, i);
|
|
|
|
}
|
|
|
|
if (i == 3) i = 11;
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
break;
|
2006-10-03 20:16:20 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
case WE_PLACE_OBJ:
|
2006-09-23 02:39:24 +00:00
|
|
|
_place_proc(e->we.place.tile);
|
2004-08-09 17:04:08 +00:00
|
|
|
break;
|
(svn r2136) - Fix: [ 1174313 ] terrain hotkeys nonfunctional in scenario editor (D,Q,W,E,R,T,Y,U fltr)
- Fix: 'L' no longer opens ingame terraform bar in scenario editor bar, but the land generator one
- Feature: [ 1095110 ] Create Lake and draggable Create Desert tools (initial implementation GoneWacko), also added sticky buttons to land generator and town generator
- CodeChange: moved around some of the draggable tools, demystifying them
- CodeChange: change CmdBuildCanal to allow for XANDY dragging not only X or Y (only scenario editor)
- CodeChange: add some more enums to sprites.
- TODO: merge most of the ingame and scenario editor land terraform code. This can only be done after OnClickButton function is changed so it also includes the backreference to the widget being clicked, postponed to after 0.4.0
2005-04-02 23:05:09 +00:00
|
|
|
case WE_PLACE_DRAG:
|
2006-09-23 02:39:24 +00:00
|
|
|
VpSelectTilesWithMethod(e->we.place.pt.x, e->we.place.pt.y, e->we.place.userdata & 0xF);
|
(svn r2136) - Fix: [ 1174313 ] terrain hotkeys nonfunctional in scenario editor (D,Q,W,E,R,T,Y,U fltr)
- Fix: 'L' no longer opens ingame terraform bar in scenario editor bar, but the land generator one
- Feature: [ 1095110 ] Create Lake and draggable Create Desert tools (initial implementation GoneWacko), also added sticky buttons to land generator and town generator
- CodeChange: moved around some of the draggable tools, demystifying them
- CodeChange: change CmdBuildCanal to allow for XANDY dragging not only X or Y (only scenario editor)
- CodeChange: add some more enums to sprites.
- TODO: merge most of the ingame and scenario editor land terraform code. This can only be done after OnClickButton function is changed so it also includes the backreference to the widget being clicked, postponed to after 0.4.0
2005-04-02 23:05:09 +00:00
|
|
|
break;
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
case WE_PLACE_MOUSEUP:
|
2006-09-23 02:39:24 +00:00
|
|
|
if (e->we.click.pt.x != -1) {
|
|
|
|
if ((e->we.place.userdata & 0xF) == VPM_X_AND_Y) // dragged actions
|
(svn r2136) - Fix: [ 1174313 ] terrain hotkeys nonfunctional in scenario editor (D,Q,W,E,R,T,Y,U fltr)
- Fix: 'L' no longer opens ingame terraform bar in scenario editor bar, but the land generator one
- Feature: [ 1095110 ] Create Lake and draggable Create Desert tools (initial implementation GoneWacko), also added sticky buttons to land generator and town generator
- CodeChange: moved around some of the draggable tools, demystifying them
- CodeChange: change CmdBuildCanal to allow for XANDY dragging not only X or Y (only scenario editor)
- CodeChange: add some more enums to sprites.
- TODO: merge most of the ingame and scenario editor land terraform code. This can only be done after OnClickButton function is changed so it also includes the backreference to the widget being clicked, postponed to after 0.4.0
2005-04-02 23:05:09 +00:00
|
|
|
GUIPlaceProcDragXY(e);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
(svn r2136) - Fix: [ 1174313 ] terrain hotkeys nonfunctional in scenario editor (D,Q,W,E,R,T,Y,U fltr)
- Fix: 'L' no longer opens ingame terraform bar in scenario editor bar, but the land generator one
- Feature: [ 1095110 ] Create Lake and draggable Create Desert tools (initial implementation GoneWacko), also added sticky buttons to land generator and town generator
- CodeChange: moved around some of the draggable tools, demystifying them
- CodeChange: change CmdBuildCanal to allow for XANDY dragging not only X or Y (only scenario editor)
- CodeChange: add some more enums to sprites.
- TODO: merge most of the ingame and scenario editor land terraform code. This can only be done after OnClickButton function is changed so it also includes the backreference to the widget being clicked, postponed to after 0.4.0
2005-04-02 23:05:09 +00:00
|
|
|
break;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
case WE_ABORT_PLACE_OBJ:
|
2006-10-03 20:16:20 +00:00
|
|
|
RaiseWindowButtons(w);
|
2004-08-09 17:04:08 +00:00
|
|
|
SetWindowDirty(w);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static const WindowDesc _scen_edit_land_gen_desc = {
|
(svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
- New optional landscape generator (TerraGenesis Perlin)
- Load heightmaps (either BMP or PNG)
- Progress dialog while generating worlds (no longer a 'hanging' screen)
- New dialogs for NewGame, Create Scenario and Play Heightmap
- Easier to configure your landscape
- More things to configure (tree-placer, ..)
- Speedup of world generation
- New console command 'restart': restart the map EXACTLY as it was when you
first started it (needs a game made after or with this commit)
- New console command 'getseed': get the seed of your map and share it with
others (of course only works with generated maps)
- Many new, world generation related, things
- Many internal cleanups and rewrites
Many tnx to those people who helped making this:
Belugas, DaleStan, glx, KUDr, RichK67, Rubidium, and TrueLight (alfabetic)
Many tnx to those who helped testing:
Arnau, Bjarni, and tokai (alfabetic)
And to all other people who helped testing and sending comments / bugs
Stats: 673 lines changed, 3534 new lines, 79 new strings
2006-08-19 10:00:30 +00:00
|
|
|
-1,-1, 182, 96,
|
2004-08-09 17:04:08 +00:00
|
|
|
WC_SCEN_LAND_GEN,0,
|
(svn r2136) - Fix: [ 1174313 ] terrain hotkeys nonfunctional in scenario editor (D,Q,W,E,R,T,Y,U fltr)
- Fix: 'L' no longer opens ingame terraform bar in scenario editor bar, but the land generator one
- Feature: [ 1095110 ] Create Lake and draggable Create Desert tools (initial implementation GoneWacko), also added sticky buttons to land generator and town generator
- CodeChange: moved around some of the draggable tools, demystifying them
- CodeChange: change CmdBuildCanal to allow for XANDY dragging not only X or Y (only scenario editor)
- CodeChange: add some more enums to sprites.
- TODO: merge most of the ingame and scenario editor land terraform code. This can only be done after OnClickButton function is changed so it also includes the backreference to the widget being clicked, postponed to after 0.4.0
2005-04-02 23:05:09 +00:00
|
|
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_STICKY_BUTTON,
|
2004-08-09 17:04:08 +00:00
|
|
|
_scen_edit_land_gen_widgets,
|
|
|
|
ScenEditLandGenWndProc,
|
|
|
|
};
|
|
|
|
|
(svn r2136) - Fix: [ 1174313 ] terrain hotkeys nonfunctional in scenario editor (D,Q,W,E,R,T,Y,U fltr)
- Fix: 'L' no longer opens ingame terraform bar in scenario editor bar, but the land generator one
- Feature: [ 1095110 ] Create Lake and draggable Create Desert tools (initial implementation GoneWacko), also added sticky buttons to land generator and town generator
- CodeChange: moved around some of the draggable tools, demystifying them
- CodeChange: change CmdBuildCanal to allow for XANDY dragging not only X or Y (only scenario editor)
- CodeChange: add some more enums to sprites.
- TODO: merge most of the ingame and scenario editor land terraform code. This can only be done after OnClickButton function is changed so it also includes the backreference to the widget being clicked, postponed to after 0.4.0
2005-04-02 23:05:09 +00:00
|
|
|
static inline void ShowEditorTerraformToolBar(void)
|
|
|
|
{
|
|
|
|
AllocateWindowDescFront(&_scen_edit_land_gen_desc, 0);
|
|
|
|
}
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
static void ToolbarScenGenLand(Window *w)
|
|
|
|
{
|
|
|
|
HandleButtonClick(w, 11);
|
2004-12-04 09:26:39 +00:00
|
|
|
SndPlayFx(SND_15_BEEP);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
(svn r2136) - Fix: [ 1174313 ] terrain hotkeys nonfunctional in scenario editor (D,Q,W,E,R,T,Y,U fltr)
- Fix: 'L' no longer opens ingame terraform bar in scenario editor bar, but the land generator one
- Feature: [ 1095110 ] Create Lake and draggable Create Desert tools (initial implementation GoneWacko), also added sticky buttons to land generator and town generator
- CodeChange: moved around some of the draggable tools, demystifying them
- CodeChange: change CmdBuildCanal to allow for XANDY dragging not only X or Y (only scenario editor)
- CodeChange: add some more enums to sprites.
- TODO: merge most of the ingame and scenario editor land terraform code. This can only be done after OnClickButton function is changed so it also includes the backreference to the widget being clicked, postponed to after 0.4.0
2005-04-02 23:05:09 +00:00
|
|
|
ShowEditorTerraformToolBar();
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2005-06-24 12:38:35 +00:00
|
|
|
void CcBuildTown(bool success, TileIndex tile, uint32 p1, uint32 p2)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
|
|
|
if (success) {
|
2004-12-04 09:26:39 +00:00
|
|
|
SndPlayTileFx(SND_1F_SPLAT, tile);
|
2004-08-09 17:04:08 +00:00
|
|
|
ResetObjectToPlace();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-06-24 12:38:35 +00:00
|
|
|
static void PlaceProc_Town(TileIndex tile)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2006-10-03 20:16:20 +00:00
|
|
|
DoCommandP(tile, _scengen_town_size, 0, CcBuildTown, CMD_BUILD_TOWN | CMD_MSG(STR_0236_CAN_T_BUILD_TOWN_HERE));
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static const Widget _scen_edit_town_gen_widgets[] = {
|
2005-12-07 15:48:52 +00:00
|
|
|
{ WWT_CLOSEBOX, RESIZE_NONE, 7, 0, 10, 0, 13, STR_00C5, STR_018B_CLOSE_WINDOW},
|
(svn r2136) - Fix: [ 1174313 ] terrain hotkeys nonfunctional in scenario editor (D,Q,W,E,R,T,Y,U fltr)
- Fix: 'L' no longer opens ingame terraform bar in scenario editor bar, but the land generator one
- Feature: [ 1095110 ] Create Lake and draggable Create Desert tools (initial implementation GoneWacko), also added sticky buttons to land generator and town generator
- CodeChange: moved around some of the draggable tools, demystifying them
- CodeChange: change CmdBuildCanal to allow for XANDY dragging not only X or Y (only scenario editor)
- CodeChange: add some more enums to sprites.
- TODO: merge most of the ingame and scenario editor land terraform code. This can only be done after OnClickButton function is changed so it also includes the backreference to the widget being clicked, postponed to after 0.4.0
2005-04-02 23:05:09 +00:00
|
|
|
{ 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_IMGBTN, RESIZE_NONE, 7, 0, 159, 14, 81, 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},
|
2006-08-22 15:23:25 +00:00
|
|
|
{ WWT_LABEL, RESIZE_NONE, 7, 0, 147, 54, 67, STR_02A5_TOWN_SIZE, STR_NULL},
|
2004-09-07 21:48:09 +00:00
|
|
|
{ WIDGETS_END},
|
2004-08-09 17:04:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static void ScenEditTownGenWndProc(Window *w, WindowEvent *e)
|
|
|
|
{
|
2005-11-14 19:48:04 +00:00
|
|
|
switch (e->event) {
|
2004-08-09 17:04:08 +00:00
|
|
|
case WE_PAINT:
|
|
|
|
DrawWindowWidgets(w);
|
|
|
|
break;
|
|
|
|
|
2006-04-27 11:19:12 +00:00
|
|
|
case WE_CREATE:
|
2006-10-03 20:16:20 +00:00
|
|
|
LowerWindowWidget(w, _scengen_town_size + 7);
|
2006-04-27 11:19:12 +00:00
|
|
|
break;
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
case WE_CLICK:
|
2006-09-23 02:39:24 +00:00
|
|
|
switch (e->we.click.widget) {
|
(svn r2136) - Fix: [ 1174313 ] terrain hotkeys nonfunctional in scenario editor (D,Q,W,E,R,T,Y,U fltr)
- Fix: 'L' no longer opens ingame terraform bar in scenario editor bar, but the land generator one
- Feature: [ 1095110 ] Create Lake and draggable Create Desert tools (initial implementation GoneWacko), also added sticky buttons to land generator and town generator
- CodeChange: moved around some of the draggable tools, demystifying them
- CodeChange: change CmdBuildCanal to allow for XANDY dragging not only X or Y (only scenario editor)
- CodeChange: add some more enums to sprites.
- TODO: merge most of the ingame and scenario editor land terraform code. This can only be done after OnClickButton function is changed so it also includes the backreference to the widget being clicked, postponed to after 0.4.0
2005-04-02 23:05:09 +00:00
|
|
|
case 4: /* new town */
|
|
|
|
HandlePlacePushButton(w, 4, SPR_CURSOR_TOWN, 1, PlaceProc_Town);
|
2004-08-09 17:04:08 +00:00
|
|
|
break;
|
(svn r2136) - Fix: [ 1174313 ] terrain hotkeys nonfunctional in scenario editor (D,Q,W,E,R,T,Y,U fltr)
- Fix: 'L' no longer opens ingame terraform bar in scenario editor bar, but the land generator one
- Feature: [ 1095110 ] Create Lake and draggable Create Desert tools (initial implementation GoneWacko), also added sticky buttons to land generator and town generator
- CodeChange: moved around some of the draggable tools, demystifying them
- CodeChange: change CmdBuildCanal to allow for XANDY dragging not only X or Y (only scenario editor)
- CodeChange: add some more enums to sprites.
- TODO: merge most of the ingame and scenario editor land terraform code. This can only be done after OnClickButton function is changed so it also includes the backreference to the widget being clicked, postponed to after 0.4.0
2005-04-02 23:05:09 +00:00
|
|
|
case 5: {/* random town */
|
2004-08-09 17:04:08 +00:00
|
|
|
Town *t;
|
|
|
|
|
(svn r2136) - Fix: [ 1174313 ] terrain hotkeys nonfunctional in scenario editor (D,Q,W,E,R,T,Y,U fltr)
- Fix: 'L' no longer opens ingame terraform bar in scenario editor bar, but the land generator one
- Feature: [ 1095110 ] Create Lake and draggable Create Desert tools (initial implementation GoneWacko), also added sticky buttons to land generator and town generator
- CodeChange: moved around some of the draggable tools, demystifying them
- CodeChange: change CmdBuildCanal to allow for XANDY dragging not only X or Y (only scenario editor)
- CodeChange: add some more enums to sprites.
- TODO: merge most of the ingame and scenario editor land terraform code. This can only be done after OnClickButton function is changed so it also includes the backreference to the widget being clicked, postponed to after 0.4.0
2005-04-02 23:05:09 +00:00
|
|
|
HandleButtonClick(w, 5);
|
2004-08-09 17:04:08 +00:00
|
|
|
_generating_world = true;
|
2006-10-03 20:16:20 +00:00
|
|
|
t = CreateRandomTown(20, _scengen_town_size);
|
2004-08-09 17:04:08 +00:00
|
|
|
_generating_world = false;
|
2005-09-16 00:33:33 +00:00
|
|
|
|
|
|
|
if (t == NULL) {
|
|
|
|
ShowErrorMessage(STR_NO_SPACE_FOR_TOWN, STR_CANNOT_GENERATE_TOWN, 0, 0);
|
2005-11-14 19:48:04 +00:00
|
|
|
} else {
|
2004-08-09 17:04:08 +00:00
|
|
|
ScrollMainWindowToTile(t->xy);
|
2005-11-14 19:48:04 +00:00
|
|
|
}
|
2005-09-16 00:33:33 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
break;
|
|
|
|
}
|
(svn r2136) - Fix: [ 1174313 ] terrain hotkeys nonfunctional in scenario editor (D,Q,W,E,R,T,Y,U fltr)
- Fix: 'L' no longer opens ingame terraform bar in scenario editor bar, but the land generator one
- Feature: [ 1095110 ] Create Lake and draggable Create Desert tools (initial implementation GoneWacko), also added sticky buttons to land generator and town generator
- CodeChange: moved around some of the draggable tools, demystifying them
- CodeChange: change CmdBuildCanal to allow for XANDY dragging not only X or Y (only scenario editor)
- CodeChange: add some more enums to sprites.
- TODO: merge most of the ingame and scenario editor land terraform code. This can only be done after OnClickButton function is changed so it also includes the backreference to the widget being clicked, postponed to after 0.4.0
2005-04-02 23:05:09 +00:00
|
|
|
case 6: {/* many random towns */
|
|
|
|
HandleButtonClick(w, 6);
|
2005-09-16 00:33:33 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
_generating_world = true;
|
2006-04-27 11:19:12 +00:00
|
|
|
if (!GenerateTowns()) ShowErrorMessage(STR_NO_SPACE_FOR_TOWN, STR_CANNOT_GENERATE_TOWN, 0, 0);
|
2004-08-09 17:04:08 +00:00
|
|
|
_generating_world = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
(svn r2136) - Fix: [ 1174313 ] terrain hotkeys nonfunctional in scenario editor (D,Q,W,E,R,T,Y,U fltr)
- Fix: 'L' no longer opens ingame terraform bar in scenario editor bar, but the land generator one
- Feature: [ 1095110 ] Create Lake and draggable Create Desert tools (initial implementation GoneWacko), also added sticky buttons to land generator and town generator
- CodeChange: moved around some of the draggable tools, demystifying them
- CodeChange: change CmdBuildCanal to allow for XANDY dragging not only X or Y (only scenario editor)
- CodeChange: add some more enums to sprites.
- TODO: merge most of the ingame and scenario editor land terraform code. This can only be done after OnClickButton function is changed so it also includes the backreference to the widget being clicked, postponed to after 0.4.0
2005-04-02 23:05:09 +00:00
|
|
|
case 7: case 8: case 9:
|
2006-10-03 20:16:20 +00:00
|
|
|
RaiseWindowWidget(w, _scengen_town_size + 7);
|
|
|
|
_scengen_town_size = e->we.click.widget - 7;
|
|
|
|
LowerWindowWidget(w, _scengen_town_size + 7);
|
2004-08-09 17:04:08 +00:00
|
|
|
SetWindowDirty(w);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WE_TIMEOUT:
|
2006-10-03 20:16:20 +00:00
|
|
|
RaiseWindowWidget(w, 5);
|
|
|
|
RaiseWindowWidget(w, 6);
|
|
|
|
SetWindowDirty(w);
|
2004-08-09 17:04:08 +00:00
|
|
|
break;
|
|
|
|
case WE_PLACE_OBJ:
|
2006-09-23 02:39:24 +00:00
|
|
|
_place_proc(e->we.place.tile);
|
2004-08-09 17:04:08 +00:00
|
|
|
break;
|
|
|
|
case WE_ABORT_PLACE_OBJ:
|
2006-10-03 20:16:20 +00:00
|
|
|
RaiseWindowButtons(w);
|
|
|
|
LowerWindowWidget(w, _scengen_town_size + 7);
|
2004-08-09 17:04:08 +00:00
|
|
|
SetWindowDirty(w);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static const WindowDesc _scen_edit_town_gen_desc = {
|
|
|
|
-1,-1, 160, 82,
|
|
|
|
WC_SCEN_TOWN_GEN,0,
|
(svn r2136) - Fix: [ 1174313 ] terrain hotkeys nonfunctional in scenario editor (D,Q,W,E,R,T,Y,U fltr)
- Fix: 'L' no longer opens ingame terraform bar in scenario editor bar, but the land generator one
- Feature: [ 1095110 ] Create Lake and draggable Create Desert tools (initial implementation GoneWacko), also added sticky buttons to land generator and town generator
- CodeChange: moved around some of the draggable tools, demystifying them
- CodeChange: change CmdBuildCanal to allow for XANDY dragging not only X or Y (only scenario editor)
- CodeChange: add some more enums to sprites.
- TODO: merge most of the ingame and scenario editor land terraform code. This can only be done after OnClickButton function is changed so it also includes the backreference to the widget being clicked, postponed to after 0.4.0
2005-04-02 23:05:09 +00:00
|
|
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_STICKY_BUTTON,
|
2004-08-09 17:04:08 +00:00
|
|
|
_scen_edit_town_gen_widgets,
|
|
|
|
ScenEditTownGenWndProc,
|
|
|
|
};
|
|
|
|
|
|
|
|
static void ToolbarScenGenTown(Window *w)
|
|
|
|
{
|
|
|
|
HandleButtonClick(w, 12);
|
2004-12-04 09:26:39 +00:00
|
|
|
SndPlayFx(SND_15_BEEP);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
AllocateWindowDescFront(&_scen_edit_town_gen_desc, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static const Widget _scenedit_industry_normal_widgets[] = {
|
2006-08-22 14:38:37 +00:00
|
|
|
{ WWT_CLOSEBOX, RESIZE_NONE, 7, 0, 10, 0, 13, STR_00C5, STR_018B_CLOSE_WINDOW},
|
|
|
|
{ WWT_CAPTION, RESIZE_NONE, 7, 11, 169, 0, 13, STR_023F_INDUSTRY_GENERATION, STR_NULL},
|
|
|
|
{ WWT_IMGBTN, RESIZE_NONE, 7, 0, 169, 14, 224, 0x0, STR_NULL},
|
|
|
|
|
|
|
|
{ WWT_TEXTBTN, RESIZE_NONE, 14, 2, 167, 16, 27, STR_MANY_RANDOM_INDUSTRIES, STR_RANDOM_INDUSTRIES_TIP},
|
|
|
|
|
|
|
|
{ WWT_TEXTBTN, RESIZE_NONE, 14, 2, 167, 42, 53, STR_0240_COAL_MINE, STR_0262_CONSTRUCT_COAL_MINE},
|
|
|
|
{ WWT_TEXTBTN, RESIZE_NONE, 14, 2, 167, 55, 66, STR_0241_POWER_STATION, STR_0263_CONSTRUCT_POWER_STATION},
|
|
|
|
{ WWT_TEXTBTN, RESIZE_NONE, 14, 2, 167, 68, 79, STR_0242_SAWMILL, STR_0264_CONSTRUCT_SAWMILL},
|
|
|
|
{ WWT_TEXTBTN, RESIZE_NONE, 14, 2, 167, 81, 92, STR_0243_FOREST, STR_0265_PLANT_FOREST},
|
|
|
|
{ WWT_TEXTBTN, RESIZE_NONE, 14, 2, 167, 94, 105, STR_0244_OIL_REFINERY, STR_0266_CONSTRUCT_OIL_REFINERY},
|
|
|
|
{ WWT_TEXTBTN, RESIZE_NONE, 14, 2, 167, 107, 118, STR_0245_OIL_RIG, STR_0267_CONSTRUCT_OIL_RIG_CAN_ONLY},
|
|
|
|
{ WWT_TEXTBTN, RESIZE_NONE, 14, 2, 167, 120, 131, STR_0246_FACTORY, STR_0268_CONSTRUCT_FACTORY},
|
|
|
|
{ WWT_TEXTBTN, RESIZE_NONE, 14, 2, 167, 133, 144, STR_0247_STEEL_MILL, STR_0269_CONSTRUCT_STEEL_MILL},
|
|
|
|
{ WWT_TEXTBTN, RESIZE_NONE, 14, 2, 167, 146, 157, STR_0248_FARM, STR_026A_CONSTRUCT_FARM},
|
|
|
|
{ WWT_TEXTBTN, RESIZE_NONE, 14, 2, 167, 159, 170, STR_0249_IRON_ORE_MINE, STR_026B_CONSTRUCT_IRON_ORE_MINE},
|
|
|
|
{ WWT_TEXTBTN, RESIZE_NONE, 14, 2, 167, 172, 183, STR_024A_OIL_WELLS, STR_026C_CONSTRUCT_OIL_WELLS},
|
|
|
|
{ WWT_TEXTBTN, RESIZE_NONE, 14, 2, 167, 185, 196, STR_024B_BANK, STR_026D_CONSTRUCT_BANK_CAN_ONLY},
|
2004-09-07 21:48:09 +00:00
|
|
|
{ WIDGETS_END},
|
2004-08-09 17:04:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static const Widget _scenedit_industry_hilly_widgets[] = {
|
2006-08-22 14:38:37 +00:00
|
|
|
{ WWT_CLOSEBOX, RESIZE_NONE, 7, 0, 10, 0, 13, STR_00C5, STR_018B_CLOSE_WINDOW},
|
|
|
|
{ WWT_CAPTION, RESIZE_NONE, 7, 11, 169, 0, 13, STR_023F_INDUSTRY_GENERATION, STR_NULL},
|
|
|
|
{ WWT_IMGBTN, RESIZE_NONE, 7, 0, 169, 14, 224, 0x0, STR_NULL},
|
|
|
|
|
|
|
|
{ WWT_TEXTBTN, RESIZE_NONE, 14, 2, 167, 16, 27, STR_MANY_RANDOM_INDUSTRIES, STR_RANDOM_INDUSTRIES_TIP},
|
|
|
|
|
|
|
|
{ WWT_TEXTBTN, RESIZE_NONE, 14, 2, 167, 42, 53, STR_0240_COAL_MINE, STR_0262_CONSTRUCT_COAL_MINE},
|
|
|
|
{ WWT_TEXTBTN, RESIZE_NONE, 14, 2, 167, 55, 66, STR_0241_POWER_STATION, STR_0263_CONSTRUCT_POWER_STATION},
|
|
|
|
{ WWT_TEXTBTN, RESIZE_NONE, 14, 2, 167, 68, 79, STR_024C_PAPER_MILL, STR_026E_CONSTRUCT_PAPER_MILL},
|
|
|
|
{ WWT_TEXTBTN, RESIZE_NONE, 14, 2, 167, 81, 92, STR_0243_FOREST, STR_0265_PLANT_FOREST},
|
|
|
|
{ WWT_TEXTBTN, RESIZE_NONE, 14, 2, 167, 94, 105, STR_0244_OIL_REFINERY, STR_0266_CONSTRUCT_OIL_REFINERY},
|
|
|
|
{ WWT_TEXTBTN, RESIZE_NONE, 14, 2, 167, 107, 118, STR_024D_FOOD_PROCESSING_PLANT, STR_026F_CONSTRUCT_FOOD_PROCESSING},
|
|
|
|
{ WWT_TEXTBTN, RESIZE_NONE, 14, 2, 167, 120, 131, STR_024E_PRINTING_WORKS, STR_0270_CONSTRUCT_PRINTING_WORKS},
|
|
|
|
{ WWT_TEXTBTN, RESIZE_NONE, 14, 2, 167, 133, 144, STR_024F_GOLD_MINE, STR_0271_CONSTRUCT_GOLD_MINE},
|
|
|
|
{ WWT_TEXTBTN, RESIZE_NONE, 14, 2, 167, 146, 157, STR_0248_FARM, STR_026A_CONSTRUCT_FARM},
|
|
|
|
{ WWT_TEXTBTN, RESIZE_NONE, 14, 2, 167, 159, 170, STR_024B_BANK, STR_0272_CONSTRUCT_BANK_CAN_ONLY},
|
|
|
|
{ WWT_TEXTBTN, RESIZE_NONE, 14, 2, 167, 172, 183, STR_024A_OIL_WELLS, STR_026C_CONSTRUCT_OIL_WELLS},
|
2004-09-07 21:48:09 +00:00
|
|
|
{ WIDGETS_END},
|
2004-08-09 17:04:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static const Widget _scenedit_industry_desert_widgets[] = {
|
2006-08-22 14:38:37 +00:00
|
|
|
{ WWT_CLOSEBOX, RESIZE_NONE, 7, 0, 10, 0, 13, STR_00C5, STR_018B_CLOSE_WINDOW},
|
|
|
|
{ WWT_CAPTION, RESIZE_NONE, 7, 11, 169, 0, 13, STR_023F_INDUSTRY_GENERATION, STR_NULL},
|
|
|
|
{ WWT_IMGBTN, RESIZE_NONE, 7, 0, 169, 14, 224, 0x0, STR_NULL},
|
|
|
|
|
|
|
|
{ WWT_TEXTBTN, RESIZE_NONE, 14, 2, 167, 16, 27, STR_MANY_RANDOM_INDUSTRIES, STR_RANDOM_INDUSTRIES_TIP},
|
|
|
|
|
|
|
|
{ WWT_TEXTBTN, RESIZE_NONE, 14, 2, 167, 42, 53, STR_0250_LUMBER_MILL, STR_0273_CONSTRUCT_LUMBER_MILL_TO},
|
|
|
|
{ WWT_TEXTBTN, RESIZE_NONE, 14, 2, 167, 55, 66, STR_0251_FRUIT_PLANTATION, STR_0274_PLANT_FRUIT_PLANTATION},
|
|
|
|
{ WWT_TEXTBTN, RESIZE_NONE, 14, 2, 167, 68, 79, STR_0252_RUBBER_PLANTATION, STR_0275_PLANT_RUBBER_PLANTATION},
|
|
|
|
{ WWT_TEXTBTN, RESIZE_NONE, 14, 2, 167, 81, 92, STR_0244_OIL_REFINERY, STR_0266_CONSTRUCT_OIL_REFINERY},
|
|
|
|
{ WWT_TEXTBTN, RESIZE_NONE, 14, 2, 167, 94, 105, STR_024D_FOOD_PROCESSING_PLANT, STR_026F_CONSTRUCT_FOOD_PROCESSING},
|
|
|
|
{ WWT_TEXTBTN, RESIZE_NONE, 14, 2, 167, 107, 118, STR_0246_FACTORY, STR_0268_CONSTRUCT_FACTORY},
|
|
|
|
{ WWT_TEXTBTN, RESIZE_NONE, 14, 2, 167, 120, 131, STR_0253_WATER_SUPPLY, STR_0276_CONSTRUCT_WATER_SUPPLY},
|
|
|
|
{ WWT_TEXTBTN, RESIZE_NONE, 14, 2, 167, 133, 144, STR_0248_FARM, STR_026A_CONSTRUCT_FARM},
|
|
|
|
{ WWT_TEXTBTN, RESIZE_NONE, 14, 2, 167, 146, 157, STR_0254_WATER_TOWER, STR_0277_CONSTRUCT_WATER_TOWER_CAN},
|
|
|
|
{ WWT_TEXTBTN, RESIZE_NONE, 14, 2, 167, 159, 170, STR_024A_OIL_WELLS, STR_026C_CONSTRUCT_OIL_WELLS},
|
|
|
|
{ WWT_TEXTBTN, RESIZE_NONE, 14, 2, 167, 172, 183, STR_024B_BANK, STR_0272_CONSTRUCT_BANK_CAN_ONLY},
|
|
|
|
{ WWT_TEXTBTN, RESIZE_NONE, 14, 2, 167, 185, 196, STR_0255_DIAMOND_MINE, STR_0278_CONSTRUCT_DIAMOND_MINE},
|
|
|
|
{ WWT_TEXTBTN, RESIZE_NONE, 14, 2, 167, 198, 209, STR_0256_COPPER_ORE_MINE, STR_0279_CONSTRUCT_COPPER_ORE_MINE},
|
2004-09-07 21:48:09 +00:00
|
|
|
{ WIDGETS_END},
|
2004-08-09 17:04:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static const Widget _scenedit_industry_candy_widgets[] = {
|
2006-08-22 14:38:37 +00:00
|
|
|
{ WWT_CLOSEBOX, RESIZE_NONE, 7, 0, 10, 0, 13, STR_00C5, STR_018B_CLOSE_WINDOW},
|
|
|
|
{ WWT_CAPTION, RESIZE_NONE, 7, 11, 169, 0, 13, STR_023F_INDUSTRY_GENERATION, STR_NULL},
|
|
|
|
{ WWT_IMGBTN, RESIZE_NONE, 7, 0, 169, 14, 224, 0x0, STR_NULL},
|
|
|
|
|
|
|
|
{ WWT_TEXTBTN, RESIZE_NONE, 14, 2, 167, 16, 27, STR_MANY_RANDOM_INDUSTRIES, STR_RANDOM_INDUSTRIES_TIP},
|
|
|
|
|
|
|
|
{ WWT_TEXTBTN, RESIZE_NONE, 14, 2, 167, 42, 53, STR_0257_COTTON_CANDY_FOREST, STR_027A_PLANT_COTTON_CANDY_FOREST},
|
|
|
|
{ WWT_TEXTBTN, RESIZE_NONE, 14, 2, 167, 55, 66, STR_0258_CANDY_FACTORY, STR_027B_CONSTRUCT_CANDY_FACTORY},
|
|
|
|
{ WWT_TEXTBTN, RESIZE_NONE, 14, 2, 167, 68, 79, STR_0259_BATTERY_FARM, STR_027C_CONSTRUCT_BATTERY_FARM},
|
|
|
|
{ WWT_TEXTBTN, RESIZE_NONE, 14, 2, 167, 81, 92, STR_025A_COLA_WELLS, STR_027D_CONSTRUCT_COLA_WELLS},
|
|
|
|
{ WWT_TEXTBTN, RESIZE_NONE, 14, 2, 167, 94, 105, STR_025B_TOY_SHOP, STR_027E_CONSTRUCT_TOY_SHOP},
|
|
|
|
{ WWT_TEXTBTN, RESIZE_NONE, 14, 2, 167, 107, 118, STR_025C_TOY_FACTORY, STR_027F_CONSTRUCT_TOY_FACTORY},
|
|
|
|
{ WWT_TEXTBTN, RESIZE_NONE, 14, 2, 167, 120, 131, STR_025D_PLASTIC_FOUNTAINS, STR_0280_CONSTRUCT_PLASTIC_FOUNTAINS},
|
|
|
|
{ WWT_TEXTBTN, RESIZE_NONE, 14, 2, 167, 133, 144, STR_025E_FIZZY_DRINK_FACTORY, STR_0281_CONSTRUCT_FIZZY_DRINK_FACTORY},
|
|
|
|
{ WWT_TEXTBTN, RESIZE_NONE, 14, 2, 167, 146, 157, STR_025F_BUBBLE_GENERATOR, STR_0282_CONSTRUCT_BUBBLE_GENERATOR},
|
|
|
|
{ WWT_TEXTBTN, RESIZE_NONE, 14, 2, 167, 159, 170, STR_0260_TOFFEE_QUARRY, STR_0283_CONSTRUCT_TOFFEE_QUARRY},
|
|
|
|
{ WWT_TEXTBTN, RESIZE_NONE, 14, 2, 167, 172, 183, STR_0261_SUGAR_MINE, STR_0284_CONSTRUCT_SUGAR_MINE},
|
2004-09-07 21:48:09 +00:00
|
|
|
{ WIDGETS_END},
|
2004-08-09 17:04:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2005-01-22 20:23:18 +00:00
|
|
|
static bool AnyTownExists(void)
|
|
|
|
{
|
2006-07-26 03:33:12 +00:00
|
|
|
const Town *t;
|
2005-11-13 13:43:55 +00:00
|
|
|
|
2006-08-22 15:33:35 +00:00
|
|
|
FOR_ALL_TOWNS(t) return true;
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2005-06-24 12:38:35 +00:00
|
|
|
extern Industry *CreateNewIndustry(TileIndex tile, int type);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
static bool TryBuildIndustry(TileIndex tile, int type)
|
|
|
|
{
|
|
|
|
int n;
|
|
|
|
|
2004-08-10 16:12:40 +00:00
|
|
|
if (CreateNewIndustry(tile, type)) return true;
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
n = 100;
|
|
|
|
do {
|
|
|
|
if (CreateNewIndustry(AdjustTileCoordRandomly(tile, 1), type)) return true;
|
|
|
|
} while (--n);
|
|
|
|
|
|
|
|
n = 200;
|
|
|
|
do {
|
|
|
|
if (CreateNewIndustry(AdjustTileCoordRandomly(tile, 2), type)) return true;
|
|
|
|
} while (--n);
|
|
|
|
|
|
|
|
n = 700;
|
|
|
|
do {
|
|
|
|
if (CreateNewIndustry(AdjustTileCoordRandomly(tile, 4), type)) return true;
|
|
|
|
} while (--n);
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static const byte _industry_type_list[4][16] = {
|
2006-08-22 14:38:37 +00:00
|
|
|
{ 0, 1, 2, 3, 4, 5, 6, 8, 9, 18, 11, 12},
|
|
|
|
{ 0, 1, 14, 3, 4, 13, 7, 15, 9, 16, 11, 12},
|
|
|
|
{25, 19, 20, 4, 13, 23, 21, 24, 22, 11, 16, 17, 10},
|
2004-08-09 17:04:08 +00:00
|
|
|
{26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36},
|
|
|
|
};
|
|
|
|
|
2005-11-13 13:43:55 +00:00
|
|
|
static int _industry_type_to_place;
|
2004-08-10 16:12:40 +00:00
|
|
|
bool _ignore_restrictions;
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
static void ScenEditIndustryWndProc(Window *w, WindowEvent *e)
|
|
|
|
{
|
|
|
|
int button;
|
|
|
|
|
2006-02-01 07:36:15 +00:00
|
|
|
switch (e->event) {
|
2004-08-09 17:04:08 +00:00
|
|
|
case WE_PAINT:
|
|
|
|
DrawWindowWidgets(w);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WE_CLICK:
|
2006-09-23 02:39:24 +00:00
|
|
|
if (e->we.click.widget == 3) {
|
2004-08-09 17:04:08 +00:00
|
|
|
HandleButtonClick(w, 3);
|
|
|
|
|
2005-11-14 19:48:04 +00:00
|
|
|
if (!AnyTownExists()) {
|
|
|
|
ShowErrorMessage(STR_0286_MUST_BUILD_TOWN_FIRST, STR_CAN_T_GENERATE_INDUSTRIES, 0, 0);
|
|
|
|
return;
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
_generating_world = true;
|
|
|
|
GenerateIndustries();
|
|
|
|
_generating_world = false;
|
|
|
|
}
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2006-09-23 02:39:24 +00:00
|
|
|
if ((button=e->we.click.widget) >= 4) {
|
2005-06-06 13:47:06 +00:00
|
|
|
if (HandlePlacePushButton(w, button, SPR_CURSOR_INDUSTRY, 1, NULL))
|
2004-08-09 17:04:08 +00:00
|
|
|
_industry_type_to_place = _industry_type_list[_opt.landscape][button - 4];
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case WE_PLACE_OBJ: {
|
|
|
|
int type;
|
|
|
|
|
|
|
|
// Show error if no town exists at all
|
|
|
|
type = _industry_type_to_place;
|
|
|
|
if (!AnyTownExists()) {
|
2004-12-02 22:53:07 +00:00
|
|
|
SetDParam(0, type + STR_4802_COAL_MINE);
|
2006-09-23 02:39:24 +00:00
|
|
|
ShowErrorMessage(STR_0286_MUST_BUILD_TOWN_FIRST, STR_0285_CAN_T_BUILD_HERE, e->we.place.pt.x, e->we.place.pt.y);
|
2004-08-09 17:04:08 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
_current_player = OWNER_NONE;
|
|
|
|
_generating_world = true;
|
2004-08-10 16:12:40 +00:00
|
|
|
_ignore_restrictions = true;
|
2006-09-23 02:39:24 +00:00
|
|
|
if (!TryBuildIndustry(e->we.place.tile,type)) {
|
2004-12-02 22:53:07 +00:00
|
|
|
SetDParam(0, type + STR_4802_COAL_MINE);
|
2006-09-23 02:39:24 +00:00
|
|
|
ShowErrorMessage(_error_message, STR_0285_CAN_T_BUILD_HERE, e->we.place.pt.x, e->we.place.pt.y);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2004-08-10 16:12:40 +00:00
|
|
|
_ignore_restrictions = false;
|
2004-08-09 17:04:08 +00:00
|
|
|
_generating_world = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case WE_ABORT_PLACE_OBJ:
|
2006-10-03 20:16:20 +00:00
|
|
|
RaiseWindowButtons(w);
|
2004-08-09 17:04:08 +00:00
|
|
|
SetWindowDirty(w);
|
|
|
|
break;
|
|
|
|
case WE_TIMEOUT:
|
2006-10-03 20:16:20 +00:00
|
|
|
RaiseWindowWidget(w, 3);
|
2004-08-09 17:04:08 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static const WindowDesc _scenedit_industry_normal_desc = {
|
|
|
|
-1,-1, 170, 225,
|
|
|
|
WC_SCEN_INDUSTRY,0,
|
|
|
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
|
|
|
_scenedit_industry_normal_widgets,
|
|
|
|
ScenEditIndustryWndProc,
|
|
|
|
};
|
|
|
|
|
|
|
|
static const WindowDesc _scenedit_industry_hilly_desc = {
|
|
|
|
-1,-1, 170, 225,
|
|
|
|
WC_SCEN_INDUSTRY,0,
|
|
|
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
|
|
|
_scenedit_industry_hilly_widgets,
|
|
|
|
ScenEditIndustryWndProc,
|
|
|
|
};
|
|
|
|
|
|
|
|
static const WindowDesc _scenedit_industry_desert_desc = {
|
|
|
|
-1,-1, 170, 225,
|
|
|
|
WC_SCEN_INDUSTRY,0,
|
|
|
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
|
|
|
_scenedit_industry_desert_widgets,
|
|
|
|
ScenEditIndustryWndProc,
|
|
|
|
};
|
|
|
|
|
|
|
|
static const WindowDesc _scenedit_industry_candy_desc = {
|
|
|
|
-1,-1, 170, 225,
|
|
|
|
WC_SCEN_INDUSTRY,0,
|
|
|
|
WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
|
|
|
|
_scenedit_industry_candy_widgets,
|
|
|
|
ScenEditIndustryWndProc,
|
|
|
|
};
|
|
|
|
|
|
|
|
static const WindowDesc * const _scenedit_industry_descs[] = {
|
|
|
|
&_scenedit_industry_normal_desc,
|
|
|
|
&_scenedit_industry_hilly_desc,
|
|
|
|
&_scenedit_industry_desert_desc,
|
|
|
|
&_scenedit_industry_candy_desc,
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static void ToolbarScenGenIndustry(Window *w)
|
|
|
|
{
|
|
|
|
HandleButtonClick(w, 13);
|
2004-12-04 09:26:39 +00:00
|
|
|
SndPlayFx(SND_15_BEEP);
|
2004-08-09 17:04:08 +00:00
|
|
|
AllocateWindowDescFront(_scenedit_industry_descs[_opt.landscape],0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ToolbarScenBuildRoad(Window *w)
|
|
|
|
{
|
|
|
|
HandleButtonClick(w, 14);
|
2004-12-04 09:26:39 +00:00
|
|
|
SndPlayFx(SND_15_BEEP);
|
2004-08-09 17:04:08 +00:00
|
|
|
ShowBuildRoadScenToolbar();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ToolbarScenPlantTrees(Window *w)
|
|
|
|
{
|
|
|
|
HandleButtonClick(w, 15);
|
2004-12-04 09:26:39 +00:00
|
|
|
SndPlayFx(SND_15_BEEP);
|
2004-08-09 17:04:08 +00:00
|
|
|
ShowBuildTreesScenToolbar();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ToolbarScenPlaceSign(Window *w)
|
|
|
|
{
|
|
|
|
HandleButtonClick(w, 16);
|
2004-12-04 09:26:39 +00:00
|
|
|
SndPlayFx(SND_15_BEEP);
|
2004-08-09 17:04:08 +00:00
|
|
|
SelectSignTool();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ToolbarBtn_NULL(Window *w)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2005-11-14 19:48:04 +00:00
|
|
|
|
|
|
|
typedef void ToolbarButtonProc(Window *w);
|
|
|
|
|
2006-07-26 03:33:12 +00:00
|
|
|
static ToolbarButtonProc * const _toolbar_button_procs[] = {
|
2004-08-09 17:04:08 +00:00
|
|
|
ToolbarPauseClick,
|
|
|
|
ToolbarFastForwardClick,
|
|
|
|
ToolbarOptionsClick,
|
|
|
|
ToolbarSaveClick,
|
|
|
|
ToolbarMapClick,
|
|
|
|
ToolbarTownClick,
|
|
|
|
ToolbarSubsidiesClick,
|
|
|
|
ToolbarStationsClick,
|
|
|
|
ToolbarMoneyClick,
|
|
|
|
ToolbarPlayersClick,
|
|
|
|
ToolbarGraphsClick,
|
|
|
|
ToolbarLeagueClick,
|
|
|
|
ToolbarIndustryClick,
|
|
|
|
ToolbarTrainClick,
|
|
|
|
ToolbarRoadClick,
|
|
|
|
ToolbarShipClick,
|
|
|
|
ToolbarAirClick,
|
|
|
|
ToolbarZoomInClick,
|
|
|
|
ToolbarZoomOutClick,
|
|
|
|
ToolbarBuildRailClick,
|
|
|
|
ToolbarBuildRoadClick,
|
|
|
|
ToolbarBuildWaterClick,
|
|
|
|
ToolbarBuildAirClick,
|
|
|
|
ToolbarForestClick,
|
|
|
|
ToolbarMusicClick,
|
|
|
|
ToolbarNewspaperClick,
|
|
|
|
ToolbarHelpClick,
|
|
|
|
};
|
|
|
|
|
|
|
|
static void MainToolbarWndProc(Window *w, WindowEvent *e)
|
|
|
|
{
|
2006-02-01 07:36:15 +00:00
|
|
|
switch (e->event) {
|
2006-10-08 21:00:13 +00:00
|
|
|
case WE_PAINT:
|
2004-08-09 17:04:08 +00:00
|
|
|
// Draw brown-red toolbar bg.
|
|
|
|
GfxFillRect(0, 0, w->width-1, w->height-1, 0xB2);
|
2005-07-28 09:17:32 +00:00
|
|
|
GfxFillRect(0, 0, w->width-1, w->height-1, 0xB4 | PALETTE_MODIFIER_GREYOUT);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2006-10-03 02:08:15 +00:00
|
|
|
/* If spectator, disable all construction buttons
|
|
|
|
* ie : Build road, rail, ships, airports and landscaping
|
|
|
|
* Since enabled state is the default, just disable when needed */
|
2006-10-08 21:00:13 +00:00
|
|
|
SetWindowWidgetsDisabledState(w, _current_player == OWNER_SPECTATOR, 19, 20, 21, 22, 23, WIDGET_LIST_END);
|
|
|
|
/* disable company list drop downs, if there are no companies */
|
|
|
|
SetWindowWidgetsDisabledState(w, ActivePlayerCount() == 0, 7, 8, 13, 14, 15, 16, WIDGET_LIST_END);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
DrawWindowWidgets(w);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WE_CLICK: {
|
2006-10-03 02:08:15 +00:00
|
|
|
if (_game_mode != GM_MENU && !IsWindowWidgetDisabled(w, e->we.click.widget))
|
2006-09-23 02:39:24 +00:00
|
|
|
_toolbar_button_procs[e->we.click.widget](w);
|
2004-08-09 17:04:08 +00:00
|
|
|
} break;
|
|
|
|
|
|
|
|
case WE_KEYPRESS: {
|
2005-09-28 19:35:36 +00:00
|
|
|
PlayerID local = (_local_player != OWNER_SPECTATOR) ? _local_player : 0;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2006-09-23 02:39:24 +00:00
|
|
|
switch (e->we.keypress.keycode) {
|
2005-03-12 21:21:47 +00:00
|
|
|
case WKC_F1: case WKC_PAUSE:
|
2004-11-15 10:04:57 +00:00
|
|
|
ToolbarPauseClick(w);
|
|
|
|
break;
|
2004-08-09 17:04:08 +00:00
|
|
|
case WKC_F2: ShowGameOptions(); break;
|
|
|
|
case WKC_F3: MenuClickSaveLoad(0); break;
|
|
|
|
case WKC_F4: ShowSmallMap(); break;
|
|
|
|
case WKC_F5: ShowTownDirectory(); break;
|
|
|
|
case WKC_F6: ShowSubsidiesList(); break;
|
|
|
|
case WKC_F7: ShowPlayerStations(local); break;
|
|
|
|
case WKC_F8: ShowPlayerFinances(local); break;
|
|
|
|
case WKC_F9: ShowPlayerCompany(local); break;
|
|
|
|
case WKC_F10:ShowOperatingProfitGraph(); break;
|
|
|
|
case WKC_F11: ShowCompanyLeagueTable(); break;
|
|
|
|
case WKC_F12: ShowBuildIndustryWindow(); break;
|
2006-09-28 23:05:03 +00:00
|
|
|
case WKC_SHIFT | WKC_F1: ShowVehicleListWindow(local, INVALID_STATION, VEH_Train); break;
|
|
|
|
case WKC_SHIFT | WKC_F2: ShowVehicleListWindow(local, INVALID_STATION, VEH_Road); break;
|
|
|
|
case WKC_SHIFT | WKC_F3: ShowVehicleListWindow(local, INVALID_STATION, VEH_Ship); break;
|
|
|
|
case WKC_SHIFT | WKC_F4: ShowVehicleListWindow(local, INVALID_STATION, VEH_Aircraft); break;
|
2004-08-09 17:04:08 +00:00
|
|
|
case WKC_SHIFT | WKC_F5: ToolbarZoomInClick(w); break;
|
|
|
|
case WKC_SHIFT | WKC_F6: ToolbarZoomOutClick(w); break;
|
|
|
|
case WKC_SHIFT | WKC_F7: ShowBuildRailToolbar(_last_built_railtype,-1); break;
|
|
|
|
case WKC_SHIFT | WKC_F8: ShowBuildRoadToolbar(); break;
|
|
|
|
case WKC_SHIFT | WKC_F9: ShowBuildDocksToolbar(); break;
|
|
|
|
case WKC_SHIFT | WKC_F10:ShowBuildAirToolbar(); break;
|
|
|
|
case WKC_SHIFT | WKC_F11: ShowBuildTreesToolbar(); break;
|
|
|
|
case WKC_SHIFT | WKC_F12: ShowMusicWindow(); break;
|
2006-07-28 21:51:00 +00:00
|
|
|
case WKC_CTRL | 'S': MenuClickSmallScreenshot(); break;
|
|
|
|
case WKC_CTRL | 'G': MenuClickWorldScreenshot(); break;
|
2004-12-04 17:54:56 +00:00
|
|
|
case WKC_CTRL | WKC_ALT | 'C': if (!_networking) ShowCheatWindow(); break;
|
2005-04-03 10:21:37 +00:00
|
|
|
case 'A': ShowBuildRailToolbar(_last_built_railtype, 4); break; /* Invoke Autorail */
|
|
|
|
case 'L': ShowTerraformToolbar(); break;
|
2005-03-12 21:21:47 +00:00
|
|
|
default: return;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2006-09-23 02:39:24 +00:00
|
|
|
e->we.keypress.cont = false;
|
2004-08-09 17:04:08 +00:00
|
|
|
} break;
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
case WE_PLACE_OBJ: {
|
2006-09-23 02:39:24 +00:00
|
|
|
_place_proc(e->we.place.tile);
|
2004-08-09 17:04:08 +00:00
|
|
|
} break;
|
|
|
|
|
|
|
|
case WE_ABORT_PLACE_OBJ: {
|
2006-10-03 20:16:20 +00:00
|
|
|
RaiseWindowWidget(w, 25);
|
2004-08-09 17:04:08 +00:00
|
|
|
SetWindowDirty(w);
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case WE_ON_EDIT_TEXT: HandleOnEditText(e); break;
|
|
|
|
|
|
|
|
case WE_MOUSELOOP:
|
2006-10-06 01:18:12 +00:00
|
|
|
if (IsWindowWidgetLowered(w, 0) != !!_pause) {
|
2006-10-03 20:16:20 +00:00
|
|
|
ToggleWidgetLoweredState(w, 0);
|
2004-08-09 17:04:08 +00:00
|
|
|
SetWindowDirty(w);
|
|
|
|
}
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2006-10-06 01:18:12 +00:00
|
|
|
if (IsWindowWidgetLowered(w, 1) != !!_fast_forward) {
|
2006-10-03 20:16:20 +00:00
|
|
|
ToggleWidgetLoweredState(w, 1);
|
2004-08-09 17:04:08 +00:00
|
|
|
SetWindowDirty(w);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2006-10-03 20:16:20 +00:00
|
|
|
case WE_TIMEOUT: {
|
|
|
|
int i;
|
|
|
|
for (i = 2; w->widget[i].type != WWT_LAST; i++) {
|
|
|
|
if (IsWindowWidgetLowered(w, i)) {
|
|
|
|
RaiseWindowWidget(w, i);
|
|
|
|
InvalidateWidget(w, i);
|
|
|
|
}
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
break;
|
|
|
|
}
|
2006-10-03 20:16:20 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static const Widget _toolb_normal_widgets[] = {
|
2006-08-22 14:38:37 +00:00
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 0, 21, 0, 21, SPR_IMG_PAUSE, STR_0171_PAUSE_GAME},
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 22, 43, 0, 21, SPR_IMG_FASTFORWARD, STR_FAST_FORWARD},
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 44, 65, 0, 21, SPR_IMG_SETTINGS, STR_0187_OPTIONS},
|
|
|
|
{ WWT_PANEL_2, RESIZE_NONE, 14, 66, 87, 0, 21, SPR_IMG_SAVE, STR_0172_SAVE_GAME_ABANDON_GAME},
|
2006-03-17 23:23:10 +00:00
|
|
|
|
2006-08-22 14:38:37 +00:00
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 96, 117, 0, 21, SPR_IMG_SMALLMAP, STR_0174_DISPLAY_MAP},
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 118, 139, 0, 21, SPR_IMG_TOWN, STR_0176_DISPLAY_TOWN_DIRECTORY},
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 140, 161, 0, 21, SPR_IMG_SUBSIDIES, STR_02DC_DISPLAY_SUBSIDIES},
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 162, 183, 0, 21, SPR_IMG_COMPANY_LIST, STR_0173_DISPLAY_LIST_OF_COMPANY},
|
2006-03-17 23:23:10 +00:00
|
|
|
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 191, 212, 0, 21, SPR_IMG_COMPANY_FINANCE, STR_0177_DISPLAY_COMPANY_FINANCES},
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 213, 235, 0, 21, SPR_IMG_COMPANY_GENERAL, STR_0178_DISPLAY_COMPANY_GENERAL},
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 236, 257, 0, 21, SPR_IMG_GRAPHS, STR_0179_DISPLAY_GRAPHS},
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 258, 279, 0, 21, SPR_IMG_COMPANY_LEAGUE, STR_017A_DISPLAY_COMPANY_LEAGUE},
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 280, 301, 0, 21, SPR_IMG_INDUSTRY, STR_0312_FUND_CONSTRUCTION_OF_NEW},
|
|
|
|
|
2006-08-22 14:38:37 +00:00
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 310, 331, 0, 21, SPR_IMG_TRAINLIST, STR_017B_DISPLAY_LIST_OF_COMPANY},
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 332, 353, 0, 21, SPR_IMG_TRUCKLIST, STR_017C_DISPLAY_LIST_OF_COMPANY},
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 354, 375, 0, 21, SPR_IMG_SHIPLIST, STR_017D_DISPLAY_LIST_OF_COMPANY},
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 376, 397, 0, 21, SPR_IMG_AIRPLANESLIST, STR_017E_DISPLAY_LIST_OF_COMPANY},
|
2006-03-17 23:23:10 +00:00
|
|
|
|
2006-08-22 14:38:37 +00:00
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 406, 427, 0, 21, SPR_IMG_ZOOMIN, STR_017F_ZOOM_THE_VIEW_IN},
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 428, 449, 0, 21, SPR_IMG_ZOOMOUT, STR_0180_ZOOM_THE_VIEW_OUT},
|
2006-03-17 23:23:10 +00:00
|
|
|
|
2006-08-22 14:38:37 +00:00
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 457, 478, 0, 21, SPR_IMG_BUILDRAIL, STR_0181_BUILD_RAILROAD_TRACK},
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 479, 500, 0, 21, SPR_IMG_BUILDROAD, STR_0182_BUILD_ROADS},
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 501, 522, 0, 21, SPR_IMG_BUILDWATER, STR_0183_BUILD_SHIP_DOCKS},
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 523, 544, 0, 21, SPR_IMG_BUILDAIR, STR_0184_BUILD_AIRPORTS},
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 545, 566, 0, 21, SPR_IMG_LANDSCAPING, STR_LANDSCAPING_TOOLBAR_TIP}, // tree icon is 0x2E6
|
2006-03-17 23:23:10 +00:00
|
|
|
|
2006-08-22 14:38:37 +00:00
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 574, 595, 0, 21, SPR_IMG_MUSIC, STR_01D4_SHOW_SOUND_MUSIC_WINDOW},
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 596, 617, 0, 21, SPR_IMG_MESSAGES, STR_0203_SHOW_LAST_MESSAGE_NEWS},
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 618, 639, 0, 21, SPR_IMG_QUERY, STR_0186_LAND_BLOCK_INFORMATION},
|
2004-09-07 21:48:09 +00:00
|
|
|
{ WIDGETS_END},
|
2004-08-09 17:04:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static const WindowDesc _toolb_normal_desc = {
|
|
|
|
0, 0, 640, 22,
|
|
|
|
WC_MAIN_TOOLBAR,0,
|
|
|
|
WDF_STD_TOOLTIPS | WDF_DEF_WIDGET,
|
|
|
|
_toolb_normal_widgets,
|
|
|
|
MainToolbarWndProc
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static const Widget _toolb_scen_widgets[] = {
|
2006-03-17 23:23:10 +00:00
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 0, 21, 0, 21, SPR_IMG_PAUSE, STR_0171_PAUSE_GAME},
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 22, 43, 0, 21, SPR_IMG_FASTFORWARD, STR_FAST_FORWARD},
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 44, 65, 0, 21, SPR_IMG_SETTINGS, STR_0187_OPTIONS},
|
|
|
|
{WWT_PANEL_2, RESIZE_NONE, 14, 66, 87, 0, 21, SPR_IMG_SAVE, STR_0297_SAVE_SCENARIO_LOAD_SCENARIO},
|
|
|
|
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 96, 225, 0, 21, 0x0, STR_NULL},
|
|
|
|
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 233, 362, 0, 21, 0x0, STR_NULL},
|
|
|
|
{ WWT_IMGBTN, RESIZE_NONE, 14, 236, 247, 5, 16, SPR_ARROW_DOWN, STR_029E_MOVE_THE_STARTING_DATE},
|
|
|
|
{ WWT_IMGBTN, RESIZE_NONE, 14, 347, 358, 5, 16, SPR_ARROW_UP, STR_029F_MOVE_THE_STARTING_DATE},
|
|
|
|
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 371, 392, 0, 21, SPR_IMG_SMALLMAP, STR_0175_DISPLAY_MAP_TOWN_DIRECTORY},
|
|
|
|
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 400, 421, 0, 21, SPR_IMG_ZOOMIN, STR_017F_ZOOM_THE_VIEW_IN},
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 422, 443, 0, 21, SPR_IMG_ZOOMOUT, STR_0180_ZOOM_THE_VIEW_OUT},
|
|
|
|
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 452, 473, 0, 21, SPR_IMG_LANDSCAPING, STR_022E_LANDSCAPE_GENERATION},
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 474, 495, 0, 21, SPR_IMG_TOWN, STR_022F_TOWN_GENERATION},
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 496, 517, 0, 21, SPR_IMG_INDUSTRY, STR_0230_INDUSTRY_GENERATION},
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 518, 539, 0, 21, SPR_IMG_BUILDROAD, STR_0231_ROAD_CONSTRUCTION},
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 540, 561, 0, 21, SPR_IMG_PLANTTREES, STR_0288_PLANT_TREES},
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 562, 583, 0, 21, SPR_IMG_SIGN, STR_0289_PLACE_SIGN},
|
|
|
|
|
2006-08-22 14:38:37 +00:00
|
|
|
{ WWT_EMPTY, RESIZE_NONE, 0, 0, 0, 0, 0, 0x0, STR_NULL},
|
|
|
|
{ WWT_EMPTY, RESIZE_NONE, 0, 0, 0, 0, 0, 0x0, STR_NULL},
|
|
|
|
{ WWT_EMPTY, RESIZE_NONE, 0, 0, 0, 0, 0, 0x0, STR_NULL},
|
|
|
|
{ WWT_EMPTY, RESIZE_NONE, 0, 0, 0, 0, 0, 0x0, STR_NULL},
|
|
|
|
{ WWT_EMPTY, RESIZE_NONE, 0, 0, 0, 0, 0, 0x0, STR_NULL},
|
|
|
|
{ WWT_EMPTY, RESIZE_NONE, 0, 0, 0, 0, 0, 0x0, STR_NULL},
|
|
|
|
{ WWT_EMPTY, RESIZE_NONE, 0, 0, 0, 0, 0, 0x0, STR_NULL},
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 596, 617, 0, 21, SPR_IMG_MUSIC, STR_01D4_SHOW_SOUND_MUSIC_WINDOW},
|
|
|
|
{ WWT_EMPTY, RESIZE_NONE, 0, 0, 0, 0, 0, 0x0, STR_NULL},
|
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 618, 639, 0, 21, SPR_IMG_QUERY, STR_0186_LAND_BLOCK_INFORMATION},
|
2006-03-17 23:23:10 +00:00
|
|
|
{WIDGETS_END},
|
2004-08-09 17:04:08 +00:00
|
|
|
};
|
|
|
|
|
2006-07-26 03:33:12 +00:00
|
|
|
static ToolbarButtonProc * const _scen_toolbar_button_procs[] = {
|
2004-08-09 17:04:08 +00:00
|
|
|
ToolbarPauseClick,
|
|
|
|
ToolbarFastForwardClick,
|
|
|
|
ToolbarOptionsClick,
|
|
|
|
ToolbarScenSaveOrLoad,
|
|
|
|
ToolbarBtn_NULL,
|
|
|
|
ToolbarBtn_NULL,
|
|
|
|
ToolbarScenDateBackward,
|
|
|
|
ToolbarScenDateForward,
|
|
|
|
ToolbarScenMapTownDir,
|
|
|
|
ToolbarScenZoomIn,
|
|
|
|
ToolbarScenZoomOut,
|
|
|
|
ToolbarScenGenLand,
|
|
|
|
ToolbarScenGenTown,
|
|
|
|
ToolbarScenGenIndustry,
|
|
|
|
ToolbarScenBuildRoad,
|
|
|
|
ToolbarScenPlantTrees,
|
|
|
|
ToolbarScenPlaceSign,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
ToolbarMusicClick,
|
|
|
|
NULL,
|
|
|
|
ToolbarHelpClick,
|
|
|
|
};
|
|
|
|
|
|
|
|
static void ScenEditToolbarWndProc(Window *w, WindowEvent *e)
|
|
|
|
{
|
2006-02-01 07:36:15 +00:00
|
|
|
switch (e->event) {
|
2004-08-09 17:04:08 +00:00
|
|
|
case WE_PAINT:
|
2006-10-03 02:08:15 +00:00
|
|
|
SetWindowWidgetDisabledState(w, 6, _patches_newgame.starting_year <= MIN_YEAR);
|
|
|
|
SetWindowWidgetDisabledState(w, 7, _patches_newgame.starting_year >= MAX_YEAR);
|
2004-11-08 22:21:14 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
// Draw brown-red toolbar bg.
|
|
|
|
GfxFillRect(0, 0, w->width-1, w->height-1, 0xB2);
|
2005-07-28 09:17:32 +00:00
|
|
|
GfxFillRect(0, 0, w->width-1, w->height-1, 0xB4 | PALETTE_MODIFIER_GREYOUT);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
DrawWindowWidgets(w);
|
|
|
|
|
(svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
- New optional landscape generator (TerraGenesis Perlin)
- Load heightmaps (either BMP or PNG)
- Progress dialog while generating worlds (no longer a 'hanging' screen)
- New dialogs for NewGame, Create Scenario and Play Heightmap
- Easier to configure your landscape
- More things to configure (tree-placer, ..)
- Speedup of world generation
- New console command 'restart': restart the map EXACTLY as it was when you
first started it (needs a game made after or with this commit)
- New console command 'getseed': get the seed of your map and share it with
others (of course only works with generated maps)
- Many new, world generation related, things
- Many internal cleanups and rewrites
Many tnx to those people who helped making this:
Belugas, DaleStan, glx, KUDr, RichK67, Rubidium, and TrueLight (alfabetic)
Many tnx to those who helped testing:
Arnau, Bjarni, and tokai (alfabetic)
And to all other people who helped testing and sending comments / bugs
Stats: 673 lines changed, 3534 new lines, 79 new strings
2006-08-19 10:00:30 +00:00
|
|
|
SetDParam(0, ConvertYMDToDate(_patches_newgame.starting_year, 0, 1));
|
2004-08-09 17:04:08 +00:00
|
|
|
DrawStringCentered(298, 6, STR_00AF, 0);
|
|
|
|
|
(svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
- New optional landscape generator (TerraGenesis Perlin)
- Load heightmaps (either BMP or PNG)
- Progress dialog while generating worlds (no longer a 'hanging' screen)
- New dialogs for NewGame, Create Scenario and Play Heightmap
- Easier to configure your landscape
- More things to configure (tree-placer, ..)
- Speedup of world generation
- New console command 'restart': restart the map EXACTLY as it was when you
first started it (needs a game made after or with this commit)
- New console command 'getseed': get the seed of your map and share it with
others (of course only works with generated maps)
- Many new, world generation related, things
- Many internal cleanups and rewrites
Many tnx to those people who helped making this:
Belugas, DaleStan, glx, KUDr, RichK67, Rubidium, and TrueLight (alfabetic)
Many tnx to those who helped testing:
Arnau, Bjarni, and tokai (alfabetic)
And to all other people who helped testing and sending comments / bugs
Stats: 673 lines changed, 3534 new lines, 79 new strings
2006-08-19 10:00:30 +00:00
|
|
|
SetDParam(0, ConvertYMDToDate(_patches_newgame.starting_year, 0, 1));
|
2004-08-17 15:31:04 +00:00
|
|
|
DrawStringCentered(161, 1, STR_0221_OPENTTD, 0);
|
2004-08-09 17:04:08 +00:00
|
|
|
DrawStringCentered(161, 11,STR_0222_SCENARIO_EDITOR, 0);
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WE_CLICK: {
|
2005-11-14 19:48:04 +00:00
|
|
|
if (_game_mode == GM_MENU) return;
|
2006-09-23 02:39:24 +00:00
|
|
|
_scen_toolbar_button_procs[e->we.click.widget](w);
|
2004-08-09 17:04:08 +00:00
|
|
|
} break;
|
|
|
|
|
2005-12-14 06:49:54 +00:00
|
|
|
case WE_KEYPRESS:
|
2006-09-23 02:39:24 +00:00
|
|
|
switch (e->we.keypress.keycode) {
|
2004-08-09 17:04:08 +00:00
|
|
|
case WKC_F1: ToolbarPauseClick(w); break;
|
|
|
|
case WKC_F2: ShowGameOptions(); break;
|
|
|
|
case WKC_F3: MenuClickSaveLoad(0); break;
|
|
|
|
case WKC_F4: ToolbarScenGenLand(w); break;
|
|
|
|
case WKC_F5: ToolbarScenGenTown(w); break;
|
|
|
|
case WKC_F6: ToolbarScenGenIndustry(w); break;
|
|
|
|
case WKC_F7: ToolbarScenBuildRoad(w); break;
|
|
|
|
case WKC_F8: ToolbarScenPlantTrees(w); break;
|
|
|
|
case WKC_F9: ToolbarScenPlaceSign(w); break;
|
|
|
|
case WKC_F10: ShowMusicWindow(); break;
|
|
|
|
case WKC_F11: PlaceLandBlockInfo(); break;
|
2006-07-28 21:51:00 +00:00
|
|
|
case WKC_CTRL | 'S': MenuClickSmallScreenshot(); break;
|
|
|
|
case WKC_CTRL | 'G': MenuClickWorldScreenshot(); break;
|
2005-04-03 10:21:37 +00:00
|
|
|
case 'L': ShowEditorTerraformToolBar(); break;
|
2005-12-14 06:49:54 +00:00
|
|
|
}
|
|
|
|
break;
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
case WE_PLACE_OBJ: {
|
2006-09-23 02:39:24 +00:00
|
|
|
_place_proc(e->we.place.tile);
|
2004-08-09 17:04:08 +00:00
|
|
|
} break;
|
|
|
|
|
|
|
|
case WE_ABORT_PLACE_OBJ: {
|
2006-10-03 20:16:20 +00:00
|
|
|
RaiseWindowWidget(w, 25);
|
2004-08-09 17:04:08 +00:00
|
|
|
SetWindowDirty(w);
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case WE_ON_EDIT_TEXT: HandleOnEditText(e); break;
|
|
|
|
|
|
|
|
case WE_MOUSELOOP:
|
2006-10-06 01:18:12 +00:00
|
|
|
if (IsWindowWidgetLowered(w, 0) != !!_pause) {
|
2006-10-03 20:16:20 +00:00
|
|
|
ToggleWidgetLoweredState(w, 0);
|
2004-08-12 09:36:22 +00:00
|
|
|
SetWindowDirty(w);
|
|
|
|
}
|
|
|
|
|
2006-10-06 01:18:12 +00:00
|
|
|
if (IsWindowWidgetLowered(w, 1) != !!_fast_forward) {
|
2006-10-03 20:16:20 +00:00
|
|
|
ToggleWidgetLoweredState(w, 1);
|
2004-08-09 17:04:08 +00:00
|
|
|
SetWindowDirty(w);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static const WindowDesc _toolb_scen_desc = {
|
|
|
|
0, 0, 640, 22,
|
|
|
|
WC_MAIN_TOOLBAR,0,
|
|
|
|
WDF_STD_TOOLTIPS | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS,
|
|
|
|
_toolb_scen_widgets,
|
|
|
|
ScenEditToolbarWndProc
|
|
|
|
};
|
|
|
|
|
|
|
|
extern GetNewsStringCallbackProc * const _get_news_string_callback[];
|
|
|
|
|
|
|
|
|
2005-09-18 20:56:44 +00:00
|
|
|
static bool DrawScrollingStatusText(const NewsItem *ni, int pos)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2005-02-07 12:32:35 +00:00
|
|
|
char buf[512];
|
2004-08-09 17:04:08 +00:00
|
|
|
StringID str;
|
2005-02-06 22:25:27 +00:00
|
|
|
const char *s;
|
|
|
|
char *d;
|
2004-08-09 17:04:08 +00:00
|
|
|
DrawPixelInfo tmp_dpi, *old_dpi;
|
|
|
|
int x;
|
2005-02-06 22:25:27 +00:00
|
|
|
char buffer[256];
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
if (ni->display_mode == 3) {
|
|
|
|
str = _get_news_string_callback[ni->callback](ni);
|
|
|
|
} else {
|
|
|
|
COPY_IN_DPARAM(0, ni->params, lengthof(ni->params));
|
2004-09-10 19:02:27 +00:00
|
|
|
str = ni->string_id;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2005-02-07 12:32:35 +00:00
|
|
|
GetString(buf, str);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2005-02-07 12:32:35 +00:00
|
|
|
s = buf;
|
2004-08-09 17:04:08 +00:00
|
|
|
d = buffer;
|
|
|
|
|
2005-11-14 19:48:04 +00:00
|
|
|
for (;; s++) {
|
|
|
|
if (*s == '\0') {
|
|
|
|
*d = '\0';
|
2004-08-09 17:04:08 +00:00
|
|
|
break;
|
|
|
|
} else if (*s == 0x0D) {
|
|
|
|
d[0] = d[1] = d[2] = d[3] = ' ';
|
2005-11-14 19:48:04 +00:00
|
|
|
d += 4;
|
2005-02-06 22:25:27 +00:00
|
|
|
} else if ((byte)*s >= ' ' && ((byte)*s < 0x88 || (byte)*s >= 0x99)) {
|
2004-08-09 17:04:08 +00:00
|
|
|
*d++ = *s;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-08-28 07:33:51 +00:00
|
|
|
if (!FillDrawPixelInfo(&tmp_dpi, 141, 1, 358, 11)) return true;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
old_dpi = _cur_dpi;
|
|
|
|
_cur_dpi = &tmp_dpi;
|
|
|
|
|
|
|
|
x = DoDrawString(buffer, pos, 0, 13);
|
|
|
|
_cur_dpi = old_dpi;
|
|
|
|
|
|
|
|
return x > 0;
|
|
|
|
}
|
|
|
|
|
2004-11-14 19:44:06 +00:00
|
|
|
static void StatusBarWndProc(Window *w, WindowEvent *e)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2005-06-01 23:08:33 +00:00
|
|
|
switch (e->event) {
|
|
|
|
case WE_PAINT: {
|
2005-06-21 16:28:17 +00:00
|
|
|
const Player *p = (_local_player == OWNER_SPECTATOR) ? NULL : GetPlayer(_local_player);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
DrawWindowWidgets(w);
|
2004-12-02 22:53:07 +00:00
|
|
|
SetDParam(0, _date);
|
2005-11-14 19:48:04 +00:00
|
|
|
DrawStringCentered(
|
|
|
|
70, 1, (_pause || _patches.status_long_date) ? STR_00AF : STR_00AE, 0
|
|
|
|
);
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2006-09-03 22:07:28 +00:00
|
|
|
if (p != NULL) {
|
2004-08-09 17:04:08 +00:00
|
|
|
// Draw player money
|
2004-12-02 22:53:07 +00:00
|
|
|
SetDParam64(0, p->money64);
|
2004-08-09 17:04:08 +00:00
|
|
|
DrawStringCentered(570, 1, p->player_money >= 0 ? STR_0004 : STR_0005, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Draw status bar
|
2005-06-01 23:08:33 +00:00
|
|
|
if (w->message.msg) { // true when saving is active
|
|
|
|
DrawStringCentered(320, 1, STR_SAVING_GAME, 0);
|
|
|
|
} else if (_do_autosave) {
|
2006-02-01 06:32:03 +00:00
|
|
|
DrawStringCentered(320, 1, STR_032F_AUTOSAVE, 0);
|
2004-08-09 17:04:08 +00:00
|
|
|
} else if (_pause) {
|
2006-02-01 06:32:03 +00:00
|
|
|
DrawStringCentered(320, 1, STR_0319_PAUSED, 0);
|
2004-08-09 17:04:08 +00:00
|
|
|
} else if (WP(w,def_d).data_1 > -1280 && FindWindowById(WC_NEWS_WINDOW,0) == NULL && _statusbar_news_item.string_id != 0) {
|
|
|
|
// Draw the scrolling news text
|
|
|
|
if (!DrawScrollingStatusText(&_statusbar_news_item, WP(w,def_d).data_1))
|
|
|
|
WP(w,def_d).data_1 = -1280;
|
|
|
|
} else {
|
2006-09-03 22:07:28 +00:00
|
|
|
if (p != NULL) {
|
2004-08-09 17:04:08 +00:00
|
|
|
// This is the default text
|
2004-12-02 22:53:07 +00:00
|
|
|
SetDParam(0, p->name_1);
|
|
|
|
SetDParam(1, p->name_2);
|
2006-02-01 06:32:03 +00:00
|
|
|
DrawStringCentered(320, 1, STR_02BA, 0);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
2005-04-13 23:03:31 +00:00
|
|
|
|
2005-06-01 23:08:33 +00:00
|
|
|
if (WP(w, def_d).data_2 > 0) DrawSprite(SPR_BLOT | PALETTE_TO_RED, 489, 2);
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case WE_MESSAGE:
|
2006-09-23 02:39:24 +00:00
|
|
|
w->message.msg = e->we.message.msg;
|
2005-06-01 23:08:33 +00:00
|
|
|
SetWindowDirty(w);
|
2004-08-09 17:04:08 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case WE_CLICK:
|
2006-09-23 02:39:24 +00:00
|
|
|
switch (e->we.click.widget) {
|
2005-06-01 23:08:33 +00:00
|
|
|
case 1: ShowLastNewsMessage(); break;
|
|
|
|
case 2: if (_local_player != OWNER_SPECTATOR) ShowPlayerFinances(_local_player); break;
|
|
|
|
default: ResetObjectToPlace();
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WE_TICK: {
|
2005-04-13 23:03:31 +00:00
|
|
|
if (_pause) return;
|
|
|
|
|
|
|
|
if (WP(w, def_d).data_1 > -1280) { /* Scrolling text */
|
|
|
|
WP(w, def_d).data_1 -= 2;
|
|
|
|
InvalidateWidget(w, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (WP(w, def_d).data_2 > 0) { /* Red blot to show there are new unread newsmessages */
|
|
|
|
WP(w, def_d).data_2 -= 2;
|
|
|
|
} else if (WP(w, def_d).data_2 < 0) {
|
|
|
|
WP(w, def_d).data_2 = 0;
|
|
|
|
InvalidateWidget(w, 1);
|
|
|
|
}
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static const Widget _main_status_widgets[] = {
|
2006-03-17 23:23:10 +00:00
|
|
|
{ WWT_IMGBTN, RESIZE_NONE, 14, 0, 139, 0, 11, 0x0, STR_NULL},
|
2005-01-03 19:45:18 +00:00
|
|
|
{ WWT_PUSHIMGBTN, RESIZE_NONE, 14, 140, 499, 0, 11, 0x0, STR_02B7_SHOW_LAST_MESSAGE_OR_NEWS},
|
|
|
|
{ WWT_PUSHIMGBTN, RESIZE_NONE, 14, 500, 639, 0, 11, 0x0, STR_NULL},
|
2004-09-07 21:48:09 +00:00
|
|
|
{ WIDGETS_END},
|
2004-08-09 17:04:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static WindowDesc _main_status_desc = {
|
|
|
|
WDP_CENTER, 0, 640, 12,
|
|
|
|
WC_STATUS_BAR,0,
|
|
|
|
WDF_STD_TOOLTIPS | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS,
|
|
|
|
_main_status_widgets,
|
|
|
|
StatusBarWndProc
|
|
|
|
};
|
|
|
|
|
2005-05-06 20:38:18 +00:00
|
|
|
extern void UpdateAllStationVirtCoord(void);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2006-07-26 03:33:12 +00:00
|
|
|
static void MainWindowWndProc(Window *w, WindowEvent *e)
|
2006-06-27 21:25:53 +00:00
|
|
|
{
|
2004-08-09 17:04:08 +00:00
|
|
|
int off_x;
|
|
|
|
|
2006-02-01 07:36:15 +00:00
|
|
|
switch (e->event) {
|
2004-08-09 17:04:08 +00:00
|
|
|
case WE_PAINT:
|
|
|
|
DrawWindowViewport(w);
|
|
|
|
if (_game_mode == GM_MENU) {
|
2004-12-09 23:20:32 +00:00
|
|
|
off_x = _screen.width / 2;
|
|
|
|
|
2004-12-09 23:49:23 +00:00
|
|
|
DrawSprite(SPR_OTTD_O, off_x - 120, 50);
|
|
|
|
DrawSprite(SPR_OTTD_P, off_x - 86, 50);
|
|
|
|
DrawSprite(SPR_OTTD_E, off_x - 53, 50);
|
|
|
|
DrawSprite(SPR_OTTD_N, off_x - 22, 50);
|
|
|
|
|
|
|
|
DrawSprite(SPR_OTTD_T, off_x + 34, 50);
|
|
|
|
DrawSprite(SPR_OTTD_T, off_x + 65, 50);
|
|
|
|
DrawSprite(SPR_OTTD_D, off_x + 96, 50);
|
2004-12-15 21:13:52 +00:00
|
|
|
|
2004-12-09 23:20:32 +00:00
|
|
|
/*
|
|
|
|
DrawSprite(SPR_OTTD_R, off_x + 119, 50);
|
|
|
|
DrawSprite(SPR_OTTD_A, off_x + 148, 50);
|
|
|
|
DrawSprite(SPR_OTTD_N, off_x + 181, 50);
|
|
|
|
DrawSprite(SPR_OTTD_S, off_x + 215, 50);
|
|
|
|
DrawSprite(SPR_OTTD_P, off_x + 246, 50);
|
|
|
|
DrawSprite(SPR_OTTD_O, off_x + 275, 50);
|
|
|
|
DrawSprite(SPR_OTTD_R, off_x + 307, 50);
|
|
|
|
DrawSprite(SPR_OTTD_T, off_x + 337, 50);
|
|
|
|
|
|
|
|
DrawSprite(SPR_OTTD_T, off_x + 390, 50);
|
|
|
|
DrawSprite(SPR_OTTD_Y, off_x + 417, 50);
|
|
|
|
DrawSprite(SPR_OTTD_C, off_x + 447, 50);
|
|
|
|
DrawSprite(SPR_OTTD_O, off_x + 478, 50);
|
|
|
|
DrawSprite(SPR_OTTD_O, off_x + 509, 50);
|
|
|
|
DrawSprite(SPR_OTTD_N, off_x + 541, 50);
|
|
|
|
*/
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WE_KEYPRESS:
|
2006-09-23 02:39:24 +00:00
|
|
|
switch (e->we.keypress.keycode) {
|
2005-11-14 19:48:04 +00:00
|
|
|
case 'Q' | WKC_CTRL:
|
|
|
|
case 'Q' | WKC_META:
|
2006-09-04 17:30:30 +00:00
|
|
|
HandleExitGameRequest();
|
2005-11-14 19:48:04 +00:00
|
|
|
break;
|
2005-10-07 20:53:21 +00:00
|
|
|
}
|
2005-03-12 21:21:47 +00:00
|
|
|
|
2006-09-03 22:07:28 +00:00
|
|
|
/* Disable all key shortcuts, except quit shortcuts when
|
|
|
|
* generating the world, otherwise they create threading
|
|
|
|
* problem during the generating, resulting in random
|
|
|
|
* assertions that are hard to trigger and debug */
|
|
|
|
if (IsGeneratingWorld()) break;
|
|
|
|
|
2006-09-23 02:39:24 +00:00
|
|
|
if (e->we.keypress.keycode == WKC_BACKQUOTE) {
|
2006-09-03 22:07:28 +00:00
|
|
|
IConsoleSwitch();
|
2006-09-23 02:39:24 +00:00
|
|
|
e->we.keypress.cont = false;
|
2006-09-03 22:07:28 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (_game_mode == GM_MENU) break;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2006-09-23 02:39:24 +00:00
|
|
|
switch (e->we.keypress.keycode) {
|
2005-11-14 19:48:04 +00:00
|
|
|
case 'C':
|
|
|
|
case 'Z': {
|
|
|
|
Point pt = GetTileBelowCursor();
|
|
|
|
if (pt.x != -1) {
|
|
|
|
ScrollMainWindowTo(pt.x, pt.y);
|
2006-09-23 02:39:24 +00:00
|
|
|
if (e->we.keypress.keycode == 'Z') MaxZoomIn();
|
2005-11-14 19:48:04 +00:00
|
|
|
}
|
|
|
|
break;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2005-11-14 19:48:04 +00:00
|
|
|
case WKC_ESC: ResetObjectToPlace(); break;
|
|
|
|
case WKC_DELETE: DeleteNonVitalWindows(); break;
|
|
|
|
case WKC_DELETE | WKC_SHIFT: DeleteAllNonVitalWindows(); break;
|
|
|
|
case 'R' | WKC_CTRL: MarkWholeScreenDirty(); break;
|
|
|
|
|
2005-05-06 20:38:18 +00:00
|
|
|
#if defined(_DEBUG)
|
2005-11-14 19:48:04 +00:00
|
|
|
case '0' | WKC_ALT: /* Crash the game */
|
|
|
|
*(byte*)0 = 0;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case '1' | WKC_ALT: /* Gimme money */
|
|
|
|
/* Server can not cheat in advertise mode either! */
|
|
|
|
#ifdef ENABLE_NETWORK
|
|
|
|
if (!_networking || !_network_server || !_network_advertise)
|
2005-05-06 20:38:18 +00:00
|
|
|
#endif
|
2005-11-14 19:48:04 +00:00
|
|
|
DoCommandP(0, -10000000, 0, NULL, CMD_MONEY_CHEAT);
|
|
|
|
break;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2005-11-14 19:48:04 +00:00
|
|
|
case '2' | WKC_ALT: /* Update the coordinates of all station signs */
|
|
|
|
UpdateAllStationVirtCoord();
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
case 'X':
|
|
|
|
_display_opt ^= DO_TRANS_BUILDINGS;
|
|
|
|
MarkWholeScreenDirty();
|
|
|
|
break;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2004-12-04 17:54:56 +00:00
|
|
|
#ifdef ENABLE_NETWORK
|
2005-11-14 19:48:04 +00:00
|
|
|
case WKC_RETURN: case 'T' | WKC_SHIFT:
|
|
|
|
if (_networking) ShowNetworkChatQueryWindow(DESTTYPE_BROADCAST, 0);
|
|
|
|
break;
|
2005-05-06 20:38:18 +00:00
|
|
|
#endif
|
2004-12-04 17:54:56 +00:00
|
|
|
|
2005-11-14 19:48:04 +00:00
|
|
|
default: return;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2006-09-23 02:39:24 +00:00
|
|
|
e->we.keypress.cont = false;
|
2004-08-09 17:04:08 +00:00
|
|
|
break;
|
2006-08-21 14:34:59 +00:00
|
|
|
|
|
|
|
case WE_SCROLL: {
|
|
|
|
ViewPort *vp = IsPtInWindowViewport(w, _cursor.pos.x, _cursor.pos.y);
|
|
|
|
|
|
|
|
if (vp == NULL) {
|
|
|
|
_cursor.fix_at = false;
|
|
|
|
_scrolling_viewport = false;
|
|
|
|
}
|
|
|
|
|
2006-09-23 02:39:24 +00:00
|
|
|
WP(w, vp_d).scrollpos_x += e->we.scroll.delta.x << vp->zoom;
|
|
|
|
WP(w, vp_d).scrollpos_y += e->we.scroll.delta.y << vp->zoom;
|
2006-08-21 14:34:59 +00:00
|
|
|
} break;
|
2006-08-21 14:59:58 +00:00
|
|
|
|
|
|
|
case WE_MOUSEWHEEL:
|
2006-09-23 02:39:24 +00:00
|
|
|
ZoomInOrOutToCursorWindow(e->we.wheel.wheel < 0, w);
|
2006-08-21 14:59:58 +00:00
|
|
|
break;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-01-22 20:23:18 +00:00
|
|
|
void ShowSelectGameWindow(void);
|
2004-12-23 00:24:44 +00:00
|
|
|
extern void ShowJoinStatusWindowAfterJoin(void);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2005-01-22 20:23:18 +00:00
|
|
|
void SetupColorsAndInitialWindow(void)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2005-11-14 19:48:04 +00:00
|
|
|
uint i;
|
2004-08-09 17:04:08 +00:00
|
|
|
Window *w;
|
|
|
|
int width,height;
|
|
|
|
|
2005-11-14 19:48:04 +00:00
|
|
|
for (i = 0; i != 16; i++) {
|
2006-07-26 03:33:12 +00:00
|
|
|
const byte *b = GetNonSprite(PALETTE_RECOLOR_START + i);
|
2005-02-11 17:12:11 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
assert(b);
|
2006-08-29 19:26:13 +00:00
|
|
|
memcpy(_colour_gradient[i], b + 0xC6, sizeof(_colour_gradient[i]));
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
width = _screen.width;
|
|
|
|
height = _screen.height;
|
|
|
|
|
|
|
|
// XXX: these are not done
|
2005-11-14 19:48:04 +00:00
|
|
|
switch (_game_mode) {
|
2004-08-09 17:04:08 +00:00
|
|
|
case GM_MENU:
|
2005-04-03 13:35:43 +00:00
|
|
|
w = AllocateWindow(0, 0, width, height, MainWindowWndProc, WC_MAIN_WINDOW, NULL);
|
2005-06-25 16:44:57 +00:00
|
|
|
AssignWindowViewport(w, 0, 0, width, height, TileXY(32, 32), 0);
|
2004-08-09 17:04:08 +00:00
|
|
|
ShowSelectGameWindow();
|
|
|
|
break;
|
|
|
|
case GM_NORMAL:
|
2005-04-03 13:35:43 +00:00
|
|
|
w = AllocateWindow(0, 0, width, height, MainWindowWndProc, WC_MAIN_WINDOW, NULL);
|
2005-06-25 16:44:57 +00:00
|
|
|
AssignWindowViewport(w, 0, 0, width, height, TileXY(32, 32), 0);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2005-01-11 00:54:06 +00:00
|
|
|
ShowVitalWindows();
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2004-12-15 21:13:52 +00:00
|
|
|
/* Bring joining GUI to front till the client is really joined */
|
|
|
|
if (_networking && !_network_server)
|
|
|
|
ShowJoinStatusWindowAfterJoin();
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
break;
|
|
|
|
case GM_EDITOR:
|
2005-04-03 13:35:43 +00:00
|
|
|
w = AllocateWindow(0, 0, width, height, MainWindowWndProc, WC_MAIN_WINDOW, NULL);
|
2004-08-09 17:04:08 +00:00
|
|
|
AssignWindowViewport(w, 0, 0, width, height, 0, 0);
|
|
|
|
|
(svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
- New optional landscape generator (TerraGenesis Perlin)
- Load heightmaps (either BMP or PNG)
- Progress dialog while generating worlds (no longer a 'hanging' screen)
- New dialogs for NewGame, Create Scenario and Play Heightmap
- Easier to configure your landscape
- More things to configure (tree-placer, ..)
- Speedup of world generation
- New console command 'restart': restart the map EXACTLY as it was when you
first started it (needs a game made after or with this commit)
- New console command 'getseed': get the seed of your map and share it with
others (of course only works with generated maps)
- Many new, world generation related, things
- Many internal cleanups and rewrites
Many tnx to those people who helped making this:
Belugas, DaleStan, glx, KUDr, RichK67, Rubidium, and TrueLight (alfabetic)
Many tnx to those who helped testing:
Arnau, Bjarni, and tokai (alfabetic)
And to all other people who helped testing and sending comments / bugs
Stats: 673 lines changed, 3534 new lines, 79 new strings
2006-08-19 10:00:30 +00:00
|
|
|
ShowVitalWindows();
|
2004-08-09 17:04:08 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
NOT_REACHED();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-01-11 00:54:06 +00:00
|
|
|
void ShowVitalWindows(void)
|
|
|
|
{
|
|
|
|
Window *w;
|
|
|
|
|
(svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
- New optional landscape generator (TerraGenesis Perlin)
- Load heightmaps (either BMP or PNG)
- Progress dialog while generating worlds (no longer a 'hanging' screen)
- New dialogs for NewGame, Create Scenario and Play Heightmap
- Easier to configure your landscape
- More things to configure (tree-placer, ..)
- Speedup of world generation
- New console command 'restart': restart the map EXACTLY as it was when you
first started it (needs a game made after or with this commit)
- New console command 'getseed': get the seed of your map and share it with
others (of course only works with generated maps)
- Many new, world generation related, things
- Many internal cleanups and rewrites
Many tnx to those people who helped making this:
Belugas, DaleStan, glx, KUDr, RichK67, Rubidium, and TrueLight (alfabetic)
Many tnx to those who helped testing:
Arnau, Bjarni, and tokai (alfabetic)
And to all other people who helped testing and sending comments / bugs
Stats: 673 lines changed, 3534 new lines, 79 new strings
2006-08-19 10:00:30 +00:00
|
|
|
if (_game_mode != GM_EDITOR) {
|
|
|
|
w = AllocateWindowDesc(&_toolb_normal_desc);
|
2006-10-03 02:08:15 +00:00
|
|
|
DisableWindowWidget(w, 18);
|
(svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
- New optional landscape generator (TerraGenesis Perlin)
- Load heightmaps (either BMP or PNG)
- Progress dialog while generating worlds (no longer a 'hanging' screen)
- New dialogs for NewGame, Create Scenario and Play Heightmap
- Easier to configure your landscape
- More things to configure (tree-placer, ..)
- Speedup of world generation
- New console command 'restart': restart the map EXACTLY as it was when you
first started it (needs a game made after or with this commit)
- New console command 'getseed': get the seed of your map and share it with
others (of course only works with generated maps)
- Many new, world generation related, things
- Many internal cleanups and rewrites
Many tnx to those people who helped making this:
Belugas, DaleStan, glx, KUDr, RichK67, Rubidium, and TrueLight (alfabetic)
Many tnx to those who helped testing:
Arnau, Bjarni, and tokai (alfabetic)
And to all other people who helped testing and sending comments / bugs
Stats: 673 lines changed, 3534 new lines, 79 new strings
2006-08-19 10:00:30 +00:00
|
|
|
} else {
|
|
|
|
w = AllocateWindowDesc(&_toolb_scen_desc);
|
2006-10-03 02:08:15 +00:00
|
|
|
DisableWindowWidget(w, 10);
|
(svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
- New optional landscape generator (TerraGenesis Perlin)
- Load heightmaps (either BMP or PNG)
- Progress dialog while generating worlds (no longer a 'hanging' screen)
- New dialogs for NewGame, Create Scenario and Play Heightmap
- Easier to configure your landscape
- More things to configure (tree-placer, ..)
- Speedup of world generation
- New console command 'restart': restart the map EXACTLY as it was when you
first started it (needs a game made after or with this commit)
- New console command 'getseed': get the seed of your map and share it with
others (of course only works with generated maps)
- Many new, world generation related, things
- Many internal cleanups and rewrites
Many tnx to those people who helped making this:
Belugas, DaleStan, glx, KUDr, RichK67, Rubidium, and TrueLight (alfabetic)
Many tnx to those who helped testing:
Arnau, Bjarni, and tokai (alfabetic)
And to all other people who helped testing and sending comments / bugs
Stats: 673 lines changed, 3534 new lines, 79 new strings
2006-08-19 10:00:30 +00:00
|
|
|
}
|
2005-01-11 00:54:06 +00:00
|
|
|
CLRBITS(w->flags4, WF_WHITE_BORDER_MASK);
|
|
|
|
|
2006-10-03 02:08:15 +00:00
|
|
|
SetWindowWidgetDisabledState(w, 0, _networking && !_network_server); // if not server, disable pause button
|
|
|
|
SetWindowWidgetDisabledState(w, 1, _networking); // if networking, disable fast-forward button
|
2005-01-15 08:58:31 +00:00
|
|
|
|
(svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
- New optional landscape generator (TerraGenesis Perlin)
- Load heightmaps (either BMP or PNG)
- Progress dialog while generating worlds (no longer a 'hanging' screen)
- New dialogs for NewGame, Create Scenario and Play Heightmap
- Easier to configure your landscape
- More things to configure (tree-placer, ..)
- Speedup of world generation
- New console command 'restart': restart the map EXACTLY as it was when you
first started it (needs a game made after or with this commit)
- New console command 'getseed': get the seed of your map and share it with
others (of course only works with generated maps)
- Many new, world generation related, things
- Many internal cleanups and rewrites
Many tnx to those people who helped making this:
Belugas, DaleStan, glx, KUDr, RichK67, Rubidium, and TrueLight (alfabetic)
Many tnx to those who helped testing:
Arnau, Bjarni, and tokai (alfabetic)
And to all other people who helped testing and sending comments / bugs
Stats: 673 lines changed, 3534 new lines, 79 new strings
2006-08-19 10:00:30 +00:00
|
|
|
/* 'w' is for sure a WC_MAIN_TOOLBAR */
|
|
|
|
PositionMainToolbar(w);
|
|
|
|
|
|
|
|
/* Status bad only for normal games */
|
|
|
|
if (_game_mode == GM_EDITOR) return;
|
2005-01-11 00:54:06 +00:00
|
|
|
|
|
|
|
_main_status_desc.top = _screen.height - 12;
|
|
|
|
w = AllocateWindowDesc(&_main_status_desc);
|
|
|
|
CLRBITS(w->flags4, WF_WHITE_BORDER_MASK);
|
|
|
|
|
|
|
|
WP(w,def_d).data_1 = -1280;
|
|
|
|
}
|
|
|
|
|
2005-01-22 20:23:18 +00:00
|
|
|
void GameSizeChanged(void)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2005-09-15 22:42:59 +00:00
|
|
|
_cur_resolution[0] = _screen.width;
|
|
|
|
_cur_resolution[1] = _screen.height;
|
2004-08-09 17:04:08 +00:00
|
|
|
RelocateAllWindows(_screen.width, _screen.height);
|
|
|
|
ScreenSizeChanged();
|
|
|
|
MarkWholeScreenDirty();
|
|
|
|
}
|
2006-04-22 09:25:36 +00:00
|
|
|
|
|
|
|
void InitializeMainGui(void)
|
|
|
|
{
|
|
|
|
/* Clean old GUI values */
|
|
|
|
_last_built_railtype = 0;
|
|
|
|
}
|