OpenRCT2/src/openrct2-ui/windows/Main.cpp

92 lines
2.4 KiB
C++
Raw Normal View History

/*****************************************************************************
* Copyright (c) 2014-2019 OpenRCT2 developers
*
* For a complete list of all authors, please refer to contributors.md
* Interested in contributing? Visit https://github.com/OpenRCT2/OpenRCT2
*
* OpenRCT2 is licensed under the GNU General Public License version 3.
*****************************************************************************/
2018-01-03 00:13:37 +01:00
#include <openrct2-ui/interface/Viewport.h>
#include <openrct2-ui/interface/Widget.h>
2018-06-22 23:21:44 +02:00
#include <openrct2-ui/windows/Window.h>
#include <openrct2/Context.h>
2018-01-06 18:32:25 +01:00
#include <openrct2/localisation/StringIds.h>
2018-01-11 10:59:26 +01:00
#include <openrct2/world/Footpath.h>
#include <openrct2/world/Sprite.h>
// clang-format off
static rct_widget window_main_widgets[] = {
{ WWT_VIEWPORT, 0, 0x0000, -1, 0x0000, -1, STR_VIEWPORT, 0xFFFF },
{ WIDGETS_END },
};
void window_main_paint(rct_window *w, rct_drawpixelinfo *dpi);
2014-07-15 15:59:43 +02:00
static rct_window_event_list window_main_events = {
2017-08-15 10:07:44 +02:00
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
window_main_paint,
2017-08-15 10:07:44 +02:00
nullptr
};
// clang-format on
2014-07-15 15:59:43 +02:00
/**
2014-07-15 15:59:43 +02:00
* Creates the main window that holds the main viewport.
* rct2: 0x0066B3E8
*/
2018-06-22 23:21:44 +02:00
rct_window* window_main_open()
{
window_main_widgets[0].right = context_get_width();
window_main_widgets[0].bottom = context_get_height();
2018-06-22 23:21:44 +02:00
rct_window* window = window_create(
ScreenCoordsXY(0, 0), window_main_widgets[0].right, window_main_widgets[0].bottom, &window_main_events, WC_MAIN_WINDOW,
2018-06-22 23:21:44 +02:00
WF_STICK_TO_BACK);
window->widgets = window_main_widgets;
2020-03-01 20:32:35 +01:00
viewport_create(window, window->windowPos, window->width, window->height, 0, { 0x0FFF, 0x0FFF, 0 }, 0x1, SPRITE_INDEX_NULL);
window->viewport->flags |= VIEWPORT_FLAG_SOUND_ON;
gCurrentRotation = 0;
gShowGridLinesRefCount = 0;
gShowLandRightsRefCount = 0;
gShowConstuctionRightsRefCount = 0;
gFootpathSelectedType = 0;
2017-08-12 23:06:12 +02:00
return window;
}
2014-07-15 15:59:43 +02:00
/**
*
* rct2: 0x66CCAE
2014-07-15 15:59:43 +02:00
* This function immediately jumps to 0x00685BE1 this is the second function
* decompiled.
*/
2018-06-22 23:21:44 +02:00
void window_main_paint(rct_window* w, rct_drawpixelinfo* dpi)
2014-10-09 16:55:47 +02:00
{
viewport_render(dpi, w->viewport, dpi->x, dpi->y, dpi->x + dpi->width, dpi->y + dpi->height);
2014-07-15 15:59:43 +02:00
}