2022-12-11 23:06:16 +01:00
|
|
|
using System.Collections;
|
|
|
|
using System.Collections.Generic;
|
2023-01-05 14:19:56 +01:00
|
|
|
using GUI_Scripts.ProceduralGeneration;
|
2022-12-11 23:06:16 +01:00
|
|
|
using UnityEngine;
|
|
|
|
|
2022-12-20 04:37:00 +01:00
|
|
|
[RequireComponent(typeof(NPC))]
|
2022-12-20 15:23:09 +01:00
|
|
|
[RequireComponent(typeof(NpcDialogueManager))]
|
2022-12-11 23:06:16 +01:00
|
|
|
public class NPCFollowing : MonoBehaviour
|
|
|
|
{
|
|
|
|
private Rigidbody2D myRigidbody;
|
|
|
|
public Animator anim;
|
|
|
|
|
2022-12-20 04:37:00 +01:00
|
|
|
public Vector3 homePosition;
|
2022-12-11 23:06:16 +01:00
|
|
|
public Transform targetPosition;
|
|
|
|
|
|
|
|
public AStarPathfindingAgent agent;
|
|
|
|
|
2022-12-20 04:37:00 +01:00
|
|
|
//public GameObject player;
|
2022-12-11 23:06:16 +01:00
|
|
|
|
|
|
|
public bool approaching = false;
|
|
|
|
public bool isAfterAction = false;
|
|
|
|
public bool isDuringConversation = false;
|
2022-12-20 04:37:00 +01:00
|
|
|
public float actionRadius = 1.5f;
|
2022-12-11 23:06:16 +01:00
|
|
|
|
|
|
|
void Awake()
|
|
|
|
{
|
2022-12-20 04:37:00 +01:00
|
|
|
agent = GetComponent<AStarPathfindingAgent>();
|
2022-12-11 23:06:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Start is called before the first frame update
|
|
|
|
void Start()
|
|
|
|
{
|
2022-12-24 20:16:41 +01:00
|
|
|
isAfterAction = System.Convert.ToBoolean(PlayerPrefs.GetInt(gameObject.GetComponent<NPC>().name + ".FirstDialogue"));
|
2022-12-20 15:23:09 +01:00
|
|
|
|
2022-12-11 23:06:16 +01:00
|
|
|
myRigidbody = GetComponent<Rigidbody2D>();
|
|
|
|
anim = GetComponent<Animator>();
|
2022-12-20 04:37:00 +01:00
|
|
|
homePosition = new Vector3(gameObject.transform.position.x, gameObject.transform.position.y, gameObject.transform.position.z);
|
2022-12-11 23:06:16 +01:00
|
|
|
targetPosition = GameObject.FindWithTag("Player").transform;
|
2022-12-20 15:23:09 +01:00
|
|
|
|
|
|
|
if(!isAfterAction)
|
|
|
|
StartCoroutine(WaitBeforStartingAction(5f));
|
|
|
|
|
2022-12-11 23:06:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Update is called once per frame
|
|
|
|
public void Update()
|
|
|
|
{
|
|
|
|
HandleState();
|
|
|
|
}
|
|
|
|
|
2022-12-20 15:23:09 +01:00
|
|
|
private IEnumerator WaitBeforStartingAction(float waitTime)
|
|
|
|
{
|
|
|
|
while (true)
|
|
|
|
{
|
|
|
|
yield return new WaitForSeconds(waitTime);
|
|
|
|
|
|
|
|
// Start story
|
|
|
|
approaching = true;
|
|
|
|
gameObject.GetComponent<NPC>().State = NPCStateEnum.Walking;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private IEnumerator Wait(float waitTime)
|
|
|
|
{
|
|
|
|
while (true)
|
|
|
|
{
|
|
|
|
yield return new WaitForSeconds(waitTime);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-12-11 23:06:16 +01:00
|
|
|
public void CheckDistance()
|
|
|
|
{
|
2023-01-05 14:19:56 +01:00
|
|
|
anim.SetBool("isRunning", true);
|
2022-12-11 23:06:16 +01:00
|
|
|
StopAllCoroutines();
|
2022-12-20 04:37:00 +01:00
|
|
|
|
2022-12-11 23:06:16 +01:00
|
|
|
if (isAfterAction == false)
|
|
|
|
{
|
|
|
|
if (approaching && Vector2.Distance(targetPosition.position, transform.position) >= actionRadius)
|
|
|
|
{
|
|
|
|
agent.FindPath();
|
2022-12-20 04:37:00 +01:00
|
|
|
|
2022-12-11 23:06:16 +01:00
|
|
|
StartCoroutine(agent.FollowPath());
|
2023-01-05 14:19:56 +01:00
|
|
|
|
2022-12-11 23:06:16 +01:00
|
|
|
}
|
|
|
|
else if (approaching)
|
|
|
|
{
|
2023-01-02 19:31:45 +01:00
|
|
|
//start dialogue here
|
2022-12-11 23:06:16 +01:00
|
|
|
|
2022-12-20 04:37:00 +01:00
|
|
|
gameObject.GetComponent<NPC>().State = NPCStateEnum.Talking;
|
2023-01-05 14:53:42 +01:00
|
|
|
if (targetPosition.position.y > transform.position.y)
|
|
|
|
{
|
|
|
|
anim.SetBool("TurnFront",true);
|
|
|
|
anim.SetBool("isRunning", false);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
anim.SetBool("TurnFront",false);
|
|
|
|
anim.SetBool("isRunning", false);
|
|
|
|
}
|
2023-01-02 19:31:45 +01:00
|
|
|
agent.path.Clear(); // if we are able to talgk we dont want go go further player
|
2022-12-11 23:06:16 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
else if (!approaching && isAfterAction)
|
|
|
|
{
|
2023-01-02 19:31:45 +01:00
|
|
|
Debug.Log(Vector2.Distance(transform.position, homePosition));
|
|
|
|
Debug.Log(homePosition);
|
2023-01-05 21:19:05 +01:00
|
|
|
if (Vector2.Distance(transform.position, homePosition) > 0.95)
|
2022-12-11 23:06:16 +01:00
|
|
|
{
|
2023-01-02 19:31:45 +01:00
|
|
|
//transform.position = Vector2.MoveTowards(transform.position, homePosition, 2 * Time.deltaTime);
|
|
|
|
agent.point = homePosition;
|
|
|
|
|
|
|
|
|
|
|
|
agent.FindPoint();
|
|
|
|
|
|
|
|
StartCoroutine(agent.FollowPath());
|
2022-12-11 23:06:16 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2023-01-05 21:19:05 +01:00
|
|
|
anim.SetBool("isRunning", false);
|
|
|
|
anim.SetBool("TurnFront", false);
|
2022-12-20 04:37:00 +01:00
|
|
|
gameObject.GetComponent<NPC>().State = NPCStateEnum.Pending;
|
2022-12-11 23:06:16 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void OnTriggerExit2D(Collider2D other)
|
|
|
|
{
|
2022-12-20 04:37:00 +01:00
|
|
|
// don't listen when component is disabled
|
|
|
|
if (!gameObject.GetComponent<NPCFollowing>().enabled)
|
|
|
|
return;
|
|
|
|
|
2022-12-11 23:06:16 +01:00
|
|
|
if (approaching && !isAfterAction)
|
|
|
|
{
|
|
|
|
gameObject.GetComponent<NpcDialogueManager>().Dialogue.BreakDialogueStep();
|
|
|
|
isDuringConversation = false;
|
2022-12-20 04:37:00 +01:00
|
|
|
gameObject.GetComponent<NPC>().State = NPCStateEnum.Walking;
|
2022-12-11 23:06:16 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void HandleState()
|
|
|
|
{
|
2022-12-20 04:37:00 +01:00
|
|
|
switch (gameObject.GetComponent<NPC>().State)
|
2022-12-11 23:06:16 +01:00
|
|
|
{
|
|
|
|
case NPCStateEnum.Walking:
|
|
|
|
{
|
|
|
|
CheckDistance();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case NPCStateEnum.Talking:
|
|
|
|
{
|
|
|
|
DoAction();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case NPCStateEnum.Pending:
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
2023-01-04 21:23:02 +01:00
|
|
|
case NPCStateEnum.Attacking:
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
2022-12-11 23:06:16 +01:00
|
|
|
default:
|
|
|
|
{
|
|
|
|
Debug.Log("fancy text nie wiem co zrobic");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void DoAction()
|
|
|
|
{
|
2022-12-20 15:23:09 +01:00
|
|
|
if (approaching == true && isDuringConversation == false && gameObject.GetComponent<NpcDialogueManager>().CanBeOpened)
|
2022-12-11 23:06:16 +01:00
|
|
|
{
|
|
|
|
isDuringConversation = true;
|
|
|
|
gameObject.GetComponent<NpcDialogueManager>().Dialogue.StartDialogue();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void AfterAction()
|
|
|
|
{
|
|
|
|
approaching = false;
|
|
|
|
isAfterAction = true;
|
2022-12-20 04:37:00 +01:00
|
|
|
isDuringConversation = false;
|
2022-12-11 23:06:16 +01:00
|
|
|
PlayerPrefs.SetInt(gameObject.name + ".FirstDialogue", System.Convert.ToInt32(isAfterAction));
|
2022-12-20 04:37:00 +01:00
|
|
|
gameObject.GetComponent<NPC>().State = NPCStateEnum.Walking;
|
2022-12-11 23:06:16 +01:00
|
|
|
}
|
|
|
|
}
|