mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-01 11:15:33 +00:00
Selector changes
This commit is contained in:
parent
176c1050b7
commit
690ac102dc
3 changed files with 140 additions and 34 deletions
|
|
@ -1,4 +1,6 @@
|
|||
using Cirno.Scripts.Components.Actors;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using Cirno.Scripts.Components.Actors;
|
||||
using Cirno.Scripts.Interactables;
|
||||
using Godot;
|
||||
|
||||
|
|
@ -29,6 +31,8 @@ public partial class IsoActivationProvider: Area3D, IModule<PlayerState, Charact
|
|||
|
||||
public IStateMachine<PlayerState, CharacterBody3D> StateMachine { get; private set; }
|
||||
|
||||
private CollisionShape3D _collisionShape;
|
||||
|
||||
public void EnterState(PlayerState state)
|
||||
{
|
||||
Enabled = true;
|
||||
|
|
@ -47,6 +51,8 @@ public partial class IsoActivationProvider: Area3D, IModule<PlayerState, Charact
|
|||
{
|
||||
StateMachine = machine;
|
||||
|
||||
_collisionShape = GetNode<CollisionShape3D>("CollisionShape");
|
||||
|
||||
_selectorController.Hide();
|
||||
|
||||
SpawnSelector();
|
||||
|
|
@ -102,13 +108,14 @@ public partial class IsoActivationProvider: Area3D, IModule<PlayerState, Charact
|
|||
|
||||
public void PhysicsProcess(double delta)
|
||||
{
|
||||
//_selectorController.PhysicsProcess(delta);
|
||||
_selectorController.PhysicsProcess(delta);
|
||||
|
||||
HandleInteraction();
|
||||
}
|
||||
|
||||
public void HandleInteraction()
|
||||
{
|
||||
if (!_selectorController.CanSelect) return;
|
||||
if (_inputProvider.GetUseJustPressed())
|
||||
{
|
||||
if (!TrySelect())
|
||||
|
|
@ -121,6 +128,7 @@ public partial class IsoActivationProvider: Area3D, IModule<PlayerState, Charact
|
|||
|
||||
if (_inputProvider.GetScanJustPressed())
|
||||
{
|
||||
var items = ScanTargets();
|
||||
_selectorController.SelectNext();
|
||||
}
|
||||
}
|
||||
|
|
@ -143,9 +151,13 @@ public partial class IsoActivationProvider: Area3D, IModule<PlayerState, Charact
|
|||
if (success)
|
||||
{
|
||||
// Deselect and scan for next
|
||||
_selectorController.RemoveInteractable(selected);
|
||||
_selectorController.SelectNext();
|
||||
//_selector.RemoveInteractable(selected);
|
||||
//_selectorController.RemoveInteractable(selected);
|
||||
_selectorController.DeselectWithCooldown();
|
||||
|
||||
// Do this at end of frame instead
|
||||
//_selectorController.SelectNext();
|
||||
_selectorController.SelectNextDelayed();
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
@ -157,6 +169,41 @@ public partial class IsoActivationProvider: Area3D, IModule<PlayerState, Charact
|
|||
|
||||
//var query = PhysicsRayQueryParameters2D.Create(Vector2.Zero, )
|
||||
}
|
||||
|
||||
|
||||
|
||||
private List<IInteractable> ScanTargets()
|
||||
{
|
||||
var spaceState = GetWorld3D().DirectSpaceState;
|
||||
var query = new PhysicsShapeQueryParameters3D()
|
||||
{
|
||||
Shape = _collisionShape.Shape,
|
||||
CollideWithBodies = false,
|
||||
CollideWithAreas = true,
|
||||
CollisionMask = this.CollisionMask,
|
||||
Exclude = [GetRid()],
|
||||
|
||||
};
|
||||
|
||||
var targets = spaceState.IntersectShape(query);
|
||||
if (targets.Count is 0) return null;
|
||||
var found = targets.Select(resDict =>
|
||||
{
|
||||
var collider = resDict["collider"].As<Node3D>();
|
||||
if (collider.IsInGroup("Interactable") && collider is IInteractable interactable &&
|
||||
interactable.CanActivate())
|
||||
{
|
||||
return interactable;
|
||||
}
|
||||
else
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
).Where(x => x is not null).ToList();
|
||||
|
||||
return found;
|
||||
}
|
||||
|
||||
private void _on_interaction_controller_area_entered(Area3D area)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -6,11 +6,25 @@ namespace Cirno.Scripts.Components.FSM._3DPlayer;
|
|||
|
||||
public partial class SelectorController : Node
|
||||
{
|
||||
[Signal] public delegate void ShowSelectorEventHandler();
|
||||
[Signal] public delegate void HideSelectorEventHandler();
|
||||
[Signal] public delegate void ChangePositionEventHandler(Vector2 position);
|
||||
[Signal]
|
||||
public delegate void ShowSelectorEventHandler();
|
||||
|
||||
[Signal]
|
||||
public delegate void HideSelectorEventHandler();
|
||||
|
||||
[Signal]
|
||||
public delegate void ChangePositionEventHandler(Vector2 position);
|
||||
|
||||
[Signal]
|
||||
public delegate void ChangeParent3DEventHandler(Node3D node);
|
||||
|
||||
private bool _canSelect = true;
|
||||
|
||||
public bool CanSelect => _canSelect;
|
||||
|
||||
private bool _autoSelect = false;
|
||||
|
||||
[Signal] public delegate void ChangeParent3DEventHandler(Node3D node);
|
||||
private double _cooldownTimer = 0f;
|
||||
|
||||
private Interactable _lastInteractable;
|
||||
|
||||
|
|
@ -31,18 +45,25 @@ public partial class SelectorController : Node
|
|||
if (value < 0)
|
||||
{
|
||||
_selectedInteractable = _interactables.Count - 1;
|
||||
// if (_selectedInteractable < 0)
|
||||
// {
|
||||
// _selectedInteractable = 0;
|
||||
// }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
public IInteractable SelectedInteractable
|
||||
{
|
||||
// The problem here is that if it's deselected the index is -1
|
||||
get =>
|
||||
_interactables.Count > 0
|
||||
? SelectedInteractableIndex >= _interactables.Count
|
||||
? _interactables[^1]
|
||||
: _interactables[SelectedInteractableIndex]
|
||||
: null;
|
||||
SelectedInteractableIndex < 0
|
||||
? null
|
||||
: _interactables.Count > 0
|
||||
? SelectedInteractableIndex >= _interactables.Count
|
||||
? _interactables[^1]
|
||||
: _interactables[SelectedInteractableIndex]
|
||||
: null;
|
||||
set
|
||||
{
|
||||
// Passing null deselects the interactable
|
||||
|
|
@ -63,7 +84,7 @@ public partial class SelectorController : Node
|
|||
NotifyChanged(value);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
public void SelectNext()
|
||||
{
|
||||
SelectedInteractableIndex += 1;
|
||||
|
|
@ -73,28 +94,48 @@ public partial class SelectorController : Node
|
|||
// _selectedInteractable = 0;
|
||||
// }
|
||||
|
||||
if (_interactables.Count > 0)
|
||||
if (_interactables.Count <= 0)
|
||||
{
|
||||
SelectedInteractable = _interactables[_selectedInteractable];
|
||||
}
|
||||
else
|
||||
{
|
||||
_selectedInteractable = -1;
|
||||
SelectedInteractable = null;
|
||||
//SelectedInteractableIndex = -1;
|
||||
}
|
||||
|
||||
// No need to set it because the selection is already handled when reading
|
||||
// else
|
||||
// {
|
||||
// SelectedInteractable = _interactables[_selectedInteractable];
|
||||
// }
|
||||
|
||||
UpdatePosition();
|
||||
}
|
||||
|
||||
|
||||
public void SelectNextDelayed()
|
||||
{
|
||||
if (!_canSelect)
|
||||
{
|
||||
_autoSelect = true;
|
||||
}
|
||||
else
|
||||
{
|
||||
SelectNext();
|
||||
}
|
||||
//CallDeferred(MethodName.SelectNext);
|
||||
}
|
||||
|
||||
public void AddInteractable(IInteractable interactable)
|
||||
{
|
||||
if (!_interactables.Contains(interactable))
|
||||
{
|
||||
_interactables.Add(interactable);
|
||||
|
||||
if (_interactables.Count == 1)
|
||||
{
|
||||
_selectedInteractable = 0;
|
||||
}
|
||||
// Always set the current one to the newest
|
||||
SelectedInteractable = interactable;
|
||||
|
||||
// if (_interactables.Count == 1)
|
||||
// {
|
||||
// SelectedInteractable = interactable;
|
||||
// //_selectedInteractable = 0;
|
||||
// }
|
||||
}
|
||||
|
||||
UpdatePosition();
|
||||
|
|
@ -109,8 +150,17 @@ public partial class SelectorController : Node
|
|||
|
||||
public void Deselect()
|
||||
{
|
||||
_selectedInteractable = -1;
|
||||
SelectedInteractable = null;
|
||||
//SelectedInteractableIndex = -1;
|
||||
EmitSignalHideSelector();
|
||||
|
||||
}
|
||||
|
||||
public void DeselectWithCooldown()
|
||||
{
|
||||
Deselect();
|
||||
_canSelect = false;
|
||||
_cooldownTimer = 0d;
|
||||
}
|
||||
|
||||
public void UpdatePosition()
|
||||
|
|
@ -127,7 +177,7 @@ public partial class SelectorController : Node
|
|||
EmitSignalHideSelector();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
private void NotifyChanged(IInteractable interactable)
|
||||
{
|
||||
//EmitSignal(nameof(SelectedItemInteractableChanged), interactable);
|
||||
|
|
@ -138,9 +188,18 @@ public partial class SelectorController : Node
|
|||
EmitSignalHideSelector();
|
||||
}
|
||||
|
||||
// public void PhysicsProcess(double delta)
|
||||
// {
|
||||
// if (SelectedInteractable is null) return;
|
||||
// //EmitSignalChangePosition(SelectedInteractable.GetScreenPosition());
|
||||
// }
|
||||
public void PhysicsProcess(double delta)
|
||||
{
|
||||
if (_canSelect is true) return;
|
||||
_cooldownTimer += delta;
|
||||
|
||||
if (!(_cooldownTimer >= 0.2d)) return;
|
||||
_canSelect = true;
|
||||
_cooldownTimer = 0;
|
||||
if (!_autoSelect) return;
|
||||
_autoSelect = false;
|
||||
SelectNext();
|
||||
//if (SelectedInteractable is null) return;
|
||||
//EmitSignalChangePosition(SelectedInteractable.GetScreenPosition());
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue