diff --git a/src/misc_gui.cpp b/src/misc_gui.cpp index ed859e502b..052a1ea8c1 100644 --- a/src/misc_gui.cpp +++ b/src/misc_gui.cpp @@ -27,6 +27,7 @@ #include "newgrf_debug.h" #include "zoom_func.h" #include "tunnelbridge_map.h" +#include "viewport_type.h" #include "widgets/misc_widget.h" @@ -661,6 +662,9 @@ struct TooltipsWindow : public Window uint64 params[5]; ///< The string parameters. TooltipCloseCondition close_cond; ///< Condition for closing the window. char buffer[DRAW_STRING_BUFFER]; ///< Text to draw + int viewport_virtual_left; ///< Owner viewport state: left + int viewport_virtual_top; ///< Owner viewport state: top + bool delete_next_mouse_loop; ///< Delete window on the next mouse loop TooltipsWindow(Window *parent, StringID str, uint paramcount, const uint64 params[], TooltipCloseCondition close_tooltip) : Window(&_tool_tips_desc) { @@ -671,7 +675,12 @@ struct TooltipsWindow : public Window memcpy(this->params, params, sizeof(this->params[0]) * paramcount); this->paramcount = paramcount; this->close_cond = close_tooltip; + this->delete_next_mouse_loop = false; if (this->paramcount == 0) GetString(this->buffer, str, lastof(this->buffer)); // Get the text while params are available + if (close_tooltip == TCC_HOVER_VIEWPORT) { + this->viewport_virtual_left = parent->viewport->virtual_left; + this->viewport_virtual_top = parent->viewport->virtual_top; + } this->InitNested(); @@ -730,7 +739,7 @@ struct TooltipsWindow : public Window virtual void OnMouseLoop() { /* Always close tooltips when the cursor is not in our window. */ - if (!_cursor.in_window) { + if (!_cursor.in_window || this->delete_next_mouse_loop) { delete this; return; } @@ -741,6 +750,17 @@ struct TooltipsWindow : public Window case TCC_RIGHT_CLICK: if (!_right_button_down) delete this; break; case TCC_LEFT_CLICK: if (!_left_button_down) delete this; break; case TCC_HOVER: if (!_mouse_hovering) delete this; break; + + case TCC_HOVER_VIEWPORT: + if (!_mouse_hovering) { + delete this; + break; + } + if (this->viewport_virtual_left != this->parent->viewport->virtual_left || + this->viewport_virtual_top != this->parent->viewport->virtual_top) { + this->delete_next_mouse_loop = true; + } + break; } } }; diff --git a/src/viewport_gui.cpp b/src/viewport_gui.cpp index a34d995b7f..3c5c2bb77a 100644 --- a/src/viewport_gui.cpp +++ b/src/viewport_gui.cpp @@ -225,7 +225,7 @@ void ShowTooltipForTile(Window *w, const TileIndex tile) case MP_HOUSE: { if (HasBit(_display_opt, DO_SHOW_TOWN_NAMES)) return; // No need for a town name tooltip when it is already displayed SetDParam(0, GetTownIndex(tile)); - GuiShowTooltips(w, STR_TOWN_NAME_TOOLTIP, 0, NULL, TCC_HOVER); + GuiShowTooltips(w, STR_TOWN_NAME_TOOLTIP, 0, NULL, TCC_HOVER_VIEWPORT); break; } case MP_INDUSTRY: { @@ -243,7 +243,7 @@ void ShowTooltipForTile(Window *w, const TileIndex tile) str++; } } - GuiShowTooltips(w, str, 0, NULL, TCC_HOVER); + GuiShowTooltips(w, str, 0, NULL, TCC_HOVER_VIEWPORT); break; } default: diff --git a/src/viewport_type.h b/src/viewport_type.h index 5df77a7c12..e7a7113c1b 100644 --- a/src/viewport_type.h +++ b/src/viewport_type.h @@ -33,7 +33,7 @@ enum ViewportMapType { * Data structure for viewport, display of a part of the world */ struct ViewPort { - int left; ///< Screen coordinate left egde of the viewport + int left; ///< Screen coordinate left edge of the viewport int top; ///< Screen coordinate top edge of the viewport int width; ///< Screen width of the viewport int height; ///< Screen height of the viewport diff --git a/src/window_gui.h b/src/window_gui.h index ab096a0d00..181ee52dbb 100644 --- a/src/window_gui.h +++ b/src/window_gui.h @@ -871,6 +871,7 @@ enum TooltipCloseCondition { TCC_RIGHT_CLICK, TCC_LEFT_CLICK, TCC_HOVER, + TCC_HOVER_VIEWPORT, }; void GuiShowTooltips(Window *parent, StringID str, uint paramcount = 0, const uint64 params[] = NULL, TooltipCloseCondition close_tooltip = TCC_HOVER);