src/misc_gui.cpp
author rubidium
Fri, 18 Apr 2008 10:16:51 +0000
changeset 8973 749e572f9378
parent 8969 6d1c74e0e2cd
child 9031 445046ca06af
permissions -rw-r--r--
(svn r12765) -Codechange: move some stuff out of variables.h that required including other headers in variables.h.
2186
db48cf29b983 (svn r2701) Insert Id tags into all source files
tron
parents: 2167
diff changeset
     1
/* $Id$ */
db48cf29b983 (svn r2701) Insert Id tags into all source files
tron
parents: 2167
diff changeset
     2
6201
bee01dc45e39 (svn r8987) -Cleanup: doxygen changes. Again. Mostly (still) @files missing tags and (more than just) a few comments style.
belugas
parents: 6197
diff changeset
     3
/** @file misc_gui.cpp */
bee01dc45e39 (svn r8987) -Cleanup: doxygen changes. Again. Mostly (still) @files missing tags and (more than just) a few comments style.
belugas
parents: 6197
diff changeset
     4
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
     5
#include "stdafx.h"
1891
862800791170 (svn r2397) - CodeChange: rename all "ttd" files to "openttd" files.
Darkvater
parents: 1879
diff changeset
     6
#include "openttd.h"
4300
c7e43c47a2b9 (svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
truelight
parents: 4299
diff changeset
     7
#include "heightmap.h"
1299
39c06aba09aa (svn r1803) Move debugging stuff into files of it's own
tron
parents: 1274
diff changeset
     8
#include "debug.h"
6453
226bcddeba32 (svn r9609) -Codechange: Move some function prototypes out of functions.h and into landscape.h, and add a few where they didn't exist.
maedhros
parents: 6350
diff changeset
     9
#include "landscape.h"
5352
86fca6a41aa1 (svn r7523) -Feature: Add the possibility to change the newgrf configuration of a running game.
Darkvater
parents: 5320
diff changeset
    10
#include "newgrf.h"
7750
7afbef1235e0 (svn r11287) -Codechange: add support for pushing paramaters into NewIndustries' error messages. Patch by Csaboka.
rubidium
parents: 7521
diff changeset
    11
#include "newgrf_text.h"
2162
b98e430ffd10 (svn r2672) Move saving/loading related declarations to saveload.h
tron
parents: 2159
diff changeset
    12
#include "saveload.h"
8108
b42a0e5c67ef (svn r11669) -Codechange: refactor tile.h -> tile_type.h and tile_map.h
rubidium
parents: 8107
diff changeset
    13
#include "tile_map.h"
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    14
#include "gui.h"
8107
bb7deea89175 (svn r11668) -Codechange: more refactoring aimed at reducing compile time and making it more logic where function definitions can be found.
rubidium
parents: 8106
diff changeset
    15
#include "window_gui.h"
bb7deea89175 (svn r11668) -Codechange: more refactoring aimed at reducing compile time and making it more logic where function definitions can be found.
rubidium
parents: 8106
diff changeset
    16
#include "station_gui.h"
bb7deea89175 (svn r11668) -Codechange: more refactoring aimed at reducing compile time and making it more logic where function definitions can be found.
rubidium
parents: 8106
diff changeset
    17
#include "textbuf_gui.h"
8224
c5a64d87cc54 (svn r11787) -Codechange: more header rewrites. This time related to viewport.h.
rubidium
parents: 8214
diff changeset
    18
#include "viewport_func.h"
c5a64d87cc54 (svn r11787) -Codechange: more header rewrites. This time related to viewport.h.
rubidium
parents: 8214
diff changeset
    19
#include "gfx_func.h"
8785
871586967963 (svn r12489) -Codechange: split station.h into station_base.h and station_func.h.
rubidium
parents: 8748
diff changeset
    20
#include "station_func.h"
8116
8da76dcb3287 (svn r11677) -Codechange: move price and command related types/functions to their respective places.
rubidium
parents: 8114
diff changeset
    21
#include "command_func.h"
8254
1496654ca5e7 (svn r11818) -Codechange: split player.h into smaller pieces.
rubidium
parents: 8224
diff changeset
    22
#include "player_func.h"
1496654ca5e7 (svn r11818) -Codechange: split player.h into smaller pieces.
rubidium
parents: 8224
diff changeset
    23
#include "player_base.h"
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    24
#include "town.h"
5469
7edfc643abbc (svn r7751) -Codechange: move network_* to a new network map. Furthermore move the low level network functions to network/core, so they can be reused by the masterserver and website-serverlist-updater.
rubidium
parents: 5447
diff changeset
    25
#include "network/network.h"
2159
f6284cf5fab0 (svn r2669) Shuffle some more stuff around to reduce dependencies
tron
parents: 2134
diff changeset
    26
#include "variables.h"
8965
29a591456a2f (svn r12757) -Codechange: move all cheat related stuff from all over the place to a single location.
rubidium
parents: 8916
diff changeset
    27
#include "cheat_func.h"
3890
e04bc34bc50c (svn r4946) "Feature": Add a cheat that allows running electric engines on normal rail
celestar
parents: 3798
diff changeset
    28
#include "train.h"
4300
c7e43c47a2b9 (svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
truelight
parents: 4299
diff changeset
    29
#include "tgp.h"
6091
c8827d9ae04a (svn r8826) -Codechange: Replace _cargoc's separate arrays with a regular struct array (with accessor) and implement new initialization method using cargo labels.
peter1138
parents: 5893
diff changeset
    30
#include "cargotype.h"
6190
01a2b579b668 (svn r8969) -Codechange: rework of the player face bits.
rubidium
parents: 6091
diff changeset
    31
#include "player_face.h"
8114
dd6d21dc99c1 (svn r11675) -Codechange: split the string types from the string functions.
rubidium
parents: 8108
diff changeset
    32
#include "strings_func.h"
6929
56470c1b8a66 (svn r10182) -Codechange: rewrite most part of the file loading/searching to be more flexible.
rubidium
parents: 6875
diff changeset
    33
#include "fileio.h"
4223
d4c9ef555f43 (svn r5767) - Cleanup: Improve upon the header file mess regarding fios. Move all relevant types from hal.h into fios.h, eliminate the unneccessary passing of a global variable, and extern variables in header files (declare in fios.c and misc_gui.c
Darkvater
parents: 4217
diff changeset
    34
#include "fios.h"
8119
52b48108425a (svn r11680) -Codechange: refactor more out of openttd.h and functions.h.
rubidium
parents: 8116
diff changeset
    35
#include "tile_cmd.h"
8123
ce31d2843a95 (svn r11684) -Codechange: split gfx.h in a type and functional header.
rubidium
parents: 8121
diff changeset
    36
#include "zoom_func.h"
8131
160939e24ed3 (svn r11692) -Codechange: move some functions from 'functions.h' to a more logical place and remove about 50% of the includes of 'functions.h'
rubidium
parents: 8123
diff changeset
    37
#include "functions.h"
160939e24ed3 (svn r11692) -Codechange: move some functions from 'functions.h' to a more logical place and remove about 50% of the includes of 'functions.h'
rubidium
parents: 8123
diff changeset
    38
#include "window_func.h"
8140
0d0d8c94f84b (svn r11702) -Codechange: move all date related stuff to date*.
rubidium
parents: 8139
diff changeset
    39
#include "date_func.h"
8157
1505def01945 (svn r11719) -Codechange: split sound.h in a header with types and one with functions.
rubidium
parents: 8152
diff changeset
    40
#include "sound_func.h"
8214
971f861d5543 (svn r11777) -Codechange: split the string header and make do not include it when it's not necessary.
rubidium
parents: 8208
diff changeset
    41
#include "string_func.h"
8254
1496654ca5e7 (svn r11818) -Codechange: split player.h into smaller pieces.
rubidium
parents: 8224
diff changeset
    42
#include "player_gui.h"
8270
e7c342f6b14c (svn r11834) -Codechange: only include settings_type.h if needed.
rubidium
parents: 8264
diff changeset
    43
#include "settings_type.h"
8787
41d9d5adbe87 (svn r12495) -Codechange: reduce the dependency on newgrf_station.h (especially because newgrf_station.h includes a lot of stuff).
rubidium
parents: 8785
diff changeset
    44
#include "newgrf_cargo.h"
8809
e0d09d74e805 (svn r12550) -Change: the signal GUI is now persistent - has the same data when it is reopened
smatz
parents: 8787
diff changeset
    45
#include "rail_gui.h"
8119
52b48108425a (svn r11680) -Codechange: refactor more out of openttd.h and functions.h.
rubidium
parents: 8116
diff changeset
    46
8264
b1e85998c7d3 (svn r11828) -Codechange: include table/* as the last includes and remove an unneeded include from openttd.h.
rubidium
parents: 8254
diff changeset
    47
#include "table/sprites.h"
b1e85998c7d3 (svn r11828) -Codechange: include table/* as the last includes and remove an unneeded include from openttd.h.
rubidium
parents: 8254
diff changeset
    48
#include "table/strings.h"
b1e85998c7d3 (svn r11828) -Codechange: include table/* as the last includes and remove an unneeded include from openttd.h.
rubidium
parents: 8254
diff changeset
    49
#include "table/tree_land.h"
b1e85998c7d3 (svn r11828) -Codechange: include table/* as the last includes and remove an unneeded include from openttd.h.
rubidium
parents: 8254
diff changeset
    50
4223
d4c9ef555f43 (svn r5767) - Cleanup: Improve upon the header file mess regarding fios. Move all relevant types from hal.h into fios.h, eliminate the unneccessary passing of a global variable, and extern variables in header files (declare in fios.c and misc_gui.c
Darkvater
parents: 4217
diff changeset
    51
/* Variables to display file lists */
d4c9ef555f43 (svn r5767) - Cleanup: Improve upon the header file mess regarding fios. Move all relevant types from hal.h into fios.h, eliminate the unneccessary passing of a global variable, and extern variables in header files (declare in fios.c and misc_gui.c
Darkvater
parents: 4217
diff changeset
    52
FiosItem *_fios_list;
8149
1b1390cb0844 (svn r11711) -Codechange: Name the Save Load Dialog Mode enum
belugas
parents: 8144
diff changeset
    53
SaveLoadDialogMode _saveload_mode;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    54
4300
c7e43c47a2b9 (svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
truelight
parents: 4299
diff changeset
    55
1596
483007886b59 (svn r2100) - Fix: [1024703]: Infinite access for A:\ (win32). Patch [1171208]. Only requery drive(s) if the user changes a directory, also surpress the OS error box that pops up on some windows machines. Tron + glx (and me)
darkvater
parents: 1594
diff changeset
    56
static bool _fios_path_changed;
1594
00485cb74836 (svn r2098) Make a variable static, move a function declaration to a header and remove unnecessary preprocessor magic
tron
parents: 1578
diff changeset
    57
static bool _savegame_sort_dirty;
00485cb74836 (svn r2098) Make a variable static, move a function declaration to a header and remove unnecessary preprocessor magic
tron
parents: 1578
diff changeset
    58
5583
136d8764c7e6 (svn r8030) -Fix: segmentation fault when removing a town in the scenario editor while having the query tool window open for one of the town's tiles.
rubidium
parents: 5475
diff changeset
    59
enum {
136d8764c7e6 (svn r8030) -Fix: segmentation fault when removing a town in the scenario editor while having the query tool window open for one of the town's tiles.
rubidium
parents: 5475
diff changeset
    60
	LAND_INFO_LINES          =   7,
136d8764c7e6 (svn r8030) -Fix: segmentation fault when removing a town in the scenario editor while having the query tool window open for one of the town's tiles.
rubidium
parents: 5475
diff changeset
    61
	LAND_INFO_LINE_BUFF_SIZE = 512,
136d8764c7e6 (svn r8030) -Fix: segmentation fault when removing a town in the scenario editor while having the query tool window open for one of the town's tiles.
rubidium
parents: 5475
diff changeset
    62
};
136d8764c7e6 (svn r8030) -Fix: segmentation fault when removing a town in the scenario editor while having the query tool window open for one of the town's tiles.
rubidium
parents: 5475
diff changeset
    63
136d8764c7e6 (svn r8030) -Fix: segmentation fault when removing a town in the scenario editor while having the query tool window open for one of the town's tiles.
rubidium
parents: 5475
diff changeset
    64
static char _landinfo_data[LAND_INFO_LINES][LAND_INFO_LINE_BUFF_SIZE];
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    65
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    66
static void LandInfoWndProc(Window *w, WindowEvent *e)
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    67
{
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    68
	if (e->event == WE_PAINT) {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    69
		DrawWindowWidgets(w);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    70
7824
5a63d41b59ea (svn r11374) -Codechange: Give meaning to the magical number that specifies the color of the text in a DrawString call.
belugas
parents: 7750
diff changeset
    71
		DoDrawStringCentered(140, 16, _landinfo_data[0], TC_LIGHT_BLUE);
5a63d41b59ea (svn r11374) -Codechange: Give meaning to the magical number that specifies the color of the text in a DrawString call.
belugas
parents: 7750
diff changeset
    72
		DoDrawStringCentered(140, 27, _landinfo_data[1], TC_FROMSTRING);
5a63d41b59ea (svn r11374) -Codechange: Give meaning to the magical number that specifies the color of the text in a DrawString call.
belugas
parents: 7750
diff changeset
    73
		DoDrawStringCentered(140, 38, _landinfo_data[2], TC_FROMSTRING);
5a63d41b59ea (svn r11374) -Codechange: Give meaning to the magical number that specifies the color of the text in a DrawString call.
belugas
parents: 7750
diff changeset
    74
		DoDrawStringCentered(140, 49, _landinfo_data[3], TC_FROMSTRING);
5a63d41b59ea (svn r11374) -Codechange: Give meaning to the magical number that specifies the color of the text in a DrawString call.
belugas
parents: 7750
diff changeset
    75
		DoDrawStringCentered(140, 60, _landinfo_data[4], TC_FROMSTRING);
6197
558f3a9b5bd4 (svn r8977) -Codechange: Remove the hardcoded maximum width for some drawstrings and replace them with a portion of w->width. Only visible improvement is QueryWndProc which will not write exactly to the edge of the window anymore.
Darkvater
parents: 6190
diff changeset
    76
		if (_landinfo_data[5][0] != '\0') DrawStringMultiCenter(140, 76, BindCString(_landinfo_data[5]), w->width - 4);
7824
5a63d41b59ea (svn r11374) -Codechange: Give meaning to the magical number that specifies the color of the text in a DrawString call.
belugas
parents: 7750
diff changeset
    77
		if (_landinfo_data[6][0] != '\0') DoDrawStringCentered(140, 71, _landinfo_data[6], TC_FROMSTRING);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    78
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    79
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    80
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    81
static const Widget _land_info_widgets[] = {
4344
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4326
diff changeset
    82
{   WWT_CLOSEBOX,   RESIZE_NONE,    14,     0,    10,     0,    13, STR_00C5,                       STR_018B_CLOSE_WINDOW},
867
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 860
diff changeset
    83
{    WWT_CAPTION,   RESIZE_NONE,    14,    11,   279,     0,    13, STR_01A3_LAND_AREA_INFORMATION, STR_018C_WINDOW_TITLE_DRAG_THIS},
4938
0447845fd1b3 (svn r6925) -Codechange: Be more strict with widget distinctions. WWT_PANEL is only plain panel,
Darkvater
parents: 4912
diff changeset
    84
{      WWT_PANEL,   RESIZE_NONE,    14,     0,   279,    14,    92, 0x0,                            STR_NULL},
176
84990c4b9212 (svn r177) -Fix: padded out Widget code to solve warnings on C99 compiler (Tron)
darkvater
parents: 172
diff changeset
    85
{    WIDGETS_END},
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    86
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    87
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    88
static const WindowDesc _land_info_desc = {
7341
02515d0d4ced (svn r10704) -Codechange: provide an infrastructure to have resizable windows that are smaller than the default window size.
rubidium
parents: 7321
diff changeset
    89
	WDP_AUTO, WDP_AUTO, 280, 93, 280, 93,
5893
7e431a4abebb (svn r8511) -Codechange: make WindowClass an enumerated value.
rubidium
parents: 5750
diff changeset
    90
	WC_LAND_INFO, WC_NONE,
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    91
	WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    92
	_land_info_widgets,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    93
	LandInfoWndProc
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    94
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    95
1977
37bbebf94434 (svn r2483) Replace almost 500 "uint tile" (and variants) with "TileIndex tile"
tron
parents: 1962
diff changeset
    96
static void Place_LandInfo(TileIndex tile)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    97
{
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    98
	DeleteWindowById(WC_LAND_INFO, 0);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    99
8738
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   100
	Window *w = AllocateWindowDesc(&_land_info_desc);
5583
136d8764c7e6 (svn r8030) -Fix: segmentation fault when removing a town in the scenario editor while having the query tool window open for one of the town's tiles.
rubidium
parents: 5475
diff changeset
   101
	WP(w, void_d).data = &_landinfo_data;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   102
8738
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   103
	Player *p = GetPlayer(IsValidPlayer(_local_player) ? _local_player : PLAYER_FIRST);
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   104
	Town *t = ClosestTownFromTile(tile, _patches.dist_local_authority);
3
27d9e9fa999a (svn r4) -Fix [996025] _local_player fixes. Fixes wrong memory access (TrueLight)
darkvater
parents: 0
diff changeset
   105
8738
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   106
	Money old_money = p->player_money;
6990
136a08baf0ed (svn r10246) -Fix (r10297): some forgotten money conversions and truncation issues. Thanks to benc for providing the patch.
rubidium
parents: 6953
diff changeset
   107
	p->player_money = INT64_MAX;
8738
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   108
	CommandCost costclear = DoCommand(tile, 0, 0, 0, CMD_LANDSCAPE_CLEAR);
6952
b19643469024 (svn r10207) -Codechange: remove the redundant player_money in favour of the money64, which is now renamed to player_money.
rubidium
parents: 6950
diff changeset
   109
	p->player_money = old_money;
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 179
diff changeset
   110
5583
136d8764c7e6 (svn r8030) -Fix: segmentation fault when removing a town in the scenario editor while having the query tool window open for one of the town's tiles.
rubidium
parents: 5475
diff changeset
   111
	/* Because build_date is not set yet in every TileDesc, we make sure it is empty */
8819
e608a2ebe2b1 (svn r12565) -Cleanup: variable scope in misc\*.cpp
smatz
parents: 8809
diff changeset
   112
	TileDesc td;
e608a2ebe2b1 (svn r12565) -Cleanup: variable scope in misc\*.cpp
smatz
parents: 8809
diff changeset
   113
	AcceptedCargo ac;
e608a2ebe2b1 (svn r12565) -Cleanup: variable scope in misc\*.cpp
smatz
parents: 8809
diff changeset
   114
5583
136d8764c7e6 (svn r8030) -Fix: segmentation fault when removing a town in the scenario editor while having the query tool window open for one of the town's tiles.
rubidium
parents: 5475
diff changeset
   115
	td.build_date = 0;
136d8764c7e6 (svn r8030) -Fix: segmentation fault when removing a town in the scenario editor while having the query tool window open for one of the town's tiles.
rubidium
parents: 5475
diff changeset
   116
	GetAcceptedCargo(tile, ac);
136d8764c7e6 (svn r8030) -Fix: segmentation fault when removing a town in the scenario editor while having the query tool window open for one of the town's tiles.
rubidium
parents: 5475
diff changeset
   117
	GetTileDesc(tile, &td);
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 179
diff changeset
   118
5583
136d8764c7e6 (svn r8030) -Fix: segmentation fault when removing a town in the scenario editor while having the query tool window open for one of the town's tiles.
rubidium
parents: 5475
diff changeset
   119
	SetDParam(0, td.dparam[0]);
136d8764c7e6 (svn r8030) -Fix: segmentation fault when removing a town in the scenario editor while having the query tool window open for one of the town's tiles.
rubidium
parents: 5475
diff changeset
   120
	GetString(_landinfo_data[0], td.str, lastof(_landinfo_data[0]));
136d8764c7e6 (svn r8030) -Fix: segmentation fault when removing a town in the scenario editor while having the query tool window open for one of the town's tiles.
rubidium
parents: 5475
diff changeset
   121
136d8764c7e6 (svn r8030) -Fix: segmentation fault when removing a town in the scenario editor while having the query tool window open for one of the town's tiles.
rubidium
parents: 5475
diff changeset
   122
	SetDParam(0, STR_01A6_N_A);
136d8764c7e6 (svn r8030) -Fix: segmentation fault when removing a town in the scenario editor while having the query tool window open for one of the town's tiles.
rubidium
parents: 5475
diff changeset
   123
	if (td.owner != OWNER_NONE && td.owner != OWNER_WATER) GetNameOfOwner(td.owner, tile);
136d8764c7e6 (svn r8030) -Fix: segmentation fault when removing a town in the scenario editor while having the query tool window open for one of the town's tiles.
rubidium
parents: 5475
diff changeset
   124
	GetString(_landinfo_data[1], STR_01A7_OWNER, lastof(_landinfo_data[1]));
136d8764c7e6 (svn r8030) -Fix: segmentation fault when removing a town in the scenario editor while having the query tool window open for one of the town's tiles.
rubidium
parents: 5475
diff changeset
   125
8738
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   126
	StringID str = STR_01A4_COST_TO_CLEAR_N_A;
6946
a48b23f1cc8a (svn r10200) -Codechange: add "shortcut" for !CmdFailed (CmdSucceeded).
rubidium
parents: 6929
diff changeset
   127
	if (CmdSucceeded(costclear)) {
7002
1bf6a62b0fcb (svn r10258) -Codechange: as we are now using int64 all over the place, it's better to use int64 variables in the string generating too instead of packing them into two int32s.
rubidium
parents: 6998
diff changeset
   128
		SetDParam(0, costclear.GetCost());
5583
136d8764c7e6 (svn r8030) -Fix: segmentation fault when removing a town in the scenario editor while having the query tool window open for one of the town's tiles.
rubidium
parents: 5475
diff changeset
   129
		str = STR_01A5_COST_TO_CLEAR;
136d8764c7e6 (svn r8030) -Fix: segmentation fault when removing a town in the scenario editor while having the query tool window open for one of the town's tiles.
rubidium
parents: 5475
diff changeset
   130
	}
136d8764c7e6 (svn r8030) -Fix: segmentation fault when removing a town in the scenario editor while having the query tool window open for one of the town's tiles.
rubidium
parents: 5475
diff changeset
   131
	GetString(_landinfo_data[2], str, lastof(_landinfo_data[2]));
136d8764c7e6 (svn r8030) -Fix: segmentation fault when removing a town in the scenario editor while having the query tool window open for one of the town's tiles.
rubidium
parents: 5475
diff changeset
   132
136d8764c7e6 (svn r8030) -Fix: segmentation fault when removing a town in the scenario editor while having the query tool window open for one of the town's tiles.
rubidium
parents: 5475
diff changeset
   133
	snprintf(_userstring, lengthof(_userstring), "0x%.4X", tile);
136d8764c7e6 (svn r8030) -Fix: segmentation fault when removing a town in the scenario editor while having the query tool window open for one of the town's tiles.
rubidium
parents: 5475
diff changeset
   134
	SetDParam(0, TileX(tile));
136d8764c7e6 (svn r8030) -Fix: segmentation fault when removing a town in the scenario editor while having the query tool window open for one of the town's tiles.
rubidium
parents: 5475
diff changeset
   135
	SetDParam(1, TileY(tile));
7438
991f20e5bc77 (svn r10878) -Add [FS#653]: added TileHeight to the Land Area Information tool (blove)
truelight
parents: 7386
diff changeset
   136
	SetDParam(2, TileHeight(tile));
991f20e5bc77 (svn r10878) -Add [FS#653]: added TileHeight to the Land Area Information tool (blove)
truelight
parents: 7386
diff changeset
   137
	SetDParam(3, STR_SPEC_USERSTRING);
5583
136d8764c7e6 (svn r8030) -Fix: segmentation fault when removing a town in the scenario editor while having the query tool window open for one of the town's tiles.
rubidium
parents: 5475
diff changeset
   138
	GetString(_landinfo_data[3], STR_LANDINFO_COORDS, lastof(_landinfo_data[3]));
136d8764c7e6 (svn r8030) -Fix: segmentation fault when removing a town in the scenario editor while having the query tool window open for one of the town's tiles.
rubidium
parents: 5475
diff changeset
   139
136d8764c7e6 (svn r8030) -Fix: segmentation fault when removing a town in the scenario editor while having the query tool window open for one of the town's tiles.
rubidium
parents: 5475
diff changeset
   140
	SetDParam(0, STR_01A9_NONE);
7386
93f6a042d1c3 (svn r10755) -Codechange: make the town struct use the pool item class as super class.
rubidium
parents: 7372
diff changeset
   141
	if (t != NULL && t->IsValid()) {
5583
136d8764c7e6 (svn r8030) -Fix: segmentation fault when removing a town in the scenario editor while having the query tool window open for one of the town's tiles.
rubidium
parents: 5475
diff changeset
   142
		SetDParam(0, STR_TOWN);
136d8764c7e6 (svn r8030) -Fix: segmentation fault when removing a town in the scenario editor while having the query tool window open for one of the town's tiles.
rubidium
parents: 5475
diff changeset
   143
		SetDParam(1, t->index);
136d8764c7e6 (svn r8030) -Fix: segmentation fault when removing a town in the scenario editor while having the query tool window open for one of the town's tiles.
rubidium
parents: 5475
diff changeset
   144
	}
136d8764c7e6 (svn r8030) -Fix: segmentation fault when removing a town in the scenario editor while having the query tool window open for one of the town's tiles.
rubidium
parents: 5475
diff changeset
   145
	GetString(_landinfo_data[4], STR_01A8_LOCAL_AUTHORITY, lastof(_landinfo_data[4]));
136d8764c7e6 (svn r8030) -Fix: segmentation fault when removing a town in the scenario editor while having the query tool window open for one of the town's tiles.
rubidium
parents: 5475
diff changeset
   146
8738
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   147
	char *strp = GetString(_landinfo_data[5], STR_01CE_CARGO_ACCEPTED, lastof(_landinfo_data[5]));
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   148
	bool found = false;
5583
136d8764c7e6 (svn r8030) -Fix: segmentation fault when removing a town in the scenario editor while having the query tool window open for one of the town's tiles.
rubidium
parents: 5475
diff changeset
   149
8738
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   150
	for (CargoID i = 0; i < NUM_CARGO; ++i) {
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   151
		if (ac[i] > 0) {
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   152
			/* Add a comma between each item. */
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   153
			if (found) {
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   154
				*strp++ = ',';
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   155
				*strp++ = ' ';
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   156
			}
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   157
			found = true;
5583
136d8764c7e6 (svn r8030) -Fix: segmentation fault when removing a town in the scenario editor while having the query tool window open for one of the town's tiles.
rubidium
parents: 5475
diff changeset
   158
8738
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   159
			/* If the accepted value is less than 8, show it in 1/8:ths */
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   160
			if (ac[i] < 8) {
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   161
				SetDParam(0, ac[i]);
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   162
				SetDParam(1, GetCargo(i)->name);
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   163
				strp = GetString(strp, STR_01D1_8, lastof(_landinfo_data[5]));
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   164
			} else {
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   165
				strp = GetString(strp, GetCargo(i)->name, lastof(_landinfo_data[5]));
5583
136d8764c7e6 (svn r8030) -Fix: segmentation fault when removing a town in the scenario editor while having the query tool window open for one of the town's tiles.
rubidium
parents: 5475
diff changeset
   166
			}
136d8764c7e6 (svn r8030) -Fix: segmentation fault when removing a town in the scenario editor while having the query tool window open for one of the town's tiles.
rubidium
parents: 5475
diff changeset
   167
		}
136d8764c7e6 (svn r8030) -Fix: segmentation fault when removing a town in the scenario editor while having the query tool window open for one of the town's tiles.
rubidium
parents: 5475
diff changeset
   168
	}
8738
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   169
	if (!found) _landinfo_data[5][0] = '\0';
5583
136d8764c7e6 (svn r8030) -Fix: segmentation fault when removing a town in the scenario editor while having the query tool window open for one of the town's tiles.
rubidium
parents: 5475
diff changeset
   170
136d8764c7e6 (svn r8030) -Fix: segmentation fault when removing a town in the scenario editor while having the query tool window open for one of the town's tiles.
rubidium
parents: 5475
diff changeset
   171
	if (td.build_date != 0) {
136d8764c7e6 (svn r8030) -Fix: segmentation fault when removing a town in the scenario editor while having the query tool window open for one of the town's tiles.
rubidium
parents: 5475
diff changeset
   172
		SetDParam(0, td.build_date);
8738
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   173
		GetString(_landinfo_data[6], STR_BUILD_DATE, lastof(_landinfo_data[6]));
5583
136d8764c7e6 (svn r8030) -Fix: segmentation fault when removing a town in the scenario editor while having the query tool window open for one of the town's tiles.
rubidium
parents: 5475
diff changeset
   174
	} else {
136d8764c7e6 (svn r8030) -Fix: segmentation fault when removing a town in the scenario editor while having the query tool window open for one of the town's tiles.
rubidium
parents: 5475
diff changeset
   175
		_landinfo_data[6][0] = '\0';
136d8764c7e6 (svn r8030) -Fix: segmentation fault when removing a town in the scenario editor while having the query tool window open for one of the town's tiles.
rubidium
parents: 5475
diff changeset
   176
	}
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 179
diff changeset
   177
4000
4009d092b306 (svn r5210) Many small changes which piled up: const, unsigned, variable scope, CSE for readability, DeMorgan, if cascades -> switch, whitespace, parentheses, bracing, misc.
tron
parents: 3890
diff changeset
   178
#if defined(_DEBUG)
4009d092b306 (svn r5210) Many small changes which piled up: const, unsigned, variable scope, CSE for readability, DeMorgan, if cascades -> switch, whitespace, parentheses, bracing, misc.
tron
parents: 3890
diff changeset
   179
#	define LANDINFOD_LEVEL 0
4009d092b306 (svn r5210) Many small changes which piled up: const, unsigned, variable scope, CSE for readability, DeMorgan, if cascades -> switch, whitespace, parentheses, bracing, misc.
tron
parents: 3890
diff changeset
   180
#else
4009d092b306 (svn r5210) Many small changes which piled up: const, unsigned, variable scope, CSE for readability, DeMorgan, if cascades -> switch, whitespace, parentheses, bracing, misc.
tron
parents: 3890
diff changeset
   181
#	define LANDINFOD_LEVEL 1
4009d092b306 (svn r5210) Many small changes which piled up: const, unsigned, variable scope, CSE for readability, DeMorgan, if cascades -> switch, whitespace, parentheses, bracing, misc.
tron
parents: 3890
diff changeset
   182
#endif
5380
8ea58542b6e0 (svn r7565) -Codechange: Rework DEBUG functionality. Look for appropiate debugging levels to
Darkvater
parents: 5376
diff changeset
   183
	DEBUG(misc, LANDINFOD_LEVEL, "TILE: %#x (%i,%i)", tile, TileX(tile), TileY(tile));
8ea58542b6e0 (svn r7565) -Codechange: Rework DEBUG functionality. Look for appropiate debugging levels to
Darkvater
parents: 5376
diff changeset
   184
	DEBUG(misc, LANDINFOD_LEVEL, "type_height  = %#x", _m[tile].type_height);
8ea58542b6e0 (svn r7565) -Codechange: Rework DEBUG functionality. Look for appropiate debugging levels to
Darkvater
parents: 5376
diff changeset
   185
	DEBUG(misc, LANDINFOD_LEVEL, "m1           = %#x", _m[tile].m1);
8ea58542b6e0 (svn r7565) -Codechange: Rework DEBUG functionality. Look for appropiate debugging levels to
Darkvater
parents: 5376
diff changeset
   186
	DEBUG(misc, LANDINFOD_LEVEL, "m2           = %#x", _m[tile].m2);
8ea58542b6e0 (svn r7565) -Codechange: Rework DEBUG functionality. Look for appropiate debugging levels to
Darkvater
parents: 5376
diff changeset
   187
	DEBUG(misc, LANDINFOD_LEVEL, "m3           = %#x", _m[tile].m3);
8ea58542b6e0 (svn r7565) -Codechange: Rework DEBUG functionality. Look for appropiate debugging levels to
Darkvater
parents: 5376
diff changeset
   188
	DEBUG(misc, LANDINFOD_LEVEL, "m4           = %#x", _m[tile].m4);
8ea58542b6e0 (svn r7565) -Codechange: Rework DEBUG functionality. Look for appropiate debugging levels to
Darkvater
parents: 5376
diff changeset
   189
	DEBUG(misc, LANDINFOD_LEVEL, "m5           = %#x", _m[tile].m5);
5596
5bf7128140a0 (svn r8050) -Codechange: Rename map member extra to m6, since its usage has been widden.
belugas
parents: 5587
diff changeset
   190
	DEBUG(misc, LANDINFOD_LEVEL, "m6           = %#x", _m[tile].m6);
6332
f3f436dcd7d0 (svn r9315) -Merge: The newhouses branch. With this merge comes almost complete support for
maedhros
parents: 6248
diff changeset
   191
	DEBUG(misc, LANDINFOD_LEVEL, "m7           = %#x", _me[tile].m7);
4000
4009d092b306 (svn r5210) Many small changes which piled up: const, unsigned, variable scope, CSE for readability, DeMorgan, if cascades -> switch, whitespace, parentheses, bracing, misc.
tron
parents: 3890
diff changeset
   192
#undef LANDINFOD_LEVEL
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   193
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   194
6247
7d81e3a5d803 (svn r9050) -Codechange: Foo(void) -> Foo()
rubidium
parents: 6239
diff changeset
   195
void PlaceLandBlockInfo()
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   196
{
1914
2b4b3c3a95b4 (svn r2420) - Codechange: magic number elminitation of cursorsprites.
Darkvater
parents: 1891
diff changeset
   197
	if (_cursor.sprite == SPR_CURSOR_QUERY) {
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   198
		ResetObjectToPlace();
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   199
	} else {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   200
		_place_proc = Place_LandInfo;
7889
e74ce8853ba7 (svn r11440) -Codechange: replace magic numbers with enumified WindowHighlightMode constants. Patch by SmatZ.
rubidium
parents: 7859
diff changeset
   201
		SetObjectToPlace(SPR_CURSOR_QUERY, PAL_NONE, VHM_RECT, WC_MAIN_TOOLBAR, 0);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   202
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   203
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   204
859
611a03925f9a (svn r1340) -Feature: scrolling credits list...finally! Hope nobody gets offended if I forgot them.
darkvater
parents: 842
diff changeset
   205
static const char *credits[] = {
611a03925f9a (svn r1340) -Feature: scrolling credits list...finally! Hope nobody gets offended if I forgot them.
darkvater
parents: 842
diff changeset
   206
	/*************************************************************************
611a03925f9a (svn r1340) -Feature: scrolling credits list...finally! Hope nobody gets offended if I forgot them.
darkvater
parents: 842
diff changeset
   207
	 *                      maximum length of string which fits in window   -^*/
611a03925f9a (svn r1340) -Feature: scrolling credits list...finally! Hope nobody gets offended if I forgot them.
darkvater
parents: 842
diff changeset
   208
	"Original design by Chris Sawyer",
611a03925f9a (svn r1340) -Feature: scrolling credits list...finally! Hope nobody gets offended if I forgot them.
darkvater
parents: 842
diff changeset
   209
	"Original graphics by Simon Foster",
611a03925f9a (svn r1340) -Feature: scrolling credits list...finally! Hope nobody gets offended if I forgot them.
darkvater
parents: 842
diff changeset
   210
	"",
1124
49ab02a88a0e (svn r1625) -Alphabetized credits list
darkvater
parents: 1105
diff changeset
   211
	"The OpenTTD team (in alphabetical order):",
8059
0dbe702b7096 (svn r11620) -Change: Some are going, some are coming, some we do not know exactly. Little update on the OpenTTD Team
belugas
parents: 8053
diff changeset
   212
	"  Jean-Francois Claeys (Belugas) - GUI, newindustries and more",
0dbe702b7096 (svn r11620) -Change: Some are going, some are coming, some we do not know exactly. Little update on the OpenTTD Team
belugas
parents: 8053
diff changeset
   213
	"  Bjarni Corfitzen (Bjarni) - MacOSX port, coder and vehicles",
0dbe702b7096 (svn r11620) -Change: Some are going, some are coming, some we do not know exactly. Little update on the OpenTTD Team
belugas
parents: 8053
diff changeset
   214
	"  Matthijs Kooijman (blathijs) - Pathfinder-guru, pool rework",
0dbe702b7096 (svn r11620) -Change: Some are going, some are coming, some we do not know exactly. Little update on the OpenTTD Team
belugas
parents: 8053
diff changeset
   215
	"  Loïc Guilloux (glx) - General coding",
8623
fc7590c9657c (svn r12206) -Fix: A comma is not a rare resource. Do not hesitate to use it when needed.
belugas
parents: 8605
diff changeset
   216
	"  Christoph Elsenhans (frosch) - General coding",
5355
195bce6def67 (svn r7527) -Update appropiate files with release information for 0.5.0-RC1
Darkvater
parents: 5352
diff changeset
   217
	"  Jaroslav Mazanec (KUDr) - YAPG (Yet Another Pathfinder God) ;)",
6239
971f566e881c (svn r9042) -Add : Maedhros as a developper
belugas
parents: 6214
diff changeset
   218
	"  Jonathan Coome (Maedhros) - High priest of the newGRF Temple",
5108
aeaef6fe53b7 (svn r7182) -Feature: Merge utf8 branch. This brings us support for Unicode/UTF-8 and the option for fonts rendered by FreeType. Language changes to come.
peter1138
parents: 5079
diff changeset
   219
	"  Attila Bán (MiHaMiX) - WebTranslator, Nightlies, Wiki and bugtracker host",
7074
e9ac73a61934 (svn r10339) -Fix r10311: if you fix your own name, at least also update your description ;)
truelight
parents: 7058
diff changeset
   220
	"  Owen Rudge (orudge) - Forum host, OS/2 port",
8184
01844847278c (svn r11747) -Change: Return of the prodigal son (or something). Little update (but highly noticed) on the OpenTTD Team
belugas
parents: 8157
diff changeset
   221
	"  Peter Nelson (peter1138) - Spiritual descendant from newGRF gods",
8059
0dbe702b7096 (svn r11620) -Change: Some are going, some are coming, some we do not know exactly. Little update on the OpenTTD Team
belugas
parents: 8053
diff changeset
   222
	"  Remko Bijker (Rubidium) - Lead coder and way more",
0dbe702b7096 (svn r11620) -Change: Some are going, some are coming, some we do not know exactly. Little update on the OpenTTD Team
belugas
parents: 8053
diff changeset
   223
	"  Benedikt Brüggemeier (skidd13) - Bug fixer and code reworker",
0dbe702b7096 (svn r11620) -Change: Some are going, some are coming, some we do not know exactly. Little update on the OpenTTD Team
belugas
parents: 8053
diff changeset
   224
	"  Zdenek Sojka (SmatZ) - Bug finder and fixer",
0dbe702b7096 (svn r11620) -Change: Some are going, some are coming, some we do not know exactly. Little update on the OpenTTD Team
belugas
parents: 8053
diff changeset
   225
	"",
0dbe702b7096 (svn r11620) -Change: Some are going, some are coming, some we do not know exactly. Little update on the OpenTTD Team
belugas
parents: 8053
diff changeset
   226
	"Inactive Developers:",
0dbe702b7096 (svn r11620) -Change: Some are going, some are coming, some we do not know exactly. Little update on the OpenTTD Team
belugas
parents: 8053
diff changeset
   227
	"  Victor Fischer (Celestar) - Programming everywhere you need him to",
0dbe702b7096 (svn r11620) -Change: Some are going, some are coming, some we do not know exactly. Little update on the OpenTTD Team
belugas
parents: 8053
diff changeset
   228
	"  Tamás Faragó (Darkvater) - Ex-Lead coder",
1126
f381d3ede844 (svn r1627) -Fix: The tabulizer in action ^_^
darkvater
parents: 1125
diff changeset
   229
	"  Christoph Mallon (Tron) - Programmer, code correctness police",
1125
ddbfb1cbb9f6 (svn r1626) -Updated readme and credits list.
darkvater
parents: 1124
diff changeset
   230
	"",
ddbfb1cbb9f6 (svn r1626) -Updated readme and credits list.
darkvater
parents: 1124
diff changeset
   231
	"Retired Developers:",
ddbfb1cbb9f6 (svn r1626) -Updated readme and credits list.
darkvater
parents: 1124
diff changeset
   232
	"  Ludvig Strigeus (ludde) - OpenTTD author, main coder (0.1 - 0.3.3)",
859
611a03925f9a (svn r1340) -Feature: scrolling credits list...finally! Hope nobody gets offended if I forgot them.
darkvater
parents: 842
diff changeset
   233
	"  Serge Paquet (vurlix) - Assistant project manager, coder (0.1 - 0.3.3)",
1826
6000a1a8e448 (svn r2331) - Fix (regression): fix text overflows in about box.
Darkvater
parents: 1821
diff changeset
   234
	"  Dominik Scherer (dominik81) - Lead programmer, GUI expert (0.3.0 - 0.3.6)",
7859
5595fe36e31b (svn r11409) -Update: as of now, I am a retired Developer, so mark me as such
truelight
parents: 7824
diff changeset
   235
	"  Patric Stout (TrueLight) - Programmer, webhoster (0.3 - pre0.6)",
859
611a03925f9a (svn r1340) -Feature: scrolling credits list...finally! Hope nobody gets offended if I forgot them.
darkvater
parents: 842
diff changeset
   236
	"",
611a03925f9a (svn r1340) -Feature: scrolling credits list...finally! Hope nobody gets offended if I forgot them.
darkvater
parents: 842
diff changeset
   237
	"Special thanks go out to:",
611a03925f9a (svn r1340) -Feature: scrolling credits list...finally! Hope nobody gets offended if I forgot them.
darkvater
parents: 842
diff changeset
   238
	"  Josef Drexler - For his great work on TTDPatch",
611a03925f9a (svn r1340) -Feature: scrolling credits list...finally! Hope nobody gets offended if I forgot them.
darkvater
parents: 842
diff changeset
   239
	"  Marcin Grzegorczyk - For his documentation of TTD internals",
8059
0dbe702b7096 (svn r11620) -Change: Some are going, some are coming, some we do not know exactly. Little update on the OpenTTD Team
belugas
parents: 8053
diff changeset
   240
	"  Petr Baudis (pasky) - Many patches, newGRF support",
5108
aeaef6fe53b7 (svn r7182) -Feature: Merge utf8 branch. This brings us support for Unicode/UTF-8 and the option for fonts rendered by FreeType. Language changes to come.
peter1138
parents: 5079
diff changeset
   241
	"  Stefan Meißner (sign_de) - For his work on the console",
8059
0dbe702b7096 (svn r11620) -Change: Some are going, some are coming, some we do not know exactly. Little update on the OpenTTD Team
belugas
parents: 8053
diff changeset
   242
	"  Simon Sasburg (HackyKid) - Many bugfixes he has blessed us with",
1124
49ab02a88a0e (svn r1625) -Alphabetized credits list
darkvater
parents: 1105
diff changeset
   243
	"  Cian Duffy (MYOB) - BeOS port / manual writing",
4133
f9878fb9a365 (svn r5489) -Fix: corrected tokai's name and morphos details (tokai)
truelight
parents: 4091
diff changeset
   244
	"  Christian Rosentreter (tokai) - MorphOS / AmigaOS port",
5355
195bce6def67 (svn r7527) -Update appropiate files with release information for 0.5.0-RC1
Darkvater
parents: 5352
diff changeset
   245
	"  Richard Kempton (richK) - additional airports, initial TGP implementation",
859
611a03925f9a (svn r1340) -Feature: scrolling credits list...finally! Hope nobody gets offended if I forgot them.
darkvater
parents: 842
diff changeset
   246
	"",
5108
aeaef6fe53b7 (svn r7182) -Feature: Merge utf8 branch. This brings us support for Unicode/UTF-8 and the option for fonts rendered by FreeType. Language changes to come.
peter1138
parents: 5079
diff changeset
   247
	"  Michael Blunck - Pre-Signals and Semaphores © 2003",
aeaef6fe53b7 (svn r7182) -Feature: Merge utf8 branch. This brings us support for Unicode/UTF-8 and the option for fonts rendered by FreeType. Language changes to come.
peter1138
parents: 5079
diff changeset
   248
	"  George - Canal/Lock graphics © 2003-2004",
6691
f9adbb0be102 (svn r9923) -Add: support for Action 0 Road vehicles, property 1C, bit 0.
rubidium
parents: 6670
diff changeset
   249
	"  David Dallaston - Tram tracks",
859
611a03925f9a (svn r1340) -Feature: scrolling credits list...finally! Hope nobody gets offended if I forgot them.
darkvater
parents: 842
diff changeset
   250
	"  Marcin Grzegorczyk - Foundations for Tracks on Slopes",
611a03925f9a (svn r1340) -Feature: scrolling credits list...finally! Hope nobody gets offended if I forgot them.
darkvater
parents: 842
diff changeset
   251
	"  All Translators - Who made OpenTTD a truly international game",
611a03925f9a (svn r1340) -Feature: scrolling credits list...finally! Hope nobody gets offended if I forgot them.
darkvater
parents: 842
diff changeset
   252
	"  Bug Reporters - Without whom OpenTTD would still be full of bugs!",
611a03925f9a (svn r1340) -Feature: scrolling credits list...finally! Hope nobody gets offended if I forgot them.
darkvater
parents: 842
diff changeset
   253
	"",
611a03925f9a (svn r1340) -Feature: scrolling credits list...finally! Hope nobody gets offended if I forgot them.
darkvater
parents: 842
diff changeset
   254
	"",
1124
49ab02a88a0e (svn r1625) -Alphabetized credits list
darkvater
parents: 1105
diff changeset
   255
	"And last but not least:",
859
611a03925f9a (svn r1340) -Feature: scrolling credits list...finally! Hope nobody gets offended if I forgot them.
darkvater
parents: 842
diff changeset
   256
	"  Chris Sawyer - For an amazing game!"
611a03925f9a (svn r1340) -Feature: scrolling credits list...finally! Hope nobody gets offended if I forgot them.
darkvater
parents: 842
diff changeset
   257
};
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   258
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   259
static void AboutWindowProc(Window *w, WindowEvent *e)
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   260
{
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2631
diff changeset
   261
	switch (e->event) {
8738
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   262
		case WE_CREATE: // Set up window counter and start position of scroller
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   263
			WP(w, scroller_d).counter = 5;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   264
			WP(w, scroller_d).height = w->height - 40;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   265
			break;
859
611a03925f9a (svn r1340) -Feature: scrolling credits list...finally! Hope nobody gets offended if I forgot them.
darkvater
parents: 842
diff changeset
   266
8738
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   267
		case WE_PAINT: {
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   268
			int y = WP(w, scroller_d).height;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   269
			DrawWindowWidgets(w);
859
611a03925f9a (svn r1340) -Feature: scrolling credits list...finally! Hope nobody gets offended if I forgot them.
darkvater
parents: 842
diff changeset
   270
8738
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   271
			/* Show original copyright and revision version */
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   272
			DrawStringCentered(210, 17, STR_00B6_ORIGINAL_COPYRIGHT, TC_FROMSTRING);
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   273
			DrawStringCentered(210, 17 + 10, STR_00B7_VERSION, TC_FROMSTRING);
859
611a03925f9a (svn r1340) -Feature: scrolling credits list...finally! Hope nobody gets offended if I forgot them.
darkvater
parents: 842
diff changeset
   274
8738
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   275
			/* Show all scrolling credits */
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   276
			for (uint i = 0; i < lengthof(credits); i++) {
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   277
				if (y >= 50 && y < (w->height - 40)) {
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   278
					DoDrawString(credits[i], 10, y, TC_BLACK);
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   279
				}
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   280
				y += 10;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   281
			}
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   282
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   283
			/* If the last text has scrolled start anew from the start */
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   284
			if (y < 50) WP(w, scroller_d).height = w->height - 40;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   285
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   286
			DoDrawStringCentered(210, w->height - 25, "Website: http://www.openttd.org", TC_BLACK);
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   287
			DrawStringCentered(210, w->height - 15, STR_00BA_COPYRIGHT_OPENTTD, TC_FROMSTRING);
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   288
		} break;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   289
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   290
		case WE_TICK: // Timer to scroll the text and adjust the new top
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   291
			if (--WP(w, scroller_d).counter == 0) {
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   292
				WP(w, scroller_d).counter = 5;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   293
				WP(w, scroller_d).height--;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   294
				SetWindowDirty(w);
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   295
			}
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   296
			break;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   297
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   298
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   299
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   300
static const Widget _about_widgets[] = {
4344
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4326
diff changeset
   301
{   WWT_CLOSEBOX,   RESIZE_NONE,    14,     0,    10,     0,    13, STR_00C5,         STR_018B_CLOSE_WINDOW},
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4326
diff changeset
   302
{    WWT_CAPTION,   RESIZE_NONE,    14,    11,   419,     0,    13, STR_015B_OPENTTD, STR_NULL},
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4326
diff changeset
   303
{      WWT_PANEL,   RESIZE_NONE,    14,     0,   419,    14,   271, 0x0,              STR_NULL},
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4326
diff changeset
   304
{      WWT_FRAME,   RESIZE_NONE,    14,     5,   414,    40,   245, STR_NULL,         STR_NULL},
176
84990c4b9212 (svn r177) -Fix: padded out Widget code to solve warnings on C99 compiler (Tron)
darkvater
parents: 172
diff changeset
   305
{    WIDGETS_END},
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   306
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   307
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   308
static const WindowDesc _about_desc = {
7341
02515d0d4ced (svn r10704) -Codechange: provide an infrastructure to have resizable windows that are smaller than the default window size.
rubidium
parents: 7321
diff changeset
   309
	WDP_CENTER, WDP_CENTER, 420, 272, 420, 272,
5893
7e431a4abebb (svn r8511) -Codechange: make WindowClass an enumerated value.
rubidium
parents: 5750
diff changeset
   310
	WC_GAME_OPTIONS, WC_NONE,
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   311
	WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   312
	_about_widgets,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   313
	AboutWindowProc
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   314
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   315
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   316
6247
7d81e3a5d803 (svn r9050) -Codechange: Foo(void) -> Foo()
rubidium
parents: 6239
diff changeset
   317
void ShowAboutWindow()
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   318
{
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   319
	DeleteWindowById(WC_GAME_OPTIONS, 0);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   320
	AllocateWindowDesc(&_about_desc);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   321
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   322
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   323
static int _tree_to_plant;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   324
5668
36b39f4a9032 (svn r8128) -Codechange: Split sprite and palette remap into separate 32 bit values.
peter1138
parents: 5639
diff changeset
   325
static const PalSpriteID _tree_sprites[] = {
36b39f4a9032 (svn r8128) -Codechange: Split sprite and palette remap into separate 32 bit values.
peter1138
parents: 5639
diff changeset
   326
	{ 0x655, PAL_NONE }, { 0x663, PAL_NONE }, { 0x678, PAL_NONE }, { 0x62B, PAL_NONE },
36b39f4a9032 (svn r8128) -Codechange: Split sprite and palette remap into separate 32 bit values.
peter1138
parents: 5639
diff changeset
   327
	{ 0x647, PAL_NONE }, { 0x639, PAL_NONE }, { 0x64E, PAL_NONE }, { 0x632, PAL_NONE },
36b39f4a9032 (svn r8128) -Codechange: Split sprite and palette remap into separate 32 bit values.
peter1138
parents: 5639
diff changeset
   328
	{ 0x67F, PAL_NONE }, { 0x68D, PAL_NONE }, { 0x69B, PAL_NONE }, { 0x6A9, PAL_NONE },
36b39f4a9032 (svn r8128) -Codechange: Split sprite and palette remap into separate 32 bit values.
peter1138
parents: 5639
diff changeset
   329
	{ 0x6AF, PAL_NONE }, { 0x6D2, PAL_NONE }, { 0x6D9, PAL_NONE }, { 0x6C4, PAL_NONE },
36b39f4a9032 (svn r8128) -Codechange: Split sprite and palette remap into separate 32 bit values.
peter1138
parents: 5639
diff changeset
   330
	{ 0x6CB, PAL_NONE }, { 0x6B6, PAL_NONE }, { 0x6BD, PAL_NONE }, { 0x6E0, PAL_NONE },
36b39f4a9032 (svn r8128) -Codechange: Split sprite and palette remap into separate 32 bit values.
peter1138
parents: 5639
diff changeset
   331
	{ 0x72E, PAL_NONE }, { 0x734, PAL_NONE }, { 0x74A, PAL_NONE }, { 0x74F, PAL_NONE },
36b39f4a9032 (svn r8128) -Codechange: Split sprite and palette remap into separate 32 bit values.
peter1138
parents: 5639
diff changeset
   332
	{ 0x76B, PAL_NONE }, { 0x78F, PAL_NONE }, { 0x788, PAL_NONE }, { 0x77B, PAL_NONE },
36b39f4a9032 (svn r8128) -Codechange: Split sprite and palette remap into separate 32 bit values.
peter1138
parents: 5639
diff changeset
   333
	{ 0x75F, PAL_NONE }, { 0x774, PAL_NONE }, { 0x720, PAL_NONE }, { 0x797, PAL_NONE },
36b39f4a9032 (svn r8128) -Codechange: Split sprite and palette remap into separate 32 bit values.
peter1138
parents: 5639
diff changeset
   334
	{ 0x79E, PAL_NONE }, { 0x7A5, PALETTE_TO_GREEN }, { 0x7AC, PALETTE_TO_RED }, { 0x7B3, PAL_NONE },
36b39f4a9032 (svn r8128) -Codechange: Split sprite and palette remap into separate 32 bit values.
peter1138
parents: 5639
diff changeset
   335
	{ 0x7BA, PAL_NONE }, { 0x7C1, PALETTE_TO_RED, }, { 0x7C8, PALETTE_TO_PALE_GREEN }, { 0x7CF, PALETTE_TO_YELLOW }, { 0x7D6, PALETTE_TO_RED }
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   336
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   337
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   338
static void BuildTreesWndProc(Window *w, WindowEvent *e)
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   339
{
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2631
diff changeset
   340
	switch (e->event) {
8831
d598d3d0380a (svn r12579) -Change: reset cursor when the Plant trees GUI is opened
smatz
parents: 8819
diff changeset
   341
		case WE_CREATE:
d598d3d0380a (svn r12579) -Change: reset cursor when the Plant trees GUI is opened
smatz
parents: 8819
diff changeset
   342
			ResetObjectToPlace();
d598d3d0380a (svn r12579) -Change: reset cursor when the Plant trees GUI is opened
smatz
parents: 8819
diff changeset
   343
			break;
d598d3d0380a (svn r12579) -Change: reset cursor when the Plant trees GUI is opened
smatz
parents: 8819
diff changeset
   344
8738
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   345
		case WE_PAINT: {
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   346
			DrawWindowWidgets(w);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   347
8819
e608a2ebe2b1 (svn r12565) -Cleanup: variable scope in misc\*.cpp
smatz
parents: 8809
diff changeset
   348
			int i = WP(w, tree_d).base = _tree_base_by_landscape[_opt.landscape];
e608a2ebe2b1 (svn r12565) -Cleanup: variable scope in misc\*.cpp
smatz
parents: 8809
diff changeset
   349
			int count = WP(w, tree_d).count = _tree_count_by_landscape[_opt.landscape];
8738
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   350
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   351
			int x = 18;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   352
			int y = 54;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   353
			do {
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   354
				DrawSprite(_tree_sprites[i].sprite, _tree_sprites[i].pal, x, y);
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   355
				x += 35;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   356
				if (!(++i & 3)) {
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   357
					x -= 35 * 4;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   358
					y += 47;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   359
				}
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   360
			} while (--count);
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   361
		} break;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   362
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   363
		case WE_CLICK: {
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   364
			int wid = e->we.click.widget;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   365
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   366
			switch (wid) {
8819
e608a2ebe2b1 (svn r12565) -Cleanup: variable scope in misc\*.cpp
smatz
parents: 8809
diff changeset
   367
				case 0:
8738
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   368
					ResetObjectToPlace();
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   369
					break;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   370
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   371
				case 3: case 4: case 5: case 6:
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   372
				case 7: case 8: case 9: case 10:
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   373
				case 11:case 12: case 13: case 14:
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   374
					if (wid - 3 >= WP(w, tree_d).count) break;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   375
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   376
					if (HandlePlacePushButton(w, wid, SPR_CURSOR_TREE, VHM_RECT, NULL)) {
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   377
						_tree_to_plant = WP(w, tree_d).base + wid - 3;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   378
					}
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   379
					break;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   380
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   381
				case 15: // tree of random type.
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   382
					if (HandlePlacePushButton(w, 15, SPR_CURSOR_TREE, VHM_RECT, NULL)) {
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   383
						_tree_to_plant = -1;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   384
					}
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   385
					break;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   386
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   387
				case 16: // place trees randomly over the landscape
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   388
					w->LowerWidget(16);
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   389
					w->flags4 |= 5 << WF_TIMEOUT_SHL;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   390
					SndPlayFx(SND_15_BEEP);
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   391
					PlaceTreesRandomly();
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   392
					MarkWholeScreenDirty();
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   393
					break;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   394
			}
8738
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   395
		} break;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   396
8738
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   397
		case WE_PLACE_OBJ:
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   398
			VpStartPlaceSizing(e->we.place.tile, VPM_X_AND_Y_LIMITED, DDSP_PLANT_TREES);
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   399
			VpSetPlaceSizingLimit(20);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   400
			break;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   401
8738
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   402
		case WE_PLACE_DRAG:
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   403
			VpSelectTilesWithMethod(e->we.place.pt.x, e->we.place.pt.y, e->we.place.select_method);
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   404
			return;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   405
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   406
		case WE_PLACE_MOUSEUP:
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   407
			if (e->we.place.pt.x != -1 && e->we.place.select_proc == DDSP_PLANT_TREES) {
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   408
				DoCommandP(e->we.place.tile, _tree_to_plant, e->we.place.starttile, NULL,
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   409
					CMD_PLANT_TREE | CMD_MSG(STR_2805_CAN_T_PLANT_TREE_HERE));
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   410
			}
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   411
			break;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   412
8738
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   413
		case WE_TIMEOUT:
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   414
			w->RaiseWidget(16);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   415
			break;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   416
8738
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   417
		case WE_ABORT_PLACE_OBJ:
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   418
			w->RaiseButtons();
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   419
			break;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   420
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   421
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   422
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   423
static const Widget _build_trees_widgets[] = {
4344
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4326
diff changeset
   424
{   WWT_CLOSEBOX,   RESIZE_NONE,     7,     0,    10,     0,    13, STR_00C5,              STR_018B_CLOSE_WINDOW},
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4326
diff changeset
   425
{    WWT_CAPTION,   RESIZE_NONE,     7,    11,   142,     0,    13, STR_2802_TREES,        STR_018C_WINDOW_TITLE_DRAG_THIS},
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4326
diff changeset
   426
{      WWT_PANEL,   RESIZE_NONE,     7,     0,   142,    14,   170, 0x0,                   STR_NULL},
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4326
diff changeset
   427
{      WWT_PANEL,   RESIZE_NONE,    14,     2,    35,    16,    61, 0x0,                   STR_280D_SELECT_TREE_TYPE_TO_PLANT},
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4326
diff changeset
   428
{      WWT_PANEL,   RESIZE_NONE,    14,    37,    70,    16,    61, 0x0,                   STR_280D_SELECT_TREE_TYPE_TO_PLANT},
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4326
diff changeset
   429
{      WWT_PANEL,   RESIZE_NONE,    14,    72,   105,    16,    61, 0x0,                   STR_280D_SELECT_TREE_TYPE_TO_PLANT},
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4326
diff changeset
   430
{      WWT_PANEL,   RESIZE_NONE,    14,   107,   140,    16,    61, 0x0,                   STR_280D_SELECT_TREE_TYPE_TO_PLANT},
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4326
diff changeset
   431
{      WWT_PANEL,   RESIZE_NONE,    14,     2,    35,    63,   108, 0x0,                   STR_280D_SELECT_TREE_TYPE_TO_PLANT},
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4326
diff changeset
   432
{      WWT_PANEL,   RESIZE_NONE,    14,    37,    70,    63,   108, 0x0,                   STR_280D_SELECT_TREE_TYPE_TO_PLANT},
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4326
diff changeset
   433
{      WWT_PANEL,   RESIZE_NONE,    14,    72,   105,    63,   108, 0x0,                   STR_280D_SELECT_TREE_TYPE_TO_PLANT},
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4326
diff changeset
   434
{      WWT_PANEL,   RESIZE_NONE,    14,   107,   140,    63,   108, 0x0,                   STR_280D_SELECT_TREE_TYPE_TO_PLANT},
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4326
diff changeset
   435
{      WWT_PANEL,   RESIZE_NONE,    14,     2,    35,   110,   155, 0x0,                   STR_280D_SELECT_TREE_TYPE_TO_PLANT},
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4326
diff changeset
   436
{      WWT_PANEL,   RESIZE_NONE,    14,    37,    70,   110,   155, 0x0,                   STR_280D_SELECT_TREE_TYPE_TO_PLANT},
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4326
diff changeset
   437
{      WWT_PANEL,   RESIZE_NONE,    14,    72,   105,   110,   155, 0x0,                   STR_280D_SELECT_TREE_TYPE_TO_PLANT},
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4326
diff changeset
   438
{      WWT_PANEL,   RESIZE_NONE,    14,   107,   140,   110,   155, 0x0,                   STR_280D_SELECT_TREE_TYPE_TO_PLANT},
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4326
diff changeset
   439
{    WWT_TEXTBTN,   RESIZE_NONE,    14,     2,   140,   157,   168, STR_TREES_RANDOM_TYPE, STR_TREES_RANDOM_TYPE_TIP},
176
84990c4b9212 (svn r177) -Fix: padded out Widget code to solve warnings on C99 compiler (Tron)
darkvater
parents: 172
diff changeset
   440
{    WIDGETS_END},
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   441
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   442
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   443
static const WindowDesc _build_trees_desc = {
7341
02515d0d4ced (svn r10704) -Codechange: provide an infrastructure to have resizable windows that are smaller than the default window size.
rubidium
parents: 7321
diff changeset
   444
	497, 22, 143, 171, 143, 171,
606
da90c837064c (svn r1030) Some toolbar icons are arranged differently:
dominik
parents: 598
diff changeset
   445
	WC_BUILD_TREES, WC_SCEN_LAND_GEN,
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   446
	WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   447
	_build_trees_widgets,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   448
	BuildTreesWndProc
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   449
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   450
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   451
static const Widget _build_trees_scen_widgets[] = {
4344
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4326
diff changeset
   452
{   WWT_CLOSEBOX,   RESIZE_NONE,     7,     0,    10,     0,    13, STR_00C5,              STR_018B_CLOSE_WINDOW},
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4326
diff changeset
   453
{    WWT_CAPTION,   RESIZE_NONE,     7,    11,   142,     0,    13, STR_2802_TREES,        STR_018C_WINDOW_TITLE_DRAG_THIS},
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4326
diff changeset
   454
{      WWT_PANEL,   RESIZE_NONE,     7,     0,   142,    14,   183, 0x0,                   STR_NULL},
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4326
diff changeset
   455
{      WWT_PANEL,   RESIZE_NONE,    14,     2,    35,    16,    61, 0x0,                   STR_280D_SELECT_TREE_TYPE_TO_PLANT},
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4326
diff changeset
   456
{      WWT_PANEL,   RESIZE_NONE,    14,    37,    70,    16,    61, 0x0,                   STR_280D_SELECT_TREE_TYPE_TO_PLANT},
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4326
diff changeset
   457
{      WWT_PANEL,   RESIZE_NONE,    14,    72,   105,    16,    61, 0x0,                   STR_280D_SELECT_TREE_TYPE_TO_PLANT},
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4326
diff changeset
   458
{      WWT_PANEL,   RESIZE_NONE,    14,   107,   140,    16,    61, 0x0,                   STR_280D_SELECT_TREE_TYPE_TO_PLANT},
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4326
diff changeset
   459
{      WWT_PANEL,   RESIZE_NONE,    14,     2,    35,    63,   108, 0x0,                   STR_280D_SELECT_TREE_TYPE_TO_PLANT},
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4326
diff changeset
   460
{      WWT_PANEL,   RESIZE_NONE,    14,    37,    70,    63,   108, 0x0,                   STR_280D_SELECT_TREE_TYPE_TO_PLANT},
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4326
diff changeset
   461
{      WWT_PANEL,   RESIZE_NONE,    14,    72,   105,    63,   108, 0x0,                   STR_280D_SELECT_TREE_TYPE_TO_PLANT},
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4326
diff changeset
   462
{      WWT_PANEL,   RESIZE_NONE,    14,   107,   140,    63,   108, 0x0,                   STR_280D_SELECT_TREE_TYPE_TO_PLANT},
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4326
diff changeset
   463
{      WWT_PANEL,   RESIZE_NONE,    14,     2,    35,   110,   155, 0x0,                   STR_280D_SELECT_TREE_TYPE_TO_PLANT},
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4326
diff changeset
   464
{      WWT_PANEL,   RESIZE_NONE,    14,    37,    70,   110,   155, 0x0,                   STR_280D_SELECT_TREE_TYPE_TO_PLANT},
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4326
diff changeset
   465
{      WWT_PANEL,   RESIZE_NONE,    14,    72,   105,   110,   155, 0x0,                   STR_280D_SELECT_TREE_TYPE_TO_PLANT},
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4326
diff changeset
   466
{      WWT_PANEL,   RESIZE_NONE,    14,   107,   140,   110,   155, 0x0,                   STR_280D_SELECT_TREE_TYPE_TO_PLANT},
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4326
diff changeset
   467
{    WWT_TEXTBTN,   RESIZE_NONE,    14,     2,   140,   157,   168, STR_TREES_RANDOM_TYPE, STR_TREES_RANDOM_TYPE_TIP},
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4326
diff changeset
   468
{    WWT_TEXTBTN,   RESIZE_NONE,    14,     2,   140,   170,   181, STR_028A_RANDOM_TREES, STR_028B_PLANT_TREES_RANDOMLY_OVER},
176
84990c4b9212 (svn r177) -Fix: padded out Widget code to solve warnings on C99 compiler (Tron)
darkvater
parents: 172
diff changeset
   469
{    WIDGETS_END},
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   470
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   471
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   472
static const WindowDesc _build_trees_scen_desc = {
7341
02515d0d4ced (svn r10704) -Codechange: provide an infrastructure to have resizable windows that are smaller than the default window size.
rubidium
parents: 7321
diff changeset
   473
	WDP_AUTO, WDP_AUTO, 143, 184, 143, 184,
5893
7e431a4abebb (svn r8511) -Codechange: make WindowClass an enumerated value.
rubidium
parents: 5750
diff changeset
   474
	WC_BUILD_TREES, WC_NONE,
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   475
	WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   476
	_build_trees_scen_widgets,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   477
	BuildTreesWndProc
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   478
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   479
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 179
diff changeset
   480
6247
7d81e3a5d803 (svn r9050) -Codechange: Foo(void) -> Foo()
rubidium
parents: 6239
diff changeset
   481
void ShowBuildTreesToolbar()
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   482
{
5005
f5086bd3945a (svn r7022) -Fix [FS#292]: Properly guard against viewing company-sensitive information from
Darkvater
parents: 4994
diff changeset
   483
	if (!IsValidPlayer(_current_player)) return;
1846
7fcf64b5ba45 (svn r2351) -Fix: It was possible to open more than one tree window
tron
parents: 1843
diff changeset
   484
	AllocateWindowDescFront(&_build_trees_desc, 0);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   485
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   486
6247
7d81e3a5d803 (svn r9050) -Codechange: Foo(void) -> Foo()
rubidium
parents: 6239
diff changeset
   487
void ShowBuildTreesScenToolbar()
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   488
{
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   489
	AllocateWindowDescFront(&_build_trees_scen_desc, 0);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   490
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   491
7002
1bf6a62b0fcb (svn r10258) -Codechange: as we are now using int64 all over the place, it's better to use int64 variables in the string generating too instead of packing them into two int32s.
rubidium
parents: 6998
diff changeset
   492
static uint64 _errmsg_decode_params[20];
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   493
static StringID _errmsg_message_1, _errmsg_message_2;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   494
static uint _errmsg_duration;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   495
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   496
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   497
static const Widget _errmsg_widgets[] = {
4344
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4326
diff changeset
   498
{   WWT_CLOSEBOX,   RESIZE_NONE,     4,     0,    10,     0,    13, STR_00C5,         STR_018B_CLOSE_WINDOW},
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4326
diff changeset
   499
{    WWT_CAPTION,   RESIZE_NONE,     4,    11,   239,     0,    13, STR_00B2_MESSAGE, STR_NULL},
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4326
diff changeset
   500
{      WWT_PANEL,   RESIZE_NONE,     4,     0,   239,    14,    45, 0x0,              STR_NULL},
176
84990c4b9212 (svn r177) -Fix: padded out Widget code to solve warnings on C99 compiler (Tron)
darkvater
parents: 172
diff changeset
   501
{    WIDGETS_END},
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   502
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   503
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   504
static const Widget _errmsg_face_widgets[] = {
4344
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4326
diff changeset
   505
{   WWT_CLOSEBOX,   RESIZE_NONE,     4,     0,    10,     0,    13, STR_00C5,              STR_018B_CLOSE_WINDOW},
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4326
diff changeset
   506
{    WWT_CAPTION,   RESIZE_NONE,     4,    11,   333,     0,    13, STR_00B3_MESSAGE_FROM, STR_NULL},
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4326
diff changeset
   507
{      WWT_PANEL,   RESIZE_NONE,     4,     0,   333,    14,   136, 0x0,                   STR_NULL},
176
84990c4b9212 (svn r177) -Fix: padded out Widget code to solve warnings on C99 compiler (Tron)
darkvater
parents: 172
diff changeset
   508
{   WIDGETS_END},
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   509
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   510
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   511
static void ErrmsgWndProc(Window *w, WindowEvent *e)
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   512
{
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2631
diff changeset
   513
	switch (e->event) {
8738
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   514
		case WE_PAINT:
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   515
			CopyInDParam(0, _errmsg_decode_params, lengthof(_errmsg_decode_params));
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   516
			DrawWindowWidgets(w);
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   517
			CopyInDParam(0, _errmsg_decode_params, lengthof(_errmsg_decode_params));
7750
7afbef1235e0 (svn r11287) -Codechange: add support for pushing paramaters into NewIndustries' error messages. Patch by Csaboka.
rubidium
parents: 7521
diff changeset
   518
8738
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   519
			/* If the error message comes from a NewGRF, we must use the text ref. stack reserved for error messages.
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   520
			* If the message doesn't come from a NewGRF, it won't use the TTDP-style text ref. stack, so we won't hurt anything
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   521
			*/
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   522
			SwitchToErrorRefStack();
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   523
			RewindTextRefStack();
7750
7afbef1235e0 (svn r11287) -Codechange: add support for pushing paramaters into NewIndustries' error messages. Patch by Csaboka.
rubidium
parents: 7521
diff changeset
   524
8738
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   525
			if (!IsWindowOfPrototype(w, _errmsg_face_widgets)) {
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   526
				DrawStringMultiCenter(
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   527
					120,
8738
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   528
					(_errmsg_message_1 == INVALID_STRING_ID ? 25 : 15),
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   529
					_errmsg_message_2,
6197
558f3a9b5bd4 (svn r8977) -Codechange: Remove the hardcoded maximum width for some drawstrings and replace them with a portion of w->width. Only visible improvement is QueryWndProc which will not write exactly to the edge of the window anymore.
Darkvater
parents: 6190
diff changeset
   530
					w->width - 2);
8738
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   531
				if (_errmsg_message_1 != INVALID_STRING_ID) {
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   532
					DrawStringMultiCenter(
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   533
						120,
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   534
						30,
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   535
						_errmsg_message_1,
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   536
						w->width - 2);
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   537
				}
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   538
			} else {
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   539
				const Player *p = GetPlayer((PlayerID)GetDParamX(_errmsg_decode_params,2));
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   540
				DrawPlayerFace(p->face, p->player_color, 2, 16);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   541
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   542
				DrawStringMultiCenter(
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   543
					214,
8738
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   544
					(_errmsg_message_1 == INVALID_STRING_ID ? 65 : 45),
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   545
					_errmsg_message_2,
6197
558f3a9b5bd4 (svn r8977) -Codechange: Remove the hardcoded maximum width for some drawstrings and replace them with a portion of w->width. Only visible improvement is QueryWndProc which will not write exactly to the edge of the window anymore.
Darkvater
parents: 6190
diff changeset
   546
					w->width - 2);
8738
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   547
				if (_errmsg_message_1 != INVALID_STRING_ID) {
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   548
					DrawStringMultiCenter(
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   549
						214,
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   550
						90,
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   551
						_errmsg_message_1,
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   552
						w->width - 2);
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   553
				}
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   554
			}
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2631
diff changeset
   555
8738
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   556
			/* Switch back to the normal text ref. stack for NewGRF texts */
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   557
			SwitchToNormalRefStack();
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   558
			break;
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2631
diff changeset
   559
8738
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   560
		case WE_MOUSELOOP:
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   561
			if (_right_button_down) DeleteWindow(w);
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   562
			break;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   563
8738
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   564
		case WE_4:
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   565
			if (--_errmsg_duration == 0) DeleteWindow(w);
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   566
			break;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   567
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   568
		case WE_DESTROY:
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   569
			SetRedErrorSquare(0);
8973
749e572f9378 (svn r12765) -Codechange: move some stuff out of variables.h that required including other headers in variables.h.
rubidium
parents: 8969
diff changeset
   570
			extern StringID _switch_mode_errorstr;
8738
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   571
			_switch_mode_errorstr = INVALID_STRING_ID;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   572
			break;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   573
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   574
		case WE_KEYPRESS:
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   575
			if (e->we.keypress.keycode == WKC_SPACE) {
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   576
				/* Don't continue. */
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   577
				e->we.keypress.cont = false;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   578
				DeleteWindow(w);
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   579
			}
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   580
			break;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   581
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   582
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   583
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   584
void ShowErrorMessage(StringID msg_1, StringID msg_2, int x, int y)
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   585
{
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   586
	DeleteWindowById(WC_ERRMSG, 0);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   587
8738
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   588
	if (msg_2 == STR_NULL) msg_2 = STR_EMPTY;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   589
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   590
	_errmsg_message_1 = msg_1;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   591
	_errmsg_message_2 = msg_2;
7266
b16e67e992b4 (svn r10587) -Codechange: move the string/dparam related stuff from variables.h to strings.h
rubidium
parents: 7241
diff changeset
   592
	CopyOutDParam(_errmsg_decode_params, 0, lengthof(_errmsg_decode_params));
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   593
	_errmsg_duration = _patches.errmsg_duration;
5120
1ff65e874ce3 (svn r7200) -Codechange: remove unneeded redraw (console.c), coding style, use FindWindowById
Darkvater
parents: 5116
diff changeset
   594
	if (!_errmsg_duration) return;
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 179
diff changeset
   595
8819
e608a2ebe2b1 (svn r12565) -Cleanup: variable scope in misc\*.cpp
smatz
parents: 8809
diff changeset
   596
	Point pt;
e608a2ebe2b1 (svn r12565) -Cleanup: variable scope in misc\*.cpp
smatz
parents: 8809
diff changeset
   597
	const ViewPort *vp;
e608a2ebe2b1 (svn r12565) -Cleanup: variable scope in misc\*.cpp
smatz
parents: 8809
diff changeset
   598
	Window *w;
e608a2ebe2b1 (svn r12565) -Cleanup: variable scope in misc\*.cpp
smatz
parents: 8809
diff changeset
   599
534
306bc86eb23e (svn r901) Small step in the process to clean up the DPARAM mess:
tron
parents: 507
diff changeset
   600
	if (_errmsg_message_1 != STR_013B_OWNED_BY || GetDParamX(_errmsg_decode_params,2) >= 8) {
8738
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   601
		if ((x | y) != 0) {
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   602
			pt = RemapCoords2(x, y);
5120
1ff65e874ce3 (svn r7200) -Codechange: remove unneeded redraw (console.c), coding style, use FindWindowById
Darkvater
parents: 5116
diff changeset
   603
			vp = FindWindowById(WC_MAIN_WINDOW, 0)->viewport;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   604
6201
bee01dc45e39 (svn r8987) -Cleanup: doxygen changes. Again. Mostly (still) @files missing tags and (more than just) a few comments style.
belugas
parents: 6197
diff changeset
   605
			/* move x pos to opposite corner */
6626
207875b9069a (svn r9846) -Codechange: introduced ZOOM_LVL_MIN and ZOOM_LVL_MAX for the obvious reasons
truelight
parents: 6492
diff changeset
   606
			pt.x = UnScaleByZoom(pt.x - vp->virtual_left, vp->zoom) + vp->left;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   607
			pt.x = (pt.x < (_screen.width >> 1)) ? _screen.width - 260 : 20;
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 179
diff changeset
   608
6201
bee01dc45e39 (svn r8987) -Cleanup: doxygen changes. Again. Mostly (still) @files missing tags and (more than just) a few comments style.
belugas
parents: 6197
diff changeset
   609
			/* move y pos to opposite corner */
6626
207875b9069a (svn r9846) -Codechange: introduced ZOOM_LVL_MIN and ZOOM_LVL_MAX for the obvious reasons
truelight
parents: 6492
diff changeset
   610
			pt.y = UnScaleByZoom(pt.y - vp->virtual_top, vp->zoom) + vp->top;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   611
			pt.y = (pt.y < (_screen.height >> 1)) ? _screen.height - 80 : 100;
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 179
diff changeset
   612
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   613
		} else {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   614
			pt.x = (_screen.width - 240) >> 1;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   615
			pt.y = (_screen.height - 46) >> 1;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   616
		}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   617
		w = AllocateWindow(pt.x, pt.y, 240, 46, ErrmsgWndProc, WC_ERRMSG, _errmsg_widgets);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   618
	} else {
8738
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   619
		if ((x | y) != 0) {
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   620
			pt = RemapCoords2(x, y);
5120
1ff65e874ce3 (svn r7200) -Codechange: remove unneeded redraw (console.c), coding style, use FindWindowById
Darkvater
parents: 5116
diff changeset
   621
			vp = FindWindowById(WC_MAIN_WINDOW, 0)->viewport;
7922
a7e266f966d9 (svn r11475) -Codechange: rename clamp and clampu to Clamp and ClampU to fit with the coding style
skidd13
parents: 7889
diff changeset
   622
			pt.x = Clamp(UnScaleByZoom(pt.x - vp->virtual_left, vp->zoom) + vp->left - (334/2), 0, _screen.width - 334);
a7e266f966d9 (svn r11475) -Codechange: rename clamp and clampu to Clamp and ClampU to fit with the coding style
skidd13
parents: 7889
diff changeset
   623
			pt.y = Clamp(UnScaleByZoom(pt.y - vp->virtual_top, vp->zoom) + vp->top - (137/2), 22, _screen.height - 137);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   624
		} else {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   625
			pt.x = (_screen.width - 334) >> 1;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   626
			pt.y = (_screen.height - 137) >> 1;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   627
		}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   628
		w = AllocateWindow(pt.x, pt.y, 334, 137, ErrmsgWndProc, WC_ERRMSG, _errmsg_face_widgets);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   629
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   630
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   631
	w->desc_flags = WDF_STD_BTN | WDF_DEF_WIDGET;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   632
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   633
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   634
6990
136a08baf0ed (svn r10246) -Fix (r10297): some forgotten money conversions and truncation issues. Thanks to benc for providing the patch.
rubidium
parents: 6953
diff changeset
   635
void ShowEstimatedCostOrIncome(Money cost, int x, int y)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   636
{
2498
3ed05caa4449 (svn r3024) -Codechange: Another batch of replacements of int/uint/int16/byte/-1 with proper types and constants
tron
parents: 2475
diff changeset
   637
	StringID msg = STR_0805_ESTIMATED_COST;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   638
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   639
	if (cost < 0) {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   640
		cost = -cost;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   641
		msg = STR_0807_ESTIMATED_INCOME;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   642
	}
7002
1bf6a62b0fcb (svn r10258) -Codechange: as we are now using int64 all over the place, it's better to use int64 variables in the string generating too instead of packing them into two int32s.
rubidium
parents: 6998
diff changeset
   643
	SetDParam(0, cost);
2498
3ed05caa4449 (svn r3024) -Codechange: Another batch of replacements of int/uint/int16/byte/-1 with proper types and constants
tron
parents: 2475
diff changeset
   644
	ShowErrorMessage(INVALID_STRING_ID, msg, x, y);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   645
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   646
6990
136a08baf0ed (svn r10246) -Fix (r10297): some forgotten money conversions and truncation issues. Thanks to benc for providing the patch.
rubidium
parents: 6953
diff changeset
   647
void ShowCostOrIncomeAnimation(int x, int y, int z, Money cost)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   648
{
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   649
	Point pt = RemapCoords(x,y,z);
8819
e608a2ebe2b1 (svn r12565) -Cleanup: variable scope in misc\*.cpp
smatz
parents: 8809
diff changeset
   650
	StringID msg = STR_0801_COST;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   651
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   652
	if (cost < 0) {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   653
		cost = -cost;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   654
		msg = STR_0803_INCOME;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   655
	}
7002
1bf6a62b0fcb (svn r10258) -Codechange: as we are now using int64 all over the place, it's better to use int64 variables in the string generating too instead of packing them into two int32s.
rubidium
parents: 6998
diff changeset
   656
	SetDParam(0, cost);
6998
39e783d3816c (svn r10254) -Feature: loading indicator, which shows in % how full a vehicle is while loading/unloading (TheJosh)
truelight
parents: 6991
diff changeset
   657
	AddTextEffect(msg, pt.x, pt.y, 0x250, TE_RISING);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   658
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   659
6990
136a08baf0ed (svn r10246) -Fix (r10297): some forgotten money conversions and truncation issues. Thanks to benc for providing the patch.
rubidium
parents: 6953
diff changeset
   660
void ShowFeederIncomeAnimation(int x, int y, int z, Money cost)
1935
164d58b9137c (svn r2441) -Feature: You can now give transfer order to set up feeder systems
celestar
parents: 1914
diff changeset
   661
{
164d58b9137c (svn r2441) -Feature: You can now give transfer order to set up feeder systems
celestar
parents: 1914
diff changeset
   662
	Point pt = RemapCoords(x,y,z);
164d58b9137c (svn r2441) -Feature: You can now give transfer order to set up feeder systems
celestar
parents: 1914
diff changeset
   663
7002
1bf6a62b0fcb (svn r10258) -Codechange: as we are now using int64 all over the place, it's better to use int64 variables in the string generating too instead of packing them into two int32s.
rubidium
parents: 6998
diff changeset
   664
	SetDParam(0, cost);
6998
39e783d3816c (svn r10254) -Feature: loading indicator, which shows in % how full a vehicle is while loading/unloading (TheJosh)
truelight
parents: 6991
diff changeset
   665
	AddTextEffect(STR_FEEDER, pt.x, pt.y, 0x250, TE_RISING);
39e783d3816c (svn r10254) -Feature: loading indicator, which shows in % how full a vehicle is while loading/unloading (TheJosh)
truelight
parents: 6991
diff changeset
   666
}
39e783d3816c (svn r10254) -Feature: loading indicator, which shows in % how full a vehicle is while loading/unloading (TheJosh)
truelight
parents: 6991
diff changeset
   667
7014
533521754123 (svn r10270) -Add: prefixed the loading indicator with an arrow, up meaning vehicle is loading, down meaning vehicle is unloading
truelight
parents: 7007
diff changeset
   668
TextEffectID ShowFillingPercent(int x, int y, int z, uint8 percent, StringID string)
6998
39e783d3816c (svn r10254) -Feature: loading indicator, which shows in % how full a vehicle is while loading/unloading (TheJosh)
truelight
parents: 6991
diff changeset
   669
{
39e783d3816c (svn r10254) -Feature: loading indicator, which shows in % how full a vehicle is while loading/unloading (TheJosh)
truelight
parents: 6991
diff changeset
   670
	Point pt = RemapCoords(x, y, z);
39e783d3816c (svn r10254) -Feature: loading indicator, which shows in % how full a vehicle is while loading/unloading (TheJosh)
truelight
parents: 6991
diff changeset
   671
7014
533521754123 (svn r10270) -Add: prefixed the loading indicator with an arrow, up meaning vehicle is loading, down meaning vehicle is unloading
truelight
parents: 7007
diff changeset
   672
	assert(string != STR_NULL);
533521754123 (svn r10270) -Add: prefixed the loading indicator with an arrow, up meaning vehicle is loading, down meaning vehicle is unloading
truelight
parents: 7007
diff changeset
   673
6998
39e783d3816c (svn r10254) -Feature: loading indicator, which shows in % how full a vehicle is while loading/unloading (TheJosh)
truelight
parents: 6991
diff changeset
   674
	SetDParam(0, percent);
7014
533521754123 (svn r10270) -Add: prefixed the loading indicator with an arrow, up meaning vehicle is loading, down meaning vehicle is unloading
truelight
parents: 7007
diff changeset
   675
	return AddTextEffect(string, pt.x, pt.y, 0xFFFF, TE_STATIC);
6998
39e783d3816c (svn r10254) -Feature: loading indicator, which shows in % how full a vehicle is while loading/unloading (TheJosh)
truelight
parents: 6991
diff changeset
   676
}
39e783d3816c (svn r10254) -Feature: loading indicator, which shows in % how full a vehicle is while loading/unloading (TheJosh)
truelight
parents: 6991
diff changeset
   677
7014
533521754123 (svn r10270) -Add: prefixed the loading indicator with an arrow, up meaning vehicle is loading, down meaning vehicle is unloading
truelight
parents: 7007
diff changeset
   678
void UpdateFillingPercent(TextEffectID te_id, uint8 percent, StringID string)
6998
39e783d3816c (svn r10254) -Feature: loading indicator, which shows in % how full a vehicle is while loading/unloading (TheJosh)
truelight
parents: 6991
diff changeset
   679
{
7014
533521754123 (svn r10270) -Add: prefixed the loading indicator with an arrow, up meaning vehicle is loading, down meaning vehicle is unloading
truelight
parents: 7007
diff changeset
   680
	assert(string != STR_NULL);
533521754123 (svn r10270) -Add: prefixed the loading indicator with an arrow, up meaning vehicle is loading, down meaning vehicle is unloading
truelight
parents: 7007
diff changeset
   681
6998
39e783d3816c (svn r10254) -Feature: loading indicator, which shows in % how full a vehicle is while loading/unloading (TheJosh)
truelight
parents: 6991
diff changeset
   682
	SetDParam(0, percent);
7014
533521754123 (svn r10270) -Add: prefixed the loading indicator with an arrow, up meaning vehicle is loading, down meaning vehicle is unloading
truelight
parents: 7007
diff changeset
   683
	UpdateTextEffect(te_id, string);
6998
39e783d3816c (svn r10254) -Feature: loading indicator, which shows in % how full a vehicle is while loading/unloading (TheJosh)
truelight
parents: 6991
diff changeset
   684
}
39e783d3816c (svn r10254) -Feature: loading indicator, which shows in % how full a vehicle is while loading/unloading (TheJosh)
truelight
parents: 6991
diff changeset
   685
39e783d3816c (svn r10254) -Feature: loading indicator, which shows in % how full a vehicle is while loading/unloading (TheJosh)
truelight
parents: 6991
diff changeset
   686
void HideFillingPercent(TextEffectID te_id)
39e783d3816c (svn r10254) -Feature: loading indicator, which shows in % how full a vehicle is while loading/unloading (TheJosh)
truelight
parents: 6991
diff changeset
   687
{
39e783d3816c (svn r10254) -Feature: loading indicator, which shows in % how full a vehicle is while loading/unloading (TheJosh)
truelight
parents: 6991
diff changeset
   688
	if (te_id != INVALID_TE_ID) RemoveTextEffect(te_id);
1935
164d58b9137c (svn r2441) -Feature: You can now give transfer order to set up feeder systems
celestar
parents: 1914
diff changeset
   689
}
164d58b9137c (svn r2441) -Feature: You can now give transfer order to set up feeder systems
celestar
parents: 1914
diff changeset
   690
2275
11a1dac70c45 (svn r2799) Make the only two non-const widget lists const
tron
parents: 2261
diff changeset
   691
static const Widget _tooltips_widgets[] = {
867
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 860
diff changeset
   692
{      WWT_PANEL,   RESIZE_NONE,    14,     0,   199,     0,    31, 0x0, STR_NULL},
176
84990c4b9212 (svn r177) -Fix: padded out Widget code to solve warnings on C99 compiler (Tron)
darkvater
parents: 172
diff changeset
   693
{   WIDGETS_END},
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   694
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   695
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   696
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   697
static void TooltipsWndProc(Window *w, WindowEvent *e)
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   698
{
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2631
diff changeset
   699
	switch (e->event) {
8738
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   700
		case WE_PAINT:
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2631
diff changeset
   701
			GfxFillRect(0, 0, w->width - 1, w->height - 1, 0);
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2631
diff changeset
   702
			GfxFillRect(1, 1, w->width - 2, w->height - 2, 0x44);
4834
3c6e8a547174 (svn r6758) -Feature: Add a measurement tool that will show dimensions and height
Darkvater
parents: 4719
diff changeset
   703
8738
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   704
			for (uint arg = 0; arg < WP(w, tooltips_d).paramcount; arg++) {
4834
3c6e8a547174 (svn r6758) -Feature: Add a measurement tool that will show dimensions and height
Darkvater
parents: 4719
diff changeset
   705
				SetDParam(arg, WP(w, tooltips_d).params[arg]);
3c6e8a547174 (svn r6758) -Feature: Add a measurement tool that will show dimensions and height
Darkvater
parents: 4719
diff changeset
   706
			}
6197
558f3a9b5bd4 (svn r8977) -Codechange: Remove the hardcoded maximum width for some drawstrings and replace them with a portion of w->width. Only visible improvement is QueryWndProc which will not write exactly to the edge of the window anymore.
Darkvater
parents: 6190
diff changeset
   707
			DrawStringMultiCenter((w->width >> 1), (w->height >> 1) - 5, WP(w, tooltips_d).string_id, w->width - 2);
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2631
diff changeset
   708
			break;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   709
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2631
diff changeset
   710
		case WE_MOUSELOOP:
4834
3c6e8a547174 (svn r6758) -Feature: Add a measurement tool that will show dimensions and height
Darkvater
parents: 4719
diff changeset
   711
			/* We can show tooltips while dragging tools. These are shown as long as
3c6e8a547174 (svn r6758) -Feature: Add a measurement tool that will show dimensions and height
Darkvater
parents: 4719
diff changeset
   712
			 * we are dragging the tool. Normal tooltips work with rmb */
3c6e8a547174 (svn r6758) -Feature: Add a measurement tool that will show dimensions and height
Darkvater
parents: 4719
diff changeset
   713
			if (WP(w, tooltips_d).paramcount == 0 ) {
3c6e8a547174 (svn r6758) -Feature: Add a measurement tool that will show dimensions and height
Darkvater
parents: 4719
diff changeset
   714
				if (!_right_button_down) DeleteWindow(w);
3c6e8a547174 (svn r6758) -Feature: Add a measurement tool that will show dimensions and height
Darkvater
parents: 4719
diff changeset
   715
			} else {
3c6e8a547174 (svn r6758) -Feature: Add a measurement tool that will show dimensions and height
Darkvater
parents: 4719
diff changeset
   716
				if (!_left_button_down) DeleteWindow(w);
3c6e8a547174 (svn r6758) -Feature: Add a measurement tool that will show dimensions and height
Darkvater
parents: 4719
diff changeset
   717
			}
3c6e8a547174 (svn r6758) -Feature: Add a measurement tool that will show dimensions and height
Darkvater
parents: 4719
diff changeset
   718
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2631
diff changeset
   719
			break;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   720
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   721
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   722
4834
3c6e8a547174 (svn r6758) -Feature: Add a measurement tool that will show dimensions and height
Darkvater
parents: 4719
diff changeset
   723
/** Shows a tooltip
6481
85ad87daf4b0 (svn r9662) -Documentation: Doxygen corrections and @file omissions
belugas
parents: 6453
diff changeset
   724
 * @param str String to be displayed
85ad87daf4b0 (svn r9662) -Documentation: Doxygen corrections and @file omissions
belugas
parents: 6453
diff changeset
   725
 * @param paramcount number of params to deal with
85ad87daf4b0 (svn r9662) -Documentation: Doxygen corrections and @file omissions
belugas
parents: 6453
diff changeset
   726
 * @param params (optional) up to 5 pieces of additional information that may be
85ad87daf4b0 (svn r9662) -Documentation: Doxygen corrections and @file omissions
belugas
parents: 6453
diff changeset
   727
 * added to a tooltip; currently only supports parameters of {NUM} (integer) */
7006
bfa3974da32b (svn r10262) -Fix (r10258): some places that needed to be changed to uint64 were hidden/forgotten, which caused memory corruptions and that in caused all kinds of assertions to trigger.
rubidium
parents: 7002
diff changeset
   728
void GuiShowTooltipsWithArgs(StringID str, uint paramcount, const uint64 params[])
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   729
{
4884
94dd5df0d584 (svn r6821) -Codechange: For the measurement tool do not show the tooltip when the selection
Darkvater
parents: 4850
diff changeset
   730
	DeleteWindowById(WC_TOOLTIPS, 0);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   731
4884
94dd5df0d584 (svn r6821) -Codechange: For the measurement tool do not show the tooltip when the selection
Darkvater
parents: 4850
diff changeset
   732
	/* We only show measurement tooltips with patch setting on */
94dd5df0d584 (svn r6821) -Codechange: For the measurement tool do not show the tooltip when the selection
Darkvater
parents: 4850
diff changeset
   733
	if (str == STR_NULL || (paramcount != 0 && !_patches.measure_tooltip)) return;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   734
8738
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   735
	for (uint i = 0; i != paramcount; i++) SetDParam(i, params[i]);
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   736
	char buffer[512];
4912
0f51b47cb983 (svn r6884) -Codechange: Add strict bounds checking in string formatting system.
Darkvater
parents: 4909
diff changeset
   737
	GetString(buffer, str, lastof(buffer));
4834
3c6e8a547174 (svn r6758) -Feature: Add a measurement tool that will show dimensions and height
Darkvater
parents: 4719
diff changeset
   738
8738
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   739
	Dimension br = GetStringBoundingBox(buffer);
4834
3c6e8a547174 (svn r6758) -Feature: Add a measurement tool that will show dimensions and height
Darkvater
parents: 4719
diff changeset
   740
	br.width += 6; br.height += 4; // increase slightly to have some space around the box
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   741
4558
0c21ecb2b34e (svn r6405) -Codechange: When showing tooltips, properly position the tooltip, considering
Darkvater
parents: 4416
diff changeset
   742
	/* Cut tooltip length to 200 pixels max, wrap to new line if longer */
4834
3c6e8a547174 (svn r6758) -Feature: Add a measurement tool that will show dimensions and height
Darkvater
parents: 4719
diff changeset
   743
	if (br.width > 200) {
3c6e8a547174 (svn r6758) -Feature: Add a measurement tool that will show dimensions and height
Darkvater
parents: 4719
diff changeset
   744
		br.height += ((br.width - 4) / 176) * 10;
3c6e8a547174 (svn r6758) -Feature: Add a measurement tool that will show dimensions and height
Darkvater
parents: 4719
diff changeset
   745
		br.width = 200;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   746
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   747
4558
0c21ecb2b34e (svn r6405) -Codechange: When showing tooltips, properly position the tooltip, considering
Darkvater
parents: 4416
diff changeset
   748
	/* Correctly position the tooltip position, watch out for window and cursor size
0c21ecb2b34e (svn r6405) -Codechange: When showing tooltips, properly position the tooltip, considering
Darkvater
parents: 4416
diff changeset
   749
	 * Clamp value to below main toolbar and above statusbar. If tooltip would
0c21ecb2b34e (svn r6405) -Codechange: When showing tooltips, properly position the tooltip, considering
Darkvater
parents: 4416
diff changeset
   750
	 * go below window, flip it so it is shown above the cursor */
8738
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   751
	int y = Clamp(_cursor.pos.y + _cursor.size.y + _cursor.offs.y + 5, 22, _screen.height - 12);
4834
3c6e8a547174 (svn r6758) -Feature: Add a measurement tool that will show dimensions and height
Darkvater
parents: 4719
diff changeset
   752
	if (y + br.height > _screen.height - 12) y = _cursor.pos.y + _cursor.offs.y - br.height - 5;
8738
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   753
	int x = Clamp(_cursor.pos.x - (br.width >> 1), 0, _screen.width - br.width);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   754
8738
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   755
	Window *w = AllocateWindow(x, y, br.width, br.height, TooltipsWndProc, WC_TOOLTIPS, _tooltips_widgets);
4834
3c6e8a547174 (svn r6758) -Feature: Add a measurement tool that will show dimensions and height
Darkvater
parents: 4719
diff changeset
   756
3c6e8a547174 (svn r6758) -Feature: Add a measurement tool that will show dimensions and height
Darkvater
parents: 4719
diff changeset
   757
	WP(w, tooltips_d).string_id = str;
3c6e8a547174 (svn r6758) -Feature: Add a measurement tool that will show dimensions and height
Darkvater
parents: 4719
diff changeset
   758
	assert(sizeof(WP(w, tooltips_d).params[0]) == sizeof(params[0]));
3c6e8a547174 (svn r6758) -Feature: Add a measurement tool that will show dimensions and height
Darkvater
parents: 4719
diff changeset
   759
	memcpy(WP(w, tooltips_d).params, params, sizeof(WP(w, tooltips_d).params[0]) * paramcount);
3c6e8a547174 (svn r6758) -Feature: Add a measurement tool that will show dimensions and height
Darkvater
parents: 4719
diff changeset
   760
	WP(w, tooltips_d).paramcount = paramcount;
3c6e8a547174 (svn r6758) -Feature: Add a measurement tool that will show dimensions and height
Darkvater
parents: 4719
diff changeset
   761
4558
0c21ecb2b34e (svn r6405) -Codechange: When showing tooltips, properly position the tooltip, considering
Darkvater
parents: 4416
diff changeset
   762
	w->flags4 &= ~WF_WHITE_BORDER_MASK; // remove white-border from tooltip
4834
3c6e8a547174 (svn r6758) -Feature: Add a measurement tool that will show dimensions and height
Darkvater
parents: 4719
diff changeset
   763
	w->widget[0].right = br.width;
3c6e8a547174 (svn r6758) -Feature: Add a measurement tool that will show dimensions and height
Darkvater
parents: 4719
diff changeset
   764
	w->widget[0].bottom = br.height;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   765
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   766
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   767
8846
1b90782b2c4e (svn r12596) -Feature: show what cargos a station could be supplied with. Patch by Roujin.
rubidium
parents: 8831
diff changeset
   768
static int DrawStationCoverageText(const AcceptedCargo cargo,
1b90782b2c4e (svn r12596) -Feature: show what cargos a station could be supplied with. Patch by Roujin.
rubidium
parents: 8831
diff changeset
   769
	int str_x, int str_y, StationCoverageType sct, bool supplies)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   770
{
5038
12fd4db0cdb5 (svn r7080) -Codechange: Remove negative array indexes, and only add ", " when needed, when building station acceptance lists.
peter1138
parents: 5005
diff changeset
   771
	bool first = true;
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 179
diff changeset
   772
8846
1b90782b2c4e (svn r12596) -Feature: show what cargos a station could be supplied with. Patch by Roujin.
rubidium
parents: 8831
diff changeset
   773
	char *b = InlineString(_userstring, supplies ? STR_SUPPLIES : STR_000D_ACCEPTS);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   774
7241
7fd23b6f6713 (svn r10522) -Fix: the "build truck station" GUI showed that it would accept tourists when it does not, whereas the "build bus station" GUI did not show them when it did accept them.
rubidium
parents: 7138
diff changeset
   775
	for (CargoID i = 0; i < NUM_CARGO; i++) {
8041
9483d3e46b3e (svn r11601) -Codechange: more strict break conditions for _userstring, assert when it overflows anyway (eg. code change without proper check change)
smatz
parents: 8036
diff changeset
   776
		if (b >= lastof(_userstring) - (1 + 2 * 4)) break; // ',' or ' ' and two calls to Utf8Encode()
7241
7fd23b6f6713 (svn r10522) -Fix: the "build truck station" GUI showed that it would accept tourists when it does not, whereas the "build bus station" GUI did not show them when it did accept them.
rubidium
parents: 7138
diff changeset
   777
		switch (sct) {
7fd23b6f6713 (svn r10522) -Fix: the "build truck station" GUI showed that it would accept tourists when it does not, whereas the "build bus station" GUI did not show them when it did accept them.
rubidium
parents: 7138
diff changeset
   778
			case SCT_PASSENGERS_ONLY: if (!IsCargoInClass(i, CC_PASSENGERS)) continue; break;
7fd23b6f6713 (svn r10522) -Fix: the "build truck station" GUI showed that it would accept tourists when it does not, whereas the "build bus station" GUI did not show them when it did accept them.
rubidium
parents: 7138
diff changeset
   779
			case SCT_NON_PASSENGERS_ONLY: if (IsCargoInClass(i, CC_PASSENGERS)) continue; break;
7fd23b6f6713 (svn r10522) -Fix: the "build truck station" GUI showed that it would accept tourists when it does not, whereas the "build bus station" GUI did not show them when it did accept them.
rubidium
parents: 7138
diff changeset
   780
			case SCT_ALL: break;
7fd23b6f6713 (svn r10522) -Fix: the "build truck station" GUI showed that it would accept tourists when it does not, whereas the "build bus station" GUI did not show them when it did accept them.
rubidium
parents: 7138
diff changeset
   781
			default: NOT_REACHED();
7fd23b6f6713 (svn r10522) -Fix: the "build truck station" GUI showed that it would accept tourists when it does not, whereas the "build bus station" GUI did not show them when it did accept them.
rubidium
parents: 7138
diff changeset
   782
		}
8916
bd6e75b4381d (svn r12686) -Fix: MSVC signed/unsigned warning
glx
parents: 8846
diff changeset
   783
		if (cargo[i] >= (supplies ? 1U : 8U)) {
5038
12fd4db0cdb5 (svn r7080) -Codechange: Remove negative array indexes, and only add ", " when needed, when building station acceptance lists.
peter1138
parents: 5005
diff changeset
   784
			if (first) {
12fd4db0cdb5 (svn r7080) -Codechange: Remove negative array indexes, and only add ", " when needed, when building station acceptance lists.
peter1138
parents: 5005
diff changeset
   785
				first = false;
12fd4db0cdb5 (svn r7080) -Codechange: Remove negative array indexes, and only add ", " when needed, when building station acceptance lists.
peter1138
parents: 5005
diff changeset
   786
			} else {
12fd4db0cdb5 (svn r7080) -Codechange: Remove negative array indexes, and only add ", " when needed, when building station acceptance lists.
peter1138
parents: 5005
diff changeset
   787
				/* Add a comma if this is not the first item */
12fd4db0cdb5 (svn r7080) -Codechange: Remove negative array indexes, and only add ", " when needed, when building station acceptance lists.
peter1138
parents: 5005
diff changeset
   788
				*b++ = ',';
12fd4db0cdb5 (svn r7080) -Codechange: Remove negative array indexes, and only add ", " when needed, when building station acceptance lists.
peter1138
parents: 5005
diff changeset
   789
				*b++ = ' ';
12fd4db0cdb5 (svn r7080) -Codechange: Remove negative array indexes, and only add ", " when needed, when building station acceptance lists.
peter1138
parents: 5005
diff changeset
   790
			}
6091
c8827d9ae04a (svn r8826) -Codechange: Replace _cargoc's separate arrays with a regular struct array (with accessor) and implement new initialization method using cargo labels.
peter1138
parents: 5893
diff changeset
   791
			b = InlineString(b, GetCargo(i)->name);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   792
		}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   793
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   794
5038
12fd4db0cdb5 (svn r7080) -Codechange: Remove negative array indexes, and only add ", " when needed, when building station acceptance lists.
peter1138
parents: 5005
diff changeset
   795
	/* If first is still true then no cargo is accepted */
12fd4db0cdb5 (svn r7080) -Codechange: Remove negative array indexes, and only add ", " when needed, when building station acceptance lists.
peter1138
parents: 5005
diff changeset
   796
	if (first) b = InlineString(b, STR_00D0_NOTHING);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   797
5038
12fd4db0cdb5 (svn r7080) -Codechange: Remove negative array indexes, and only add ", " when needed, when building station acceptance lists.
peter1138
parents: 5005
diff changeset
   798
	*b = '\0';
8041
9483d3e46b3e (svn r11601) -Codechange: more strict break conditions for _userstring, assert when it overflows anyway (eg. code change without proper check change)
smatz
parents: 8036
diff changeset
   799
9483d3e46b3e (svn r11601) -Codechange: more strict break conditions for _userstring, assert when it overflows anyway (eg. code change without proper check change)
smatz
parents: 8036
diff changeset
   800
	/* Make sure we detect any buffer overflow */
9483d3e46b3e (svn r11601) -Codechange: more strict break conditions for _userstring, assert when it overflows anyway (eg. code change without proper check change)
smatz
parents: 8036
diff changeset
   801
	assert(b < endof(_userstring));
9483d3e46b3e (svn r11601) -Codechange: more strict break conditions for _userstring, assert when it overflows anyway (eg. code change without proper check change)
smatz
parents: 8036
diff changeset
   802
8423
0c0f0370620b (svn r11993) -Fix: Resize station/roadstop/dock/airport construction windows if cargo acceptance list is too long.
peter1138
parents: 8349
diff changeset
   803
	return DrawStringMultiLine(str_x, str_y, STR_SPEC_USERSTRING, 144);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   804
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   805
8846
1b90782b2c4e (svn r12596) -Feature: show what cargos a station could be supplied with. Patch by Roujin.
rubidium
parents: 8831
diff changeset
   806
/**
1b90782b2c4e (svn r12596) -Feature: show what cargos a station could be supplied with. Patch by Roujin.
rubidium
parents: 8831
diff changeset
   807
 * Calculates and draws the accepted or supplied cargo around the selected tile(s)
1b90782b2c4e (svn r12596) -Feature: show what cargos a station could be supplied with. Patch by Roujin.
rubidium
parents: 8831
diff changeset
   808
 * @param sx x position where the string is to be drawn
1b90782b2c4e (svn r12596) -Feature: show what cargos a station could be supplied with. Patch by Roujin.
rubidium
parents: 8831
diff changeset
   809
 * @param sy y position where the string is to be drawn
1b90782b2c4e (svn r12596) -Feature: show what cargos a station could be supplied with. Patch by Roujin.
rubidium
parents: 8831
diff changeset
   810
 * @param sct which type of cargo is to be displayed (passengers/non-passengers)
1b90782b2c4e (svn r12596) -Feature: show what cargos a station could be supplied with. Patch by Roujin.
rubidium
parents: 8831
diff changeset
   811
 * @param rad radius around selected tile(s) to be searched
1b90782b2c4e (svn r12596) -Feature: show what cargos a station could be supplied with. Patch by Roujin.
rubidium
parents: 8831
diff changeset
   812
 * @param supplies if supplied cargos should be drawn, else accepted cargos
1b90782b2c4e (svn r12596) -Feature: show what cargos a station could be supplied with. Patch by Roujin.
rubidium
parents: 8831
diff changeset
   813
 * @return Returns the y value below the string that was drawn
1b90782b2c4e (svn r12596) -Feature: show what cargos a station could be supplied with. Patch by Roujin.
rubidium
parents: 8831
diff changeset
   814
 */
1b90782b2c4e (svn r12596) -Feature: show what cargos a station could be supplied with. Patch by Roujin.
rubidium
parents: 8831
diff changeset
   815
int DrawStationCoverageAreaText(int sx, int sy, StationCoverageType sct, int rad, bool supplies)
7321
f91bdca345e8 (svn r10684) -Codechange: some more coding style related changes. Primarily moving { to a new line.
rubidium
parents: 7266
diff changeset
   816
{
2873
64296f203ac4 (svn r3421) - Revert r3412 as it didn't work.
peter1138
parents: 2753
diff changeset
   817
	TileIndex tile = TileVirtXY(_thd.pos.x, _thd.pos.y);
8846
1b90782b2c4e (svn r12596) -Feature: show what cargos a station could be supplied with. Patch by Roujin.
rubidium
parents: 8831
diff changeset
   818
	AcceptedCargo cargo;
2873
64296f203ac4 (svn r3421) - Revert r3412 as it didn't work.
peter1138
parents: 2753
diff changeset
   819
	if (tile < MapSize()) {
8846
1b90782b2c4e (svn r12596) -Feature: show what cargos a station could be supplied with. Patch by Roujin.
rubidium
parents: 8831
diff changeset
   820
		if (supplies) {
1b90782b2c4e (svn r12596) -Feature: show what cargos a station could be supplied with. Patch by Roujin.
rubidium
parents: 8831
diff changeset
   821
			GetProductionAroundTiles(cargo, tile, _thd.size.x / TILE_SIZE, _thd.size.y / TILE_SIZE , rad);
1b90782b2c4e (svn r12596) -Feature: show what cargos a station could be supplied with. Patch by Roujin.
rubidium
parents: 8831
diff changeset
   822
		} else {
1b90782b2c4e (svn r12596) -Feature: show what cargos a station could be supplied with. Patch by Roujin.
rubidium
parents: 8831
diff changeset
   823
			GetAcceptanceAroundTiles(cargo, tile, _thd.size.x / TILE_SIZE, _thd.size.y / TILE_SIZE , rad);
1b90782b2c4e (svn r12596) -Feature: show what cargos a station could be supplied with. Patch by Roujin.
rubidium
parents: 8831
diff changeset
   824
		}
1b90782b2c4e (svn r12596) -Feature: show what cargos a station could be supplied with. Patch by Roujin.
rubidium
parents: 8831
diff changeset
   825
		return sy + DrawStationCoverageText(cargo, sx, sy, sct, supplies);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   826
	}
8423
0c0f0370620b (svn r11993) -Fix: Resize station/roadstop/dock/airport construction windows if cargo acceptance list is too long.
peter1138
parents: 8349
diff changeset
   827
0c0f0370620b (svn r11993) -Fix: Resize station/roadstop/dock/airport construction windows if cargo acceptance list is too long.
peter1138
parents: 8349
diff changeset
   828
	return sy;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   829
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   830
4171
5c6e60c392c3 (svn r5609) CodeChange : Apply coding style
belugas
parents: 4133
diff changeset
   831
void CheckRedrawStationCoverage(const Window *w)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   832
{
2549
5587f9a38563 (svn r3078) Some more stuff, which piled up:
tron
parents: 2535
diff changeset
   833
	if (_thd.dirty & 1) {
5587f9a38563 (svn r3078) Some more stuff, which piled up:
tron
parents: 2535
diff changeset
   834
		_thd.dirty &= ~1;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   835
		SetWindowDirty(w);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   836
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   837
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   838
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   839
void SetVScrollCount(Window *w, int num)
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   840
{
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   841
	w->vscroll.count = num;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   842
	num -= w->vscroll.cap;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   843
	if (num < 0) num = 0;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   844
	if (num < w->vscroll.pos) w->vscroll.pos = num;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   845
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   846
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 755
diff changeset
   847
void SetVScroll2Count(Window *w, int num)
867
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 860
diff changeset
   848
{
842
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 755
diff changeset
   849
	w->vscroll2.count = num;
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 755
diff changeset
   850
	num -= w->vscroll2.cap;
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 755
diff changeset
   851
	if (num < 0) num = 0;
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 755
diff changeset
   852
	if (num < w->vscroll2.pos) w->vscroll2.pos = num;
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 755
diff changeset
   853
}
efc3546bc313 (svn r1323) Adding autoreplace feature
bjarni
parents: 755
diff changeset
   854
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   855
void SetHScrollCount(Window *w, int num)
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   856
{
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   857
	w->hscroll.count = num;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   858
	num -= w->hscroll.cap;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   859
	if (num < 0) num = 0;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   860
	if (num < w->hscroll.pos) w->hscroll.pos = num;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   861
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   862
5108
aeaef6fe53b7 (svn r7182) -Feature: Merge utf8 branch. This brings us support for Unicode/UTF-8 and the option for fonts rendered by FreeType. Language changes to come.
peter1138
parents: 5079
diff changeset
   863
/* Delete a character at the caret position in a text buf.
aeaef6fe53b7 (svn r7182) -Feature: Merge utf8 branch. This brings us support for Unicode/UTF-8 and the option for fonts rendered by FreeType. Language changes to come.
peter1138
parents: 5079
diff changeset
   864
 * If backspace is set, delete the character before the caret,
aeaef6fe53b7 (svn r7182) -Feature: Merge utf8 branch. This brings us support for Unicode/UTF-8 and the option for fonts rendered by FreeType. Language changes to come.
peter1138
parents: 5079
diff changeset
   865
 * else delete the character after it. */
aeaef6fe53b7 (svn r7182) -Feature: Merge utf8 branch. This brings us support for Unicode/UTF-8 and the option for fonts rendered by FreeType. Language changes to come.
peter1138
parents: 5079
diff changeset
   866
static void DelChar(Textbuf *tb, bool backspace)
911
7ccc33888a33 (svn r1398) -Feature: CTRL+V (Paste) now works on all editboxes. This includes 'Add Server', chat, etc. Feature is Windows only.
darkvater
parents: 910
diff changeset
   867
{
5108
aeaef6fe53b7 (svn r7182) -Feature: Merge utf8 branch. This brings us support for Unicode/UTF-8 and the option for fonts rendered by FreeType. Language changes to come.
peter1138
parents: 5079
diff changeset
   868
	WChar c;
6214
1f361897ed7f (svn r9011) -Codechange (r9003): Rework Utf8PrevChar so that it returns a pointer to the previous UTF8 character's first byte instead of a byte-length offset
Darkvater
parents: 6211
diff changeset
   869
	char *s = tb->buf + tb->caretpos;
5108
aeaef6fe53b7 (svn r7182) -Feature: Merge utf8 branch. This brings us support for Unicode/UTF-8 and the option for fonts rendered by FreeType. Language changes to come.
peter1138
parents: 5079
diff changeset
   870
6214
1f361897ed7f (svn r9011) -Codechange (r9003): Rework Utf8PrevChar so that it returns a pointer to the previous UTF8 character's first byte instead of a byte-length offset
Darkvater
parents: 6211
diff changeset
   871
	if (backspace) s = Utf8PrevChar(s);
5108
aeaef6fe53b7 (svn r7182) -Feature: Merge utf8 branch. This brings us support for Unicode/UTF-8 and the option for fonts rendered by FreeType. Language changes to come.
peter1138
parents: 5079
diff changeset
   872
8738
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   873
	size_t len = Utf8Decode(&c, s);
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   874
	uint width = GetCharacterWidth(FS_NORMAL, c);
5108
aeaef6fe53b7 (svn r7182) -Feature: Merge utf8 branch. This brings us support for Unicode/UTF-8 and the option for fonts rendered by FreeType. Language changes to come.
peter1138
parents: 5079
diff changeset
   875
aeaef6fe53b7 (svn r7182) -Feature: Merge utf8 branch. This brings us support for Unicode/UTF-8 and the option for fonts rendered by FreeType. Language changes to come.
peter1138
parents: 5079
diff changeset
   876
	tb->width  -= width;
6214
1f361897ed7f (svn r9011) -Codechange (r9003): Rework Utf8PrevChar so that it returns a pointer to the previous UTF8 character's first byte instead of a byte-length offset
Darkvater
parents: 6211
diff changeset
   877
	if (backspace) {
1f361897ed7f (svn r9011) -Codechange (r9003): Rework Utf8PrevChar so that it returns a pointer to the previous UTF8 character's first byte instead of a byte-length offset
Darkvater
parents: 6211
diff changeset
   878
		tb->caretpos   -= len;
1f361897ed7f (svn r9011) -Codechange (r9003): Rework Utf8PrevChar so that it returns a pointer to the previous UTF8 character's first byte instead of a byte-length offset
Darkvater
parents: 6211
diff changeset
   879
		tb->caretxoffs -= width;
1f361897ed7f (svn r9011) -Codechange (r9003): Rework Utf8PrevChar so that it returns a pointer to the previous UTF8 character's first byte instead of a byte-length offset
Darkvater
parents: 6211
diff changeset
   880
	}
5108
aeaef6fe53b7 (svn r7182) -Feature: Merge utf8 branch. This brings us support for Unicode/UTF-8 and the option for fonts rendered by FreeType. Language changes to come.
peter1138
parents: 5079
diff changeset
   881
aeaef6fe53b7 (svn r7182) -Feature: Merge utf8 branch. This brings us support for Unicode/UTF-8 and the option for fonts rendered by FreeType. Language changes to come.
peter1138
parents: 5079
diff changeset
   882
	/* Move the remaining characters over the marker */
6214
1f361897ed7f (svn r9011) -Codechange (r9003): Rework Utf8PrevChar so that it returns a pointer to the previous UTF8 character's first byte instead of a byte-length offset
Darkvater
parents: 6211
diff changeset
   883
	memmove(s, s + len, tb->length - (s - tb->buf) - len + 1);
5108
aeaef6fe53b7 (svn r7182) -Feature: Merge utf8 branch. This brings us support for Unicode/UTF-8 and the option for fonts rendered by FreeType. Language changes to come.
peter1138
parents: 5079
diff changeset
   884
	tb->length -= len;
1390
e7cdf3ce0fb6 (svn r1894) - Codechange: cleaned up the console a bit, wholly unified handling of text with that of editboxes
Darkvater
parents: 1386
diff changeset
   885
}
911
7ccc33888a33 (svn r1398) -Feature: CTRL+V (Paste) now works on all editboxes. This includes 'Add Server', chat, etc. Feature is Windows only.
darkvater
parents: 910
diff changeset
   886
1390
e7cdf3ce0fb6 (svn r1894) - Codechange: cleaned up the console a bit, wholly unified handling of text with that of editboxes
Darkvater
parents: 1386
diff changeset
   887
/**
e7cdf3ce0fb6 (svn r1894) - Codechange: cleaned up the console a bit, wholly unified handling of text with that of editboxes
Darkvater
parents: 1386
diff changeset
   888
 * Delete a character from a textbuffer, either with 'Delete' or 'Backspace'
e7cdf3ce0fb6 (svn r1894) - Codechange: cleaned up the console a bit, wholly unified handling of text with that of editboxes
Darkvater
parents: 1386
diff changeset
   889
 * The character is delete from the position the caret is at
6481
85ad87daf4b0 (svn r9662) -Documentation: Doxygen corrections and @file omissions
belugas
parents: 6453
diff changeset
   890
 * @param tb Textbuf type to be changed
85ad87daf4b0 (svn r9662) -Documentation: Doxygen corrections and @file omissions
belugas
parents: 6453
diff changeset
   891
 * @param delmode Type of deletion, either WKC_BACKSPACE or WKC_DELETE
7372
6fac48ff7c4d (svn r10736) -Fix: Correct all mispellings of 'successful'.
peter1138
parents: 7346
diff changeset
   892
 * @return Return true on successful change of Textbuf, or false otherwise
1390
e7cdf3ce0fb6 (svn r1894) - Codechange: cleaned up the console a bit, wholly unified handling of text with that of editboxes
Darkvater
parents: 1386
diff changeset
   893
 */
e7cdf3ce0fb6 (svn r1894) - Codechange: cleaned up the console a bit, wholly unified handling of text with that of editboxes
Darkvater
parents: 1386
diff changeset
   894
bool DeleteTextBufferChar(Textbuf *tb, int delmode)
e7cdf3ce0fb6 (svn r1894) - Codechange: cleaned up the console a bit, wholly unified handling of text with that of editboxes
Darkvater
parents: 1386
diff changeset
   895
{
e7cdf3ce0fb6 (svn r1894) - Codechange: cleaned up the console a bit, wholly unified handling of text with that of editboxes
Darkvater
parents: 1386
diff changeset
   896
	if (delmode == WKC_BACKSPACE && tb->caretpos != 0) {
5108
aeaef6fe53b7 (svn r7182) -Feature: Merge utf8 branch. This brings us support for Unicode/UTF-8 and the option for fonts rendered by FreeType. Language changes to come.
peter1138
parents: 5079
diff changeset
   897
		DelChar(tb, true);
1390
e7cdf3ce0fb6 (svn r1894) - Codechange: cleaned up the console a bit, wholly unified handling of text with that of editboxes
Darkvater
parents: 1386
diff changeset
   898
		return true;
e7cdf3ce0fb6 (svn r1894) - Codechange: cleaned up the console a bit, wholly unified handling of text with that of editboxes
Darkvater
parents: 1386
diff changeset
   899
	} else if (delmode == WKC_DELETE && tb->caretpos < tb->length) {
5108
aeaef6fe53b7 (svn r7182) -Feature: Merge utf8 branch. This brings us support for Unicode/UTF-8 and the option for fonts rendered by FreeType. Language changes to come.
peter1138
parents: 5079
diff changeset
   900
		DelChar(tb, false);
1390
e7cdf3ce0fb6 (svn r1894) - Codechange: cleaned up the console a bit, wholly unified handling of text with that of editboxes
Darkvater
parents: 1386
diff changeset
   901
		return true;
e7cdf3ce0fb6 (svn r1894) - Codechange: cleaned up the console a bit, wholly unified handling of text with that of editboxes
Darkvater
parents: 1386
diff changeset
   902
	}
e7cdf3ce0fb6 (svn r1894) - Codechange: cleaned up the console a bit, wholly unified handling of text with that of editboxes
Darkvater
parents: 1386
diff changeset
   903
e7cdf3ce0fb6 (svn r1894) - Codechange: cleaned up the console a bit, wholly unified handling of text with that of editboxes
Darkvater
parents: 1386
diff changeset
   904
	return false;
e7cdf3ce0fb6 (svn r1894) - Codechange: cleaned up the console a bit, wholly unified handling of text with that of editboxes
Darkvater
parents: 1386
diff changeset
   905
}
e7cdf3ce0fb6 (svn r1894) - Codechange: cleaned up the console a bit, wholly unified handling of text with that of editboxes
Darkvater
parents: 1386
diff changeset
   906
e7cdf3ce0fb6 (svn r1894) - Codechange: cleaned up the console a bit, wholly unified handling of text with that of editboxes
Darkvater
parents: 1386
diff changeset
   907
/**
1879
b037d07154c6 (svn r2385) - Feature: shortcut CTRL + U that clears the commandline of the current input-box. As requested by Tron.
Darkvater
parents: 1860
diff changeset
   908
 * Delete every character in the textbuffer
6481
85ad87daf4b0 (svn r9662) -Documentation: Doxygen corrections and @file omissions
belugas
parents: 6453
diff changeset
   909
 * @param tb Textbuf buffer to be emptied
1879
b037d07154c6 (svn r2385) - Feature: shortcut CTRL + U that clears the commandline of the current input-box. As requested by Tron.
Darkvater
parents: 1860
diff changeset
   910
 */
b037d07154c6 (svn r2385) - Feature: shortcut CTRL + U that clears the commandline of the current input-box. As requested by Tron.
Darkvater
parents: 1860
diff changeset
   911
void DeleteTextBufferAll(Textbuf *tb)
b037d07154c6 (svn r2385) - Feature: shortcut CTRL + U that clears the commandline of the current input-box. As requested by Tron.
Darkvater
parents: 1860
diff changeset
   912
{
b037d07154c6 (svn r2385) - Feature: shortcut CTRL + U that clears the commandline of the current input-box. As requested by Tron.
Darkvater
parents: 1860
diff changeset
   913
	memset(tb->buf, 0, tb->maxlength);
b037d07154c6 (svn r2385) - Feature: shortcut CTRL + U that clears the commandline of the current input-box. As requested by Tron.
Darkvater
parents: 1860
diff changeset
   914
	tb->length = tb->width = 0;
b037d07154c6 (svn r2385) - Feature: shortcut CTRL + U that clears the commandline of the current input-box. As requested by Tron.
Darkvater
parents: 1860
diff changeset
   915
	tb->caretpos = tb->caretxoffs = 0;
b037d07154c6 (svn r2385) - Feature: shortcut CTRL + U that clears the commandline of the current input-box. As requested by Tron.
Darkvater
parents: 1860
diff changeset
   916
}
b037d07154c6 (svn r2385) - Feature: shortcut CTRL + U that clears the commandline of the current input-box. As requested by Tron.
Darkvater
parents: 1860
diff changeset
   917
b037d07154c6 (svn r2385) - Feature: shortcut CTRL + U that clears the commandline of the current input-box. As requested by Tron.
Darkvater
parents: 1860
diff changeset
   918
/**
3459
c6096d4423aa (svn r4302) - Fix: s/maxlength/maxwidth of course, the buffer size is always set. Comment-change only
Darkvater
parents: 3458
diff changeset
   919
 * Insert a character to a textbuffer. If maxwidth of the Textbuf is zero,
c6096d4423aa (svn r4302) - Fix: s/maxlength/maxwidth of course, the buffer size is always set. Comment-change only
Darkvater
parents: 3458
diff changeset
   920
 * we don't care about the visual-length but only about the physical
3458
26360c9a3743 (svn r4301) - Fix: the maxlength parameter of Textbuf is supposed to be the size of the buffer (so length of string + '\0'), but in the code it was a mix of both. It didn't cause any problems though, only an occasionaly one-less character than allowed. (thanks Tron for noticing)
Darkvater
parents: 3421
diff changeset
   921
 * length of the string
6481
85ad87daf4b0 (svn r9662) -Documentation: Doxygen corrections and @file omissions
belugas
parents: 6453
diff changeset
   922
 * @param tb Textbuf type to be changed
1390
e7cdf3ce0fb6 (svn r1894) - Codechange: cleaned up the console a bit, wholly unified handling of text with that of editboxes
Darkvater
parents: 1386
diff changeset
   923
 * @param key Character to be inserted
7372
6fac48ff7c4d (svn r10736) -Fix: Correct all mispellings of 'successful'.
peter1138
parents: 7346
diff changeset
   924
 * @return Return true on successful change of Textbuf, or false otherwise
1390
e7cdf3ce0fb6 (svn r1894) - Codechange: cleaned up the console a bit, wholly unified handling of text with that of editboxes
Darkvater
parents: 1386
diff changeset
   925
 */
5108
aeaef6fe53b7 (svn r7182) -Feature: Merge utf8 branch. This brings us support for Unicode/UTF-8 and the option for fonts rendered by FreeType. Language changes to come.
peter1138
parents: 5079
diff changeset
   926
bool InsertTextBufferChar(Textbuf *tb, WChar key)
1390
e7cdf3ce0fb6 (svn r1894) - Codechange: cleaned up the console a bit, wholly unified handling of text with that of editboxes
Darkvater
parents: 1386
diff changeset
   927
{
3798
b1f5290b36b1 (svn r4802) - Codechange: replace _stringwidth_base and associated magic numbers with a FontSize enum, using the numbers (which are SpriteIDs) in only the places needed.
peter1138
parents: 3719
diff changeset
   928
	const byte charwidth = GetCharacterWidth(FS_NORMAL, key);
5108
aeaef6fe53b7 (svn r7182) -Feature: Merge utf8 branch. This brings us support for Unicode/UTF-8 and the option for fonts rendered by FreeType. Language changes to come.
peter1138
parents: 5079
diff changeset
   929
	size_t len = Utf8CharLen(key);
aeaef6fe53b7 (svn r7182) -Feature: Merge utf8 branch. This brings us support for Unicode/UTF-8 and the option for fonts rendered by FreeType. Language changes to come.
peter1138
parents: 5079
diff changeset
   930
	if (tb->length < (tb->maxlength - len) && (tb->maxwidth == 0 || tb->width + charwidth <= tb->maxwidth)) {
aeaef6fe53b7 (svn r7182) -Feature: Merge utf8 branch. This brings us support for Unicode/UTF-8 and the option for fonts rendered by FreeType. Language changes to come.
peter1138
parents: 5079
diff changeset
   931
		memmove(tb->buf + tb->caretpos + len, tb->buf + tb->caretpos, tb->length - tb->caretpos + 1);
aeaef6fe53b7 (svn r7182) -Feature: Merge utf8 branch. This brings us support for Unicode/UTF-8 and the option for fonts rendered by FreeType. Language changes to come.
peter1138
parents: 5079
diff changeset
   932
		Utf8Encode(tb->buf + tb->caretpos, key);
aeaef6fe53b7 (svn r7182) -Feature: Merge utf8 branch. This brings us support for Unicode/UTF-8 and the option for fonts rendered by FreeType. Language changes to come.
peter1138
parents: 5079
diff changeset
   933
		tb->length += len;
aeaef6fe53b7 (svn r7182) -Feature: Merge utf8 branch. This brings us support for Unicode/UTF-8 and the option for fonts rendered by FreeType. Language changes to come.
peter1138
parents: 5079
diff changeset
   934
		tb->width  += charwidth;
1390
e7cdf3ce0fb6 (svn r1894) - Codechange: cleaned up the console a bit, wholly unified handling of text with that of editboxes
Darkvater
parents: 1386
diff changeset
   935
5108
aeaef6fe53b7 (svn r7182) -Feature: Merge utf8 branch. This brings us support for Unicode/UTF-8 and the option for fonts rendered by FreeType. Language changes to come.
peter1138
parents: 5079
diff changeset
   936
		tb->caretpos   += len;
1390
e7cdf3ce0fb6 (svn r1894) - Codechange: cleaned up the console a bit, wholly unified handling of text with that of editboxes
Darkvater
parents: 1386
diff changeset
   937
		tb->caretxoffs += charwidth;
e7cdf3ce0fb6 (svn r1894) - Codechange: cleaned up the console a bit, wholly unified handling of text with that of editboxes
Darkvater
parents: 1386
diff changeset
   938
		return true;
e7cdf3ce0fb6 (svn r1894) - Codechange: cleaned up the console a bit, wholly unified handling of text with that of editboxes
Darkvater
parents: 1386
diff changeset
   939
	}
e7cdf3ce0fb6 (svn r1894) - Codechange: cleaned up the console a bit, wholly unified handling of text with that of editboxes
Darkvater
parents: 1386
diff changeset
   940
	return false;
e7cdf3ce0fb6 (svn r1894) - Codechange: cleaned up the console a bit, wholly unified handling of text with that of editboxes
Darkvater
parents: 1386
diff changeset
   941
}
e7cdf3ce0fb6 (svn r1894) - Codechange: cleaned up the console a bit, wholly unified handling of text with that of editboxes
Darkvater
parents: 1386
diff changeset
   942
e7cdf3ce0fb6 (svn r1894) - Codechange: cleaned up the console a bit, wholly unified handling of text with that of editboxes
Darkvater
parents: 1386
diff changeset
   943
/**
e7cdf3ce0fb6 (svn r1894) - Codechange: cleaned up the console a bit, wholly unified handling of text with that of editboxes
Darkvater
parents: 1386
diff changeset
   944
 * Handle text navigation with arrow keys left/right.
e7cdf3ce0fb6 (svn r1894) - Codechange: cleaned up the console a bit, wholly unified handling of text with that of editboxes
Darkvater
parents: 1386
diff changeset
   945
 * This defines where the caret will blink and the next characer interaction will occur
6481
85ad87daf4b0 (svn r9662) -Documentation: Doxygen corrections and @file omissions
belugas
parents: 6453
diff changeset
   946
 * @param tb Textbuf type where navigation occurs
85ad87daf4b0 (svn r9662) -Documentation: Doxygen corrections and @file omissions
belugas
parents: 6453
diff changeset
   947
 * @param navmode Direction in which navigation occurs WKC_LEFT, WKC_RIGHT, WKC_END, WKC_HOME
7372
6fac48ff7c4d (svn r10736) -Fix: Correct all mispellings of 'successful'.
peter1138
parents: 7346
diff changeset
   948
 * @return Return true on successful change of Textbuf, or false otherwise
1390
e7cdf3ce0fb6 (svn r1894) - Codechange: cleaned up the console a bit, wholly unified handling of text with that of editboxes
Darkvater
parents: 1386
diff changeset
   949
 */
e7cdf3ce0fb6 (svn r1894) - Codechange: cleaned up the console a bit, wholly unified handling of text with that of editboxes
Darkvater
parents: 1386
diff changeset
   950
bool MoveTextBufferPos(Textbuf *tb, int navmode)
e7cdf3ce0fb6 (svn r1894) - Codechange: cleaned up the console a bit, wholly unified handling of text with that of editboxes
Darkvater
parents: 1386
diff changeset
   951
{
e7cdf3ce0fb6 (svn r1894) - Codechange: cleaned up the console a bit, wholly unified handling of text with that of editboxes
Darkvater
parents: 1386
diff changeset
   952
	switch (navmode) {
8738
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   953
		case WKC_LEFT:
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   954
			if (tb->caretpos != 0) {
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   955
				WChar c;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   956
				const char *s = Utf8PrevChar(tb->buf + tb->caretpos);
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   957
				Utf8Decode(&c, s);
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   958
				tb->caretpos    = s - tb->buf; // -= (tb->buf + tb->caretpos - s)
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   959
				tb->caretxoffs -= GetCharacterWidth(FS_NORMAL, c);
5108
aeaef6fe53b7 (svn r7182) -Feature: Merge utf8 branch. This brings us support for Unicode/UTF-8 and the option for fonts rendered by FreeType. Language changes to come.
peter1138
parents: 5079
diff changeset
   960
8738
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   961
				return true;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   962
			}
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   963
			break;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   964
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   965
		case WKC_RIGHT:
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   966
			if (tb->caretpos < tb->length) {
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   967
				WChar c;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   968
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   969
				tb->caretpos   += Utf8Decode(&c, tb->buf + tb->caretpos);
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   970
				tb->caretxoffs += GetCharacterWidth(FS_NORMAL, c);
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   971
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   972
				return true;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   973
			}
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   974
			break;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   975
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   976
		case WKC_HOME:
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   977
			tb->caretpos = 0;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   978
			tb->caretxoffs = 0;
1390
e7cdf3ce0fb6 (svn r1894) - Codechange: cleaned up the console a bit, wholly unified handling of text with that of editboxes
Darkvater
parents: 1386
diff changeset
   979
			return true;
5108
aeaef6fe53b7 (svn r7182) -Feature: Merge utf8 branch. This brings us support for Unicode/UTF-8 and the option for fonts rendered by FreeType. Language changes to come.
peter1138
parents: 5079
diff changeset
   980
8738
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   981
		case WKC_END:
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   982
			tb->caretpos = tb->length;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
   983
			tb->caretxoffs = tb->width;
1390
e7cdf3ce0fb6 (svn r1894) - Codechange: cleaned up the console a bit, wholly unified handling of text with that of editboxes
Darkvater
parents: 1386
diff changeset
   984
			return true;
8819
e608a2ebe2b1 (svn r12565) -Cleanup: variable scope in misc\*.cpp
smatz
parents: 8809
diff changeset
   985
e608a2ebe2b1 (svn r12565) -Cleanup: variable scope in misc\*.cpp
smatz
parents: 8809
diff changeset
   986
		default:
e608a2ebe2b1 (svn r12565) -Cleanup: variable scope in misc\*.cpp
smatz
parents: 8809
diff changeset
   987
			break;
1390
e7cdf3ce0fb6 (svn r1894) - Codechange: cleaned up the console a bit, wholly unified handling of text with that of editboxes
Darkvater
parents: 1386
diff changeset
   988
	}
e7cdf3ce0fb6 (svn r1894) - Codechange: cleaned up the console a bit, wholly unified handling of text with that of editboxes
Darkvater
parents: 1386
diff changeset
   989
e7cdf3ce0fb6 (svn r1894) - Codechange: cleaned up the console a bit, wholly unified handling of text with that of editboxes
Darkvater
parents: 1386
diff changeset
   990
	return false;
e7cdf3ce0fb6 (svn r1894) - Codechange: cleaned up the console a bit, wholly unified handling of text with that of editboxes
Darkvater
parents: 1386
diff changeset
   991
}
e7cdf3ce0fb6 (svn r1894) - Codechange: cleaned up the console a bit, wholly unified handling of text with that of editboxes
Darkvater
parents: 1386
diff changeset
   992
e7cdf3ce0fb6 (svn r1894) - Codechange: cleaned up the console a bit, wholly unified handling of text with that of editboxes
Darkvater
parents: 1386
diff changeset
   993
/**
4948
22ff05c1a3b1 (svn r6937) -Codechange: Add an InitializeTextBuffer() function that handles setting up the
Darkvater
parents: 4939
diff changeset
   994
 * Initialize the textbuffer by supplying it the buffer to write into
22ff05c1a3b1 (svn r6937) -Codechange: Add an InitializeTextBuffer() function that handles setting up the
Darkvater
parents: 4939
diff changeset
   995
 * and the maximum length of this buffer
6481
85ad87daf4b0 (svn r9662) -Documentation: Doxygen corrections and @file omissions
belugas
parents: 6453
diff changeset
   996
 * @param tb Textbuf type which is getting initialized
4948
22ff05c1a3b1 (svn r6937) -Codechange: Add an InitializeTextBuffer() function that handles setting up the
Darkvater
parents: 4939
diff changeset
   997
 * @param buf the buffer that will be holding the data for input
22ff05c1a3b1 (svn r6937) -Codechange: Add an InitializeTextBuffer() function that handles setting up the
Darkvater
parents: 4939
diff changeset
   998
 * @param maxlength maximum length in characters of this buffer
22ff05c1a3b1 (svn r6937) -Codechange: Add an InitializeTextBuffer() function that handles setting up the
Darkvater
parents: 4939
diff changeset
   999
 * @param maxwidth maximum length in pixels of this buffer. If reached, buffer
4958
5bf9f412940a (svn r6957) -Cleanup: comments, coding style
Darkvater
parents: 4955
diff changeset
  1000
 * cannot grow, even if maxlength would allow because there is space. A length
5bf9f412940a (svn r6957) -Cleanup: comments, coding style
Darkvater
parents: 4955
diff changeset
  1001
 * of zero '0' means the buffer is only restricted by maxlength */
4948
22ff05c1a3b1 (svn r6937) -Codechange: Add an InitializeTextBuffer() function that handles setting up the
Darkvater
parents: 4939
diff changeset
  1002
void InitializeTextBuffer(Textbuf *tb, const char *buf, uint16 maxlength, uint16 maxwidth)
22ff05c1a3b1 (svn r6937) -Codechange: Add an InitializeTextBuffer() function that handles setting up the
Darkvater
parents: 4939
diff changeset
  1003
{
22ff05c1a3b1 (svn r6937) -Codechange: Add an InitializeTextBuffer() function that handles setting up the
Darkvater
parents: 4939
diff changeset
  1004
	tb->buf = (char*)buf;
22ff05c1a3b1 (svn r6937) -Codechange: Add an InitializeTextBuffer() function that handles setting up the
Darkvater
parents: 4939
diff changeset
  1005
	tb->maxlength = maxlength;
22ff05c1a3b1 (svn r6937) -Codechange: Add an InitializeTextBuffer() function that handles setting up the
Darkvater
parents: 4939
diff changeset
  1006
	tb->maxwidth  = maxwidth;
22ff05c1a3b1 (svn r6937) -Codechange: Add an InitializeTextBuffer() function that handles setting up the
Darkvater
parents: 4939
diff changeset
  1007
	tb->caret = true;
22ff05c1a3b1 (svn r6937) -Codechange: Add an InitializeTextBuffer() function that handles setting up the
Darkvater
parents: 4939
diff changeset
  1008
	UpdateTextBufferSize(tb);
22ff05c1a3b1 (svn r6937) -Codechange: Add an InitializeTextBuffer() function that handles setting up the
Darkvater
parents: 4939
diff changeset
  1009
}
22ff05c1a3b1 (svn r6937) -Codechange: Add an InitializeTextBuffer() function that handles setting up the
Darkvater
parents: 4939
diff changeset
  1010
22ff05c1a3b1 (svn r6937) -Codechange: Add an InitializeTextBuffer() function that handles setting up the
Darkvater
parents: 4939
diff changeset
  1011
/**
6481
85ad87daf4b0 (svn r9662) -Documentation: Doxygen corrections and @file omissions
belugas
parents: 6453
diff changeset
  1012
 * Update Textbuf type with its actual physical character and screenlength
1390
e7cdf3ce0fb6 (svn r1894) - Codechange: cleaned up the console a bit, wholly unified handling of text with that of editboxes
Darkvater
parents: 1386
diff changeset
  1013
 * Get the count of characters in the string as well as the width in pixels.
e7cdf3ce0fb6 (svn r1894) - Codechange: cleaned up the console a bit, wholly unified handling of text with that of editboxes
Darkvater
parents: 1386
diff changeset
  1014
 * Useful when copying in a larger amount of text at once
6481
85ad87daf4b0 (svn r9662) -Documentation: Doxygen corrections and @file omissions
belugas
parents: 6453
diff changeset
  1015
 * @param tb Textbuf type which length is calculated
1390
e7cdf3ce0fb6 (svn r1894) - Codechange: cleaned up the console a bit, wholly unified handling of text with that of editboxes
Darkvater
parents: 1386
diff changeset
  1016
 */
e7cdf3ce0fb6 (svn r1894) - Codechange: cleaned up the console a bit, wholly unified handling of text with that of editboxes
Darkvater
parents: 1386
diff changeset
  1017
void UpdateTextBufferSize(Textbuf *tb)
e7cdf3ce0fb6 (svn r1894) - Codechange: cleaned up the console a bit, wholly unified handling of text with that of editboxes
Darkvater
parents: 1386
diff changeset
  1018
{
5108
aeaef6fe53b7 (svn r7182) -Feature: Merge utf8 branch. This brings us support for Unicode/UTF-8 and the option for fonts rendered by FreeType. Language changes to come.
peter1138
parents: 5079
diff changeset
  1019
	const char *buf = tb->buf;
aeaef6fe53b7 (svn r7182) -Feature: Merge utf8 branch. This brings us support for Unicode/UTF-8 and the option for fonts rendered by FreeType. Language changes to come.
peter1138
parents: 5079
diff changeset
  1020
	WChar c = Utf8Consume(&buf);
2630
7206058a7e82 (svn r3172) static, const
tron
parents: 2559
diff changeset
  1021
1390
e7cdf3ce0fb6 (svn r1894) - Codechange: cleaned up the console a bit, wholly unified handling of text with that of editboxes
Darkvater
parents: 1386
diff changeset
  1022
	tb->width = 0;
5447
4bdf874190e8 (svn r7700) -Fix (r7182): the caret 'randomly' jumped back and forth when getting a new randomised seed in the Generation World GUI.
rubidium
parents: 5431
diff changeset
  1023
	tb->length = 0;
1390
e7cdf3ce0fb6 (svn r1894) - Codechange: cleaned up the console a bit, wholly unified handling of text with that of editboxes
Darkvater
parents: 1386
diff changeset
  1024
5108
aeaef6fe53b7 (svn r7182) -Feature: Merge utf8 branch. This brings us support for Unicode/UTF-8 and the option for fonts rendered by FreeType. Language changes to come.
peter1138
parents: 5079
diff changeset
  1025
	for (; c != '\0' && tb->length < (tb->maxlength - 1); c = Utf8Consume(&buf)) {
aeaef6fe53b7 (svn r7182) -Feature: Merge utf8 branch. This brings us support for Unicode/UTF-8 and the option for fonts rendered by FreeType. Language changes to come.
peter1138
parents: 5079
diff changeset
  1026
		tb->width += GetCharacterWidth(FS_NORMAL, c);
5447
4bdf874190e8 (svn r7700) -Fix (r7182): the caret 'randomly' jumped back and forth when getting a new randomised seed in the Generation World GUI.
rubidium
parents: 5431
diff changeset
  1027
		tb->length += Utf8CharLen(c);
1390
e7cdf3ce0fb6 (svn r1894) - Codechange: cleaned up the console a bit, wholly unified handling of text with that of editboxes
Darkvater
parents: 1386
diff changeset
  1028
	}
e7cdf3ce0fb6 (svn r1894) - Codechange: cleaned up the console a bit, wholly unified handling of text with that of editboxes
Darkvater
parents: 1386
diff changeset
  1029
e7cdf3ce0fb6 (svn r1894) - Codechange: cleaned up the console a bit, wholly unified handling of text with that of editboxes
Darkvater
parents: 1386
diff changeset
  1030
	tb->caretpos = tb->length;
e7cdf3ce0fb6 (svn r1894) - Codechange: cleaned up the console a bit, wholly unified handling of text with that of editboxes
Darkvater
parents: 1386
diff changeset
  1031
	tb->caretxoffs = tb->width;
911
7ccc33888a33 (svn r1398) -Feature: CTRL+V (Paste) now works on all editboxes. This includes 'Add Server', chat, etc. Feature is Windows only.
darkvater
parents: 910
diff changeset
  1032
}
7ccc33888a33 (svn r1398) -Feature: CTRL+V (Paste) now works on all editboxes. This includes 'Add Server', chat, etc. Feature is Windows only.
darkvater
parents: 910
diff changeset
  1033
4909
955f318a24cd (svn r6879) -Codechange: Remove the superflouos argument CharsetFilter parameter from HandleEditBoxKey
Darkvater
parents: 4884
diff changeset
  1034
int HandleEditBoxKey(Window *w, querystr_d *string, int wid, WindowEvent *e)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1035
{
4634
07699ac2bf37 (svn r6499) -Codechange: Finally, got "byte event" outside of the union WindowEvent, which is now a struct
belugas
parents: 4609
diff changeset
  1036
	e->we.keypress.cont = false;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1037
4634
07699ac2bf37 (svn r6499) -Codechange: Finally, got "byte event" outside of the union WindowEvent, which is now a struct
belugas
parents: 4609
diff changeset
  1038
	switch (e->we.keypress.keycode) {
8738
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1039
		case WKC_ESC: return 2;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1040
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1041
		case WKC_RETURN: case WKC_NUM_ENTER: return 1;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1042
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1043
		case (WKC_CTRL | 'V'):
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1044
			if (InsertTextBufferClipboard(&string->text)) w->InvalidateWidget(wid);
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1045
			break;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1046
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1047
		case (WKC_CTRL | 'U'):
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1048
			DeleteTextBufferAll(&string->text);
8028
e578ea22f371 (svn r11588) -Codechange: use the new member introduced in r11551
glx
parents: 8019
diff changeset
  1049
			w->InvalidateWidget(wid);
8738
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1050
			break;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1051
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1052
		case WKC_BACKSPACE: case WKC_DELETE:
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1053
			if (DeleteTextBufferChar(&string->text, e->we.keypress.keycode)) w->InvalidateWidget(wid);
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1054
			break;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1055
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1056
		case WKC_LEFT: case WKC_RIGHT: case WKC_END: case WKC_HOME:
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1057
			if (MoveTextBufferPos(&string->text, e->we.keypress.keycode)) w->InvalidateWidget(wid);
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1058
			break;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1059
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1060
		default:
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1061
			if (IsValidChar(e->we.keypress.key, string->afilter)) {
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1062
				if (InsertTextBufferChar(&string->text, e->we.keypress.key)) w->InvalidateWidget(wid);
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1063
			} else { // key wasn't caught. Continue only if standard entry specified
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1064
				e->we.keypress.cont = (string->afilter == CS_ALPHANUMERAL);
5108
aeaef6fe53b7 (svn r7182) -Feature: Merge utf8 branch. This brings us support for Unicode/UTF-8 and the option for fonts rendered by FreeType. Language changes to come.
peter1138
parents: 5079
diff changeset
  1065
			}
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1066
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1067
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1068
	return 0;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1069
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1070
1390
e7cdf3ce0fb6 (svn r1894) - Codechange: cleaned up the console a bit, wholly unified handling of text with that of editboxes
Darkvater
parents: 1386
diff changeset
  1071
bool HandleCaret(Textbuf *tb)
e7cdf3ce0fb6 (svn r1894) - Codechange: cleaned up the console a bit, wholly unified handling of text with that of editboxes
Darkvater
parents: 1386
diff changeset
  1072
{
e7cdf3ce0fb6 (svn r1894) - Codechange: cleaned up the console a bit, wholly unified handling of text with that of editboxes
Darkvater
parents: 1386
diff changeset
  1073
	/* caret changed? */
e7cdf3ce0fb6 (svn r1894) - Codechange: cleaned up the console a bit, wholly unified handling of text with that of editboxes
Darkvater
parents: 1386
diff changeset
  1074
	bool b = !!(_caret_timer & 0x20);
e7cdf3ce0fb6 (svn r1894) - Codechange: cleaned up the console a bit, wholly unified handling of text with that of editboxes
Darkvater
parents: 1386
diff changeset
  1075
e7cdf3ce0fb6 (svn r1894) - Codechange: cleaned up the console a bit, wholly unified handling of text with that of editboxes
Darkvater
parents: 1386
diff changeset
  1076
	if (b != tb->caret) {
e7cdf3ce0fb6 (svn r1894) - Codechange: cleaned up the console a bit, wholly unified handling of text with that of editboxes
Darkvater
parents: 1386
diff changeset
  1077
		tb->caret = b;
e7cdf3ce0fb6 (svn r1894) - Codechange: cleaned up the console a bit, wholly unified handling of text with that of editboxes
Darkvater
parents: 1386
diff changeset
  1078
		return true;
e7cdf3ce0fb6 (svn r1894) - Codechange: cleaned up the console a bit, wholly unified handling of text with that of editboxes
Darkvater
parents: 1386
diff changeset
  1079
	}
e7cdf3ce0fb6 (svn r1894) - Codechange: cleaned up the console a bit, wholly unified handling of text with that of editboxes
Darkvater
parents: 1386
diff changeset
  1080
	return false;
e7cdf3ce0fb6 (svn r1894) - Codechange: cleaned up the console a bit, wholly unified handling of text with that of editboxes
Darkvater
parents: 1386
diff changeset
  1081
}
e7cdf3ce0fb6 (svn r1894) - Codechange: cleaned up the console a bit, wholly unified handling of text with that of editboxes
Darkvater
parents: 1386
diff changeset
  1082
2887
810e555d5249 (svn r3439) - CodeChange: Remove a whole bunch of global variables and put them into the WP() macro. Also combine more than one WP-custom element. For this the maximum size of w->custom (WP) has been increased, and multiple types put inside one with possibly moved to the corresponding gui file if it is only used there.
Darkvater
parents: 2873
diff changeset
  1083
void HandleEditBox(Window *w, querystr_d *string, int wid)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1084
{
8028
e578ea22f371 (svn r11588) -Codechange: use the new member introduced in r11551
glx
parents: 8019
diff changeset
  1085
	if (HandleCaret(&string->text)) w->InvalidateWidget(wid);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1086
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1087
2887
810e555d5249 (svn r3439) - CodeChange: Remove a whole bunch of global variables and put them into the WP() macro. Also combine more than one WP-custom element. For this the maximum size of w->custom (WP) has been increased, and multiple types put inside one with possibly moved to the corresponding gui file if it is only used there.
Darkvater
parents: 2873
diff changeset
  1088
void DrawEditBox(Window *w, querystr_d *string, int wid)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1089
{
4955
1ffc9ce449a8 (svn r6954) -Feature: Constrain the drawing of a string inside an editbox to the dimensions of
Darkvater
parents: 4949
diff changeset
  1090
	const Widget *wi = &w->widget[wid];
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1091
8737
4405e2e80db6 (svn r12425) -Feature [FS#1846]: On Screen Keyboard for input fields so someone without a keyboard can enter text too. Patch by Dominik.
rubidium
parents: 8715
diff changeset
  1092
	assert((wi->type & WWT_MASK) == WWT_EDITBOX);
4405e2e80db6 (svn r12425) -Feature [FS#1846]: On Screen Keyboard for input fields so someone without a keyboard can enter text too. Patch by Dominik.
rubidium
parents: 8715
diff changeset
  1093
5639
c9c55071b0ea (svn r8098) -Fix (r6964): For editboxen, always fill the background with black, and not only after a valid call to FillDrawPixelInfo. This solves some graphics glitches with background widget-colour showing through on frequent redraws.
Darkvater
parents: 5596
diff changeset
  1094
	GfxFillRect(wi->left + 1, wi->top + 1, wi->right - 1, wi->bottom - 1, 215);
c9c55071b0ea (svn r8098) -Fix (r6964): For editboxen, always fill the background with black, and not only after a valid call to FillDrawPixelInfo. This solves some graphics glitches with background widget-colour showing through on frequent redraws.
Darkvater
parents: 5596
diff changeset
  1095
8819
e608a2ebe2b1 (svn r12565) -Cleanup: variable scope in misc\*.cpp
smatz
parents: 8809
diff changeset
  1096
	DrawPixelInfo dpi;
e608a2ebe2b1 (svn r12565) -Cleanup: variable scope in misc\*.cpp
smatz
parents: 8809
diff changeset
  1097
	int delta;
e608a2ebe2b1 (svn r12565) -Cleanup: variable scope in misc\*.cpp
smatz
parents: 8809
diff changeset
  1098
4955
1ffc9ce449a8 (svn r6954) -Feature: Constrain the drawing of a string inside an editbox to the dimensions of
Darkvater
parents: 4949
diff changeset
  1099
	/* Limit the drawing of the string inside the widget boundaries */
1ffc9ce449a8 (svn r6954) -Feature: Constrain the drawing of a string inside an editbox to the dimensions of
Darkvater
parents: 4949
diff changeset
  1100
	if (!FillDrawPixelInfo(&dpi,
8738
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1101
			wi->left + 4,
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1102
			wi->top + 1,
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1103
			wi->right - wi->left - 4,
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1104
			wi->bottom - wi->top - 1)) {
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1105
		return;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1106
	}
4955
1ffc9ce449a8 (svn r6954) -Feature: Constrain the drawing of a string inside an editbox to the dimensions of
Darkvater
parents: 4949
diff changeset
  1107
8819
e608a2ebe2b1 (svn r12565) -Cleanup: variable scope in misc\*.cpp
smatz
parents: 8809
diff changeset
  1108
	DrawPixelInfo *old_dpi = _cur_dpi;
4955
1ffc9ce449a8 (svn r6954) -Feature: Constrain the drawing of a string inside an editbox to the dimensions of
Darkvater
parents: 4949
diff changeset
  1109
	_cur_dpi = &dpi;
1ffc9ce449a8 (svn r6954) -Feature: Constrain the drawing of a string inside an editbox to the dimensions of
Darkvater
parents: 4949
diff changeset
  1110
1ffc9ce449a8 (svn r6954) -Feature: Constrain the drawing of a string inside an editbox to the dimensions of
Darkvater
parents: 4949
diff changeset
  1111
	/* We will take the current widget length as maximum width, with a small
1ffc9ce449a8 (svn r6954) -Feature: Constrain the drawing of a string inside an editbox to the dimensions of
Darkvater
parents: 4949
diff changeset
  1112
	 * space reserved at the end for the caret to show */
8819
e608a2ebe2b1 (svn r12565) -Cleanup: variable scope in misc\*.cpp
smatz
parents: 8809
diff changeset
  1113
	const Textbuf *tb = &string->text;
e608a2ebe2b1 (svn r12565) -Cleanup: variable scope in misc\*.cpp
smatz
parents: 8809
diff changeset
  1114
4955
1ffc9ce449a8 (svn r6954) -Feature: Constrain the drawing of a string inside an editbox to the dimensions of
Darkvater
parents: 4949
diff changeset
  1115
	delta = (wi->right - wi->left) - tb->width - 10;
1ffc9ce449a8 (svn r6954) -Feature: Constrain the drawing of a string inside an editbox to the dimensions of
Darkvater
parents: 4949
diff changeset
  1116
	if (delta > 0) delta = 0;
1ffc9ce449a8 (svn r6954) -Feature: Constrain the drawing of a string inside an editbox to the dimensions of
Darkvater
parents: 4949
diff changeset
  1117
1ffc9ce449a8 (svn r6954) -Feature: Constrain the drawing of a string inside an editbox to the dimensions of
Darkvater
parents: 4949
diff changeset
  1118
	if (tb->caretxoffs + delta < 0) delta = -tb->caretxoffs;
1ffc9ce449a8 (svn r6954) -Feature: Constrain the drawing of a string inside an editbox to the dimensions of
Darkvater
parents: 4949
diff changeset
  1119
7824
5a63d41b59ea (svn r11374) -Codechange: Give meaning to the magical number that specifies the color of the text in a DrawString call.
belugas
parents: 7750
diff changeset
  1120
	DoDrawString(tb->buf, delta, 0, TC_YELLOW);
5a63d41b59ea (svn r11374) -Codechange: Give meaning to the magical number that specifies the color of the text in a DrawString call.
belugas
parents: 7750
diff changeset
  1121
	if (tb->caret) DoDrawString("_", tb->caretxoffs + delta, 0, TC_WHITE);
4955
1ffc9ce449a8 (svn r6954) -Feature: Constrain the drawing of a string inside an editbox to the dimensions of
Darkvater
parents: 4949
diff changeset
  1122
1ffc9ce449a8 (svn r6954) -Feature: Constrain the drawing of a string inside an editbox to the dimensions of
Darkvater
parents: 4949
diff changeset
  1123
	_cur_dpi = old_dpi;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1124
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1125
5431
6e56b4f13dd7 (svn r7637) -Codechange: Change ShowQueryString to use a window pointer as a parent. If the
Darkvater
parents: 5429
diff changeset
  1126
enum QueryStringWidgets {
6e56b4f13dd7 (svn r7637) -Codechange: Change ShowQueryString to use a window pointer as a parent. If the
Darkvater
parents: 5429
diff changeset
  1127
	QUERY_STR_WIDGET_TEXT = 3,
6e56b4f13dd7 (svn r7637) -Codechange: Change ShowQueryString to use a window pointer as a parent. If the
Darkvater
parents: 5429
diff changeset
  1128
	QUERY_STR_WIDGET_CANCEL,
6e56b4f13dd7 (svn r7637) -Codechange: Change ShowQueryString to use a window pointer as a parent. If the
Darkvater
parents: 5429
diff changeset
  1129
	QUERY_STR_WIDGET_OK
6e56b4f13dd7 (svn r7637) -Codechange: Change ShowQueryString to use a window pointer as a parent. If the
Darkvater
parents: 5429
diff changeset
  1130
};
6e56b4f13dd7 (svn r7637) -Codechange: Change ShowQueryString to use a window pointer as a parent. If the
Darkvater
parents: 5429
diff changeset
  1131
6e56b4f13dd7 (svn r7637) -Codechange: Change ShowQueryString to use a window pointer as a parent. If the
Darkvater
parents: 5429
diff changeset
  1132
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1133
static void QueryStringWndProc(Window *w, WindowEvent *e)
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1134
{
5431
6e56b4f13dd7 (svn r7637) -Codechange: Change ShowQueryString to use a window pointer as a parent. If the
Darkvater
parents: 5429
diff changeset
  1135
	querystr_d *qs = &WP(w, querystr_d);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1136
5431
6e56b4f13dd7 (svn r7637) -Codechange: Change ShowQueryString to use a window pointer as a parent. If the
Darkvater
parents: 5429
diff changeset
  1137
	switch (e->event) {
6e56b4f13dd7 (svn r7637) -Codechange: Change ShowQueryString to use a window pointer as a parent. If the
Darkvater
parents: 5429
diff changeset
  1138
		case WE_CREATE:
7931
b0a46cd92225 (svn r11484) -Codechange: Remove the doubled function SetBitT and rename the remaining to fit with the naming style
skidd13
parents: 7929
diff changeset
  1139
			SetBit(_no_scroll, SCROLL_EDIT);
5431
6e56b4f13dd7 (svn r7637) -Codechange: Change ShowQueryString to use a window pointer as a parent. If the
Darkvater
parents: 5429
diff changeset
  1140
			break;
390
c67581486cde (svn r582) -Fix: [ 1034318 ] place sign and blue message box
tron
parents: 337
diff changeset
  1141
5431
6e56b4f13dd7 (svn r7637) -Codechange: Change ShowQueryString to use a window pointer as a parent. If the
Darkvater
parents: 5429
diff changeset
  1142
		case WE_PAINT:
6e56b4f13dd7 (svn r7637) -Codechange: Change ShowQueryString to use a window pointer as a parent. If the
Darkvater
parents: 5429
diff changeset
  1143
			SetDParam(0, qs->caption);
6e56b4f13dd7 (svn r7637) -Codechange: Change ShowQueryString to use a window pointer as a parent. If the
Darkvater
parents: 5429
diff changeset
  1144
			DrawWindowWidgets(w);
598
b8c5ae66f9ff (svn r1022) -Fix: [Network] [ 1083690 ] The password dialog made the network
truelight
parents: 596
diff changeset
  1145
5431
6e56b4f13dd7 (svn r7637) -Codechange: Change ShowQueryString to use a window pointer as a parent. If the
Darkvater
parents: 5429
diff changeset
  1146
			DrawEditBox(w, qs, QUERY_STR_WIDGET_TEXT);
6e56b4f13dd7 (svn r7637) -Codechange: Change ShowQueryString to use a window pointer as a parent. If the
Darkvater
parents: 5429
diff changeset
  1147
			break;
6e56b4f13dd7 (svn r7637) -Codechange: Change ShowQueryString to use a window pointer as a parent. If the
Darkvater
parents: 5429
diff changeset
  1148
6e56b4f13dd7 (svn r7637) -Codechange: Change ShowQueryString to use a window pointer as a parent. If the
Darkvater
parents: 5429
diff changeset
  1149
		case WE_CLICK:
6e56b4f13dd7 (svn r7637) -Codechange: Change ShowQueryString to use a window pointer as a parent. If the
Darkvater
parents: 5429
diff changeset
  1150
			switch (e->we.click.widget) {
8737
4405e2e80db6 (svn r12425) -Feature [FS#1846]: On Screen Keyboard for input fields so someone without a keyboard can enter text too. Patch by Dominik.
rubidium
parents: 8715
diff changeset
  1151
				case QUERY_STR_WIDGET_TEXT:
4405e2e80db6 (svn r12425) -Feature [FS#1846]: On Screen Keyboard for input fields so someone without a keyboard can enter text too. Patch by Dominik.
rubidium
parents: 8715
diff changeset
  1152
					ShowOnScreenKeyboard(w, &WP(w, querystr_d), QUERY_STR_WIDGET_TEXT, QUERY_STR_WIDGET_CANCEL, QUERY_STR_WIDGET_OK);
4405e2e80db6 (svn r12425) -Feature [FS#1846]: On Screen Keyboard for input fields so someone without a keyboard can enter text too. Patch by Dominik.
rubidium
parents: 8715
diff changeset
  1153
					break;
4405e2e80db6 (svn r12425) -Feature [FS#1846]: On Screen Keyboard for input fields so someone without a keyboard can enter text too. Patch by Dominik.
rubidium
parents: 8715
diff changeset
  1154
5431
6e56b4f13dd7 (svn r7637) -Codechange: Change ShowQueryString to use a window pointer as a parent. If the
Darkvater
parents: 5429
diff changeset
  1155
				case QUERY_STR_WIDGET_OK:
6e56b4f13dd7 (svn r7637) -Codechange: Change ShowQueryString to use a window pointer as a parent. If the
Darkvater
parents: 5429
diff changeset
  1156
		press_ok:;
6e56b4f13dd7 (svn r7637) -Codechange: Change ShowQueryString to use a window pointer as a parent. If the
Darkvater
parents: 5429
diff changeset
  1157
					if (qs->orig == NULL || strcmp(qs->text.buf, qs->orig) != 0) {
6e56b4f13dd7 (svn r7637) -Codechange: Change ShowQueryString to use a window pointer as a parent. If the
Darkvater
parents: 5429
diff changeset
  1158
						Window *parent = w->parent;
6e56b4f13dd7 (svn r7637) -Codechange: Change ShowQueryString to use a window pointer as a parent. If the
Darkvater
parents: 5429
diff changeset
  1159
						qs->handled = true;
6e56b4f13dd7 (svn r7637) -Codechange: Change ShowQueryString to use a window pointer as a parent. If the
Darkvater
parents: 5429
diff changeset
  1160
6e56b4f13dd7 (svn r7637) -Codechange: Change ShowQueryString to use a window pointer as a parent. If the
Darkvater
parents: 5429
diff changeset
  1161
						/* If the parent is NULL, the editbox is handled by general function
6e56b4f13dd7 (svn r7637) -Codechange: Change ShowQueryString to use a window pointer as a parent. If the
Darkvater
parents: 5429
diff changeset
  1162
						 * HandleOnEditText */
6e56b4f13dd7 (svn r7637) -Codechange: Change ShowQueryString to use a window pointer as a parent. If the
Darkvater
parents: 5429
diff changeset
  1163
						if (parent != NULL) {
6e56b4f13dd7 (svn r7637) -Codechange: Change ShowQueryString to use a window pointer as a parent. If the
Darkvater
parents: 5429
diff changeset
  1164
							WindowEvent e;
6e56b4f13dd7 (svn r7637) -Codechange: Change ShowQueryString to use a window pointer as a parent. If the
Darkvater
parents: 5429
diff changeset
  1165
							e.event = WE_ON_EDIT_TEXT;
6e56b4f13dd7 (svn r7637) -Codechange: Change ShowQueryString to use a window pointer as a parent. If the
Darkvater
parents: 5429
diff changeset
  1166
							e.we.edittext.str = qs->text.buf;
6e56b4f13dd7 (svn r7637) -Codechange: Change ShowQueryString to use a window pointer as a parent. If the
Darkvater
parents: 5429
diff changeset
  1167
							parent->wndproc(parent, &e);
6e56b4f13dd7 (svn r7637) -Codechange: Change ShowQueryString to use a window pointer as a parent. If the
Darkvater
parents: 5429
diff changeset
  1168
						} else {
6e56b4f13dd7 (svn r7637) -Codechange: Change ShowQueryString to use a window pointer as a parent. If the
Darkvater
parents: 5429
diff changeset
  1169
							HandleOnEditText(qs->text.buf);
6e56b4f13dd7 (svn r7637) -Codechange: Change ShowQueryString to use a window pointer as a parent. If the
Darkvater
parents: 5429
diff changeset
  1170
						}
6e56b4f13dd7 (svn r7637) -Codechange: Change ShowQueryString to use a window pointer as a parent. If the
Darkvater
parents: 5429
diff changeset
  1171
					}
6e56b4f13dd7 (svn r7637) -Codechange: Change ShowQueryString to use a window pointer as a parent. If the
Darkvater
parents: 5429
diff changeset
  1172
					/* Fallthrough */
6e56b4f13dd7 (svn r7637) -Codechange: Change ShowQueryString to use a window pointer as a parent. If the
Darkvater
parents: 5429
diff changeset
  1173
				case QUERY_STR_WIDGET_CANCEL:
6e56b4f13dd7 (svn r7637) -Codechange: Change ShowQueryString to use a window pointer as a parent. If the
Darkvater
parents: 5429
diff changeset
  1174
					DeleteWindow(w);
6e56b4f13dd7 (svn r7637) -Codechange: Change ShowQueryString to use a window pointer as a parent. If the
Darkvater
parents: 5429
diff changeset
  1175
					break;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1176
			}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1177
			break;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1178
5431
6e56b4f13dd7 (svn r7637) -Codechange: Change ShowQueryString to use a window pointer as a parent. If the
Darkvater
parents: 5429
diff changeset
  1179
		case WE_MOUSELOOP:
6e56b4f13dd7 (svn r7637) -Codechange: Change ShowQueryString to use a window pointer as a parent. If the
Darkvater
parents: 5429
diff changeset
  1180
			HandleEditBox(w, qs, QUERY_STR_WIDGET_TEXT);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1181
			break;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1182
5431
6e56b4f13dd7 (svn r7637) -Codechange: Change ShowQueryString to use a window pointer as a parent. If the
Darkvater
parents: 5429
diff changeset
  1183
		case WE_KEYPRESS:
6e56b4f13dd7 (svn r7637) -Codechange: Change ShowQueryString to use a window pointer as a parent. If the
Darkvater
parents: 5429
diff changeset
  1184
			switch (HandleEditBoxKey(w, qs, QUERY_STR_WIDGET_TEXT, e)) {
6201
bee01dc45e39 (svn r8987) -Cleanup: doxygen changes. Again. Mostly (still) @files missing tags and (more than just) a few comments style.
belugas
parents: 6197
diff changeset
  1185
				case 1: goto press_ok; // Enter pressed, confirms change
bee01dc45e39 (svn r8987) -Cleanup: doxygen changes. Again. Mostly (still) @files missing tags and (more than just) a few comments style.
belugas
parents: 6197
diff changeset
  1186
				case 2: DeleteWindow(w); break; // ESC pressed, closes window, abandons changes
5431
6e56b4f13dd7 (svn r7637) -Codechange: Change ShowQueryString to use a window pointer as a parent. If the
Darkvater
parents: 5429
diff changeset
  1187
			}
6e56b4f13dd7 (svn r7637) -Codechange: Change ShowQueryString to use a window pointer as a parent. If the
Darkvater
parents: 5429
diff changeset
  1188
			break;
6e56b4f13dd7 (svn r7637) -Codechange: Change ShowQueryString to use a window pointer as a parent. If the
Darkvater
parents: 5429
diff changeset
  1189
6201
bee01dc45e39 (svn r8987) -Cleanup: doxygen changes. Again. Mostly (still) @files missing tags and (more than just) a few comments style.
belugas
parents: 6197
diff changeset
  1190
		case WE_DESTROY: // Call cancellation of query, if we have not handled it before
5431
6e56b4f13dd7 (svn r7637) -Codechange: Change ShowQueryString to use a window pointer as a parent. If the
Darkvater
parents: 5429
diff changeset
  1191
			if (!qs->handled && w->parent != NULL) {
543
946badd71033 (svn r942) -Merged branch/network back into the trunk
truelight
parents: 541
diff changeset
  1192
				WindowEvent e;
5431
6e56b4f13dd7 (svn r7637) -Codechange: Change ShowQueryString to use a window pointer as a parent. If the
Darkvater
parents: 5429
diff changeset
  1193
				Window *parent = w->parent;
6e56b4f13dd7 (svn r7637) -Codechange: Change ShowQueryString to use a window pointer as a parent. If the
Darkvater
parents: 5429
diff changeset
  1194
6e56b4f13dd7 (svn r7637) -Codechange: Change ShowQueryString to use a window pointer as a parent. If the
Darkvater
parents: 5429
diff changeset
  1195
				qs->handled = true;
543
946badd71033 (svn r942) -Merged branch/network back into the trunk
truelight
parents: 541
diff changeset
  1196
				e.event = WE_ON_EDIT_TEXT_CANCEL;
946badd71033 (svn r942) -Merged branch/network back into the trunk
truelight
parents: 541
diff changeset
  1197
				parent->wndproc(parent, &e);
946badd71033 (svn r942) -Merged branch/network back into the trunk
truelight
parents: 541
diff changeset
  1198
			}
7929
6c9b25842b0f (svn r11482) -Codechange: Remove the doubled function ClrBitT and rename the remaining to fit with the naming style
skidd13
parents: 7922
diff changeset
  1199
			ClrBit(_no_scroll, SCROLL_EDIT);
5431
6e56b4f13dd7 (svn r7637) -Codechange: Change ShowQueryString to use a window pointer as a parent. If the
Darkvater
parents: 5429
diff changeset
  1200
			break;
543
946badd71033 (svn r942) -Merged branch/network back into the trunk
truelight
parents: 541
diff changeset
  1201
		}
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1202
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1203
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1204
static const Widget _query_string_widgets[] = {
4344
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4326
diff changeset
  1205
{   WWT_CLOSEBOX,   RESIZE_NONE,    14,     0,    10,     0,    13, STR_00C5,        STR_018B_CLOSE_WINDOW},
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4326
diff changeset
  1206
{    WWT_CAPTION,   RESIZE_NONE,    14,    11,   259,     0,    13, STR_012D,        STR_NULL},
4938
0447845fd1b3 (svn r6925) -Codechange: Be more strict with widget distinctions. WWT_PANEL is only plain panel,
Darkvater
parents: 4912
diff changeset
  1207
{      WWT_PANEL,   RESIZE_NONE,    14,     0,   259,    14,    29, 0x0,             STR_NULL},
8737
4405e2e80db6 (svn r12425) -Feature [FS#1846]: On Screen Keyboard for input fields so someone without a keyboard can enter text too. Patch by Dominik.
rubidium
parents: 8715
diff changeset
  1208
{    WWT_EDITBOX,   RESIZE_NONE,    14,     2,   257,    16,    27, 0x0,             STR_NULL},
4344
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4326
diff changeset
  1209
{    WWT_TEXTBTN,   RESIZE_NONE,    14,     0,   129,    30,    41, STR_012E_CANCEL, STR_NULL},
7e123fec5b0b (svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents: 4326
diff changeset
  1210
{    WWT_TEXTBTN,   RESIZE_NONE,    14,   130,   259,    30,    41, STR_012F_OK,     STR_NULL},
176
84990c4b9212 (svn r177) -Fix: padded out Widget code to solve warnings on C99 compiler (Tron)
darkvater
parents: 172
diff changeset
  1211
{   WIDGETS_END},
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1212
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1213
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1214
static const WindowDesc _query_string_desc = {
7341
02515d0d4ced (svn r10704) -Codechange: provide an infrastructure to have resizable windows that are smaller than the default window size.
rubidium
parents: 7321
diff changeset
  1215
	190, 219, 260, 42, 260, 42,
5893
7e431a4abebb (svn r8511) -Codechange: make WindowClass an enumerated value.
rubidium
parents: 5750
diff changeset
  1216
	WC_QUERY_STRING, WC_NONE,
8019
fc0e94dee165 (svn r11579) -Revert(r11578): some cases of key propagation are not handled correctly.
belugas
parents: 8018
diff changeset
  1217
	WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1218
	_query_string_widgets,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1219
	QueryStringWndProc
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1220
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1221
8737
4405e2e80db6 (svn r12425) -Feature [FS#1846]: On Screen Keyboard for input fields so someone without a keyboard can enter text too. Patch by Dominik.
rubidium
parents: 8715
diff changeset
  1222
char _edit_str_buf[64];
4405e2e80db6 (svn r12425) -Feature [FS#1846]: On Screen Keyboard for input fields so someone without a keyboard can enter text too. Patch by Dominik.
rubidium
parents: 8715
diff changeset
  1223
char _orig_str_buf[lengthof(_edit_str_buf)];
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1224
5431
6e56b4f13dd7 (svn r7637) -Codechange: Change ShowQueryString to use a window pointer as a parent. If the
Darkvater
parents: 5429
diff changeset
  1225
/** Show a query popup window with a textbox in it.
6e56b4f13dd7 (svn r7637) -Codechange: Change ShowQueryString to use a window pointer as a parent. If the
Darkvater
parents: 5429
diff changeset
  1226
 * @param str StringID for the text shown in the textbox
6e56b4f13dd7 (svn r7637) -Codechange: Change ShowQueryString to use a window pointer as a parent. If the
Darkvater
parents: 5429
diff changeset
  1227
 * @param caption StringID of text shown in caption of querywindow
6e56b4f13dd7 (svn r7637) -Codechange: Change ShowQueryString to use a window pointer as a parent. If the
Darkvater
parents: 5429
diff changeset
  1228
 * @param maxlen maximum length in characters allowed. If bit 12 is set we
6e56b4f13dd7 (svn r7637) -Codechange: Change ShowQueryString to use a window pointer as a parent. If the
Darkvater
parents: 5429
diff changeset
  1229
 * will not check the resulting string against to original string to return success
6e56b4f13dd7 (svn r7637) -Codechange: Change ShowQueryString to use a window pointer as a parent. If the
Darkvater
parents: 5429
diff changeset
  1230
 * @param maxwidth maximum width in pixels allowed
6e56b4f13dd7 (svn r7637) -Codechange: Change ShowQueryString to use a window pointer as a parent. If the
Darkvater
parents: 5429
diff changeset
  1231
 * @param parent pointer to a Window that will handle the events (ok/cancel) of this
6e56b4f13dd7 (svn r7637) -Codechange: Change ShowQueryString to use a window pointer as a parent. If the
Darkvater
parents: 5429
diff changeset
  1232
 * window. If NULL, results are handled by global function HandleOnEditText
6e56b4f13dd7 (svn r7637) -Codechange: Change ShowQueryString to use a window pointer as a parent. If the
Darkvater
parents: 5429
diff changeset
  1233
 * @param afilter filters out unwanted character input */
6e56b4f13dd7 (svn r7637) -Codechange: Change ShowQueryString to use a window pointer as a parent. If the
Darkvater
parents: 5429
diff changeset
  1234
void ShowQueryString(StringID str, StringID caption, uint maxlen, uint maxwidth, Window *parent, CharSetFilter afilter)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1235
{
1390
e7cdf3ce0fb6 (svn r1894) - Codechange: cleaned up the console a bit, wholly unified handling of text with that of editboxes
Darkvater
parents: 1386
diff changeset
  1236
	uint realmaxlen = maxlen & ~0x1000;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1237
1390
e7cdf3ce0fb6 (svn r1894) - Codechange: cleaned up the console a bit, wholly unified handling of text with that of editboxes
Darkvater
parents: 1386
diff changeset
  1238
	assert(realmaxlen < lengthof(_edit_str_buf));
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1239
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1240
	DeleteWindowById(WC_QUERY_STRING, 0);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1241
	DeleteWindowById(WC_SAVELOAD, 0);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1242
8738
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1243
	Window *w = AllocateWindowDesc(&_query_string_desc);
5431
6e56b4f13dd7 (svn r7637) -Codechange: Change ShowQueryString to use a window pointer as a parent. If the
Darkvater
parents: 5429
diff changeset
  1244
	w->parent = parent;
1386
0de4f8541aea (svn r1890) Begin to clean up the edit box: Remove one global variable and split the combined edit/original buffer into two
tron
parents: 1363
diff changeset
  1245
4912
0f51b47cb983 (svn r6884) -Codechange: Add strict bounds checking in string formatting system.
Darkvater
parents: 4909
diff changeset
  1246
	GetString(_edit_str_buf, str, lastof(_edit_str_buf));
4949
6bf60913767f (svn r6938) -Codechange: Comments, typo, variable naming, whitespace, strecpy and simplification
Darkvater
parents: 4948
diff changeset
  1247
	_edit_str_buf[realmaxlen - 1] = '\0';
596
a787fc8fba4a (svn r1018) -Fix: Buffer overflow in edit box, because we misuse maxlen for a flag..
truelight
parents: 568
diff changeset
  1248
a787fc8fba4a (svn r1018) -Fix: Buffer overflow in edit box, because we misuse maxlen for a flag..
truelight
parents: 568
diff changeset
  1249
	if (maxlen & 0x1000) {
1386
0de4f8541aea (svn r1890) Begin to clean up the edit box: Remove one global variable and split the combined edit/original buffer into two
tron
parents: 1363
diff changeset
  1250
		WP(w, querystr_d).orig = NULL;
0de4f8541aea (svn r1890) Begin to clean up the edit box: Remove one global variable and split the combined edit/original buffer into two
tron
parents: 1363
diff changeset
  1251
	} else {
8737
4405e2e80db6 (svn r12425) -Feature [FS#1846]: On Screen Keyboard for input fields so someone without a keyboard can enter text too. Patch by Dominik.
rubidium
parents: 8715
diff changeset
  1252
		strecpy(_orig_str_buf, _edit_str_buf, lastof(_orig_str_buf));
4405e2e80db6 (svn r12425) -Feature [FS#1846]: On Screen Keyboard for input fields so someone without a keyboard can enter text too. Patch by Dominik.
rubidium
parents: 8715
diff changeset
  1253
		WP(w, querystr_d).orig = _orig_str_buf;
1386
0de4f8541aea (svn r1890) Begin to clean up the edit box: Remove one global variable and split the combined edit/original buffer into two
tron
parents: 1363
diff changeset
  1254
	}
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1255
7997
df87ccd00a96 (svn r11555) -Codechange: use the new members introduced in r11551.
rubidium
parents: 7954
diff changeset
  1256
	w->LowerWidget(QUERY_STR_WIDGET_TEXT);
1390
e7cdf3ce0fb6 (svn r1894) - Codechange: cleaned up the console a bit, wholly unified handling of text with that of editboxes
Darkvater
parents: 1386
diff changeset
  1257
	WP(w, querystr_d).caption = caption;
4299
91f5d2bedcff (svn r5944) -Merge TGP (r5578, r5579, r5724, r5726): -Feature: filter for textboxes to only
truelight
parents: 4293
diff changeset
  1258
	WP(w, querystr_d).afilter = afilter;
4948
22ff05c1a3b1 (svn r6937) -Codechange: Add an InitializeTextBuffer() function that handles setting up the
Darkvater
parents: 4939
diff changeset
  1259
	InitializeTextBuffer(&WP(w, querystr_d).text, _edit_str_buf, realmaxlen, maxwidth);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1260
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1261
5418
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1262
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1263
enum QueryWidgets {
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1264
	QUERY_WIDGET_CAPTION = 1,
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1265
	QUERY_WIDGET_NO = 3,
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1266
	QUERY_WIDGET_YES
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1267
};
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1268
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1269
6248
e4a2ed7e5613 (svn r9051) -Codechange: typedef [enum|struct] Y {} X; -> [enum|struct] X {};
rubidium
parents: 6247
diff changeset
  1270
struct query_d {
5473
6dc579e62412 (svn r7757) -Fix (r7621): x64 did not compile because query_d was too big. Reorder the elements
Darkvater
parents: 5469
diff changeset
  1271
	void (*proc)(Window*, bool); ///< callback function executed on closing of popup. Window* points to parent, bool is true if 'yes' clicked, false otherwise
7007
d335c6daf964 (svn r10263) -Fix (r10262): due to 64 bits alignment a struct became a little too large.
rubidium
parents: 7006
diff changeset
  1272
	uint64 params[10];           ///< local copy of _decode_parameters
5418
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1273
	StringID message;            ///< message shown for query window
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1274
	bool calledback;             ///< has callback been executed already (internal usage for WE_DESTROY event)
6248
e4a2ed7e5613 (svn r9051) -Codechange: typedef [enum|struct] Y {} X; -> [enum|struct] X {};
rubidium
parents: 6247
diff changeset
  1275
};
5418
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1276
assert_compile(WINDOW_CUSTOM_SIZE >= sizeof(query_d));
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1277
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1278
4300
c7e43c47a2b9 (svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
truelight
parents: 4299
diff changeset
  1279
static void QueryWndProc(Window *w, WindowEvent *e)
c7e43c47a2b9 (svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
truelight
parents: 4299
diff changeset
  1280
{
5418
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1281
	query_d *q = &WP(w, query_d);
4300
c7e43c47a2b9 (svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
truelight
parents: 4299
diff changeset
  1282
5418
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1283
	switch (e->event) {
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1284
		case WE_PAINT:
7266
b16e67e992b4 (svn r10587) -Codechange: move the string/dparam related stuff from variables.h to strings.h
rubidium
parents: 7241
diff changeset
  1285
			CopyInDParam(0, q->params, lengthof(q->params));
5418
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1286
			DrawWindowWidgets(w);
7266
b16e67e992b4 (svn r10587) -Codechange: move the string/dparam related stuff from variables.h to strings.h
rubidium
parents: 7241
diff changeset
  1287
			CopyInDParam(0, q->params, lengthof(q->params));
5418
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1288
6197
558f3a9b5bd4 (svn r8977) -Codechange: Remove the hardcoded maximum width for some drawstrings and replace them with a portion of w->width. Only visible improvement is QueryWndProc which will not write exactly to the edge of the window anymore.
Darkvater
parents: 6190
diff changeset
  1289
			DrawStringMultiCenter(w->width / 2, (w->height / 2) - 10, q->message, w->width - 2);
4300
c7e43c47a2b9 (svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
truelight
parents: 4299
diff changeset
  1290
			break;
c7e43c47a2b9 (svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
truelight
parents: 4299
diff changeset
  1291
5418
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1292
		case WE_CLICK:
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1293
			switch (e->we.click.widget) {
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1294
				case QUERY_WIDGET_YES:
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1295
					q->calledback = true;
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1296
					if (q->proc != NULL) q->proc(w->parent, true);
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1297
					/* Fallthrough */
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1298
				case QUERY_WIDGET_NO:
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1299
					DeleteWindow(w);
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1300
					break;
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1301
				}
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1302
			break;
4300
c7e43c47a2b9 (svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
truelight
parents: 4299
diff changeset
  1303
6201
bee01dc45e39 (svn r8987) -Cleanup: doxygen changes. Again. Mostly (still) @files missing tags and (more than just) a few comments style.
belugas
parents: 6197
diff changeset
  1304
		case WE_KEYPRESS: // ESC closes the window, Enter confirms the action
5418
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1305
			switch (e->we.keypress.keycode) {
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1306
				case WKC_RETURN:
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1307
				case WKC_NUM_ENTER:
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1308
					q->calledback = true;
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1309
					if (q->proc != NULL) q->proc(w->parent, true);
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1310
					/* Fallthrough */
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1311
				case WKC_ESC:
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1312
					e->we.keypress.cont = false;
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1313
					DeleteWindow(w);
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1314
					break;
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1315
			}
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1316
			break;
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1317
6201
bee01dc45e39 (svn r8987) -Cleanup: doxygen changes. Again. Mostly (still) @files missing tags and (more than just) a few comments style.
belugas
parents: 6197
diff changeset
  1318
		case WE_DESTROY: // Call callback function (if any) on window close if not yet called
5429
a664da42d64e (svn r7635) -Fix (r7618, r7621): Guard against recursive deletion. It is possible that when a
Darkvater
parents: 5418
diff changeset
  1319
			if (!q->calledback && q->proc != NULL) {
a664da42d64e (svn r7635) -Fix (r7618, r7621): Guard against recursive deletion. It is possible that when a
Darkvater
parents: 5418
diff changeset
  1320
				q->calledback = true;
a664da42d64e (svn r7635) -Fix (r7618, r7621): Guard against recursive deletion. It is possible that when a
Darkvater
parents: 5418
diff changeset
  1321
				q->proc(w->parent, false);
a664da42d64e (svn r7635) -Fix (r7618, r7621): Guard against recursive deletion. It is possible that when a
Darkvater
parents: 5418
diff changeset
  1322
			}
5418
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1323
			break;
4300
c7e43c47a2b9 (svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
truelight
parents: 4299
diff changeset
  1324
	}
c7e43c47a2b9 (svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
truelight
parents: 4299
diff changeset
  1325
}
c7e43c47a2b9 (svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
truelight
parents: 4299
diff changeset
  1326
5418
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1327
4300
c7e43c47a2b9 (svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
truelight
parents: 4299
diff changeset
  1328
static const Widget _query_widgets[] = {
5418
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1329
{  WWT_CLOSEBOX, RESIZE_NONE,  4,   0,  10,   0,  13, STR_00C5,        STR_018B_CLOSE_WINDOW},
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1330
{   WWT_CAPTION, RESIZE_NONE,  4,  11, 209,   0,  13, STR_NULL,        STR_NULL},
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1331
{     WWT_PANEL, RESIZE_NONE,  4,   0, 209,  14,  81, 0x0, /*OVERRIDE*/STR_NULL},
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1332
{WWT_PUSHTXTBTN, RESIZE_NONE,  3,  20,  90,  62,  73, STR_00C9_NO,     STR_NULL},
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1333
{WWT_PUSHTXTBTN, RESIZE_NONE,  3, 120, 190,  62,  73, STR_00C8_YES,    STR_NULL},
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1334
{   WIDGETS_END },
4300
c7e43c47a2b9 (svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
truelight
parents: 4299
diff changeset
  1335
};
c7e43c47a2b9 (svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
truelight
parents: 4299
diff changeset
  1336
c7e43c47a2b9 (svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
truelight
parents: 4299
diff changeset
  1337
static const WindowDesc _query_desc = {
7341
02515d0d4ced (svn r10704) -Codechange: provide an infrastructure to have resizable windows that are smaller than the default window size.
rubidium
parents: 7321
diff changeset
  1338
	WDP_CENTER, WDP_CENTER, 210, 82, 210, 82,
5893
7e431a4abebb (svn r8511) -Codechange: make WindowClass an enumerated value.
rubidium
parents: 5750
diff changeset
  1339
	WC_CONFIRM_POPUP_QUERY, WC_NONE,
5418
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1340
	WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_UNCLICK_BUTTONS | WDF_DEF_WIDGET | WDF_MODAL,
4300
c7e43c47a2b9 (svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
truelight
parents: 4299
diff changeset
  1341
	_query_widgets,
c7e43c47a2b9 (svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
truelight
parents: 4299
diff changeset
  1342
	QueryWndProc
c7e43c47a2b9 (svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
truelight
parents: 4299
diff changeset
  1343
};
c7e43c47a2b9 (svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
truelight
parents: 4299
diff changeset
  1344
5418
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1345
/** Show a modal confirmation window with standard 'yes' and 'no' buttons
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1346
 * The window is aligned to the centre of its parent.
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1347
 * NOTE: You cannot use BindCString as parameter for this window!
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1348
 * @param caption string shown as window caption
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1349
 * @param message string that will be shown for the window
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1350
 * @param parent pointer to parent window, if this pointer is NULL the parent becomes
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1351
 * the main window WC_MAIN_WINDOW
6481
85ad87daf4b0 (svn r9662) -Documentation: Doxygen corrections and @file omissions
belugas
parents: 6453
diff changeset
  1352
 * @param callback callback function pointer to set in the window descriptor*/
5418
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1353
void ShowQuery(StringID caption, StringID message, Window *parent, void (*callback)(Window*, bool))
4300
c7e43c47a2b9 (svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
truelight
parents: 4299
diff changeset
  1354
{
5418
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1355
	Window *w = AllocateWindowDesc(&_query_desc);
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1356
	if (w == NULL) return;
4300
c7e43c47a2b9 (svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
truelight
parents: 4299
diff changeset
  1357
5418
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1358
	if (parent == NULL) parent = FindWindowById(WC_MAIN_WINDOW, 0);
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1359
	w->parent = parent;
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1360
	w->left = parent->left + (parent->width / 2) - (w->width / 2);
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1361
	w->top = parent->top + (parent->height / 2) - (w->height / 2);
4300
c7e43c47a2b9 (svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
truelight
parents: 4299
diff changeset
  1362
5418
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1363
	/* Create a backup of the variadic arguments to strings because it will be
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1364
	 * overridden pretty often. We will copy these back for drawing */
7266
b16e67e992b4 (svn r10587) -Codechange: move the string/dparam related stuff from variables.h to strings.h
rubidium
parents: 7241
diff changeset
  1365
	CopyOutDParam(WP(w, query_d).params, 0, lengthof(WP(w, query_d).params));
5418
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1366
	w->widget[QUERY_WIDGET_CAPTION].data = caption;
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1367
	WP(w, query_d).message    = message;
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1368
	WP(w, query_d).proc       = callback;
793a133c6d2a (svn r7621) -Codechange: Rework ShowQuery into a general modal popup window. It gets passed
Darkvater
parents: 5380
diff changeset
  1369
	WP(w, query_d).calledback = false;
4300
c7e43c47a2b9 (svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
truelight
parents: 4299
diff changeset
  1370
}
c7e43c47a2b9 (svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
truelight
parents: 4299
diff changeset
  1371
c7e43c47a2b9 (svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
truelight
parents: 4299
diff changeset
  1372
5079
15816766b4ee (svn r7143) -CodeChange: remove redondancy in saveload dialogs
glx
parents: 5070
diff changeset
  1373
static const Widget _load_dialog_widgets[] = {
15816766b4ee (svn r7143) -CodeChange: remove redondancy in saveload dialogs
glx
parents: 5070
diff changeset
  1374
{   WWT_CLOSEBOX,   RESIZE_NONE,    14,     0,    10,     0,    13, STR_00C5,         STR_018B_CLOSE_WINDOW},
15816766b4ee (svn r7143) -CodeChange: remove redondancy in saveload dialogs
glx
parents: 5070
diff changeset
  1375
{    WWT_CAPTION,  RESIZE_RIGHT,    14,    11,   256,     0,    13, STR_NULL,         STR_018C_WINDOW_TITLE_DRAG_THIS},
15816766b4ee (svn r7143) -CodeChange: remove redondancy in saveload dialogs
glx
parents: 5070
diff changeset
  1376
{ WWT_PUSHTXTBTN,   RESIZE_NONE,    14,     0,   127,    14,    25, STR_SORT_BY_NAME, STR_SORT_ORDER_TIP},
15816766b4ee (svn r7143) -CodeChange: remove redondancy in saveload dialogs
glx
parents: 5070
diff changeset
  1377
{ WWT_PUSHTXTBTN,   RESIZE_NONE,    14,   128,   256,    14,    25, STR_SORT_BY_DATE, STR_SORT_ORDER_TIP},
15816766b4ee (svn r7143) -CodeChange: remove redondancy in saveload dialogs
glx
parents: 5070
diff changeset
  1378
{      WWT_PANEL,  RESIZE_RIGHT,    14,     0,   256,    26,    47, 0x0,              STR_NULL},
7346
dcfda6aa096f (svn r10709) -Codechange: allow automatic downsizing of the load game/save game windows. These windows also already supported downsizing, but again the resize button would be unreachable.
rubidium
parents: 7341
diff changeset
  1379
{      WWT_PANEL,     RESIZE_RB,    14,     0,   256,    48,   153, 0x0,              STR_NULL},
5079
15816766b4ee (svn r7143) -CodeChange: remove redondancy in saveload dialogs
glx
parents: 5070
diff changeset
  1380
{ WWT_PUSHIMGBTN,     RESIZE_LR,    14,   245,   256,    48,    59, SPR_HOUSE_ICON,   STR_SAVELOAD_HOME_BUTTON},
7346
dcfda6aa096f (svn r10709) -Codechange: allow automatic downsizing of the load game/save game windows. These windows also already supported downsizing, but again the resize button would be unreachable.
rubidium
parents: 7341
diff changeset
  1381
{      WWT_INSET,     RESIZE_RB,    14,     2,   243,    50,   151, 0x0,              STR_400A_LIST_OF_DRIVES_DIRECTORIES},
dcfda6aa096f (svn r10709) -Codechange: allow automatic downsizing of the load game/save game windows. These windows also already supported downsizing, but again the resize button would be unreachable.
rubidium
parents: 7341
diff changeset
  1382
{  WWT_SCROLLBAR,    RESIZE_LRB,    14,   245,   256,    60,   141, 0x0,              STR_0190_SCROLL_BAR_SCROLLS_LIST},
dcfda6aa096f (svn r10709) -Codechange: allow automatic downsizing of the load game/save game windows. These windows also already supported downsizing, but again the resize button would be unreachable.
rubidium
parents: 7341
diff changeset
  1383
{  WWT_RESIZEBOX,   RESIZE_LRTB,    14,   245,   256,   142,   153, 0x0,              STR_RESIZE_BUTTON},
4300
c7e43c47a2b9 (svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
truelight
parents: 4299
diff changeset
  1384
{   WIDGETS_END},
c7e43c47a2b9 (svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
truelight
parents: 4299
diff changeset
  1385
};
c7e43c47a2b9 (svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
truelight
parents: 4299
diff changeset
  1386
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1387
static const Widget _save_dialog_widgets[] = {
5079
15816766b4ee (svn r7143) -CodeChange: remove redondancy in saveload dialogs
glx
parents: 5070
diff changeset
  1388
{   WWT_CLOSEBOX,   RESIZE_NONE,    14,     0,    10,     0,    13, STR_00C5,         STR_018B_CLOSE_WINDOW},
15816766b4ee (svn r7143) -CodeChange: remove redondancy in saveload dialogs
glx
parents: 5070
diff changeset
  1389
{    WWT_CAPTION,  RESIZE_RIGHT,    14,    11,   256,     0,    13, STR_NULL,         STR_018C_WINDOW_TITLE_DRAG_THIS},
15816766b4ee (svn r7143) -CodeChange: remove redondancy in saveload dialogs
glx
parents: 5070
diff changeset
  1390
{ WWT_PUSHTXTBTN,   RESIZE_NONE,    14,     0,   127,    14,    25, STR_SORT_BY_NAME, STR_SORT_ORDER_TIP},
15816766b4ee (svn r7143) -CodeChange: remove redondancy in saveload dialogs
glx
parents: 5070
diff changeset
  1391
{ WWT_PUSHTXTBTN,   RESIZE_NONE,    14,   128,   256,    14,    25, STR_SORT_BY_DATE, STR_SORT_ORDER_TIP},
15816766b4ee (svn r7143) -CodeChange: remove redondancy in saveload dialogs
glx
parents: 5070
diff changeset
  1392
{      WWT_PANEL,  RESIZE_RIGHT,    14,     0,   256,    26,    47, 0x0,              STR_NULL},
7346
dcfda6aa096f (svn r10709) -Codechange: allow automatic downsizing of the load game/save game windows. These windows also already supported downsizing, but again the resize button would be unreachable.
rubidium
parents: 7341
diff changeset
  1393
{      WWT_PANEL,     RESIZE_RB,    14,     0,   256,    48,   151, 0x0,              STR_NULL},
5079
15816766b4ee (svn r7143) -CodeChange: remove redondancy in saveload dialogs
glx
parents: 5070
diff changeset
  1394
{ WWT_PUSHIMGBTN,     RESIZE_LR,    14,   245,   256,    48,    59, SPR_HOUSE_ICON,   STR_SAVELOAD_HOME_BUTTON},
7346
dcfda6aa096f (svn r10709) -Codechange: allow automatic downsizing of the load game/save game windows. These windows also already supported downsizing, but again the resize button would be unreachable.
rubidium
parents: 7341
diff changeset
  1395
{      WWT_INSET,     RESIZE_RB,    14,     2,   243,    50,   150, 0x0,              STR_400A_LIST_OF_DRIVES_DIRECTORIES},
dcfda6aa096f (svn r10709) -Codechange: allow automatic downsizing of the load game/save game windows. These windows also already supported downsizing, but again the resize button would be unreachable.
rubidium
parents: 7341
diff changeset
  1396
{  WWT_SCROLLBAR,    RESIZE_LRB,    14,   245,   256,    60,   151, 0x0,              STR_0190_SCROLL_BAR_SCROLLS_LIST},
dcfda6aa096f (svn r10709) -Codechange: allow automatic downsizing of the load game/save game windows. These windows also already supported downsizing, but again the resize button would be unreachable.
rubidium
parents: 7341
diff changeset
  1397
{      WWT_PANEL,    RESIZE_RTB,    14,     0,   256,   152,   167, 0x0,              STR_NULL},
8969
6d1c74e0e2cd (svn r12761) -Codechange: lots of minor whitespace coding style fixes around operators.
rubidium
parents: 8965
diff changeset
  1398
{    WWT_EDITBOX,    RESIZE_RTB,    14,     2,   254,   154,   165, STR_SAVE_OSKTITLE, STR_400B_CURRENTLY_SELECTED_NAME},
7346
dcfda6aa096f (svn r10709) -Codechange: allow automatic downsizing of the load game/save game windows. These windows also already supported downsizing, but again the resize button would be unreachable.
rubidium
parents: 7341
diff changeset
  1399
{ WWT_PUSHTXTBTN,     RESIZE_TB,    14,     0,   127,   168,   179, STR_4003_DELETE,  STR_400C_DELETE_THE_CURRENTLY_SELECTED},
dcfda6aa096f (svn r10709) -Codechange: allow automatic downsizing of the load game/save game windows. These windows also already supported downsizing, but again the resize button would be unreachable.
rubidium
parents: 7341
diff changeset
  1400
{ WWT_PUSHTXTBTN,     RESIZE_TB,    14,   128,   244,   168,   179, STR_4002_SAVE,    STR_400D_SAVE_THE_CURRENT_GAME_USING},
dcfda6aa096f (svn r10709) -Codechange: allow automatic downsizing of the load game/save game windows. These windows also already supported downsizing, but again the resize button would be unreachable.
rubidium
parents: 7341
diff changeset
  1401
{  WWT_RESIZEBOX,   RESIZE_LRTB,    14,   245,   256,   168,   179, 0x0,              STR_RESIZE_BUTTON},
176
84990c4b9212 (svn r177) -Fix: padded out Widget code to solve warnings on C99 compiler (Tron)
darkvater
parents: 172
diff changeset
  1402
{   WIDGETS_END},
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1403
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1404
6201
bee01dc45e39 (svn r8987) -Cleanup: doxygen changes. Again. Mostly (still) @files missing tags and (more than just) a few comments style.
belugas
parents: 6197
diff changeset
  1405
/* Colors for fios types */
7824
5a63d41b59ea (svn r11374) -Codechange: Give meaning to the magical number that specifies the color of the text in a DrawString call.
belugas
parents: 7750
diff changeset
  1406
const TextColour _fios_colors[] = {
5a63d41b59ea (svn r11374) -Codechange: Give meaning to the magical number that specifies the color of the text in a DrawString call.
belugas
parents: 7750
diff changeset
  1407
	TC_LIGHT_BLUE, TC_DARK_GREEN,  TC_DARK_GREEN, TC_ORANGE, TC_LIGHT_BROWN,
5a63d41b59ea (svn r11374) -Codechange: Give meaning to the magical number that specifies the color of the text in a DrawString call.
belugas
parents: 7750
diff changeset
  1408
	TC_ORANGE,     TC_LIGHT_BROWN, TC_ORANGE,     TC_ORANGE, TC_YELLOW
5a63d41b59ea (svn r11374) -Codechange: Give meaning to the magical number that specifies the color of the text in a DrawString call.
belugas
parents: 7750
diff changeset
  1409
};
2261
d3554e5d3e86 (svn r2781) Fix some of the issues with variables in .h files.
ludde
parents: 2255
diff changeset
  1410
6247
7d81e3a5d803 (svn r9050) -Codechange: Foo(void) -> Foo()
rubidium
parents: 6239
diff changeset
  1411
void BuildFileList()
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1412
{
1596
483007886b59 (svn r2100) - Fix: [1024703]: Infinite access for A:\ (win32). Patch [1171208]. Only requery drive(s) if the user changes a directory, also surpress the OS error box that pops up on some windows machines. Tron + glx (and me)
darkvater
parents: 1594
diff changeset
  1413
	_fios_path_changed = true;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1414
	FiosFreeSavegameList();
4223
d4c9ef555f43 (svn r5767) - Cleanup: Improve upon the header file mess regarding fios. Move all relevant types from hal.h into fios.h, eliminate the unneccessary passing of a global variable, and extern variables in header files (declare in fios.c and misc_gui.c
Darkvater
parents: 4217
diff changeset
  1415
2549
5587f9a38563 (svn r3078) Some more stuff, which piled up:
tron
parents: 2535
diff changeset
  1416
	switch (_saveload_mode) {
5587f9a38563 (svn r3078) Some more stuff, which piled up:
tron
parents: 2535
diff changeset
  1417
		case SLD_NEW_GAME:
5587f9a38563 (svn r3078) Some more stuff, which piled up:
tron
parents: 2535
diff changeset
  1418
		case SLD_LOAD_SCENARIO:
5587f9a38563 (svn r3078) Some more stuff, which piled up:
tron
parents: 2535
diff changeset
  1419
		case SLD_SAVE_SCENARIO:
4223
d4c9ef555f43 (svn r5767) - Cleanup: Improve upon the header file mess regarding fios. Move all relevant types from hal.h into fios.h, eliminate the unneccessary passing of a global variable, and extern variables in header files (declare in fios.c and misc_gui.c
Darkvater
parents: 4217
diff changeset
  1420
			_fios_list = FiosGetScenarioList(_saveload_mode); break;
4300
c7e43c47a2b9 (svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
truelight
parents: 4299
diff changeset
  1421
		case SLD_LOAD_HEIGHTMAP:
c7e43c47a2b9 (svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
truelight
parents: 4299
diff changeset
  1422
			_fios_list = FiosGetHeightmapList(_saveload_mode); break;
2549
5587f9a38563 (svn r3078) Some more stuff, which piled up:
tron
parents: 2535
diff changeset
  1423
4223
d4c9ef555f43 (svn r5767) - Cleanup: Improve upon the header file mess regarding fios. Move all relevant types from hal.h into fios.h, eliminate the unneccessary passing of a global variable, and extern variables in header files (declare in fios.c and misc_gui.c
Darkvater
parents: 4217
diff changeset
  1424
		default: _fios_list = FiosGetSavegameList(_saveload_mode); break;
2549
5587f9a38563 (svn r3078) Some more stuff, which piled up:
tron
parents: 2535
diff changeset
  1425
	}
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1426
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1427
2100
217ea6fdfd18 (svn r2610) - Feature: set server map name to the loaded name of the game/scenario. Also truncate where neccessary
Darkvater
parents: 2070
diff changeset
  1428
static void DrawFiosTexts(uint maxw)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1429
{
1596
483007886b59 (svn r2100) - Fix: [1024703]: Infinite access for A:\ (win32). Patch [1171208]. Only requery drive(s) if the user changes a directory, also surpress the OS error box that pops up on some windows machines. Tron + glx (and me)
darkvater
parents: 1594
diff changeset
  1430
	static const char *path = NULL;
483007886b59 (svn r2100) - Fix: [1024703]: Infinite access for A:\ (win32). Patch [1171208]. Only requery drive(s) if the user changes a directory, also surpress the OS error box that pops up on some windows machines. Tron + glx (and me)
darkvater
parents: 1594
diff changeset
  1431
	static StringID str = STR_4006_UNABLE_TO_READ_DRIVE;
483007886b59 (svn r2100) - Fix: [1024703]: Infinite access for A:\ (win32). Patch [1171208]. Only requery drive(s) if the user changes a directory, also surpress the OS error box that pops up on some windows machines. Tron + glx (and me)
darkvater
parents: 1594
diff changeset
  1432
	static uint32 tot = 0;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1433
1596
483007886b59 (svn r2100) - Fix: [1024703]: Infinite access for A:\ (win32). Patch [1171208]. Only requery drive(s) if the user changes a directory, also surpress the OS error box that pops up on some windows machines. Tron + glx (and me)
darkvater
parents: 1594
diff changeset
  1434
	if (_fios_path_changed) {
483007886b59 (svn r2100) - Fix: [1024703]: Infinite access for A:\ (win32). Patch [1171208]. Only requery drive(s) if the user changes a directory, also surpress the OS error box that pops up on some windows machines. Tron + glx (and me)
darkvater
parents: 1594
diff changeset
  1435
		str = FiosGetDescText(&path, &tot);
483007886b59 (svn r2100) - Fix: [1024703]: Infinite access for A:\ (win32). Patch [1171208]. Only requery drive(s) if the user changes a directory, also surpress the OS error box that pops up on some windows machines. Tron + glx (and me)
darkvater
parents: 1594
diff changeset
  1436
		_fios_path_changed = false;
483007886b59 (svn r2100) - Fix: [1024703]: Infinite access for A:\ (win32). Patch [1171208]. Only requery drive(s) if the user changes a directory, also surpress the OS error box that pops up on some windows machines. Tron + glx (and me)
darkvater
parents: 1594
diff changeset
  1437
	}
483007886b59 (svn r2100) - Fix: [1024703]: Infinite access for A:\ (win32). Patch [1171208]. Only requery drive(s) if the user changes a directory, also surpress the OS error box that pops up on some windows machines. Tron + glx (and me)
darkvater
parents: 1594
diff changeset
  1438
483007886b59 (svn r2100) - Fix: [1024703]: Infinite access for A:\ (win32). Patch [1171208]. Only requery drive(s) if the user changes a directory, also surpress the OS error box that pops up on some windows machines. Tron + glx (and me)
darkvater
parents: 1594
diff changeset
  1439
	if (str != STR_4006_UNABLE_TO_READ_DRIVE) SetDParam(0, tot);
7824
5a63d41b59ea (svn r11374) -Codechange: Give meaning to the magical number that specifies the color of the text in a DrawString call.
belugas
parents: 7750
diff changeset
  1440
	DrawString(2, 37, str, TC_FROMSTRING);
5a63d41b59ea (svn r11374) -Codechange: Give meaning to the magical number that specifies the color of the text in a DrawString call.
belugas
parents: 7750
diff changeset
  1441
	DoDrawStringTruncated(path, 2, 27, TC_BLACK, maxw);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1442
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1443
6247
7d81e3a5d803 (svn r9050) -Codechange: Foo(void) -> Foo()
rubidium
parents: 6239
diff changeset
  1444
static void MakeSortedSaveGameList()
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1445
{
2631
2ed0eb408229 (svn r3173) Use the trinary operator and switch to improve readability
tron
parents: 2630
diff changeset
  1446
	uint sort_start = 0;
2ed0eb408229 (svn r3173) Use the trinary operator and switch to improve readability
tron
parents: 2630
diff changeset
  1447
	uint sort_end = 0;
2ed0eb408229 (svn r3173) Use the trinary operator and switch to improve readability
tron
parents: 2630
diff changeset
  1448
4171
5c6e60c392c3 (svn r5609) CodeChange : Apply coding style
belugas
parents: 4133
diff changeset
  1449
	/* Directories are always above the files (FIOS_TYPE_DIR)
5c6e60c392c3 (svn r5609) CodeChange : Apply coding style
belugas
parents: 4133
diff changeset
  1450
	 * Drives (A:\ (windows only) are always under the files (FIOS_TYPE_DRIVE)
5c6e60c392c3 (svn r5609) CodeChange : Apply coding style
belugas
parents: 4133
diff changeset
  1451
	 * Only sort savegames/scenarios, not directories
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1452
	 */
8819
e608a2ebe2b1 (svn r12565) -Cleanup: variable scope in misc\*.cpp
smatz
parents: 8809
diff changeset
  1453
	for (int i = 0; i < _fios_num; i++) {
2631
2ed0eb408229 (svn r3173) Use the trinary operator and switch to improve readability
tron
parents: 2630
diff changeset
  1454
		switch (_fios_list[i].type) {
2ed0eb408229 (svn r3173) Use the trinary operator and switch to improve readability
tron
parents: 2630
diff changeset
  1455
			case FIOS_TYPE_DIR:    sort_start++; break;
2ed0eb408229 (svn r3173) Use the trinary operator and switch to improve readability
tron
parents: 2630
diff changeset
  1456
			case FIOS_TYPE_PARENT: sort_start++; break;
2ed0eb408229 (svn r3173) Use the trinary operator and switch to improve readability
tron
parents: 2630
diff changeset
  1457
			case FIOS_TYPE_DRIVE:  sort_end++;   break;
2ed0eb408229 (svn r3173) Use the trinary operator and switch to improve readability
tron
parents: 2630
diff changeset
  1458
		}
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1459
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1460
8819
e608a2ebe2b1 (svn r12565) -Cleanup: variable scope in misc\*.cpp
smatz
parents: 8809
diff changeset
  1461
	uint s_amount = _fios_num - sort_start - sort_end;
e608a2ebe2b1 (svn r12565) -Cleanup: variable scope in misc\*.cpp
smatz
parents: 8809
diff changeset
  1462
	if (s_amount > 0) {
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1463
		qsort(_fios_list + sort_start, s_amount, sizeof(FiosItem), compare_FiosItems);
8819
e608a2ebe2b1 (svn r12565) -Cleanup: variable scope in misc\*.cpp
smatz
parents: 8809
diff changeset
  1464
	}
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1465
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1466
6247
7d81e3a5d803 (svn r9050) -Codechange: Foo(void) -> Foo()
rubidium
parents: 6239
diff changeset
  1467
static void GenerateFileName()
402
457f7c7022e3 (svn r594) -Fix/Feature: [ 1066121 ] Resetting file name after deleting a file
tron
parents: 390
diff changeset
  1468
{
8748
72c372800b54 (svn r12444) -Fix: A little typo
belugas
parents: 8738
diff changeset
  1469
	/* Check if we are not a spectator who wants to generate a name..
635
38f9209f5caa (svn r1066) -Fix: Crash when saving game as spectator (tnx to GeniusDex for reporting)
truelight
parents: 606
diff changeset
  1470
	    Let's use the name of player #0 for now. */
5587
167d9a91ef02 (svn r8038) -Merge: the cpp branch. Effort of KUDr, Celestar, glx, Smoovius, stillunknown and pv2b.
rubidium
parents: 5584
diff changeset
  1471
	const Player *p = GetPlayer(IsValidPlayer(_local_player) ? _local_player : PLAYER_FIRST);
635
38f9209f5caa (svn r1066) -Fix: Crash when saving game as spectator (tnx to GeniusDex for reporting)
truelight
parents: 606
diff changeset
  1472
7058
8105bb13ce3d (svn r10323) -Codechange: reference company name, number and player (president) name
peter1138
parents: 7046
diff changeset
  1473
	SetDParam(0, p->index);
8105bb13ce3d (svn r10323) -Codechange: reference company name, number and player (president) name
peter1138
parents: 7046
diff changeset
  1474
	SetDParam(1, _date);
4912
0f51b47cb983 (svn r6884) -Codechange: Add strict bounds checking in string formatting system.
Darkvater
parents: 4909
diff changeset
  1475
	GetString(_edit_str_buf, STR_4004, lastof(_edit_str_buf));
6875
e517a59b78e5 (svn r10116) -Fix [FS#850]: remove invalid characters (for the file system) from savegame names. Based on a patch by TheJosh.
rubidium
parents: 6691
diff changeset
  1476
	SanitizeFilename(_edit_str_buf);
402
457f7c7022e3 (svn r594) -Fix/Feature: [ 1066121 ] Resetting file name after deleting a file
tron
parents: 390
diff changeset
  1477
}
457f7c7022e3 (svn r594) -Fix/Feature: [ 1066121 ] Resetting file name after deleting a file
tron
parents: 390
diff changeset
  1478
6247
7d81e3a5d803 (svn r9050) -Codechange: Foo(void) -> Foo()
rubidium
parents: 6239
diff changeset
  1479
extern void StartupEngines();
1131
305545b1f671 (svn r1632) -Fix: [1108008] Scenario creation bug; engines are of correct year when scenario is saved
darkvater
parents: 1126
diff changeset
  1480
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1481
static void SaveLoadDlgWndProc(Window *w, WindowEvent *e)
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1482
{
2559
fe757666278c (svn r3096) - Feature: 'HOME' icon to saveload dialogs that jumps to the default save/load directory based on the dialog (added icon to openttd.grf, introduced FIOS_TYPE_DIRECT that allows arbitrary directory jumping).
Darkvater
parents: 2549
diff changeset
  1483
	static FiosItem o_dir;
fe757666278c (svn r3096) - Feature: 'HOME' icon to saveload dialogs that jumps to the default save/load directory based on the dialog (added icon to openttd.grf, introduced FIOS_TYPE_DIRECT that allows arbitrary directory jumping).
Darkvater
parents: 2549
diff changeset
  1484
fe757666278c (svn r3096) - Feature: 'HOME' icon to saveload dialogs that jumps to the default save/load directory based on the dialog (added icon to openttd.grf, introduced FIOS_TYPE_DIRECT that allows arbitrary directory jumping).
Darkvater
parents: 2549
diff changeset
  1485
	switch (e->event) {
8738
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1486
		case WE_CREATE: // Set up OPENTTD button
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1487
			w->vscroll.cap = 10;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1488
			w->resize.step_width = 2;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1489
			w->resize.step_height = 10;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1490
8738
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1491
			o_dir.type = FIOS_TYPE_DIRECT;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1492
			switch (_saveload_mode) {
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1493
				case SLD_SAVE_GAME:
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1494
				case SLD_LOAD_GAME:
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1495
					FioGetDirectory(o_dir.name, lengthof(o_dir.name), SAVE_DIR);
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1496
					break;
4000
4009d092b306 (svn r5210) Many small changes which piled up: const, unsigned, variable scope, CSE for readability, DeMorgan, if cascades -> switch, whitespace, parentheses, bracing, misc.
tron
parents: 3890
diff changeset
  1497
8738
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1498
				case SLD_SAVE_SCENARIO:
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1499
				case SLD_LOAD_SCENARIO:
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1500
					FioGetDirectory(o_dir.name, lengthof(o_dir.name), SCENARIO_DIR);
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1501
					break;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1502
8738
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1503
				case SLD_LOAD_HEIGHTMAP:
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1504
					FioGetDirectory(o_dir.name, lengthof(o_dir.name), HEIGHTMAP_DIR);
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1505
					break;
4000
4009d092b306 (svn r5210) Many small changes which piled up: const, unsigned, variable scope, CSE for readability, DeMorgan, if cascades -> switch, whitespace, parentheses, bracing, misc.
tron
parents: 3890
diff changeset
  1506
8738
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1507
				default:
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1508
					ttd_strlcpy(o_dir.name, _personal_dir, lengthof(o_dir.name));
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1509
			}
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1510
			break;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1511
8738
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1512
		case WE_PAINT: {
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1513
			int pos;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1514
			int y;
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 179
diff changeset
  1515
8738
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1516
			SetVScrollCount(w, _fios_num);
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1517
			DrawWindowWidgets(w);
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1518
			DrawFiosTexts(w->width);
2100
217ea6fdfd18 (svn r2610) - Feature: set server map name to the loaded name of the game/scenario. Also truncate where neccessary
Darkvater
parents: 2070
diff changeset
  1519
8738
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1520
			if (_savegame_sort_dirty) {
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1521
				_savegame_sort_dirty = false;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1522
				MakeSortedSaveGameList();
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1523
			}
4300
c7e43c47a2b9 (svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
truelight
parents: 4299
diff changeset
  1524
8738
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1525
			GfxFillRect(w->widget[7].left + 1, w->widget[7].top + 1, w->widget[7].right, w->widget[7].bottom, 0xD7);
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1526
			DrawSortButtonState(w, _savegame_sort_order & SORT_BY_NAME ? 2 : 3, _savegame_sort_order & SORT_DESCENDING ? SBS_DOWN : SBS_UP);
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1527
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1528
			y = w->widget[7].top + 1;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1529
			for (pos = w->vscroll.pos; pos < _fios_num; pos++) {
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1530
				const FiosItem *item = _fios_list + pos;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1531
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1532
				DoDrawStringTruncated(item->title, 4, y, _fios_colors[item->type], w->width - 18);
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1533
				y += 10;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1534
				if (y >= w->vscroll.cap * 10 + w->widget[7].top + 1) break;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1535
			}
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1536
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1537
			if (_saveload_mode == SLD_SAVE_GAME || _saveload_mode == SLD_SAVE_SCENARIO) {
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1538
				DrawEditBox(w, &WP(w, querystr_d), 10);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1539
			}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1540
			break;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1541
		}
2559
fe757666278c (svn r3096) - Feature: 'HOME' icon to saveload dialogs that jumps to the default save/load directory based on the dialog (added icon to openttd.grf, introduced FIOS_TYPE_DIRECT that allows arbitrary directory jumping).
Darkvater
parents: 2549
diff changeset
  1542
8738
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1543
		case WE_CLICK:
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1544
			switch (e->we.click.widget) {
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1545
				case 2: // Sort save names by name
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1546
					_savegame_sort_order = (_savegame_sort_order == SORT_BY_NAME) ?
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1547
						SORT_BY_NAME | SORT_DESCENDING : SORT_BY_NAME;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1548
					_savegame_sort_dirty = true;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1549
					SetWindowDirty(w);
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1550
					break;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1551
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1552
				case 3: // Sort save names by date
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1553
					_savegame_sort_order = (_savegame_sort_order == SORT_BY_DATE) ?
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1554
						SORT_BY_DATE | SORT_DESCENDING : SORT_BY_DATE;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1555
					_savegame_sort_dirty = true;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1556
					SetWindowDirty(w);
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1557
					break;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1558
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1559
				case 6: // OpenTTD 'button', jumps to OpenTTD directory
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1560
					FiosBrowseTo(&o_dir);
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1561
					SetWindowDirty(w);
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1562
					BuildFileList();
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1563
					break;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1564
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1565
				case 7: { // Click the listbox
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1566
					int y = (e->we.click.pt.y - w->widget[e->we.click.widget].top - 1) / 10;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1567
					char *name;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1568
					const FiosItem *file;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1569
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1570
					if (y < 0 || (y += w->vscroll.pos) >= w->vscroll.count) return;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1571
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1572
					file = _fios_list + y;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1573
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1574
					name = FiosBrowseTo(file);
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1575
					if (name != NULL) {
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1576
						if (_saveload_mode == SLD_LOAD_GAME || _saveload_mode == SLD_LOAD_SCENARIO) {
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1577
							_switch_mode = (_game_mode == GM_EDITOR) ? SM_LOAD_SCENARIO : SM_LOAD;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1578
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1579
							SetFiosType(file->type);
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1580
							ttd_strlcpy(_file_to_saveload.name, name, sizeof(_file_to_saveload.name));
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1581
							ttd_strlcpy(_file_to_saveload.title, file->title, sizeof(_file_to_saveload.title));
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1582
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1583
							DeleteWindow(w);
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1584
						} else if (_saveload_mode == SLD_LOAD_HEIGHTMAP) {
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1585
							SetFiosType(file->type);
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1586
							ttd_strlcpy(_file_to_saveload.name, name, sizeof(_file_to_saveload.name));
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1587
							ttd_strlcpy(_file_to_saveload.title, file->title, sizeof(_file_to_saveload.title));
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1588
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1589
							DeleteWindow(w);
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1590
							ShowHeightmapLoad();
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1591
						} else {
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1592
							/* SLD_SAVE_GAME, SLD_SAVE_SCENARIO copy clicked name to editbox */
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1593
							ttd_strlcpy(WP(w, querystr_d).text.buf, file->title, WP(w, querystr_d).text.maxlength);
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1594
							UpdateTextBufferSize(&WP(w, querystr_d).text);
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1595
							w->InvalidateWidget(10);
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1596
						}
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1597
					} else {
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1598
						/* Changed directory, need repaint. */
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1599
						SetWindowDirty(w);
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1600
						BuildFileList();
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1601
					}
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1602
					break;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1603
				}
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1604
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1605
				case 10: // edit box
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1606
					ShowOnScreenKeyboard(w, &WP(w, querystr_d), e->we.click.widget, 0, 0);
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1607
					break;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1608
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1609
				case 11: case 12: // Delete, Save game
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1610
					break;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1611
			}
8737
4405e2e80db6 (svn r12425) -Feature [FS#1846]: On Screen Keyboard for input fields so someone without a keyboard can enter text too. Patch by Dominik.
rubidium
parents: 8715
diff changeset
  1612
			break;
4405e2e80db6 (svn r12425) -Feature [FS#1846]: On Screen Keyboard for input fields so someone without a keyboard can enter text too. Patch by Dominik.
rubidium
parents: 8715
diff changeset
  1613
8738
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1614
		case WE_MOUSELOOP:
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1615
			if (_saveload_mode == SLD_SAVE_GAME || _saveload_mode == SLD_SAVE_SCENARIO) {
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1616
				HandleEditBox(w, &WP(w, querystr_d), 10);
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1617
			}
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1618
			break;
2165
ae3653f5ee34 (svn r2675) - Fix: pressing enter on a load-window resulted in saving the game (Luca)
Darkvater
parents: 2163
diff changeset
  1619
8738
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1620
		case WE_KEYPRESS:
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1621
			if (e->we.keypress.keycode == WKC_ESC) {
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1622
				DeleteWindow(w);
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1623
				return;
2255
fd5d5adee9d9 (svn r2775) Deleting a file can fail, display an error message when it happens
tron
parents: 2201
diff changeset
  1624
			}
3288
5e0c047edca4 (svn r4002) - Fix: Use the title of a savegame in the saveload dialog-editbox. This gets rid of the '.sav' appended to each game as well as properly showing UTF-8 saves when this is implemented. Also don't change the text if the save has failed.
Darkvater
parents: 3287
diff changeset
  1625
8738
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1626
			if ((_saveload_mode == SLD_SAVE_GAME || _saveload_mode == SLD_SAVE_SCENARIO) &&
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1627
					HandleEditBoxKey(w, &WP(w, querystr_d), 10, e) == 1) { // Press Enter
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1628
				w->HandleButtonClick(12);
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1629
			}
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1630
			break;
1131
305545b1f671 (svn r1632) -Fix: [1108008] Scenario creation bug; engines are of correct year when scenario is saved
darkvater
parents: 1126
diff changeset
  1631
8738
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1632
		case WE_TIMEOUT:
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1633
			/* This test protects against using widgets 11 and 12 which are only available
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1634
			* in those two saveload mode  */
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1635
			if (!(_saveload_mode == SLD_SAVE_GAME || _saveload_mode == SLD_SAVE_SCENARIO)) break;
867
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 860
diff changeset
  1636
8738
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1637
			if (w->IsWidgetLowered(11)) { // Delete button clicked
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1638
				if (!FiosDelete(WP(w, querystr_d).text.buf)) {
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1639
					ShowErrorMessage(INVALID_STRING_ID, STR_4008_UNABLE_TO_DELETE_FILE, 0, 0);
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1640
				} else {
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1641
					BuildFileList();
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1642
					/* Reset file name to current date on successful delete */
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1643
					if (_saveload_mode == SLD_SAVE_GAME) GenerateFileName();
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1644
				}
867
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 860
diff changeset
  1645
8738
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1646
				UpdateTextBufferSize(&WP(w, querystr_d).text);
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1647
				SetWindowDirty(w);
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1648
			} else if (w->IsWidgetLowered(12)) { // Save button clicked
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1649
				_switch_mode = SM_SAVE;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1650
				FiosMakeSavegameName(_file_to_saveload.name, WP(w, querystr_d).text.buf, sizeof(_file_to_saveload.name));
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1651
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1652
				/* In the editor set up the vehicle engines correctly (date might have changed) */
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1653
				if (_game_mode == GM_EDITOR) StartupEngines();
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1654
			}
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1655
			break;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1656
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1657
		case WE_DESTROY:
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1658
			/* pause is only used in single-player, non-editor mode, non menu mode */
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1659
			if (!_networking && _game_mode != GM_EDITOR && _game_mode != GM_MENU) {
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1660
				if (_pause_game >= 0) DoCommandP(0, 0, 0, NULL, CMD_PAUSE);
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1661
			}
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1662
			FiosFreeSavegameList();
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1663
			ClrBit(_no_scroll, SCROLL_SAVE);
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1664
			break;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1665
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1666
		case WE_RESIZE: {
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1667
			/* Widget 2 and 3 have to go with halve speed, make it so obiwan */
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1668
			uint diff = e->we.sizing.diff.x / 2;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1669
			w->widget[2].right += diff;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1670
			w->widget[3].left  += diff;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1671
			w->widget[3].right += e->we.sizing.diff.x;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1672
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1673
			/* Same for widget 11 and 12 in save-dialog */
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1674
			if (_saveload_mode == SLD_SAVE_GAME || _saveload_mode == SLD_SAVE_SCENARIO) {
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1675
				w->widget[11].right += diff;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1676
				w->widget[12].left  += diff;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1677
				w->widget[12].right += e->we.sizing.diff.x;
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1678
			}
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1679
05aca6d9471b (svn r12426) -Cleanup: sprinkle some coding style over a few files.
rubidium
parents: 8737
diff changeset
  1680
			w->vscroll.cap += e->we.sizing.diff.y / 10;
867
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 860
diff changeset
  1681
		} break;
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 179
diff changeset
  1682
	}
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1683
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1684
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1685
static const WindowDesc _load_dialog_desc = {
7346
dcfda6aa096f (svn r10709) -Codechange: allow automatic downsizing of the load game/save game windows. These windows also already supported downsizing, but again the resize button would be unreachable.
rubidium
parents: 7341
diff changeset
  1686
	WDP_CENTER, WDP_CENTER, 257, 154, 257, 294,
5893
7e431a4abebb (svn r8511) -Codechange: make WindowClass an enumerated value.
rubidium
parents: 5750
diff changeset
  1687
	WC_SAVELOAD, WC_NONE,
8019
fc0e94dee165 (svn r11579) -Revert(r11578): some cases of key propagation are not handled correctly.
belugas
parents: 8018
diff changeset
  1688
	WDF_STD_TOOLTIPS | WDF_DEF_WIDGET | WDF_STD_BTN | WDF_UNCLICK_BUTTONS | WDF_RESIZABLE,
5079
15816766b4ee (svn r7143) -CodeChange: remove redondancy in saveload dialogs
glx
parents: 5070
diff changeset
  1689
	_load_dialog_widgets,
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1690
	SaveLoadDlgWndProc,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1691
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1692
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1693
static const WindowDesc _save_dialog_desc = {
7346
dcfda6aa096f (svn r10709) -Codechange: allow automatic downsizing of the load game/save game windows. These windows also already supported downsizing, but again the resize button would be unreachable.
rubidium
parents: 7341
diff changeset
  1694
	WDP_CENTER, WDP_CENTER, 257, 180, 257, 320,
5893
7e431a4abebb (svn r8511) -Codechange: make WindowClass an enumerated value.
rubidium
parents: 5750
diff changeset
  1695
	WC_SAVELOAD, WC_NONE,
8019
fc0e94dee165 (svn r11579) -Revert(r11578): some cases of key propagation are not handled correctly.
belugas
parents: 8018
diff changeset
  1696
	WDF_STD_TOOLTIPS | WDF_DEF_WIDGET | WDF_STD_BTN | WDF_UNCLICK_BUTTONS | WDF_RESIZABLE,
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1697
	_save_dialog_widgets,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1698
	SaveLoadDlgWndProc,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1699
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1700
8152
ab21de45f8ab (svn r11714) -Fix[FS#1569]: Do not allow player inauguration date on scenarios to be bigger than current year.
belugas
parents: 8149
diff changeset
  1701
/** These values are used to convert the file/operations mode into a corresponding file type.
ab21de45f8ab (svn r11714) -Fix[FS#1569]: Do not allow player inauguration date on scenarios to be bigger than current year.
belugas
parents: 8149
diff changeset
  1702
 * So each entry, as expressed by the related comment, is based on the enum   */
ab21de45f8ab (svn r11714) -Fix[FS#1569]: Do not allow player inauguration date on scenarios to be bigger than current year.
belugas
parents: 8149
diff changeset
  1703
static const FileType _file_modetotype[] = {
ab21de45f8ab (svn r11714) -Fix[FS#1569]: Do not allow player inauguration date on scenarios to be bigger than current year.
belugas
parents: 8149
diff changeset
  1704
	FT_SAVEGAME,  ///< used for SLD_LOAD_GAME
ab21de45f8ab (svn r11714) -Fix[FS#1569]: Do not allow player inauguration date on scenarios to be bigger than current year.
belugas
parents: 8149
diff changeset
  1705
	FT_SCENARIO,  ///< used for SLD_LOAD_SCENARIO
ab21de45f8ab (svn r11714) -Fix[FS#1569]: Do not allow player inauguration date on scenarios to be bigger than current year.
belugas
parents: 8149
diff changeset
  1706
	FT_SAVEGAME,  ///< used for SLD_SAVE_GAME
ab21de45f8ab (svn r11714) -Fix[FS#1569]: Do not allow player inauguration date on scenarios to be bigger than current year.
belugas
parents: 8149
diff changeset
  1707
	FT_SCENARIO,  ///< used for SLD_SAVE_SCENARIO
ab21de45f8ab (svn r11714) -Fix[FS#1569]: Do not allow player inauguration date on scenarios to be bigger than current year.
belugas
parents: 8149
diff changeset
  1708
	FT_HEIGHTMAP, ///< used for SLD_LOAD_HEIGHTMAP
ab21de45f8ab (svn r11714) -Fix[FS#1569]: Do not allow player inauguration date on scenarios to be bigger than current year.
belugas
parents: 8149
diff changeset
  1709
	FT_SAVEGAME,  ///< SLD_NEW_GAME
ab21de45f8ab (svn r11714) -Fix[FS#1569]: Do not allow player inauguration date on scenarios to be bigger than current year.
belugas
parents: 8149
diff changeset
  1710
};
ab21de45f8ab (svn r11714) -Fix[FS#1569]: Do not allow player inauguration date on scenarios to be bigger than current year.
belugas
parents: 8149
diff changeset
  1711
8149
1b1390cb0844 (svn r11711) -Codechange: Name the Save Load Dialog Mode enum
belugas
parents: 8144
diff changeset
  1712
void ShowSaveLoadDialog(SaveLoadDialogMode mode)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1713
{
5079
15816766b4ee (svn r7143) -CodeChange: remove redondancy in saveload dialogs
glx
parents: 5070
diff changeset
  1714
	static const StringID saveload_captions[] = {
15816766b4ee (svn r7143) -CodeChange: remove redondancy in saveload dialogs
glx
parents: 5070
diff changeset
  1715
		STR_4001_LOAD_GAME,
15816766b4ee (svn r7143) -CodeChange: remove redondancy in saveload dialogs
glx
parents: 5070
diff changeset
  1716
		STR_0298_LOAD_SCENARIO,
15816766b4ee (svn r7143) -CodeChange: remove redondancy in saveload dialogs
glx
parents: 5070
diff changeset
  1717
		STR_4000_SAVE_GAME,
15816766b4ee (svn r7143) -CodeChange: remove redondancy in saveload dialogs
glx
parents: 5070
diff changeset
  1718
		STR_0299_SAVE_SCENARIO,
8424
c3477565c975 (svn r11994) -Codechange: Remove numbers from string names where the strings aren't present in TTD, since they don't correspond to either TTD's TextIDs or OpenTTD's StringIDs.
maedhros
parents: 8423
diff changeset
  1719
		STR_LOAD_HEIGHTMAP,
5079
15816766b4ee (svn r7143) -CodeChange: remove redondancy in saveload dialogs
glx
parents: 5070
diff changeset
  1720
	};
15816766b4ee (svn r7143) -CodeChange: remove redondancy in saveload dialogs
glx
parents: 5070
diff changeset
  1721
15816766b4ee (svn r7143) -CodeChange: remove redondancy in saveload dialogs
glx
parents: 5070
diff changeset
  1722
	const WindowDesc *sld = &_save_dialog_desc;
15816766b4ee (svn r7143) -CodeChange: remove redondancy in saveload dialogs
glx
parents: 5070
diff changeset
  1723
7889
e74ce8853ba7 (svn r11440) -Codechange: replace magic numbers with enumified WindowHighlightMode constants. Patch by SmatZ.
rubidium
parents: 7859
diff changeset
  1724
	SetObjectToPlace(SPR_CURSOR_ZZZ, PAL_NONE, VHM_NONE, WC_MAIN_WINDOW, 0);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1725
	DeleteWindowById(WC_QUERY_STRING, 0);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1726
	DeleteWindowById(WC_SAVELOAD, 0);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1727
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1728
	_saveload_mode = mode;
7931
b0a46cd92225 (svn r11484) -Codechange: Remove the doubled function SetBitT and rename the remaining to fit with the naming style
skidd13
parents: 7929
diff changeset
  1729
	SetBit(_no_scroll, SCROLL_SAVE);
1397
fa8539dcab46 (svn r1901) - Fix: unwanted behaviour of the savegame dialog, as well as a bug with a sloppy termination of a string. When any editbox is open, scrolling is disabled. If any new types of editboxes come up, please use SET/CLRBIT of _no_scroll with its unique identifier (ttd.h)
Darkvater
parents: 1392
diff changeset
  1730
8152
ab21de45f8ab (svn r11714) -Fix[FS#1569]: Do not allow player inauguration date on scenarios to be bigger than current year.
belugas
parents: 8149
diff changeset
  1731
	/* Use an array to define what will be the current file type being handled
ab21de45f8ab (svn r11714) -Fix[FS#1569]: Do not allow player inauguration date on scenarios to be bigger than current year.
belugas
parents: 8149
diff changeset
  1732
	 * by current file mode */
ab21de45f8ab (svn r11714) -Fix[FS#1569]: Do not allow player inauguration date on scenarios to be bigger than current year.
belugas
parents: 8149
diff changeset
  1733
	_file_to_saveload.filetype = _file_modetotype[mode];
1397
fa8539dcab46 (svn r1901) - Fix: unwanted behaviour of the savegame dialog, as well as a bug with a sloppy termination of a string. When any editbox is open, scrolling is disabled. If any new types of editboxes come up, please use SET/CLRBIT of _no_scroll with its unique identifier (ttd.h)
Darkvater
parents: 1392
diff changeset
  1734
	switch (mode) {
2631
2ed0eb408229 (svn r3173) Use the trinary operator and switch to improve readability
tron
parents: 2630
diff changeset
  1735
		case SLD_SAVE_GAME:     GenerateFileName(); break;
2ed0eb408229 (svn r3173) Use the trinary operator and switch to improve readability
tron
parents: 2630
diff changeset
  1736
		case SLD_SAVE_SCENARIO: strcpy(_edit_str_buf, "UNNAMED"); break;
5079
15816766b4ee (svn r7143) -CodeChange: remove redondancy in saveload dialogs
glx
parents: 5070
diff changeset
  1737
		default:                sld = &_load_dialog_desc; break;
1397
fa8539dcab46 (svn r1901) - Fix: unwanted behaviour of the savegame dialog, as well as a bug with a sloppy termination of a string. When any editbox is open, scrolling is disabled. If any new types of editboxes come up, please use SET/CLRBIT of _no_scroll with its unique identifier (ttd.h)
Darkvater
parents: 1392
diff changeset
  1738
	}
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1739
5079
15816766b4ee (svn r7143) -CodeChange: remove redondancy in saveload dialogs
glx
parents: 5070
diff changeset
  1740
	assert((uint)mode < lengthof(saveload_captions));
8819
e608a2ebe2b1 (svn r12565) -Cleanup: variable scope in misc\*.cpp
smatz
parents: 8809
diff changeset
  1741
e608a2ebe2b1 (svn r12565) -Cleanup: variable scope in misc\*.cpp
smatz
parents: 8809
diff changeset
  1742
	Window *w = AllocateWindowDesc(sld);
5079
15816766b4ee (svn r7143) -CodeChange: remove redondancy in saveload dialogs
glx
parents: 5070
diff changeset
  1743
	w->widget[1].data = saveload_captions[mode];
7997
df87ccd00a96 (svn r11555) -Codechange: use the new members introduced in r11551.
rubidium
parents: 7954
diff changeset
  1744
	w->LowerWidget(7);
4948
22ff05c1a3b1 (svn r6937) -Codechange: Add an InitializeTextBuffer() function that handles setting up the
Darkvater
parents: 4939
diff changeset
  1745
22ff05c1a3b1 (svn r6937) -Codechange: Add an InitializeTextBuffer() function that handles setting up the
Darkvater
parents: 4939
diff changeset
  1746
	WP(w, querystr_d).afilter = CS_ALPHANUMERAL;
22ff05c1a3b1 (svn r6937) -Codechange: Add an InitializeTextBuffer() function that handles setting up the
Darkvater
parents: 4939
diff changeset
  1747
	InitializeTextBuffer(&WP(w, querystr_d).text, _edit_str_buf, lengthof(_edit_str_buf), 240);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1748
6201
bee01dc45e39 (svn r8987) -Cleanup: doxygen changes. Again. Mostly (still) @files missing tags and (more than just) a few comments style.
belugas
parents: 6197
diff changeset
  1749
	/* pause is only used in single-player, non-editor mode, non-menu mode. It
bee01dc45e39 (svn r8987) -Cleanup: doxygen changes. Again. Mostly (still) @files missing tags and (more than just) a few comments style.
belugas
parents: 6197
diff changeset
  1750
	 * will be unpaused in the WE_DESTROY event handler. */
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2631
diff changeset
  1751
	if (_game_mode != GM_MENU && !_networking && _game_mode != GM_EDITOR) {
8671
577d7a43978b (svn r12336) -Fix [FS#1733]: Don't pause/unpause the game when showing load/save windows when the game is paused due to missing GRFs.
peter1138
parents: 8623
diff changeset
  1752
		if (_pause_game >= 0) DoCommandP(0, 1, 0, NULL, CMD_PAUSE);
2639
eeaefdabfdfd (svn r3181) -Bracing
tron
parents: 2631
diff changeset
  1753
	}
278
a0a9b0d903aa (svn r284) Fix: on opening the saveload dialog the game pauses again in single player games
dominik
parents: 258
diff changeset
  1754
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1755
	BuildFileList();
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1756
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1757
	ResetObjectToPlace();
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1758
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1759
6247
7d81e3a5d803 (svn r9050) -Codechange: Foo(void) -> Foo()
rubidium
parents: 6239
diff changeset
  1760
void RedrawAutosave()
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1761
{
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1762
	SetWindowDirty(FindWindowById(WC_STATUS_BAR, 0));
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1763
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1764
543
946badd71033 (svn r942) -Merged branch/network back into the trunk
truelight
parents: 541
diff changeset
  1765
void SetFiosType(const byte fiostype)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1766
{
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1767
	switch (fiostype) {
2549
5587f9a38563 (svn r3078) Some more stuff, which piled up:
tron
parents: 2535
diff changeset
  1768
		case FIOS_TYPE_FILE:
5587f9a38563 (svn r3078) Some more stuff, which piled up:
tron
parents: 2535
diff changeset
  1769
		case FIOS_TYPE_SCENARIO:
5587f9a38563 (svn r3078) Some more stuff, which piled up:
tron
parents: 2535
diff changeset
  1770
			_file_to_saveload.mode = SL_LOAD;
5587f9a38563 (svn r3078) Some more stuff, which piled up:
tron
parents: 2535
diff changeset
  1771
			break;
5587f9a38563 (svn r3078) Some more stuff, which piled up:
tron
parents: 2535
diff changeset
  1772
5587f9a38563 (svn r3078) Some more stuff, which piled up:
tron
parents: 2535
diff changeset
  1773
		case FIOS_TYPE_OLDFILE:
5587f9a38563 (svn r3078) Some more stuff, which piled up:
tron
parents: 2535
diff changeset
  1774
		case FIOS_TYPE_OLD_SCENARIO:
5587f9a38563 (svn r3078) Some more stuff, which piled up:
tron
parents: 2535
diff changeset
  1775
			_file_to_saveload.mode = SL_OLD_LOAD;
5587f9a38563 (svn r3078) Some more stuff, which piled up:
tron
parents: 2535
diff changeset
  1776
			break;
5587f9a38563 (svn r3078) Some more stuff, which piled up:
tron
parents: 2535
diff changeset
  1777
4300
c7e43c47a2b9 (svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
truelight
parents: 4299
diff changeset
  1778
#ifdef WITH_PNG
c7e43c47a2b9 (svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
truelight
parents: 4299
diff changeset
  1779
		case FIOS_TYPE_PNG:
c7e43c47a2b9 (svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
truelight
parents: 4299
diff changeset
  1780
			_file_to_saveload.mode = SL_PNG;
c7e43c47a2b9 (svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
truelight
parents: 4299
diff changeset
  1781
			break;
c7e43c47a2b9 (svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
truelight
parents: 4299
diff changeset
  1782
#endif /* WITH_PNG */
c7e43c47a2b9 (svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
truelight
parents: 4299
diff changeset
  1783
c7e43c47a2b9 (svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
truelight
parents: 4299
diff changeset
  1784
		case FIOS_TYPE_BMP:
c7e43c47a2b9 (svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
truelight
parents: 4299
diff changeset
  1785
			_file_to_saveload.mode = SL_BMP;
c7e43c47a2b9 (svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
truelight
parents: 4299
diff changeset
  1786
			break;
c7e43c47a2b9 (svn r5946) -Add: merged the TGP branch to mainline. TGP adds:
truelight
parents: 4299
diff changeset
  1787
2549
5587f9a38563 (svn r3078) Some more stuff, which piled up:
tron
parents: 2535
diff changeset
  1788
		default:
5587f9a38563 (svn r3078) Some more stuff, which piled up:
tron
parents: 2535
diff changeset
  1789
			_file_to_saveload.mode = SL_INVALID;
5587f9a38563 (svn r3078) Some more stuff, which piled up:
tron
parents: 2535
diff changeset
  1790
			break;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1791
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
  1792
}