Partially fix #6129: Guest List not updating after a ride rename

- Force refresh of ride list and guest list for both rename ride and demolish ride actions.
This commit is contained in:
Ted John 2017-11-23 08:40:39 +00:00 committed by Michael Steenbeek
parent ad8fce4d77
commit 323b8dd352
12 changed files with 43 additions and 23 deletions

View File

@ -39,6 +39,7 @@
- Fix: [#6101] Rides remain in ride list window briefly after demolition. - Fix: [#6101] Rides remain in ride list window briefly after demolition.
- Fix: [#6115] Random title screen music not random on launch. - Fix: [#6115] Random title screen music not random on launch.
- Fix: [#6118, #6245, #6366] Tracked animated vehicles not animating. - Fix: [#6118, #6245, #6366] Tracked animated vehicles not animating.
- Fix: [#6129] Guest List summary not updating after a ride rename.
- Fix: [#6133] Construction rights not shown after selecting buy mode. - Fix: [#6133] Construction rights not shown after selecting buy mode.
- Fix: [#6188] Viewports not being clipped properly when zoomed out in OpenGL mode. - Fix: [#6188] Viewports not being clipped properly when zoomed out in OpenGL mode.
- Fix: [#6193] All rings in Space Rings use the same secondary colour. - Fix: [#6193] All rings in Space Rings use the same secondary colour.

View File

@ -267,9 +267,9 @@ public:
} }
} }
void BroadcastIntent(Intent * intent) override void BroadcastIntent(const Intent &intent) override
{ {
switch (intent->GetWindowClass()) switch (intent.GetWindowClass())
{ {
case INTENT_ACTION_MAP: case INTENT_ACTION_MAP:
window_map_reset(); window_map_reset();
@ -317,6 +317,10 @@ public:
case INTENT_ACTION_INVALIDATE_TICKER_NEWS: case INTENT_ACTION_INVALIDATE_TICKER_NEWS:
window_game_bottom_toolbar_invalidate_news_item(); window_game_bottom_toolbar_invalidate_news_item();
break; break;
case INTENT_ACTION_REFRESH_GUEST_LIST:
window_guest_list_refresh_list();
break;
} }
} }

View File

@ -106,10 +106,6 @@ static void window_ride_demolish_mouseup(rct_window *w, rct_widgetindex widgetIn
case WIDX_DEMOLISH: case WIDX_DEMOLISH:
{ {
ride_demolish(w->number, GAME_COMMAND_FLAG_APPLY); ride_demolish(w->number, GAME_COMMAND_FLAG_APPLY);
// Prevents demolished rides sticking around in the ride list window
auto intent = Intent(INTENT_ACTION_REFRESH_RIDE_LIST);
context_broadcast_intent(&intent);
break; break;
} }
case WIDX_CANCEL: case WIDX_CANCEL:

View File

@ -213,6 +213,13 @@ rct_window * window_guest_list_open()
return window; return window;
} }
void window_guest_list_refresh_list()
{
_window_guest_list_last_find_groups_wait = 0;
_window_guest_list_last_find_groups_tick = 0;
window_guest_list_find_groups();
}
/** /**
* *
* rct2: 0x006993BA * rct2: 0x006993BA

View File

@ -80,6 +80,7 @@ rct_window * window_new_campaign_open(sint16 campaignType);
rct_window * window_install_track_open(const utf8* path); rct_window * window_install_track_open(const utf8* path);
void window_guest_list_init_vars(); void window_guest_list_init_vars();
void window_guest_list_refresh_list();
rct_window * window_guest_list_open(); rct_window * window_guest_list_open();
rct_window * window_guest_list_open_with_filter(sint32 type, sint32 index); rct_window * window_guest_list_open_with_filter(sint32 type, sint32 index);
rct_window * window_staff_fire_prompt_open(rct_peep* peep); rct_window * window_staff_fire_prompt_open(rct_peep* peep);

View File

@ -1042,7 +1042,7 @@ extern "C"
void context_broadcast_intent(Intent * intent) void context_broadcast_intent(Intent * intent)
{ {
auto windowManager = GetContext()->GetUiContext()->GetWindowManager(); auto windowManager = GetContext()->GetUiContext()->GetWindowManager();
windowManager->BroadcastIntent(intent); windowManager->BroadcastIntent(*intent);
} }
void context_force_close_window_by_class(rct_windowclass windowClass) void context_force_close_window_by_class(rct_windowclass windowClass)

View File

@ -16,14 +16,16 @@
#pragma once #pragma once
#include "../core/MemoryStream.h"
#include "GameAction.h"
#include "../cheats.h" #include "../cheats.h"
#include "../Context.h"
#include "../core/MemoryStream.h"
#include "../interface/window.h" #include "../interface/window.h"
#include "../localisation/localisation.h" #include "../localisation/localisation.h"
#include "../ride/ride.h" #include "../ride/ride.h"
#include "../ui/UiContext.h"
#include "../ui/WindowManager.h"
#include "../world/park.h" #include "../world/park.h"
#include "GameAction.h"
struct RideDemolishAction : public GameActionBase<GAME_COMMAND_DEMOLISH_RIDE, GameActionResult> struct RideDemolishAction : public GameActionBase<GAME_COMMAND_DEMOLISH_RIDE, GameActionResult>
{ {
@ -196,6 +198,7 @@ public:
res->Position = { x, y, z }; res->Position = { x, y, z };
} }
// Close windows related to the demolished ride
if (!(GetFlags() & GAME_COMMAND_FLAG_ALLOW_DURING_PAUSED)) if (!(GetFlags() & GAME_COMMAND_FLAG_ALLOW_DURING_PAUSED))
{ {
window_close_by_number(WC_RIDE_CONSTRUCTION, _rideIndex); window_close_by_number(WC_RIDE_CONSTRUCTION, _rideIndex);
@ -204,7 +207,10 @@ public:
window_close_by_number(WC_DEMOLISH_RIDE_PROMPT, _rideIndex); window_close_by_number(WC_DEMOLISH_RIDE_PROMPT, _rideIndex);
window_close_by_class(WC_NEW_CAMPAIGN); window_close_by_class(WC_NEW_CAMPAIGN);
window_invalidate_by_class(WC_RIDE_LIST); // Refresh windows that display the ride name
auto windowManager = GetContext()->GetUiContext()->GetWindowManager();
windowManager->BroadcastIntent(Intent(INTENT_ACTION_REFRESH_RIDE_LIST));
windowManager->BroadcastIntent(Intent(INTENT_ACTION_REFRESH_GUEST_LIST));
return res; return res;
} }

View File

@ -16,14 +16,18 @@
#pragma once #pragma once
#include "../core/MemoryStream.h"
#include "../localisation/string_ids.h"
#include "GameAction.h"
#include "../cheats.h" #include "../cheats.h"
#include "../Context.h"
#include "../core/MemoryStream.h"
#include "../interface/window.h" #include "../interface/window.h"
#include "../localisation/localisation.h" #include "../localisation/localisation.h"
#include "../localisation/string_ids.h"
#include "../ui/UiContext.h"
#include "../ui/WindowManager.h"
#include "../world/park.h" #include "../world/park.h"
#include "GameAction.h"
using namespace OpenRCT2;
struct RideSetNameAction : public GameActionBase<GAME_COMMAND_SET_RIDE_NAME, GameActionResult> struct RideSetNameAction : public GameActionBase<GAME_COMMAND_SET_RIDE_NAME, GameActionResult>
{ {
@ -92,10 +96,10 @@ public:
gfx_invalidate_screen(); gfx_invalidate_screen();
// Force ride list window refresh // Refresh windows that display ride name
rct_window *w = window_find_by_class(WC_RIDE_LIST); auto windowManager = GetContext()->GetUiContext()->GetWindowManager();
if (w != NULL) windowManager->BroadcastIntent(Intent(INTENT_ACTION_REFRESH_RIDE_LIST));
w->no_list_items = 0; windowManager->BroadcastIntent(Intent(INTENT_ACTION_REFRESH_GUEST_LIST));
auto res = std::make_unique<GameActionResult>(); auto res = std::make_unique<GameActionResult>();
res->Position.x = ride->overall_view.x * 32 + 16; res->Position.x = ride->overall_view.x * 32 + 16;

View File

@ -26,7 +26,7 @@ namespace OpenRCT2 { namespace Ui
rct_window * OpenDetails(uint8 type, sint32 id) override { return nullptr; } rct_window * OpenDetails(uint8 type, sint32 id) override { return nullptr; }
rct_window * ShowError(rct_string_id title, rct_string_id message) override { return nullptr; } rct_window * ShowError(rct_string_id title, rct_string_id message) override { return nullptr; }
rct_window * OpenIntent(Intent * intent) override { return nullptr; }; rct_window * OpenIntent(Intent * intent) override { return nullptr; };
void BroadcastIntent(Intent * intent) override { } void BroadcastIntent(const Intent &intent) override { }
void ForceClose(rct_windowclass windowClass) override { } void ForceClose(rct_windowclass windowClass) override { }
void UpdateMapTooltip() override { } void UpdateMapTooltip() override { }
void HandleKeyboard(bool isTitle) override { } void HandleKeyboard(bool isTitle) override { }

View File

@ -39,7 +39,7 @@ namespace OpenRCT2
virtual rct_window * OpenView(uint8 view) abstract; virtual rct_window * OpenView(uint8 view) abstract;
virtual rct_window * OpenDetails(uint8 type, sint32 id) abstract; virtual rct_window * OpenDetails(uint8 type, sint32 id) abstract;
virtual rct_window * OpenIntent(Intent * intent) abstract; virtual rct_window * OpenIntent(Intent * intent) abstract;
virtual void BroadcastIntent(Intent * intent) abstract; virtual void BroadcastIntent(const Intent &intent) abstract;
virtual rct_window * ShowError(rct_string_id title, rct_string_id message) abstract; virtual rct_window * ShowError(rct_string_id title, rct_string_id message) abstract;
virtual void ForceClose(rct_windowclass windowClass) abstract; virtual void ForceClose(rct_windowclass windowClass) abstract;
virtual void UpdateMapTooltip() abstract; virtual void UpdateMapTooltip() abstract;

View File

@ -62,7 +62,7 @@ Intent * Intent::putExtra(uint32 key, close_callback value)
return this; return this;
} }
rct_windowclass Intent::GetWindowClass() rct_windowclass Intent::GetWindowClass() const
{ {
return this->_Class; return this->_Class;
} }

View File

@ -30,7 +30,7 @@ private:
std::map<uint32, IntentData> _Data; std::map<uint32, IntentData> _Data;
public: public:
explicit Intent(rct_windowclass windowclass); explicit Intent(rct_windowclass windowclass);
rct_windowclass GetWindowClass(); rct_windowclass GetWindowClass() const;
void * GetPointerExtra(uint32 key); void * GetPointerExtra(uint32 key);
std::string GetStringExtra(uint32 key); std::string GetStringExtra(uint32 key);
uint32 GetUIntExtra(uint32 key); uint32 GetUIntExtra(uint32 key);
@ -82,6 +82,7 @@ extern "C" {
INTENT_ACTION_SET_DEFAULT_SCENERY_CONFIG, INTENT_ACTION_SET_DEFAULT_SCENERY_CONFIG,
INTENT_ACTION_REFRESH_SCENERY, INTENT_ACTION_REFRESH_SCENERY,
INTENT_ACTION_INVALIDATE_TICKER_NEWS, INTENT_ACTION_INVALIDATE_TICKER_NEWS,
INTENT_ACTION_REFRESH_GUEST_LIST,
}; };
Intent *intent_create(rct_windowclass clss); Intent *intent_create(rct_windowclass clss);