114 lines
5.1 KiB
C#
114 lines
5.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using UnityEditor;
|
|
using UnityEngine;
|
|
|
|
|
|
public class EquipmentPanelController : DraggablePanelController
|
|
{
|
|
[SerializeField] protected GameObject _panelAdditionalSlotsContent;
|
|
|
|
protected override UIBaseManager<IndexValuePair<int, EquippableItem>> FetchUiManager()
|
|
{
|
|
return GameObject.FindObjectOfType<EquipmentUIManager>();
|
|
}
|
|
|
|
public override void BuildPanelSlots()
|
|
{
|
|
InitSlotsList();
|
|
}
|
|
|
|
public void InitSlotsList()
|
|
{
|
|
_panelContent.transform.Find("equipment_slot_helmet").GetComponent<EquipmentSlot>()._PanelController = this;
|
|
_panelContent.transform.Find("equipment_slot_armor").GetComponent<EquipmentSlot>()._PanelController = this;
|
|
_panelContent.transform.Find("equipment_slot_weapon").GetComponent<EquipmentSlot>()._PanelController = this;
|
|
_panelContent.transform.Find("equipment_slot_boots").GetComponent<EquipmentSlot>()._PanelController = this;
|
|
_panelAdditionalSlotsContent.transform.Find("equipment_slot_ring").GetComponent<EquipmentSlot>()._PanelController = this;
|
|
_panelAdditionalSlotsContent.transform.Find("equipment_slot_bracelet").GetComponent<EquipmentSlot>()._PanelController = this;
|
|
_panelAdditionalSlotsContent.transform.Find("equipment_slot_necklet").GetComponent<EquipmentSlot>()._PanelController = this;
|
|
_panelAdditionalSlotsContent.transform.Find("equipment_slot_potion_i").GetComponent<EquipmentSlot>()._PanelController = this;
|
|
_panelAdditionalSlotsContent.transform.Find("equipment_slot_potion_ii").GetComponent<EquipmentSlot>()._PanelController = this;
|
|
|
|
ChildBoxList.Add(SetupDragAndDropToSlot(_panelContent.transform.Find("equipment_slot_helmet").GetComponent<EquipmentSlot>()));
|
|
ChildBoxList.Add(SetupDragAndDropToSlot(_panelContent.transform.Find("equipment_slot_armor").GetComponent<EquipmentSlot>()));
|
|
ChildBoxList.Add(SetupDragAndDropToSlot(_panelContent.transform.Find("equipment_slot_weapon").GetComponent<EquipmentSlot>()));
|
|
ChildBoxList.Add(SetupDragAndDropToSlot(_panelContent.transform.Find("equipment_slot_boots").GetComponent<EquipmentSlot>()));
|
|
ChildBoxList.Add(SetupDragAndDropToSlot(_panelAdditionalSlotsContent.transform.Find("equipment_slot_ring").GetComponent<EquipmentSlot>()));
|
|
ChildBoxList.Add(SetupDragAndDropToSlot(_panelAdditionalSlotsContent.transform.Find("equipment_slot_bracelet").GetComponent<EquipmentSlot>()));
|
|
ChildBoxList.Add(SetupDragAndDropToSlot(_panelAdditionalSlotsContent.transform.Find("equipment_slot_necklet").GetComponent<EquipmentSlot>()));
|
|
ChildBoxList.Add(SetupDragAndDropToSlot(_panelAdditionalSlotsContent.transform.Find("equipment_slot_potion_i").GetComponent<EquipmentSlot>()));
|
|
ChildBoxList.Add(SetupDragAndDropToSlot(_panelAdditionalSlotsContent.transform.Find("equipment_slot_potion_ii").GetComponent<EquipmentSlot>()));
|
|
}
|
|
|
|
|
|
public override GameObject BuildSlot(int key, GameObject _parent) { throw new NotImplementedException(); }
|
|
|
|
|
|
// 2. Set up panel additn items to it
|
|
|
|
//public void SetUp - in parent
|
|
|
|
public override void BuildPanelContent(List<IndexValuePair<int, EquippableItem>> elements)
|
|
{
|
|
|
|
base.BuildPanelContent(elements);
|
|
|
|
Debug.Log("Build content");
|
|
foreach (IndexValuePair<int, EquippableItem> element in elements)
|
|
{
|
|
Debug.Log($"key: {element.Key} - value: {element.Value}");
|
|
|
|
if(element.Value != null)
|
|
ChildBoxList.Where(slot => ((EquipmentSlot)slot).type == (EquipmentPanelSlotsTypeEnum)element.Key).ToList().ForEach(slot => slot.SetItem((EquippableItem)element.Value));
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
public override void ClearSlots()
|
|
{
|
|
foreach (ItemSlot ChestSlot in ChildBoxList)
|
|
{
|
|
ChestSlot.ResetSlot();
|
|
}
|
|
}
|
|
|
|
public override void EndDrag(ItemSlot itemSlot)
|
|
{
|
|
Debug.Log("End Drag");
|
|
if (!DraggedSlotController.Instance.IsDragged()) // if there was nothing dragged - ignore event
|
|
return;
|
|
|
|
DraggedSlotController.Instance.RemoveDraggedSlot();
|
|
|
|
if (!itemSlot.Item)
|
|
((ItemSlot)ChildBoxList.Where(slot => slot.Number == itemSlot.Number).First()).ResetSlot();
|
|
else
|
|
((ItemSlot)ChildBoxList.Where(slot => slot.Number == itemSlot.Number).First()).SetItem(itemSlot.Item);
|
|
|
|
|
|
var ChildBoxListCopy = new List<IndexValuePair<int, EquippableItem>>(ChildBoxList.Where(slot => slot.Item != null).Select(slot => new IndexValuePair<int, EquippableItem>(slot.Number, slot.Item)).ToList());
|
|
|
|
Debug.Log(ChildBoxListCopy.Count());
|
|
UiManager.RemoveAll();
|
|
Debug.Log(ChildBoxListCopy.Count());
|
|
|
|
foreach (IndexValuePair<int, EquippableItem> slot in ChildBoxListCopy)
|
|
{
|
|
if (slot.Value != null)
|
|
{
|
|
Debug.Log($"Slot nr: {slot.Key} with item: {slot.Value}");
|
|
UiManager.Add(new IndexValuePair<int, EquippableItem>(slot.Key, slot.Value));
|
|
}
|
|
else
|
|
{
|
|
UiManager.Add(new IndexValuePair<int, EquippableItem>(slot.Key, null));
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|