`chore(application): extract appearance controller and unify UI flow`
- Refactor UI application architecture: extracted appearance controller into ui_services.hpp + implementation updates
- Update UI components and managers to use new service layer:
- `action_bar_panel`, `auth_screen`, `character_screen`, `chat_panel`, `combat_ui`, `dialog_manager`, `game_screen`, `settings_panel`, `social_panel`, `toast_manager`, `ui_manager`, `window_manager`
- Adjust core application entrypoints:
- application.cpp
- Update component implementations for new controller flow:
- action_bar_panel.cpp, `chat_panel.cpp`, `combat_ui.cpp`, `dialog_manager.cpp`, `game_screen.cpp`, `settings_panel.cpp`, `social_panel.cpp`, `toast_manager.cpp`, `window_manager.cpp`
These staged changes implement a major architectural refactor for UI/appearance controller separation
2026-04-01 20:59:17 +03:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
namespace wowee {
|
|
|
|
|
|
|
|
|
|
// Forward declarations
|
|
|
|
|
namespace core {
|
|
|
|
|
class Window;
|
|
|
|
|
class EntitySpawner;
|
|
|
|
|
class AppearanceComposer;
|
|
|
|
|
class WorldLoader;
|
|
|
|
|
}
|
|
|
|
|
namespace rendering { class Renderer; }
|
|
|
|
|
namespace pipeline { class AssetManager; }
|
|
|
|
|
namespace game {
|
|
|
|
|
class GameHandler;
|
|
|
|
|
class ExpansionRegistry;
|
|
|
|
|
}
|
|
|
|
|
namespace addons { class AddonManager; }
|
|
|
|
|
namespace audio { class AudioCoordinator; }
|
|
|
|
|
|
|
|
|
|
namespace ui {
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* UI Services - Dependency injection container for UI components.
|
|
|
|
|
*
|
refactor: extract spline math, consolidate packet parsing, decompose TransportManager
Extract CatmullRomSpline (include/math/spline.hpp, src/math/spline.cpp) as a
standalone, immutable, thread-safe spline module with O(log n) binary segment
search and fused position+tangent evaluation — replacing the duplicated O(n)
evalTimedCatmullRom/orientationFromTangent pair in TransportManager.
Consolidate 7 copies of spline packet parsing into shared functions in
game/spline_packet.{hpp,cpp}: parseMonsterMoveSplineBody (WotLK/TBC),
parseMonsterMoveSplineBodyVanilla, parseClassicMoveUpdateSpline,
parseWotlkMoveUpdateSpline, and decodePackedDelta. Named SplineFlag constants
replace magic hex literals throughout.
Extract TransportPathRepository (game/transport_path_repository.{hpp,cpp}) from
TransportManager — owns path data, DBC loading, and path inference. Paths stored
as PathEntry wrapping CatmullRomSpline + metadata (zOnly, fromDBC, worldCoords).
TransportManager reduced from ~1200 to ~500 lines, focused on transport lifecycle
and server sync.
Signed-off-by: Pavel Okhlopkov <pavel.okhlopkov@flant.com>
2026-04-11 08:30:28 +03:00
|
|
|
* Break the singleton Phase B
|
`chore(application): extract appearance controller and unify UI flow`
- Refactor UI application architecture: extracted appearance controller into ui_services.hpp + implementation updates
- Update UI components and managers to use new service layer:
- `action_bar_panel`, `auth_screen`, `character_screen`, `chat_panel`, `combat_ui`, `dialog_manager`, `game_screen`, `settings_panel`, `social_panel`, `toast_manager`, `ui_manager`, `window_manager`
- Adjust core application entrypoints:
- application.cpp
- Update component implementations for new controller flow:
- action_bar_panel.cpp, `chat_panel.cpp`, `combat_ui.cpp`, `dialog_manager.cpp`, `game_screen.cpp`, `settings_panel.cpp`, `social_panel.cpp`, `toast_manager.cpp`, `window_manager.cpp`
These staged changes implement a major architectural refactor for UI/appearance controller separation
2026-04-01 20:59:17 +03:00
|
|
|
*
|
|
|
|
|
* Replaces Application::getInstance() calls throughout UI code.
|
|
|
|
|
* Application creates this struct and injects it into UIManager,
|
|
|
|
|
* which propagates it to GameScreen and all child UI components.
|
|
|
|
|
*
|
|
|
|
|
* Owned by Application, shared as const pointers (non-owning).
|
|
|
|
|
*/
|
|
|
|
|
struct UIServices {
|
|
|
|
|
core::Window* window = nullptr;
|
|
|
|
|
rendering::Renderer* renderer = nullptr;
|
|
|
|
|
pipeline::AssetManager* assetManager = nullptr;
|
|
|
|
|
game::GameHandler* gameHandler = nullptr;
|
|
|
|
|
game::ExpansionRegistry* expansionRegistry = nullptr;
|
|
|
|
|
addons::AddonManager* addonManager = nullptr;
|
|
|
|
|
audio::AudioCoordinator* audioCoordinator = nullptr;
|
|
|
|
|
|
|
|
|
|
// Extracted classes (also available individually for Phase A compatibility)
|
|
|
|
|
core::EntitySpawner* entitySpawner = nullptr;
|
|
|
|
|
core::AppearanceComposer* appearanceComposer = nullptr;
|
|
|
|
|
core::WorldLoader* worldLoader = nullptr;
|
|
|
|
|
|
|
|
|
|
// Helper to check if core services are wired
|
|
|
|
|
bool isValid() const {
|
|
|
|
|
return window && renderer && assetManager && gameHandler;
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace ui
|
|
|
|
|
} // namespace wowee
|