-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathInventorySlotLogic.cs
202 lines (165 loc) · 8.19 KB
/
InventorySlotLogic.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
#region Header
/* ============================================
* Author : Strix
* Initial Creation Date : 2020-02-19
* Summary :
* Template : For Unity Editor V1
============================================ */
#endregion Header
using UnityEngine;
using System.Collections.Generic;
using UnityEngine.EventSystems;
using UnityEngine.UI;
using UIFramework.InventorySlotLogic;
using static UIFramework.InventorySlot;
namespace UIFramework
{
public enum EInventory_StateLogicName
{
}
public enum EInventory_CommandLogicName
{
Instantiate_CloneSlot,
}
public class InventoryLogicFactory
{
public List<InventorySlot_StateLogic> list_StateLogic = new List<InventorySlot_StateLogic>();
public List<InventorySlot_CommandLogic> list_CommandLogic = new List<InventorySlot_CommandLogic>();
public IInventorySlot_StateLogic DoCreate_LibraryLogic_State(EInventorySlot_StateEvent eEvent, EInventory_StateLogicName eLogic, EInventorySlot_StateEvent eEventUndo = EInventorySlot_StateEvent.None)
{
IInventorySlot_StateLogic pLogic = null;
switch (eLogic)
{
default: Debug.LogError("Error - Not Found Logic"); return null;
}
if(pLogic != null)
list_StateLogic.Add(new InventorySlot_StateLogic(eEvent, eEventUndo, pLogic));
return pLogic;
}
public IInventorySlot_CommandLogic DoCreate_LibraryLogic_Command(EInventorySlot_CommandEvent eEvent, EInventory_CommandLogicName eLogic, EInventorySlot_CommandEvent eEventUndo = EInventorySlot_CommandEvent.None)
{
IInventorySlot_CommandLogic pLogic = null;
switch (eLogic)
{
case EInventory_CommandLogicName.Instantiate_CloneSlot: pLogic = new Instantiate_CloneSlot(); break;
default: Debug.LogError("Error - Not Found Logic"); return null;
}
list_CommandLogic.Add(new InventorySlot_CommandLogic(eEvent, eEventUndo, pLogic));
return pLogic;
}
}
namespace InventorySlotLogic
{
/// <summary>
///
/// </summary>
public interface IInventorySlot_StateLogic
{
void IInventorySlot_StateLogic(InventorySlot pSlot);
void IInventorySlot_StateLogic_Undo(InventorySlot pSlot);
}
public class InventorySlot_StateLogic
{
public EInventorySlot_StateEvent eEvent { get; private set; }
public EInventorySlot_StateEvent eEvent_Undo { get; private set; }
public IInventorySlot_StateLogic pLogic { get; private set; }
public InventorySlot_StateLogic(EInventorySlot_StateEvent eStateEvent, IInventorySlot_StateLogic pStateLogic)
{
this.eEvent = eStateEvent; this.pLogic = pStateLogic; this.eEvent_Undo = EInventorySlot_StateEvent.None;
}
public InventorySlot_StateLogic(EInventorySlot_StateEvent eStateEvent, EInventorySlot_StateEvent eStateEvent_Undo, IInventorySlot_StateLogic pStateLogic)
{
this.eEvent = eStateEvent; this.pLogic = pStateLogic; this.eEvent_Undo = eStateEvent_Undo;
}
}
/// <summary>
///
/// </summary>
public interface IInventorySlot_CommandLogic
{
void IInventorySlot_CommandLogic(InventorySlot pSlot, PointerEventData pPointerEventData);
void IInventorySlot_CommandLogic_Undo(InventorySlot pSlot, PointerEventData pPointerEventData);
}
public class InventorySlot_CommandLogic
{
public EInventorySlot_CommandEvent eEvent { get; private set; }
public EInventorySlot_CommandEvent eEvent_Undo { get; private set; }
public IInventorySlot_CommandLogic pLogic { get; private set; }
public InventorySlot_CommandLogic(EInventorySlot_CommandEvent eEvent, IInventorySlot_CommandLogic pLogic)
{
this.eEvent = eEvent; this.pLogic = pLogic; this.eEvent_Undo = EInventorySlot_CommandEvent.None;
}
public InventorySlot_CommandLogic(EInventorySlot_CommandEvent eEvent, EInventorySlot_CommandEvent eEvent_Undo, IInventorySlot_CommandLogic pLogic)
{
this.eEvent = eEvent; this.pLogic = pLogic; this.eEvent_Undo = eEvent_Undo;
}
}
public class Instantiate_CloneSlot : IInventorySlot_CommandLogic
{
InventorySlot _pSlotClone;
RectTransform _pTransform_Parents;
Camera _pCamera;
System.Func<InventorySlot, InventorySlot> _OnInstantiate_CloneSlot;
System.Action<GameObject> _OnDestroy_CloneSlot;
System.Action<InventorySlot, PointerEventData> _OnSetSlotPos;
System.Action<InventorySlot> _OnCloneSlot;
System.Func<InventorySlot, Transform> _GetCloneSlotParents;
public void DoInit(System.Action<InventorySlot> OnCloneSlot_OrNull, System.Func<InventorySlot, Transform> GetCloneSlotParents_OrNull)
{
DoSetCallBack(GameObject.Instantiate, GameObject.Destroy);
_OnCloneSlot = OnCloneSlot_OrNull;
if (GetCloneSlotParents_OrNull == null)
_GetCloneSlotParents = p => p.transform.parent;
else
_GetCloneSlotParents = GetCloneSlotParents_OrNull;
}
public void DoSetCallBack(System.Func<InventorySlot, InventorySlot> OnInstantiate_CloneSlot, System.Action<GameObject> OnDestroy_CloneSlot)
{
_OnInstantiate_CloneSlot = OnInstantiate_CloneSlot; _OnDestroy_CloneSlot = OnDestroy_CloneSlot;
}
public void IInventorySlot_CommandLogic(InventorySlot pSlot, PointerEventData pPointerEventData)
{
_pSlotClone = _OnInstantiate_CloneSlot(pSlot);
_pSlotClone.DoSetData(pSlot.pData);
_pSlotClone.Event_OnSetClone();
Canvas pCanvas = pSlot.GetComponentInParent<Canvas>();
if (pCanvas.renderMode != RenderMode.ScreenSpaceOverlay)
{
_pCamera = pCanvas.rootCanvas.worldCamera;
_OnSetSlotPos = GetWorld_To_CameraScreenPoint;
}
else
{
_pCamera = Camera.main;
_OnSetSlotPos = GetWorld_To_ScreenPoint;
}
// pSlot.OnDragSlot += _OnSetSlotPos;
RectTransform pTransformOrigin = pSlot.transform as RectTransform;
RectTransform pTransformClone = _pSlotClone.transform as RectTransform;
_pTransform_Parents = pSlot.transform.parent as RectTransform;
pTransformClone.SetParent(_GetCloneSlotParents(pSlot));
pTransformClone.position = pSlot.transform.position;
pTransformClone.localScale = pSlot.transform.localScale;
pTransformClone.sizeDelta = pTransformOrigin.sizeDelta;
Graphic[] arrGraphic = pTransformClone.GetComponentsInChildren<Graphic>();
for (int i = 0; i < arrGraphic.Length; i++)
arrGraphic[i].raycastTarget = false;
_OnCloneSlot?.Invoke(_pSlotClone);
}
public void IInventorySlot_CommandLogic_Undo(InventorySlot pSlot, PointerEventData pPointerEventData)
{
// pSlot.OnDragSlot -= _OnSetSlotPos;
_OnDestroy_CloneSlot(_pSlotClone.gameObject);
}
void GetWorld_To_CameraScreenPoint(InventorySlot pSlot, PointerEventData pPointerEventData)
{
_pSlotClone.transform.position = _pCamera.ScreenToWorldPoint(new Vector3(pPointerEventData.position.x, pPointerEventData.position.y, _pCamera.nearClipPlane));
}
void GetWorld_To_ScreenPoint(InventorySlot pSlot, PointerEventData pPointerEventData)
{
RectTransformUtility.ScreenPointToWorldPointInRectangle(_pTransform_Parents, pPointerEventData.position, null, out var vecOutPos);
_pSlotClone.transform.position = vecOutPos;
}
}
}
}