FocusingBoxFinder.cs
8.79 KB
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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
using System.Collections.Generic;
using AirFishLab.ScrollingList.ContentManagement;
using UnityEngine;
namespace AirFishLab.ScrollingList.ListStateProcessing.Linear
{
/// <summary>
/// The component for finding the focusing boxes
/// </summary>
public class FocusingBoxFinder
{
#region Data
/// <summary>
/// The current focusing box
/// </summary>
public struct FocusingBox
{
/// <summary>
/// The current focusing box
/// </summary>
public IListBox Box;
/// <summary>
/// The distance how long the box is away from the baseline
/// </summary>
public float DistanceOffset;
public void Deconstruct(out IListBox box, out float distanceOffset)
{
box = Box;
distanceOffset = DistanceOffset;
}
}
/// <summary>
/// The finding result at the middle of the list
/// </summary>
public struct MiddleResult
{
/// <summary>
/// The focusing state of the list
/// </summary>
public ListFocusingState ListFocusingState;
/// <summary>
/// The focusing box at the middle of the list
/// </summary>
public FocusingBox MiddleFocusing;
}
/// <summary>
/// The finding result for both ends
/// </summary>
public struct BothEndsResult
{
/// <summary>
/// The focusing state of the list
/// </summary>
public ListFocusingState ListFocusingState;
/// <summary>
/// The focusing box at the top of the list
/// </summary>
public FocusingBox TopFocusing;
/// <summary>
/// The focusing box at the bottom of the list
/// </summary>
public FocusingBox BottomFocusing;
}
#endregion
#region Private Members
/// <summary>
/// The target boxes
/// </summary>
private readonly List<IListBox> _boxes;
/// <summary>
/// The setting of the list
/// </summary>
private readonly ListSetting _setting;
/// <summary>
/// The baseline position at the top of the list
/// </summary>
private readonly float _topBaseline;
/// <summary>
/// The baseline position at the middle of the list
/// </summary>
private readonly float _middleBaseline;
/// <summary>
/// The baseline position at the bottom of the list
/// </summary>
private readonly float _bottomBaseline;
#endregion
public FocusingBoxFinder(
List<IListBox> boxes, ListSetting setting,
float topBaseline, float middleBaseline, float bottomBaseline)
{
_boxes = boxes;
_setting = setting;
_topBaseline = topBaseline;
_middleBaseline = middleBaseline;
_bottomBaseline = bottomBaseline;
}
/// <summary>
/// Find the currently focusing box
/// </summary>
/// <param name="contentCount">The number of contents</param>
/// <returns>The result</returns>
public MiddleResult FindForMiddle(int contentCount)
{
var distanceOffset = Mathf.Infinity;
IListBox candidateBox = null;
foreach (var box in _boxes) {
var idState =
ListContentProvider.GetIDState(box.ContentID, contentCount);
if (idState == ContentIDState.Overflow
|| idState == ContentIDState.Underflow)
continue;
var boxDistanceOffset = box.GetPositionFactor() - _middleBaseline;
if (Mathf.Abs(boxDistanceOffset) >= Mathf.Abs(distanceOffset))
continue;
distanceOffset = boxDistanceOffset;
candidateBox = box;
}
var focusingBox = new FocusingBox {
Box = candidateBox,
DistanceOffset = distanceOffset
};
var focusingState = FindFocusingStateForMiddle(focusingBox, contentCount);
return new MiddleResult {
ListFocusingState = focusingState,
MiddleFocusing = focusingBox
};
}
/// <summary>
/// Find the focusing state of the list
/// </summary>
private ListFocusingState FindFocusingStateForMiddle(
FocusingBox focusingBox, int contentCount)
{
return _setting.ListType != CircularScrollingList.ListType.Linear
? ListFocusingState.Middle
: FindFocusingState(focusingBox, contentCount);
}
/// <summary>
/// Find the focusing boxes at both ends
/// </summary>
/// <param name="contentCount">The number of contents</param>
/// <returns>The result</returns>
public BothEndsResult FindForBothEnds(int contentCount)
{
var topDistanceOffset = Mathf.Infinity;
IListBox topCandidateBox = null;
var bottomDistanceOffset = Mathf.Infinity;
IListBox bottomCandidateBox = null;
foreach (var box in _boxes) {
var idState =
ListContentProvider.GetIDState(box.ContentID, contentCount);
if (idState == ContentIDState.Overflow
|| idState == ContentIDState.Underflow)
continue;
var positionFactor = box.GetPositionFactor();
var boxTopDistanceOffset = positionFactor - _topBaseline;
var boxBottomDistanceOffset = positionFactor - _bottomBaseline;
if (Mathf.Abs(boxTopDistanceOffset) < Mathf.Abs(topDistanceOffset)) {
topDistanceOffset = boxTopDistanceOffset;
topCandidateBox = box;
}
if (Mathf.Abs(boxBottomDistanceOffset) < Mathf.Abs(bottomDistanceOffset)) {
bottomDistanceOffset = boxBottomDistanceOffset;
bottomCandidateBox = box;
}
}
var topFocusingBox = new FocusingBox {
Box = topCandidateBox,
DistanceOffset = topDistanceOffset
};
var bottomFocusingBox = new FocusingBox {
Box = bottomCandidateBox,
DistanceOffset = bottomDistanceOffset
};
var focusingState =
FindFocusingStateForBothEnds(
topFocusingBox, bottomFocusingBox, contentCount);
return new BothEndsResult {
ListFocusingState = focusingState,
TopFocusing = topFocusingBox,
BottomFocusing = bottomFocusingBox
};
}
/// <summary>
/// Find the focusing state of the list
/// </summary>
private ListFocusingState FindFocusingStateForBothEnds(
FocusingBox topFocusingBox, FocusingBox bottomFocusingBox,
int contentCount)
{
if (_setting.ListType == CircularScrollingList.ListType.Circular)
return ListFocusingState.Middle;
var topFocusingState = FindFocusingState(topFocusingBox, contentCount);
var bottomFocusingState = FindFocusingState(bottomFocusingBox, contentCount);
var focusingState = ListFocusingState.None;
// It is possible that the showing content is the whole list
if (topFocusingState != ListFocusingState.Middle)
focusingState |= topFocusingState;
if (bottomFocusingState != ListFocusingState.Middle)
focusingState |= bottomFocusingState;
return focusingState == ListFocusingState.None
? ListFocusingState.Middle
: focusingState;
}
/// <summary>
/// Find the focusing state of the box
/// </summary>
private ListFocusingState FindFocusingState(
FocusingBox focusingBox, int contentCount)
{
var (box, _) = focusingBox;
var focusingContentID = box.ContentID;
var isReversed = _setting.ReverseContentOrder;
var isFirstContent = focusingContentID == 0;
var isLastContent = focusingContentID == contentCount - 1;
if (!(isFirstContent || isLastContent))
return ListFocusingState.Middle;
if (isFirstContent && isLastContent)
return ListFocusingState.TopAndBottom;
return isReversed ^ isFirstContent
? ListFocusingState.Top
: ListFocusingState.Bottom;
}
}
}