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

82 lines
1.8 KiB
C#
Raw Normal View History

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
2021-02-19 21:38:45 +01:00
using Ktyl.Util;
2021-02-23 14:05:42 +01:00
using UnityEngine.Events;
public class ArtefactControl : MonoBehaviour
{
private bool _show;
private bool _canInteract;
[SerializeField]
private Artefact data;
public int artefactID => _artefactID;
private int _artefactID;
2021-02-19 21:38:45 +01:00
[SerializeField] private SerialInt _nearbyArtefactID;
2021-02-23 14:05:42 +01:00
[SerializeField] private ArtefactSystem _artefacts;
private void Start()
{
_artefactID = data.artefactID;
_show = data.show;
_canInteract = data.canInteract;
EventHandler.current.onArtefactTriggerEnter += NearArtefact;
EventHandler.current.onArtefactTriggerExit += AwayArtefact;
EventHandler.current.onArtefactPickUp += PickUp;
}
private void NearArtefact(int id)
{
if (id == this._artefactID)
{
_show = true;
this._canInteract = true;
}
}
private void AwayArtefact(int id)
{
if (id == this._artefactID)
{
_show = false;
this._canInteract = false;
}
}
private void PickUp(int id)
{
if (id == this._artefactID)
{
if (_canInteract == true)
{
2021-02-23 14:05:42 +01:00
// artefact system informs other systems about found artefact
_artefacts.FindArtefact(data);
}
2021-02-23 14:05:42 +01:00
if (this.gameObject != null)
Destroy(this.gameObject);
_nearbyArtefactID.Value = -1;
2021-02-19 21:38:45 +01:00
//PlayerInputHandler.id = 0;
}
}
void OnGUI()
{
if (_show)
{
GUI.Label(new Rect(Screen.width / 2 - 50, 5, 100, 100), "Press E to pickup");
}
}
}