From 5c358c41735e95d14eb23667e146c10e2cea9b67 Mon Sep 17 00:00:00 2001 From: frosch Date: Sun, 9 Dec 2012 16:55:21 +0000 Subject: [PATCH] (svn r24811) -Add: Close engine preview window when another client accepts it. --- src/engine.cpp | 7 +++++++ src/engine_gui.cpp | 8 ++++++++ 2 files changed, 15 insertions(+) diff --git a/src/engine.cpp b/src/engine.cpp index 2895496042..782f3f31a7 100644 --- a/src/engine.cpp +++ b/src/engine.cpp @@ -749,6 +749,13 @@ static void AcceptEnginePreview(EngineID eid, CompanyID company) /* Update the toolbar. */ if (e->type == VEH_ROAD) InvalidateWindowData(WC_BUILD_TOOLBAR, TRANSPORT_ROAD); if (e->type == VEH_SHIP) InvalidateWindowData(WC_BUILD_TOOLBAR, TRANSPORT_WATER); + + /* Notify preview window, that it might want to close. + * Note: We cannot directly close the window. + * In singleplayer this function is called from the preview window, so + * we have to use the GUI-scope scheduling of InvalidateWindowData. + */ + InvalidateWindowData(WC_ENGINE_PREVIEW, eid); } /** diff --git a/src/engine_gui.cpp b/src/engine_gui.cpp index 3a13323673..a2f5b919cd 100644 --- a/src/engine_gui.cpp +++ b/src/engine_gui.cpp @@ -110,6 +110,14 @@ struct EnginePreviewWindow : Window { break; } } + + virtual void OnInvalidateData(int data = 0, bool gui_scope = true) + { + if (!gui_scope) return; + + EngineID engine = this->window_number; + if (Engine::Get(engine)->preview_company != _local_company) delete this; + } }; static const WindowDesc _engine_preview_desc(