您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
136 行
3.2 KiB
136 行
3.2 KiB
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.Localization;
|
|
|
|
public class UIManager : MonoBehaviour
|
|
{
|
|
[SerializeField]
|
|
private UIDialogueManager _dialogueController = default;
|
|
|
|
[SerializeField]
|
|
private UIInventoryManager _inventoryPanel = default;
|
|
|
|
[SerializeField]
|
|
private UIInteractionManager _interactionPanel = default;
|
|
|
|
[SerializeField] private InputReader _inputReader = default;
|
|
[Header("Listening on channels")]
|
|
[Header("Dialogue Events")]
|
|
[SerializeField] private DialogueLineChannelSO _openUIDialogueEvent = default;
|
|
[SerializeField] private VoidEventChannelSO _closeUIDialogueEvent = default;
|
|
|
|
[Header("Inventory Events")]
|
|
[SerializeField] private VoidEventChannelSO _openInventoryScreenEvent = default;
|
|
[SerializeField] private VoidEventChannelSO _openInventoryScreenForCookingEvent = default;
|
|
[SerializeField] private VoidEventChannelSO _closeInventoryScreenEvent = default;
|
|
|
|
[Header("Interaction Events")]
|
|
[SerializeField] private VoidEventChannelSO _onInteractionEndedEvent = default;
|
|
[SerializeField] private InteractionUIEventChannelSO _setInteractionEvent = default;
|
|
|
|
private void OnEnable()
|
|
{
|
|
//Check if the event exists to avoid errors
|
|
if (_openUIDialogueEvent != null)
|
|
{
|
|
_openUIDialogueEvent.OnEventRaised += OpenUIDialogue;
|
|
}
|
|
if (_closeUIDialogueEvent != null)
|
|
{
|
|
_closeUIDialogueEvent.OnEventRaised += CloseUIDialogue;
|
|
}
|
|
if (_openInventoryScreenForCookingEvent != null)
|
|
{
|
|
_openInventoryScreenForCookingEvent.OnEventRaised += SetInventoryScreenForCooking;
|
|
}
|
|
if (_openInventoryScreenEvent != null)
|
|
{
|
|
_openInventoryScreenEvent.OnEventRaised += SetInventoryScreen;
|
|
}
|
|
if (_closeInventoryScreenEvent != null)
|
|
{
|
|
_closeInventoryScreenEvent.OnEventRaised += CloseInventoryScreen;
|
|
}
|
|
if (_setInteractionEvent != null)
|
|
{
|
|
_setInteractionEvent.OnEventRaised += SetInteractionPanel;
|
|
}
|
|
|
|
}
|
|
|
|
private void Start()
|
|
{
|
|
CloseUIDialogue();
|
|
}
|
|
|
|
|
|
|
|
public void OpenUIDialogue(LocalizedString dialogueLine, ActorSO actor)
|
|
{
|
|
|
|
_dialogueController.SetDialogue(dialogueLine, actor);
|
|
_dialogueController.gameObject.SetActive(true);
|
|
}
|
|
public void CloseUIDialogue()
|
|
{
|
|
|
|
_dialogueController.gameObject.SetActive(false);
|
|
}
|
|
|
|
public void SetInventoryScreenForCooking()
|
|
{
|
|
isForCooking = true;
|
|
OpenInventoryScreen();
|
|
|
|
}
|
|
public void SetInventoryScreen()
|
|
{
|
|
isForCooking = false;
|
|
OpenInventoryScreen();
|
|
|
|
}
|
|
bool isForCooking = false;
|
|
void OpenInventoryScreen()
|
|
{
|
|
_inventoryPanel.gameObject.SetActive(true);
|
|
|
|
_inputReader.EnableMenuInput();
|
|
_inputReader.closeInventoryEvent += CloseInventoryScreen;
|
|
if (isForCooking)
|
|
{
|
|
_inventoryPanel.FillInventory(TabType.recipe, true);
|
|
|
|
}
|
|
else
|
|
{
|
|
_inventoryPanel.FillInventory();
|
|
}
|
|
|
|
}
|
|
|
|
|
|
public void CloseInventoryScreen()
|
|
{
|
|
_inventoryPanel.gameObject.SetActive(false);
|
|
|
|
_inputReader.EnableGameplayInput();
|
|
if (isForCooking)
|
|
{
|
|
_onInteractionEndedEvent.RaiseEvent();
|
|
|
|
}
|
|
|
|
_inputReader.closeInventoryEvent -= CloseInventoryScreen;
|
|
}
|
|
|
|
public void SetInteractionPanel(bool isOpenEvent, InteractionType interactionType)
|
|
{
|
|
if (isOpenEvent)
|
|
{
|
|
_interactionPanel.FillInteractionPanel(interactionType);
|
|
}
|
|
_interactionPanel.gameObject.SetActive(isOpenEvent);
|
|
|
|
}
|
|
}
|