2005-07-24 14:12:37 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
2007-03-03 04:04:22 +00:00
|
|
|
/** @file main_gui.cpp */
|
|
|
|
|
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-02-10 05:43:30 +00:00
|
|
|
#include "spritecache.h"
|
2004-08-09 17:04:08 +00:00
|
|
|
#include "gui.h"
|
2007-12-19 20:45:46 +00:00
|
|
|
#include "window_gui.h"
|
|
|
|
#include "window_func.h"
|
|
|
|
#include "textbuf_gui.h"
|
2008-01-09 09:45:45 +00:00
|
|
|
#include "viewport_func.h"
|
2007-12-21 21:50:46 +00:00
|
|
|
#include "command_func.h"
|
2004-08-09 17:04:08 +00:00
|
|
|
#include "news.h"
|
|
|
|
#include "town.h"
|
2004-08-24 08:34:28 +00:00
|
|
|
#include "console.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"
|
2007-06-11 14:00:16 +00:00
|
|
|
#include "roadveh.h"
|
2007-07-08 18:40:15 +00:00
|
|
|
#include "bridge_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"
|
2006-09-28 23:05:03 +00:00
|
|
|
#include "vehicle_gui.h"
|
2007-04-05 07:49:04 +00:00
|
|
|
#include "transparency_gui.h"
|
2006-12-04 14:27:54 +00:00
|
|
|
#include "newgrf_config.h"
|
2007-12-21 07:38:36 +00:00
|
|
|
#include "rail_gui.h"
|
|
|
|
#include "road_gui.h"
|
2007-12-26 13:50:40 +00:00
|
|
|
#include "date_func.h"
|
2007-12-25 11:26:07 +00:00
|
|
|
#include "functions.h"
|
2007-12-27 13:35:39 +00:00
|
|
|
#include "vehicle_func.h"
|
2007-12-29 09:24:26 +00:00
|
|
|
#include "sound_func.h"
|
2007-12-27 17:29:27 +00:00
|
|
|
#include "fios.h"
|
2008-01-06 18:56:43 +00:00
|
|
|
#include "terraform_gui.h"
|
2006-10-24 19:19:25 +00:00
|
|
|
#include "industry.h"
|
2007-11-10 01:17:15 +00:00
|
|
|
#include "transparency.h"
|
2007-12-21 19:49:27 +00:00
|
|
|
#include "strings_func.h"
|
2007-12-23 10:56:02 +00:00
|
|
|
#include "zoom_func.h"
|
2008-01-07 14:23:25 +00:00
|
|
|
#include "string_func.h"
|
2008-01-12 14:10:35 +00:00
|
|
|
#include "player_base.h"
|
|
|
|
#include "player_func.h"
|
|
|
|
#include "player_gui.h"
|
2008-01-13 14:37:30 +00:00
|
|
|
#include "settings_type.h"
|
2008-03-23 07:35:29 +00:00
|
|
|
#include "toolbar_gui.h"
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-01-13 01:21:35 +00:00
|
|
|
#include "network/network.h"
|
|
|
|
#include "network/network_data.h"
|
|
|
|
#include "network/network_client.h"
|
|
|
|
#include "network/network_server.h"
|
|
|
|
#include "network/network_gui.h"
|
|
|
|
|
|
|
|
#include "table/sprites.h"
|
|
|
|
#include "table/strings.h"
|
|
|
|
|
2006-12-29 13:59:48 +00:00
|
|
|
static int _rename_id = 1;
|
|
|
|
static int _rename_what = -1;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2006-11-17 19:31:44 +00:00
|
|
|
RailType _last_built_railtype;
|
2007-05-21 21:58:31 +00:00
|
|
|
RoadType _last_built_roadtype;
|
2007-09-26 19:27:29 +00:00
|
|
|
bool _draw_bounding_boxes = false;
|
|
|
|
|
2004-12-04 17:54:56 +00:00
|
|
|
|
2007-06-10 21:34:45 +00:00
|
|
|
void CcGiveMoney(bool success, TileIndex tile, uint32 p1, uint32 p2)
|
|
|
|
{
|
2007-06-13 17:34:05 +00:00
|
|
|
#ifdef ENABLE_NETWORK
|
2007-09-30 17:38:42 +00:00
|
|
|
if (!success || !_patches.give_money) return;
|
2007-06-10 21:34:45 +00:00
|
|
|
|
|
|
|
char msg[20];
|
|
|
|
/* Inform the player of this action */
|
|
|
|
snprintf(msg, sizeof(msg), "%d", p1);
|
|
|
|
|
|
|
|
if (!_network_server) {
|
|
|
|
SEND_COMMAND(PACKET_CLIENT_CHAT)(NETWORK_ACTION_GIVE_MONEY, DESTTYPE_TEAM, p2, msg);
|
|
|
|
} else {
|
|
|
|
NetworkServer_HandleChat(NETWORK_ACTION_GIVE_MONEY, DESTTYPE_TEAM, p2, msg, NETWORK_SERVER_INDEX);
|
|
|
|
}
|
2007-06-13 17:34:05 +00:00
|
|
|
#endif /* ENABLE_NETWORK */
|
2007-06-10 21:34:45 +00:00
|
|
|
}
|
|
|
|
|
2006-12-30 01:17:53 +00:00
|
|
|
void HandleOnEditText(const char *str)
|
2005-05-13 17:09:05 +00:00
|
|
|
{
|
2006-12-30 01:17:53 +00:00
|
|
|
int id = _rename_id;
|
|
|
|
_cmd_text = str;
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2005-05-13 17:09:05 +00:00
|
|
|
switch (_rename_what) {
|
2007-03-03 04:04:22 +00:00
|
|
|
case 1: // Rename a waypoint
|
2006-12-30 01:17:53 +00:00
|
|
|
if (*str == '\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
|
2007-03-03 04:04:22 +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);
|
2007-08-31 17:38:29 +00:00
|
|
|
Money money = min(p->player_money - p->current_loan, (Money)(atoi(str) / _currency->rate));
|
2004-12-28 09:24:02 +00:00
|
|
|
|
2007-11-19 18:38:10 +00:00
|
|
|
uint32 money_c = Clamp(ClampToI32(money), 0, 20000000); // Clamp between 20 million and 0
|
2004-12-28 09:24:02 +00:00
|
|
|
|
2007-03-03 04:04:22 +00:00
|
|
|
/* Give 'id' the money, and substract it from ourself */
|
2007-06-21 14:32:27 +00:00
|
|
|
DoCommandP(0, money_c, id, CcGiveMoney, CMD_GIVE_MONEY | CMD_MSG(STR_INSUFFICIENT_FUNDS));
|
2007-04-18 22:41:53 +00:00
|
|
|
} break;
|
2004-12-04 17:54:56 +00:00
|
|
|
#endif /* ENABLE_NETWORK */
|
2006-12-29 13:59:48 +00:00
|
|
|
default: NOT_REACHED();
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2006-12-29 13:59:48 +00:00
|
|
|
|
|
|
|
_rename_id = _rename_what = -1;
|
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
|
|
|
|
* @return true if the button is clicked, false if it's unclicked
|
|
|
|
*/
|
2007-11-15 18:28:00 +00:00
|
|
|
bool HandlePlacePushButton(Window *w, int widget, CursorID cursor, ViewportHighlightMode mode, PlaceProc *placeproc)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2007-12-02 14:29:48 +00:00
|
|
|
if (w->IsWidgetDisabled(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);
|
|
|
|
|
2007-12-02 14:29:48 +00:00
|
|
|
if (w->IsWidgetLowered(widget)) {
|
2004-08-09 17:04:08 +00:00
|
|
|
ResetObjectToPlace();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2007-01-14 19:57:49 +00:00
|
|
|
SetObjectToPlace(cursor, PAL_NONE, mode, w->window_class, w->window_number);
|
2007-12-02 14:29:48 +00:00
|
|
|
w->LowerWidget(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
|
|
|
}
|
|
|
|
|
|
|
|
|
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;
|
2006-12-21 10:29:16 +00:00
|
|
|
case 3: ShowNewGRFSettings(!_networking, true, true, &_grfconfig); return;
|
2007-06-22 18:43:11 +00:00
|
|
|
case 4: ShowTransparencyToolbar(); break;
|
|
|
|
|
2007-11-20 14:11:19 +00:00
|
|
|
case 6: ToggleBit(_display_opt, DO_SHOW_TOWN_NAMES); break;
|
|
|
|
case 7: ToggleBit(_display_opt, DO_SHOW_STATION_NAMES); break;
|
|
|
|
case 8: ToggleBit(_display_opt, DO_SHOW_SIGNS); break;
|
|
|
|
case 9: ToggleBit(_display_opt, DO_WAYPOINTS); break;
|
|
|
|
case 10: ToggleBit(_display_opt, DO_FULL_ANIMATION); break;
|
|
|
|
case 11: ToggleBit(_display_opt, DO_FULL_DETAIL); break;
|
2008-01-30 17:36:28 +00:00
|
|
|
case 12: ToggleTransparency(TO_HOUSES); break;
|
2007-11-10 01:17:15 +00:00
|
|
|
case 13: ToggleTransparency(TO_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
|
|
|
}
|
|
|
|
|
2008-03-23 07:35:29 +00:00
|
|
|
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) {
|
2007-02-01 16:21:56 +00:00
|
|
|
case 0: ShowSaveLoadDialog(SLD_SAVE_SCENARIO); break;
|
|
|
|
case 1: ShowSaveLoadDialog(SLD_LOAD_SCENARIO); break;
|
|
|
|
case 2: ShowSaveLoadDialog(SLD_LOAD_HEIGHTMAP); break;
|
|
|
|
case 3: AskExitToGameMenu(); break;
|
|
|
|
case 5: 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;
|
2007-06-30 11:28:26 +00:00
|
|
|
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
|
|
|
{
|
2007-01-10 18:56:51 +00:00
|
|
|
ShowPlayerStations((PlayerID)index);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2004-11-14 19:44:06 +00:00
|
|
|
static void MenuClickFinances(int index)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2007-01-10 18:56:51 +00:00
|
|
|
ShowPlayerFinances((PlayerID)index);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
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) {
|
|
|
|
ShowClientList();
|
|
|
|
} else {
|
|
|
|
if (_networking) index--;
|
2007-01-10 18:56:51 +00:00
|
|
|
ShowPlayerCompany((PlayerID)index);
|
2004-12-04 17:54:56 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2004-09-10 19:02:27 +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
|
|
|
{
|
2007-03-08 16:27:54 +00:00
|
|
|
ShowVehicleListWindow((PlayerID)index, 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
|
|
|
{
|
2007-03-08 16:27:54 +00:00
|
|
|
ShowVehicleListWindow((PlayerID)index, 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
|
|
|
{
|
2007-03-08 16:27:54 +00:00
|
|
|
ShowVehicleListWindow((PlayerID)index, 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
|
|
|
{
|
2007-03-08 16:27:54 +00:00
|
|
|
ShowVehicleListWindow((PlayerID)index, 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
|
|
|
{
|
2007-01-10 18:56:51 +00:00
|
|
|
_last_built_railtype = (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
|
|
|
{
|
2007-05-21 21:58:31 +00:00
|
|
|
_last_built_roadtype = (RoadType)index;
|
|
|
|
ShowBuildRoadToolbar(_last_built_roadtype);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
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
|
2006-10-12 14:59:27 +00:00
|
|
|
void ShowNetworkGiveMoneyWindow(PlayerID player)
|
2004-12-04 17:54:56 +00:00
|
|
|
{
|
|
|
|
_rename_id = player;
|
|
|
|
_rename_what = 3;
|
2006-12-30 01:17:53 +00:00
|
|
|
ShowQueryString(STR_EMPTY, STR_NETWORK_GIVE_MONEY_CAPTION, 30, 180, NULL, CS_NUMERAL);
|
2004-12-04 17:54:56 +00:00
|
|
|
}
|
|
|
|
#endif /* ENABLE_NETWORK */
|
|
|
|
|
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-12-30 01:17:53 +00:00
|
|
|
ShowQueryString(STR_WAYPOINT_RAW, STR_EDIT_WAYPOINT_NAME, 30, 180, NULL, CS_ALPHANUMERAL);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2008-03-23 07:35:29 +00:00
|
|
|
void SelectSignTool()
|
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 {
|
2007-11-15 18:28:00 +00:00
|
|
|
SetObjectToPlace(SPR_CURSOR_SIGN, PAL_NONE, VHM_RECT, WC_MAIN_TOOLBAR, 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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-03-23 07:35:29 +00:00
|
|
|
void MenuClickSmallScreenshot()
|
2006-07-28 21:51:00 +00:00
|
|
|
{
|
|
|
|
SetScreenshotType(SC_VIEWPORT);
|
|
|
|
}
|
|
|
|
|
2008-03-23 07:35:29 +00:00
|
|
|
void MenuClickWorldScreenshot()
|
2006-07-28 21:51:00 +00:00
|
|
|
{
|
|
|
|
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) {
|
2006-10-12 10:43:14 +00:00
|
|
|
case WE_CREATE: w->widget[0].right = w->width - 1; break;
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
case WE_PAINT: {
|
2006-10-12 11:27:37 +00:00
|
|
|
int x, y;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2006-10-12 11:27:37 +00:00
|
|
|
byte count = WP(w, menu_d).item_count;
|
|
|
|
byte sel = WP(w, menu_d).sel_index;
|
|
|
|
uint16 chk = WP(w, menu_d).checked_items;
|
|
|
|
StringID string = WP(w, menu_d).string_id;
|
|
|
|
byte dis = WP(w, menu_d).disabled_items;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2006-10-12 11:27:37 +00:00
|
|
|
DrawWindowWidgets(w);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
x = 1;
|
|
|
|
y = 1;
|
|
|
|
|
2006-10-12 11:27:37 +00:00
|
|
|
for (; count != 0; count--, string++, sel--) {
|
2007-11-19 21:02:30 +00:00
|
|
|
TextColour color = HasBit(dis, 0) ? TC_GREY : (sel == 0) ? TC_WHITE : TC_BLACK;
|
2006-10-12 11:27:37 +00:00
|
|
|
if (sel == 0) GfxFillRect(x, y, x + w->width - 3, y + 9, 0);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-11-19 21:02:30 +00:00
|
|
|
if (HasBit(chk, 0)) DrawString(x + 2, y, STR_CHECKMARK, color);
|
2006-10-12 11:27:37 +00:00
|
|
|
DrawString(x + 2, y, string, color);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
y += 10;
|
|
|
|
chk >>= 1;
|
2006-10-12 11:27:37 +00:00
|
|
|
dis >>= 1;
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
} break;
|
|
|
|
|
|
|
|
case WE_DESTROY: {
|
|
|
|
Window *v = FindWindowById(WC_MAIN_TOOLBAR, 0);
|
2007-12-16 10:54:08 +00:00
|
|
|
v->RaiseWidget(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);
|
2007-12-16 10:54:08 +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)
|
|
|
|
index = WP(w, menu_d).sel_index;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2007-12-16 10:54:08 +00:00
|
|
|
action_id = WP(w, menu_d).action_id;
|
2004-08-09 17:04:08 +00:00
|
|
|
DeleteWindow(w);
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2006-10-12 11:27:37 +00:00
|
|
|
if (index >= 0) {
|
|
|
|
assert((uint)index <= lengthof(_menu_clicked_procs));
|
|
|
|
_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
|
|
|
|
2007-12-16 10:54:08 +00:00
|
|
|
if (index == -1 || index == WP(w, menu_d).sel_index) return;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-12-16 10:54:08 +00:00
|
|
|
WP(w, menu_d).sel_index = index;
|
2004-08-09 17:04:08 +00:00
|
|
|
SetWindowDirty(w);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-10-12 10:43:14 +00:00
|
|
|
/* Dynamic widget length determined by toolbar-string length.
|
|
|
|
* See PopupMainToolbMenu en MenuWndProc */
|
2005-01-03 19:45:18 +00:00
|
|
|
static const Widget _menu_widgets[] = {
|
2006-10-24 14:15:17 +00:00
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 0, 0, 0, 0, 0x0, STR_NULL},
|
2006-10-12 10:43:14 +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-10-24 14:15:17 +00:00
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 0, 240, 0, 81, 0x0, STR_NULL},
|
|
|
|
{ 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)
|
|
|
|
{
|
2006-10-12 11:42:57 +00:00
|
|
|
byte num = ActivePlayerCount();
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2007-03-03 04:04:22 +00:00
|
|
|
/* Increase one to fit in PlayerList in the menu when in network */
|
2007-12-16 10:54:08 +00:00
|
|
|
if (_networking && WP(w, menu_d).main_button == 9) num++;
|
2004-12-04 17:54:56 +00:00
|
|
|
|
2007-12-16 10:54:08 +00:00
|
|
|
if (WP(w, menu_d).item_count != num) {
|
2008-03-23 07:35:29 +00:00
|
|
|
Point pos;
|
2007-12-16 10:54:08 +00:00
|
|
|
WP(w, menu_d).item_count = num;
|
2004-08-09 17:04:08 +00:00
|
|
|
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;
|
2008-03-23 07:35:29 +00:00
|
|
|
pos = GetToolbarDropdownPos(0, w->width, w->height);
|
|
|
|
w->top = pos.y;
|
2004-08-09 17:04:08 +00:00
|
|
|
SetWindowDirty(w);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
2007-11-04 00:08:57 +00:00
|
|
|
byte sel;
|
|
|
|
TextColour color;
|
2004-08-09 17:04:08 +00:00
|
|
|
Player *p;
|
|
|
|
uint16 chk;
|
|
|
|
|
|
|
|
UpdatePlayerMenuHeight(w);
|
|
|
|
DrawWindowWidgets(w);
|
|
|
|
|
|
|
|
x = 1;
|
|
|
|
y = 1;
|
2007-12-16 10:54:08 +00:00
|
|
|
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
|
|
|
|
2007-03-03 04:04:22 +00:00
|
|
|
/* 9 = playerlist */
|
2007-12-16 10:54:08 +00:00
|
|
|
if (_networking && WP(w, menu_d).main_button == 9) {
|
2004-12-04 17:54:56 +00:00
|
|
|
if (sel == 0) {
|
|
|
|
GfxFillRect(x, y, x + 238, y + 9, 0);
|
|
|
|
}
|
2007-11-04 00:08:57 +00:00
|
|
|
DrawString(x + 19, y, STR_NETWORK_CLIENT_LIST, TC_FROMSTRING);
|
2004-12-04 17:54:56 +00:00
|
|
|
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
|
|
|
|
2007-06-25 13:30:38 +00:00
|
|
|
SetDParam(0, p->index);
|
|
|
|
SetDParam(1, p->index);
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2007-11-04 00:08:57 +00:00
|
|
|
color = (p->index == sel) ? TC_WHITE : TC_BLACK;
|
|
|
|
if (chk&1) color = TC_GREY;
|
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);
|
2007-12-16 10:54:08 +00:00
|
|
|
v->RaiseWidget(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);
|
2007-12-16 10:54:08 +00:00
|
|
|
int action_id = WP(w, menu_d).action_id;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-03-03 04:04:22 +00:00
|
|
|
/* We have a new entry at the top of the list of menu 9 when networking
|
|
|
|
* so keep that in count */
|
2007-12-16 10:54:08 +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);
|
2007-12-16 10:54:08 +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)
|
|
|
|
index = WP(w, menu_d).sel_index;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
2007-03-03 04:04:22 +00:00
|
|
|
/* We have a new entry at the top of the list of menu 9 when networking
|
|
|
|
* so keep that in count */
|
2007-12-16 10:54:08 +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
|
|
|
|
2007-12-16 10:54:08 +00:00
|
|
|
if (index == -1 || index == WP(w, menu_d).sel_index) return;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-12-16 10:54:08 +00:00
|
|
|
WP(w, menu_d).sel_index = index;
|
2004-08-09 17:04:08 +00:00
|
|
|
SetWindowDirty(w);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-10-12 10:43:14 +00:00
|
|
|
/** Get the maximum length of a given string in a string-list. This is an
|
|
|
|
* implicit string-list where the ID's are consecutive
|
|
|
|
* @param base_string StringID of the first string in the list
|
|
|
|
* @param count amount of StringID's in the list
|
|
|
|
* @return the length of the longest string */
|
|
|
|
static int GetStringListMaxWidth(StringID base_string, byte count)
|
|
|
|
{
|
|
|
|
char buffer[512];
|
|
|
|
int width, max_width;
|
|
|
|
byte i;
|
|
|
|
|
|
|
|
max_width = 0;
|
|
|
|
for (i = 0; i != count; i++) {
|
2006-10-21 23:31:34 +00:00
|
|
|
GetString(buffer, base_string + i, lastof(buffer));
|
2006-10-12 10:43:14 +00:00
|
|
|
width = GetStringBoundingBox(buffer).width;
|
|
|
|
if (width > max_width) max_width = width;
|
|
|
|
}
|
|
|
|
|
|
|
|
return max_width;
|
|
|
|
}
|
|
|
|
|
2006-10-12 10:52:24 +00:00
|
|
|
/** Show a general dropdown menu. The positioning of the dropdown menu
|
|
|
|
* defaults to the left side of the parent_button, eg the button that caused
|
|
|
|
* this window to appear. The only exceptions are when the right side of this
|
|
|
|
* dropdown would fall outside the main toolbar window, in that case it is
|
|
|
|
* aligned with the toolbar's right side.
|
|
|
|
* Since the disable-mask is only 8 bits right now, these dropdowns are
|
|
|
|
* restricted to 8 items max if any bits of disabled_mask are active.
|
|
|
|
* @param w Pointer to a window this dropdown menu belongs to. Has no effect
|
|
|
|
* whatsoever, only graphically for positioning.
|
|
|
|
* @param parent_button The widget identifier of the button that was clicked for
|
|
|
|
* this dropdown. The created dropdown then knows what button to raise (button) on
|
|
|
|
* action and whose function to execute (action).
|
|
|
|
* It is possible to appoint another button for an action event by setting the
|
|
|
|
* upper 8 bits of this parameter. If non is set, action is presumed to be the same
|
|
|
|
* as button. So<br>
|
|
|
|
* button bits 0 - 7 - widget clicked to get dropdown
|
|
|
|
* action bits 8 - 15 - function of widget to execute on select (defaults to bits 0 - 7)
|
|
|
|
* @param base_string The first StringID shown in the dropdown list. All others are
|
|
|
|
* consecutive indeces from the language file. XXX - fix? Use ingame-string tables?
|
|
|
|
* @param item_count Number of strings in the list, see previous parameter
|
|
|
|
* @param disabled_mask Bitmask of disabled strings in the list
|
|
|
|
* @return Return a pointer to the newly created dropdown window */
|
2008-03-23 07:35:29 +00:00
|
|
|
Window *PopupMainToolbMenu(Window *w, uint16 parent_button, StringID base_string, byte item_count, byte disabled_mask)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2006-10-12 10:43:14 +00:00
|
|
|
int width;
|
2008-03-23 07:35:29 +00:00
|
|
|
int height;
|
|
|
|
Point pos;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2006-10-12 10:43:14 +00:00
|
|
|
assert(disabled_mask == 0 || item_count <= 8);
|
2007-12-02 14:29:48 +00:00
|
|
|
w->LowerWidget(parent_button);
|
2007-12-07 18:05:49 +00:00
|
|
|
w->InvalidateWidget(parent_button);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
DeleteWindowById(WC_TOOLBAR_MENU, 0);
|
|
|
|
|
2008-03-23 07:35:29 +00:00
|
|
|
// Extend the dropdown toolbar to the longest string in the list
|
2006-10-12 10:52:24 +00:00
|
|
|
width = max(GetStringListMaxWidth(base_string, item_count) + 6, 140);
|
2008-03-23 07:35:29 +00:00
|
|
|
height = item_count * 10 + 2;
|
|
|
|
|
|
|
|
pos = GetToolbarDropdownPos(parent_button, width, height);
|
2006-10-12 10:43:14 +00:00
|
|
|
|
2008-03-23 07:35:29 +00:00
|
|
|
w = AllocateWindow(pos.x, pos.y, width, height, MenuWndProc, WC_TOOLBAR_MENU, _menu_widgets);
|
2005-01-03 19:45:18 +00:00
|
|
|
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
|
|
|
|
2007-12-16 10:54:08 +00:00
|
|
|
WP(w, menu_d).item_count = item_count;
|
|
|
|
WP(w, menu_d).sel_index = 0;
|
|
|
|
WP(w, menu_d).main_button = GB(parent_button, 0, 8);
|
|
|
|
WP(w, menu_d).action_id = (GB(parent_button, 8, 8) != 0) ? GB(parent_button, 8, 8) : parent_button;
|
|
|
|
WP(w, menu_d).string_id = base_string;
|
|
|
|
WP(w, menu_d).checked_items = 0;
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2008-03-23 07:35:29 +00:00
|
|
|
Window *PopupMainPlayerToolbMenu(Window *w, int main_button, int gray)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2008-03-23 07:35:29 +00:00
|
|
|
Point pos;;
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2007-12-02 14:29:48 +00:00
|
|
|
w->LowerWidget(main_button);
|
2007-12-07 18:05:49 +00:00
|
|
|
w->InvalidateWidget(main_button);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
DeleteWindowById(WC_TOOLBAR_MENU, 0);
|
2008-03-23 07:35:29 +00:00
|
|
|
pos = GetToolbarDropdownPos(main_button, 241, 82);
|
|
|
|
w = AllocateWindow(pos.x, pos.y, 241, 82, PlayerMenuWndProc, WC_TOOLBAR_MENU, _player_menu_widgets);
|
2004-08-09 17:04:08 +00:00
|
|
|
w->flags4 &= ~WF_WHITE_BORDER_MASK;
|
2007-12-16 10:54:08 +00:00
|
|
|
WP(w, menu_d).item_count = 0;
|
|
|
|
WP(w, menu_d).sel_index = (_local_player != PLAYER_SPECTATOR) ? _local_player : GetPlayerIndexFromMenu(0);
|
2004-12-19 19:17:15 +00:00
|
|
|
if (_networking && main_button == 9) {
|
2006-10-14 15:49:43 +00:00
|
|
|
if (_local_player != PLAYER_SPECTATOR) {
|
2007-12-16 10:54:08 +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 */
|
2007-12-16 10:54:08 +00:00
|
|
|
WP(w, menu_d).sel_index = 0;
|
2005-11-14 19:48:04 +00:00
|
|
|
}
|
2004-12-04 17:54:56 +00:00
|
|
|
}
|
2007-12-16 10:54: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;
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
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;
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2006-11-07 13:06:02 +00:00
|
|
|
assert(w != NULL);
|
2004-08-09 17:04:08 +00:00
|
|
|
vp = w->viewport;
|
|
|
|
|
2006-11-07 13:01:36 +00:00
|
|
|
switch (how) {
|
|
|
|
case ZOOM_IN:
|
2007-05-15 16:08:46 +00:00
|
|
|
if (vp->zoom == ZOOM_LVL_MIN) return false;
|
2007-12-17 22:04:07 +00:00
|
|
|
vp->zoom = (ZoomLevel)((int)vp->zoom - 1);
|
2006-11-07 13:01:36 +00:00
|
|
|
vp->virtual_width >>= 1;
|
|
|
|
vp->virtual_height >>= 1;
|
|
|
|
|
2007-12-16 10:54:08 +00:00
|
|
|
WP(w, vp_d).scrollpos_x += vp->virtual_width >> 1;
|
|
|
|
WP(w, vp_d).scrollpos_y += vp->virtual_height >> 1;
|
|
|
|
WP(w, vp_d).dest_scrollpos_x = WP(w,vp_d).scrollpos_x;
|
|
|
|
WP(w, vp_d).dest_scrollpos_y = WP(w,vp_d).scrollpos_y;
|
2006-11-07 13:01:36 +00:00
|
|
|
break;
|
|
|
|
case ZOOM_OUT:
|
2007-05-15 16:08:46 +00:00
|
|
|
if (vp->zoom == ZOOM_LVL_MAX) return false;
|
2007-12-17 22:04:07 +00:00
|
|
|
vp->zoom = (ZoomLevel)((int)vp->zoom + 1);
|
2006-11-07 13:01:36 +00:00
|
|
|
|
2007-12-16 10:54:08 +00:00
|
|
|
WP(w, vp_d).scrollpos_x -= vp->virtual_width >> 1;
|
|
|
|
WP(w, vp_d).scrollpos_y -= vp->virtual_height >> 1;
|
|
|
|
WP(w, vp_d).dest_scrollpos_x = WP(w,vp_d).scrollpos_x;
|
|
|
|
WP(w, vp_d).dest_scrollpos_y = WP(w,vp_d).scrollpos_y;
|
2006-11-07 13:01:36 +00:00
|
|
|
|
|
|
|
vp->virtual_width <<= 1;
|
|
|
|
vp->virtual_height <<= 1;
|
|
|
|
break;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2006-12-03 13:40:16 +00:00
|
|
|
if (vp != NULL) { // the vp can be null when how == ZOOM_NONE
|
|
|
|
vp->virtual_left = WP(w, vp_d).scrollpos_x;
|
|
|
|
vp->virtual_top = WP(w, vp_d).scrollpos_y;
|
|
|
|
}
|
2006-11-07 13:01:36 +00:00
|
|
|
SetWindowDirty(w);
|
2006-11-07 13:06:02 +00:00
|
|
|
/* Update the windows that have zoom-buttons to perhaps disable their buttons */
|
|
|
|
SendWindowMessageClass(w->window_class, how, w->window_number, 0);
|
2004-08-09 17:04:08 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2004-09-10 19:02:27 +00:00
|
|
|
void ZoomInOrOutToCursorWindow(bool in, Window *w)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2008-03-23 07:35:29 +00:00
|
|
|
assert(w != NULL);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2006-09-03 22:07:28 +00:00
|
|
|
if (_game_mode != GM_MENU) {
|
2008-03-23 07:35:29 +00:00
|
|
|
ViewPort *vp = w->viewport;
|
2007-05-15 16:08:46 +00:00
|
|
|
if ((in && vp->zoom == ZOOM_LVL_MIN) || (!in && vp->zoom == ZOOM_LVL_MAX))
|
2004-08-09 17:04:08 +00:00
|
|
|
return;
|
|
|
|
|
2008-03-23 07:35:29 +00:00
|
|
|
Point pt = GetTileZoomCenterWindow(in,w);
|
2004-08-09 17:04:08 +00:00
|
|
|
if (pt.x != -1) {
|
2007-05-28 16:46:16 +00:00
|
|
|
ScrollWindowTo(pt.x, pt.y, w, true);
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
extern GetNewsStringCallbackProc * const _get_news_string_callback[];
|
|
|
|
|
|
|
|
|
2007-07-29 14:06:53 +00:00
|
|
|
static bool DrawScrollingStatusText(const NewsItem *ni, int pos, int width)
|
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;
|
2008-02-17 00:47:39 +00:00
|
|
|
const char *s, *last;
|
2005-02-06 22:25:27 +00:00
|
|
|
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
|
|
|
|
2007-11-11 01:39:15 +00:00
|
|
|
if (ni->display_mode == NM_CALLBACK) {
|
2004-08-09 17:04:08 +00:00
|
|
|
str = _get_news_string_callback[ni->callback](ni);
|
|
|
|
} else {
|
2007-07-16 09:16:58 +00:00
|
|
|
CopyInDParam(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
|
|
|
}
|
|
|
|
|
2006-10-21 23:31:34 +00:00
|
|
|
GetString(buf, str, lastof(buf));
|
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;
|
2008-02-17 00:47:39 +00:00
|
|
|
last = lastof(buffer);
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2006-11-16 22:05:33 +00:00
|
|
|
for (;;) {
|
|
|
|
WChar c = Utf8Consume(&s);
|
|
|
|
if (c == 0) {
|
2004-08-09 17:04:08 +00:00
|
|
|
break;
|
2008-02-17 00:47:39 +00:00
|
|
|
} else if (c == 0x0D) {
|
|
|
|
if (d + 4 >= last) break;
|
2004-08-09 17:04:08 +00:00
|
|
|
d[0] = d[1] = d[2] = d[3] = ' ';
|
2005-11-14 19:48:04 +00:00
|
|
|
d += 4;
|
2006-11-16 22:05:33 +00:00
|
|
|
} else if (IsPrintable(c)) {
|
2008-02-17 00:47:39 +00:00
|
|
|
if (d + Utf8CharLen(c) >= last) break;
|
2006-11-16 22:05:33 +00:00
|
|
|
d += Utf8Encode(d, c);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
2008-02-17 00:47:39 +00:00
|
|
|
*d = '\0';
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-07-29 14:06:53 +00:00
|
|
|
if (!FillDrawPixelInfo(&tmp_dpi, 141, 1, width, 11)) return true;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
|
|
|
old_dpi = _cur_dpi;
|
|
|
|
_cur_dpi = &tmp_dpi;
|
|
|
|
|
2007-11-04 00:08:57 +00:00
|
|
|
x = DoDrawString(buffer, pos, 0, TC_LIGHT_BLUE);
|
2004-08-09 17:04:08 +00:00
|
|
|
_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: {
|
2006-10-14 15:49:43 +00:00
|
|
|
const Player *p = (_local_player == PLAYER_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(
|
2007-11-04 00:08:57 +00:00
|
|
|
70, 1, (_pause_game || _patches.status_long_date) ? STR_00AF : STR_00AE, TC_FROMSTRING
|
2005-11-14 19:48:04 +00:00
|
|
|
);
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2006-09-03 22:07:28 +00:00
|
|
|
if (p != NULL) {
|
2007-03-03 04:04:22 +00:00
|
|
|
/* Draw player money */
|
2007-06-21 17:25:17 +00:00
|
|
|
SetDParam(0, p->player_money);
|
2007-11-04 00:08:57 +00:00
|
|
|
DrawStringCentered(w->widget[2].left + 70, 1, STR_0004, TC_FROMSTRING);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2007-03-03 04:04:22 +00:00
|
|
|
/* Draw status bar */
|
2005-06-01 23:08:33 +00:00
|
|
|
if (w->message.msg) { // true when saving is active
|
2007-11-04 00:08:57 +00:00
|
|
|
DrawStringCenteredTruncated(w->widget[1].left + 1, w->widget[1].right - 1, 1, STR_SAVING_GAME, TC_FROMSTRING);
|
2005-06-01 23:08:33 +00:00
|
|
|
} else if (_do_autosave) {
|
2007-11-04 00:08:57 +00:00
|
|
|
DrawStringCenteredTruncated(w->widget[1].left + 1, w->widget[1].right - 1, 1, STR_032F_AUTOSAVE, TC_FROMSTRING);
|
2007-03-06 20:59:52 +00:00
|
|
|
} else if (_pause_game) {
|
2007-11-04 00:08:57 +00:00
|
|
|
DrawStringCenteredTruncated(w->widget[1].left + 1, w->widget[1].right - 1, 1, STR_0319_PAUSED, TC_FROMSTRING);
|
2007-12-16 10:54:08 +00:00
|
|
|
} else if (WP(w, def_d).data_1 > -1280 && FindWindowById(WC_NEWS_WINDOW,0) == NULL && _statusbar_news_item.string_id != 0) {
|
2007-03-03 04:04:22 +00:00
|
|
|
/* Draw the scrolling news text */
|
2007-12-16 10:54:08 +00:00
|
|
|
if (!DrawScrollingStatusText(&_statusbar_news_item, WP(w, def_d).data_1, w->widget[1].right - w->widget[1].left - 2)) {
|
|
|
|
WP(w, def_d).data_1 = -1280;
|
2007-07-29 14:06:53 +00:00
|
|
|
if (p != NULL) {
|
|
|
|
/* This is the default text */
|
|
|
|
SetDParam(0, p->index);
|
2007-11-04 00:08:57 +00:00
|
|
|
DrawStringCenteredTruncated(w->widget[1].left + 1, w->widget[1].right - 1, 1, STR_02BA, TC_FROMSTRING);
|
2007-07-29 14:06:53 +00:00
|
|
|
}
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
} else {
|
2006-09-03 22:07:28 +00:00
|
|
|
if (p != NULL) {
|
2007-03-03 04:04:22 +00:00
|
|
|
/* This is the default text */
|
2007-06-25 13:30:38 +00:00
|
|
|
SetDParam(0, p->index);
|
2007-11-04 00:08:57 +00:00
|
|
|
DrawStringCenteredTruncated(w->widget[1].left + 1, w->widget[1].right - 1, 1, STR_02BA, TC_FROMSTRING);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
2005-04-13 23:03:31 +00:00
|
|
|
|
2007-07-29 14:06:53 +00:00
|
|
|
if (WP(w, def_d).data_2 > 0) DrawSprite(SPR_BLOT, PALETTE_TO_RED, w->widget[1].right - 11, 2);
|
2005-06-01 23:08:33 +00:00
|
|
|
} 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;
|
2006-10-14 15:49:43 +00:00
|
|
|
case 2: if (_local_player != PLAYER_SPECTATOR) ShowPlayerFinances(_local_player); break;
|
2005-06-01 23:08:33 +00:00
|
|
|
default: ResetObjectToPlace();
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WE_TICK: {
|
2007-03-06 20:59:52 +00:00
|
|
|
if (_pause_game) return;
|
2005-04-13 23:03:31 +00:00
|
|
|
|
2007-03-03 04:04:22 +00:00
|
|
|
if (WP(w, def_d).data_1 > -1280) { // Scrolling text
|
2005-04-13 23:03:31 +00:00
|
|
|
WP(w, def_d).data_1 -= 2;
|
2007-12-07 18:05:49 +00:00
|
|
|
w->InvalidateWidget(1);
|
2005-04-13 23:03:31 +00:00
|
|
|
}
|
|
|
|
|
2007-03-03 04:04:22 +00:00
|
|
|
if (WP(w, def_d).data_2 > 0) { // Red blot to show there are new unread newsmessages
|
2005-04-13 23:03:31 +00:00
|
|
|
WP(w, def_d).data_2 -= 2;
|
|
|
|
} else if (WP(w, def_d).data_2 < 0) {
|
|
|
|
WP(w, def_d).data_2 = 0;
|
2007-12-07 18:05:49 +00:00
|
|
|
w->InvalidateWidget(1);
|
2005-04-13 23:03:31 +00:00
|
|
|
}
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static const Widget _main_status_widgets[] = {
|
2006-10-24 14:15:17 +00:00
|
|
|
{ WWT_PANEL, RESIZE_NONE, 14, 0, 139, 0, 11, 0x0, STR_NULL},
|
2007-07-29 15:48:43 +00:00
|
|
|
{ WWT_PUSHBTN, RESIZE_RIGHT, 14, 140, 179, 0, 11, 0x0, STR_02B7_SHOW_LAST_MESSAGE_OR_NEWS},
|
|
|
|
{ WWT_PUSHBTN, RESIZE_LR, 14, 180, 319, 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 = {
|
2007-07-29 15:48:43 +00:00
|
|
|
WDP_CENTER, 0, 320, 12, 640, 12,
|
2007-02-01 15:49:12 +00:00
|
|
|
WC_STATUS_BAR, WC_NONE,
|
2004-08-09 17:04:08 +00:00
|
|
|
WDF_STD_TOOLTIPS | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS,
|
|
|
|
_main_status_widgets,
|
|
|
|
StatusBarWndProc
|
|
|
|
};
|
|
|
|
|
2007-03-07 11:47:46 +00:00
|
|
|
extern void UpdateAllStationVirtCoord();
|
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;
|
|
|
|
|
2007-01-14 19:57:49 +00:00
|
|
|
DrawSprite(SPR_OTTD_O, PAL_NONE, off_x - 120, 50);
|
|
|
|
DrawSprite(SPR_OTTD_P, PAL_NONE, off_x - 86, 50);
|
|
|
|
DrawSprite(SPR_OTTD_E, PAL_NONE, off_x - 53, 50);
|
|
|
|
DrawSprite(SPR_OTTD_N, PAL_NONE, off_x - 22, 50);
|
2004-12-09 23:49:23 +00:00
|
|
|
|
2007-01-14 19:57:49 +00:00
|
|
|
DrawSprite(SPR_OTTD_T, PAL_NONE, off_x + 34, 50);
|
|
|
|
DrawSprite(SPR_OTTD_T, PAL_NONE, off_x + 65, 50);
|
|
|
|
DrawSprite(SPR_OTTD_D, PAL_NONE, 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;
|
|
|
|
}
|
|
|
|
|
2007-09-26 19:27:29 +00:00
|
|
|
if (e->we.keypress.keycode == ('B' | WKC_CTRL)) {
|
|
|
|
e->we.keypress.cont = false;
|
|
|
|
_draw_bounding_boxes = !_draw_bounding_boxes;
|
|
|
|
MarkWholeScreenDirty();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2006-09-03 22:07:28 +00:00
|
|
|
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) {
|
2006-11-07 13:08:42 +00:00
|
|
|
if (e->we.keypress.keycode == 'Z') MaxZoomInOut(ZOOM_IN, w);
|
2008-01-01 18:35:31 +00:00
|
|
|
ScrollMainWindowTo(pt.x, pt.y);
|
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)
|
2007-03-03 04:04:22 +00:00
|
|
|
case '0' | WKC_ALT: // Crash the game
|
2005-11-14 19:48:04 +00:00
|
|
|
*(byte*)0 = 0;
|
|
|
|
break;
|
|
|
|
|
2007-03-03 04:04:22 +00:00
|
|
|
case '1' | WKC_ALT: // Gimme money
|
2005-11-14 19:48:04 +00:00
|
|
|
/* Server can not cheat in advertise mode either! */
|
|
|
|
if (!_networking || !_network_server || !_network_advertise)
|
2007-01-10 18:56:51 +00:00
|
|
|
DoCommandP(0, 10000000, 0, NULL, CMD_MONEY_CHEAT);
|
2005-11-14 19:48:04 +00:00
|
|
|
break;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-03-03 04:04:22 +00:00
|
|
|
case '2' | WKC_ALT: // Update the coordinates of all station signs
|
2005-11-14 19:48:04 +00:00
|
|
|
UpdateAllStationVirtCoord();
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
|
2007-04-05 07:49:04 +00:00
|
|
|
case '1' | WKC_CTRL:
|
|
|
|
case '2' | WKC_CTRL:
|
|
|
|
case '3' | WKC_CTRL:
|
|
|
|
case '4' | WKC_CTRL:
|
|
|
|
case '5' | WKC_CTRL:
|
|
|
|
case '6' | WKC_CTRL:
|
|
|
|
case '7' | WKC_CTRL:
|
2007-11-10 01:17:15 +00:00
|
|
|
case '8' | WKC_CTRL:
|
2008-02-10 18:31:33 +00:00
|
|
|
case '9' | WKC_CTRL:
|
2007-04-05 07:49:04 +00:00
|
|
|
/* Transparency toggle hot keys */
|
2007-11-10 01:17:15 +00:00
|
|
|
ToggleTransparency((TransparencyOption)(e->we.keypress.keycode - ('1' | WKC_CTRL)));
|
2005-11-14 19:48:04 +00:00
|
|
|
MarkWholeScreenDirty();
|
|
|
|
break;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-04-05 07:49:04 +00:00
|
|
|
case 'X' | WKC_CTRL:
|
|
|
|
ShowTransparencyToolbar();
|
|
|
|
break;
|
|
|
|
|
2007-04-19 17:54:45 +00:00
|
|
|
case 'X':
|
2007-11-10 01:17:15 +00:00
|
|
|
ResetRestoreAllTransparency();
|
2007-04-05 07:49:04 +00:00
|
|
|
break;
|
|
|
|
|
2004-12-04 17:54:56 +00:00
|
|
|
#ifdef ENABLE_NETWORK
|
2006-11-16 20:57:23 +00:00
|
|
|
case WKC_RETURN: case 'T': // smart chat; send to team if any, otherwise to all
|
2006-10-18 21:07:36 +00:00
|
|
|
if (_networking) {
|
2006-11-16 20:57:23 +00:00
|
|
|
const NetworkClientInfo *cio = NetworkFindClientInfoFromIndex(_network_own_client_index);
|
|
|
|
bool teamchat = false;
|
|
|
|
|
2007-01-14 21:32:13 +00:00
|
|
|
if (cio == NULL) break;
|
|
|
|
|
2006-11-16 20:57:23 +00:00
|
|
|
/* Only players actually playing can speak to team. Eg spectators cannot */
|
|
|
|
if (_patches.prefer_teamchat && IsValidPlayer(cio->client_playas)) {
|
|
|
|
const NetworkClientInfo *ci;
|
|
|
|
FOR_ALL_ACTIVE_CLIENT_INFOS(ci) {
|
|
|
|
if (ci->client_playas == cio->client_playas && ci != cio) {
|
|
|
|
teamchat = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ShowNetworkChatQueryWindow(teamchat ? DESTTYPE_TEAM : DESTTYPE_BROADCAST, cio->client_playas);
|
2006-10-18 21:07:36 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WKC_SHIFT | WKC_RETURN: case WKC_SHIFT | 'T': // send text message to all players
|
2005-11-14 19:48:04 +00:00
|
|
|
if (_networking) ShowNetworkChatQueryWindow(DESTTYPE_BROADCAST, 0);
|
|
|
|
break;
|
2006-10-18 21:07:36 +00:00
|
|
|
|
|
|
|
case WKC_CTRL | WKC_RETURN: case WKC_CTRL | 'T': // send text to all team mates
|
|
|
|
if (_networking) {
|
2007-01-14 21:32:13 +00:00
|
|
|
const NetworkClientInfo *cio = NetworkFindClientInfoFromIndex(_network_own_client_index);
|
|
|
|
if (cio == NULL) break;
|
|
|
|
|
|
|
|
ShowNetworkChatQueryWindow(DESTTYPE_TEAM, cio->client_playas);
|
2006-10-18 21:07:36 +00:00
|
|
|
}
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2007-05-19 23:52:04 +00:00
|
|
|
WP(w, vp_d).scrollpos_x += ScaleByZoom(e->we.scroll.delta.x, vp->zoom);
|
|
|
|
WP(w, vp_d).scrollpos_y += ScaleByZoom(e->we.scroll.delta.y, vp->zoom);
|
2007-05-28 16:46:16 +00:00
|
|
|
WP(w, vp_d).dest_scrollpos_x = WP(w, vp_d).scrollpos_x;
|
|
|
|
WP(w, vp_d).dest_scrollpos_y = WP(w, vp_d).scrollpos_y;
|
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;
|
2006-11-07 13:06:02 +00:00
|
|
|
|
|
|
|
case WE_MESSAGE:
|
|
|
|
/* Forward the message to the appropiate toolbar (ingame or scenario editor) */
|
|
|
|
SendWindowMessage(WC_MAIN_TOOLBAR, 0, e->we.message.msg, e->we.message.wparam, e->we.message.lparam);
|
|
|
|
break;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-03-07 11:47:46 +00:00
|
|
|
void ShowSelectGameWindow();
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2007-03-07 11:47:46 +00:00
|
|
|
void SetupColorsAndInitialWindow()
|
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;
|
2006-12-29 13:59:48 +00:00
|
|
|
int width, height;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
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;
|
|
|
|
|
2006-12-30 01:52:09 +00:00
|
|
|
w = AllocateWindow(0, 0, width, height, MainWindowWndProc, WC_MAIN_WINDOW, NULL);
|
2007-05-15 14:08:39 +00:00
|
|
|
AssignWindowViewport(w, 0, 0, width, height, TileXY(32, 32), ZOOM_LVL_VIEWPORT);
|
2006-12-30 01:52:09 +00:00
|
|
|
|
2007-03-03 04:04:22 +00:00
|
|
|
/* XXX: these are not done */
|
2005-11-14 19:48:04 +00:00
|
|
|
switch (_game_mode) {
|
2006-12-30 01:52:09 +00:00
|
|
|
default: NOT_REACHED();
|
|
|
|
case GM_MENU:
|
|
|
|
ShowSelectGameWindow();
|
|
|
|
break;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2006-12-30 01:52:09 +00:00
|
|
|
case GM_NORMAL:
|
|
|
|
case GM_EDITOR:
|
|
|
|
ShowVitalWindows();
|
|
|
|
break;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-03-07 11:47:46 +00:00
|
|
|
void ShowVitalWindows()
|
2005-01-11 00:54:06 +00:00
|
|
|
{
|
2008-03-23 07:35:29 +00:00
|
|
|
Window *w = AllocateToolbar();
|
2006-11-07 14:41:53 +00:00
|
|
|
DoZoomInOutWindow(ZOOM_NONE, w);
|
|
|
|
|
2005-01-11 00:54:06 +00:00
|
|
|
CLRBITS(w->flags4, WF_WHITE_BORDER_MASK);
|
|
|
|
|
2007-12-02 14:29:48 +00:00
|
|
|
w->SetWidgetDisabledState(0, _networking && !_network_server); // if not server, disable pause button
|
|
|
|
w->SetWidgetDisabledState(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);
|
|
|
|
|
2007-12-16 10:54:08 +00:00
|
|
|
WP(w, def_d).data_1 = -1280;
|
2005-01-11 00:54:06 +00:00
|
|
|
}
|
|
|
|
|
2007-03-07 11:47:46 +00:00
|
|
|
void GameSizeChanged()
|
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
|
|
|
|
2007-03-07 11:47:46 +00:00
|
|
|
void InitializeMainGui()
|
2006-04-22 09:25:36 +00:00
|
|
|
{
|
|
|
|
/* Clean old GUI values */
|
2007-01-10 18:56:51 +00:00
|
|
|
_last_built_railtype = RAILTYPE_RAIL;
|
2007-05-21 21:58:31 +00:00
|
|
|
_last_built_roadtype = ROADTYPE_ROAD;
|
2006-04-22 09:25:36 +00:00
|
|
|
}
|
2006-11-17 19:31:44 +00:00
|
|
|
|
2006-12-04 14:27:54 +00:00
|
|
|
|
2007-01-14 19:57:49 +00:00
|
|
|
|
2007-11-04 00:08:57 +00:00
|
|
|
|
2007-12-11 03:41:33 +00:00
|
|
|
|