OpenTTD Source 20250529-master-g10c159a79f
viewport_gui.cpp
Go to the documentation of this file.
1/*
2 * This file is part of OpenTTD.
3 * 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.
4 * 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.
5 * 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/>.
6 */
7
10#include "stdafx.h"
11#include "landscape.h"
12#include "window_gui.h"
13#include "viewport_func.h"
14#include "strings_func.h"
15#include "zoom_func.h"
16#include "window_func.h"
17
19
20#include "table/strings.h"
21#include "table/sprites.h"
22
23#include "safeguards.h"
24
25/* Extra Viewport Window Stuff */
26static constexpr NWidgetPart _nested_extra_viewport_widgets[] = {
28 NWidget(WWT_CLOSEBOX, COLOUR_GREY),
29 NWidget(WWT_CAPTION, COLOUR_GREY, WID_EV_CAPTION),
30 NWidget(WWT_SHADEBOX, COLOUR_GREY),
31 NWidget(WWT_DEFSIZEBOX, COLOUR_GREY),
32 NWidget(WWT_STICKYBOX, COLOUR_GREY),
34 NWidget(WWT_PANEL, COLOUR_GREY),
35 NWidget(NWID_VIEWPORT, INVALID_COLOUR, WID_EV_VIEWPORT), SetPadding(2, 2, 2, 2), SetResize(1, 1), SetFill(1, 1),
38 NWidget(WWT_PUSHIMGBTN, COLOUR_GREY, WID_EV_ZOOM_IN), SetSpriteTip(SPR_IMG_ZOOMIN, STR_TOOLBAR_TOOLTIP_ZOOM_THE_VIEW_IN),
39 NWidget(WWT_PUSHIMGBTN, COLOUR_GREY, WID_EV_ZOOM_OUT), SetSpriteTip(SPR_IMG_ZOOMOUT, STR_TOOLBAR_TOOLTIP_ZOOM_THE_VIEW_OUT),
41 NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_EV_MAIN_TO_VIEW), SetFill(1, 1), SetResize(1, 0),
42 SetStringTip(STR_EXTRA_VIEW_MOVE_MAIN_TO_VIEW, STR_EXTRA_VIEW_MOVE_MAIN_TO_VIEW_TOOLTIP),
43 NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_EV_VIEW_TO_MAIN), SetFill(1, 1), SetResize(1, 0),
44 SetStringTip(STR_EXTRA_VIEW_MOVE_VIEW_TO_MAIN, STR_EXTRA_VIEW_MOVE_VIEW_TO_MAIN_TOOLTIP),
48 NWidget(WWT_PANEL, COLOUR_GREY), SetFill(1, 1), SetResize(1, 0), EndContainer(),
49 NWidget(WWT_RESIZEBOX, COLOUR_GREY),
51};
52
54public:
56 {
57 this->InitNested(window_number);
58
59 NWidgetViewport *nvp = this->GetWidget<NWidgetViewport>(WID_EV_VIEWPORT);
62 }
63
64 std::string GetWidgetString(WidgetID widget, StringID stringid) const override
65 {
66 switch (widget) {
67 case WID_EV_CAPTION:
68 /* set the number in the title bar */
69 return GetString(STR_EXTRA_VIEWPORT_TITLE, this->window_number + 1);
70
71 default:
72 return this->Window::GetWidgetString(widget, stringid);
73 }
74 }
75
76 void OnClick([[maybe_unused]] Point pt, WidgetID widget, [[maybe_unused]] int click_count) override
77 {
78 switch (widget) {
79 case WID_EV_ZOOM_IN: DoZoomInOutWindow(ZOOM_IN, this); break;
80 case WID_EV_ZOOM_OUT: DoZoomInOutWindow(ZOOM_OUT, this); break;
81
82 case WID_EV_MAIN_TO_VIEW: { // location button (move main view to same spot as this view) 'Paste Location'
83 Window *w = GetMainWindow();
84 int x = this->viewport->scrollpos_x; // Where is the main looking at
85 int y = this->viewport->scrollpos_y;
86
87 /* set this view to same location. Based on the center, adjusting for zoom */
88 w->viewport->dest_scrollpos_x = x - (w->viewport->virtual_width - this->viewport->virtual_width) / 2;
89 w->viewport->dest_scrollpos_y = y - (w->viewport->virtual_height - this->viewport->virtual_height) / 2;
90 w->viewport->follow_vehicle = VehicleID::Invalid();
91 break;
92 }
93
94 case WID_EV_VIEW_TO_MAIN: { // inverse location button (move this view to same spot as main view) 'Copy Location'
95 const Window *w = GetMainWindow();
96 int x = w->viewport->scrollpos_x;
97 int y = w->viewport->scrollpos_y;
98
99 this->viewport->dest_scrollpos_x = x + (w->viewport->virtual_width - this->viewport->virtual_width) / 2;
100 this->viewport->dest_scrollpos_y = y + (w->viewport->virtual_height - this->viewport->virtual_height) / 2;
101 break;
102 }
103 }
104 }
105
106 void OnResize() override
107 {
108 if (this->viewport != nullptr) {
109 NWidgetViewport *nvp = this->GetWidget<NWidgetViewport>(WID_EV_VIEWPORT);
110 nvp->UpdateViewportCoordinates(this);
111 }
112 }
113
114 void OnScroll(Point delta) override
115 {
116 this->viewport->scrollpos_x += ScaleByZoom(delta.x, this->viewport->zoom);
117 this->viewport->scrollpos_y += ScaleByZoom(delta.y, this->viewport->zoom);
118 this->viewport->dest_scrollpos_x = this->viewport->scrollpos_x;
119 this->viewport->dest_scrollpos_y = this->viewport->scrollpos_y;
120 }
121
122 bool OnRightClick([[maybe_unused]] Point pt, WidgetID widget) override
123 {
124 return widget == WID_EV_VIEWPORT;
125 }
126
127 void OnMouseWheel(int wheel, WidgetID widget) override
128 {
129 if (widget != WID_EV_VIEWPORT) return;
131 ZoomInOrOutToCursorWindow(wheel < 0, this);
132 }
133 }
134
140 void OnInvalidateData([[maybe_unused]] int data = 0, [[maybe_unused]] bool gui_scope = true) override
141 {
142 if (!gui_scope) return;
143 /* Only handle zoom message if intended for us (msg ZOOM_IN/ZOOM_OUT) */
145 }
146};
147
148static WindowDesc _extra_viewport_desc(
149 WDP_AUTO, "extra_viewport", 300, 268,
151 {},
152 _nested_extra_viewport_widgets
153);
154
160{
161 int i = 0;
162
163 /* find next free window number for extra viewport */
164 while (FindWindowById(WC_EXTRA_VIEWPORT, i) != nullptr) i++;
165
166 new ExtraViewportWindow(_extra_viewport_desc, i, tile);
167}
168
175{
176 /* Use tile under mouse as center for new viewport.
177 * Do this before creating the window, it might appear just below the mouse. */
178 Point pt = GetTileBelowCursor();
179 ShowExtraViewportWindow(pt.x != -1 ? TileVirtXY(pt.x, pt.y) : INVALID_TILE);
180}
void OnMouseWheel(int wheel, WidgetID widget) override
The mouse wheel has been turned.
void OnScroll(Point delta) override
Handle the request for (viewport) scrolling.
std::string GetWidgetString(WidgetID widget, StringID stringid) const override
Get the raw string for a widget.
void OnInvalidateData(int data=0, bool gui_scope=true) override
Some data on this window has become invalid.
bool OnRightClick(Point pt, WidgetID widget) override
A click with the right mouse button has been made on the window.
void OnClick(Point pt, WidgetID widget, int click_count) override
A click with the left mouse button has been made on the window.
void OnResize() override
Called after the window got resized.
Nested widget to display a viewport in a window.
void UpdateViewportCoordinates(Window *w)
Update the position and size of the viewport (after eg a resize).
Definition widget.cpp:2459
void InitializeViewport(Window *w, std::variant< TileIndex, VehicleID > focus, ZoomLevel zoom)
Initialize the viewport of the window.
Definition widget.cpp:2450
constexpr NWidgetPart SetFill(uint16_t fill_x, uint16_t fill_y)
Widget part function for setting filling.
constexpr NWidgetPart SetSpriteTip(SpriteID sprite, StringID tip={})
Widget part function for setting the sprite and tooltip.
constexpr NWidgetPart SetPadding(uint8_t top, uint8_t right, uint8_t bottom, uint8_t left)
Widget part function for setting additional space around a widget.
constexpr NWidgetPart SetStringTip(StringID string, StringID tip={})
Widget part function for setting the string and tooltip.
constexpr NWidgetPart NWidget(WidgetType tp, Colours col, WidgetID idx=-1)
Widget part function for starting a new 'real' widget.
constexpr NWidgetPart EndContainer()
Widget part function for denoting the end of a container (horizontal, vertical, WWT_FRAME,...
constexpr NWidgetPart SetResize(int16_t dx, int16_t dy)
Widget part function for setting the resize step.
Functions related to OTTD's landscape.
bool DoZoomInOutWindow(ZoomStateChange how, Window *w)
Zooms a viewport in a window in or out.
Definition main_gui.cpp:93
static debug_inline TileIndex TileVirtXY(uint x, uint y)
Get a tile from the virtual XY-coordinate.
Definition map_func.h:403
A number of safeguards to prevent using unsafe methods.
ClientSettings _settings_client
The current settings for this game.
Definition settings.cpp:60
@ SWS_OFF
Scroll wheel has no effect.
This file contains all sprite-related enums and defines.
Definition of base types and functions in a cross-platform compatible way.
std::string GetString(StringID string)
Resolve the given StringID into a std::string with formatting but no parameters.
Definition strings.cpp:415
Functions related to OTTD's strings.
uint32_t StringID
Numeric value that represents a string, independent of the selected language.
GUISettings gui
settings related to the GUI
ZoomLevel zoom_min
minimum zoom out level
uint8_t scrollwheel_scrolling
scrolling using the scroll wheel?
Partial widget specification to allow NWidgets to be written nested.
Coordinates of a point in 2D.
High level window description.
Definition window_gui.h:167
Data structure for an opened window.
Definition window_gui.h:273
std::unique_ptr< ViewportData > viewport
Pointer to viewport data, if present.
Definition window_gui.h:318
virtual std::string GetWidgetString(WidgetID widget, StringID stringid) const
Get the raw string for a widget.
Definition window.cpp:503
void DisableWidget(WidgetID widget_index)
Sets a widget to disabled.
Definition window_gui.h:391
void InitNested(WindowNumber number=0)
Perform complete initialization of the Window with nested widgets, to allow use.
Definition window.cpp:1791
WindowNumber window_number
Window number within the window class.
Definition window_gui.h:302
constexpr TileIndex INVALID_TILE
The very nice invalid tile marker.
Definition tile_type.h:95
void HandleZoomMessage(Window *w, const Viewport &vp, WidgetID widget_zoom_in, WidgetID widget_zoom_out)
Update the status of the zoom-buttons according to the zoom-level of the viewport.
Definition viewport.cpp:486
Functions related to (drawing on) viewports.
void ShowExtraViewportWindowForTileUnderCursor()
Show a new Extra Viewport window.
void ShowExtraViewportWindow(TileIndex tile)
Show a new Extra Viewport window.
@ ZOOM_IN
Zoom in (get more detailed view).
@ ZOOM_OUT
Zoom out (get helicopter view).
Types related to the viewport widgets.
@ WID_EV_MAIN_TO_VIEW
Center the view of this viewport on the main view.
@ WID_EV_VIEW_TO_MAIN
Center the main view on the view of this viewport.
@ WID_EV_CAPTION
Caption of window.
@ WID_EV_ZOOM_OUT
Zoom out.
@ WID_EV_VIEWPORT
The viewport.
@ WID_EV_ZOOM_IN
Zoom in.
@ WWT_PUSHTXTBTN
Normal push-button (no toggle button) with text caption.
@ WWT_PUSHIMGBTN
Normal push-button (no toggle button) with image caption.
@ NWID_HORIZONTAL
Horizontal container.
Definition widget_type.h:67
@ WWT_PANEL
Simple depressed panel.
Definition widget_type.h:40
@ WWT_STICKYBOX
Sticky box (at top-right of a window, after WWT_DEFSIZEBOX)
Definition widget_type.h:58
@ WWT_SHADEBOX
Shade box (at top-right of a window, between WWT_DEBUGBOX and WWT_DEFSIZEBOX)
Definition widget_type.h:56
@ WWT_CAPTION
Window caption (window title between closebox and stickybox)
Definition widget_type.h:53
@ WWT_CLOSEBOX
Close box (at top-left of a window)
Definition widget_type.h:61
@ WWT_RESIZEBOX
Resize box (normally at bottom-right of a window)
Definition widget_type.h:60
@ WWT_DEFSIZEBOX
Default window size box (at top-right of a window, between WWT_SHADEBOX and WWT_STICKYBOX)
Definition widget_type.h:57
@ NWID_VIEWPORT
Nested widget containing a viewport.
Definition widget_type.h:74
@ EqualSize
Containers should keep all their (resizing) children equally large.
Window * GetMainWindow()
Get the main window, i.e.
Definition window.cpp:1169
Window * FindWindowById(WindowClass cls, WindowNumber number)
Find a window by its class and window number.
Definition window.cpp:1140
Window functions not directly related to making/drawing windows.
Functions, definitions and such used only by the GUI.
@ WDP_AUTO
Find a place automatically.
Definition window_gui.h:144
int WidgetID
Widget ID.
Definition window_type.h:20
@ WC_EXTRA_VIEWPORT
Extra viewport; Window numbers:
@ WC_NONE
No window, redirects to WC_MAIN_WINDOW.
Definition window_type.h:47
Functions related to zooming.
int ScaleByZoom(int value, ZoomLevel zoom)
Scale by zoom level, usually shift left (when zoom > ZoomLevel::Min) When shifting right,...
Definition zoom_func.h:22
ZoomLevel ScaleZoomGUI(ZoomLevel value)
Scale zoom level relative to GUI zoom.
Definition zoom_func.h:87
@ Viewport
Default zoom level for viewports.