2021-03-02 18:27:51 +00:00
|
|
|
using System;
|
2021-03-01 18:09:21 +00:00
|
|
|
using Ktyl.Util;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using UnityEngine;
|
2021-03-02 16:33:31 +00:00
|
|
|
using UnityEngine.InputSystem;
|
|
|
|
using UnityEngine.UI;
|
2021-03-01 18:09:21 +00:00
|
|
|
|
|
|
|
public class PickUpDisplay : MonoBehaviour
|
|
|
|
{
|
|
|
|
public bool paused => _paused;
|
|
|
|
[SerializeField] private static bool _paused;
|
|
|
|
|
|
|
|
[SerializeField] private GameObject artefactUI;
|
2021-03-02 16:33:31 +00:00
|
|
|
[SerializeField] private Text artefactText;
|
2021-03-02 18:27:51 +00:00
|
|
|
[SerializeField] private DialogueSystem dialogue;
|
2021-03-05 13:26:15 +00:00
|
|
|
[SerializeField] private ArtefactSystem artefacts;
|
2021-03-11 13:31:35 +00:00
|
|
|
[SerializeField] private ArtefactPreview _preview;
|
2021-03-01 18:09:21 +00:00
|
|
|
|
2021-03-11 13:12:19 +00:00
|
|
|
[SerializeField]
|
|
|
|
private GameEvent _uiOpen;
|
|
|
|
|
|
|
|
[SerializeField]
|
|
|
|
private GameEvent _uiClose;
|
|
|
|
|
2021-03-02 16:33:31 +00:00
|
|
|
private Artefact chosenArtefact;
|
|
|
|
|
2021-03-05 13:26:15 +00:00
|
|
|
private void Start()
|
2021-03-01 18:09:21 +00:00
|
|
|
{
|
|
|
|
EventHandler.current.onArtefactUI += PopUpOn;
|
|
|
|
}
|
2021-03-02 16:33:31 +00:00
|
|
|
|
2021-03-05 13:26:15 +00:00
|
|
|
private void Update()
|
2021-03-02 16:33:31 +00:00
|
|
|
{
|
2021-03-05 13:26:15 +00:00
|
|
|
var artefact = artefacts.GetNearbyArtefact();
|
|
|
|
if (!artefact) return;
|
|
|
|
|
|
|
|
chosenArtefact = artefact;
|
2021-03-02 16:33:31 +00:00
|
|
|
}
|
|
|
|
|
2021-03-01 18:09:21 +00:00
|
|
|
public void PopUpOn()
|
|
|
|
{
|
|
|
|
_paused = true;
|
|
|
|
artefactUI.SetActive(true);
|
2021-03-11 13:12:19 +00:00
|
|
|
artefactText.text = chosenArtefact.Name;
|
|
|
|
// inputSettings.updateMode = (InputSettings.UpdateMode)1;
|
2021-03-11 13:31:35 +00:00
|
|
|
dialogue.PlayLine( chosenArtefact.dialogueKey );
|
|
|
|
_preview.Preview( chosenArtefact.Prefab );
|
2021-03-11 13:12:19 +00:00
|
|
|
|
|
|
|
_uiOpen.Raise();
|
2021-03-01 18:09:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void PopUpOff()
|
|
|
|
{
|
|
|
|
_paused = false;
|
2021-03-11 13:31:35 +00:00
|
|
|
artefactUI.SetActive( false );
|
2021-03-11 15:50:19 +00:00
|
|
|
_preview.Dismiss();
|
2021-03-11 13:12:19 +00:00
|
|
|
// inputSettings.updateMode = (InputSettings.UpdateMode)2;
|
2021-03-02 18:27:51 +00:00
|
|
|
chosenArtefact = null;
|
2021-03-11 13:12:19 +00:00
|
|
|
|
|
|
|
_uiClose.Raise();
|
2021-03-01 18:09:21 +00:00
|
|
|
}
|
|
|
|
}
|