2005-07-24 14:12:37 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
2009-08-21 20:21:05 +00:00
|
|
|
/*
|
|
|
|
* This file is part of OpenTTD.
|
|
|
|
* OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
|
|
|
|
* OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
* See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2008-05-06 15:11:33 +00:00
|
|
|
/** @file main_gui.cpp Handling of the main viewport. */
|
2007-03-03 04:04:22 +00:00
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
#include "stdafx.h"
|
2005-08-06 15:18:26 +00:00
|
|
|
#include "currency.h"
|
2005-02-10 05:43:30 +00:00
|
|
|
#include "spritecache.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"
|
2008-05-24 10:15:06 +00:00
|
|
|
#include "console_gui.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"
|
2007-04-05 07:49:04 +00:00
|
|
|
#include "transparency_gui.h"
|
2007-12-25 11:26:07 +00:00
|
|
|
#include "functions.h"
|
2007-12-29 09:24:26 +00:00
|
|
|
#include "sound_func.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-09-30 20:51:04 +00:00
|
|
|
#include "company_base.h"
|
|
|
|
#include "company_func.h"
|
2008-03-23 07:35:29 +00:00
|
|
|
#include "toolbar_gui.h"
|
2008-05-16 07:08:04 +00:00
|
|
|
#include "statusbar_gui.h"
|
2008-05-07 13:10:15 +00:00
|
|
|
#include "tilehighlight_func.h"
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-01-13 01:21:35 +00:00
|
|
|
#include "network/network.h"
|
2008-05-30 18:20:26 +00:00
|
|
|
#include "network/network_func.h"
|
2008-01-13 01:21:35 +00:00
|
|
|
#include "network/network_gui.h"
|
2008-12-23 11:06:52 +00:00
|
|
|
#include "network/network_base.h"
|
2008-01-13 01:21:35 +00:00
|
|
|
|
|
|
|
#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
|
|
|
|
2010-01-11 18:46:09 +00:00
|
|
|
void CcGiveMoney(const CommandCost &result, TileIndex tile, uint32 p1, uint32 p2)
|
2007-06-10 21:34:45 +00:00
|
|
|
{
|
2007-06-13 17:34:05 +00:00
|
|
|
#ifdef ENABLE_NETWORK
|
2010-01-11 18:46:09 +00:00
|
|
|
if (result.Failed() || !_settings_game.economy.give_money) return;
|
2007-06-10 21:34:45 +00:00
|
|
|
|
2008-09-30 20:39:50 +00:00
|
|
|
/* Inform the company of the action of one of it's clients (controllers). */
|
2008-12-29 10:37:53 +00:00
|
|
|
char msg[64];
|
|
|
|
SetDParam(0, p2);
|
|
|
|
GetString(msg, STR_COMPANY_NAME, lastof(msg));
|
2007-06-10 21:34:45 +00:00
|
|
|
|
|
|
|
if (!_network_server) {
|
2008-12-29 10:37:53 +00:00
|
|
|
NetworkClientSendChat(NETWORK_ACTION_GIVE_MONEY, DESTTYPE_TEAM, p2, msg, p1);
|
2007-06-10 21:34:45 +00:00
|
|
|
} else {
|
2008-12-29 10:37:53 +00:00
|
|
|
NetworkServerSendChat(NETWORK_ACTION_GIVE_MONEY, DESTTYPE_TEAM, p2, msg, CLIENT_ID_SERVER, p1);
|
2007-06-10 21:34:45 +00:00
|
|
|
}
|
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
|
|
|
{
|
|
|
|
switch (_rename_what) {
|
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
|
2009-11-02 15:39:03 +00:00
|
|
|
const Company *c = Company::GetIfValid(_local_company);
|
|
|
|
if (c == NULL) break;
|
2008-09-30 20:39:50 +00:00
|
|
|
Money money = min(c->money - c->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 */
|
2009-08-05 17:59:21 +00:00
|
|
|
DoCommandP(0, money_c, _rename_id, CMD_GIVE_MONEY | CMD_MSG(STR_ERROR_INSUFFICIENT_FUNDS), CcGiveMoney, str);
|
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
|
|
|
|
*/
|
2009-04-19 10:31:30 +00:00
|
|
|
bool HandlePlacePushButton(Window *w, int widget, CursorID cursor, HighLightStyle 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);
|
2008-05-06 22:08:18 +00:00
|
|
|
w->SetDirty();
|
2004-08-09 17:04:08 +00:00
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-01-11 18:46:09 +00:00
|
|
|
void CcPlaySound10(const CommandCost &result, TileIndex tile, uint32 p1, uint32 p2)
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2010-01-11 18:46:09 +00:00
|
|
|
if (result.Succeeded()) SndPlayTileFx(SND_12_EXPLOSION, tile);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
|
|
|
|
2004-12-04 17:54:56 +00:00
|
|
|
#ifdef ENABLE_NETWORK
|
2008-09-30 20:39:50 +00:00
|
|
|
void ShowNetworkGiveMoneyWindow(CompanyID company)
|
2004-12-04 17:54:56 +00:00
|
|
|
{
|
2008-09-30 20:39:50 +00:00
|
|
|
_rename_id = company;
|
2004-12-04 17:54:56 +00:00
|
|
|
_rename_what = 3;
|
2008-09-15 16:29:40 +00:00
|
|
|
ShowQueryString(STR_EMPTY, STR_NETWORK_GIVE_MONEY_CAPTION, 30, 180, NULL, CS_NUMERAL, QSF_NONE);
|
2004-12-04 17:54:56 +00:00
|
|
|
}
|
|
|
|
#endif /* ENABLE_NETWORK */
|
|
|
|
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2009-03-15 00:32:18 +00:00
|
|
|
/* Zooms a viewport in a window in or out
|
|
|
|
* No button handling or what so ever */
|
2004-09-03 19:59:05 +00:00
|
|
|
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;
|
|
|
|
|
2008-05-11 15:08:44 +00:00
|
|
|
w->viewport->scrollpos_x += vp->virtual_width >> 1;
|
|
|
|
w->viewport->scrollpos_y += vp->virtual_height >> 1;
|
|
|
|
w->viewport->dest_scrollpos_x = w->viewport->scrollpos_x;
|
|
|
|
w->viewport->dest_scrollpos_y = w->viewport->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
|
|
|
|
2008-05-11 15:08:44 +00:00
|
|
|
w->viewport->scrollpos_x -= vp->virtual_width >> 1;
|
|
|
|
w->viewport->scrollpos_y -= vp->virtual_height >> 1;
|
|
|
|
w->viewport->dest_scrollpos_x = w->viewport->scrollpos_x;
|
|
|
|
w->viewport->dest_scrollpos_y = w->viewport->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
|
2008-05-11 15:08:44 +00:00
|
|
|
vp->virtual_left = w->viewport->scrollpos_x;
|
|
|
|
vp->virtual_top = w->viewport->scrollpos_y;
|
2006-12-03 13:40:16 +00:00
|
|
|
}
|
2006-11-07 13:06:02 +00:00
|
|
|
/* Update the windows that have zoom-buttons to perhaps disable their buttons */
|
2009-09-30 21:00:35 +00:00
|
|
|
w->InvalidateData();
|
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;
|
|
|
|
|
2009-01-09 22:56:28 +00:00
|
|
|
Point pt = GetTileZoomCenterWindow(in, w);
|
2004-08-09 17:04:08 +00:00
|
|
|
if (pt.x != -1) {
|
2009-03-15 15:25:18 +00:00
|
|
|
ScrollWindowTo(pt.x, pt.y, -1, 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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-08-01 12:42:27 +00:00
|
|
|
/** Widgets of the main window. */
|
|
|
|
enum MainWindowWidgets {
|
|
|
|
MW_VIEWPORT, ///< Main window viewport.
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct NWidgetPart _nested_main_window_widgets[] = {
|
|
|
|
NWidget(NWID_VIEWPORT, INVALID_COLOUR, MW_VIEWPORT), SetResize(1, 1),
|
|
|
|
};
|
|
|
|
|
|
|
|
static const WindowDesc _main_window_desc(
|
2009-11-28 14:42:35 +00:00
|
|
|
WDP_MANUAL, 0, 0,
|
2009-08-01 12:42:27 +00:00
|
|
|
WC_MAIN_WINDOW, WC_NONE,
|
|
|
|
0,
|
2009-11-15 10:26:01 +00:00
|
|
|
_nested_main_window_widgets, lengthof(_nested_main_window_widgets)
|
2009-08-01 12:42:27 +00:00
|
|
|
);
|
|
|
|
|
2008-05-13 14:59:50 +00:00
|
|
|
struct MainWindow : Window
|
2006-06-27 21:25:53 +00:00
|
|
|
{
|
2009-08-01 12:42:27 +00:00
|
|
|
MainWindow() : Window()
|
2008-05-13 14:59:50 +00:00
|
|
|
{
|
2009-08-01 12:42:27 +00:00
|
|
|
this->InitNested(&_main_window_desc, 0);
|
|
|
|
ResizeWindow(this, _screen.width, _screen.height);
|
|
|
|
|
2009-09-19 11:31:12 +00:00
|
|
|
NWidgetViewport *nvp = this->GetWidget<NWidgetViewport>(MW_VIEWPORT);
|
2009-08-01 12:42:27 +00:00
|
|
|
nvp->InitializeViewport(this, TileXY(32, 32), ZOOM_LVL_VIEWPORT);
|
2008-05-13 14:59:50 +00:00
|
|
|
}
|
2007-09-26 19:27:29 +00:00
|
|
|
|
2008-05-13 14:59:50 +00:00
|
|
|
virtual void OnPaint()
|
|
|
|
{
|
2009-08-01 12:42:27 +00:00
|
|
|
this->DrawWidgets();
|
2008-05-13 14:59:50 +00:00
|
|
|
if (_game_mode == GM_MENU) {
|
2009-08-01 12:42:27 +00:00
|
|
|
int off_x = this->width / 2;
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2008-05-13 14:59:50 +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);
|
2005-11-14 19:48:04 +00:00
|
|
|
|
2008-05-13 14:59:50 +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);
|
|
|
|
}
|
|
|
|
}
|
2005-11-14 19:48:04 +00:00
|
|
|
|
2008-05-17 23:11:06 +00:00
|
|
|
virtual EventState OnKeyPress(uint16 key, uint16 keycode)
|
2008-05-13 14:59:50 +00:00
|
|
|
{
|
|
|
|
switch (keycode) {
|
|
|
|
case 'Q' | WKC_CTRL:
|
|
|
|
case 'Q' | WKC_META:
|
|
|
|
HandleExitGameRequest();
|
2008-05-17 23:11:06 +00:00
|
|
|
return ES_HANDLED;
|
2008-05-13 14:59:50 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-05-13 14:59:50 +00:00
|
|
|
/* Disable all key shortcuts, except quit shortcuts when
|
2009-03-14 18:16:29 +00:00
|
|
|
* generating the world, otherwise they create threading
|
|
|
|
* problem during the generating, resulting in random
|
|
|
|
* assertions that are hard to trigger and debug */
|
2008-05-17 23:11:06 +00:00
|
|
|
if (IsGeneratingWorld()) return ES_NOT_HANDLED;
|
2005-11-14 19:48:04 +00:00
|
|
|
|
2008-05-13 14:59:50 +00:00
|
|
|
if (keycode == WKC_BACKQUOTE) {
|
|
|
|
IConsoleSwitch();
|
2008-05-17 23:11:06 +00:00
|
|
|
return ES_HANDLED;
|
2008-05-13 14:59:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (keycode == ('B' | WKC_CTRL)) {
|
|
|
|
extern bool _draw_bounding_boxes;
|
|
|
|
_draw_bounding_boxes = !_draw_bounding_boxes;
|
|
|
|
MarkWholeScreenDirty();
|
2008-05-17 23:11:06 +00:00
|
|
|
return ES_HANDLED;
|
2008-05-13 14:59:50 +00:00
|
|
|
}
|
|
|
|
|
2008-05-17 23:11:06 +00:00
|
|
|
if (_game_mode == GM_MENU) return ES_NOT_HANDLED;
|
2008-05-13 14:59:50 +00:00
|
|
|
|
|
|
|
switch (keycode) {
|
|
|
|
case 'C':
|
|
|
|
case 'Z': {
|
|
|
|
Point pt = GetTileBelowCursor();
|
|
|
|
if (pt.x != -1) {
|
|
|
|
if (keycode == 'Z') MaxZoomInOut(ZOOM_IN, this);
|
|
|
|
ScrollMainWindowTo(pt.x, pt.y);
|
2008-04-18 15:18:16 +00:00
|
|
|
}
|
2008-05-13 14:59:50 +00:00
|
|
|
break;
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-05-13 14:59:50 +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;
|
2008-04-03 19:55:40 +00:00
|
|
|
|
2008-04-18 15:18:16 +00:00
|
|
|
#if defined(_DEBUG)
|
2008-05-13 14:59:50 +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! */
|
2008-11-25 23:24:38 +00:00
|
|
|
#ifdef ENABLE_NETWORK
|
2008-06-09 12:17:01 +00:00
|
|
|
if (!_networking || !_network_server || !_settings_client.network.server_advertise)
|
2008-11-25 23:24:38 +00:00
|
|
|
#endif /* ENABLE_NETWORK */
|
2008-12-28 14:37:19 +00:00
|
|
|
DoCommandP(0, 10000000, 0, CMD_MONEY_CHEAT);
|
2008-05-13 14:59:50 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case '2' | WKC_ALT: // Update the coordinates of all station signs
|
2009-12-13 19:33:07 +00:00
|
|
|
UpdateAllVirtCoords();
|
2008-05-13 14:59:50 +00:00
|
|
|
break;
|
2008-04-18 15:18:16 +00:00
|
|
|
#endif
|
2007-04-05 07:49:04 +00:00
|
|
|
|
2008-05-13 14:59:50 +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:
|
|
|
|
case '8' | WKC_CTRL:
|
|
|
|
case '9' | WKC_CTRL:
|
|
|
|
/* Transparency toggle hot keys */
|
|
|
|
ToggleTransparency((TransparencyOption)(keycode - ('1' | WKC_CTRL)));
|
|
|
|
MarkWholeScreenDirty();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case '1' | WKC_CTRL | WKC_SHIFT:
|
|
|
|
case '2' | WKC_CTRL | WKC_SHIFT:
|
|
|
|
case '3' | WKC_CTRL | WKC_SHIFT:
|
|
|
|
case '4' | WKC_CTRL | WKC_SHIFT:
|
|
|
|
case '5' | WKC_CTRL | WKC_SHIFT:
|
|
|
|
case '6' | WKC_CTRL | WKC_SHIFT:
|
|
|
|
case '7' | WKC_CTRL | WKC_SHIFT:
|
|
|
|
case '8' | WKC_CTRL | WKC_SHIFT:
|
|
|
|
/* Invisibility toggle hot keys */
|
|
|
|
ToggleInvisibilityWithTransparency((TransparencyOption)(keycode - ('1' | WKC_CTRL | WKC_SHIFT)));
|
|
|
|
MarkWholeScreenDirty();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'X' | WKC_CTRL:
|
|
|
|
ShowTransparencyToolbar();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'X':
|
|
|
|
ResetRestoreAllTransparency();
|
|
|
|
break;
|
2007-04-05 07:49:04 +00:00
|
|
|
|
2004-12-04 17:54:56 +00:00
|
|
|
#ifdef ENABLE_NETWORK
|
2008-05-13 14:59:50 +00:00
|
|
|
case WKC_RETURN: case 'T': // smart chat; send to team if any, otherwise to all
|
|
|
|
if (_networking) {
|
2008-12-22 21:30:21 +00:00
|
|
|
const NetworkClientInfo *cio = NetworkFindClientInfoFromClientID(_network_own_client_id);
|
2008-05-13 14:59:50 +00:00
|
|
|
if (cio == NULL) break;
|
|
|
|
|
2008-12-22 21:15:02 +00:00
|
|
|
ShowNetworkChatQueryWindow(NetworkClientPreferTeamChat(cio) ? DESTTYPE_TEAM : DESTTYPE_BROADCAST, cio->client_playas);
|
2008-05-13 14:59:50 +00:00
|
|
|
}
|
|
|
|
break;
|
2006-10-18 21:07:36 +00:00
|
|
|
|
2008-09-30 20:39:50 +00:00
|
|
|
case WKC_SHIFT | WKC_RETURN: case WKC_SHIFT | 'T': // send text message to all clients
|
2008-05-13 14:59:50 +00:00
|
|
|
if (_networking) ShowNetworkChatQueryWindow(DESTTYPE_BROADCAST, 0);
|
|
|
|
break;
|
2007-01-14 21:32:13 +00:00
|
|
|
|
2008-05-13 14:59:50 +00:00
|
|
|
case WKC_CTRL | WKC_RETURN: case WKC_CTRL | 'T': // send text to all team mates
|
|
|
|
if (_networking) {
|
2008-12-22 21:30:21 +00:00
|
|
|
const NetworkClientInfo *cio = NetworkFindClientInfoFromClientID(_network_own_client_id);
|
2008-05-13 14:59:50 +00:00
|
|
|
if (cio == NULL) break;
|
|
|
|
|
|
|
|
ShowNetworkChatQueryWindow(DESTTYPE_TEAM, cio->client_playas);
|
|
|
|
}
|
|
|
|
break;
|
2005-05-06 20:38:18 +00:00
|
|
|
#endif
|
2004-12-04 17:54:56 +00:00
|
|
|
|
2008-05-17 23:11:06 +00:00
|
|
|
default: return ES_NOT_HANDLED;
|
2008-05-13 14:59:50 +00:00
|
|
|
}
|
2008-05-17 23:11:06 +00:00
|
|
|
return ES_HANDLED;
|
2008-05-13 14:59:50 +00:00
|
|
|
}
|
2006-08-21 14:34:59 +00:00
|
|
|
|
2008-05-13 14:59:50 +00:00
|
|
|
virtual void OnScroll(Point delta)
|
|
|
|
{
|
|
|
|
ViewPort *vp = IsPtInWindowViewport(this, _cursor.pos.x, _cursor.pos.y);
|
2006-08-21 14:34:59 +00:00
|
|
|
|
2008-05-13 14:59:50 +00:00
|
|
|
if (vp == NULL) {
|
|
|
|
_cursor.fix_at = false;
|
|
|
|
_scrolling_viewport = false;
|
|
|
|
}
|
2006-08-21 14:34:59 +00:00
|
|
|
|
2008-05-13 14:59:50 +00:00
|
|
|
this->viewport->scrollpos_x += ScaleByZoom(delta.x, vp->zoom);
|
|
|
|
this->viewport->scrollpos_y += ScaleByZoom(delta.y, vp->zoom);
|
|
|
|
this->viewport->dest_scrollpos_x = this->viewport->scrollpos_x;
|
|
|
|
this->viewport->dest_scrollpos_y = this->viewport->scrollpos_y;
|
|
|
|
};
|
2006-08-21 14:59:58 +00:00
|
|
|
|
2008-05-13 14:59:50 +00:00
|
|
|
virtual void OnMouseWheel(int wheel)
|
|
|
|
{
|
|
|
|
ZoomInOrOutToCursorWindow(wheel < 0, this);
|
|
|
|
}
|
2006-11-07 13:06:02 +00:00
|
|
|
|
2009-10-24 14:53:55 +00:00
|
|
|
virtual void OnResize()
|
2009-08-01 12:42:27 +00:00
|
|
|
{
|
|
|
|
if (this->viewport != NULL) {
|
2009-09-19 11:31:12 +00:00
|
|
|
NWidgetViewport *nvp = this->GetWidget<NWidgetViewport>(MW_VIEWPORT);
|
2009-08-01 12:42:27 +00:00
|
|
|
nvp->UpdateViewportCoordinates(this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-05-13 14:59:50 +00:00
|
|
|
virtual void OnInvalidateData(int data)
|
|
|
|
{
|
|
|
|
/* Forward the message to the appropiate toolbar (ingame or scenario editor) */
|
|
|
|
InvalidateWindowData(WC_MAIN_TOOLBAR, 0, data);
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2008-05-13 14:59:50 +00:00
|
|
|
};
|
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
|
|
|
|
2009-02-09 02:57:15 +00:00
|
|
|
void SetupColoursAndInitialWindow()
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2008-04-18 15:18:16 +00:00
|
|
|
for (uint i = 0; i != 16; i++) {
|
2009-02-09 02:57:15 +00:00
|
|
|
const byte *b = GetNonSprite(PALETTE_RECOLOUR_START + i, ST_RECOLOUR);
|
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
|
|
|
}
|
|
|
|
|
2009-08-01 12:42:27 +00:00
|
|
|
new MainWindow;
|
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-05-15 19:00:20 +00:00
|
|
|
AllocateToolbar();
|
2006-11-07 14:41:53 +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
|
|
|
/* Status bad only for normal games */
|
|
|
|
if (_game_mode == GM_EDITOR) return;
|
2005-01-11 00:54:06 +00:00
|
|
|
|
2008-04-18 15:13:45 +00:00
|
|
|
ShowStatusBar();
|
2005-01-11 00:54:06 +00:00
|
|
|
}
|
|
|
|
|
2008-04-07 20:28:58 +00:00
|
|
|
/**
|
|
|
|
* Size of the application screen changed.
|
|
|
|
* Adapt the game screen-size, re-allocate the open windows, and repaint everything
|
|
|
|
*/
|
2007-03-07 11:47:46 +00:00
|
|
|
void GameSizeChanged()
|
2004-08-09 17:04:08 +00:00
|
|
|
{
|
2008-06-16 19:38:41 +00:00
|
|
|
_cur_resolution.width = _screen.width;
|
|
|
|
_cur_resolution.height = _screen.height;
|
2004-08-09 17:04:08 +00:00
|
|
|
ScreenSizeChanged();
|
2008-04-18 21:49:38 +00:00
|
|
|
RelocateAllWindows(_screen.width, _screen.height);
|
2004-08-09 17:04:08 +00:00
|
|
|
MarkWholeScreenDirty();
|
|
|
|
}
|