- Created Save/Load & Death Loop asset sheet detailing checkpoint, death handling, and respawn systems. - Added UI widget creation sheets for pause menu, settings menu, inventory, journal viewer, objective display, notification toast, screen effect controller, accessibility UI, diegetic HUD frame, menu flow controller, and credits screen. - Implemented HUD controller and interaction prompt display assets with detailed wiring instructions. - Established narrative systems asset sheet including components for narrative state, objectives, dialogue playback, and branching consequences. - Developed weapons, AI, and adaptive systems asset creation sheet outlining weapon base, enemy AI components, and adaptive gameplay mechanics. - Compiled meta, settings, and polish asset creation sheet covering progress tracking, achievement systems, accessibility settings, and various polish components. - Defined input actions and mapping contexts for enhanced input system, including gameplay actions and context priorities. - Created state management assets including enums, structs, data asset, and state manager component for action gating and state transitions.
4.7 KiB
4.7 KiB
State Management Assets — Enums, Structs, Data Asset
UE5 Path:
Content/Framework/State/Assets: 4 Enums + 3 Structs + 1 Data Asset + 1 Component
Enums — Create All (4 assets)
E_PlayerActionState (42 values)
- Content Browser →
Content/Framework/State/ - Right-click → Blueprint → Enumeration
- Name:
E_PlayerActionState
Values to Add:
Idle, Walking, Sprinting, Crouching, Jumping, Falling, Landing,
Sliding, Vaulting, Mantling, Climbing, Swimming, Crawling,
Firing, Aiming, Reloading, Melee, Blocking, Throwing,
Interacting, Inspecting, UsingItem, ConsumingItem,
Hiding, Peeking, HoldingBreath, Lockpicking, Hacking,
Dialoguing, Reading, Examining, Crafting,
Dead, Dying, Unconscious, Staggered, KnockedDown,
CutsceneBound, VoidSpace, Menu, Inventory, Journal
E_OverlayState (18 values)
- Name:
E_OverlayState
Values:
None, Aiming, Firing, Reloading, MeleeAttack, Blocking,
UsingItem, Inspecting, Interacting, Throwing,
HoldingBreath, Peeking, Dialoguing, Injured,
Staggered, Carrying, WristwatchActive, MapActive
E_PlayerVitalSignals (5 values)
- Name:
E_PlayerVitalSignals
Values:
Calm, Elevated, Stressed, Panic, Critical
E_ActionRequestResult (8 values)
- Name:
E_ActionRequestResult
Values:
Granted, Denied, BlockedByForce, AlreadyActive,
InvalidState, RequesterNotFound, CooldownActive, VitalThreshold
Structs — Create All (3 assets)
S_StateChangeRequest
- Content Browser →
Content/Framework/State/ - Right-click → Blueprint → Structure
- Name:
S_StateChangeRequest
| Field | Type |
|---|---|
RequestedState |
GameplayTag |
Requester |
Actor (Object Reference) |
Priority |
Integer |
Reason |
String |
Timestamp |
Float |
S_StateGatingRule
- Name:
S_StateGatingRule
| Field | Type |
|---|---|
ActionTag |
GameplayTag |
BlockedByStates |
Array<GameplayTag> |
RequiresStates |
Array<GameplayTag> |
BlockedByOverlays |
Array<GameplayTag> |
bRequiresAuthority |
Boolean |
CooldownSeconds |
Float |
RulePriority |
Integer |
S_ActionPermissionResult
- Name:
S_ActionPermissionResult
| Field | Type |
|---|---|
bPermitted |
Boolean |
ResultCode |
E_ActionRequestResult |
BlockingState |
GameplayTag |
BlockReason |
String |
Data Asset — DA_StateGatingTable
Create
- Content Browser →
Content/Framework/State/ - Right-click → Miscellaneous → Data Asset
- Class:
PrimaryDataAsset - Name:
DA_StateGatingTable
Variables to Add
| Variable | Type | Default |
|---|---|---|
GatingRules |
Array<S_StateGatingRule> |
Empty — populate below |
ForceStackRules |
Array<S_StateGatingRule> |
Empty |
Populate GatingRules (37 action rules — key examples)
| Action | Blocked By |
|---|---|
Framework.State.Action.Sprint |
Crouching, Aiming, Firing, Injured |
Framework.State.Action.Fire |
Sprinting, Reloading, Dead, Menu |
Framework.State.Action.Reload |
Sprinting, Firing, Melee, Dead |
Framework.State.Action.Jump |
Crouching, Dead, CutsceneBound |
Framework.State.Action.Interact |
Sprinting, Firing, Dead, Menu |
Framework.State.Action.Hide |
Sprinting, Firing, Carrying |
Framework.State.Action.Melee |
Reloading, Inspecting, Dead |
Framework.State.Action.UseItem |
Dead, Staggered, CutsceneBound |
Framework.State.Action.Crouch |
Sprinting, Falling, Vaulting |
Framework.State.Action.Inspect |
Sprinting, Hiding, Dead, Menu |
Framework.State.Action.Dialogue |
Sprinting, Firing, Hiding, Dead |
Framework.State.Action.Vault |
Crouching, Aiming, Firing, Carrying |
Framework.State.Action.Aim |
Sprinting, Reloading, Melee, Dead |
Framework.State.Action.Menu |
Dead, CutsceneBound (always permitted otherwise) |
Framework.State.Action.Dead |
Always permitted (force-state — overrides everything) |
Component — BPC_StateManager
Already covered in C++ (Source/Framework/Public/Player/BPC_StateManager.h).
Attach to Pawn
- Open player pawn Blueprint
- Add Component → BPC_StateManager
- In Details →
Gating Table→ assignDA_StateGatingTable - Set
Default Action State→Framework.State.Action.Idle
Test It
- All 4 enums created with correct values
- All 3 structs created with correct fields
DA_StateGatingTablepopulated with 37 rules- PIE:
IsActionPermitted(SprintTag)returnsfalsewhen crouching RequestStateChange(Fire)returnsGrantedwhen idleForceStateChange(Dead)→IsActionPermitted(AnyTag)returnsfalseRestorePreviousState()→ previous state restored