perf(engine): gate frame-hot ECS systems on resource changes
- find_draggable_at: break instead of return None on non-top non-tableau hit so remaining pile searches are not abandoned early (M-9) - update_stock_count_badge: run only when GameStateResource changes (M-5) - update_drop_highlights: run only when DragState changes (M-6) - update_high_contrast_borders/backgrounds: run only when SettingsResource changes (M-7) - update_selection_hud: run only when SelectionState or GameStateResource changes; uses resource_exists_and_changed to avoid panic in tests where SelectionState is not registered (M-8) - Volume toast threshold: f32::EPSILON → 0.001 to avoid spurious toasts from float rounding noise in settings events (M-10) - check_no_moves: collapse read().next().is_some() + clear() into a single read().count() > 0 drain (M-11) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -417,7 +417,13 @@ impl Plugin for HudPlugin {
|
||||
.add_systems(Update, (update_hud_avatar, handle_avatar_button))
|
||||
.add_systems(Update, update_won_previously.after(GameMutation))
|
||||
.add_systems(Update, announce_auto_complete.after(GameMutation))
|
||||
.add_systems(Update, update_selection_hud)
|
||||
.add_systems(
|
||||
Update,
|
||||
update_selection_hud.run_if(
|
||||
resource_exists_and_changed::<SelectionState>
|
||||
.or(resource_exists_and_changed::<GameStateResource>),
|
||||
),
|
||||
)
|
||||
.add_systems(Update, update_hud_typography)
|
||||
.add_systems(
|
||||
Update,
|
||||
|
||||
Reference in New Issue
Block a user