src/bridge_gui.cpp
author skidd13
Sat, 17 May 2008 22:07:04 +0000
changeset 10605 87e6826b9901
parent 10595 7957c71b0dfe
child 10607 1ab30cead125
permissions -rw-r--r--
(svn r13149) -Codechange: make a class of the BuildBridgeWindow.
2186
461a2aff3486 (svn r2701) Insert Id tags into all source files
tron
parents: 2163
diff changeset
     1
/* $Id$ */
461a2aff3486 (svn r2701) Insert Id tags into all source files
tron
parents: 2163
diff changeset
     2
6443
b8f06d8eb7be (svn r8853) -Cleanup: doxygen changes. Correct forgotten c files to cpp files with the @file tag as well as a few general comments style
belugas
parents: 6182
diff changeset
     3
/** @file bridge_gui.cpp Graphical user interface for bridge construction */
2262
bd59b2d8d75f (svn r2782) -Codechange: Started cleaning the bridge code. Removed numerous global variables containing bridge information and joined them in a struct. Introduced GetBridgeType and GetBridgePiece and fixed some minor stuff (whitespace etc)
celestar
parents: 2186
diff changeset
     4
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
     5
#include "stdafx.h"
1891
92a3b0aa0946 (svn r2397) - CodeChange: rename all "ttd" files to "openttd" files.
Darkvater
parents: 1781
diff changeset
     6
#include "openttd.h"
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
     7
#include "gui.h"
8603
88c5ce6a5215 (svn r11668) -Codechange: more refactoring aimed at reducing compile time and making it more logic where function definitions can be found.
rubidium
parents: 8602
diff changeset
     8
#include "window_gui.h"
8612
6414fc21c2f3 (svn r11677) -Codechange: move price and command related types/functions to their respective places.
rubidium
parents: 8610
diff changeset
     9
#include "command_func.h"
6414fc21c2f3 (svn r11677) -Codechange: move price and command related types/functions to their respective places.
rubidium
parents: 8610
diff changeset
    10
#include "economy_func.h"
2159
3b634157c3b2 (svn r2669) Shuffle some more stuff around to reduce dependencies
tron
parents: 2133
diff changeset
    11
#include "variables.h"
2262
bd59b2d8d75f (svn r2782) -Codechange: Started cleaning the bridge code. Removed numerous global variables containing bridge information and joined them in a struct. Introduced GetBridgeType and GetBridgePiece and fixed some minor stuff (whitespace etc)
celestar
parents: 2186
diff changeset
    12
#include "bridge.h"
8610
17cc343a23dd (svn r11675) -Codechange: split the string types from the string functions.
rubidium
parents: 8603
diff changeset
    13
#include "strings_func.h"
8627
448ebf3a8291 (svn r11692) -Codechange: move some functions from 'functions.h' to a more logical place and remove about 50% of the includes of 'functions.h'
rubidium
parents: 8617
diff changeset
    14
#include "window_func.h"
8653
a83f7a536919 (svn r11719) -Codechange: split sound.h in a header with types and one with functions.
rubidium
parents: 8635
diff changeset
    15
#include "sound_func.h"
8635
3bbb6f87fced (svn r11701) -Codechange: removal unnecessary inclusions of map.h (and split map.h).
rubidium
parents: 8627
diff changeset
    16
#include "map_func.h"
8720
4e60c30e2006 (svn r11787) -Codechange: more header rewrites. This time related to viewport.h.
rubidium
parents: 8653
diff changeset
    17
#include "viewport_func.h"
4e60c30e2006 (svn r11787) -Codechange: more header rewrites. This time related to viewport.h.
rubidium
parents: 8653
diff changeset
    18
#include "gfx_func.h"
8894
1e5b2d4380b8 (svn r11968) -Codechange: remove redundant FindLengthOfTunnel(), use GetTunnelBridgeLength() and/or GetOtherTunnelEnd() instead
smatz
parents: 8760
diff changeset
    19
#include "tunnelbridge.h"
10605
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
    20
#include "sortlist_type.h"
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    21
8760
ce0891c412ce (svn r11828) -Codechange: include table/* as the last includes and remove an unneeded include from openttd.h.
rubidium
parents: 8720
diff changeset
    22
#include "table/strings.h"
ce0891c412ce (svn r11828) -Codechange: include table/* as the last includes and remove an unneeded include from openttd.h.
rubidium
parents: 8720
diff changeset
    23
10605
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
    24
/**
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
    25
 * Carriage for the data we need if we want to build a bridge
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
    26
 */
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
    27
struct BuildBridgeData {
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
    28
	BridgeType index;
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
    29
	const BridgeSpec *spec;
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
    30
	Money cost;
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
    31
};
8516
e7ce655f85ef (svn r11580) -Feature: Memorise the resizing of the build bridge selection window during runtime
skidd13
parents: 8479
diff changeset
    32
10605
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
    33
typedef GUIList<BuildBridgeData> GUIBridgeList;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    34
10605
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
    35
/**
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
    36
 * Callback executed after a build Bridge CMD has been called
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
    37
 *
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
    38
 * @param scucess True if the build succeded
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
    39
 * @param tile The tile where the command has been executed
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
    40
 * @param p1 not used
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
    41
 * @param p2 not used
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
    42
 */
1977
4392ae3d8e31 (svn r2483) Replace almost 500 "uint tile" (and variants) with "TileIndex tile"
tron
parents: 1891
diff changeset
    43
void CcBuildBridge(bool success, TileIndex tile, uint32 p1, uint32 p2)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    44
{
541
e1cd34389f79 (svn r925) Use sound enums
tron
parents: 534
diff changeset
    45
	if (success) SndPlayTileFx(SND_27_BLACKSMITH_ANVIL, tile);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    46
}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    47
8516
e7ce655f85ef (svn r11580) -Feature: Memorise the resizing of the build bridge selection window during runtime
skidd13
parents: 8479
diff changeset
    48
/* Names of the build bridge selection window */
e7ce655f85ef (svn r11580) -Feature: Memorise the resizing of the build bridge selection window during runtime
skidd13
parents: 8479
diff changeset
    49
enum BuildBridgeSelectionWidgets {
e7ce655f85ef (svn r11580) -Feature: Memorise the resizing of the build bridge selection window during runtime
skidd13
parents: 8479
diff changeset
    50
	BBSW_CLOSEBOX = 0,
e7ce655f85ef (svn r11580) -Feature: Memorise the resizing of the build bridge selection window during runtime
skidd13
parents: 8479
diff changeset
    51
	BBSW_CAPTION,
e7ce655f85ef (svn r11580) -Feature: Memorise the resizing of the build bridge selection window during runtime
skidd13
parents: 8479
diff changeset
    52
	BBSW_BRIDGE_LIST,
e7ce655f85ef (svn r11580) -Feature: Memorise the resizing of the build bridge selection window during runtime
skidd13
parents: 8479
diff changeset
    53
	BBSW_SCROLLBAR,
e7ce655f85ef (svn r11580) -Feature: Memorise the resizing of the build bridge selection window during runtime
skidd13
parents: 8479
diff changeset
    54
	BBSW_RESIZEBOX
e7ce655f85ef (svn r11580) -Feature: Memorise the resizing of the build bridge selection window during runtime
skidd13
parents: 8479
diff changeset
    55
};
e7ce655f85ef (svn r11580) -Feature: Memorise the resizing of the build bridge selection window during runtime
skidd13
parents: 8479
diff changeset
    56
10605
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
    57
class BuildBridgeWindow : public Window {
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
    58
private:
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
    59
	/* The last size of the build bridge window
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
    60
	 * is saved during runtime */
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
    61
	static uint8 last_size;
8516
e7ce655f85ef (svn r11580) -Feature: Memorise the resizing of the build bridge selection window during runtime
skidd13
parents: 8479
diff changeset
    62
10605
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
    63
	TileIndex start_tile;
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
    64
	TileIndex end_tile;
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
    65
	uint32 type;
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
    66
	const GUIBridgeList *bridges;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    67
10605
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
    68
	void BuildBridge(uint8 i)
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
    69
	{
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
    70
		DoCommandP(this->end_tile, this->start_tile, this->type | this->bridges->sort_list[i].index,
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
    71
				CcBuildBridge, CMD_BUILD_BRIDGE | CMD_MSG(STR_5015_CAN_T_BUILD_BRIDGE_HERE));
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
    72
	}
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    73
10605
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
    74
public:
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
    75
	BuildBridgeWindow(const WindowDesc *desc, TileIndex start, TileIndex end, uint32 br_type, const GUIBridgeList *bl) : Window(desc),
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
    76
		start_tile(start),
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
    77
		end_tile(end),
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
    78
		type(br_type),
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
    79
		bridges(bl)
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
    80
	{
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
    81
10605
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
    82
		/* Change the data, or the caption of the gui. Set it to road or rail, accordingly */
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
    83
		this->widget[BBSW_CAPTION].data = (GB(this->type, 15, 2) == TRANSPORT_ROAD) ? STR_1803_SELECT_ROAD_BRIDGE : STR_100D_SELECT_RAIL_BRIDGE;
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
    84
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
    85
		this->resize.step_height = 22;
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
    86
		this->vscroll.count = bl->list_length;
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
    87
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
    88
		if (this->last_size <= 4) {
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
    89
			this->vscroll.cap = 4;
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
    90
		} else {
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
    91
			/* Resize the bridge selection window if we used a bigger one the last time */
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
    92
			this->vscroll.cap = (this->vscroll.count > this->last_size) ? this->last_size : this->vscroll.count;
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
    93
			ResizeWindow(this, 0, (this->vscroll.cap - 4) * this->resize.step_height);
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
    94
			this->widget[BBSW_BRIDGE_LIST].data = (this->vscroll.cap << 8) + 1;
8479
a1ab2afafb84 (svn r11539) -Feature: Make the bridge selection window resizable
skidd13
parents: 8320
diff changeset
    95
		}
6530
c43fa965e8ae (svn r8990) -Fix: more indenting and variable scoping
peter1138
parents: 6443
diff changeset
    96
10605
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
    97
		this->FindWindowPlacementAndResize(desc);
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
    98
	}
6530
c43fa965e8ae (svn r8990) -Fix: more indenting and variable scoping
peter1138
parents: 6443
diff changeset
    99
10605
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   100
	~BuildBridgeWindow()
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   101
	{
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   102
		free(this->bridges->sort_list);
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   103
		delete bridges;
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   104
	}
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   105
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   106
	virtual void OnPaint()
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   107
	{
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   108
		this->DrawWidgets();
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   109
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   110
		uint y = 15;
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   111
		for (uint i = 0; (i < this->vscroll.cap) && ((i + this->vscroll.pos) < this->bridges->list_length); i++) {
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   112
			const BridgeSpec *b = this->bridges->sort_list[i + this->vscroll.pos].spec;
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   113
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   114
			SetDParam(2, this->bridges->sort_list[i + this->vscroll.pos].cost);
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   115
			SetDParam(1, b->speed * 10 / 16);
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   116
			SetDParam(0, b->material);
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   117
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   118
			DrawSprite(b->sprite, b->pal, 3, y);
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   119
			DrawString(44, y, STR_500D, TC_FROMSTRING);
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   120
			y += this->resize.step_height;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   121
		}
10605
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   122
	}
193
0a7025304867 (svn r194) -Codechange: stripping trailing-spaces. Please keep this that way!
truelight
parents: 176
diff changeset
   123
10605
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   124
	virtual bool OnKeyPress(uint16 key, uint16 keycode)
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   125
	{
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   126
		const uint8 i = keycode - '1';
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   127
		if (i < 9 && i < this->bridges->list_length) {
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   128
			/* Build the requested bridge */
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   129
			this->BuildBridge(i);
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   130
			delete this;
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   131
			return false;
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   132
		}
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   133
		return true;
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   134
	}
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   135
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   136
	virtual void OnClick(Point pt, int widget)
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   137
	{
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   138
		if (widget == BBSW_BRIDGE_LIST) {
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   139
			uint i = ((int)pt.y - 14) / this->resize.step_height;
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   140
			if (i < this->vscroll.cap) {
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   141
				i += this->vscroll.pos;
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   142
				if (i < this->bridges->list_length) {
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   143
					this->BuildBridge(i);
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   144
					delete this;
8479
a1ab2afafb84 (svn r11539) -Feature: Make the bridge selection window resizable
skidd13
parents: 8320
diff changeset
   145
				}
6530
c43fa965e8ae (svn r8990) -Fix: more indenting and variable scoping
peter1138
parents: 6443
diff changeset
   146
			}
10605
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   147
		}
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   148
	}
8479
a1ab2afafb84 (svn r11539) -Feature: Make the bridge selection window resizable
skidd13
parents: 8320
diff changeset
   149
10605
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   150
	virtual void OnResize(Point new_size, Point delta)
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   151
	{
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   152
		this->vscroll.cap += delta.y / (int)this->resize.step_height;
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   153
		this->widget[BBSW_BRIDGE_LIST].data = (this->vscroll.cap << 8) + 1;
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   154
		SetVScrollCount(this, this->bridges->list_length);
8516
e7ce655f85ef (svn r11580) -Feature: Memorise the resizing of the build bridge selection window during runtime
skidd13
parents: 8479
diff changeset
   155
10605
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   156
		this->last_size = this->vscroll.cap;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   157
	}
10605
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   158
};
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   159
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   160
/* Set the default size of the Build Bridge Window */
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   161
uint8 BuildBridgeWindow::last_size = 4;
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   162
8516
e7ce655f85ef (svn r11580) -Feature: Memorise the resizing of the build bridge selection window during runtime
skidd13
parents: 8479
diff changeset
   163
/* Widget definition for the rail bridge selection window */
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   164
static const Widget _build_bridge_widgets[] = {
8516
e7ce655f85ef (svn r11580) -Feature: Memorise the resizing of the build bridge selection window during runtime
skidd13
parents: 8479
diff changeset
   165
{   WWT_CLOSEBOX,   RESIZE_NONE,  7,   0,  10,   0,  13, STR_00C5,                    STR_018B_CLOSE_WINDOW},            // BBSW_CLOSEBOX
e7ce655f85ef (svn r11580) -Feature: Memorise the resizing of the build bridge selection window during runtime
skidd13
parents: 8479
diff changeset
   166
{    WWT_CAPTION,   RESIZE_NONE,  7,  11, 199,   0,  13, STR_100D_SELECT_RAIL_BRIDGE, STR_018C_WINDOW_TITLE_DRAG_THIS},  // BBSW_CAPTION
e7ce655f85ef (svn r11580) -Feature: Memorise the resizing of the build bridge selection window during runtime
skidd13
parents: 8479
diff changeset
   167
{     WWT_MATRIX, RESIZE_BOTTOM,  7,   0, 187,  14, 101, 0x401,                       STR_101F_BRIDGE_SELECTION_CLICK},  // BBSW_BRIDGE_LIST
e7ce655f85ef (svn r11580) -Feature: Memorise the resizing of the build bridge selection window during runtime
skidd13
parents: 8479
diff changeset
   168
{  WWT_SCROLLBAR, RESIZE_BOTTOM,  7, 188, 199,  14,  89, 0x0,                         STR_0190_SCROLL_BAR_SCROLLS_LIST}, // BBSW_SCROLLBAR
e7ce655f85ef (svn r11580) -Feature: Memorise the resizing of the build bridge selection window during runtime
skidd13
parents: 8479
diff changeset
   169
{  WWT_RESIZEBOX,     RESIZE_TB,  7, 188, 199,  90, 101, 0x0,                         STR_RESIZE_BUTTON},                // BBSW_RESIZEBOX
176
84990c4b9212 (svn r177) -Fix: padded out Widget code to solve warnings on C99 compiler (Tron)
darkvater
parents: 0
diff changeset
   170
{   WIDGETS_END},
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   171
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   172
8516
e7ce655f85ef (svn r11580) -Feature: Memorise the resizing of the build bridge selection window during runtime
skidd13
parents: 8479
diff changeset
   173
/* Window definition for the rail bridge selection window */
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   174
static const WindowDesc _build_bridge_desc = {
7837
65d7362153a6 (svn r10704) -Codechange: provide an infrastructure to have resizable windows that are smaller than the default window size.
rubidium
parents: 7762
diff changeset
   175
	WDP_AUTO, WDP_AUTO, 200, 102, 200, 102,
5070
0bbf5264bfb7 (svn r7128) -Codechange: Replace magic numbers by magic enums (windowdesc positioning WDP_AUTO = -1)
Darkvater
parents: 4634
diff changeset
   176
	WC_BUILD_BRIDGE, WC_BUILD_TOOLBAR,
8479
a1ab2afafb84 (svn r11539) -Feature: Make the bridge selection window resizable
skidd13
parents: 8320
diff changeset
   177
	WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_RESIZABLE,
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   178
	_build_bridge_widgets,
10605
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   179
	NULL
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   180
};
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   181
10605
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   182
/**
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   183
 * Add a buildable bridge to the list.
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   184
 *  If the list is empty a new one is created.
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   185
 *
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   186
 * @param bl The list which we want to manage
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   187
 * @param item The item to add
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   188
 * @return The pointer to the list
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   189
 */
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   190
static GUIBridgeList *PushBridgeList(GUIBridgeList *bl, BuildBridgeData item)
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   191
{
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   192
	if (bl == NULL) {
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   193
		/* Create the list if needed */
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   194
		bl = new GUIBridgeList();
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   195
		bl->flags |= VL_RESORT;
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   196
		bl->list_length = 1;
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   197
	} else {
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   198
		/* Resize the list */
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   199
		bl->list_length++;
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   200
	}
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   201
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   202
	bl->sort_list = ReallocT(bl->sort_list, bl->list_length);
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   203
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   204
	bl->sort_list[bl->list_length - 1] = item;
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   205
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   206
	return bl;
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   207
}
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   208
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   209
/**
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   210
 * Prepare the data for the build a bridge window.
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   211
 *  If we can't build a bridge under the given conditions
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   212
 *  show an error message.
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   213
 *
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   214
 * @parma start The start tile of the bridge
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   215
 * @param end The end tile of the bridge
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   216
 * @param transport_type The transport type
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   217
 * @param bridge_type The bridge type
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   218
 */
9053
13c47e8836eb (svn r12135) -Codechange: Road and rail bridge selection windows were identical apart the caption. So remove one window definition and set manually the caption accordingly.
belugas
parents: 9031
diff changeset
   219
void ShowBuildBridgeWindow(TileIndex start, TileIndex end, TransportType transport_type, byte bridge_type)
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   220
{
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   221
	DeleteWindowById(WC_BUILD_BRIDGE, 0);
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   222
10605
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   223
	/* Data type for the bridge.
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   224
	 * Bit 16,15 = transport type,
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   225
	 *     14..8 = road/rail pieces,
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   226
	 *      7..0 = type of bridge */
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   227
	uint32 type = (transport_type << 15) | (bridge_type << 8);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   228
8479
a1ab2afafb84 (svn r11539) -Feature: Make the bridge selection window resizable
skidd13
parents: 8320
diff changeset
   229
	/* only query bridge building possibility once, result is the same for all bridges!
a1ab2afafb84 (svn r11539) -Feature: Make the bridge selection window resizable
skidd13
parents: 8320
diff changeset
   230
	 * returns CMD_ERROR on failure, and price on success */
a1ab2afafb84 (svn r11539) -Feature: Make the bridge selection window resizable
skidd13
parents: 8320
diff changeset
   231
	StringID errmsg = INVALID_STRING_ID;
10605
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   232
	CommandCost ret = DoCommand(end, start, type, DC_AUTO | DC_QUERY_COST, CMD_BUILD_BRIDGE);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   233
10605
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   234
	GUIBridgeList *bl = NULL;
2737
f16e0a808897 (svn r3282) - Codechange: Replace tests against CMD_ERROR with CmdFailed()
peter1138
parents: 2639
diff changeset
   235
	if (CmdFailed(ret)) {
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   236
		errmsg = _error_message;
2548
97ada3bd2702 (svn r3077) static, const, bracing, indentation, 0 -> '\0'/NULL, typos in comments, excess empty lines, minor other changes
tron
parents: 2470
diff changeset
   237
	} else {
8479
a1ab2afafb84 (svn r11539) -Feature: Make the bridge selection window resizable
skidd13
parents: 8320
diff changeset
   238
		/* check which bridges can be built
a1ab2afafb84 (svn r11539) -Feature: Make the bridge selection window resizable
skidd13
parents: 8320
diff changeset
   239
		 * get absolute bridge length
a1ab2afafb84 (svn r11539) -Feature: Make the bridge selection window resizable
skidd13
parents: 8320
diff changeset
   240
		 * length of the middle parts of the bridge */
8894
1e5b2d4380b8 (svn r11968) -Codechange: remove redundant FindLengthOfTunnel(), use GetTunnelBridgeLength() and/or GetOtherTunnelEnd() instead
smatz
parents: 8760
diff changeset
   241
		const uint bridge_len = GetTunnelBridgeLength(start, end);
8479
a1ab2afafb84 (svn r11539) -Feature: Make the bridge selection window resizable
skidd13
parents: 8320
diff changeset
   242
		/* total length of bridge */
a1ab2afafb84 (svn r11539) -Feature: Make the bridge selection window resizable
skidd13
parents: 8320
diff changeset
   243
		const uint tot_bridgedata_len = CalcBridgeLenCostFactor(bridge_len + 2);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   244
8479
a1ab2afafb84 (svn r11539) -Feature: Make the bridge selection window resizable
skidd13
parents: 8320
diff changeset
   245
		/* loop for all bridgetypes */
9028
501b3b351df7 (svn r12107) -Codechange: Add and use the typedef BridgeType
belugas
parents: 8987
diff changeset
   246
		for (BridgeType brd_type = 0; brd_type != MAX_BRIDGES; brd_type++) {
501b3b351df7 (svn r12107) -Codechange: Add and use the typedef BridgeType
belugas
parents: 8987
diff changeset
   247
			if (CheckBridge_Stuff(brd_type, bridge_len)) {
8479
a1ab2afafb84 (svn r11539) -Feature: Make the bridge selection window resizable
skidd13
parents: 8320
diff changeset
   248
				/* bridge is accepted, add to list */
10605
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   249
				BuildBridgeData item;
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   250
				item.index = brd_type;
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   251
				item.spec = GetBridgeSpec(brd_type);
8479
a1ab2afafb84 (svn r11539) -Feature: Make the bridge selection window resizable
skidd13
parents: 8320
diff changeset
   252
				/* Add to terraforming & bulldozing costs the cost of the
a1ab2afafb84 (svn r11539) -Feature: Make the bridge selection window resizable
skidd13
parents: 8320
diff changeset
   253
				 * bridge itself (not computed with DC_QUERY_COST) */
10605
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   254
				item.cost = ret.GetCost() + (((int64)tot_bridgedata_len * _price.build_bridge * item.spec->price) >> 8);
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   255
				bl = PushBridgeList(bl, item);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   256
			}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   257
		}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   258
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   259
10605
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   260
	if (bl != NULL) {
87e6826b9901 (svn r13149) -Codechange: make a class of the BuildBridgeWindow.
skidd13
parents: 10595
diff changeset
   261
		new BuildBridgeWindow(&_build_bridge_desc, start, end, type, bl);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   262
	} else {
3422
12cdb13ddb56 (svn r4249) -Codechange: Replace more occurences of 16 by TILE_SIZE and of 8 by TILE_HEIGHT. Reverted one change from the previous commit because it was faulty
celestar
parents: 2952
diff changeset
   263
		ShowErrorMessage(errmsg, STR_5015_CAN_T_BUILD_BRIDGE_HERE, TileX(end) * TILE_SIZE, TileY(end) * TILE_SIZE);
0
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   264
	}
29654efe3188 (svn r1) Import of revision 975 of old (crashed) SVN
truelight
parents:
diff changeset
   265
}