2008-05-08 13:29:35 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
2009-08-21 20:21:05 +00:00
|
|
|
/*
|
|
|
|
* This file is part of OpenTTD.
|
|
|
|
* OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
|
|
|
|
* OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
* See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2008-05-08 13:29:35 +00:00
|
|
|
/** @file tree_gui.cpp GUIs for building trees. */
|
|
|
|
|
|
|
|
#include "stdafx.h"
|
|
|
|
#include "window_gui.h"
|
|
|
|
#include "gfx_func.h"
|
|
|
|
#include "tilehighlight_func.h"
|
2008-09-30 20:51:04 +00:00
|
|
|
#include "company_func.h"
|
|
|
|
#include "company_base.h"
|
2008-05-08 13:29:35 +00:00
|
|
|
#include "command_func.h"
|
|
|
|
#include "sound_func.h"
|
2010-04-14 19:57:19 +00:00
|
|
|
#include "tree_map.h"
|
2008-05-08 13:29:35 +00:00
|
|
|
|
|
|
|
#include "table/sprites.h"
|
|
|
|
#include "table/strings.h"
|
|
|
|
#include "table/tree_land.h"
|
|
|
|
|
2008-05-12 21:46:08 +00:00
|
|
|
void PlaceTreesRandomly();
|
|
|
|
|
2009-03-25 22:07:25 +00:00
|
|
|
/** Widget definitions for the build trees window. */
|
|
|
|
enum BuildTreesWidgets {
|
|
|
|
BTW_TYPE_11,
|
|
|
|
BTW_TYPE_12,
|
|
|
|
BTW_TYPE_13,
|
|
|
|
BTW_TYPE_14,
|
|
|
|
BTW_TYPE_21,
|
|
|
|
BTW_TYPE_22,
|
|
|
|
BTW_TYPE_23,
|
|
|
|
BTW_TYPE_24,
|
|
|
|
BTW_TYPE_31,
|
|
|
|
BTW_TYPE_32,
|
|
|
|
BTW_TYPE_33,
|
|
|
|
BTW_TYPE_34,
|
|
|
|
BTW_TYPE_RANDOM,
|
|
|
|
BTW_MANY_RANDOM,
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The build trees window.
|
|
|
|
*/
|
2008-05-12 21:46:08 +00:00
|
|
|
class BuildTreesWindow : public Window
|
|
|
|
{
|
2009-09-20 21:09:27 +00:00
|
|
|
uint16 base; ///< Base tree number used for drawing the window.
|
|
|
|
uint16 count; ///< Number of different trees available.
|
2010-04-14 19:57:19 +00:00
|
|
|
TreeType tree_to_plant; ///< Tree number to plant, \c TREE_INVALID for a random tree.
|
2008-05-12 21:46:08 +00:00
|
|
|
|
|
|
|
public:
|
2009-09-20 21:09:27 +00:00
|
|
|
BuildTreesWindow(const WindowDesc *desc, WindowNumber window_number) : Window()
|
2008-05-12 21:46:08 +00:00
|
|
|
{
|
2009-09-20 21:09:27 +00:00
|
|
|
this->InitNested(desc, window_number);
|
|
|
|
ResetObjectToPlace();
|
|
|
|
}
|
|
|
|
|
2009-11-22 18:28:14 +00:00
|
|
|
virtual void UpdateWidgetSize(int widget, Dimension *size, const Dimension &padding, Dimension *fill, Dimension *resize)
|
2009-09-20 21:09:27 +00:00
|
|
|
{
|
|
|
|
if (widget != BTW_MANY_RANDOM) return;
|
|
|
|
|
2008-05-12 21:46:08 +00:00
|
|
|
if (_game_mode != GM_EDITOR) {
|
2009-09-20 21:09:27 +00:00
|
|
|
size->width = 0;
|
|
|
|
size->height = 0;
|
2008-05-12 21:46:08 +00:00
|
|
|
}
|
|
|
|
}
|
2008-05-08 13:29:35 +00:00
|
|
|
|
2008-05-12 21:46:08 +00:00
|
|
|
virtual void OnPaint()
|
2009-09-20 21:09:27 +00:00
|
|
|
{
|
|
|
|
this->OnInvalidateData(0);
|
|
|
|
this->DrawWidgets();
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void DrawWidget(const Rect &r, int widget) const
|
2008-05-12 21:46:08 +00:00
|
|
|
{
|
|
|
|
static const PalSpriteID tree_sprites[] = {
|
|
|
|
{ 0x655, PAL_NONE }, { 0x663, PAL_NONE }, { 0x678, PAL_NONE }, { 0x62B, PAL_NONE },
|
|
|
|
{ 0x647, PAL_NONE }, { 0x639, PAL_NONE }, { 0x64E, PAL_NONE }, { 0x632, PAL_NONE },
|
|
|
|
{ 0x67F, PAL_NONE }, { 0x68D, PAL_NONE }, { 0x69B, PAL_NONE }, { 0x6A9, PAL_NONE },
|
|
|
|
{ 0x6AF, PAL_NONE }, { 0x6D2, PAL_NONE }, { 0x6D9, PAL_NONE }, { 0x6C4, PAL_NONE },
|
|
|
|
{ 0x6CB, PAL_NONE }, { 0x6B6, PAL_NONE }, { 0x6BD, PAL_NONE }, { 0x6E0, PAL_NONE },
|
|
|
|
{ 0x72E, PAL_NONE }, { 0x734, PAL_NONE }, { 0x74A, PAL_NONE }, { 0x74F, PAL_NONE },
|
|
|
|
{ 0x76B, PAL_NONE }, { 0x78F, PAL_NONE }, { 0x788, PAL_NONE }, { 0x77B, PAL_NONE },
|
|
|
|
{ 0x75F, PAL_NONE }, { 0x774, PAL_NONE }, { 0x720, PAL_NONE }, { 0x797, PAL_NONE },
|
|
|
|
{ 0x79E, PAL_NONE }, { 0x7A5, PALETTE_TO_GREEN }, { 0x7AC, PALETTE_TO_RED }, { 0x7B3, PAL_NONE },
|
|
|
|
{ 0x7BA, PAL_NONE }, { 0x7C1, PALETTE_TO_RED, }, { 0x7C8, PALETTE_TO_PALE_GREEN }, { 0x7CF, PALETTE_TO_YELLOW }, { 0x7D6, PALETTE_TO_RED }
|
|
|
|
};
|
|
|
|
|
2009-09-20 21:09:27 +00:00
|
|
|
if (widget < BTW_TYPE_11 || widget > BTW_TYPE_34 || widget - BTW_TYPE_11 >= this->count) return;
|
2008-05-12 21:46:08 +00:00
|
|
|
|
2009-09-20 21:09:27 +00:00
|
|
|
int i = this->base + widget - BTW_TYPE_11;
|
|
|
|
DrawSprite(tree_sprites[i].sprite, tree_sprites[i].pal, (r.left + r.right) / 2, r.bottom - 7);
|
2008-05-12 21:46:08 +00:00
|
|
|
}
|
2008-05-08 13:29:35 +00:00
|
|
|
|
2010-01-30 18:34:48 +00:00
|
|
|
virtual void OnClick(Point pt, int widget, int click_count)
|
2008-05-12 21:46:08 +00:00
|
|
|
{
|
|
|
|
switch (widget) {
|
|
|
|
case BTW_TYPE_11: case BTW_TYPE_12: case BTW_TYPE_13: case BTW_TYPE_14:
|
|
|
|
case BTW_TYPE_21: case BTW_TYPE_22: case BTW_TYPE_23: case BTW_TYPE_24:
|
|
|
|
case BTW_TYPE_31: case BTW_TYPE_32: case BTW_TYPE_33: case BTW_TYPE_34:
|
|
|
|
if (widget - BTW_TYPE_11 >= this->count) break;
|
2008-05-08 13:29:35 +00:00
|
|
|
|
2010-12-24 15:08:19 +00:00
|
|
|
if (HandlePlacePushButton(this, widget, SPR_CURSOR_TREE, HT_RECT)) {
|
2010-04-14 19:57:19 +00:00
|
|
|
this->tree_to_plant = (TreeType)(this->base + widget - BTW_TYPE_11);
|
2008-05-12 21:46:08 +00:00
|
|
|
}
|
|
|
|
break;
|
2008-05-08 13:29:35 +00:00
|
|
|
|
2008-05-12 21:46:08 +00:00
|
|
|
case BTW_TYPE_RANDOM: // tree of random type.
|
2010-12-24 15:08:19 +00:00
|
|
|
if (HandlePlacePushButton(this, BTW_TYPE_RANDOM, SPR_CURSOR_TREE, HT_RECT)) {
|
2010-04-14 19:57:19 +00:00
|
|
|
this->tree_to_plant = TREE_INVALID;
|
2008-05-12 21:46:08 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BTW_MANY_RANDOM: // place trees randomly over the landscape
|
|
|
|
this->LowerWidget(BTW_MANY_RANDOM);
|
2008-09-23 15:24:15 +00:00
|
|
|
this->flags4 |= WF_TIMEOUT_BEGIN;
|
2008-05-12 21:46:08 +00:00
|
|
|
SndPlayFx(SND_15_BEEP);
|
|
|
|
PlaceTreesRandomly();
|
|
|
|
MarkWholeScreenDirty();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2008-05-08 13:29:35 +00:00
|
|
|
|
2008-05-12 21:46:08 +00:00
|
|
|
virtual void OnPlaceObject(Point pt, TileIndex tile)
|
|
|
|
{
|
|
|
|
VpStartPlaceSizing(tile, VPM_X_AND_Y_LIMITED, DDSP_PLANT_TREES);
|
|
|
|
VpSetPlaceSizingLimit(20);
|
|
|
|
}
|
2008-05-08 13:29:35 +00:00
|
|
|
|
2008-05-18 14:04:51 +00:00
|
|
|
virtual void OnPlaceDrag(ViewportPlaceMethod select_method, ViewportDragDropSelectionProcess select_proc, Point pt)
|
2008-05-12 21:46:08 +00:00
|
|
|
{
|
|
|
|
VpSelectTilesWithMethod(pt.x, pt.y, select_method);
|
|
|
|
}
|
2008-05-08 13:29:35 +00:00
|
|
|
|
2008-05-18 14:04:51 +00:00
|
|
|
virtual void OnPlaceMouseUp(ViewportPlaceMethod select_method, ViewportDragDropSelectionProcess select_proc, Point pt, TileIndex start_tile, TileIndex end_tile)
|
2008-05-12 21:46:08 +00:00
|
|
|
{
|
|
|
|
if (pt.x != -1 && select_proc == DDSP_PLANT_TREES) {
|
2008-12-28 14:37:19 +00:00
|
|
|
DoCommandP(end_tile, this->tree_to_plant, start_tile,
|
2009-04-21 23:40:56 +00:00
|
|
|
CMD_PLANT_TREE | CMD_MSG(STR_ERROR_CAN_T_PLANT_TREE_HERE));
|
2008-05-12 21:46:08 +00:00
|
|
|
}
|
2008-05-08 13:29:35 +00:00
|
|
|
}
|
|
|
|
|
2011-03-13 21:31:29 +00:00
|
|
|
/**
|
|
|
|
* Some data on this window has become invalid.
|
|
|
|
* @param data Information about the changed data.
|
|
|
|
* @param gui_scope Whether the call is done from GUI scope. You may not do everything when not in GUI scope. See #InvalidateWindowData() for details.
|
|
|
|
*/
|
|
|
|
virtual void OnInvalidateData(int data = 0, bool gui_scope = true)
|
2009-09-20 21:09:27 +00:00
|
|
|
{
|
2011-03-13 21:31:29 +00:00
|
|
|
if (!gui_scope) return;
|
2009-09-20 21:09:27 +00:00
|
|
|
this->base = _tree_base_by_landscape[_settings_game.game_creation.landscape];
|
|
|
|
this->count = _tree_count_by_landscape[_settings_game.game_creation.landscape];
|
|
|
|
}
|
|
|
|
|
2008-05-12 21:46:08 +00:00
|
|
|
virtual void OnTimeout()
|
|
|
|
{
|
|
|
|
this->RaiseWidget(BTW_MANY_RANDOM);
|
2009-09-13 19:15:59 +00:00
|
|
|
this->SetWidgetDirty(BTW_MANY_RANDOM);
|
2008-05-12 21:46:08 +00:00
|
|
|
}
|
2008-05-08 13:29:35 +00:00
|
|
|
|
2008-05-12 21:46:08 +00:00
|
|
|
virtual void OnPlaceObjectAbort()
|
|
|
|
{
|
|
|
|
this->RaiseButtons();
|
|
|
|
}
|
2008-05-08 13:29:35 +00:00
|
|
|
};
|
|
|
|
|
2009-03-25 22:07:25 +00:00
|
|
|
static const NWidgetPart _nested_build_trees_widgets[] = {
|
|
|
|
NWidget(NWID_HORIZONTAL),
|
2009-11-24 18:05:55 +00:00
|
|
|
NWidget(WWT_CLOSEBOX, COLOUR_DARK_GREEN),
|
|
|
|
NWidget(WWT_CAPTION, COLOUR_DARK_GREEN), SetDataTip(STR_PLANT_TREE_CAPTION, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS),
|
2009-12-21 16:24:29 +00:00
|
|
|
NWidget(WWT_SHADEBOX, COLOUR_DARK_GREEN),
|
2009-12-09 17:10:57 +00:00
|
|
|
NWidget(WWT_STICKYBOX, COLOUR_DARK_GREEN),
|
2009-03-25 22:07:25 +00:00
|
|
|
EndContainer(),
|
2009-11-24 21:13:36 +00:00
|
|
|
NWidget(WWT_PANEL, COLOUR_DARK_GREEN),
|
2009-03-25 22:07:25 +00:00
|
|
|
NWidget(NWID_SPACER), SetMinimalSize(0, 2),
|
|
|
|
NWidget(NWID_HORIZONTAL),
|
|
|
|
NWidget(NWID_SPACER), SetMinimalSize(2, 0),
|
|
|
|
NWidget(NWID_VERTICAL),
|
|
|
|
NWidget(NWID_HORIZONTAL),
|
2009-04-21 23:40:56 +00:00
|
|
|
NWidget(WWT_PANEL, COLOUR_GREY, BTW_TYPE_11), SetMinimalSize(34, 46), SetDataTip(0x0, STR_PLANT_TREE_TOOLTIP),
|
2009-03-25 22:07:25 +00:00
|
|
|
EndContainer(),
|
|
|
|
NWidget(NWID_SPACER), SetMinimalSize(1, 0),
|
2009-04-21 23:40:56 +00:00
|
|
|
NWidget(WWT_PANEL, COLOUR_GREY, BTW_TYPE_12), SetMinimalSize(34, 46), SetDataTip(0x0, STR_PLANT_TREE_TOOLTIP),
|
2009-03-25 22:07:25 +00:00
|
|
|
EndContainer(),
|
|
|
|
NWidget(NWID_SPACER), SetMinimalSize(1, 0),
|
2009-04-21 23:40:56 +00:00
|
|
|
NWidget(WWT_PANEL, COLOUR_GREY, BTW_TYPE_13), SetMinimalSize(34, 46), SetDataTip(0x0, STR_PLANT_TREE_TOOLTIP),
|
2009-03-25 22:07:25 +00:00
|
|
|
EndContainer(),
|
|
|
|
NWidget(NWID_SPACER), SetMinimalSize(1, 0),
|
2009-04-21 23:40:56 +00:00
|
|
|
NWidget(WWT_PANEL, COLOUR_GREY, BTW_TYPE_14), SetMinimalSize(34, 46), SetDataTip(0x0, STR_PLANT_TREE_TOOLTIP),
|
2009-03-25 22:07:25 +00:00
|
|
|
EndContainer(),
|
|
|
|
EndContainer(),
|
|
|
|
NWidget(NWID_SPACER), SetMinimalSize(0, 1),
|
|
|
|
NWidget(NWID_HORIZONTAL),
|
2009-04-21 23:40:56 +00:00
|
|
|
NWidget(WWT_PANEL, COLOUR_GREY, BTW_TYPE_21), SetMinimalSize(34, 46), SetDataTip(0x0, STR_PLANT_TREE_TOOLTIP),
|
2009-03-25 22:07:25 +00:00
|
|
|
EndContainer(),
|
|
|
|
NWidget(NWID_SPACER), SetMinimalSize(1, 0),
|
2009-04-21 23:40:56 +00:00
|
|
|
NWidget(WWT_PANEL, COLOUR_GREY, BTW_TYPE_22), SetMinimalSize(34, 46), SetDataTip(0x0, STR_PLANT_TREE_TOOLTIP),
|
2009-03-25 22:07:25 +00:00
|
|
|
EndContainer(),
|
|
|
|
NWidget(NWID_SPACER), SetMinimalSize(1, 0),
|
2009-04-21 23:40:56 +00:00
|
|
|
NWidget(WWT_PANEL, COLOUR_GREY, BTW_TYPE_23), SetMinimalSize(34, 46), SetDataTip(0x0, STR_PLANT_TREE_TOOLTIP),
|
2009-03-25 22:07:25 +00:00
|
|
|
EndContainer(),
|
|
|
|
NWidget(NWID_SPACER), SetMinimalSize(1, 0),
|
2009-04-21 23:40:56 +00:00
|
|
|
NWidget(WWT_PANEL, COLOUR_GREY, BTW_TYPE_24), SetMinimalSize(34, 46), SetDataTip(0x0, STR_PLANT_TREE_TOOLTIP),
|
2009-03-25 22:07:25 +00:00
|
|
|
EndContainer(),
|
|
|
|
EndContainer(),
|
|
|
|
NWidget(NWID_SPACER), SetMinimalSize(0, 1),
|
|
|
|
NWidget(NWID_HORIZONTAL),
|
2009-04-21 23:40:56 +00:00
|
|
|
NWidget(WWT_PANEL, COLOUR_GREY, BTW_TYPE_31), SetMinimalSize(34, 46), SetDataTip(0x0, STR_PLANT_TREE_TOOLTIP),
|
2009-03-25 22:07:25 +00:00
|
|
|
EndContainer(),
|
|
|
|
NWidget(NWID_SPACER), SetMinimalSize(1, 0),
|
2009-04-21 23:40:56 +00:00
|
|
|
NWidget(WWT_PANEL, COLOUR_GREY, BTW_TYPE_32), SetMinimalSize(34, 46), SetDataTip(0x0, STR_PLANT_TREE_TOOLTIP),
|
2009-03-25 22:07:25 +00:00
|
|
|
EndContainer(),
|
|
|
|
NWidget(NWID_SPACER), SetMinimalSize(1, 0),
|
2009-04-21 23:40:56 +00:00
|
|
|
NWidget(WWT_PANEL, COLOUR_GREY, BTW_TYPE_33), SetMinimalSize(34, 46), SetDataTip(0x0, STR_PLANT_TREE_TOOLTIP),
|
2009-03-25 22:07:25 +00:00
|
|
|
EndContainer(),
|
|
|
|
NWidget(NWID_SPACER), SetMinimalSize(1, 0),
|
2009-04-21 23:40:56 +00:00
|
|
|
NWidget(WWT_PANEL, COLOUR_GREY, BTW_TYPE_34), SetMinimalSize(34, 46), SetDataTip(0x0, STR_PLANT_TREE_TOOLTIP),
|
2009-03-25 22:07:25 +00:00
|
|
|
EndContainer(),
|
|
|
|
EndContainer(),
|
|
|
|
NWidget(NWID_SPACER), SetMinimalSize(0, 1),
|
2009-08-05 17:59:21 +00:00
|
|
|
NWidget(WWT_TEXTBTN, COLOUR_GREY, BTW_TYPE_RANDOM), SetMinimalSize(139, 12), SetDataTip(STR_TREES_RANDOM_TYPE, STR_TREES_RANDOM_TYPE_TOOLTIP),
|
2009-03-25 22:07:25 +00:00
|
|
|
NWidget(NWID_SPACER), SetMinimalSize(0, 1),
|
2009-04-21 23:40:56 +00:00
|
|
|
NWidget(WWT_TEXTBTN, COLOUR_GREY, BTW_MANY_RANDOM), SetMinimalSize(139, 12), SetDataTip(STR_TREES_RANDOM_TREES_BUTTON, STR_TREES_RANDOM_TREES_TOOLTIP),
|
2009-03-25 22:07:25 +00:00
|
|
|
NWidget(NWID_SPACER), SetMinimalSize(0, 2),
|
|
|
|
EndContainer(),
|
|
|
|
NWidget(NWID_SPACER), SetMinimalSize(2, 0),
|
|
|
|
EndContainer(),
|
|
|
|
EndContainer(),
|
|
|
|
};
|
|
|
|
|
2009-03-15 15:12:06 +00:00
|
|
|
static const WindowDesc _build_trees_desc(
|
2009-11-28 15:01:49 +00:00
|
|
|
WDP_AUTO, 0, 0,
|
2008-05-08 13:29:35 +00:00
|
|
|
WC_BUILD_TREES, WC_NONE,
|
2009-11-24 17:28:29 +00:00
|
|
|
WDF_CONSTRUCTION,
|
2009-11-15 10:26:01 +00:00
|
|
|
_nested_build_trees_widgets, lengthof(_nested_build_trees_widgets)
|
2009-03-15 15:12:06 +00:00
|
|
|
);
|
2008-05-08 13:29:35 +00:00
|
|
|
|
|
|
|
void ShowBuildTreesToolbar()
|
|
|
|
{
|
2009-05-17 01:00:56 +00:00
|
|
|
if (_game_mode != GM_EDITOR && !Company::IsValidID(_local_company)) return;
|
2008-05-12 21:46:08 +00:00
|
|
|
AllocateWindowDescFront<BuildTreesWindow>(&_build_trees_desc, 0);
|
2008-05-08 13:29:35 +00:00
|
|
|
}
|