1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-27 00:34:46 +01:00

Create custom currency configuration window

This commit is contained in:
Daniel Trujillo
2016-06-24 17:57:41 +02:00
parent 5302ebd951
commit 71a32a8750
5 changed files with 277 additions and 0 deletions

View File

@@ -4191,6 +4191,14 @@ STR_5879 :OpenGL
STR_5880 :Selected only
STR_5881 :Non-selected only
STR_5882 :Custom currency
STR_5883 :Custom currency configuration
STR_5884 :{WINDOW_COLOUR_2}Exchange rate:
STR_5885 :{WINDOW_COLOUR_2}is equivalent to {COMMA2DP32} GBP
STR_5886 :{WINDOW_COLOUR_2}Currency symbol:
STR_5887 :Prefix
STR_5888 :Suffix
STR_5889 :Custom currency symbol
STR_5890 :Enter the currency symbol to display
#############
# Scenarios #

View File

@@ -4148,7 +4148,16 @@ STR_5876 :{SMALLFONT}{BLACK}El software a utilizar para dibujar el juego.
STR_5877 :Software
STR_5878 :Software (vía hardware)
STR_5879 :OpenGL
STR_5880 :Moneda personalizada
STR_5881 :Configuración de la moneda personalizada
STR_5882 :{WINDOW_COLOUR_2}Tasa de cambio:
STR_5883 :{WINDOW_COLOUR_2}es equivalente a {COMMA2DP32} libras
STR_5884 :{WINDOW_COLOUR_2}Símbolo monetario:
STR_5885 :Prefijo
STR_5886 :Sufijo
STR_5887 :Símbolo de moneda personalizada
STR_5888 :Introduzca el símbolo de la moneda a mostrar
##############
# Escenarios #

View File

@@ -453,6 +453,7 @@ enum {
WC_NETWORK_STATUS = 126,
WC_SERVER_LIST = 127,
WC_SERVER_START = 128,
WC_CUSTOM_CURRENCY_CONFIG = 129,
// Only used for colour schemes
WC_STAFF = 220,
@@ -629,6 +630,8 @@ void ride_construction_toolupdate_entrance_exit(int screenX, int screenY);
void ride_construction_toolupdate_construct(int screenX, int screenY);
void ride_construction_tooldown_construct(int screenX, int screenY);
void window_custom_currency_open();
void window_maze_construction_update_pressed_widgets();
void window_track_place_open(const track_design_file_ref *tdFileRef);
rct_window *window_new_ride_open();

View File

@@ -2660,6 +2660,14 @@ enum {
STR_NON_SELECTED_ONLY = 5881,
STR_CUSTOM_CURRENCY = 5882,
STR_CUSTOM_CURRENCY_WINDOW_TITLE = 5883,
STR_RATE = 5884,
STR_CUSTOM_CURRENCY_EQUIVALENCY = 5885,
STR_CURRENCY_SYMBOL_TEXT = 5886,
STR_PREFIX = 5887,
STR_SUFFIX = 5888,
STR_CUSTOM_CURRENCY_SYMBOL_INPUT_TITLE = 5889,
STR_CUSTOM_CURRENCY_SYMBOL_INPUT_DESC = 5890,
// Have to include resource strings (from scenarios and objects) for the time being now that language is partially working
STR_COUNT = 32768

View File

@@ -0,0 +1,249 @@
#pragma region Copyright (c) 2014-2016 OpenRCT2 Developers
/*****************************************************************************
* 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
*
* 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
*****************************************************************************/
#pragma endregion
#include "../localisation/localisation.h"
#include "../interface/widget.h"
#include "dropdown.h"
enum WINDOW_CUSTOM_CURRENCY_WIDGET_IDX {
WIDX_BACKGROUND,
WIDX_TITLE,
WIDX_CLOSE,
WIDX_RATE,
WIDX_RATE_UP,
WIDX_RATE_DOWN,
WIDX_SYMBOL_TEXT,
WIDX_AFFIX_DROPDOWN,
WIDX_AFFIX_DROPDOWN_BUTTON,
};
rct_widget window_custom_currency_widgets[] = {
// TYPE COLOUR LEFT RIGHT TOP BOTTOM IMAGE TOOLTIP
{ WWT_FRAME, 0, 0, 399, 0, 99, 0x0FFFFFFFF, STR_NONE }, // panel / background
{ WWT_CAPTION, 0, 1, 398, 1, 14, STR_CUSTOM_CURRENCY_WINDOW_TITLE, STR_WINDOW_TITLE_TIP }, // title bar
{ WWT_CLOSEBOX, 0, 387, 397, 2, 13, STR_CLOSE_X, STR_CLOSE_WINDOW_TIP }, // close x button
{ WWT_SPINNER, 1, 100, 200, 30, 40, 5462, STR_NONE },
{ WWT_DROPDOWN_BUTTON, 1, 189, 199, 31, 35, STR_NUMERIC_UP, STR_NONE },
{ WWT_DROPDOWN_BUTTON, 1, 189, 199, 36, 40, STR_NUMERIC_DOWN, STR_NONE },
{ WWT_DROPDOWN_BUTTON, 1, 120, 200, 50, 60, 0, STR_NONE },
{ WWT_DROPDOWN, 1, 220, 350, 50, 60, 865, STR_NONE },
{ WWT_DROPDOWN_BUTTON, 1, 339, 349, 51, 59, STR_DROPDOWN_GLYPH, STR_NONE },
{ WIDGETS_END },
};
static void window_custom_currency_mousedown(int widgetIndex, rct_window*w, rct_widget* widget);
static void window_custom_currency_dropdown(rct_window *w, int widgetIndex, int dropdownIndex);
static void window_custom_currency_text_input(struct rct_window *w, int windgetIndex, char *text);
static void window_custom_currency_paint(rct_window *w, rct_drawpixelinfo *dpi);
static void invalidate_money_widgets();
static rct_window_event_list window_custom_currency_events = {
NULL,
NULL,
NULL,
window_custom_currency_mousedown,
window_custom_currency_dropdown,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
window_custom_currency_text_input,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
window_custom_currency_paint,
NULL
};
/**
*
* rct2: 0x0066D2AC
*/
void window_custom_currency_open()
{
rct_window* window;
// Check if window is already open
window = window_bring_to_front_by_class(WC_CUSTOM_CURRENCY_CONFIG);
if (window != NULL)
return;
window = window_create_centred(
400,
100,
&window_custom_currency_events,
WC_CUSTOM_CURRENCY_CONFIG,
0
);
window->widgets = window_custom_currency_widgets;
window->enabled_widgets = (1 << WIDX_CLOSE) |
(1 << WIDX_RATE) |
(1 << WIDX_RATE_UP) |
(1 << WIDX_RATE_DOWN) |
(1 << WIDX_SYMBOL_TEXT) |
(1 << WIDX_AFFIX_DROPDOWN) |
(1 << WIDX_AFFIX_DROPDOWN_BUTTON);
window_init_scroll_widgets(window);
window->colours[0] = 22;
window->colours[1] = 22;
window->colours[2] = 22;
}
/**
*
* rct2: 0x006BB01B
*/
static void window_custom_currency_mousedown(int widgetIndex, rct_window*w, rct_widget* widget) {
widget = &w->widgets[widgetIndex - 1];
switch (widgetIndex) {
case WIDX_CLOSE:
window_close(w);
break;
case WIDX_RATE_UP:
CurrencyDescriptors[CURRENCY_CUSTOM].rate += 1;
invalidate_money_widgets();
break;
case WIDX_RATE_DOWN:
if(CurrencyDescriptors[CURRENCY_CUSTOM].rate > 1) {
CurrencyDescriptors[CURRENCY_CUSTOM].rate -= 1;
}
invalidate_money_widgets();
break;
case WIDX_AFFIX_DROPDOWN_BUTTON:
gDropdownItemsFormat[0] = STR_DROPDOWN_MENU_LABEL;
gDropdownItemsArgs[0] = STR_PREFIX;
gDropdownItemsFormat[1] = STR_DROPDOWN_MENU_LABEL;
gDropdownItemsArgs[1] = STR_SUFFIX;
window_dropdown_show_text_custom_width(
w->x + widget->left,
w->y + widget->top,
widget->bottom - widget->top + 1,
w->colours[1],
DROPDOWN_FLAG_STAY_OPEN,
2,
widget->right - widget->left - 3
);
if(CurrencyDescriptors[CURRENCY_CUSTOM].affix_ascii == CURRENCY_PREFIX) {
dropdown_set_checked(0, true);
} else {
dropdown_set_checked(1, true);
}
break;
case WIDX_SYMBOL_TEXT:
window_text_input_raw_open( w,
WIDX_SYMBOL_TEXT,
STR_CUSTOM_CURRENCY_SYMBOL_INPUT_TITLE,
STR_CUSTOM_CURRENCY_SYMBOL_INPUT_DESC,
CurrencyDescriptors[CURRENCY_CUSTOM].symbol_unicode,
CURRENCY_SYMBOL_MAX_SIZE);
break;
}
}
/**
*
* rct2: 0x006BB076
*/
static void window_custom_currency_dropdown(rct_window *w, int widgetIndex, int dropdownIndex) {
if (dropdownIndex == -1)
return;
if(widgetIndex == WIDX_AFFIX_DROPDOWN_BUTTON) {
if(dropdownIndex == 0) {
CurrencyDescriptors[CURRENCY_CUSTOM].affix_ascii = CurrencyDescriptors[CURRENCY_CUSTOM].affix_unicode = CURRENCY_PREFIX;
} else if(dropdownIndex == 1) {
CurrencyDescriptors[CURRENCY_CUSTOM].affix_ascii = CurrencyDescriptors[CURRENCY_CUSTOM].affix_unicode = CURRENCY_SUFFIX;
}
invalidate_money_widgets();
}
}
static void window_custom_currency_text_input(struct rct_window *w, int windgetIndex, char *text) {
if(text != NULL) {
strncpy(CurrencyDescriptors[CURRENCY_CUSTOM].symbol_unicode, text, CURRENCY_SYMBOL_MAX_SIZE);
invalidate_money_widgets();
}
}
static void invalidate_money_widgets() {
widget_invalidate_by_class(WC_BOTTOM_TOOLBAR, 2 /*WIDX_MONEY (not accesible)*/);
widget_invalidate_by_class(WC_CUSTOM_CURRENCY_CONFIG, WIDX_RATE);
}
/**
*
* rct2: 0x0066D321
*/
static void window_custom_currency_paint(rct_window *w, rct_drawpixelinfo *dpi) {
int x, y;
set_format_arg(0, sint32, 100);
window_draw_widgets(w, dpi);
x = w->x + 10;
y = w->y + 30;
gfx_draw_string_left(dpi, STR_RATE, NULL, w->colours[1], x, y);
sint32 baseExchange = 100/CurrencyDescriptors[CURRENCY_POUNDS].rate;
set_format_arg(0, sint32, baseExchange);
gfx_draw_string_left(dpi, STR_CUSTOM_CURRENCY_EQUIVALENCY, gCommonFormatArgs, w->colours[1], x+200, y);
y += 20;
gfx_draw_string_left(dpi, STR_CURRENCY_SYMBOL_TEXT, NULL, w->colours[1], x, y);
gfx_draw_string(dpi, CurrencyDescriptors[CURRENCY_CUSTOM].symbol_unicode, w->colours[1], w->x + window_custom_currency_widgets[WIDX_SYMBOL_TEXT].left + 1, w->y + window_custom_currency_widgets[WIDX_SYMBOL_TEXT].top);
if(CurrencyDescriptors[CURRENCY_CUSTOM].affix_unicode == CURRENCY_PREFIX){
gfx_draw_string_left(dpi, STR_PREFIX, w, w->colours[1], w->x + window_custom_currency_widgets[WIDX_AFFIX_DROPDOWN].left + 1, w->y + window_custom_currency_widgets[WIDX_AFFIX_DROPDOWN].top);
} else {
gfx_draw_string_left(dpi, STR_SUFFIX, w, w->colours[1], w->x + window_custom_currency_widgets[WIDX_AFFIX_DROPDOWN].left + 1, w->y + window_custom_currency_widgets[WIDX_AFFIX_DROPDOWN].top);
}
}