OpenRCT2/src/openrct2/windows/water.c

244 lines
6.3 KiB
C
Raw Normal View History

#pragma region Copyright (c) 2014-2017 OpenRCT2 Developers
2014-04-14 04:09:51 +02:00
/*****************************************************************************
* OpenRCT2, an open source clone of Roller Coaster Tycoon 2.
*
* OpenRCT2 is the work of many authors, a full list can be found in contributors.md
* For more information, visit https://github.com/OpenRCT2/OpenRCT2
2014-04-14 04:09:51 +02:00
*
* OpenRCT2 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, either version 3 of the License, or
* (at your option) any later version.
*
* A full copy of the GNU General Public License can be found in licence.txt
2014-04-14 04:09:51 +02:00
*****************************************************************************/
#pragma endregion
2014-04-14 04:09:51 +02:00
#include "../Context.h"
#include "../input.h"
2014-10-06 18:36:58 +02:00
#include "../interface/widget.h"
#include "../interface/window.h"
#include "../localisation/localisation.h"
#include "../rct2.h"
#include "../sprites.h"
#include "../world/map.h"
2014-04-14 04:09:51 +02:00
2015-08-12 14:24:20 +02:00
#define MINIMUM_TOOL_SIZE 1
#define MAXIMUM_TOOL_SIZE 64
enum WINDOW_WATER_WIDGET_IDX {
2014-04-14 04:09:51 +02:00
WIDX_BACKGROUND,
WIDX_TITLE,
WIDX_CLOSE,
WIDX_PREVIEW,
WIDX_DECREMENT,
WIDX_INCREMENT
};
validate_global_widx(WC_WATER, WIDX_PREVIEW);
2014-04-14 04:09:51 +02:00
static rct_widget window_water_widgets[] = {
{ WWT_FRAME, 0, 0, 75, 0, 76, 0xFFFFFFFF, STR_NONE }, // panel / background
2014-04-14 04:09:51 +02:00
{ WWT_CAPTION, 0, 1, 74, 1, 14, STR_WATER, STR_WINDOW_TITLE_TIP }, // title bar
{ WWT_CLOSEBOX, 0, 63, 73, 2, 13, STR_CLOSE_X, STR_CLOSE_WINDOW_TIP }, // close x button
2014-04-14 04:09:51 +02:00
{ WWT_IMGBTN, 0, 16, 59, 17, 48, SPR_LAND_TOOL_SIZE_0, STR_NONE }, // preview box
{ WWT_TRNBTN, 2, 17, 32, 18, 33, 0x20000000 | SPR_LAND_TOOL_DECREASE, STR_ADJUST_SMALLER_WATER_TIP }, // decrement size
{ WWT_TRNBTN, 2, 43, 58, 32, 47, 0x20000000 | SPR_LAND_TOOL_INCREASE, STR_ADJUST_LARGER_WATER_TIP }, // increment size
{ WIDGETS_END },
};
static void window_water_close(rct_window *w);
2017-05-01 15:41:45 +02:00
static void window_water_mouseup(rct_window *w, rct_widgetindex widgetIndex);
static void window_water_update(rct_window *w);
static void window_water_invalidate(rct_window *w);
static void window_water_paint(rct_window *w, rct_drawpixelinfo *dpi);
2017-05-01 15:41:45 +02:00
static void window_water_textinput(rct_window *w, rct_widgetindex widgetIndex, char *text);
static void window_water_inputsize(rct_window *w);
2014-04-14 04:09:51 +02:00
static rct_window_event_list window_water_events = {
2014-04-14 04:09:51 +02:00
window_water_close,
window_water_mouseup,
NULL,
NULL,
NULL,
NULL,
2014-04-14 04:09:51 +02:00
window_water_update,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
window_water_textinput,
NULL,
NULL,
NULL,
NULL,
NULL,
2014-04-14 04:09:51 +02:00
window_water_invalidate,
window_water_paint,
NULL
2014-04-14 04:09:51 +02:00
};
/**
2015-10-20 20:16:30 +02:00
*
2014-04-14 04:09:51 +02:00
* rct2: 0x006E6A40
*/
void window_water_open()
{
rct_window* window;
// Check if window is already open
2014-10-16 03:02:43 +02:00
if (window_find_by_class(WC_WATER) != NULL)
2014-04-14 04:09:51 +02:00
return;
2015-06-13 23:16:14 +02:00
window = window_create(
context_get_width() - 76,
2015-06-13 23:16:14 +02:00
29,
76,
77,
&window_water_events,
2015-06-13 23:16:14 +02:00
WC_WATER,
0
);
2014-04-14 04:09:51 +02:00
window->widgets = window_water_widgets;
window->enabled_widgets = (1 << WIDX_CLOSE) | (1 << WIDX_DECREMENT) | (1 << WIDX_INCREMENT) | (1 << WIDX_PREVIEW);
2014-04-14 04:09:51 +02:00
window_init_scroll_widgets(window);
window_push_others_below(window);
2016-04-24 18:58:26 +02:00
gWaterToolRaiseCost = MONEY32_UNDEFINED;
gWaterToolLowerCost = MONEY32_UNDEFINED;
2014-04-14 04:09:51 +02:00
}
/**
*
* rct2: 0x006E6B65
*/
static void window_water_close(rct_window *w)
2014-04-14 04:09:51 +02:00
{
// If the tool wasn't changed, turn tool off
if (water_tool_is_active())
tool_cancel();
2014-04-14 04:09:51 +02:00
}
/**
*
* rct2: 0x006E6B4E
*/
2017-05-01 15:41:45 +02:00
static void window_water_mouseup(rct_window *w, rct_widgetindex widgetIndex)
2014-04-14 04:09:51 +02:00
{
switch (widgetIndex) {
case WIDX_CLOSE:
window_close(w);
break;
case WIDX_DECREMENT:
// Decrement land tool size
2016-04-24 19:02:37 +02:00
gLandToolSize = max(MINIMUM_TOOL_SIZE, gLandToolSize-1);
2014-04-14 04:09:51 +02:00
// Invalidate the window
window_invalidate(w);
break;
case WIDX_INCREMENT:
// Increment land tool size
2016-04-24 19:02:37 +02:00
gLandToolSize = min(MAXIMUM_TOOL_SIZE, gLandToolSize+1);
2014-04-14 04:09:51 +02:00
// Invalidate the window
window_invalidate(w);
break;
case WIDX_PREVIEW:
window_water_inputsize(w);
break;
}
}
2017-05-01 15:41:45 +02:00
static void window_water_textinput(rct_window *w, rct_widgetindex widgetIndex, char *text)
{
2017-01-04 22:17:08 +01:00
sint32 size;
char* end;
if (widgetIndex != WIDX_PREVIEW || text == NULL)
return;
size = strtol(text, &end, 10);
if (*end == '\0') {
size = max(MINIMUM_TOOL_SIZE,size);
size = min(MAXIMUM_TOOL_SIZE,size);
2016-04-24 19:02:37 +02:00
gLandToolSize = size;
window_invalidate(w);
2014-04-14 04:09:51 +02:00
}
}
static void window_water_inputsize(rct_window *w)
{
TextInputDescriptionArgs[0] = MINIMUM_TOOL_SIZE;
TextInputDescriptionArgs[1] = MAXIMUM_TOOL_SIZE;
2016-07-27 00:31:02 +02:00
window_text_input_open(w, WIDX_PREVIEW, STR_SELECTION_SIZE, STR_ENTER_SELECTION_SIZE, STR_NONE, STR_NONE, 3);
}
2014-04-18 20:00:27 +02:00
/**
*
* rct2: 0x006E6BCE
*/
static void window_water_update(rct_window *w)
2014-04-14 04:09:51 +02:00
{
// Close window if another tool is open
if (!water_tool_is_active())
2014-04-14 04:09:51 +02:00
window_close(w);
}
/**
*
* rct2: 0x006E6AB8
*/
static void window_water_invalidate(rct_window *w)
2014-04-14 04:09:51 +02:00
{
// Set the preview image button to be pressed down
w->pressed_widgets |= (1 << WIDX_PREVIEW);
// Update the preview image
2016-04-24 19:02:37 +02:00
//window_water_widgets[WIDX_PREVIEW].image = SPR_LAND_TOOL_SIZE_0 + gLandToolSize;
2016-04-24 19:02:37 +02:00
window_water_widgets[WIDX_PREVIEW].image = gLandToolSize <= 7 ?
SPR_LAND_TOOL_SIZE_0 + gLandToolSize :
0xFFFFFFFF;
2014-04-14 04:09:51 +02:00
}
/**
*
* rct2: 0x006E6ACF
*/
static void window_water_paint(rct_window *w, rct_drawpixelinfo *dpi)
2014-04-14 04:09:51 +02:00
{
2017-01-04 22:17:08 +01:00
sint32 x, y;
2014-04-14 04:09:51 +02:00
x = w->x + (window_water_widgets[WIDX_PREVIEW].left + window_water_widgets[WIDX_PREVIEW].right) / 2;
y = w->y + (window_water_widgets[WIDX_PREVIEW].top + window_water_widgets[WIDX_PREVIEW].bottom) / 2;
2014-04-14 04:09:51 +02:00
window_draw_widgets(w, dpi);
// Draw number for tool sizes bigger than 7
2016-04-24 19:02:37 +02:00
if (gLandToolSize > 7) {
2016-11-13 18:20:30 +01:00
gfx_draw_string_centred(dpi, STR_LAND_TOOL_SIZE_VALUE, x, y - 2, COLOUR_BLACK, &gLandToolSize);
}
2014-04-14 04:09:51 +02:00
// Draw raise cost amount
2014-04-18 20:00:27 +02:00
x = (window_water_widgets[WIDX_PREVIEW].left + window_water_widgets[WIDX_PREVIEW].right) / 2 + w->x;
y = window_water_widgets[WIDX_PREVIEW].bottom + w->y + 5;
2016-04-24 18:58:26 +02:00
if (gWaterToolRaiseCost != MONEY32_UNDEFINED && gWaterToolRaiseCost != 0)
2016-11-13 18:20:30 +01:00
gfx_draw_string_centred(dpi, STR_RAISE_COST_AMOUNT, x, y, COLOUR_BLACK, &gWaterToolRaiseCost);
2014-04-14 04:09:51 +02:00
y += 10;
// Draw lower cost amount
2016-04-24 18:58:26 +02:00
if (gWaterToolLowerCost != MONEY32_UNDEFINED && gWaterToolLowerCost != 0)
2016-11-13 18:20:30 +01:00
gfx_draw_string_centred(dpi, STR_LOWER_COST_AMOUNT, x, y, COLOUR_BLACK, &gWaterToolLowerCost);
2014-04-14 04:09:51 +02:00
}