revival/game/Assets/Scripts/Artefacts/PickUpDisplay.cs

57 lines
1.5 KiB
C#
Raw Normal View History

using System;
2021-03-01 19:09:21 +01:00
using Ktyl.Util;
using System.Collections.Generic;
using UnityEngine;
2021-03-02 17:33:31 +01:00
using UnityEngine.InputSystem;
using UnityEngine.UI;
2021-03-01 19:09:21 +01:00
public class PickUpDisplay : MonoBehaviour
{
public bool paused => _paused;
[SerializeField] private static bool _paused;
[SerializeField] private GameObject artefactUI;
2021-03-02 17:33:31 +01:00
[SerializeField] private GameObject Player;
[SerializeField] private Text artefactText;
2021-03-02 18:50:27 +01:00
[SerializeField] private InputSettings inputSettings;
[SerializeField] private DialogueSystem dialogue;
[SerializeField] private ArtefactSystem artefacts;
2021-03-01 19:09:21 +01:00
2021-03-02 17:33:31 +01:00
private Artefact chosenArtefact;
private void Start()
2021-03-01 19:09:21 +01:00
{
EventHandler.current.onArtefactUI += PopUpOn;
}
2021-03-02 17:33:31 +01:00
private void Update()
2021-03-02 17:33:31 +01:00
{
var artefact = artefacts.GetNearbyArtefact();
if (!artefact) return;
chosenArtefact = artefact;
2021-03-02 17:33:31 +01:00
}
2021-03-01 19:09:21 +01:00
public void PopUpOn()
{
_paused = true;
artefactUI.SetActive(true);
2021-03-02 17:33:31 +01:00
Player.GetComponent<PlayerInput>().enabled = false;
artefactText.text = "You have unlocked " + chosenArtefact.Name + "!";
2021-03-02 18:50:27 +01:00
inputSettings.updateMode = (InputSettings.UpdateMode)1;
2021-03-02 18:10:12 +01:00
Time.timeScale = 0f;
2021-03-01 19:09:21 +01:00
}
public void PopUpOff()
{
_paused = false;
artefactUI.SetActive(false);
2021-03-02 18:50:27 +01:00
inputSettings.updateMode = (InputSettings.UpdateMode)2;
2021-03-02 17:33:31 +01:00
Player.GetComponent<PlayerInput>().enabled = true;
2021-03-02 18:10:12 +01:00
Time.timeScale = 1.0f;
dialogue.PlayLine(chosenArtefact.dialogueKey);
chosenArtefact = null;
2021-03-01 19:09:21 +01:00
}
}