src/industry_gui.cpp
author rubidium
Sun, 09 Dec 2007 18:27:40 +0000
changeset 8048 ee1bbcc3801a
parent 8047 50d438fdf470
child 8049 4182740f3d82
permissions -rw-r--r--
(svn r11608) -Fix: do not trigger industries, but only the industry's tiles.
2186
db48cf29b983 (svn r2701) Insert Id tags into all source files
tron
parents: 2163
diff changeset
     1
/* $Id$ */
db48cf29b983 (svn r2701) Insert Id tags into all source files
tron
parents: 2163
diff changeset
     2
6201
bee01dc45e39 (svn r8987) -Cleanup: doxygen changes. Again. Mostly (still) @files missing tags and (more than just) a few comments style.
belugas
parents: 6200
diff changeset
     3
/** @file industry_gui.cpp */
bee01dc45e39 (svn r8987) -Cleanup: doxygen changes. Again. Mostly (still) @files missing tags and (more than just) a few comments style.
belugas
parents: 6200
diff changeset
     4
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
     5
#include "stdafx.h"
1891
862800791170 (svn r2397) - CodeChange: rename all "ttd" files to "openttd" files.
Darkvater
parents: 1786
diff changeset
     6
#include "openttd.h"
1299
39c06aba09aa (svn r1803) Move debugging stuff into files of it's own
tron
parents: 1287
diff changeset
     7
#include "debug.h"
2163
b17b313113a0 (svn r2673) Include functions.h directly, not globally via openttd.h
tron
parents: 2159
diff changeset
     8
#include "functions.h"
1309
4403a69da4f8 (svn r1813) Declare functions implemented in strings.c in their own shiny new header (though i think some of these function don't belong into strings.c)
tron
parents: 1299
diff changeset
     9
#include "strings.h"
507
04b5403aaf6b (svn r815) Include strings.h only in the files which need it.
tron
parents: 222
diff changeset
    10
#include "table/strings.h"
1914
2b4b3c3a95b4 (svn r2420) - Codechange: magic number elminitation of cursorsprites.
Darkvater
parents: 1891
diff changeset
    11
#include "table/sprites.h"
679
04ca2cd69420 (svn r1117) Move map arrays and some related macros into their own files map.c and map.h
tron
parents: 534
diff changeset
    12
#include "map.h"
1386
0de4f8541aea (svn r1890) Begin to clean up the edit box: Remove one global variable and split the combined edit/original buffer into two
tron
parents: 1309
diff changeset
    13
#include "gui.h"
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    14
#include "window.h"
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    15
#include "gfx.h"
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    16
#include "command.h"
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    17
#include "viewport.h"
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    18
#include "industry.h"
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    19
#include "town.h"
2159
f6284cf5fab0 (svn r2669) Shuffle some more stuff around to reduce dependencies
tron
parents: 2084
diff changeset
    20
#include "variables.h"
5587
167d9a91ef02 (svn r8038) -Merge: the cpp branch. Effort of KUDr, Celestar, glx, Smoovius, stillunknown and pv2b.
rubidium
parents: 5584
diff changeset
    21
#include "helpers.hpp"
6091
c8827d9ae04a (svn r8826) -Codechange: Replace _cargoc's separate arrays with a regular struct array (with accessor) and implement new initialization method using cargo labels.
peter1138
parents: 5893
diff changeset
    22
#include "cargotype.h"
7195
8c728b5fef43 (svn r10473) -Codechange: make the industry "window", the one that shows when you click on an industry, more flexible to allow easier integration with newindustries.
rubidium
parents: 7185
diff changeset
    23
#include "newgrf.h"
8c728b5fef43 (svn r10473) -Codechange: make the industry "window", the one that shows when you click on an industry, more flexible to allow easier integration with newindustries.
rubidium
parents: 7185
diff changeset
    24
#include "newgrf_callbacks.h"
8c728b5fef43 (svn r10473) -Codechange: make the industry "window", the one that shows when you click on an industry, more flexible to allow easier integration with newindustries.
rubidium
parents: 7185
diff changeset
    25
#include "newgrf_industries.h"
8c728b5fef43 (svn r10473) -Codechange: make the industry "window", the one that shows when you click on an industry, more flexible to allow easier integration with newindustries.
rubidium
parents: 7185
diff changeset
    26
#include "newgrf_text.h"
7283
510097a30c0c (svn r10622) -Feature: Introduction of the CBID_INDUSTRY_AVAILABLE's handling, in fund industry window.
belugas
parents: 7282
diff changeset
    27
#include "date.h"
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    28
7218
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
    29
extern Industry *CreateNewIndustry(TileIndex tile, IndustryType type);
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
    30
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
    31
/**
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
    32
 * Search callback function for TryBuildIndustry
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
    33
 * @param tile to test
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
    34
 * @param data that is passed by the caller.  In this case, the type of industry been tested
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
    35
 * @return the success (or not) of the operation
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
    36
 */
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
    37
static bool SearchTileForIndustry(TileIndex tile, uint32 data)
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
    38
{
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
    39
	return CreateNewIndustry(tile, data) != NULL;
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
    40
}
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
    41
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
    42
/**
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
    43
 * Perform a 9*9 tiles circular search around a tile
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
    44
 * in order to find a suitable zone to create the desired industry
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
    45
 * @param tile to start search for
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
    46
 * @param type of the desired industry
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
    47
 * @return the success (or not) of the operation
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
    48
 */
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
    49
static bool TryBuildIndustry(TileIndex tile, int type)
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
    50
{
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
    51
	return CircularTileSearch(tile, 9, SearchTileForIndustry, type);
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
    52
}
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
    53
bool _ignore_restrictions;
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
    54
8047
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
    55
/** Names of the widgets of the dynamic place industries gui */
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
    56
enum DynamicPlaceIndustriesWidgets {
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
    57
	DPIW_CLOSEBOX = 0,
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
    58
	DPIW_CAPTION,
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
    59
	DPIW_MATRIX_WIDGET,
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
    60
	DPIW_SCROLLBAR,
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
    61
	DPIW_INFOPANEL,
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
    62
	DPIW_FUND_WIDGET,
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
    63
	DPIW_RESIZE_WIDGET,
4995
69dbe0e096dc (svn r7001) -Codechange: _build_industry_trypes is now only used by industry_gui.c. Move it there.
belugas
parents: 4939
diff changeset
    64
};
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    65
7282
33798f2d0bde (svn r10621) -Codechange: install a struct holding the user's selection from _fund_gui.
belugas
parents: 7280
diff changeset
    66
/** Attached struct to the window extended data */
33798f2d0bde (svn r10621) -Codechange: install a struct holding the user's selection from _fund_gui.
belugas
parents: 7280
diff changeset
    67
struct fnd_d {
33798f2d0bde (svn r10621) -Codechange: install a struct holding the user's selection from _fund_gui.
belugas
parents: 7280
diff changeset
    68
	int index;             ///< index of the element in the matrix
33798f2d0bde (svn r10621) -Codechange: install a struct holding the user's selection from _fund_gui.
belugas
parents: 7280
diff changeset
    69
	IndustryType select;   ///< industry corresponding to the above index
7283
510097a30c0c (svn r10622) -Feature: Introduction of the CBID_INDUSTRY_AVAILABLE's handling, in fund industry window.
belugas
parents: 7282
diff changeset
    70
	uint16 callback_timer; ///< timer counter for callback eventual verification
510097a30c0c (svn r10622) -Feature: Introduction of the CBID_INDUSTRY_AVAILABLE's handling, in fund industry window.
belugas
parents: 7282
diff changeset
    71
	bool timer_enabled;    ///< timer can be used
7282
33798f2d0bde (svn r10621) -Codechange: install a struct holding the user's selection from _fund_gui.
belugas
parents: 7280
diff changeset
    72
};
33798f2d0bde (svn r10621) -Codechange: install a struct holding the user's selection from _fund_gui.
belugas
parents: 7280
diff changeset
    73
assert_compile(WINDOW_CUSTOM_SIZE >= sizeof(fnd_d));
33798f2d0bde (svn r10621) -Codechange: install a struct holding the user's selection from _fund_gui.
belugas
parents: 7280
diff changeset
    74
7280
90c44142fb30 (svn r10619) -Codechange: Use shorter variable/member names and add some code separation.
belugas
parents: 7279
diff changeset
    75
/** Helper struct holding the available industries for current situation */
7218
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
    76
static struct IndustryData {
7280
90c44142fb30 (svn r10619) -Codechange: Use shorter variable/member names and add some code separation.
belugas
parents: 7279
diff changeset
    77
	uint16 count;                               ///< How many industries are loaded
7282
33798f2d0bde (svn r10621) -Codechange: install a struct holding the user's selection from _fund_gui.
belugas
parents: 7280
diff changeset
    78
	IndustryType index[NUM_INDUSTRYTYPES + 1];  ///< Type of industry, in the order it was loaded
7280
90c44142fb30 (svn r10619) -Codechange: Use shorter variable/member names and add some code separation.
belugas
parents: 7279
diff changeset
    79
	StringID text[NUM_INDUSTRYTYPES + 1];       ///< Text coming from CBM_IND_FUND_MORE_TEXT (if ever)
7283
510097a30c0c (svn r10622) -Feature: Introduction of the CBID_INDUSTRY_AVAILABLE's handling, in fund industry window.
belugas
parents: 7282
diff changeset
    80
	bool enabled[NUM_INDUSTRYTYPES + 1];        ///< availability state, coming from CBID_INDUSTRY_AVAILABLE (if ever)
7280
90c44142fb30 (svn r10619) -Codechange: Use shorter variable/member names and add some code separation.
belugas
parents: 7279
diff changeset
    81
} _fund_gui;
1004
dcc3c5747e22 (svn r1503) Added feature:
miham
parents: 919
diff changeset
    82
7218
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
    83
static void BuildDynamicIndustryWndProc(Window *w, WindowEvent *e)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    84
{
2951
2de6d3a59743 (svn r3510) Fiddle with whitespace and parentheses
tron
parents: 2866
diff changeset
    85
	switch (e->event) {
7218
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
    86
		case WE_CREATE: {
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
    87
			IndustryType ind;
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
    88
			const IndustrySpec *indsp;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    89
7218
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
    90
			/* Shorten the window to the equivalant of the additionnal purchase
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
    91
			 * info coming from the callback.  SO it will only be available to tis full
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
    92
			 * height when newindistries are loaded */
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
    93
			if (!_loaded_newgrf_features.has_newindustries) {
8047
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
    94
				w->widget[DPIW_INFOPANEL].bottom -= 44;
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
    95
				w->widget[DPIW_FUND_WIDGET].bottom -= 44;
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
    96
				w->widget[DPIW_FUND_WIDGET].top -= 44;
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
    97
				w->widget[DPIW_RESIZE_WIDGET].bottom -= 44;
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
    98
				w->widget[DPIW_RESIZE_WIDGET].top -= 44;
7218
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
    99
				w->resize.height = w->height -= 44;
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   100
			}
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   101
7283
510097a30c0c (svn r10622) -Feature: Introduction of the CBID_INDUSTRY_AVAILABLE's handling, in fund industry window.
belugas
parents: 7282
diff changeset
   102
			WP(w, fnd_d).timer_enabled = _loaded_newgrf_features.has_newindustries;
510097a30c0c (svn r10622) -Feature: Introduction of the CBID_INDUSTRY_AVAILABLE's handling, in fund industry window.
belugas
parents: 7282
diff changeset
   103
7218
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   104
			/* Initilialize structures */
7280
90c44142fb30 (svn r10619) -Codechange: Use shorter variable/member names and add some code separation.
belugas
parents: 7279
diff changeset
   105
			memset(&_fund_gui.index, 0xFF, NUM_INDUSTRYTYPES);
90c44142fb30 (svn r10619) -Codechange: Use shorter variable/member names and add some code separation.
belugas
parents: 7279
diff changeset
   106
			memset(&_fund_gui.text, STR_NULL, NUM_INDUSTRYTYPES);
7283
510097a30c0c (svn r10622) -Feature: Introduction of the CBID_INDUSTRY_AVAILABLE's handling, in fund industry window.
belugas
parents: 7282
diff changeset
   107
			memset(&_fund_gui.enabled, false, NUM_INDUSTRYTYPES);
7280
90c44142fb30 (svn r10619) -Codechange: Use shorter variable/member names and add some code separation.
belugas
parents: 7279
diff changeset
   108
			_fund_gui.count = 0;
7218
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   109
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   110
			w->vscroll.cap = 8; // rows in grid, same in scroller
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   111
			w->resize.step_height = 13;
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   112
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   113
			if (_game_mode == GM_EDITOR) { // give room for the Many Random "button"
7280
90c44142fb30 (svn r10619) -Codechange: Use shorter variable/member names and add some code separation.
belugas
parents: 7279
diff changeset
   114
				_fund_gui.index[_fund_gui.count] = INVALID_INDUSTRYTYPE;
90c44142fb30 (svn r10619) -Codechange: Use shorter variable/member names and add some code separation.
belugas
parents: 7279
diff changeset
   115
				_fund_gui.count++;
7283
510097a30c0c (svn r10622) -Feature: Introduction of the CBID_INDUSTRY_AVAILABLE's handling, in fund industry window.
belugas
parents: 7282
diff changeset
   116
				WP(w, fnd_d).timer_enabled = false;
7218
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   117
			}
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   118
7708
48d236e6fbf4 (svn r11242) -Codechange: When displaying the industry funding gui, present the industries in the same order as they are available.
belugas
parents: 7647
diff changeset
   119
			/* Fill the _fund_gui structure with industries.
48d236e6fbf4 (svn r11242) -Codechange: When displaying the industry funding gui, present the industries in the same order as they are available.
belugas
parents: 7647
diff changeset
   120
			 * The tests performed after the enabled allow to load the industries
48d236e6fbf4 (svn r11242) -Codechange: When displaying the industry funding gui, present the industries in the same order as they are available.
belugas
parents: 7647
diff changeset
   121
			 * In the same way they are inserted by grf (if any)
48d236e6fbf4 (svn r11242) -Codechange: When displaying the industry funding gui, present the industries in the same order as they are available.
belugas
parents: 7647
diff changeset
   122
			 */
7319
9b20d1dbe5d6 (svn r10675) -Codechange: unhardcode the industry types used in several locations of the source code.
rubidium
parents: 7289
diff changeset
   123
			for (ind = 0; ind < NUM_INDUSTRYTYPES; ind++) {
7218
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   124
				indsp = GetIndustrySpec(ind);
7708
48d236e6fbf4 (svn r11242) -Codechange: When displaying the industry funding gui, present the industries in the same order as they are available.
belugas
parents: 7647
diff changeset
   125
				if (indsp->enabled){
48d236e6fbf4 (svn r11242) -Codechange: When displaying the industry funding gui, present the industries in the same order as they are available.
belugas
parents: 7647
diff changeset
   126
					/* Rule is that editor mode loads all industries.
48d236e6fbf4 (svn r11242) -Codechange: When displaying the industry funding gui, present the industries in the same order as they are available.
belugas
parents: 7647
diff changeset
   127
					 * In game mode, all non raw industries are loaded too
48d236e6fbf4 (svn r11242) -Codechange: When displaying the industry funding gui, present the industries in the same order as they are available.
belugas
parents: 7647
diff changeset
   128
					 * and raw ones are loaded only when setting allows it */
48d236e6fbf4 (svn r11242) -Codechange: When displaying the industry funding gui, present the industries in the same order as they are available.
belugas
parents: 7647
diff changeset
   129
					if (_game_mode != GM_EDITOR && indsp->IsRawIndustry() && _patches.raw_industry_construction == 0) continue;
7280
90c44142fb30 (svn r10619) -Codechange: Use shorter variable/member names and add some code separation.
belugas
parents: 7279
diff changeset
   130
					_fund_gui.index[_fund_gui.count] = ind;
7647
6a1162b442ce (svn r11178) -Fix: don't check newgrf callback 22 in scenario editor
glx
parents: 7645
diff changeset
   131
					_fund_gui.enabled[_fund_gui.count] = (_game_mode == GM_EDITOR) || CheckIfCallBackAllowsAvailability(ind, IACT_USERCREATION);
7280
90c44142fb30 (svn r10619) -Codechange: Use shorter variable/member names and add some code separation.
belugas
parents: 7279
diff changeset
   132
					_fund_gui.count++;
7218
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   133
				}
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   134
			}
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   135
7282
33798f2d0bde (svn r10621) -Codechange: install a struct holding the user's selection from _fund_gui.
belugas
parents: 7280
diff changeset
   136
			/* first indutry type is selected.
33798f2d0bde (svn r10621) -Codechange: install a struct holding the user's selection from _fund_gui.
belugas
parents: 7280
diff changeset
   137
			 * I'll be damned if there are none available ;) */
33798f2d0bde (svn r10621) -Codechange: install a struct holding the user's selection from _fund_gui.
belugas
parents: 7280
diff changeset
   138
			WP(w, fnd_d).index = 0;
33798f2d0bde (svn r10621) -Codechange: install a struct holding the user's selection from _fund_gui.
belugas
parents: 7280
diff changeset
   139
			WP(w, fnd_d).select = _fund_gui.index[0];
7283
510097a30c0c (svn r10622) -Feature: Introduction of the CBID_INDUSTRY_AVAILABLE's handling, in fund industry window.
belugas
parents: 7282
diff changeset
   140
			WP(w, fnd_d).callback_timer = DAY_TICKS;
7218
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   141
		} break;
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   142
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   143
		case WE_PAINT: {
7282
33798f2d0bde (svn r10621) -Codechange: install a struct holding the user's selection from _fund_gui.
belugas
parents: 7280
diff changeset
   144
			const IndustrySpec *indsp = (WP(w, fnd_d).select == INVALID_INDUSTRYTYPE) ? NULL : GetIndustrySpec(WP(w, fnd_d).select);
8047
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   145
			int x_str = w->widget[DPIW_INFOPANEL].left + 3;
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   146
			int y_str = w->widget[DPIW_INFOPANEL].top + 3;
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   147
			const Widget *wi = &w->widget[DPIW_INFOPANEL];
7218
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   148
			int max_width = wi->right - wi->left - 4;
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   149
7280
90c44142fb30 (svn r10619) -Codechange: Use shorter variable/member names and add some code separation.
belugas
parents: 7279
diff changeset
   150
			/* Raw industries might be prospected. Show this fact by changing the string
90c44142fb30 (svn r10619) -Codechange: Use shorter variable/member names and add some code separation.
belugas
parents: 7279
diff changeset
   151
			 * In Editor, you just build, while ingame, or you fund or you prospect */
7218
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   152
			if (_game_mode == GM_EDITOR) {
7283
510097a30c0c (svn r10622) -Feature: Introduction of the CBID_INDUSTRY_AVAILABLE's handling, in fund industry window.
belugas
parents: 7282
diff changeset
   153
				/* We've chosen many random industries but no industries have been specified */
7289
9d5fe9be6f2f (svn r10637) -Fix: Enable the Random Industries in scenario editor if setting Number of Industries is not NONE.
belugas
parents: 7284
diff changeset
   154
				if (indsp == NULL) _fund_gui.enabled[WP(w, fnd_d).index] = _opt.diff.number_industries != 0;
8047
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   155
				w->widget[DPIW_FUND_WIDGET].data = STR_BUILD_NEW_INDUSTRY;
7218
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   156
			} else {
8047
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   157
				w->widget[DPIW_FUND_WIDGET].data = (_patches.raw_industry_construction == 2 && indsp->IsRawIndustry()) ? STR_PROSPECT_NEW_INDUSTRY : STR_FUND_NEW_INDUSTRY;
7218
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   158
			}
8047
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   159
			w->SetWidgetDisabledState(DPIW_FUND_WIDGET, !_fund_gui.enabled[WP(w, fnd_d).index]);
7218
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   160
7280
90c44142fb30 (svn r10619) -Codechange: Use shorter variable/member names and add some code separation.
belugas
parents: 7279
diff changeset
   161
			SetVScrollCount(w, _fund_gui.count);
7218
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   162
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   163
			DrawWindowWidgets(w);
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   164
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   165
			/* and now with the matrix painting */
7280
90c44142fb30 (svn r10619) -Codechange: Use shorter variable/member names and add some code separation.
belugas
parents: 7279
diff changeset
   166
			for (byte i = 0; i < w->vscroll.cap && ((i + w->vscroll.pos) < _fund_gui.count); i++) {
7218
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   167
				int offset = i * 13;
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   168
				int x = 3;
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   169
				int y = 16;
7282
33798f2d0bde (svn r10621) -Codechange: install a struct holding the user's selection from _fund_gui.
belugas
parents: 7280
diff changeset
   170
				bool selected = WP(w, fnd_d).index == i + w->vscroll.pos;
7218
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   171
7280
90c44142fb30 (svn r10619) -Codechange: Use shorter variable/member names and add some code separation.
belugas
parents: 7279
diff changeset
   172
				if (_fund_gui.index[i + w->vscroll.pos] == INVALID_INDUSTRYTYPE) {
7877
184477162db7 (svn r11427) -Fix: Forgot to Truncate the string "Many Random Industries" in the funding industry window. In some languages, it gets drawn outside of the gui.
belugas
parents: 7824
diff changeset
   173
					DrawStringTruncated(20, y + offset, STR_MANY_RANDOM_INDUSTRIES, selected ? TC_WHITE : TC_ORANGE, max_width - 25);
7218
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   174
					continue;
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   175
				}
7280
90c44142fb30 (svn r10619) -Codechange: Use shorter variable/member names and add some code separation.
belugas
parents: 7279
diff changeset
   176
				const IndustrySpec *indsp = GetIndustrySpec(_fund_gui.index[i + w->vscroll.pos]);
7218
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   177
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   178
				/* Draw the name of the industry in white is selected, otherwise, in orange */
7824
5a63d41b59ea (svn r11374) -Codechange: Give meaning to the magical number that specifies the color of the text in a DrawString call.
belugas
parents: 7822
diff changeset
   179
				DrawStringTruncated(20, y + offset, indsp->name, selected ? TC_WHITE : TC_ORANGE, max_width - 25);
7218
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   180
				GfxFillRect(x,     y + 1 + offset,  x + 10, y + 7 + offset, selected ? 15 : 0);
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   181
				GfxFillRect(x + 1, y + 2 + offset,  x +  9, y + 6 + offset, indsp->map_colour);
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   182
			}
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   183
7282
33798f2d0bde (svn r10621) -Codechange: install a struct holding the user's selection from _fund_gui.
belugas
parents: 7280
diff changeset
   184
			if (WP(w, fnd_d).select == INVALID_INDUSTRYTYPE) {
7218
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   185
				DrawStringMultiLine(x_str, y_str, STR_RANDOM_INDUSTRIES_TIP, max_width, wi->bottom - wi->top - 40);
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   186
				break;
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   187
			}
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   188
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   189
			if (_game_mode != GM_EDITOR) {
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   190
				SetDParam(0, indsp->GetConstructionCost());
7824
5a63d41b59ea (svn r11374) -Codechange: Give meaning to the magical number that specifies the color of the text in a DrawString call.
belugas
parents: 7822
diff changeset
   191
				DrawStringTruncated(x_str, y_str, STR_482F_COST, TC_FROMSTRING, max_width);
7218
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   192
				y_str += 11;
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   193
			}
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   194
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   195
			/* Draw the accepted cargos, if any. Otherwhise, will print "Nothing" */
7822
dc5f1aa98fe9 (svn r11372) -Fix [FS#1394]: don't stop on first invalid cargo type when displaying industry acceptance
glx
parents: 7806
diff changeset
   196
			StringID str = STR_4827_REQUIRES;
dc5f1aa98fe9 (svn r11372) -Fix [FS#1394]: don't stop on first invalid cargo type when displaying industry acceptance
glx
parents: 7806
diff changeset
   197
			byte p = 0;
dc5f1aa98fe9 (svn r11372) -Fix [FS#1394]: don't stop on first invalid cargo type when displaying industry acceptance
glx
parents: 7806
diff changeset
   198
			SetDParam(0, STR_00D0_NOTHING);
dc5f1aa98fe9 (svn r11372) -Fix [FS#1394]: don't stop on first invalid cargo type when displaying industry acceptance
glx
parents: 7806
diff changeset
   199
			for (byte j = 0; j < lengthof(indsp->accepts_cargo); j++) {
dc5f1aa98fe9 (svn r11372) -Fix [FS#1394]: don't stop on first invalid cargo type when displaying industry acceptance
glx
parents: 7806
diff changeset
   200
				if (indsp->accepts_cargo[j] == CT_INVALID) continue;
dc5f1aa98fe9 (svn r11372) -Fix [FS#1394]: don't stop on first invalid cargo type when displaying industry acceptance
glx
parents: 7806
diff changeset
   201
				if (p > 0) str++;
dc5f1aa98fe9 (svn r11372) -Fix [FS#1394]: don't stop on first invalid cargo type when displaying industry acceptance
glx
parents: 7806
diff changeset
   202
				SetDParam(p++, GetCargo(indsp->accepts_cargo[j])->name);
7218
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   203
			}
7824
5a63d41b59ea (svn r11374) -Codechange: Give meaning to the magical number that specifies the color of the text in a DrawString call.
belugas
parents: 7822
diff changeset
   204
			DrawStringTruncated(x_str, y_str, str, TC_FROMSTRING, max_width);
7822
dc5f1aa98fe9 (svn r11372) -Fix [FS#1394]: don't stop on first invalid cargo type when displaying industry acceptance
glx
parents: 7806
diff changeset
   205
			y_str += 11;
7218
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   206
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   207
			/* Draw the produced cargos, if any. Otherwhise, will print "Nothing" */
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   208
			str = STR_4827_PRODUCES;
7822
dc5f1aa98fe9 (svn r11372) -Fix [FS#1394]: don't stop on first invalid cargo type when displaying industry acceptance
glx
parents: 7806
diff changeset
   209
			p = 0;
dc5f1aa98fe9 (svn r11372) -Fix [FS#1394]: don't stop on first invalid cargo type when displaying industry acceptance
glx
parents: 7806
diff changeset
   210
			SetDParam(0, STR_00D0_NOTHING);
dc5f1aa98fe9 (svn r11372) -Fix [FS#1394]: don't stop on first invalid cargo type when displaying industry acceptance
glx
parents: 7806
diff changeset
   211
			for (byte j = 0; j < lengthof(indsp->produced_cargo); j++) {
dc5f1aa98fe9 (svn r11372) -Fix [FS#1394]: don't stop on first invalid cargo type when displaying industry acceptance
glx
parents: 7806
diff changeset
   212
				if (indsp->produced_cargo[j] == CT_INVALID) continue;
dc5f1aa98fe9 (svn r11372) -Fix [FS#1394]: don't stop on first invalid cargo type when displaying industry acceptance
glx
parents: 7806
diff changeset
   213
				if (p > 0) str++;
dc5f1aa98fe9 (svn r11372) -Fix [FS#1394]: don't stop on first invalid cargo type when displaying industry acceptance
glx
parents: 7806
diff changeset
   214
				SetDParam(p++, GetCargo(indsp->produced_cargo[j])->name);
7218
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   215
			}
7824
5a63d41b59ea (svn r11374) -Codechange: Give meaning to the magical number that specifies the color of the text in a DrawString call.
belugas
parents: 7822
diff changeset
   216
			DrawStringTruncated(x_str, y_str, str, TC_FROMSTRING, max_width);
7822
dc5f1aa98fe9 (svn r11372) -Fix [FS#1394]: don't stop on first invalid cargo type when displaying industry acceptance
glx
parents: 7806
diff changeset
   217
			y_str += 11;
7218
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   218
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   219
			/* Get the additional purchase info text, if it has not already been */
7282
33798f2d0bde (svn r10621) -Codechange: install a struct holding the user's selection from _fund_gui.
belugas
parents: 7280
diff changeset
   220
			if (_fund_gui.text[WP(w, fnd_d).index] == STR_NULL) {   // Have i been called already?
7928
63e18de69e50 (svn r11481) -Codechange: Rename the HASBIT function to fit with the naming style
skidd13
parents: 7922
diff changeset
   221
				if (HasBit(indsp->callback_flags, CBM_IND_FUND_MORE_TEXT)) {          // No. Can it be called?
7282
33798f2d0bde (svn r10621) -Codechange: install a struct holding the user's selection from _fund_gui.
belugas
parents: 7280
diff changeset
   222
					uint16 callback_res = GetIndustryCallback(CBID_INDUSTRY_FUND_MORE_TEXT, 0, 0, NULL, WP(w, fnd_d).select, INVALID_TILE);
7218
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   223
					if (callback_res != CALLBACK_FAILED) {  // Did it failed?
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   224
						StringID newtxt = GetGRFStringID(indsp->grf_prop.grffile->grfid, 0xD000 + callback_res);  // No. here's the new string
7282
33798f2d0bde (svn r10621) -Codechange: install a struct holding the user's selection from _fund_gui.
belugas
parents: 7280
diff changeset
   225
						_fund_gui.text[WP(w, fnd_d).index] = newtxt;   // Store it for further usage
7218
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   226
					}
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   227
				}
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   228
			}
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   229
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   230
			/* Draw the Additional purchase text, provided by newgrf callback, if any.
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   231
			 * Otherwhise, will print Nothing */
7282
33798f2d0bde (svn r10621) -Codechange: install a struct holding the user's selection from _fund_gui.
belugas
parents: 7280
diff changeset
   232
			str = _fund_gui.text[WP(w, fnd_d).index];
7280
90c44142fb30 (svn r10619) -Codechange: Use shorter variable/member names and add some code separation.
belugas
parents: 7279
diff changeset
   233
			if (str != STR_NULL && str != STR_UNDEFINED) {
90c44142fb30 (svn r10619) -Codechange: Use shorter variable/member names and add some code separation.
belugas
parents: 7279
diff changeset
   234
				SetDParam(0, str);
90c44142fb30 (svn r10619) -Codechange: Use shorter variable/member names and add some code separation.
belugas
parents: 7279
diff changeset
   235
				DrawStringMultiLine(x_str, y_str, STR_JUST_STRING, max_width, wi->bottom - wi->top - 40);
7218
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   236
			}
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   237
		} break;
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   238
8047
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   239
		case WE_DOUBLE_CLICK:
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   240
			if (e->we.click.widget != DPIW_MATRIX_WIDGET) break;
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   241
			e->we.click.widget = DPIW_FUND_WIDGET;
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   242
			/* Fall through */
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   243
7218
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   244
		case WE_CLICK:
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   245
			switch (e->we.click.widget) {
8047
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   246
				case DPIW_MATRIX_WIDGET: {
7282
33798f2d0bde (svn r10621) -Codechange: install a struct holding the user's selection from _fund_gui.
belugas
parents: 7280
diff changeset
   247
					const IndustrySpec *indsp;
8047
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   248
					int y = (e->we.click.pt.y - w->widget[DPIW_MATRIX_WIDGET].top) / 13 + w->vscroll.pos ;
7218
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   249
7280
90c44142fb30 (svn r10619) -Codechange: Use shorter variable/member names and add some code separation.
belugas
parents: 7279
diff changeset
   250
					if (y >= 0 && y < _fund_gui.count) { // Is it within the boundaries of available data?
7282
33798f2d0bde (svn r10621) -Codechange: install a struct holding the user's selection from _fund_gui.
belugas
parents: 7280
diff changeset
   251
						WP(w, fnd_d).index = y;
33798f2d0bde (svn r10621) -Codechange: install a struct holding the user's selection from _fund_gui.
belugas
parents: 7280
diff changeset
   252
						WP(w, fnd_d).select = _fund_gui.index[WP(w, fnd_d).index];
33798f2d0bde (svn r10621) -Codechange: install a struct holding the user's selection from _fund_gui.
belugas
parents: 7280
diff changeset
   253
						indsp = (WP(w, fnd_d).select == INVALID_INDUSTRYTYPE) ? NULL : GetIndustrySpec(WP(w, fnd_d).select);
7218
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   254
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   255
						SetWindowDirty(w);
7280
90c44142fb30 (svn r10619) -Codechange: Use shorter variable/member names and add some code separation.
belugas
parents: 7279
diff changeset
   256
7282
33798f2d0bde (svn r10621) -Codechange: install a struct holding the user's selection from _fund_gui.
belugas
parents: 7280
diff changeset
   257
						if ((_game_mode != GM_EDITOR && _patches.raw_industry_construction == 2 && indsp != NULL && indsp->IsRawIndustry()) ||
33798f2d0bde (svn r10621) -Codechange: install a struct holding the user's selection from _fund_gui.
belugas
parents: 7280
diff changeset
   258
								WP(w, fnd_d).select == INVALID_INDUSTRYTYPE) {
7218
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   259
							/* Reset the button state if going to prospecting or "build many industries" */
8032
f35fba9bacb0 (svn r11592) -Codechange: Use the Window member RaiseButtons and remove the now useless RaiseWindowButtons function
belugas
parents: 7997
diff changeset
   260
							w->RaiseButtons();
7218
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   261
							ResetObjectToPlace();
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   262
						}
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   263
					}
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   264
				} break;
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   265
8047
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   266
				case DPIW_FUND_WIDGET: {
7282
33798f2d0bde (svn r10621) -Codechange: install a struct holding the user's selection from _fund_gui.
belugas
parents: 7280
diff changeset
   267
					if (WP(w, fnd_d).select == INVALID_INDUSTRYTYPE) {
8047
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   268
						w->HandleButtonClick(DPIW_FUND_WIDGET);
7218
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   269
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   270
						if (GetNumTowns() == 0) {
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   271
							ShowErrorMessage(STR_0286_MUST_BUILD_TOWN_FIRST, STR_CAN_T_GENERATE_INDUSTRIES, 0, 0);
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   272
						} else {
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   273
							extern void GenerateIndustries();
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   274
							_generating_world = true;
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   275
							GenerateIndustries();
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   276
							_generating_world = false;
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   277
						}
7282
33798f2d0bde (svn r10621) -Codechange: install a struct holding the user's selection from _fund_gui.
belugas
parents: 7280
diff changeset
   278
					} else if (_game_mode != GM_EDITOR && _patches.raw_industry_construction == 2 && GetIndustrySpec(WP(w, fnd_d).select)->IsRawIndustry()) {
33798f2d0bde (svn r10621) -Codechange: install a struct holding the user's selection from _fund_gui.
belugas
parents: 7280
diff changeset
   279
						DoCommandP(0, WP(w, fnd_d).select, 0, NULL, CMD_BUILD_INDUSTRY | CMD_MSG(STR_4830_CAN_T_CONSTRUCT_THIS_INDUSTRY));
8047
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   280
						w->HandleButtonClick(DPIW_FUND_WIDGET);
7282
33798f2d0bde (svn r10621) -Codechange: install a struct holding the user's selection from _fund_gui.
belugas
parents: 7280
diff changeset
   281
					} else {
8047
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   282
						HandlePlacePushButton(w, DPIW_FUND_WIDGET, SPR_CURSOR_INDUSTRY, VHM_RECT, NULL);
7218
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   283
					}
7271
490a663678ad (svn r10600) -Codechange: code-stylising the gui switch-case code
belugas
parents: 7218
diff changeset
   284
				} break;
490a663678ad (svn r10600) -Codechange: code-stylising the gui switch-case code
belugas
parents: 7218
diff changeset
   285
			}
490a663678ad (svn r10600) -Codechange: code-stylising the gui switch-case code
belugas
parents: 7218
diff changeset
   286
			break;
7218
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   287
7271
490a663678ad (svn r10600) -Codechange: code-stylising the gui switch-case code
belugas
parents: 7218
diff changeset
   288
		case WE_RESIZE: {
7280
90c44142fb30 (svn r10619) -Codechange: Use shorter variable/member names and add some code separation.
belugas
parents: 7279
diff changeset
   289
			/* Adjust the number of items in the matrix depending of the rezise */
7271
490a663678ad (svn r10600) -Codechange: code-stylising the gui switch-case code
belugas
parents: 7218
diff changeset
   290
			w->vscroll.cap  += e->we.sizing.diff.y / (int)w->resize.step_height;
8047
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   291
			w->widget[DPIW_MATRIX_WIDGET].data = (w->vscroll.cap << 8) + 1;
7271
490a663678ad (svn r10600) -Codechange: code-stylising the gui switch-case code
belugas
parents: 7218
diff changeset
   292
		} break;
7218
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   293
7271
490a663678ad (svn r10600) -Codechange: code-stylising the gui switch-case code
belugas
parents: 7218
diff changeset
   294
		case WE_PLACE_OBJ: {
7747
b76ffa88b556 (svn r11284) -Codechange: don't reset build industry cursor if it failed
glx
parents: 7713
diff changeset
   295
			bool success = true;
7280
90c44142fb30 (svn r10619) -Codechange: Use shorter variable/member names and add some code separation.
belugas
parents: 7279
diff changeset
   296
			/* We do not need to protect ourselves against "Random Many Industries" in this mode */
7282
33798f2d0bde (svn r10621) -Codechange: install a struct holding the user's selection from _fund_gui.
belugas
parents: 7280
diff changeset
   297
			const IndustrySpec *indsp = GetIndustrySpec(WP(w, fnd_d).select);
7271
490a663678ad (svn r10600) -Codechange: code-stylising the gui switch-case code
belugas
parents: 7218
diff changeset
   298
490a663678ad (svn r10600) -Codechange: code-stylising the gui switch-case code
belugas
parents: 7218
diff changeset
   299
			if (_game_mode == GM_EDITOR) {
490a663678ad (svn r10600) -Codechange: code-stylising the gui switch-case code
belugas
parents: 7218
diff changeset
   300
				/* Show error if no town exists at all */
490a663678ad (svn r10600) -Codechange: code-stylising the gui switch-case code
belugas
parents: 7218
diff changeset
   301
				if (GetNumTowns() == 0) {
7282
33798f2d0bde (svn r10621) -Codechange: install a struct holding the user's selection from _fund_gui.
belugas
parents: 7280
diff changeset
   302
					SetDParam(0, indsp->name);
7271
490a663678ad (svn r10600) -Codechange: code-stylising the gui switch-case code
belugas
parents: 7218
diff changeset
   303
					ShowErrorMessage(STR_0286_MUST_BUILD_TOWN_FIRST, STR_0285_CAN_T_BUILD_HERE, e->we.place.pt.x, e->we.place.pt.y);
490a663678ad (svn r10600) -Codechange: code-stylising the gui switch-case code
belugas
parents: 7218
diff changeset
   304
					return;
490a663678ad (svn r10600) -Codechange: code-stylising the gui switch-case code
belugas
parents: 7218
diff changeset
   305
				}
490a663678ad (svn r10600) -Codechange: code-stylising the gui switch-case code
belugas
parents: 7218
diff changeset
   306
490a663678ad (svn r10600) -Codechange: code-stylising the gui switch-case code
belugas
parents: 7218
diff changeset
   307
				_current_player = OWNER_NONE;
490a663678ad (svn r10600) -Codechange: code-stylising the gui switch-case code
belugas
parents: 7218
diff changeset
   308
				_generating_world = true;
490a663678ad (svn r10600) -Codechange: code-stylising the gui switch-case code
belugas
parents: 7218
diff changeset
   309
				_ignore_restrictions = true;
7747
b76ffa88b556 (svn r11284) -Codechange: don't reset build industry cursor if it failed
glx
parents: 7713
diff changeset
   310
				success = TryBuildIndustry(e->we.place.tile, WP(w, fnd_d).select);
b76ffa88b556 (svn r11284) -Codechange: don't reset build industry cursor if it failed
glx
parents: 7713
diff changeset
   311
				if (!success) {
7282
33798f2d0bde (svn r10621) -Codechange: install a struct holding the user's selection from _fund_gui.
belugas
parents: 7280
diff changeset
   312
					SetDParam(0, indsp->name);
7271
490a663678ad (svn r10600) -Codechange: code-stylising the gui switch-case code
belugas
parents: 7218
diff changeset
   313
					ShowErrorMessage(_error_message, STR_0285_CAN_T_BUILD_HERE, e->we.place.pt.x, e->we.place.pt.y);
490a663678ad (svn r10600) -Codechange: code-stylising the gui switch-case code
belugas
parents: 7218
diff changeset
   314
				}
7282
33798f2d0bde (svn r10621) -Codechange: install a struct holding the user's selection from _fund_gui.
belugas
parents: 7280
diff changeset
   315
7271
490a663678ad (svn r10600) -Codechange: code-stylising the gui switch-case code
belugas
parents: 7218
diff changeset
   316
				_ignore_restrictions = false;
490a663678ad (svn r10600) -Codechange: code-stylising the gui switch-case code
belugas
parents: 7218
diff changeset
   317
				_generating_world = false;
7747
b76ffa88b556 (svn r11284) -Codechange: don't reset build industry cursor if it failed
glx
parents: 7713
diff changeset
   318
			} else {
7806
2876d9bfa05a (svn r11356) -Fix (r11305): funding industries in MP game was causing desync
glx
parents: 7790
diff changeset
   319
				success = DoCommandP(e->we.place.tile, WP(w, fnd_d).select, InteractiveRandomRange(indsp->num_table), NULL, CMD_BUILD_INDUSTRY | CMD_MSG(STR_4830_CAN_T_CONSTRUCT_THIS_INDUSTRY));
7747
b76ffa88b556 (svn r11284) -Codechange: don't reset build industry cursor if it failed
glx
parents: 7713
diff changeset
   320
			}
7282
33798f2d0bde (svn r10621) -Codechange: install a struct holding the user's selection from _fund_gui.
belugas
parents: 7280
diff changeset
   321
7747
b76ffa88b556 (svn r11284) -Codechange: don't reset build industry cursor if it failed
glx
parents: 7713
diff changeset
   322
			/* If an industry has been built, just reset the cursor and the system */
b76ffa88b556 (svn r11284) -Codechange: don't reset build industry cursor if it failed
glx
parents: 7713
diff changeset
   323
			if (success) ResetObjectToPlace();
7271
490a663678ad (svn r10600) -Codechange: code-stylising the gui switch-case code
belugas
parents: 7218
diff changeset
   324
		} break;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   325
7283
510097a30c0c (svn r10622) -Feature: Introduction of the CBID_INDUSTRY_AVAILABLE's handling, in fund industry window.
belugas
parents: 7282
diff changeset
   326
		case WE_TICK:
510097a30c0c (svn r10622) -Feature: Introduction of the CBID_INDUSTRY_AVAILABLE's handling, in fund industry window.
belugas
parents: 7282
diff changeset
   327
			if (!WP(w, fnd_d).timer_enabled) break;
510097a30c0c (svn r10622) -Feature: Introduction of the CBID_INDUSTRY_AVAILABLE's handling, in fund industry window.
belugas
parents: 7282
diff changeset
   328
			if (--WP(w, fnd_d).callback_timer == 0) {
510097a30c0c (svn r10622) -Feature: Introduction of the CBID_INDUSTRY_AVAILABLE's handling, in fund industry window.
belugas
parents: 7282
diff changeset
   329
				/* We have just passed another day.
510097a30c0c (svn r10622) -Feature: Introduction of the CBID_INDUSTRY_AVAILABLE's handling, in fund industry window.
belugas
parents: 7282
diff changeset
   330
				 * See if we need to update availability of currently selected industry */
510097a30c0c (svn r10622) -Feature: Introduction of the CBID_INDUSTRY_AVAILABLE's handling, in fund industry window.
belugas
parents: 7282
diff changeset
   331
				WP(w, fnd_d).callback_timer = DAY_TICKS;  //restart counter
510097a30c0c (svn r10622) -Feature: Introduction of the CBID_INDUSTRY_AVAILABLE's handling, in fund industry window.
belugas
parents: 7282
diff changeset
   332
510097a30c0c (svn r10622) -Feature: Introduction of the CBID_INDUSTRY_AVAILABLE's handling, in fund industry window.
belugas
parents: 7282
diff changeset
   333
				const IndustrySpec *indsp = GetIndustrySpec(WP(w, fnd_d).select);
510097a30c0c (svn r10622) -Feature: Introduction of the CBID_INDUSTRY_AVAILABLE's handling, in fund industry window.
belugas
parents: 7282
diff changeset
   334
510097a30c0c (svn r10622) -Feature: Introduction of the CBID_INDUSTRY_AVAILABLE's handling, in fund industry window.
belugas
parents: 7282
diff changeset
   335
				if (indsp->enabled) {
510097a30c0c (svn r10622) -Feature: Introduction of the CBID_INDUSTRY_AVAILABLE's handling, in fund industry window.
belugas
parents: 7282
diff changeset
   336
					bool call_back_result = CheckIfCallBackAllowsAvailability(WP(w, fnd_d).select, IACT_USERCREATION);
510097a30c0c (svn r10622) -Feature: Introduction of the CBID_INDUSTRY_AVAILABLE's handling, in fund industry window.
belugas
parents: 7282
diff changeset
   337
510097a30c0c (svn r10622) -Feature: Introduction of the CBID_INDUSTRY_AVAILABLE's handling, in fund industry window.
belugas
parents: 7282
diff changeset
   338
					/* Only if result does match the previous state would it require a redraw. */
510097a30c0c (svn r10622) -Feature: Introduction of the CBID_INDUSTRY_AVAILABLE's handling, in fund industry window.
belugas
parents: 7282
diff changeset
   339
					if (call_back_result != _fund_gui.enabled[WP(w, fnd_d).index]) {
510097a30c0c (svn r10622) -Feature: Introduction of the CBID_INDUSTRY_AVAILABLE's handling, in fund industry window.
belugas
parents: 7282
diff changeset
   340
						_fund_gui.enabled[WP(w, fnd_d).index] = call_back_result;
510097a30c0c (svn r10622) -Feature: Introduction of the CBID_INDUSTRY_AVAILABLE's handling, in fund industry window.
belugas
parents: 7282
diff changeset
   341
						SetWindowDirty(w);
510097a30c0c (svn r10622) -Feature: Introduction of the CBID_INDUSTRY_AVAILABLE's handling, in fund industry window.
belugas
parents: 7282
diff changeset
   342
					}
510097a30c0c (svn r10622) -Feature: Introduction of the CBID_INDUSTRY_AVAILABLE's handling, in fund industry window.
belugas
parents: 7282
diff changeset
   343
				}
510097a30c0c (svn r10622) -Feature: Introduction of the CBID_INDUSTRY_AVAILABLE's handling, in fund industry window.
belugas
parents: 7282
diff changeset
   344
			}
7271
490a663678ad (svn r10600) -Codechange: code-stylising the gui switch-case code
belugas
parents: 7218
diff changeset
   345
			break;
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 176
diff changeset
   346
7271
490a663678ad (svn r10600) -Codechange: code-stylising the gui switch-case code
belugas
parents: 7218
diff changeset
   347
		case WE_TIMEOUT:
7282
33798f2d0bde (svn r10621) -Codechange: install a struct holding the user's selection from _fund_gui.
belugas
parents: 7280
diff changeset
   348
		case WE_ABORT_PLACE_OBJ:
8032
f35fba9bacb0 (svn r11592) -Codechange: Use the Window member RaiseButtons and remove the now useless RaiseWindowButtons function
belugas
parents: 7997
diff changeset
   349
			w->RaiseButtons();
7271
490a663678ad (svn r10600) -Codechange: code-stylising the gui switch-case code
belugas
parents: 7218
diff changeset
   350
			break;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   351
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   352
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   353
8047
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   354
/** Widget definition of the dynamic place industries gui */
7218
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   355
static const Widget _build_dynamic_industry_widgets[] = {
8047
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   356
{   WWT_CLOSEBOX,    RESIZE_NONE,    7,     0,    10,     0,    13, STR_00C5,                       STR_018B_CLOSE_WINDOW},            // DPIW_CLOSEBOX
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   357
{    WWT_CAPTION,   RESIZE_RIGHT,    7,    11,   169,     0,    13, STR_0314_FUND_NEW_INDUSTRY,     STR_018C_WINDOW_TITLE_DRAG_THIS},  // DPIW_CAPTION
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   358
{     WWT_MATRIX,      RESIZE_RB,    7,     0,   157,    14,   118, 0x801,                          STR_INDUSTRY_SELECTION_HINT},      // DPIW_MATRIX_WIDGET
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   359
{  WWT_SCROLLBAR,     RESIZE_LRB,    7,   158,   169,    14,   118, 0x0,                            STR_0190_SCROLL_BAR_SCROLLS_LIST}, // DPIW_SCROLLBAR
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   360
{      WWT_PANEL,     RESIZE_RTB,    7,     0,   169,   119,   199, 0x0,                            STR_NULL},                         // DPIW_INFOPANEL
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   361
{    WWT_TEXTBTN,     RESIZE_RTB,    7,     0,   157,   200,   211, STR_FUND_NEW_INDUSTRY,          STR_NULL},                         // DPIW_FUND_WIDGET
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   362
{  WWT_RESIZEBOX,    RESIZE_LRTB,    7,   158,   169,   200,   211, 0x0,                            STR_RESIZE_BUTTON},                // DPIW_RESIZE_WIDGET
176
84990c4b9212 (svn r177) -Fix: padded out Widget code to solve warnings on C99 compiler (Tron)
darkvater
parents: 164
diff changeset
   363
{   WIDGETS_END},
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   364
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   365
8047
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   366
/** Window definition of the dynamic place industries gui */
7218
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   367
static const WindowDesc _build_industry_dynamic_desc = {
7341
02515d0d4ced (svn r10704) -Codechange: provide an infrastructure to have resizable windows that are smaller than the default window size.
rubidium
parents: 7319
diff changeset
   368
	WDP_AUTO, WDP_AUTO, 170, 212, 170, 212,
5893
7e431a4abebb (svn r8511) -Codechange: make WindowClass an enumerated value.
rubidium
parents: 5609
diff changeset
   369
	WC_BUILD_INDUSTRY, WC_NONE,
7218
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   370
	WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_RESIZABLE,
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   371
	_build_dynamic_industry_widgets,
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   372
	BuildDynamicIndustryWndProc,
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   373
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   374
6247
7d81e3a5d803 (svn r9050) -Codechange: Foo(void) -> Foo()
rubidium
parents: 6201
diff changeset
   375
void ShowBuildIndustryWindow()
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 176
diff changeset
   376
{
7218
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   377
	if (_game_mode != GM_EDITOR && !IsValidPlayer(_current_player)) return;
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   378
	AllocateWindowDescFront(&_build_industry_dynamic_desc, 0);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   379
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   380
7218
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   381
static void UpdateIndustryProduction(Industry *i);
8e73038b7586 (svn r10496) -Feature: Replace all the windows for Industry building by a more flexible one.
belugas
parents: 7195
diff changeset
   382
7284
d7903fff2d0b (svn r10624) -Fix [FS#1047]: the production of banks could not be modified (either in scenario editor or with the cheat).
rubidium
parents: 7283
diff changeset
   383
static inline bool isProductionMinimum(const Industry *i, int pt)
d7903fff2d0b (svn r10624) -Fix [FS#1047]: the production of banks could not be modified (either in scenario editor or with the cheat).
rubidium
parents: 7283
diff changeset
   384
{
7790
49e446d753b2 (svn r11340) -Fix[FS#1362]: Newindustries can provide no production at start. So the Modifying Production cheat was a bit puzzled on how to deal with it. This will help a bit.
belugas
parents: 7750
diff changeset
   385
	return i->production_rate[pt] == 0;
4211
5ee54ab361c9 (svn r5714) Backport from branches/TGP (r5701 and r5711)
miham
parents: 4194
diff changeset
   386
}
5ee54ab361c9 (svn r5714) Backport from branches/TGP (r5701 and r5711)
miham
parents: 4194
diff changeset
   387
7284
d7903fff2d0b (svn r10624) -Fix [FS#1047]: the production of banks could not be modified (either in scenario editor or with the cheat).
rubidium
parents: 7283
diff changeset
   388
static inline bool isProductionMaximum(const Industry *i, int pt)
d7903fff2d0b (svn r10624) -Fix [FS#1047]: the production of banks could not be modified (either in scenario editor or with the cheat).
rubidium
parents: 7283
diff changeset
   389
{
7790
49e446d753b2 (svn r11340) -Fix[FS#1362]: Newindustries can provide no production at start. So the Modifying Production cheat was a bit puzzled on how to deal with it. This will help a bit.
belugas
parents: 7750
diff changeset
   390
	return i->production_rate[pt] >= 255;
4211
5ee54ab361c9 (svn r5714) Backport from branches/TGP (r5701 and r5711)
miham
parents: 4194
diff changeset
   391
}
5ee54ab361c9 (svn r5714) Backport from branches/TGP (r5701 and r5711)
miham
parents: 4194
diff changeset
   392
4194
7df740c3b712 (svn r5654) -Cleanup: Change an ugly define into a function
Darkvater
parents: 4193
diff changeset
   393
static inline bool IsProductionAlterable(const Industry *i)
7df740c3b712 (svn r5654) -Cleanup: Change an ugly define into a function
Darkvater
parents: 4193
diff changeset
   394
{
7df740c3b712 (svn r5654) -Cleanup: Change an ugly define into a function
Darkvater
parents: 4193
diff changeset
   395
	return ((_game_mode == GM_EDITOR || _cheats.setup_prod.value) &&
7645
efa25fcf7917 (svn r11176) -Revert (r9867): as it is needed for newgrf callbacks 14B and 14C
glx
parents: 7616
diff changeset
   396
			(i->accepts_cargo[0] == CT_INVALID || i->accepts_cargo[0] == CT_VALUABLES));
4194
7df740c3b712 (svn r5654) -Cleanup: Change an ugly define into a function
Darkvater
parents: 4193
diff changeset
   397
}
7df740c3b712 (svn r5654) -Cleanup: Change an ugly define into a function
Darkvater
parents: 4193
diff changeset
   398
8047
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   399
/** Names of the widgets of the view industry gui */
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   400
enum IndustryViewWidgets {
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   401
	IVW_CLOSEBOX = 0,
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   402
	IVW_CAPTION,
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   403
	IVW_STICKY,
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   404
	IVW_BACKGROUND,
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   405
	IVW_VIEWPORT,
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   406
	IVW_INFO,
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   407
	IVW_GOTO,
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   408
	IVW_SPACER,
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   409
};
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   410
7284
d7903fff2d0b (svn r10624) -Fix [FS#1047]: the production of banks could not be modified (either in scenario editor or with the cheat).
rubidium
parents: 7283
diff changeset
   411
/** Information to store about the industry window */
d7903fff2d0b (svn r10624) -Fix [FS#1047]: the production of banks could not be modified (either in scenario editor or with the cheat).
rubidium
parents: 7283
diff changeset
   412
struct indview_d : public vp_d {
d7903fff2d0b (svn r10624) -Fix [FS#1047]: the production of banks could not be modified (either in scenario editor or with the cheat).
rubidium
parents: 7283
diff changeset
   413
	byte editbox_line;        ///< The line clicked to open the edit box
d7903fff2d0b (svn r10624) -Fix [FS#1047]: the production of banks could not be modified (either in scenario editor or with the cheat).
rubidium
parents: 7283
diff changeset
   414
	byte clicked_line;        ///< The line of the button that has been clicked
d7903fff2d0b (svn r10624) -Fix [FS#1047]: the production of banks could not be modified (either in scenario editor or with the cheat).
rubidium
parents: 7283
diff changeset
   415
	byte clicked_button;      ///< The button that has been clicked (to raise)
d7903fff2d0b (svn r10624) -Fix [FS#1047]: the production of banks could not be modified (either in scenario editor or with the cheat).
rubidium
parents: 7283
diff changeset
   416
	byte production_offset_y; ///< The offset of the production texts/buttons
d7903fff2d0b (svn r10624) -Fix [FS#1047]: the production of banks could not be modified (either in scenario editor or with the cheat).
rubidium
parents: 7283
diff changeset
   417
};
d7903fff2d0b (svn r10624) -Fix [FS#1047]: the production of banks could not be modified (either in scenario editor or with the cheat).
rubidium
parents: 7283
diff changeset
   418
assert_compile(WINDOW_CUSTOM_SIZE >= sizeof(indview_d));
d7903fff2d0b (svn r10624) -Fix [FS#1047]: the production of banks could not be modified (either in scenario editor or with the cheat).
rubidium
parents: 7283
diff changeset
   419
d7903fff2d0b (svn r10624) -Fix [FS#1047]: the production of banks could not be modified (either in scenario editor or with the cheat).
rubidium
parents: 7283
diff changeset
   420
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   421
static void IndustryViewWndProc(Window *w, WindowEvent *e)
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   422
{
2951
2de6d3a59743 (svn r3510) Fiddle with whitespace and parentheses
tron
parents: 2866
diff changeset
   423
	switch (e->event) {
7195
8c728b5fef43 (svn r10473) -Codechange: make the industry "window", the one that shows when you click on an industry, more flexible to allow easier integration with newindustries.
rubidium
parents: 7185
diff changeset
   424
	case WE_CREATE: {
8c728b5fef43 (svn r10473) -Codechange: make the industry "window", the one that shows when you click on an industry, more flexible to allow easier integration with newindustries.
rubidium
parents: 7185
diff changeset
   425
		/* Count the number of lines that we need to resize the GUI with */
7645
efa25fcf7917 (svn r11176) -Revert (r9867): as it is needed for newgrf callbacks 14B and 14C
glx
parents: 7616
diff changeset
   426
		const Industry *i = GetIndustry(w->window_number);
efa25fcf7917 (svn r11176) -Revert (r9867): as it is needed for newgrf callbacks 14B and 14C
glx
parents: 7616
diff changeset
   427
		const IndustrySpec *ind = GetIndustrySpec(i->type);
7195
8c728b5fef43 (svn r10473) -Codechange: make the industry "window", the one that shows when you click on an industry, more flexible to allow easier integration with newindustries.
rubidium
parents: 7185
diff changeset
   428
		int lines = -3;
7822
dc5f1aa98fe9 (svn r11372) -Fix [FS#1394]: don't stop on first invalid cargo type when displaying industry acceptance
glx
parents: 7806
diff changeset
   429
		bool first = true;
dc5f1aa98fe9 (svn r11372) -Fix [FS#1394]: don't stop on first invalid cargo type when displaying industry acceptance
glx
parents: 7806
diff changeset
   430
		bool has_accept = false;
7195
8c728b5fef43 (svn r10473) -Codechange: make the industry "window", the one that shows when you click on an industry, more flexible to allow easier integration with newindustries.
rubidium
parents: 7185
diff changeset
   431
7928
63e18de69e50 (svn r11481) -Codechange: Rename the HASBIT function to fit with the naming style
skidd13
parents: 7922
diff changeset
   432
		if (HasBit(ind->callback_flags, CBM_IND_PRODUCTION_CARGO_ARRIVAL) || HasBit(ind->callback_flags, CBM_IND_PRODUCTION_256_TICKS)) {
7822
dc5f1aa98fe9 (svn r11372) -Fix [FS#1394]: don't stop on first invalid cargo type when displaying industry acceptance
glx
parents: 7806
diff changeset
   433
			for (byte j = 0; j < lengthof(i->accepts_cargo); j++) {
dc5f1aa98fe9 (svn r11372) -Fix [FS#1394]: don't stop on first invalid cargo type when displaying industry acceptance
glx
parents: 7806
diff changeset
   434
				if (i->accepts_cargo[j] == CT_INVALID) continue;
dc5f1aa98fe9 (svn r11372) -Fix [FS#1394]: don't stop on first invalid cargo type when displaying industry acceptance
glx
parents: 7806
diff changeset
   435
				has_accept = true;
dc5f1aa98fe9 (svn r11372) -Fix [FS#1394]: don't stop on first invalid cargo type when displaying industry acceptance
glx
parents: 7806
diff changeset
   436
				if (first) {
dc5f1aa98fe9 (svn r11372) -Fix [FS#1394]: don't stop on first invalid cargo type when displaying industry acceptance
glx
parents: 7806
diff changeset
   437
					lines++;
dc5f1aa98fe9 (svn r11372) -Fix [FS#1394]: don't stop on first invalid cargo type when displaying industry acceptance
glx
parents: 7806
diff changeset
   438
					first = false;
dc5f1aa98fe9 (svn r11372) -Fix [FS#1394]: don't stop on first invalid cargo type when displaying industry acceptance
glx
parents: 7806
diff changeset
   439
				}
7195
8c728b5fef43 (svn r10473) -Codechange: make the industry "window", the one that shows when you click on an industry, more flexible to allow easier integration with newindustries.
rubidium
parents: 7185
diff changeset
   440
				lines++;
8c728b5fef43 (svn r10473) -Codechange: make the industry "window", the one that shows when you click on an industry, more flexible to allow easier integration with newindustries.
rubidium
parents: 7185
diff changeset
   441
			}
7822
dc5f1aa98fe9 (svn r11372) -Fix [FS#1394]: don't stop on first invalid cargo type when displaying industry acceptance
glx
parents: 7806
diff changeset
   442
		} else {
dc5f1aa98fe9 (svn r11372) -Fix [FS#1394]: don't stop on first invalid cargo type when displaying industry acceptance
glx
parents: 7806
diff changeset
   443
			for (byte j = 0; j < lengthof(i->accepts_cargo); j++) {
dc5f1aa98fe9 (svn r11372) -Fix [FS#1394]: don't stop on first invalid cargo type when displaying industry acceptance
glx
parents: 7806
diff changeset
   444
				if (i->accepts_cargo[j] == CT_INVALID) continue;
dc5f1aa98fe9 (svn r11372) -Fix [FS#1394]: don't stop on first invalid cargo type when displaying industry acceptance
glx
parents: 7806
diff changeset
   445
				has_accept = true;
dc5f1aa98fe9 (svn r11372) -Fix [FS#1394]: don't stop on first invalid cargo type when displaying industry acceptance
glx
parents: 7806
diff changeset
   446
				lines++;
dc5f1aa98fe9 (svn r11372) -Fix [FS#1394]: don't stop on first invalid cargo type when displaying industry acceptance
glx
parents: 7806
diff changeset
   447
				break;
dc5f1aa98fe9 (svn r11372) -Fix [FS#1394]: don't stop on first invalid cargo type when displaying industry acceptance
glx
parents: 7806
diff changeset
   448
			}
7195
8c728b5fef43 (svn r10473) -Codechange: make the industry "window", the one that shows when you click on an industry, more flexible to allow easier integration with newindustries.
rubidium
parents: 7185
diff changeset
   449
		}
8c728b5fef43 (svn r10473) -Codechange: make the industry "window", the one that shows when you click on an industry, more flexible to allow easier integration with newindustries.
rubidium
parents: 7185
diff changeset
   450
7822
dc5f1aa98fe9 (svn r11372) -Fix [FS#1394]: don't stop on first invalid cargo type when displaying industry acceptance
glx
parents: 7806
diff changeset
   451
		first = true;
dc5f1aa98fe9 (svn r11372) -Fix [FS#1394]: don't stop on first invalid cargo type when displaying industry acceptance
glx
parents: 7806
diff changeset
   452
		for (byte j = 0; j < lengthof(i->produced_cargo); j++) {
dc5f1aa98fe9 (svn r11372) -Fix [FS#1394]: don't stop on first invalid cargo type when displaying industry acceptance
glx
parents: 7806
diff changeset
   453
			if (i->produced_cargo[j] == CT_INVALID) continue;
dc5f1aa98fe9 (svn r11372) -Fix [FS#1394]: don't stop on first invalid cargo type when displaying industry acceptance
glx
parents: 7806
diff changeset
   454
			if (first) {
dc5f1aa98fe9 (svn r11372) -Fix [FS#1394]: don't stop on first invalid cargo type when displaying industry acceptance
glx
parents: 7806
diff changeset
   455
				if (has_accept) lines++;
7195
8c728b5fef43 (svn r10473) -Codechange: make the industry "window", the one that shows when you click on an industry, more flexible to allow easier integration with newindustries.
rubidium
parents: 7185
diff changeset
   456
				lines++;
7822
dc5f1aa98fe9 (svn r11372) -Fix [FS#1394]: don't stop on first invalid cargo type when displaying industry acceptance
glx
parents: 7806
diff changeset
   457
				first = false;
7195
8c728b5fef43 (svn r10473) -Codechange: make the industry "window", the one that shows when you click on an industry, more flexible to allow easier integration with newindustries.
rubidium
parents: 7185
diff changeset
   458
			}
8c728b5fef43 (svn r10473) -Codechange: make the industry "window", the one that shows when you click on an industry, more flexible to allow easier integration with newindustries.
rubidium
parents: 7185
diff changeset
   459
			lines++;
8c728b5fef43 (svn r10473) -Codechange: make the industry "window", the one that shows when you click on an industry, more flexible to allow easier integration with newindustries.
rubidium
parents: 7185
diff changeset
   460
		}
8c728b5fef43 (svn r10473) -Codechange: make the industry "window", the one that shows when you click on an industry, more flexible to allow easier integration with newindustries.
rubidium
parents: 7185
diff changeset
   461
7928
63e18de69e50 (svn r11481) -Codechange: Rename the HASBIT function to fit with the naming style
skidd13
parents: 7922
diff changeset
   462
		if (HasBit(ind->callback_flags, CBM_IND_WINDOW_MORE_TEXT)) lines += 2;
7195
8c728b5fef43 (svn r10473) -Codechange: make the industry "window", the one that shows when you click on an industry, more flexible to allow easier integration with newindustries.
rubidium
parents: 7185
diff changeset
   463
7822
dc5f1aa98fe9 (svn r11372) -Fix [FS#1394]: don't stop on first invalid cargo type when displaying industry acceptance
glx
parents: 7806
diff changeset
   464
		for (byte j = 5; j <= 7; j++) {
7195
8c728b5fef43 (svn r10473) -Codechange: make the industry "window", the one that shows when you click on an industry, more flexible to allow easier integration with newindustries.
rubidium
parents: 7185
diff changeset
   465
			if (j != 5) w->widget[j].top += lines * 10;
8c728b5fef43 (svn r10473) -Codechange: make the industry "window", the one that shows when you click on an industry, more flexible to allow easier integration with newindustries.
rubidium
parents: 7185
diff changeset
   466
			w->widget[j].bottom += lines * 10;
8c728b5fef43 (svn r10473) -Codechange: make the industry "window", the one that shows when you click on an industry, more flexible to allow easier integration with newindustries.
rubidium
parents: 7185
diff changeset
   467
		}
8c728b5fef43 (svn r10473) -Codechange: make the industry "window", the one that shows when you click on an industry, more flexible to allow easier integration with newindustries.
rubidium
parents: 7185
diff changeset
   468
		w->height += lines * 10;
8c728b5fef43 (svn r10473) -Codechange: make the industry "window", the one that shows when you click on an industry, more flexible to allow easier integration with newindustries.
rubidium
parents: 7185
diff changeset
   469
	} break;
8c728b5fef43 (svn r10473) -Codechange: make the industry "window", the one that shows when you click on an industry, more flexible to allow easier integration with newindustries.
rubidium
parents: 7185
diff changeset
   470
1004
dcc3c5747e22 (svn r1503) Added feature:
miham
parents: 919
diff changeset
   471
	case WE_PAINT: {
7195
8c728b5fef43 (svn r10473) -Codechange: make the industry "window", the one that shows when you click on an industry, more flexible to allow easier integration with newindustries.
rubidium
parents: 7185
diff changeset
   472
		Industry *i = GetIndustry(w->window_number);
6636
fec086b5c340 (svn r9867) -Codechange: Remove data duplication. The exact same values can be found in the industry spec, so take it from there instead.
belugas
parents: 6624
diff changeset
   473
		const IndustrySpec *ind = GetIndustrySpec(i->type);
7195
8c728b5fef43 (svn r10473) -Codechange: make the industry "window", the one that shows when you click on an industry, more flexible to allow easier integration with newindustries.
rubidium
parents: 7185
diff changeset
   474
		int y = 111;
7822
dc5f1aa98fe9 (svn r11372) -Fix [FS#1394]: don't stop on first invalid cargo type when displaying industry acceptance
glx
parents: 7806
diff changeset
   475
		bool first = true;
dc5f1aa98fe9 (svn r11372) -Fix [FS#1394]: don't stop on first invalid cargo type when displaying industry acceptance
glx
parents: 7806
diff changeset
   476
		bool has_accept = false;
2557
5d91ce06a360 (svn r3090) Remove long dead pieces of code
tron
parents: 2469
diff changeset
   477
2070
47b1f29d4671 (svn r2580) Change: Added {INDUSTRY} command for printing industry names instead of the old {TOWN} {STRING} way.
ludde
parents: 2063
diff changeset
   478
		SetDParam(0, w->window_number);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   479
		DrawWindowWidgets(w);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   480
7928
63e18de69e50 (svn r11481) -Codechange: Rename the HASBIT function to fit with the naming style
skidd13
parents: 7922
diff changeset
   481
		if (HasBit(ind->callback_flags, CBM_IND_PRODUCTION_CARGO_ARRIVAL) || HasBit(ind->callback_flags, CBM_IND_PRODUCTION_256_TICKS)) {
7822
dc5f1aa98fe9 (svn r11372) -Fix [FS#1394]: don't stop on first invalid cargo type when displaying industry acceptance
glx
parents: 7806
diff changeset
   482
			for (byte j = 0; j < lengthof(i->accepts_cargo); j++) {
dc5f1aa98fe9 (svn r11372) -Fix [FS#1394]: don't stop on first invalid cargo type when displaying industry acceptance
glx
parents: 7806
diff changeset
   483
				if (i->accepts_cargo[j] == CT_INVALID) continue;
dc5f1aa98fe9 (svn r11372) -Fix [FS#1394]: don't stop on first invalid cargo type when displaying industry acceptance
glx
parents: 7806
diff changeset
   484
				has_accept = true;
dc5f1aa98fe9 (svn r11372) -Fix [FS#1394]: don't stop on first invalid cargo type when displaying industry acceptance
glx
parents: 7806
diff changeset
   485
				if (first) {
7824
5a63d41b59ea (svn r11374) -Codechange: Give meaning to the magical number that specifies the color of the text in a DrawString call.
belugas
parents: 7822
diff changeset
   486
					DrawString(2, y, STR_INDUSTRY_WINDOW_WAITING_FOR_PROCESSING, TC_FROMSTRING);
7195
8c728b5fef43 (svn r10473) -Codechange: make the industry "window", the one that shows when you click on an industry, more flexible to allow easier integration with newindustries.
rubidium
parents: 7185
diff changeset
   487
					y += 10;
7822
dc5f1aa98fe9 (svn r11372) -Fix [FS#1394]: don't stop on first invalid cargo type when displaying industry acceptance
glx
parents: 7806
diff changeset
   488
					first = false;
7195
8c728b5fef43 (svn r10473) -Codechange: make the industry "window", the one that shows when you click on an industry, more flexible to allow easier integration with newindustries.
rubidium
parents: 7185
diff changeset
   489
				}
7645
efa25fcf7917 (svn r11176) -Revert (r9867): as it is needed for newgrf callbacks 14B and 14C
glx
parents: 7616
diff changeset
   490
				SetDParam(0, i->accepts_cargo[j]);
7195
8c728b5fef43 (svn r10473) -Codechange: make the industry "window", the one that shows when you click on an industry, more flexible to allow easier integration with newindustries.
rubidium
parents: 7185
diff changeset
   491
				SetDParam(1, i->incoming_cargo_waiting[j]);
7824
5a63d41b59ea (svn r11374) -Codechange: Give meaning to the magical number that specifies the color of the text in a DrawString call.
belugas
parents: 7822
diff changeset
   492
				DrawString(4, y, STR_INDUSTRY_WINDOW_WAITING_STOCKPILE_CARGO, TC_FROMSTRING);
7195
8c728b5fef43 (svn r10473) -Codechange: make the industry "window", the one that shows when you click on an industry, more flexible to allow easier integration with newindustries.
rubidium
parents: 7185
diff changeset
   493
				y += 10;
8c728b5fef43 (svn r10473) -Codechange: make the industry "window", the one that shows when you click on an industry, more flexible to allow easier integration with newindustries.
rubidium
parents: 7185
diff changeset
   494
			}
7822
dc5f1aa98fe9 (svn r11372) -Fix [FS#1394]: don't stop on first invalid cargo type when displaying industry acceptance
glx
parents: 7806
diff changeset
   495
		} else {
dc5f1aa98fe9 (svn r11372) -Fix [FS#1394]: don't stop on first invalid cargo type when displaying industry acceptance
glx
parents: 7806
diff changeset
   496
			StringID str = STR_4827_REQUIRES;
dc5f1aa98fe9 (svn r11372) -Fix [FS#1394]: don't stop on first invalid cargo type when displaying industry acceptance
glx
parents: 7806
diff changeset
   497
			byte p = 0;
dc5f1aa98fe9 (svn r11372) -Fix [FS#1394]: don't stop on first invalid cargo type when displaying industry acceptance
glx
parents: 7806
diff changeset
   498
			for (byte j = 0; j < lengthof(i->accepts_cargo); j++) {
dc5f1aa98fe9 (svn r11372) -Fix [FS#1394]: don't stop on first invalid cargo type when displaying industry acceptance
glx
parents: 7806
diff changeset
   499
				if (i->accepts_cargo[j] == CT_INVALID) continue;
dc5f1aa98fe9 (svn r11372) -Fix [FS#1394]: don't stop on first invalid cargo type when displaying industry acceptance
glx
parents: 7806
diff changeset
   500
				has_accept = true;
dc5f1aa98fe9 (svn r11372) -Fix [FS#1394]: don't stop on first invalid cargo type when displaying industry acceptance
glx
parents: 7806
diff changeset
   501
				if (p > 0) str++;
dc5f1aa98fe9 (svn r11372) -Fix [FS#1394]: don't stop on first invalid cargo type when displaying industry acceptance
glx
parents: 7806
diff changeset
   502
				SetDParam(p++, GetCargo(i->accepts_cargo[j])->name);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   503
			}
7822
dc5f1aa98fe9 (svn r11372) -Fix [FS#1394]: don't stop on first invalid cargo type when displaying industry acceptance
glx
parents: 7806
diff changeset
   504
			if (has_accept) {
7824
5a63d41b59ea (svn r11374) -Codechange: Give meaning to the magical number that specifies the color of the text in a DrawString call.
belugas
parents: 7822
diff changeset
   505
				DrawString(2, y, str, TC_FROMSTRING);
7822
dc5f1aa98fe9 (svn r11372) -Fix [FS#1394]: don't stop on first invalid cargo type when displaying industry acceptance
glx
parents: 7806
diff changeset
   506
				y += 10;
dc5f1aa98fe9 (svn r11372) -Fix [FS#1394]: don't stop on first invalid cargo type when displaying industry acceptance
glx
parents: 7806
diff changeset
   507
			}
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   508
		}
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 176
diff changeset
   509
7822
dc5f1aa98fe9 (svn r11372) -Fix [FS#1394]: don't stop on first invalid cargo type when displaying industry acceptance
glx
parents: 7806
diff changeset
   510
		first = true;
dc5f1aa98fe9 (svn r11372) -Fix [FS#1394]: don't stop on first invalid cargo type when displaying industry acceptance
glx
parents: 7806
diff changeset
   511
		for (byte j = 0; j < lengthof(i->produced_cargo); j++) {
dc5f1aa98fe9 (svn r11372) -Fix [FS#1394]: don't stop on first invalid cargo type when displaying industry acceptance
glx
parents: 7806
diff changeset
   512
			if (i->produced_cargo[j] == CT_INVALID) continue;
dc5f1aa98fe9 (svn r11372) -Fix [FS#1394]: don't stop on first invalid cargo type when displaying industry acceptance
glx
parents: 7806
diff changeset
   513
			if (first) {
dc5f1aa98fe9 (svn r11372) -Fix [FS#1394]: don't stop on first invalid cargo type when displaying industry acceptance
glx
parents: 7806
diff changeset
   514
				if (has_accept) y += 10;
7824
5a63d41b59ea (svn r11374) -Codechange: Give meaning to the magical number that specifies the color of the text in a DrawString call.
belugas
parents: 7822
diff changeset
   515
				DrawString(2, y, STR_482A_PRODUCTION_LAST_MONTH, TC_FROMSTRING);
7195
8c728b5fef43 (svn r10473) -Codechange: make the industry "window", the one that shows when you click on an industry, more flexible to allow easier integration with newindustries.
rubidium
parents: 7185
diff changeset
   516
				y += 10;
7284
d7903fff2d0b (svn r10624) -Fix [FS#1047]: the production of banks could not be modified (either in scenario editor or with the cheat).
rubidium
parents: 7283
diff changeset
   517
				WP(w, indview_d).production_offset_y = y;
7822
dc5f1aa98fe9 (svn r11372) -Fix [FS#1394]: don't stop on first invalid cargo type when displaying industry acceptance
glx
parents: 7806
diff changeset
   518
				first = false;
7195
8c728b5fef43 (svn r10473) -Codechange: make the industry "window", the one that shows when you click on an industry, more flexible to allow easier integration with newindustries.
rubidium
parents: 7185
diff changeset
   519
			}
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   520
7645
efa25fcf7917 (svn r11176) -Revert (r9867): as it is needed for newgrf callbacks 14B and 14C
glx
parents: 7616
diff changeset
   521
			SetDParam(0, i->produced_cargo[j]);
7195
8c728b5fef43 (svn r10473) -Codechange: make the industry "window", the one that shows when you click on an industry, more flexible to allow easier integration with newindustries.
rubidium
parents: 7185
diff changeset
   522
			SetDParam(1, i->last_month_production[j]);
2063
ae866a12f2df (svn r2572) - Codechange: [string] Changed string system so it's not as dependent on decode_parameters
ludde
parents: 1981
diff changeset
   523
7195
8c728b5fef43 (svn r10473) -Codechange: make the industry "window", the one that shows when you click on an industry, more flexible to allow easier integration with newindustries.
rubidium
parents: 7185
diff changeset
   524
			SetDParam(2, i->last_month_pct_transported[j] * 100 >> 8);
7824
5a63d41b59ea (svn r11374) -Codechange: Give meaning to the magical number that specifies the color of the text in a DrawString call.
belugas
parents: 7822
diff changeset
   525
			DrawString(4 + (IsProductionAlterable(i) ? 30 : 0), y, STR_482B_TRANSPORTED, TC_FROMSTRING);
6201
bee01dc45e39 (svn r8987) -Cleanup: doxygen changes. Again. Mostly (still) @files missing tags and (more than just) a few comments style.
belugas
parents: 6200
diff changeset
   526
			/* Let's put out those buttons.. */
4211
5ee54ab361c9 (svn r5714) Backport from branches/TGP (r5701 and r5711)
miham
parents: 4194
diff changeset
   527
			if (IsProductionAlterable(i)) {
7284
d7903fff2d0b (svn r10624) -Fix [FS#1047]: the production of banks could not be modified (either in scenario editor or with the cheat).
rubidium
parents: 7283
diff changeset
   528
				DrawArrowButtons(5, y, 3, (WP(w, indview_d).clicked_line == j + 1) ? WP(w, indview_d).clicked_button : 0,
7195
8c728b5fef43 (svn r10473) -Codechange: make the industry "window", the one that shows when you click on an industry, more flexible to allow easier integration with newindustries.
rubidium
parents: 7185
diff changeset
   529
						!isProductionMinimum(i, j), !isProductionMaximum(i, j));
4211
5ee54ab361c9 (svn r5714) Backport from branches/TGP (r5701 and r5711)
miham
parents: 4194
diff changeset
   530
			}
7195
8c728b5fef43 (svn r10473) -Codechange: make the industry "window", the one that shows when you click on an industry, more flexible to allow easier integration with newindustries.
rubidium
parents: 7185
diff changeset
   531
			y += 10;
8c728b5fef43 (svn r10473) -Codechange: make the industry "window", the one that shows when you click on an industry, more flexible to allow easier integration with newindustries.
rubidium
parents: 7185
diff changeset
   532
		}
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   533
7195
8c728b5fef43 (svn r10473) -Codechange: make the industry "window", the one that shows when you click on an industry, more flexible to allow easier integration with newindustries.
rubidium
parents: 7185
diff changeset
   534
		/* Get the extra message for the GUI */
7928
63e18de69e50 (svn r11481) -Codechange: Rename the HASBIT function to fit with the naming style
skidd13
parents: 7922
diff changeset
   535
		if (HasBit(ind->callback_flags, CBM_IND_WINDOW_MORE_TEXT)) {
7195
8c728b5fef43 (svn r10473) -Codechange: make the industry "window", the one that shows when you click on an industry, more flexible to allow easier integration with newindustries.
rubidium
parents: 7185
diff changeset
   536
			uint16 callback_res = GetIndustryCallback(CBID_INDUSTRY_WINDOW_MORE_TEXT, 0, 0, i, i->type, i->xy);
8c728b5fef43 (svn r10473) -Codechange: make the industry "window", the one that shows when you click on an industry, more flexible to allow easier integration with newindustries.
rubidium
parents: 7185
diff changeset
   537
			if (callback_res != CALLBACK_FAILED) {
8c728b5fef43 (svn r10473) -Codechange: make the industry "window", the one that shows when you click on an industry, more flexible to allow easier integration with newindustries.
rubidium
parents: 7185
diff changeset
   538
				StringID message = GetGRFStringID(ind->grf_prop.grffile->grfid, 0xD000 + callback_res);
8c728b5fef43 (svn r10473) -Codechange: make the industry "window", the one that shows when you click on an industry, more flexible to allow easier integration with newindustries.
rubidium
parents: 7185
diff changeset
   539
				if (message != STR_NULL && message != STR_UNDEFINED) {
8c728b5fef43 (svn r10473) -Codechange: make the industry "window", the one that shows when you click on an industry, more flexible to allow easier integration with newindustries.
rubidium
parents: 7185
diff changeset
   540
					y += 10;
7616
ebf15b08ac38 (svn r11145) -Codechange: add support for "decoding" TTDPs string codes wrt to registers 0x100 to 0x10F.
rubidium
parents: 7341
diff changeset
   541
7750
7afbef1235e0 (svn r11287) -Codechange: add support for pushing paramaters into NewIndustries' error messages. Patch by Csaboka.
rubidium
parents: 7747
diff changeset
   542
					PrepareTextRefStackUsage(6);
7824
5a63d41b59ea (svn r11374) -Codechange: Give meaning to the magical number that specifies the color of the text in a DrawString call.
belugas
parents: 7822
diff changeset
   543
					DrawString(2, y, message, TC_FROMSTRING);
7616
ebf15b08ac38 (svn r11145) -Codechange: add support for "decoding" TTDPs string codes wrt to registers 0x100 to 0x10F.
rubidium
parents: 7341
diff changeset
   544
					StopTextRefStackUsage();
4211
5ee54ab361c9 (svn r5714) Backport from branches/TGP (r5701 and r5711)
miham
parents: 4194
diff changeset
   545
				}
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   546
			}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   547
		}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   548
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   549
		DrawWindowViewport(w);
7195
8c728b5fef43 (svn r10473) -Codechange: make the industry "window", the one that shows when you click on an industry, more flexible to allow easier integration with newindustries.
rubidium
parents: 7185
diff changeset
   550
	} break;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   551
1004
dcc3c5747e22 (svn r1503) Added feature:
miham
parents: 919
diff changeset
   552
	case WE_CLICK: {
dcc3c5747e22 (svn r1503) Added feature:
miham
parents: 919
diff changeset
   553
		Industry *i;
dcc3c5747e22 (svn r1503) Added feature:
miham
parents: 919
diff changeset
   554
4634
07699ac2bf37 (svn r6499) -Codechange: Finally, got "byte event" outside of the union WindowEvent, which is now a struct
belugas
parents: 4617
diff changeset
   555
		switch (e->we.click.widget) {
8047
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   556
		case IVW_INFO: {
4193
9e82090fef58 (svn r5653) -Cleanup: Do a little cleanup of the industry gui code.
Darkvater
parents: 4192
diff changeset
   557
			int line, x;
1004
dcc3c5747e22 (svn r1503) Added feature:
miham
parents: 919
diff changeset
   558
dcc3c5747e22 (svn r1503) Added feature:
miham
parents: 919
diff changeset
   559
			i = GetIndustry(w->window_number);
dcc3c5747e22 (svn r1503) Added feature:
miham
parents: 919
diff changeset
   560
6201
bee01dc45e39 (svn r8987) -Cleanup: doxygen changes. Again. Mostly (still) @files missing tags and (more than just) a few comments style.
belugas
parents: 6200
diff changeset
   561
			/* We should work if needed.. */
4194
7df740c3b712 (svn r5654) -Cleanup: Change an ugly define into a function
Darkvater
parents: 4193
diff changeset
   562
			if (!IsProductionAlterable(i)) return;
4634
07699ac2bf37 (svn r6499) -Codechange: Finally, got "byte event" outside of the union WindowEvent, which is now a struct
belugas
parents: 4617
diff changeset
   563
			x = e->we.click.pt.x;
7284
d7903fff2d0b (svn r10624) -Fix [FS#1047]: the production of banks could not be modified (either in scenario editor or with the cheat).
rubidium
parents: 7283
diff changeset
   564
			line = (e->we.click.pt.y - WP(w, indview_d).production_offset_y) / 10;
7954
57b51c69c072 (svn r11510) -Codechange: merge the IS_*INSIDE* functions and rename them fitting to the naming style
skidd13
parents: 7928
diff changeset
   565
			if (e->we.click.pt.y >= WP(w, indview_d).production_offset_y && IsInsideMM(line, 0, 2) && i->produced_cargo[line] != CT_INVALID) {
57b51c69c072 (svn r11510) -Codechange: merge the IS_*INSIDE* functions and rename them fitting to the naming style
skidd13
parents: 7928
diff changeset
   566
				if (IsInsideMM(x, 5, 25) ) {
4193
9e82090fef58 (svn r5653) -Cleanup: Do a little cleanup of the industry gui code.
Darkvater
parents: 4192
diff changeset
   567
					/* Clicked buttons, decrease or increase production */
1019
6bae6c11e865 (svn r1520) Trim 134 (!) lines with trailing whitespace ):
tron
parents: 1004
diff changeset
   568
					if (x < 15) {
4211
5ee54ab361c9 (svn r5714) Backport from branches/TGP (r5701 and r5711)
miham
parents: 4194
diff changeset
   569
						if (isProductionMinimum(i, line)) return;
7790
49e446d753b2 (svn r11340) -Fix[FS#1362]: Newindustries can provide no production at start. So the Modifying Production cheat was a bit puzzled on how to deal with it. This will help a bit.
belugas
parents: 7750
diff changeset
   570
						i->production_rate[line] = max(i->production_rate[line] / 2, 0);
1004
dcc3c5747e22 (svn r1503) Added feature:
miham
parents: 919
diff changeset
   571
					} else {
7790
49e446d753b2 (svn r11340) -Fix[FS#1362]: Newindustries can provide no production at start. So the Modifying Production cheat was a bit puzzled on how to deal with it. This will help a bit.
belugas
parents: 7750
diff changeset
   572
						/* a zero production industry is unlikely to give anything but zero, so push it a little bit */
49e446d753b2 (svn r11340) -Fix[FS#1362]: Newindustries can provide no production at start. So the Modifying Production cheat was a bit puzzled on how to deal with it. This will help a bit.
belugas
parents: 7750
diff changeset
   573
						int new_prod = i->production_rate[line] == 0 ? 1 : i->production_rate[line] * 2;
4211
5ee54ab361c9 (svn r5714) Backport from branches/TGP (r5701 and r5711)
miham
parents: 4194
diff changeset
   574
						if (isProductionMaximum(i, line)) return;
7790
49e446d753b2 (svn r11340) -Fix[FS#1362]: Newindustries can provide no production at start. So the Modifying Production cheat was a bit puzzled on how to deal with it. This will help a bit.
belugas
parents: 7750
diff changeset
   575
						i->production_rate[line] = minu(new_prod, 255);
1004
dcc3c5747e22 (svn r1503) Added feature:
miham
parents: 919
diff changeset
   576
					}
4193
9e82090fef58 (svn r5653) -Cleanup: Do a little cleanup of the industry gui code.
Darkvater
parents: 4192
diff changeset
   577
1004
dcc3c5747e22 (svn r1503) Added feature:
miham
parents: 919
diff changeset
   578
					UpdateIndustryProduction(i);
dcc3c5747e22 (svn r1503) Added feature:
miham
parents: 919
diff changeset
   579
					SetWindowDirty(w);
dcc3c5747e22 (svn r1503) Added feature:
miham
parents: 919
diff changeset
   580
					w->flags4 |= 5 << WF_TIMEOUT_SHL;
7284
d7903fff2d0b (svn r10624) -Fix [FS#1047]: the production of banks could not be modified (either in scenario editor or with the cheat).
rubidium
parents: 7283
diff changeset
   581
					WP(w, indview_d).clicked_line = line + 1;
d7903fff2d0b (svn r10624) -Fix [FS#1047]: the production of banks could not be modified (either in scenario editor or with the cheat).
rubidium
parents: 7283
diff changeset
   582
					WP(w, indview_d).clicked_button = (x < 15 ? 1 : 2);
7954
57b51c69c072 (svn r11510) -Codechange: merge the IS_*INSIDE* functions and rename them fitting to the naming style
skidd13
parents: 7928
diff changeset
   583
				} else if (IsInsideMM(x, 34, 160)) {
6201
bee01dc45e39 (svn r8987) -Cleanup: doxygen changes. Again. Mostly (still) @files missing tags and (more than just) a few comments style.
belugas
parents: 6200
diff changeset
   584
					/* clicked the text */
7284
d7903fff2d0b (svn r10624) -Fix [FS#1047]: the production of banks could not be modified (either in scenario editor or with the cheat).
rubidium
parents: 7283
diff changeset
   585
					WP(w, indview_d).editbox_line = line;
1004
dcc3c5747e22 (svn r1503) Added feature:
miham
parents: 919
diff changeset
   586
					SetDParam(0, i->production_rate[line] * 8);
5431
6e56b4f13dd7 (svn r7637) -Codechange: Change ShowQueryString to use a window pointer as a parent. If the
Darkvater
parents: 5380
diff changeset
   587
					ShowQueryString(STR_CONFIG_PATCHES_INT32, STR_CONFIG_GAME_PRODUCTION, 10, 100, w, CS_ALPHANUMERAL);
1004
dcc3c5747e22 (svn r1503) Added feature:
miham
parents: 919
diff changeset
   588
				}
1019
6bae6c11e865 (svn r1520) Trim 134 (!) lines with trailing whitespace ):
tron
parents: 1004
diff changeset
   589
			}
4193
9e82090fef58 (svn r5653) -Cleanup: Do a little cleanup of the industry gui code.
Darkvater
parents: 4192
diff changeset
   590
		} break;
8047
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   591
		case IVW_GOTO:
919
544f374ee392 (svn r1407) -Codechange: changed a lot around _stations, _vehicles, _towns and _industries
truelight
parents: 893
diff changeset
   592
			i = GetIndustry(w->window_number);
1981
3c9c682f1212 (svn r2487) Replace TILE_XY by TileXY/TileDiffXY
tron
parents: 1914
diff changeset
   593
			ScrollMainWindowToTile(i->xy + TileDiffXY(1, 1));
6492
286a52449b54 (svn r9673) -Cleanup: remove spaces before tabs and replace non-indenting tabs with spaces.
rubidium
parents: 6491
diff changeset
   594
		} break;
4193
9e82090fef58 (svn r5653) -Cleanup: Do a little cleanup of the industry gui code.
Darkvater
parents: 4192
diff changeset
   595
1004
dcc3c5747e22 (svn r1503) Added feature:
miham
parents: 919
diff changeset
   596
		}
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   597
		break;
1004
dcc3c5747e22 (svn r1503) Added feature:
miham
parents: 919
diff changeset
   598
	case WE_TIMEOUT:
7284
d7903fff2d0b (svn r10624) -Fix [FS#1047]: the production of banks could not be modified (either in scenario editor or with the cheat).
rubidium
parents: 7283
diff changeset
   599
		WP(w, indview_d).clicked_line = 0;
d7903fff2d0b (svn r10624) -Fix [FS#1047]: the production of banks could not be modified (either in scenario editor or with the cheat).
rubidium
parents: 7283
diff changeset
   600
		WP(w, indview_d).clicked_button = 0;
1004
dcc3c5747e22 (svn r1503) Added feature:
miham
parents: 919
diff changeset
   601
		SetWindowDirty(w);
dcc3c5747e22 (svn r1503) Added feature:
miham
parents: 919
diff changeset
   602
		break;
dcc3c5747e22 (svn r1503) Added feature:
miham
parents: 919
diff changeset
   603
dcc3c5747e22 (svn r1503) Added feature:
miham
parents: 919
diff changeset
   604
	case WE_ON_EDIT_TEXT:
4634
07699ac2bf37 (svn r6499) -Codechange: Finally, got "byte event" outside of the union WindowEvent, which is now a struct
belugas
parents: 4617
diff changeset
   605
		if (e->we.edittext.str[0] != '\0') {
3017
a75caf4efa2d (svn r3597) Miscellaneous (I like that word) changes: Fix some indentation, add consts, reduce indentation level by short-circuit logic, convert if cascades to switch, whitespace, bracing, plus some minor stuff
tron
parents: 2989
diff changeset
   606
			Industry* i = GetIndustry(w->window_number);
7284
d7903fff2d0b (svn r10624) -Fix [FS#1047]: the production of banks could not be modified (either in scenario editor or with the cheat).
rubidium
parents: 7283
diff changeset
   607
			int line = WP(w, indview_d).editbox_line;
1004
dcc3c5747e22 (svn r1503) Added feature:
miham
parents: 919
diff changeset
   608
7922
a7e266f966d9 (svn r11475) -Codechange: rename clamp and clampu to Clamp and ClampU to fit with the coding style
skidd13
parents: 7889
diff changeset
   609
			i->production_rate[line] = ClampU(atoi(e->we.edittext.str), 0, 255);
1004
dcc3c5747e22 (svn r1503) Added feature:
miham
parents: 919
diff changeset
   610
			UpdateIndustryProduction(i);
dcc3c5747e22 (svn r1503) Added feature:
miham
parents: 919
diff changeset
   611
			SetWindowDirty(w);
dcc3c5747e22 (svn r1503) Added feature:
miham
parents: 919
diff changeset
   612
		}
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   613
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   614
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   615
1004
dcc3c5747e22 (svn r1503) Added feature:
miham
parents: 919
diff changeset
   616
static void UpdateIndustryProduction(Industry *i)
dcc3c5747e22 (svn r1503) Added feature:
miham
parents: 919
diff changeset
   617
{
7645
efa25fcf7917 (svn r11176) -Revert (r9867): as it is needed for newgrf callbacks 14B and 14C
glx
parents: 7616
diff changeset
   618
	for (byte j = 0; j < lengthof(i->produced_cargo); j++) {
efa25fcf7917 (svn r11176) -Revert (r9867): as it is needed for newgrf callbacks 14B and 14C
glx
parents: 7616
diff changeset
   619
		if (i->produced_cargo[j] != CT_INVALID) {
6819
f986f54e2660 (svn r10058) -Codechange: give some industry variable sensible names (like not telling "last_mo_production" when it is the production of the current month).
rubidium
parents: 6815
diff changeset
   620
			i->last_month_production[j] = 8 * i->production_rate[j];
6636
fec086b5c340 (svn r9867) -Codechange: Remove data duplication. The exact same values can be found in the industry spec, so take it from there instead.
belugas
parents: 6624
diff changeset
   621
		}
fec086b5c340 (svn r9867) -Codechange: Remove data duplication. The exact same values can be found in the industry spec, so take it from there instead.
belugas
parents: 6624
diff changeset
   622
	}
1004
dcc3c5747e22 (svn r1503) Added feature:
miham
parents: 919
diff changeset
   623
}
dcc3c5747e22 (svn r1503) Added feature:
miham
parents: 919
diff changeset
   624
8047
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   625
/** Widget definition of the view industy gui */
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   626
static const Widget _industry_view_widgets[] = {
8047
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   627
{   WWT_CLOSEBOX,   RESIZE_NONE,     9,     0,    10,     0,    13, STR_00C5,          STR_018B_CLOSE_WINDOW},            // IVW_CLOSEBOX
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   628
{    WWT_CAPTION,   RESIZE_NONE,     9,    11,   247,     0,    13, STR_4801,          STR_018C_WINDOW_TITLE_DRAG_THIS},  // IVW_CAPTION
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   629
{  WWT_STICKYBOX,   RESIZE_NONE,     9,   248,   259,     0,    13, 0x0,               STR_STICKY_BUTTON},                // IVW_STICKY
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   630
{      WWT_PANEL,   RESIZE_NONE,     9,     0,   259,    14,   105, 0x0,               STR_NULL},                         // IVW_BACKGROUND
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   631
{      WWT_INSET,   RESIZE_NONE,     9,     2,   257,    16,   103, 0x0,               STR_NULL},                         // IVW_VIEWPORT
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   632
{      WWT_PANEL,   RESIZE_NONE,     9,     0,   259,   106,   147, 0x0,               STR_NULL},                         // IVW_INFO
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   633
{ WWT_PUSHTXTBTN,   RESIZE_NONE,     9,     0,   129,   148,   159, STR_00E4_LOCATION, STR_482C_CENTER_THE_MAIN_VIEW_ON}, // IVW_GOTO
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   634
{      WWT_PANEL,   RESIZE_NONE,     9,   130,   259,   148,   159, 0x0,               STR_NULL},                         // IVW_SPACER
176
84990c4b9212 (svn r177) -Fix: padded out Widget code to solve warnings on C99 compiler (Tron)
darkvater
parents: 164
diff changeset
   635
{   WIDGETS_END},
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   636
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   637
8047
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   638
/** Window definition of the view industy gui */
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   639
static const WindowDesc _industry_view_desc = {
7341
02515d0d4ced (svn r10704) -Codechange: provide an infrastructure to have resizable windows that are smaller than the default window size.
rubidium
parents: 7319
diff changeset
   640
	WDP_AUTO, WDP_AUTO, 260, 160, 260, 160,
5893
7e431a4abebb (svn r8511) -Codechange: make WindowClass an enumerated value.
rubidium
parents: 5609
diff changeset
   641
	WC_INDUSTRY_VIEW, WC_NONE,
758
423ae0bcba07 (svn r1214) -Feature: Stickified Industries (list & window), Smallmaps (all three), Stations (list & window) and Towns (list & window). I hope I didn't forget to update a widget somewhere :O
darkvater
parents: 727
diff changeset
   642
	WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON,
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   643
	_industry_view_widgets,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   644
	IndustryViewWndProc
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   645
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   646
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   647
void ShowIndustryViewWindow(int industry)
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   648
{
4171
5c6e60c392c3 (svn r5609) CodeChange : Apply coding style
belugas
parents: 3689
diff changeset
   649
	Window *w = AllocateWindowDescFront(&_industry_view_desc, industry);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   650
2989
916f9443345f (svn r3564) Several smaller changes:
tron
parents: 2952
diff changeset
   651
	if (w != NULL) {
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   652
		w->flags4 |= WF_DISABLE_VP_SCROLL;
7284
d7903fff2d0b (svn r10624) -Fix [FS#1047]: the production of banks could not be modified (either in scenario editor or with the cheat).
rubidium
parents: 7283
diff changeset
   653
		WP(w, indview_d).editbox_line = 0;
d7903fff2d0b (svn r10624) -Fix [FS#1047]: the production of banks could not be modified (either in scenario editor or with the cheat).
rubidium
parents: 7283
diff changeset
   654
		WP(w, indview_d).clicked_line = 0;
d7903fff2d0b (svn r10624) -Fix [FS#1047]: the production of banks could not be modified (either in scenario editor or with the cheat).
rubidium
parents: 7283
diff changeset
   655
		WP(w, indview_d).clicked_button = 0;
6624
880e29b1f25e (svn r9844) -Codechange: replace zoomlevel with an enum
truelight
parents: 6492
diff changeset
   656
		AssignWindowViewport(w, 3, 17, 0xFE, 0x56, GetIndustry(w->window_number)->xy + TileDiffXY(1, 1), ZOOM_LVL_INDUSTRY);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   657
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   658
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   659
8047
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   660
/** Names of the widgets of the industry directory gui */
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   661
enum IndustryDirectoryWidgets {
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   662
	IDW_CLOSEBOX = 0,
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   663
	IDW_CAPTION,
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   664
	IDW_STICKY,
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   665
	IDW_SORTBYNAME,
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   666
	IDW_SORTBYTYPE,
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   667
	IDW_SORTBYPROD,
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   668
	IDW_SORTBYTRANSPORT,
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   669
	IDW_SPACER,
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   670
	IDW_INDUSRTY_LIST,
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   671
	IDW_SCROLLBAR,
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   672
	IDW_RESIZE,
7278
c5b4203c6e1c (svn r10617) -Codechange: code style changes (removing an erroneous tab plus switch case alignment)
belugas
parents: 7271
diff changeset
   673
};
c5b4203c6e1c (svn r10617) -Codechange: code style changes (removing an erroneous tab plus switch case alignment)
belugas
parents: 7271
diff changeset
   674
8047
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   675
/** Widget definition of the industy directory gui */
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   676
static const Widget _industry_directory_widgets[] = {
8047
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   677
{   WWT_CLOSEBOX,   RESIZE_NONE,    13,     0,    10,     0,    13, STR_00C5,                STR_018B_CLOSE_WINDOW},             // IDW_CLOSEBOX
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   678
{    WWT_CAPTION,   RESIZE_NONE,    13,    11,   495,     0,    13, STR_INDUSTRYDIR_CAPTION, STR_018C_WINDOW_TITLE_DRAG_THIS},   // IDW_CAPTION
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   679
{  WWT_STICKYBOX,   RESIZE_NONE,    13,   496,   507,     0,    13, 0x0,                     STR_STICKY_BUTTON},                 // IDW_STICKY
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   680
{ WWT_PUSHTXTBTN,   RESIZE_NONE,    13,     0,   100,    14,    25, STR_SORT_BY_NAME,        STR_SORT_ORDER_TIP},                // IDW_SORTBYNAME
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   681
{ WWT_PUSHTXTBTN,   RESIZE_NONE,    13,   101,   200,    14,    25, STR_SORT_BY_TYPE,        STR_SORT_ORDER_TIP},                // IDW_SORTBYTYPE
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   682
{ WWT_PUSHTXTBTN,   RESIZE_NONE,    13,   201,   300,    14,    25, STR_SORT_BY_PRODUCTION,  STR_SORT_ORDER_TIP},                // IDW_SORTBYPROD
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   683
{ WWT_PUSHTXTBTN,   RESIZE_NONE,    13,   301,   400,    14,    25, STR_SORT_BY_TRANSPORTED, STR_SORT_ORDER_TIP},                // IDW_SORTBYTRANSPORT
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   684
{      WWT_PANEL,   RESIZE_NONE,    13,   401,   495,    14,    25, 0x0,                     STR_NULL},                          // IDW_SPACER
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   685
{      WWT_PANEL, RESIZE_BOTTOM,    13,     0,   495,    26,   189, 0x0,                     STR_200A_TOWN_NAMES_CLICK_ON_NAME}, // IDW_INDUSRTY_LIST
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   686
{  WWT_SCROLLBAR, RESIZE_BOTTOM,    13,   496,   507,    14,   177, 0x0,                     STR_0190_SCROLL_BAR_SCROLLS_LIST},  // IDW_SCROLLBAR
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   687
{  WWT_RESIZEBOX,     RESIZE_TB,    13,   496,   507,   178,   189, 0x0,                     STR_RESIZE_BUTTON},                 // IDW_RESIZE
176
84990c4b9212 (svn r177) -Fix: padded out Widget code to solve warnings on C99 compiler (Tron)
darkvater
parents: 164
diff changeset
   688
{   WIDGETS_END},
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   689
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   690
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   691
static uint _num_industry_sort;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   692
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   693
static char _bufcache[96];
4277
345e1bd9525a (svn r5907) Remove more indirection by using pointers instead of IDs. Also fix some bogus warnings on MSVC by using (void*) casts
tron
parents: 4211
diff changeset
   694
static const Industry* _last_industry;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   695
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   696
static byte _industry_sort_order;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   697
164
0cbdf3c9bde1 (svn r165) -Feature: Option to sort vehicles in vehicle-list window by different criteria. Total independent sort for all types and players. Periodic resort of list every 10 TTD days. Thank you for your graphical inspiration follow and buxo (since none of you provided any code).
darkvater
parents: 69
diff changeset
   698
static int CDECL GeneralIndustrySorter(const void *a, const void *b)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   699
{
4277
345e1bd9525a (svn r5907) Remove more indirection by using pointers instead of IDs. Also fix some bogus warnings on MSVC by using (void*) casts
tron
parents: 4211
diff changeset
   700
	const Industry* i = *(const Industry**)a;
345e1bd9525a (svn r5907) Remove more indirection by using pointers instead of IDs. Also fix some bogus warnings on MSVC by using (void*) casts
tron
parents: 4211
diff changeset
   701
	const Industry* j = *(const Industry**)b;
4282
9394aef5b65b (svn r5912) -Fix: Sort order for produced amount and transported percentage was reversed in the industry list
tron
parents: 4277
diff changeset
   702
	int r;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   703
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   704
	switch (_industry_sort_order >> 1) {
4282
9394aef5b65b (svn r5912) -Fix: Sort order for produced amount and transported percentage was reversed in the industry list
tron
parents: 4277
diff changeset
   705
		default: NOT_REACHED();
9394aef5b65b (svn r5912) -Fix: Sort order for produced amount and transported percentage was reversed in the industry list
tron
parents: 4277
diff changeset
   706
		case 0: /* Sort by Name (handled later) */
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   707
			r = 0;
4282
9394aef5b65b (svn r5912) -Fix: Sort order for produced amount and transported percentage was reversed in the industry list
tron
parents: 4277
diff changeset
   708
			break;
9394aef5b65b (svn r5912) -Fix: Sort order for produced amount and transported percentage was reversed in the industry list
tron
parents: 4277
diff changeset
   709
9394aef5b65b (svn r5912) -Fix: Sort order for produced amount and transported percentage was reversed in the industry list
tron
parents: 4277
diff changeset
   710
		case 1: /* Sort by Type */
9394aef5b65b (svn r5912) -Fix: Sort order for produced amount and transported percentage was reversed in the industry list
tron
parents: 4277
diff changeset
   711
			r = i->type - j->type;
9394aef5b65b (svn r5912) -Fix: Sort order for produced amount and transported percentage was reversed in the industry list
tron
parents: 4277
diff changeset
   712
			break;
9394aef5b65b (svn r5912) -Fix: Sort order for produced amount and transported percentage was reversed in the industry list
tron
parents: 4277
diff changeset
   713
9394aef5b65b (svn r5912) -Fix: Sort order for produced amount and transported percentage was reversed in the industry list
tron
parents: 4277
diff changeset
   714
		case 2: /* Sort by Production */
7645
efa25fcf7917 (svn r11176) -Revert (r9867): as it is needed for newgrf callbacks 14B and 14C
glx
parents: 7616
diff changeset
   715
			if (i->produced_cargo[0] == CT_INVALID) {
efa25fcf7917 (svn r11176) -Revert (r9867): as it is needed for newgrf callbacks 14B and 14C
glx
parents: 7616
diff changeset
   716
				r = (j->produced_cargo[0] == CT_INVALID ? 0 : -1);
4282
9394aef5b65b (svn r5912) -Fix: Sort order for produced amount and transported percentage was reversed in the industry list
tron
parents: 4277
diff changeset
   717
			} else {
7645
efa25fcf7917 (svn r11176) -Revert (r9867): as it is needed for newgrf callbacks 14B and 14C
glx
parents: 7616
diff changeset
   718
				if (j->produced_cargo[0] == CT_INVALID) {
4282
9394aef5b65b (svn r5912) -Fix: Sort order for produced amount and transported percentage was reversed in the industry list
tron
parents: 4277
diff changeset
   719
					r = 1;
9394aef5b65b (svn r5912) -Fix: Sort order for produced amount and transported percentage was reversed in the industry list
tron
parents: 4277
diff changeset
   720
				} else {
9394aef5b65b (svn r5912) -Fix: Sort order for produced amount and transported percentage was reversed in the industry list
tron
parents: 4277
diff changeset
   721
					r =
6819
f986f54e2660 (svn r10058) -Codechange: give some industry variable sensible names (like not telling "last_mo_production" when it is the production of the current month).
rubidium
parents: 6815
diff changeset
   722
						(i->last_month_production[0] + i->last_month_production[1]) -
f986f54e2660 (svn r10058) -Codechange: give some industry variable sensible names (like not telling "last_mo_production" when it is the production of the current month).
rubidium
parents: 6815
diff changeset
   723
						(j->last_month_production[0] + j->last_month_production[1]);
4282
9394aef5b65b (svn r5912) -Fix: Sort order for produced amount and transported percentage was reversed in the industry list
tron
parents: 4277
diff changeset
   724
				}
9394aef5b65b (svn r5912) -Fix: Sort order for produced amount and transported percentage was reversed in the industry list
tron
parents: 4277
diff changeset
   725
			}
9394aef5b65b (svn r5912) -Fix: Sort order for produced amount and transported percentage was reversed in the industry list
tron
parents: 4277
diff changeset
   726
			break;
9394aef5b65b (svn r5912) -Fix: Sort order for produced amount and transported percentage was reversed in the industry list
tron
parents: 4277
diff changeset
   727
9394aef5b65b (svn r5912) -Fix: Sort order for produced amount and transported percentage was reversed in the industry list
tron
parents: 4277
diff changeset
   728
		case 3: /* Sort by transported fraction */
7645
efa25fcf7917 (svn r11176) -Revert (r9867): as it is needed for newgrf callbacks 14B and 14C
glx
parents: 7616
diff changeset
   729
			if (i->produced_cargo[0] == CT_INVALID) {
efa25fcf7917 (svn r11176) -Revert (r9867): as it is needed for newgrf callbacks 14B and 14C
glx
parents: 7616
diff changeset
   730
				r = (j->produced_cargo[0] == CT_INVALID ? 0 : -1);
4282
9394aef5b65b (svn r5912) -Fix: Sort order for produced amount and transported percentage was reversed in the industry list
tron
parents: 4277
diff changeset
   731
			} else {
7645
efa25fcf7917 (svn r11176) -Revert (r9867): as it is needed for newgrf callbacks 14B and 14C
glx
parents: 7616
diff changeset
   732
				if (j->produced_cargo[0] == CT_INVALID) {
4282
9394aef5b65b (svn r5912) -Fix: Sort order for produced amount and transported percentage was reversed in the industry list
tron
parents: 4277
diff changeset
   733
					r = 1;
9394aef5b65b (svn r5912) -Fix: Sort order for produced amount and transported percentage was reversed in the industry list
tron
parents: 4277
diff changeset
   734
				} else {
9394aef5b65b (svn r5912) -Fix: Sort order for produced amount and transported percentage was reversed in the industry list
tron
parents: 4277
diff changeset
   735
					int pi;
9394aef5b65b (svn r5912) -Fix: Sort order for produced amount and transported percentage was reversed in the industry list
tron
parents: 4277
diff changeset
   736
					int pj;
9394aef5b65b (svn r5912) -Fix: Sort order for produced amount and transported percentage was reversed in the industry list
tron
parents: 4277
diff changeset
   737
6819
f986f54e2660 (svn r10058) -Codechange: give some industry variable sensible names (like not telling "last_mo_production" when it is the production of the current month).
rubidium
parents: 6815
diff changeset
   738
					pi = i->last_month_pct_transported[0] * 100 >> 8;
7645
efa25fcf7917 (svn r11176) -Revert (r9867): as it is needed for newgrf callbacks 14B and 14C
glx
parents: 7616
diff changeset
   739
					if (i->produced_cargo[1] != CT_INVALID) {
6819
f986f54e2660 (svn r10058) -Codechange: give some industry variable sensible names (like not telling "last_mo_production" when it is the production of the current month).
rubidium
parents: 6815
diff changeset
   740
						int p = i->last_month_pct_transported[1] * 100 >> 8;
4282
9394aef5b65b (svn r5912) -Fix: Sort order for produced amount and transported percentage was reversed in the industry list
tron
parents: 4277
diff changeset
   741
						if (p < pi) pi = p;
9394aef5b65b (svn r5912) -Fix: Sort order for produced amount and transported percentage was reversed in the industry list
tron
parents: 4277
diff changeset
   742
					}
9394aef5b65b (svn r5912) -Fix: Sort order for produced amount and transported percentage was reversed in the industry list
tron
parents: 4277
diff changeset
   743
6819
f986f54e2660 (svn r10058) -Codechange: give some industry variable sensible names (like not telling "last_mo_production" when it is the production of the current month).
rubidium
parents: 6815
diff changeset
   744
					pj = j->last_month_pct_transported[0] * 100 >> 8;
7645
efa25fcf7917 (svn r11176) -Revert (r9867): as it is needed for newgrf callbacks 14B and 14C
glx
parents: 7616
diff changeset
   745
					if (j->produced_cargo[1] != CT_INVALID) {
6819
f986f54e2660 (svn r10058) -Codechange: give some industry variable sensible names (like not telling "last_mo_production" when it is the production of the current month).
rubidium
parents: 6815
diff changeset
   746
						int p = j->last_month_pct_transported[1] * 100 >> 8;
4282
9394aef5b65b (svn r5912) -Fix: Sort order for produced amount and transported percentage was reversed in the industry list
tron
parents: 4277
diff changeset
   747
						if (p < pj) pj = p;
9394aef5b65b (svn r5912) -Fix: Sort order for produced amount and transported percentage was reversed in the industry list
tron
parents: 4277
diff changeset
   748
					}
9394aef5b65b (svn r5912) -Fix: Sort order for produced amount and transported percentage was reversed in the industry list
tron
parents: 4277
diff changeset
   749
9394aef5b65b (svn r5912) -Fix: Sort order for produced amount and transported percentage was reversed in the industry list
tron
parents: 4277
diff changeset
   750
					r = pi - pj;
9394aef5b65b (svn r5912) -Fix: Sort order for produced amount and transported percentage was reversed in the industry list
tron
parents: 4277
diff changeset
   751
				}
9394aef5b65b (svn r5912) -Fix: Sort order for produced amount and transported percentage was reversed in the industry list
tron
parents: 4277
diff changeset
   752
			}
9394aef5b65b (svn r5912) -Fix: Sort order for produced amount and transported percentage was reversed in the industry list
tron
parents: 4277
diff changeset
   753
			break;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   754
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   755
6201
bee01dc45e39 (svn r8987) -Cleanup: doxygen changes. Again. Mostly (still) @files missing tags and (more than just) a few comments style.
belugas
parents: 6200
diff changeset
   756
	/* default to string sorting if they are otherwise equal */
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   757
	if (r == 0) {
4282
9394aef5b65b (svn r5912) -Fix: Sort order for produced amount and transported percentage was reversed in the industry list
tron
parents: 4277
diff changeset
   758
		char buf1[96];
9394aef5b65b (svn r5912) -Fix: Sort order for produced amount and transported percentage was reversed in the industry list
tron
parents: 4277
diff changeset
   759
2070
47b1f29d4671 (svn r2580) Change: Added {INDUSTRY} command for printing industry names instead of the old {TOWN} {STRING} way.
ludde
parents: 2063
diff changeset
   760
		SetDParam(0, i->town->index);
4912
0f51b47cb983 (svn r6884) -Codechange: Add strict bounds checking in string formatting system.
Darkvater
parents: 4896
diff changeset
   761
		GetString(buf1, STR_TOWN, lastof(buf1));
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   762
4277
345e1bd9525a (svn r5907) Remove more indirection by using pointers instead of IDs. Also fix some bogus warnings on MSVC by using (void*) casts
tron
parents: 4211
diff changeset
   763
		if (j != _last_industry) {
345e1bd9525a (svn r5907) Remove more indirection by using pointers instead of IDs. Also fix some bogus warnings on MSVC by using (void*) casts
tron
parents: 4211
diff changeset
   764
			_last_industry = j;
2070
47b1f29d4671 (svn r2580) Change: Added {INDUSTRY} command for printing industry names instead of the old {TOWN} {STRING} way.
ludde
parents: 2063
diff changeset
   765
			SetDParam(0, j->town->index);
4912
0f51b47cb983 (svn r6884) -Codechange: Add strict bounds checking in string formatting system.
Darkvater
parents: 4896
diff changeset
   766
			GetString(_bufcache, STR_TOWN, lastof(_bufcache));
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   767
		}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   768
		r = strcmp(buf1, _bufcache);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   769
	}
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 176
diff changeset
   770
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 176
diff changeset
   771
	if (_industry_sort_order & 1) r = -r;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   772
	return r;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   773
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   774
6200
10efd7fb90d4 (svn r8980) -Fix (FS#656): the industry list should also be (re)set when the number of industries is 0.
rubidium
parents: 6091
diff changeset
   775
/**
10efd7fb90d4 (svn r8980) -Fix (FS#656): the industry list should also be (re)set when the number of industries is 0.
rubidium
parents: 6091
diff changeset
   776
 * Makes a sorted industry list.
10efd7fb90d4 (svn r8980) -Fix (FS#656): the industry list should also be (re)set when the number of industries is 0.
rubidium
parents: 6091
diff changeset
   777
 * When there are no industries, the list has to be made. This so when one
10efd7fb90d4 (svn r8980) -Fix (FS#656): the industry list should also be (re)set when the number of industries is 0.
rubidium
parents: 6091
diff changeset
   778
 * starts a new game without industries after playing a game with industries
10efd7fb90d4 (svn r8980) -Fix (FS#656): the industry list should also be (re)set when the number of industries is 0.
rubidium
parents: 6091
diff changeset
   779
 * the list is not populated with invalid industries from the previous game.
10efd7fb90d4 (svn r8980) -Fix (FS#656): the industry list should also be (re)set when the number of industries is 0.
rubidium
parents: 6091
diff changeset
   780
 */
6247
7d81e3a5d803 (svn r9050) -Codechange: Foo(void) -> Foo()
rubidium
parents: 6201
diff changeset
   781
static void MakeSortedIndustryList()
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   782
{
4277
345e1bd9525a (svn r5907) Remove more indirection by using pointers instead of IDs. Also fix some bogus warnings on MSVC by using (void*) casts
tron
parents: 4211
diff changeset
   783
	const Industry* i;
919
544f374ee392 (svn r1407) -Codechange: changed a lot around _stations, _vehicles, _towns and _industries
truelight
parents: 893
diff changeset
   784
	int n = 0;
544f374ee392 (svn r1407) -Codechange: changed a lot around _stations, _vehicles, _towns and _industries
truelight
parents: 893
diff changeset
   785
544f374ee392 (svn r1407) -Codechange: changed a lot around _stations, _vehicles, _towns and _industries
truelight
parents: 893
diff changeset
   786
	/* Create array for sorting */
5609
dc6a58930ba4 (svn r8066) - Codechange: MallocT(), CallocT(), ReallocT() now return the pointer to allocated memory instead of modifying the pointer given as parameter
KUDr
parents: 5601
diff changeset
   787
	_industry_sort = ReallocT(_industry_sort, GetMaxIndustryIndex() + 1);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   788
6200
10efd7fb90d4 (svn r8980) -Fix (FS#656): the industry list should also be (re)set when the number of industries is 0.
rubidium
parents: 6091
diff changeset
   789
	/* Don't attempt a sort if there are no industries */
10efd7fb90d4 (svn r8980) -Fix (FS#656): the industry list should also be (re)set when the number of industries is 0.
rubidium
parents: 6091
diff changeset
   790
	if (GetNumIndustries() != 0) {
10efd7fb90d4 (svn r8980) -Fix (FS#656): the industry list should also be (re)set when the number of industries is 0.
rubidium
parents: 6091
diff changeset
   791
		FOR_ALL_INDUSTRIES(i) _industry_sort[n++] = i;
10efd7fb90d4 (svn r8980) -Fix (FS#656): the industry list should also be (re)set when the number of industries is 0.
rubidium
parents: 6091
diff changeset
   792
		qsort((void*)_industry_sort, n, sizeof(_industry_sort[0]), GeneralIndustrySorter);
10efd7fb90d4 (svn r8980) -Fix (FS#656): the industry list should also be (re)set when the number of industries is 0.
rubidium
parents: 6091
diff changeset
   793
	}
4346
66105d4f6e83 (svn r6047) -Codechange: FOR_ALL now _only_ loops valid items, and skips invalid ones
truelight
parents: 4344
diff changeset
   794
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   795
	_num_industry_sort = n;
4277
345e1bd9525a (svn r5907) Remove more indirection by using pointers instead of IDs. Also fix some bogus warnings on MSVC by using (void*) casts
tron
parents: 4211
diff changeset
   796
	_last_industry = NULL; // used for "cache"
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   797
5380
8ea58542b6e0 (svn r7565) -Codechange: Rework DEBUG functionality. Look for appropiate debugging levels to
Darkvater
parents: 5247
diff changeset
   798
	DEBUG(misc, 3, "Resorting industries list");
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   799
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   800
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   801
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   802
static void IndustryDirectoryWndProc(Window *w, WindowEvent *e)
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   803
{
2951
2de6d3a59743 (svn r3510) Fiddle with whitespace and parentheses
tron
parents: 2866
diff changeset
   804
	switch (e->event) {
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   805
	case WE_PAINT: {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   806
		int n;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   807
		uint p;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   808
		static const uint16 _indicator_positions[4] = {88, 187, 284, 387};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   809
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   810
		if (_industry_sort_dirty) {
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   811
			_industry_sort_dirty = false;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   812
			MakeSortedIndustryList();
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   813
		}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   814
1666
46dc094142b1 (svn r2170) -fix: [1179457] the industry list can now no longer scroll down then the end of the list is reached (Hackykid)
bjarni
parents: 1388
diff changeset
   815
		SetVScrollCount(w, _num_industry_sort);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   816
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   817
		DrawWindowWidgets(w);
7824
5a63d41b59ea (svn r11374) -Codechange: Give meaning to the magical number that specifies the color of the text in a DrawString call.
belugas
parents: 7822
diff changeset
   818
		DoDrawString(_industry_sort_order & 1 ? DOWNARROW : UPARROW, _indicator_positions[_industry_sort_order >> 1], 15, TC_BLACK);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   819
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   820
		p = w->vscroll.pos;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   821
		n = 0;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   822
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   823
		while (p < _num_industry_sort) {
4277
345e1bd9525a (svn r5907) Remove more indirection by using pointers instead of IDs. Also fix some bogus warnings on MSVC by using (void*) casts
tron
parents: 4211
diff changeset
   824
			const Industry* i = _industry_sort[p];
2989
916f9443345f (svn r3564) Several smaller changes:
tron
parents: 2952
diff changeset
   825
2070
47b1f29d4671 (svn r2580) Change: Added {INDUSTRY} command for printing industry names instead of the old {TOWN} {STRING} way.
ludde
parents: 2063
diff changeset
   826
			SetDParam(0, i->index);
7645
efa25fcf7917 (svn r11176) -Revert (r9867): as it is needed for newgrf callbacks 14B and 14C
glx
parents: 7616
diff changeset
   827
			if (i->produced_cargo[0] != CT_INVALID) {
efa25fcf7917 (svn r11176) -Revert (r9867): as it is needed for newgrf callbacks 14B and 14C
glx
parents: 7616
diff changeset
   828
				SetDParam(1, i->produced_cargo[0]);
6819
f986f54e2660 (svn r10058) -Codechange: give some industry variable sensible names (like not telling "last_mo_production" when it is the production of the current month).
rubidium
parents: 6815
diff changeset
   829
				SetDParam(2, i->last_month_production[0]);
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 176
diff changeset
   830
7645
efa25fcf7917 (svn r11176) -Revert (r9867): as it is needed for newgrf callbacks 14B and 14C
glx
parents: 7616
diff changeset
   831
				if (i->produced_cargo[1] != CT_INVALID) {
efa25fcf7917 (svn r11176) -Revert (r9867): as it is needed for newgrf callbacks 14B and 14C
glx
parents: 7616
diff changeset
   832
					SetDParam(3, i->produced_cargo[1]);
6819
f986f54e2660 (svn r10058) -Codechange: give some industry variable sensible names (like not telling "last_mo_production" when it is the production of the current month).
rubidium
parents: 6815
diff changeset
   833
					SetDParam(4, i->last_month_production[1]);
f986f54e2660 (svn r10058) -Codechange: give some industry variable sensible names (like not telling "last_mo_production" when it is the production of the current month).
rubidium
parents: 6815
diff changeset
   834
					SetDParam(5, i->last_month_pct_transported[0] * 100 >> 8);
f986f54e2660 (svn r10058) -Codechange: give some industry variable sensible names (like not telling "last_mo_production" when it is the production of the current month).
rubidium
parents: 6815
diff changeset
   835
					SetDParam(6, i->last_month_pct_transported[1] * 100 >> 8);
7824
5a63d41b59ea (svn r11374) -Codechange: Give meaning to the magical number that specifies the color of the text in a DrawString call.
belugas
parents: 7822
diff changeset
   836
					DrawString(4, 28 + n * 10, STR_INDUSTRYDIR_ITEM_TWO, TC_FROMSTRING);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   837
				} else {
6819
f986f54e2660 (svn r10058) -Codechange: give some industry variable sensible names (like not telling "last_mo_production" when it is the production of the current month).
rubidium
parents: 6815
diff changeset
   838
					SetDParam(3, i->last_month_pct_transported[0] * 100 >> 8);
7824
5a63d41b59ea (svn r11374) -Codechange: Give meaning to the magical number that specifies the color of the text in a DrawString call.
belugas
parents: 7822
diff changeset
   839
					DrawString(4, 28 + n * 10, STR_INDUSTRYDIR_ITEM, TC_FROMSTRING);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   840
				}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   841
			} else {
7824
5a63d41b59ea (svn r11374) -Codechange: Give meaning to the magical number that specifies the color of the text in a DrawString call.
belugas
parents: 7822
diff changeset
   842
				DrawString(4, 28 + n * 10, STR_INDUSTRYDIR_ITEM_NOPROD, TC_FROMSTRING);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   843
			}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   844
			p++;
2951
2de6d3a59743 (svn r3510) Fiddle with whitespace and parentheses
tron
parents: 2866
diff changeset
   845
			if (++n == w->vscroll.cap) break;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   846
		}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   847
	} break;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   848
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   849
	case WE_CLICK:
4634
07699ac2bf37 (svn r6499) -Codechange: Finally, got "byte event" outside of the union WindowEvent, which is now a struct
belugas
parents: 4617
diff changeset
   850
		switch (e->we.click.widget) {
8047
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   851
			case IDW_SORTBYNAME: {
7278
c5b4203c6e1c (svn r10617) -Codechange: code style changes (removing an erroneous tab plus switch case alignment)
belugas
parents: 7271
diff changeset
   852
				_industry_sort_order = _industry_sort_order == 0 ? 1 : 0;
c5b4203c6e1c (svn r10617) -Codechange: code style changes (removing an erroneous tab plus switch case alignment)
belugas
parents: 7271
diff changeset
   853
				_industry_sort_dirty = true;
c5b4203c6e1c (svn r10617) -Codechange: code style changes (removing an erroneous tab plus switch case alignment)
belugas
parents: 7271
diff changeset
   854
				SetWindowDirty(w);
c5b4203c6e1c (svn r10617) -Codechange: code style changes (removing an erroneous tab plus switch case alignment)
belugas
parents: 7271
diff changeset
   855
			} break;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   856
8047
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   857
			case IDW_SORTBYTYPE: {
7278
c5b4203c6e1c (svn r10617) -Codechange: code style changes (removing an erroneous tab plus switch case alignment)
belugas
parents: 7271
diff changeset
   858
				_industry_sort_order = _industry_sort_order == 2 ? 3 : 2;
c5b4203c6e1c (svn r10617) -Codechange: code style changes (removing an erroneous tab plus switch case alignment)
belugas
parents: 7271
diff changeset
   859
				_industry_sort_dirty = true;
c5b4203c6e1c (svn r10617) -Codechange: code style changes (removing an erroneous tab plus switch case alignment)
belugas
parents: 7271
diff changeset
   860
				SetWindowDirty(w);
c5b4203c6e1c (svn r10617) -Codechange: code style changes (removing an erroneous tab plus switch case alignment)
belugas
parents: 7271
diff changeset
   861
			} break;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   862
8047
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   863
			case IDW_SORTBYPROD: {
7278
c5b4203c6e1c (svn r10617) -Codechange: code style changes (removing an erroneous tab plus switch case alignment)
belugas
parents: 7271
diff changeset
   864
				_industry_sort_order = _industry_sort_order == 4 ? 5 : 4;
c5b4203c6e1c (svn r10617) -Codechange: code style changes (removing an erroneous tab plus switch case alignment)
belugas
parents: 7271
diff changeset
   865
				_industry_sort_dirty = true;
c5b4203c6e1c (svn r10617) -Codechange: code style changes (removing an erroneous tab plus switch case alignment)
belugas
parents: 7271
diff changeset
   866
				SetWindowDirty(w);
c5b4203c6e1c (svn r10617) -Codechange: code style changes (removing an erroneous tab plus switch case alignment)
belugas
parents: 7271
diff changeset
   867
			} break;
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 176
diff changeset
   868
8047
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   869
			case IDW_SORTBYTRANSPORT: {
7278
c5b4203c6e1c (svn r10617) -Codechange: code style changes (removing an erroneous tab plus switch case alignment)
belugas
parents: 7271
diff changeset
   870
				_industry_sort_order = _industry_sort_order == 6 ? 7 : 6;
c5b4203c6e1c (svn r10617) -Codechange: code style changes (removing an erroneous tab plus switch case alignment)
belugas
parents: 7271
diff changeset
   871
				_industry_sort_dirty = true;
c5b4203c6e1c (svn r10617) -Codechange: code style changes (removing an erroneous tab plus switch case alignment)
belugas
parents: 7271
diff changeset
   872
				SetWindowDirty(w);
c5b4203c6e1c (svn r10617) -Codechange: code style changes (removing an erroneous tab plus switch case alignment)
belugas
parents: 7271
diff changeset
   873
			} break;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   874
8047
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   875
			case IDW_INDUSRTY_LIST: {
7278
c5b4203c6e1c (svn r10617) -Codechange: code style changes (removing an erroneous tab plus switch case alignment)
belugas
parents: 7271
diff changeset
   876
				int y = (e->we.click.pt.y - 28) / 10;
c5b4203c6e1c (svn r10617) -Codechange: code style changes (removing an erroneous tab plus switch case alignment)
belugas
parents: 7271
diff changeset
   877
				uint16 p;
c5b4203c6e1c (svn r10617) -Codechange: code style changes (removing an erroneous tab plus switch case alignment)
belugas
parents: 7271
diff changeset
   878
7954
57b51c69c072 (svn r11510) -Codechange: merge the IS_*INSIDE* functions and rename them fitting to the naming style
skidd13
parents: 7928
diff changeset
   879
				if (!IsInsideMM(y, 0, w->vscroll.cap)) return;
7278
c5b4203c6e1c (svn r10617) -Codechange: code style changes (removing an erroneous tab plus switch case alignment)
belugas
parents: 7271
diff changeset
   880
				p = y + w->vscroll.pos;
c5b4203c6e1c (svn r10617) -Codechange: code style changes (removing an erroneous tab plus switch case alignment)
belugas
parents: 7271
diff changeset
   881
				if (p < _num_industry_sort) {
c5b4203c6e1c (svn r10617) -Codechange: code style changes (removing an erroneous tab plus switch case alignment)
belugas
parents: 7271
diff changeset
   882
					ScrollMainWindowToTile(_industry_sort[p]->xy);
c5b4203c6e1c (svn r10617) -Codechange: code style changes (removing an erroneous tab plus switch case alignment)
belugas
parents: 7271
diff changeset
   883
				}
c5b4203c6e1c (svn r10617) -Codechange: code style changes (removing an erroneous tab plus switch case alignment)
belugas
parents: 7271
diff changeset
   884
			} break;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   885
		}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   886
		break;
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   887
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   888
	case WE_4:
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   889
		SetWindowDirty(w);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   890
		break;
867
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 830
diff changeset
   891
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 830
diff changeset
   892
	case WE_RESIZE:
4634
07699ac2bf37 (svn r6499) -Codechange: Finally, got "byte event" outside of the union WindowEvent, which is now a struct
belugas
parents: 4617
diff changeset
   893
		w->vscroll.cap += e->we.sizing.diff.y / 10;
867
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 830
diff changeset
   894
		break;
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 176
diff changeset
   895
	}
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   896
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   897
8047
50d438fdf470 (svn r11607) -Codechange: Enumify the industry widgets
skidd13
parents: 8040
diff changeset
   898
/** Window definition of the industy directory gui */
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   899
static const WindowDesc _industry_directory_desc = {
7341
02515d0d4ced (svn r10704) -Codechange: provide an infrastructure to have resizable windows that are smaller than the default window size.
rubidium
parents: 7319
diff changeset
   900
	WDP_AUTO, WDP_AUTO, 508, 190, 508, 190,
5893
7e431a4abebb (svn r8511) -Codechange: make WindowClass an enumerated value.
rubidium
parents: 5609
diff changeset
   901
	WC_INDUSTRY_DIRECTORY, WC_NONE,
867
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 830
diff changeset
   902
	WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON | WDF_RESIZABLE,
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   903
	_industry_directory_widgets,
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   904
	IndustryDirectoryWndProc
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   905
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   906
6247
7d81e3a5d803 (svn r9050) -Codechange: Foo(void) -> Foo()
rubidium
parents: 6201
diff changeset
   907
void ShowIndustryDirectory()
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   908
{
4171
5c6e60c392c3 (svn r5609) CodeChange : Apply coding style
belugas
parents: 3689
diff changeset
   909
	Window *w = AllocateWindowDescFront(&_industry_directory_desc, 0);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   910
2989
916f9443345f (svn r3564) Several smaller changes:
tron
parents: 2952
diff changeset
   911
	if (w != NULL) {
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   912
		w->vscroll.cap = 16;
867
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 830
diff changeset
   913
		w->resize.height = w->height - 6 * 10; // minimum 10 items
dffd33233237 (svn r1348) -Feature: resizable windows. Read the comment in window.h to find out
truelight
parents: 830
diff changeset
   914
		w->resize.step_height = 10;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   915
		SetWindowDirty(w);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   916
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   917
}