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"
|
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"
|
2008-04-18 15:13:45 +00:00
|
|
|
#include "news_gui.h"
|
2004-08-24 08:34:28 +00:00
|
|
|
#include "console.h"
|
2005-03-24 17:03:37 +00:00
|
|
|
#include "waypoint.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-26 13:50:40 +00:00
|
|
|
#include "date_func.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-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"
|
2008-04-18 15:11:39 +00:00
|
|
|
#include "variables.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
|
|
|
|
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-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
|
|
|
}
|
|
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
{
|
2006-02-01 07:36:15 +00:00
|
|
|
switch (e->event) {
|
2008-04-18 15:18:16 +00:00
|
|
|
case WE_PAINT:
|
|
|
|
DrawWindowViewport(w);
|
|
|
|
if (_game_mode == GM_MENU) {
|
|
|
|
int off_x = _screen.width / 2;
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
2007-09-26 19:27:29 +00:00
|
|
|
break;
|
|
|
|
|
2008-04-18 15:18:16 +00:00
|
|
|
case WE_KEYPRESS:
|
|
|
|
switch (e->we.keypress.keycode) {
|
|
|
|
case 'Q' | WKC_CTRL:
|
|
|
|
case 'Q' | WKC_META:
|
|
|
|
HandleExitGameRequest();
|
|
|
|
break;
|
2004-08-09 17:04:08 +00:00
|
|
|
}
|
2004-09-10 19:02:27 +00:00
|
|
|
|
2008-04-18 15:18:16 +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;
|
2005-11-14 19:48:04 +00:00
|
|
|
|
2008-04-18 15:18:16 +00:00
|
|
|
if (e->we.keypress.keycode == WKC_BACKQUOTE) {
|
|
|
|
IConsoleSwitch();
|
|
|
|
e->we.keypress.cont = false;
|
2005-11-14 19:48:04 +00:00
|
|
|
break;
|
2008-04-18 15:18:16 +00:00
|
|
|
}
|
2005-11-14 19:48:04 +00:00
|
|
|
|
2008-04-18 15:18:16 +00:00
|
|
|
if (e->we.keypress.keycode == ('B' | WKC_CTRL)) {
|
|
|
|
e->we.keypress.cont = false;
|
2008-04-18 16:51:54 +00:00
|
|
|
extern bool _draw_bounding_boxes;
|
2008-04-18 15:18:16 +00:00
|
|
|
_draw_bounding_boxes = !_draw_bounding_boxes;
|
|
|
|
MarkWholeScreenDirty();
|
2005-11-14 19:48:04 +00:00
|
|
|
break;
|
2008-04-18 15:18:16 +00:00
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-04-18 15:18:16 +00:00
|
|
|
if (_game_mode == GM_MENU) break;
|
2005-11-14 19:48:04 +00:00
|
|
|
|
2008-04-18 15:18:16 +00:00
|
|
|
switch (e->we.keypress.keycode) {
|
|
|
|
case 'C':
|
|
|
|
case 'Z': {
|
|
|
|
Point pt = GetTileBelowCursor();
|
|
|
|
if (pt.x != -1) {
|
|
|
|
if (e->we.keypress.keycode == 'Z') MaxZoomInOut(ZOOM_IN, w);
|
|
|
|
ScrollMainWindowTo(pt.x, pt.y);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-04-18 15:18:16 +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)
|
|
|
|
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! */
|
|
|
|
if (!_networking || !_network_server || !_network_advertise)
|
|
|
|
DoCommandP(0, 10000000, 0, NULL, CMD_MONEY_CHEAT);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case '2' | WKC_ALT: // Update the coordinates of all station signs
|
|
|
|
UpdateAllStationVirtCoord();
|
|
|
|
break;
|
|
|
|
#endif
|
2007-04-05 07:49:04 +00:00
|
|
|
|
2008-04-18 15:18:16 +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)(e->we.keypress.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)(e->we.keypress.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-04-18 15:18:16 +00:00
|
|
|
case WKC_RETURN: case 'T': // smart chat; send to team if any, otherwise to all
|
|
|
|
if (_networking) {
|
|
|
|
const NetworkClientInfo *cio = NetworkFindClientInfoFromIndex(_network_own_client_index);
|
|
|
|
bool teamchat = false;
|
|
|
|
|
|
|
|
if (cio == NULL) break;
|
|
|
|
|
|
|
|
/* 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;
|
|
|
|
}
|
2006-11-16 20:57:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-04-18 15:18:16 +00:00
|
|
|
ShowNetworkChatQueryWindow(teamchat ? DESTTYPE_TEAM : DESTTYPE_BROADCAST, cio->client_playas);
|
|
|
|
}
|
|
|
|
break;
|
2006-10-18 21:07:36 +00:00
|
|
|
|
2008-04-18 15:18:16 +00:00
|
|
|
case WKC_SHIFT | WKC_RETURN: case WKC_SHIFT | 'T': // send text message to all players
|
|
|
|
if (_networking) ShowNetworkChatQueryWindow(DESTTYPE_BROADCAST, 0);
|
|
|
|
break;
|
2006-10-18 21:07:36 +00:00
|
|
|
|
2008-04-18 15:18:16 +00:00
|
|
|
case WKC_CTRL | WKC_RETURN: case WKC_CTRL | 'T': // send text to all team mates
|
|
|
|
if (_networking) {
|
|
|
|
const NetworkClientInfo *cio = NetworkFindClientInfoFromIndex(_network_own_client_index);
|
|
|
|
if (cio == NULL) break;
|
2007-01-14 21:32:13 +00:00
|
|
|
|
2008-04-18 15:18:16 +00:00
|
|
|
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-04-18 15:18:16 +00:00
|
|
|
default: return;
|
|
|
|
}
|
|
|
|
e->we.keypress.cont = false;
|
|
|
|
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
|
|
|
{
|
2008-04-18 15:18:16 +00:00
|
|
|
for (uint 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
|
|
|
}
|
|
|
|
|
2008-04-18 15:18:16 +00:00
|
|
|
int width = _screen.width;
|
|
|
|
int height = _screen.height;
|
2004-08-09 17:04:08 +00:00
|
|
|
|
2008-04-18 15:18:16 +00:00
|
|
|
Window *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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-04-18 15:13:45 +00:00
|
|
|
extern void ShowStatusBar();
|
|
|
|
|
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);
|
|
|
|
|
(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
|
|
|
{
|
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();
|
|
|
|
}
|