150 lines
4.4 KiB
C#
150 lines
4.4 KiB
C#
using BlueWater.Interfaces;
|
|
using BlueWater.Players.Tycoons;
|
|
using BlueWater.Uis;
|
|
using Sirenix.OdinInspector;
|
|
using UnityEngine;
|
|
|
|
namespace BlueWater.Tycoons
|
|
{
|
|
public abstract class InteractionFurniture : MonoBehaviour, IPlayerInteraction
|
|
{
|
|
[BoxGroup("컴포넌트")]
|
|
[field: SerializeField, BoxGroup("컴포넌트")]
|
|
public Transform CenterTransform { get; private set; }
|
|
|
|
[field: SerializeField, BoxGroup("컴포넌트")]
|
|
public SpriteRenderer VisualLook { get; private set; }
|
|
|
|
[field: SerializeField, BoxGroup("컴포넌트")]
|
|
public InteractionCanvas InteractionCanvas { get; private set; }
|
|
|
|
[field: SerializeField, Required, BoxGroup("컴포넌트")]
|
|
public Material OutlineMaterial { get; private set; }
|
|
|
|
[BoxGroup("변수")]
|
|
[field: SerializeField, BoxGroup("변수")]
|
|
public bool EnableInteraction { get; private set; } = true;
|
|
|
|
[field: SerializeField, BoxGroup("변수")]
|
|
public float InteractionRadius { get; private set; } = 2f;
|
|
|
|
[field: SerializeField, BoxGroup("변수")]
|
|
public string InteractionMessage { get; protected set; }
|
|
|
|
[Title("실시간 데이터")]
|
|
[SerializeField]
|
|
protected bool IsOpened;
|
|
|
|
protected TycoonPlayer CurrentTycoonPlayer;
|
|
protected Material OriginalMaterial;
|
|
protected bool IsQuitting;
|
|
protected bool IsShowing;
|
|
protected float HoldingElapsedTime;
|
|
|
|
private void OnDrawGizmosSelected()
|
|
{
|
|
if (!CenterTransform) return;
|
|
|
|
Gizmos.color = Color.blue;
|
|
Gizmos.DrawWireSphere(CenterTransform.position, InteractionRadius);
|
|
}
|
|
|
|
protected virtual void Awake()
|
|
{
|
|
InitializeComponents();
|
|
OriginalMaterial = VisualLook.material;
|
|
}
|
|
|
|
protected virtual void OnEnable()
|
|
{
|
|
EventManager.OnTycoonGameStarted += OpenTycoonSwitch;
|
|
EventManager.OnTycoonGameOvered += ClosedTycoonSwitch;
|
|
|
|
RegisterPlayerInteraction();
|
|
}
|
|
|
|
protected virtual void Start()
|
|
{
|
|
|
|
}
|
|
|
|
protected virtual void OnDisable()
|
|
{
|
|
if (IsQuitting) return;
|
|
|
|
EventManager.OnTycoonGameStarted -= OpenTycoonSwitch;
|
|
EventManager.OnTycoonGameOvered -= ClosedTycoonSwitch;
|
|
|
|
UnregisterPlayerInteraction();
|
|
}
|
|
|
|
private void OnApplicationQuit()
|
|
{
|
|
IsQuitting = true;
|
|
}
|
|
|
|
[Button("컴포넌트 초기화")]
|
|
protected virtual void InitializeComponents()
|
|
{
|
|
if (!CenterTransform)
|
|
{
|
|
CenterTransform = transform;
|
|
}
|
|
|
|
VisualLook = transform.Find("VisualLook").GetComponent<SpriteRenderer>();
|
|
InteractionCanvas = transform.GetComponentInChildren<InteractionCanvas>();
|
|
|
|
CurrentTycoonPlayer = GameManager.Instance.CurrentTycoonPlayer;
|
|
}
|
|
|
|
public abstract void Interaction();
|
|
|
|
public virtual void CancelInteraction() { }
|
|
|
|
public virtual bool CanInteraction() => true;
|
|
|
|
public virtual void ShowInteractionUi()
|
|
{
|
|
VisualLook.material = OutlineMaterial;
|
|
EventManager.InvokeShowInteractionUi(InteractionMessage);
|
|
EventManager.InvokeHoldInteracting(HoldingElapsedTime);
|
|
IsShowing = true;
|
|
}
|
|
|
|
public virtual void HideInteractionUi()
|
|
{
|
|
if (VisualLook)
|
|
{
|
|
VisualLook.material = OriginalMaterial;
|
|
}
|
|
EventManager.InvokeHideInteractionUi();
|
|
IsShowing = false;
|
|
}
|
|
|
|
protected void RegisterPlayerInteraction()
|
|
{
|
|
if (EnableInteraction)
|
|
{
|
|
GameManager.Instance.CurrentTycoonPlayer.TycoonInput.RegisterPlayerInteraction(this);
|
|
}
|
|
}
|
|
|
|
protected void UnregisterPlayerInteraction()
|
|
{
|
|
if (EnableInteraction)
|
|
{
|
|
GameManager.Instance.CurrentTycoonPlayer.TycoonInput.UnregisterPlayerInteraction(this);
|
|
}
|
|
}
|
|
|
|
protected virtual void OpenTycoonSwitch()
|
|
{
|
|
IsOpened = true;
|
|
}
|
|
|
|
protected virtual void ClosedTycoonSwitch()
|
|
{
|
|
IsOpened = false;
|
|
}
|
|
}
|
|
} |