forked from Guad/NativeUI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUIMenuListItem.cs
147 lines (122 loc) · 4.98 KB
/
UIMenuListItem.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
using System;
using System.Collections.Generic;
using System.Drawing;
using GTA;
using Font = GTA.UI.Font;
namespace NativeUI
{
public class UIMenuListItem : UIMenuItem
{
protected UIResText _itemText;
protected Sprite _arrowLeft;
protected Sprite _arrowRight;
protected List<dynamic> _items;
/// <summary>
/// Triggered when the list is changed.
/// </summary>
public event ItemListEvent OnListChanged;
protected int _index;
/// <summary>
/// Returns the current selected index.
/// </summary>
public int Index
{
get { return _index % _items.Count; }
set { _index = 100000 - (100000 % _items.Count) + value; }
}
/// <summary>
/// List item, with left/right arrows.
/// </summary>
/// <param name="text">Item label.</param>
/// <param name="items">List that contains your items.</param>
/// <param name="index">Index in the list. If unsure user 0.</param>
public UIMenuListItem(string text, List<dynamic> items, int index)
: this(text, items, index, "")
{
}
/// <summary>
/// List item, with left/right arrows.
/// </summary>
/// <param name="text">Item label.</param>
/// <param name="items">List that contains your items.</param>
/// <param name="index">Index in the list. If unsure user 0.</param>
/// <param name="description">Description for this item.</param>
public UIMenuListItem(string text, List<dynamic> items, int index, string description)
: base(text, description)
{
const int y = 0;
_items = new List<dynamic>(items);
_arrowLeft = new Sprite("commonmenu", "arrowleft", new Point(110, 105 + y), new Size(30, 30));
_arrowRight = new Sprite("commonmenu", "arrowright", new Point(280, 105 + y), new Size(30, 30));
_itemText = new UIResText("", new Point(290, y + 104), 0.35f, Color.White, Font.ChaletLondon,
UIResText.Alignment.Left) {TextAlignment = UIResText.Alignment.Right};
Index = index;
}
/// <summary>
/// Change item's position.
/// </summary>
/// <param name="y">New Y position.</param>
public override void Position(int y)
{
_arrowLeft.Position = new Point(300 + Offset.X + Parent.WidthOffset, 147 + y + Offset.Y);
_arrowRight.Position = new Point(400 + Offset.X + Parent.WidthOffset, 147 + y + Offset.Y);
_itemText.Position = new Point(300 + Offset.X + Parent.WidthOffset, y + 147 + Offset.Y);
base.Position(y);
}
/// <summary>
/// Find an item in the list and return it's index.
/// </summary>
/// <param name="item">Item to search for.</param>
/// <returns>Item index.</returns>
public virtual int ItemToIndex(dynamic item)
{
return _items.FindIndex(item);
}
/// <summary>
/// Find an item by it's index and return the item.
/// </summary>
/// <param name="index">Item's index.</param>
/// <returns>Item</returns>
public virtual dynamic IndexToItem(int index)
{
return _items[index];
}
/// <summary>
/// Draw item.
/// </summary>
public override void Draw()
{
base.Draw();
string caption = _items[Index % _items.Count].ToString();
int offset = StringMeasurer.MeasureString(caption);
_itemText.Color = Enabled ? Selected ? Color.Black : Color.WhiteSmoke : Color.FromArgb(163, 159, 148);
_itemText.Caption = caption;
_arrowLeft.Color = Enabled ? Selected ? Color.Black : Color.WhiteSmoke : Color.FromArgb(163, 159, 148);
_arrowRight.Color = Enabled ? Selected ? Color.Black : Color.WhiteSmoke : Color.FromArgb(163, 159, 148);
_arrowLeft.Position = new Point(375 - offset + Offset.X + Parent.WidthOffset, _arrowLeft.Position.Y);
if (Selected)
{
_arrowLeft.Draw();
_arrowRight.Draw();
_itemText.Position = new Point(405 + Offset.X + Parent.WidthOffset, (int)_itemText.Position.Y);
}
else
{
_itemText.Position = new Point(420 + Offset.X + Parent.WidthOffset, (int)_itemText.Position.Y);
}
_itemText.Draw();
}
internal virtual void ListChangedTrigger(int newindex)
{
OnListChanged?.Invoke(this, newindex);
}
public override void SetRightBadge(BadgeStyle badge)
{
throw new Exception("UIMenuListItem cannot have a right badge.");
}
public override void SetRightLabel(string text)
{
throw new Exception("UIMenuListItem cannot have a right label.");
}
}
}