src/newgrf_gui.cpp
author rubidium
Sun, 25 May 2008 19:17:03 +0000
changeset 9354 845e07db4549
parent 9317 f14eb8815829
child 9457 75f11a6caef8
permissions -rw-r--r--
(svn r13251) -Codechange: rename _patches to _settings as that is more logic.
-Codechange: move all Settings into substructs of _settings in a way that they are logically grouped.
5237
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
     1
/* $Id$ */
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
     2
9111
48ce04029fe4 (svn r12971) -Documentation: add @file in files that missed them and add something more than whitespace as description of files that don't have a description.
rubidium
parents: 8749
diff changeset
     3
/** @file newgrf_gui.cpp GUI to change NewGRF settings. */
6348
6dd01da7a02b (svn r9385) -Cleanup: doxygen changes. Today, we are exploring the letter N.
belugas
parents: 6248
diff changeset
     4
5237
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
     5
#include "stdafx.h"
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
     6
#include "openttd.h"
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
     7
#include "variables.h"
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
     8
#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
     9
#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
    10
#include "textbuf_gui.h"
5352
86fca6a41aa1 (svn r7523) -Feature: Add the possibility to change the newgrf configuration of a running game.
Darkvater
parents: 5345
diff changeset
    11
#include "newgrf.h"
5237
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
    12
#include "newgrf_config.h"
8114
dd6d21dc99c1 (svn r11675) -Codechange: split the string types from the string functions.
rubidium
parents: 8107
diff changeset
    13
#include "strings_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: 8130
diff changeset
    14
#include "window_func.h"
8213
7bdd7593eb9b (svn r11776) -Codechange: more header splittings to reduce the dependencies.
rubidium
parents: 8131
diff changeset
    15
#include "core/alloc_func.hpp"
8214
971f861d5543 (svn r11777) -Codechange: split the string header and make do not include it when it's not necessary.
rubidium
parents: 8213
diff changeset
    16
#include "string_func.h"
8224
c5a64d87cc54 (svn r11787) -Codechange: more header rewrites. This time related to viewport.h.
rubidium
parents: 8214
diff changeset
    17
#include "gfx_func.h"
5237
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
    18
8264
b1e85998c7d3 (svn r11828) -Codechange: include table/* as the last includes and remove an unneeded include from openttd.h.
rubidium
parents: 8224
diff changeset
    19
#include "table/strings.h"
b1e85998c7d3 (svn r11828) -Codechange: include table/* as the last includes and remove an unneeded include from openttd.h.
rubidium
parents: 8224
diff changeset
    20
#include "table/sprites.h"
b1e85998c7d3 (svn r11828) -Codechange: include table/* as the last includes and remove an unneeded include from openttd.h.
rubidium
parents: 8224
diff changeset
    21
5237
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
    22
/** Parse an integerlist string and set each found value
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
    23
 * @param p the string to be parsed. Each element in the list is seperated by a
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
    24
 * comma or a space character
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
    25
 * @param items pointer to the integerlist-array that will be filled with values
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
    26
 * @param maxitems the maximum number of elements the integerlist-array has
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
    27
 * @return returns the number of items found, or -1 on an error */
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
    28
static int parse_intlist(const char *p, int *items, int maxitems)
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
    29
{
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
    30
	int n = 0, v;
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
    31
	char *end;
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
    32
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
    33
	for (;;) {
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
    34
		v = strtol(p, &end, 0);
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
    35
		if (p == end || n == maxitems) return -1;
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
    36
		p = end;
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
    37
		items[n++] = v;
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
    38
		if (*p == '\0') break;
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
    39
		if (*p != ',' && *p != ' ') return -1;
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
    40
		p++;
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
    41
	}
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
    42
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
    43
	return n;
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
    44
}
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
    45
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
    46
6377
c1bc323eaf0c (svn r9449) -Fix: Truncate the newgrf information text in the newgrf gui if it's too long.
maedhros
parents: 6348
diff changeset
    47
static void ShowNewGRFInfo(const GRFConfig *c, uint x, uint y, uint w, uint bottom, bool show_params)
5237
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
    48
{
5634
ba6b9ebe197a (svn r8093) -Codechange: Add a function to get a string representation of an MD5SUM and use it.
Darkvater
parents: 5609
diff changeset
    49
	char buff[256];
5237
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
    50
6103
d38163ddfef9 (svn r8838) -Feature: Show newgrf error messages loaded in Action B in the newgrf gui
maedhros
parents: 5893
diff changeset
    51
	if (c->error != NULL) {
6139
cd42df0c1f0f (svn r8881) -Feature: Allow built-in newgrf error messages to be translated, and load custom error messages properly.
maedhros
parents: 6103
diff changeset
    52
		SetDParamStr(0, c->filename);
6873
b4d0648edd29 (svn r10114) -Fix: Only load newgrf error messages if the language matches the current
maedhros
parents: 6783
diff changeset
    53
		SetDParamStr(1, c->error->data);
6139
cd42df0c1f0f (svn r8881) -Feature: Allow built-in newgrf error messages to be translated, and load custom error messages properly.
maedhros
parents: 6103
diff changeset
    54
		for (uint i = 0; i < c->error->num_params; i++) {
cd42df0c1f0f (svn r8881) -Feature: Allow built-in newgrf error messages to be translated, and load custom error messages properly.
maedhros
parents: 6103
diff changeset
    55
			uint32 param = 0;
cd42df0c1f0f (svn r8881) -Feature: Allow built-in newgrf error messages to be translated, and load custom error messages properly.
maedhros
parents: 6103
diff changeset
    56
			byte param_number = c->error->param_number[i];
cd42df0c1f0f (svn r8881) -Feature: Allow built-in newgrf error messages to be translated, and load custom error messages properly.
maedhros
parents: 6103
diff changeset
    57
cd42df0c1f0f (svn r8881) -Feature: Allow built-in newgrf error messages to be translated, and load custom error messages properly.
maedhros
parents: 6103
diff changeset
    58
			if (param_number < c->num_params) param = c->param[param_number];
cd42df0c1f0f (svn r8881) -Feature: Allow built-in newgrf error messages to be translated, and load custom error messages properly.
maedhros
parents: 6103
diff changeset
    59
cd42df0c1f0f (svn r8881) -Feature: Allow built-in newgrf error messages to be translated, and load custom error messages properly.
maedhros
parents: 6103
diff changeset
    60
			SetDParam(2 + i, param);
cd42df0c1f0f (svn r8881) -Feature: Allow built-in newgrf error messages to be translated, and load custom error messages properly.
maedhros
parents: 6103
diff changeset
    61
		}
cd42df0c1f0f (svn r8881) -Feature: Allow built-in newgrf error messages to be translated, and load custom error messages properly.
maedhros
parents: 6103
diff changeset
    62
cd42df0c1f0f (svn r8881) -Feature: Allow built-in newgrf error messages to be translated, and load custom error messages properly.
maedhros
parents: 6103
diff changeset
    63
		char message[512];
6873
b4d0648edd29 (svn r10114) -Fix: Only load newgrf error messages if the language matches the current
maedhros
parents: 6783
diff changeset
    64
		GetString(message, c->error->custom_message != NULL ? BindCString(c->error->custom_message) : c->error->message, lastof(message));
6139
cd42df0c1f0f (svn r8881) -Feature: Allow built-in newgrf error messages to be translated, and load custom error messages properly.
maedhros
parents: 6103
diff changeset
    65
cd42df0c1f0f (svn r8881) -Feature: Allow built-in newgrf error messages to be translated, and load custom error messages properly.
maedhros
parents: 6103
diff changeset
    66
		SetDParamStr(0, message);
6377
c1bc323eaf0c (svn r9449) -Fix: Truncate the newgrf information text in the newgrf gui if it's too long.
maedhros
parents: 6348
diff changeset
    67
		y += DrawStringMultiLine(x, y, c->error->severity, w, bottom - y);
6103
d38163ddfef9 (svn r8838) -Feature: Show newgrf error messages loaded in Action B in the newgrf gui
maedhros
parents: 5893
diff changeset
    68
	}
d38163ddfef9 (svn r8838) -Feature: Show newgrf error messages loaded in Action B in the newgrf gui
maedhros
parents: 5893
diff changeset
    69
5339
96ac3f4933bb (svn r7505) -Feature: show NewGRFs used on a game server, show which NewGRFs you do and do not have.
rubidium
parents: 5329
diff changeset
    70
	/* Draw filename or not if it is not known (GRF sent over internet) */
96ac3f4933bb (svn r7505) -Feature: show NewGRFs used on a game server, show which NewGRFs you do and do not have.
rubidium
parents: 5329
diff changeset
    71
	if (c->filename != NULL) {
96ac3f4933bb (svn r7505) -Feature: show NewGRFs used on a game server, show which NewGRFs you do and do not have.
rubidium
parents: 5329
diff changeset
    72
		SetDParamStr(0, c->filename);
6377
c1bc323eaf0c (svn r9449) -Fix: Truncate the newgrf information text in the newgrf gui if it's too long.
maedhros
parents: 6348
diff changeset
    73
		y += DrawStringMultiLine(x, y, STR_NEWGRF_FILENAME, w, bottom - y);
5339
96ac3f4933bb (svn r7505) -Feature: show NewGRFs used on a game server, show which NewGRFs you do and do not have.
rubidium
parents: 5329
diff changeset
    74
	}
5237
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
    75
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
    76
	/* Prepare and draw GRF ID */
5643
b373887faf8b (svn r8102) -Cleanup: Remove unreachable code (r8096), useless cast
Darkvater
parents: 5638
diff changeset
    77
	snprintf(buff, lengthof(buff), "%08X", BSWAP32(c->grfid));
5237
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
    78
	SetDParamStr(0, buff);
6377
c1bc323eaf0c (svn r9449) -Fix: Truncate the newgrf information text in the newgrf gui if it's too long.
maedhros
parents: 6348
diff changeset
    79
	y += DrawStringMultiLine(x, y, STR_NEWGRF_GRF_ID, w, bottom - y);
5237
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
    80
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
    81
	/* Prepare and draw MD5 sum */
5634
ba6b9ebe197a (svn r8093) -Codechange: Add a function to get a string representation of an MD5SUM and use it.
Darkvater
parents: 5609
diff changeset
    82
	md5sumToString(buff, lastof(buff), c->md5sum);
5237
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
    83
	SetDParamStr(0, buff);
6377
c1bc323eaf0c (svn r9449) -Fix: Truncate the newgrf information text in the newgrf gui if it's too long.
maedhros
parents: 6348
diff changeset
    84
	y += DrawStringMultiLine(x, y, STR_NEWGRF_MD5SUM, w, bottom - y);
5237
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
    85
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
    86
	/* Show GRF parameter list */
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
    87
	if (show_params) {
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
    88
		if (c->num_params > 0) {
5308
990a4b188233 (svn r7464) -Codechange: move BuildParamList from newgrf_gui to newgrf_config and
peter1138
parents: 5248
diff changeset
    89
			GRFBuildParamList(buff, c, lastof(buff));
5237
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
    90
			SetDParamStr(0, buff);
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
    91
		} else {
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
    92
			SetDParam(0, STR_01A9_NONE);
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
    93
		}
6377
c1bc323eaf0c (svn r9449) -Fix: Truncate the newgrf information text in the newgrf gui if it's too long.
maedhros
parents: 6348
diff changeset
    94
		y += DrawStringMultiLine(x, y, STR_NEWGRF_PARAMETER, w, bottom - y);
5237
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
    95
	}
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
    96
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
    97
	/* Show flags */
6377
c1bc323eaf0c (svn r9449) -Fix: Truncate the newgrf information text in the newgrf gui if it's too long.
maedhros
parents: 6348
diff changeset
    98
	if (c->status == GCS_NOT_FOUND)        y += DrawStringMultiLine(x, y, STR_NEWGRF_NOT_FOUND, w, bottom - y);
c1bc323eaf0c (svn r9449) -Fix: Truncate the newgrf information text in the newgrf gui if it's too long.
maedhros
parents: 6348
diff changeset
    99
	if (c->status == GCS_DISABLED)         y += DrawStringMultiLine(x, y, STR_NEWGRF_DISABLED, w, bottom - y);
7928
63e18de69e50 (svn r11481) -Codechange: Rename the HASBIT function to fit with the naming style
skidd13
parents: 7882
diff changeset
   100
	if (HasBit(c->flags, GCF_COMPATIBLE)) y += DrawStringMultiLine(x, y, STR_NEWGRF_COMPATIBLE_LOADED, w, bottom - y);
5237
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
   101
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
   102
	/* Draw GRF info if it exists */
5638
ee1871005c80 (svn r8097) Replace strlen() {==,!=,>} 0 by the more concise {,!}StrEmpty(). Additionally the test takes O(1) instead of O(n) now
tron
parents: 5635
diff changeset
   103
	if (c->info != NULL && !StrEmpty(c->info)) {
5237
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
   104
		SetDParamStr(0, c->info);
6377
c1bc323eaf0c (svn r9449) -Fix: Truncate the newgrf information text in the newgrf gui if it's too long.
maedhros
parents: 6348
diff changeset
   105
		y += DrawStringMultiLine(x, y, STR_02BD, w, bottom - y);
5237
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
   106
	} else {
6377
c1bc323eaf0c (svn r9449) -Fix: Truncate the newgrf information text in the newgrf gui if it's too long.
maedhros
parents: 6348
diff changeset
   107
		y += DrawStringMultiLine(x, y, STR_NEWGRF_NO_INFO, w, bottom - y);
5237
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
   108
	}
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
   109
}
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
   110
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
   111
9207
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   112
/**
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   113
 * Window for adding NewGRF files
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   114
 */
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   115
struct NewGRFAddWindow : public Window {
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   116
	/* Names of the add a newgrf window widgets */
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   117
	enum AddNewGRFWindowWidgets {
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   118
		ANGRFW_CLOSEBOX = 0,
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   119
		ANGRFW_CAPTION,
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   120
		ANGRFW_BACKGROUND,
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   121
		ANGRFW_GRF_LIST,
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   122
		ANGRFW_SCROLLBAR,
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   123
		ANGRFW_GRF_INFO,
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   124
		ANGRFW_ADD,
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   125
		ANGRFW_RESCAN,
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   126
		ANGRFW_RESIZE,
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   127
	};
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   128
5237
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
   129
	GRFConfig **list;
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
   130
	const GRFConfig *sel;
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
   131
9207
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   132
	NewGRFAddWindow(const WindowDesc *desc, GRFConfig **list) : Window(desc, 0)
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   133
	{
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   134
		this->list = list;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   135
		this->resize.step_height = 10;
5237
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
   136
9207
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   137
		this->FindWindowPlacementAndResize(desc);
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   138
	}
5237
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
   139
9207
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   140
	virtual void OnPaint()
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   141
	{
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   142
		const GRFConfig *c;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   143
		const Widget *wl = &this->widget[ANGRFW_GRF_LIST];
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   144
		int n = 0;
5237
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
   145
9207
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   146
		/* Count the number of GRFs */
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   147
		for (c = _all_grfs; c != NULL; c = c->next) n++;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   148
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   149
		this->vscroll.cap = (wl->bottom - wl->top) / 10;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   150
		SetVScrollCount(this, n);
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   151
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   152
		this->SetWidgetDisabledState(ANGRFW_ADD, this->sel == NULL || this->sel->IsOpenTTDBaseGRF());
9273
35e0224ea8f1 (svn r13139) -Codechange: move DrawWindowWidgets and DrawWindowViewport to the Window class and remove Window from their naming.
rubidium
parents: 9207
diff changeset
   153
		this->DrawWidgets();
9207
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   154
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   155
		GfxFillRect(wl->left + 1, wl->top + 1, wl->right, wl->bottom, 0xD7);
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   156
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   157
		uint y = wl->top + 1;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   158
		for (c = _all_grfs, n = 0; c != NULL && n < (this->vscroll.pos + this->vscroll.cap); c = c->next, n++) {
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   159
			if (n >= this->vscroll.pos) {
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   160
				bool h = c == this->sel;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   161
				const char *text = (c->name != NULL && !StrEmpty(c->name)) ? c->name : c->filename;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   162
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   163
				/* Draw selection background */
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   164
				if (h) GfxFillRect(3, y, this->width - 15, y + 9, 156);
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   165
				DoDrawStringTruncated(text, 4, y, h ? TC_WHITE : TC_ORANGE, this->width - 18);
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   166
				y += 10;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   167
			}
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   168
		}
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   169
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   170
		if (this->sel != NULL) {
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   171
			const Widget *wi = &this->widget[ANGRFW_GRF_INFO];
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   172
			ShowNewGRFInfo(this->sel, wi->left + 2, wi->top + 2, wi->right - wi->left - 2, wi->bottom, false);
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   173
		}
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   174
	}
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   175
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   176
	virtual void OnDoubleClick(Point pt, int widget)
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   177
	{
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   178
		if (widget == ANGRFW_GRF_LIST) this->OnClick(pt, ANGRFW_ADD);
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   179
	}
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   180
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   181
	virtual void OnClick(Point pt, int widget)
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   182
	{
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   183
		switch (widget) {
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   184
			case ANGRFW_GRF_LIST: {
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   185
				/* Get row... */
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   186
				const GRFConfig *c;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   187
				uint i = (pt.y - this->widget[ANGRFW_GRF_LIST].top) / 10 + this->vscroll.pos;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   188
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   189
				for (c = _all_grfs; c != NULL && i > 0; c = c->next, i--) {}
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   190
				this->sel = c;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   191
				this->SetDirty();
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   192
				break;
5237
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
   193
			}
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
   194
9207
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   195
			case ANGRFW_ADD: // Add selection to list
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   196
				if (this->sel != NULL) {
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   197
					const GRFConfig *src = this->sel;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   198
					GRFConfig **list;
5243
29235600e8fc (svn r7367) -Codechange: prevent adding files where the GRF ID is already in the list
peter1138
parents: 5241
diff changeset
   199
9207
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   200
					/* Find last entry in the list, checking for duplicate grfid on the way */
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   201
					for (list = this->list; *list != NULL; list = &(*list)->next) {
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   202
						if ((*list)->grfid == src->grfid) {
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   203
							ShowErrorMessage(INVALID_STRING_ID, STR_NEWGRF_DUPLICATE_GRFID, 0, 0);
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   204
							return;
5243
29235600e8fc (svn r7367) -Codechange: prevent adding files where the GRF ID is already in the list
peter1138
parents: 5241
diff changeset
   205
						}
9207
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   206
					}
5243
29235600e8fc (svn r7367) -Codechange: prevent adding files where the GRF ID is already in the list
peter1138
parents: 5241
diff changeset
   207
9207
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   208
					/* Copy GRF details from scanned list */
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   209
					GRFConfig *c = CallocT<GRFConfig>(1);
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   210
					*c = *src;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   211
					c->filename = strdup(src->filename);
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   212
					if (src->name      != NULL) c->name      = strdup(src->name);
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   213
					if (src->info      != NULL) c->info      = strdup(src->info);
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   214
					c->next = NULL;
5237
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
   215
9207
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   216
					/* Append GRF config to configuration list */
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   217
					*list = c;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   218
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   219
					DeleteWindowByClass(WC_SAVELOAD);
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   220
					InvalidateWindowData(WC_GAME_OPTIONS, 0);
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   221
				}
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   222
				break;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   223
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   224
			case ANGRFW_RESCAN: // Rescan list
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   225
				this->sel = NULL;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   226
				ScanNewGRFFiles();
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   227
				this->SetDirty();
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   228
				break;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   229
		}
5237
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
   230
	}
9207
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   231
};
5237
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
   232
8025
151e377fde0a (svn r11585) -Codechange: Enumify the widgets of the newGRF gui and a slight cleanup there
skidd13
parents: 8019
diff changeset
   233
/* Widget definition for the add a newgrf window */
5237
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
   234
static const Widget _newgrf_add_dlg_widgets[] = {
8025
151e377fde0a (svn r11585) -Codechange: Enumify the widgets of the newGRF gui and a slight cleanup there
skidd13
parents: 8019
diff changeset
   235
{   WWT_CLOSEBOX,    RESIZE_NONE, 14,   0,  10,   0,  13, STR_00C5,                STR_018B_CLOSE_WINDOW },           // ANGRFW_CLOSEBOX
151e377fde0a (svn r11585) -Codechange: Enumify the widgets of the newGRF gui and a slight cleanup there
skidd13
parents: 8019
diff changeset
   236
{    WWT_CAPTION,   RESIZE_RIGHT, 14,  11, 306,   0,  13, STR_NEWGRF_ADD_CAPTION,  STR_018C_WINDOW_TITLE_DRAG_THIS }, // ANGRFW_CAPTION
151e377fde0a (svn r11585) -Codechange: Enumify the widgets of the newGRF gui and a slight cleanup there
skidd13
parents: 8019
diff changeset
   237
{      WWT_PANEL,      RESIZE_RB, 14,   0, 294,  14, 121, 0x0,                     STR_NULL },                        // ANGRFW_BACKGROUND
151e377fde0a (svn r11585) -Codechange: Enumify the widgets of the newGRF gui and a slight cleanup there
skidd13
parents: 8019
diff changeset
   238
{      WWT_INSET,      RESIZE_RB, 14,   2, 292,  16, 119, 0x0,                     STR_NULL },                        // ANGRFW_GRF_LIST
151e377fde0a (svn r11585) -Codechange: Enumify the widgets of the newGRF gui and a slight cleanup there
skidd13
parents: 8019
diff changeset
   239
{  WWT_SCROLLBAR,     RESIZE_LRB, 14, 295, 306,  14, 121, 0x0,                     STR_NULL },                        // ANGRFW_SCROLLBAR
151e377fde0a (svn r11585) -Codechange: Enumify the widgets of the newGRF gui and a slight cleanup there
skidd13
parents: 8019
diff changeset
   240
{      WWT_PANEL,     RESIZE_RTB, 14,   0, 306, 122, 224, 0x0,                     STR_NULL },                        // ANGRFW_GRF_INFO
151e377fde0a (svn r11585) -Codechange: Enumify the widgets of the newGRF gui and a slight cleanup there
skidd13
parents: 8019
diff changeset
   241
{ WWT_PUSHTXTBTN,     RESIZE_RTB, 14,   0, 146, 225, 236, STR_NEWGRF_ADD_FILE,     STR_NEWGRF_ADD_FILE_TIP },         // ANGRFW_ADD
151e377fde0a (svn r11585) -Codechange: Enumify the widgets of the newGRF gui and a slight cleanup there
skidd13
parents: 8019
diff changeset
   242
{ WWT_PUSHTXTBTN,    RESIZE_LRTB, 14, 147, 294, 225, 236, STR_NEWGRF_RESCAN_FILES, STR_NEWGRF_RESCAN_FILES_TIP },     // ANGRFW_RESCAN
151e377fde0a (svn r11585) -Codechange: Enumify the widgets of the newGRF gui and a slight cleanup there
skidd13
parents: 8019
diff changeset
   243
{  WWT_RESIZEBOX,    RESIZE_LRTB, 14, 295, 306, 225, 236, 0x0,                     STR_RESIZE_BUTTON },               // ANGRFW_RESIZE
5237
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
   244
{   WIDGETS_END },
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
   245
};
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
   246
8025
151e377fde0a (svn r11585) -Codechange: Enumify the widgets of the newGRF gui and a slight cleanup there
skidd13
parents: 8019
diff changeset
   247
/* Window definition for the add a newgrf window */
5237
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
   248
static const WindowDesc _newgrf_add_dlg_desc = {
7341
02515d0d4ced (svn r10704) -Codechange: provide an infrastructure to have resizable windows that are smaller than the default window size.
rubidium
parents: 7034
diff changeset
   249
	WDP_CENTER, WDP_CENTER, 307, 237, 307, 337,
5893
7e431a4abebb (svn r8511) -Codechange: make WindowClass an enumerated value.
rubidium
parents: 5668
diff changeset
   250
	WC_SAVELOAD, WC_NONE,
8019
fc0e94dee165 (svn r11579) -Revert(r11578): some cases of key propagation are not handled correctly.
belugas
parents: 8018
diff changeset
   251
	WDF_STD_TOOLTIPS | WDF_DEF_WIDGET | WDF_STD_BTN | WDF_UNCLICK_BUTTONS | WDF_RESIZABLE,
5237
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
   252
	_newgrf_add_dlg_widgets,
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
   253
};
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
   254
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
   255
9207
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   256
static void NewGRFConfirmationCallback(Window *w, bool confirmed);
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   257
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   258
/**
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   259
 * Window for showing NewGRF files
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   260
 */
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   261
struct NewGRFWindow : public Window {
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   262
	/* Names of the manage newgrfs window widgets */
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   263
	enum ShowNewGRFStateWidgets {
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   264
		SNGRFS_CLOSEBOX = 0,
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   265
		SNGRFS_CAPTION,
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   266
		SNGRFS_BACKGROUND,
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   267
		SNGRFS_ADD,
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   268
		SNGRFS_REMOVE,
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   269
		SNGRFS_MOVE_UP,
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   270
		SNGRFS_MOVE_DOWN,
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   271
		SNGRFS_FILE_LIST,
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   272
		SNGRFS_SCROLLBAR,
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   273
		SNGRFS_NEWGRF_INFO,
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   274
		SNGRFS_SET_PARAMETERS,
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   275
		SNGRFS_APPLY_CHANGES,
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   276
		SNGRFS_RESIZE,
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   277
	};
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   278
5352
86fca6a41aa1 (svn r7523) -Feature: Add the possibility to change the newgrf configuration of a running game.
Darkvater
parents: 5345
diff changeset
   279
	GRFConfig **orig_list; ///< grf list the window is shown with
9207
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   280
	GRFConfig *list;       ///< temporary grf list to which changes are made
5352
86fca6a41aa1 (svn r7523) -Feature: Add the possibility to change the newgrf configuration of a running game.
Darkvater
parents: 5345
diff changeset
   281
	GRFConfig *sel;        ///< selected grf item
86fca6a41aa1 (svn r7523) -Feature: Add the possibility to change the newgrf configuration of a running game.
Darkvater
parents: 5345
diff changeset
   282
	bool editable;         ///< is the window editable
86fca6a41aa1 (svn r7523) -Feature: Add the possibility to change the newgrf configuration of a running game.
Darkvater
parents: 5345
diff changeset
   283
	bool show_params;      ///< are the grf-parameters shown in the info-panel
86fca6a41aa1 (svn r7523) -Feature: Add the possibility to change the newgrf configuration of a running game.
Darkvater
parents: 5345
diff changeset
   284
	bool execute;          ///< on pressing 'apply changes' are grf changes applied immediately, or only list is updated
86fca6a41aa1 (svn r7523) -Feature: Add the possibility to change the newgrf configuration of a running game.
Darkvater
parents: 5345
diff changeset
   285
9207
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   286
	NewGRFWindow(const WindowDesc *desc, bool editable, bool show_params, bool exec_changes, GRFConfig **config) : Window(desc, 0)
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   287
	{
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   288
		this->resize.step_height = 14;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   289
		this->sel         = NULL;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   290
		this->list        = NULL;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   291
		this->orig_list   = config;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   292
		this->editable    = editable;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   293
		this->execute     = exec_changes;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   294
		this->show_params = show_params;
5237
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
   295
9207
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   296
		CopyGRFConfigList(&this->list, *config, false);
6229
695400602ab0 (svn r9031) -Codechange: Introduce grfconfig->status, and use it for states that are
maedhros
parents: 6166
diff changeset
   297
9207
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   298
		this->FindWindowPlacementAndResize(desc);
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   299
		this->SetupNewGRFWindow();
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   300
	}
5237
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
   301
9207
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   302
	~NewGRFWindow()
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   303
	{
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   304
		if (!this->execute) {
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   305
			CopyGRFConfigList(this->orig_list, this->list, true);
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   306
			ResetGRFConfig(false);
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   307
			ReloadNewGRFData();
5237
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
   308
		}
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
   309
9207
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   310
		/* Remove the temporary copy of grf-list used in window */
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   311
		ClearGRFConfigList(&this->list);
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   312
	}
5248
45dba213783a (svn r7373) -Codechange: when removing a GRF from the list, make the next one selected, or the previous file if the last item is being removed. This makes clearing the list easier.
peter1138
parents: 5243
diff changeset
   313
9207
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   314
	void SetupNewGRFWindow()
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   315
	{
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   316
		const GRFConfig *c;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   317
		int i;
5248
45dba213783a (svn r7373) -Codechange: when removing a GRF from the list, make the next one selected, or the previous file if the last item is being removed. This makes clearing the list easier.
peter1138
parents: 5243
diff changeset
   318
9207
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   319
		for (c = this->list, i = 0; c != NULL; c = c->next, i++) {}
5237
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
   320
9207
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   321
		this->vscroll.cap = (this->widget[SNGRFS_FILE_LIST].bottom - this->widget[SNGRFS_FILE_LIST].top) / 14 + 1;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   322
		SetVScrollCount(this, i);
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   323
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   324
		this->SetWidgetDisabledState(SNGRFS_ADD, !this->editable);
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   325
		this->SetWidgetDisabledState(SNGRFS_APPLY_CHANGES, !this->editable);
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   326
	}
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   327
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   328
	virtual void OnPaint()
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   329
	{
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   330
		bool disable_all = this->sel == NULL || !this->editable;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   331
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   332
		this->SetWidgetsDisabledState(disable_all,
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   333
			SNGRFS_REMOVE,
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   334
			SNGRFS_MOVE_UP,
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   335
			SNGRFS_MOVE_DOWN,
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   336
			WIDGET_LIST_END
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   337
		);
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   338
		this->SetWidgetDisabledState(SNGRFS_SET_PARAMETERS, !this->show_params || disable_all);
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   339
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   340
		if (!disable_all) {
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   341
			/* All widgets are now enabled, so disable widgets we can't use */
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   342
			if (this->sel == this->list)       this->DisableWidget(SNGRFS_MOVE_UP);
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   343
			if (this->sel->next == NULL)       this->DisableWidget(SNGRFS_MOVE_DOWN);
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   344
			if (this->sel->IsOpenTTDBaseGRF()) this->DisableWidget(SNGRFS_REMOVE);
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   345
		}
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   346
9273
35e0224ea8f1 (svn r13139) -Codechange: move DrawWindowWidgets and DrawWindowViewport to the Window class and remove Window from their naming.
rubidium
parents: 9207
diff changeset
   347
		this->DrawWidgets();
9207
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   348
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   349
		/* Draw NewGRF list */
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   350
		int y = this->widget[SNGRFS_FILE_LIST].top;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   351
		int i = 0;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   352
		for (const GRFConfig *c = this->list; c != NULL; c = c->next, i++) {
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   353
			if (i >= this->vscroll.pos && i < this->vscroll.pos + this->vscroll.cap) {
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   354
				const char *text = (c->name != NULL && !StrEmpty(c->name)) ? c->name : c->filename;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   355
				SpriteID pal;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   356
				byte txtoffset;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   357
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   358
				/* Pick a colour */
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   359
				switch (c->status) {
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   360
					case GCS_NOT_FOUND:
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   361
					case GCS_DISABLED:
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   362
						pal = PALETTE_TO_RED;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   363
						break;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   364
					case GCS_ACTIVATED:
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   365
						pal = PALETTE_TO_GREEN;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   366
						break;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   367
					default:
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   368
						pal = PALETTE_TO_BLUE;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   369
						break;
5237
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
   370
				}
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
   371
9207
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   372
				/* Do not show a "not-failure" colour when it actually failed to load */
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   373
				if (pal != PALETTE_TO_RED) {
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   374
					if (HasBit(c->flags, GCF_STATIC)) {
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   375
						pal = PALETTE_TO_GREY;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   376
					} else if (HasBit(c->flags, GCF_COMPATIBLE)) {
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   377
						pal = PALETTE_TO_ORANGE;
5237
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
   378
					}
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
   379
				}
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
   380
9207
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   381
				DrawSprite(SPR_SQUARE, pal, 5, y + 2);
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   382
				if (c->error != NULL) DrawSprite(SPR_WARNING_SIGN, 0, 20, y + 2);
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   383
				txtoffset = c->error != NULL ? 35 : 25;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   384
				DoDrawStringTruncated(text, txtoffset, y + 3, this->sel == c ? TC_WHITE : TC_BLACK, this->width - txtoffset - 10);
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   385
				y += 14;
5237
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
   386
			}
9207
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   387
		}
5237
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
   388
9207
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   389
		if (this->sel != NULL) {
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   390
			/* Draw NewGRF file info */
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   391
			const Widget *wi = &this->widget[SNGRFS_NEWGRF_INFO];
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   392
			ShowNewGRFInfo(this->sel, wi->left + 2, wi->top + 2, wi->right - wi->left - 2, wi->bottom, this->show_params);
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   393
		}
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   394
	}
5237
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
   395
9207
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   396
	virtual void OnClick(Point pt, int widget)
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   397
	{
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   398
		switch (widget) {
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   399
			case SNGRFS_ADD: // Add GRF
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   400
				DeleteWindowByClass(WC_SAVELOAD);
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   401
				new NewGRFAddWindow(&_newgrf_add_dlg_desc, &this->list);
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   402
				break;
5352
86fca6a41aa1 (svn r7523) -Feature: Add the possibility to change the newgrf configuration of a running game.
Darkvater
parents: 5345
diff changeset
   403
9207
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   404
			case SNGRFS_REMOVE: { // Remove GRF
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   405
				GRFConfig **pc, *c, *newsel;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   406
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   407
				/* Choose the next GRF file to be the selected file */
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   408
				newsel = this->sel->next;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   409
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   410
				for (pc = &this->list; (c = *pc) != NULL; pc = &c->next) {
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   411
					/* If the new selection is empty (i.e. we're deleting the last item
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   412
					 * in the list, pick the file just before the selected file */
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   413
					if (newsel == NULL && c->next == this->sel) newsel = c;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   414
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   415
					if (c == this->sel) {
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   416
						*pc = c->next;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   417
						free(c);
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   418
						break;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   419
					}
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   420
				}
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   421
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   422
				this->sel = newsel;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   423
				this->SetupNewGRFWindow();
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   424
				this->SetDirty();
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   425
				break;
8591
d73cc7cd733c (svn r12172) -Codechange: Allow buttons to resize in NewGRF settings window
peter1138
parents: 8264
diff changeset
   426
			}
9207
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   427
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   428
			case SNGRFS_MOVE_UP: { // Move GRF up
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   429
				GRFConfig **pc, *c;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   430
				if (this->sel == NULL) break;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   431
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   432
				for (pc = &this->list; (c = *pc) != NULL; pc = &c->next) {
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   433
					if (c->next == this->sel) {
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   434
						c->next = this->sel->next;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   435
						this->sel->next = c;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   436
						*pc = this->sel;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   437
						break;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   438
					}
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   439
				}
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   440
				this->SetDirty();
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   441
				break;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   442
			}
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   443
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   444
			case SNGRFS_MOVE_DOWN: { // Move GRF down
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   445
				GRFConfig **pc, *c;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   446
				if (this->sel == NULL) break;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   447
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   448
				for (pc = &this->list; (c = *pc) != NULL; pc = &c->next) {
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   449
					if (c == this->sel) {
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   450
						*pc = c->next;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   451
						c->next = c->next->next;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   452
						(*pc)->next = c;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   453
						break;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   454
					}
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   455
				}
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   456
				this->SetDirty();
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   457
				break;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   458
			}
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   459
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   460
			case SNGRFS_FILE_LIST: { // Select a GRF
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   461
				GRFConfig *c;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   462
				uint i = (pt.y - this->widget[SNGRFS_FILE_LIST].top) / 14 + this->vscroll.pos;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   463
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   464
				for (c = this->list; c != NULL && i > 0; c = c->next, i--) {}
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   465
				this->sel = c;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   466
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   467
				this->SetDirty();
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   468
				break;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   469
			}
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   470
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   471
			case SNGRFS_APPLY_CHANGES: // Apply changes made to GRF list
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   472
				if (this->execute) {
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   473
					ShowQuery(
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   474
						STR_POPUP_CAUTION_CAPTION,
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   475
						STR_NEWGRF_CONFIRMATION_TEXT,
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   476
						this,
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   477
						NewGRFConfirmationCallback
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   478
					);
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   479
				} else {
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   480
					CopyGRFConfigList(this->orig_list, this->list, true);
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   481
					ResetGRFConfig(false);
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   482
					ReloadNewGRFData();
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   483
				}
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   484
				break;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   485
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   486
			case SNGRFS_SET_PARAMETERS: { // Edit parameters
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   487
				if (this->sel == NULL) break;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   488
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   489
				char buff[512];
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   490
				GRFBuildParamList(buff, this->sel, lastof(buff));
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   491
				ShowQueryString(BindCString(buff), STR_NEWGRF_PARAMETER_QUERY, 63, 250, this, CS_ALPHANUMERAL);
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   492
				break;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   493
			}
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   494
		}
5237
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
   495
	}
9207
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   496
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   497
	virtual void OnQueryTextFinished(char *str)
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   498
	{
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   499
		if (str == NULL) return;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   500
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   501
		/* Parse our new "int list" */
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   502
		GRFConfig *c = this->sel;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   503
		c->num_params = parse_intlist(str, (int*)c->param, lengthof(c->param));
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   504
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   505
		/* parse_intlist returns -1 on error */
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   506
		if (c->num_params == (byte)-1) c->num_params = 0;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   507
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   508
		this->SetDirty();
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   509
	}
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   510
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   511
	virtual void OnResize(Point new_size, Point delta)
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   512
	{
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   513
		if (delta.x != 0) {
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   514
			ResizeButtons(this, SNGRFS_ADD, SNGRFS_MOVE_DOWN);
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   515
			ResizeButtons(this, SNGRFS_SET_PARAMETERS, SNGRFS_APPLY_CHANGES);
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   516
		}
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   517
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   518
		this->vscroll.cap += delta.y / 14;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   519
		this->widget[SNGRFS_FILE_LIST].data = (this->vscroll.cap << 8) + 1;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   520
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   521
		this->SetupNewGRFWindow();
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   522
	}
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   523
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   524
	virtual void OnInvalidateData(int data = 0)
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   525
	{
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   526
		this->SetupNewGRFWindow();
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   527
	}
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   528
};
5237
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
   529
8025
151e377fde0a (svn r11585) -Codechange: Enumify the widgets of the newGRF gui and a slight cleanup there
skidd13
parents: 8019
diff changeset
   530
/* Widget definition of the manage newgrfs window */
5237
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
   531
static const Widget _newgrf_widgets[] = {
8025
151e377fde0a (svn r11585) -Codechange: Enumify the widgets of the newGRF gui and a slight cleanup there
skidd13
parents: 8019
diff changeset
   532
{   WWT_CLOSEBOX,  RESIZE_NONE, 10,   0,  10,   0,  13, STR_00C5,                    STR_018B_CLOSE_WINDOW },            // SNGRFS_CLOSEBOX
151e377fde0a (svn r11585) -Codechange: Enumify the widgets of the newGRF gui and a slight cleanup there
skidd13
parents: 8019
diff changeset
   533
{    WWT_CAPTION, RESIZE_RIGHT, 10,  11, 299,   0,  13, STR_NEWGRF_SETTINGS_CAPTION, STR_018C_WINDOW_TITLE_DRAG_THIS },  // SNGRFS_CAPTION
151e377fde0a (svn r11585) -Codechange: Enumify the widgets of the newGRF gui and a slight cleanup there
skidd13
parents: 8019
diff changeset
   534
{      WWT_PANEL, RESIZE_RIGHT, 10,   0, 299,  14,  29, STR_NULL,                    STR_NULL },                         // SNGRFS_BACKGROUND
151e377fde0a (svn r11585) -Codechange: Enumify the widgets of the newGRF gui and a slight cleanup there
skidd13
parents: 8019
diff changeset
   535
{ WWT_PUSHTXTBTN,  RESIZE_NONE,  3,  10,  79,  16,  27, STR_NEWGRF_ADD,              STR_NEWGRF_ADD_TIP },               // SNGRFS_ADD
151e377fde0a (svn r11585) -Codechange: Enumify the widgets of the newGRF gui and a slight cleanup there
skidd13
parents: 8019
diff changeset
   536
{ WWT_PUSHTXTBTN,  RESIZE_NONE,  3,  80, 149,  16,  27, STR_NEWGRF_REMOVE,           STR_NEWGRF_REMOVE_TIP },            // SNGRFS_REMOVE
151e377fde0a (svn r11585) -Codechange: Enumify the widgets of the newGRF gui and a slight cleanup there
skidd13
parents: 8019
diff changeset
   537
{ WWT_PUSHTXTBTN,  RESIZE_NONE,  3, 150, 219,  16,  27, STR_NEWGRF_MOVEUP,           STR_NEWGRF_MOVEUP_TIP },            // SNGRFS_MOVE_UP
8591
d73cc7cd733c (svn r12172) -Codechange: Allow buttons to resize in NewGRF settings window
peter1138
parents: 8264
diff changeset
   538
{ WWT_PUSHTXTBTN, RESIZE_RIGHT,  3, 220, 289,  16,  27, STR_NEWGRF_MOVEDOWN,         STR_NEWGRF_MOVEDOWN_TIP },          // SNGRFS_MOVE_DOWN
8025
151e377fde0a (svn r11585) -Codechange: Enumify the widgets of the newGRF gui and a slight cleanup there
skidd13
parents: 8019
diff changeset
   539
{     WWT_MATRIX,    RESIZE_RB, 10,   0, 287,  30,  99, 0x501,                       STR_NEWGRF_FILE_TIP },              // SNGRFS_FILE_LIST
151e377fde0a (svn r11585) -Codechange: Enumify the widgets of the newGRF gui and a slight cleanup there
skidd13
parents: 8019
diff changeset
   540
{  WWT_SCROLLBAR,   RESIZE_LRB, 10, 288, 299,  30,  99, 0x0,                         STR_0190_SCROLL_BAR_SCROLLS_LIST }, // SNGRFS_SCROLLBAR
151e377fde0a (svn r11585) -Codechange: Enumify the widgets of the newGRF gui and a slight cleanup there
skidd13
parents: 8019
diff changeset
   541
{      WWT_PANEL,   RESIZE_RTB, 10,   0, 299, 100, 212, STR_NULL,                    STR_NULL },                         // SNGRFS_NEWGRF_INFO
151e377fde0a (svn r11585) -Codechange: Enumify the widgets of the newGRF gui and a slight cleanup there
skidd13
parents: 8019
diff changeset
   542
{ WWT_PUSHTXTBTN,    RESIZE_TB, 10,   0, 143, 213, 224, STR_NEWGRF_SET_PARAMETERS,   STR_NULL },                         // SNGRFS_SET_PARAMETERS
151e377fde0a (svn r11585) -Codechange: Enumify the widgets of the newGRF gui and a slight cleanup there
skidd13
parents: 8019
diff changeset
   543
{ WWT_PUSHTXTBTN,   RESIZE_RTB, 10, 144, 287, 213, 224, STR_NEWGRF_APPLY_CHANGES,    STR_NULL },                         // SNGRFS_APPLY_CHANGES
151e377fde0a (svn r11585) -Codechange: Enumify the widgets of the newGRF gui and a slight cleanup there
skidd13
parents: 8019
diff changeset
   544
{  WWT_RESIZEBOX,  RESIZE_LRTB, 10, 288, 299, 213, 224, 0x0,                         STR_RESIZE_BUTTON },                // SNGRFS_RESIZE
5237
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
   545
{ WIDGETS_END },
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
   546
};
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
   547
8025
151e377fde0a (svn r11585) -Codechange: Enumify the widgets of the newGRF gui and a slight cleanup there
skidd13
parents: 8019
diff changeset
   548
/* Window definition of the manage newgrfs window */
5237
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
   549
static const WindowDesc _newgrf_desc = {
7341
02515d0d4ced (svn r10704) -Codechange: provide an infrastructure to have resizable windows that are smaller than the default window size.
rubidium
parents: 7034
diff changeset
   550
	WDP_CENTER, WDP_CENTER, 300, 225, 300, 225,
5893
7e431a4abebb (svn r8511) -Codechange: make WindowClass an enumerated value.
rubidium
parents: 5668
diff changeset
   551
	WC_GAME_OPTIONS, WC_NONE,
5237
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
   552
	WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_RESIZABLE,
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
   553
	_newgrf_widgets,
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
   554
};
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
   555
9207
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   556
/** Callback function for the newgrf 'apply changes' confirmation window
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   557
 * @param w Window which is calling this callback
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   558
 * @param confirmed boolean value, true when yes was clicked, false otherwise
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   559
 */
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   560
static void NewGRFConfirmationCallback(Window *w, bool confirmed)
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   561
{
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   562
	if (confirmed) {
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   563
		NewGRFWindow *nw = dynamic_cast<NewGRFWindow*>(w);
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   564
		GRFConfig *c;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   565
		int i = 0;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   566
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   567
		CopyGRFConfigList(nw->orig_list, nw->list, false);
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   568
		ReloadNewGRFData();
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   569
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   570
		/* Show new, updated list */
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   571
		for (c = nw->list; c != NULL && c != nw->sel; c = c->next, i++) {}
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   572
		CopyGRFConfigList(&nw->list, *nw->orig_list, false);
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   573
		for (c = nw->list; c != NULL && i > 0; c = c->next, i--) {}
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   574
		nw->sel = c;
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   575
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   576
		w->SetDirty();
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   577
	}
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   578
}
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   579
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   580
5237
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
   581
5352
86fca6a41aa1 (svn r7523) -Feature: Add the possibility to change the newgrf configuration of a running game.
Darkvater
parents: 5345
diff changeset
   582
/** Setup the NewGRF gui
86fca6a41aa1 (svn r7523) -Feature: Add the possibility to change the newgrf configuration of a running game.
Darkvater
parents: 5345
diff changeset
   583
 * @param editable allow the user to make changes to the grfconfig in the window
86fca6a41aa1 (svn r7523) -Feature: Add the possibility to change the newgrf configuration of a running game.
Darkvater
parents: 5345
diff changeset
   584
 * @param show_params show information about what parameters are set for the grf files
86fca6a41aa1 (svn r7523) -Feature: Add the possibility to change the newgrf configuration of a running game.
Darkvater
parents: 5345
diff changeset
   585
 * @param exec_changes if changes are made to the list (editable is true), apply these
86fca6a41aa1 (svn r7523) -Feature: Add the possibility to change the newgrf configuration of a running game.
Darkvater
parents: 5345
diff changeset
   586
 *        changes immediately or only update the list
86fca6a41aa1 (svn r7523) -Feature: Add the possibility to change the newgrf configuration of a running game.
Darkvater
parents: 5345
diff changeset
   587
 * @param config pointer to a linked-list of grfconfig's that will be shown */
86fca6a41aa1 (svn r7523) -Feature: Add the possibility to change the newgrf configuration of a running game.
Darkvater
parents: 5345
diff changeset
   588
void ShowNewGRFSettings(bool editable, bool show_params, bool exec_changes, GRFConfig **config)
5237
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
   589
{
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
   590
	DeleteWindowByClass(WC_GAME_OPTIONS);
9207
24e3a428ac76 (svn r13073) -Codechange: make classes of the NewGRF windows
peter1138
parents: 9164
diff changeset
   591
	new NewGRFWindow(&_newgrf_desc, editable, show_params, exec_changes, config);
5237
4fce3ea379c2 (svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138
parents:
diff changeset
   592
}