OpenRCT2/src/openrct2-ui/interface/LandTool.h

32 lines
1.2 KiB
C
Raw Normal View History

2017-06-22 20:49:13 +02:00
/*****************************************************************************
2020-07-21 15:04:34 +02:00
* Copyright (c) 2014-2020 OpenRCT2 developers
2017-06-22 20:49:13 +02:00
*
* For a complete list of all authors, please refer to contributors.md
* Interested in contributing? Visit https://github.com/OpenRCT2/OpenRCT2
2017-06-22 20:49:13 +02:00
*
* OpenRCT2 is licensed under the GNU General Public License version 3.
2017-06-22 20:49:13 +02:00
*****************************************************************************/
#pragma once
2018-06-22 23:20:47 +02:00
#include <openrct2-ui/interface/Window.h>
2017-12-07 02:47:26 +01:00
#include <openrct2/common.h>
#include <openrct2/sprites.h>
2017-06-22 20:49:13 +02:00
2018-06-22 23:20:47 +02:00
#define MINIMUM_TOOL_SIZE 1
#define MAXIMUM_TOOL_SIZE 64
2017-06-22 20:49:13 +02:00
// The highest tool size to have a sprite. Bigger tool sizes simply display a number.
#define MAX_TOOL_SIZE_WITH_SPRITE 7
extern uint16_t gLandToolSize;
2017-06-22 20:49:13 +02:00
extern money32 gLandToolRaiseCost;
extern money32 gLandToolLowerCost;
extern uint8_t gLandToolTerrainSurface;
extern uint8_t gLandToolTerrainEdge;
2017-06-22 20:49:13 +02:00
extern money32 gWaterToolRaiseCost;
extern money32 gWaterToolLowerCost;
uint32_t land_tool_size_to_sprite_index(uint16_t size);
2018-06-22 23:20:47 +02:00
void land_tool_show_surface_style_dropdown(rct_window* w, rct_widget* widget, uint8_t currentSurfaceType);
void land_tool_show_edge_style_dropdown(rct_window* w, rct_widget* widget, uint8_t currentEdgeType);