mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-19 21:13:05 +01:00
Added OnToolUpdate, OnToolDrag, OnToolUp, OnPrepareDraw to new window
This commit is contained in:
@@ -64,50 +64,7 @@ static rct_widget window_view_clipping_widgets[] = {
|
||||
|
||||
#pragma endregion
|
||||
|
||||
#pragma region Members
|
||||
/*
|
||||
static CoordsXY _selectionStart;
|
||||
static CoordsXY _previousClipSelectionA;
|
||||
static CoordsXY _previousClipSelectionB;
|
||||
static bool _toolActive;
|
||||
static bool _dragging;
|
||||
*/
|
||||
#pragma endregion
|
||||
|
||||
#pragma region Events
|
||||
/*
|
||||
static void window_view_clipping_close_button(rct_window* w);
|
||||
static void window_view_clipping_mouseup(rct_window* w, rct_widgetindex widgetIndex);
|
||||
static void window_view_clipping_mousedown(rct_window*w, rct_widgetindex widgetIndex, rct_widget *widget);
|
||||
static void window_view_clipping_update(rct_window* w);
|
||||
static void window_view_clipping_tool_update(rct_window* w, rct_widgetindex widgetIndex, const ScreenCoordsXY& screenCoords);
|
||||
static void window_view_clipping_tool_down(rct_window* w, rct_widgetindex widgetIndex, const ScreenCoordsXY& screenCoords);
|
||||
static void window_view_clipping_tool_drag(rct_window* w, rct_widgetindex widgetIndex, const ScreenCoordsXY& screenCoords);
|
||||
static void window_view_clipping_tool_up(rct_window* w, rct_widgetindex, const ScreenCoordsXY&);
|
||||
static void window_view_clipping_invalidate(rct_window* w);
|
||||
static void window_view_clipping_paint(rct_window* w, rct_drawpixelinfo* dpi);
|
||||
static void window_view_clipping_scrollgetsize(rct_window* w, int scrollIndex, int* width, int* height);
|
||||
static void window_view_clipping_close();
|
||||
|
||||
static rct_window_event_list window_view_clipping_events([](auto& events)
|
||||
{
|
||||
events.close = &window_view_clipping_close_button;
|
||||
events.mouse_up = &window_view_clipping_mouseup;
|
||||
events.mouse_down = &window_view_clipping_mousedown;
|
||||
events.update = &window_view_clipping_update;
|
||||
events.tool_update = &window_view_clipping_tool_update;
|
||||
events.tool_down = &window_view_clipping_tool_down;
|
||||
events.tool_drag = &window_view_clipping_tool_drag;
|
||||
events.tool_up = &window_view_clipping_tool_up;
|
||||
events.get_scroll_size = &window_view_clipping_scrollgetsize;
|
||||
events.invalidate = &window_view_clipping_invalidate;
|
||||
events.paint = &window_view_clipping_paint;
|
||||
});
|
||||
*/
|
||||
// clang-format on
|
||||
|
||||
#pragma endregion
|
||||
|
||||
class ViewClippingWindow final : public Window
|
||||
{
|
||||
private:
|
||||
@@ -132,7 +89,7 @@ public:
|
||||
switch (widgetIndex)
|
||||
{
|
||||
case WIDX_CLOSE:
|
||||
window_close(this); // Unsure about this. ~hjort96
|
||||
window_close(this);
|
||||
break;
|
||||
case WIDX_CLIP_CHECKBOX_ENABLE:
|
||||
// Toggle height clipping.
|
||||
@@ -236,7 +193,7 @@ public:
|
||||
widget_invalidate(this, WIDX_CLIP_HEIGHT_SLIDER);
|
||||
}
|
||||
|
||||
void OnToolUpdate(rct_widgetindex widgetIndex, const ScreenCoordsXY& screenCoords)
|
||||
void OnToolUpdate(rct_widgetindex widgetIndex, const ScreenCoordsXY& screenCoords) override
|
||||
{
|
||||
if (_dragging)
|
||||
{
|
||||
@@ -266,7 +223,7 @@ public:
|
||||
}
|
||||
}
|
||||
|
||||
void OnToolDrag(rct_widgetindex widgetIndex, const ScreenCoordsXY& screenCoords)
|
||||
void OnToolDrag(rct_widgetindex widgetIndex, const ScreenCoordsXY& screenCoords) override
|
||||
{
|
||||
if (!_dragging)
|
||||
{
|
||||
@@ -288,7 +245,7 @@ public:
|
||||
}
|
||||
}
|
||||
|
||||
void OnToolUp(rct_widgetindex, const ScreenCoordsXY&)
|
||||
void OnToolUp(rct_widgetindex, const ScreenCoordsXY&) override
|
||||
{
|
||||
gClipSelectionA = gMapSelectPositionA;
|
||||
gClipSelectionB = gMapSelectPositionB;
|
||||
@@ -297,7 +254,7 @@ public:
|
||||
gfx_invalidate_screen();
|
||||
}
|
||||
|
||||
void OnInvalidate()
|
||||
void OnPrepareDraw() override
|
||||
{
|
||||
WidgetScrollUpdateThumbs(this, WIDX_CLIP_HEIGHT_SLIDER);
|
||||
|
||||
@@ -317,14 +274,14 @@ public:
|
||||
}
|
||||
}
|
||||
|
||||
void OnPaint(rct_drawpixelinfo* dpi)
|
||||
void OnDraw(rct_drawpixelinfo& dpi) override
|
||||
{
|
||||
|
||||
WindowDrawWidgets(this, dpi);
|
||||
WindowDrawWidgets(this, &dpi);
|
||||
|
||||
// Clip height value
|
||||
auto screenCoords = this->windowPos + ScreenCoordsXY{ 8, this->widgets[WIDX_CLIP_HEIGHT_VALUE].top };
|
||||
DrawTextBasic(dpi, screenCoords, STR_VIEW_CLIPPING_HEIGHT_VALUE, {}, { this->colours[0] });
|
||||
DrawTextBasic(&dpi, screenCoords, STR_VIEW_CLIPPING_HEIGHT_VALUE, {}, { this->colours[0] });
|
||||
|
||||
screenCoords = this->windowPos
|
||||
+ ScreenCoordsXY{ this->widgets[WIDX_CLIP_HEIGHT_VALUE].left + 1, this->widgets[WIDX_CLIP_HEIGHT_VALUE].top };
|
||||
@@ -336,7 +293,7 @@ public:
|
||||
{
|
||||
auto ft = Formatter();
|
||||
ft.Add<int32_t>(static_cast<int32_t>(gClipHeight));
|
||||
DrawTextBasic(dpi, screenCoords, STR_FORMAT_INTEGER, ft, { this->colours[0] }); // Printing the raw value.
|
||||
DrawTextBasic(&dpi, screenCoords, STR_FORMAT_INTEGER, ft, { this->colours[0] }); // Printing the raw value.
|
||||
break;
|
||||
}
|
||||
case DISPLAY_TYPE::DISPLAY_UNITS:
|
||||
@@ -348,7 +305,7 @@ public:
|
||||
auto ft = Formatter();
|
||||
ft.Add<fixed16_1dp>(static_cast<fixed16_1dp>(FIXED_1DP(gClipHeight, 0) / 2 - FIXED_1DP(7, 0)));
|
||||
DrawTextBasic(
|
||||
dpi, screenCoords, STR_UNIT1DP_NO_SUFFIX, ft,
|
||||
&dpi, screenCoords, STR_UNIT1DP_NO_SUFFIX, ft,
|
||||
{ this->colours[0] }); // Printing the value in Height Units.
|
||||
}
|
||||
else
|
||||
@@ -363,7 +320,7 @@ public:
|
||||
auto ft = Formatter();
|
||||
ft.Add<fixed32_2dp>(
|
||||
static_cast<fixed32_2dp>(FIXED_2DP(gClipHeight, 0) / 2 * 1.5f - FIXED_2DP(10, 50)));
|
||||
DrawTextBasic(dpi, screenCoords, STR_UNIT2DP_SUFFIX_METRES, ft, { this->colours[0] });
|
||||
DrawTextBasic(&dpi, screenCoords, STR_UNIT2DP_SUFFIX_METRES, ft, { this->colours[0] });
|
||||
break;
|
||||
}
|
||||
case MeasurementFormat::Imperial:
|
||||
@@ -371,7 +328,7 @@ public:
|
||||
auto ft = Formatter();
|
||||
ft.Add<fixed16_1dp>(
|
||||
static_cast<fixed16_1dp>(FIXED_1DP(gClipHeight, 0) / 2.0f * 5 - FIXED_1DP(35, 0)));
|
||||
DrawTextBasic(dpi, screenCoords, STR_UNIT1DP_SUFFIX_FEET, ft, { this->colours[0] });
|
||||
DrawTextBasic(&dpi, screenCoords, STR_UNIT1DP_SUFFIX_FEET, ft, { this->colours[0] });
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -451,305 +408,3 @@ rct_window* window_view_clipping_open()
|
||||
}
|
||||
return window;
|
||||
}
|
||||
/*
|
||||
// Done
|
||||
static void window_view_clipping_set_clipheight(rct_window* w, const uint8_t clipheight)
|
||||
{
|
||||
gClipHeight = clipheight;
|
||||
rct_widget* widget = &window_view_clipping_widgets[WIDX_CLIP_HEIGHT_SLIDER];
|
||||
const float clip_height_ratio = static_cast<float>(gClipHeight) / 255;
|
||||
w->scrolls[0].h_left = static_cast<int16_t>(std::ceil(clip_height_ratio * (w->scrolls[0].h_right - (widget->width() - 1))));
|
||||
}
|
||||
|
||||
// Done
|
||||
static void window_view_clipping_close()
|
||||
{
|
||||
// Turn off view clipping when the window is closed.
|
||||
rct_window* mainWindow = window_get_main();
|
||||
if (mainWindow != nullptr)
|
||||
{
|
||||
mainWindow->viewport->flags &= ~VIEWPORT_FLAG_CLIP_VIEW;
|
||||
mainWindow->Invalidate();
|
||||
}
|
||||
}
|
||||
|
||||
// Done
|
||||
static void window_view_clipping_close_button(rct_window* w)
|
||||
{
|
||||
window_view_clipping_close();
|
||||
}
|
||||
|
||||
// Done
|
||||
// Returns true when the tool is active
|
||||
static bool window_view_clipping_tool_is_active()
|
||||
{
|
||||
if (!(input_test_flag(INPUT_FLAG_TOOL_ACTIVE)))
|
||||
return false;
|
||||
if (gCurrentToolWidget.window_classification != WC_VIEW_CLIPPING)
|
||||
return false;
|
||||
return _toolActive;
|
||||
}
|
||||
|
||||
// Done
|
||||
static void window_view_clipping_mouseup(rct_window* w, rct_widgetindex widgetIndex)
|
||||
{
|
||||
rct_window* mainWindow;
|
||||
|
||||
// mouseup appears to be used for buttons, checkboxes
|
||||
switch (widgetIndex)
|
||||
{
|
||||
case WIDX_CLOSE:
|
||||
window_close(w);
|
||||
break;
|
||||
case WIDX_CLIP_CHECKBOX_ENABLE:
|
||||
// Toggle height clipping.
|
||||
mainWindow = window_get_main();
|
||||
if (mainWindow != nullptr)
|
||||
{
|
||||
mainWindow->viewport->flags ^= VIEWPORT_FLAG_CLIP_VIEW;
|
||||
mainWindow->Invalidate();
|
||||
}
|
||||
w->Invalidate();
|
||||
break;
|
||||
case WIDX_CLIP_HEIGHT_VALUE:
|
||||
// Toggle display of the cut height value in RAW vs UNITS
|
||||
if (gClipHeightDisplayType == DISPLAY_TYPE::DISPLAY_RAW)
|
||||
{
|
||||
gClipHeightDisplayType = DISPLAY_TYPE::DISPLAY_UNITS;
|
||||
}
|
||||
else
|
||||
{
|
||||
gClipHeightDisplayType = DISPLAY_TYPE::DISPLAY_RAW;
|
||||
}
|
||||
w->Invalidate();
|
||||
break;
|
||||
case WIDX_CLIP_SELECTOR:
|
||||
// Activate the selection tool
|
||||
tool_set(w, WIDX_BACKGROUND, Tool::Crosshair);
|
||||
_toolActive = true;
|
||||
_dragging = false;
|
||||
|
||||
// Reset clip selection to show all tiles
|
||||
_previousClipSelectionA = gClipSelectionA;
|
||||
_previousClipSelectionB = gClipSelectionB;
|
||||
gClipSelectionA = { 0, 0 };
|
||||
gClipSelectionB = { MAXIMUM_MAP_SIZE_BIG - 1, MAXIMUM_MAP_SIZE_BIG - 1 };
|
||||
gfx_invalidate_screen();
|
||||
break;
|
||||
case WIDX_CLIP_CLEAR:
|
||||
if (window_view_clipping_tool_is_active())
|
||||
{
|
||||
_toolActive = false;
|
||||
tool_cancel();
|
||||
}
|
||||
gClipSelectionA = { 0, 0 };
|
||||
gClipSelectionB = { MAXIMUM_MAP_SIZE_BIG - 1, MAXIMUM_MAP_SIZE_BIG - 1 };
|
||||
gfx_invalidate_screen();
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
// Done
|
||||
static void window_view_clipping_mousedown(rct_window* w, rct_widgetindex widgetIndex, rct_widget* widget)
|
||||
{
|
||||
rct_window* mainWindow = window_get_main();
|
||||
|
||||
switch (widgetIndex)
|
||||
{
|
||||
case WIDX_CLIP_HEIGHT_INCREASE:
|
||||
if (gClipHeight < 255)
|
||||
window_view_clipping_set_clipheight(w, gClipHeight + 1);
|
||||
if (mainWindow != nullptr)
|
||||
mainWindow->Invalidate();
|
||||
break;
|
||||
case WIDX_CLIP_HEIGHT_DECREASE:
|
||||
if (gClipHeight > 0)
|
||||
window_view_clipping_set_clipheight(w, gClipHeight - 1);
|
||||
if (mainWindow != nullptr)
|
||||
mainWindow->Invalidate();
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
// Done
|
||||
static void window_view_clipping_update(rct_window* w)
|
||||
{
|
||||
const rct_widget* const widget = &window_view_clipping_widgets[WIDX_CLIP_HEIGHT_SLIDER];
|
||||
const rct_scroll* const scroll = &w->scrolls[0];
|
||||
const int16_t scroll_width = widget->width() - 1;
|
||||
const uint8_t clip_height = static_cast<uint8_t>(
|
||||
(static_cast<float>(scroll->h_left) / (scroll->h_right - scroll_width)) * 255);
|
||||
if (clip_height != gClipHeight)
|
||||
{
|
||||
gClipHeight = clip_height;
|
||||
|
||||
// Update the main window accordingly.
|
||||
rct_window* mainWindow = window_get_main();
|
||||
if (mainWindow != nullptr)
|
||||
{
|
||||
mainWindow->Invalidate();
|
||||
}
|
||||
}
|
||||
|
||||
// Restore previous selection if the tool has been interrupted
|
||||
if (_toolActive && !window_view_clipping_tool_is_active())
|
||||
{
|
||||
_toolActive = false;
|
||||
gClipSelectionA = _previousClipSelectionA;
|
||||
gClipSelectionB = _previousClipSelectionB;
|
||||
}
|
||||
|
||||
widget_invalidate(w, WIDX_CLIP_HEIGHT_SLIDER);
|
||||
}
|
||||
|
||||
// Done
|
||||
static void window_view_clipping_tool_update(rct_window* w, rct_widgetindex widgetIndex, const ScreenCoordsXY& screenCoords)
|
||||
{
|
||||
if (_dragging)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
int32_t direction;
|
||||
auto mapCoords = screen_pos_to_map_pos(screenCoords, &direction);
|
||||
if (mapCoords.has_value())
|
||||
{
|
||||
gMapSelectFlags |= MAP_SELECT_FLAG_ENABLE;
|
||||
map_invalidate_tile_full(gMapSelectPositionA);
|
||||
gMapSelectPositionA = gMapSelectPositionB = mapCoords.value();
|
||||
map_invalidate_tile_full(mapCoords.value());
|
||||
gMapSelectType = MAP_SELECT_TYPE_FULL;
|
||||
}
|
||||
}
|
||||
|
||||
// Done
|
||||
static void window_view_clipping_tool_down(rct_window* w, rct_widgetindex widgetIndex, const ScreenCoordsXY& screenCoords)
|
||||
{
|
||||
int32_t direction;
|
||||
auto mapCoords = screen_pos_to_map_pos(screenCoords, &direction);
|
||||
if (mapCoords.has_value())
|
||||
{
|
||||
_dragging = true;
|
||||
_selectionStart = mapCoords.value();
|
||||
}
|
||||
}
|
||||
|
||||
// Done
|
||||
static void window_view_clipping_tool_drag(rct_window* w, rct_widgetindex widgetIndex, const ScreenCoordsXY& screenCoords)
|
||||
{
|
||||
if (!_dragging)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
int32_t direction;
|
||||
auto mapCoords = screen_pos_to_map_pos(screenCoords, &direction);
|
||||
if (mapCoords)
|
||||
{
|
||||
map_invalidate_selection_rect();
|
||||
gMapSelectFlags |= MAP_SELECT_FLAG_ENABLE;
|
||||
gMapSelectPositionA.x = std::min(_selectionStart.x, mapCoords->x);
|
||||
gMapSelectPositionB.x = std::max(_selectionStart.x, mapCoords->x);
|
||||
gMapSelectPositionA.y = std::min(_selectionStart.y, mapCoords->y);
|
||||
gMapSelectPositionB.y = std::max(_selectionStart.y, mapCoords->y);
|
||||
gMapSelectType = MAP_SELECT_TYPE_FULL;
|
||||
map_invalidate_selection_rect();
|
||||
}
|
||||
}
|
||||
|
||||
// Done
|
||||
static void window_view_clipping_tool_up(struct rct_window*, rct_widgetindex, const ScreenCoordsXY&)
|
||||
{
|
||||
gClipSelectionA = gMapSelectPositionA;
|
||||
gClipSelectionB = gMapSelectPositionB;
|
||||
_toolActive = false;
|
||||
tool_cancel();
|
||||
gfx_invalidate_screen();
|
||||
}
|
||||
|
||||
// Done
|
||||
static void window_view_clipping_invalidate(rct_window* w)
|
||||
{
|
||||
WidgetScrollUpdateThumbs(w, WIDX_CLIP_HEIGHT_SLIDER);
|
||||
|
||||
rct_window* mainWindow = window_get_main();
|
||||
if (mainWindow != nullptr)
|
||||
{
|
||||
WidgetSetCheckboxValue(w, WIDX_CLIP_CHECKBOX_ENABLE, mainWindow->viewport->flags & VIEWPORT_FLAG_CLIP_VIEW);
|
||||
}
|
||||
|
||||
if (window_view_clipping_tool_is_active())
|
||||
{
|
||||
w->pressed_widgets |= 1ULL << WIDX_CLIP_SELECTOR;
|
||||
}
|
||||
else
|
||||
{
|
||||
w->pressed_widgets &= ~(1ULL << WIDX_CLIP_SELECTOR);
|
||||
}
|
||||
}
|
||||
|
||||
// Done
|
||||
static void window_view_clipping_paint(rct_window* w, rct_drawpixelinfo* dpi)
|
||||
{
|
||||
WindowDrawWidgets(w, dpi);
|
||||
|
||||
// Clip height value
|
||||
auto screenCoords = w->windowPos + ScreenCoordsXY{ 8, w->widgets[WIDX_CLIP_HEIGHT_VALUE].top };
|
||||
DrawTextBasic(dpi, screenCoords, STR_VIEW_CLIPPING_HEIGHT_VALUE, {}, { w->colours[0] });
|
||||
|
||||
screenCoords = w->windowPos
|
||||
+ ScreenCoordsXY{ w->widgets[WIDX_CLIP_HEIGHT_VALUE].left + 1, w->widgets[WIDX_CLIP_HEIGHT_VALUE].top };
|
||||
|
||||
switch (gClipHeightDisplayType)
|
||||
{
|
||||
case DISPLAY_TYPE::DISPLAY_RAW:
|
||||
default:
|
||||
{
|
||||
auto ft = Formatter();
|
||||
ft.Add<int32_t>(static_cast<int32_t>(gClipHeight));
|
||||
DrawTextBasic(dpi, screenCoords, STR_FORMAT_INTEGER, ft, { w->colours[0] }); // Printing the raw value.
|
||||
break;
|
||||
}
|
||||
case DISPLAY_TYPE::DISPLAY_UNITS:
|
||||
// Print the value in the configured height label type:
|
||||
if (gConfigGeneral.show_height_as_units == 1)
|
||||
{
|
||||
// Height label is Units.
|
||||
auto ft = Formatter();
|
||||
ft.Add<fixed16_1dp>(static_cast<fixed16_1dp>(FIXED_1DP(gClipHeight, 0) / 2 - FIXED_1DP(7, 0)));
|
||||
DrawTextBasic(
|
||||
dpi, screenCoords, STR_UNIT1DP_NO_SUFFIX, ft, { w->colours[0] }); // Printing the value in Height Units.
|
||||
}
|
||||
else
|
||||
{
|
||||
// Height label is Real Values.
|
||||
// Print the value in the configured measurement units.
|
||||
switch (gConfigGeneral.measurement_format)
|
||||
{
|
||||
case MeasurementFormat::Metric:
|
||||
case MeasurementFormat::SI:
|
||||
{
|
||||
auto ft = Formatter();
|
||||
ft.Add<fixed32_2dp>(static_cast<fixed32_2dp>(FIXED_2DP(gClipHeight, 0) / 2 * 1.5f - FIXED_2DP(10, 50)));
|
||||
DrawTextBasic(dpi, screenCoords, STR_UNIT2DP_SUFFIX_METRES, ft, { w->colours[0] });
|
||||
break;
|
||||
}
|
||||
case MeasurementFormat::Imperial:
|
||||
{
|
||||
auto ft = Formatter();
|
||||
ft.Add<fixed16_1dp>(static_cast<fixed16_1dp>(FIXED_1DP(gClipHeight, 0) / 2.0f * 5 - FIXED_1DP(35, 0)));
|
||||
DrawTextBasic(dpi, screenCoords, STR_UNIT1DP_SUFFIX_FEET, ft, { w->colours[0] });
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Done
|
||||
static void window_view_clipping_scrollgetsize(rct_window* w, int scrollIndex, int* width, int* height)
|
||||
{
|
||||
*width = 1000;
|
||||
}
|
||||
*/
|
||||
|
||||
|
||||
Reference in New Issue
Block a user