-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathItemList.cs
255 lines (201 loc) · 6.63 KB
/
ItemList.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
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;
using System.Collections.Generic;
using System.Linq;
using System.Resources;
using System.Windows.Forms;
namespace UIF
{
public partial class ItemList : Form
{
private List<Item> items;
private Control[] paramsBoxes;
private ResourceManager CurrentMainRM, CurrentAdditionalRM;
Item selectedItem = null;
public ItemList(List<Item> _items)
{
if (_items == null) {
MessageBox.Show(Localization.CurrentAdditional.GetStringSafety("ItemListIsNull") +
Localization.CurrentAdditional.GetStringSafety("ErrorDiscordSuffix"));
} else {
InitializeComponent();
for (int i = 0; i < _items.Count; i++)
ResultsListBox.Items.Add(_items[i].GetValue("name") + " (" + _items[i].GetValue("id") + ")");
items = _items;
paramsBoxes = Misc.GetAllControls(ItemStatsGroupBox, c => c.GetType() == typeof(TextBox)).ToArray();
}
_UpdateLocalization();
}
public void OnLocalizationChange(ResourceManager MainRM, ResourceManager AdditionalRM)
{
CurrentMainRM = MainRM;
CurrentAdditionalRM = AdditionalRM;
}
private void _UpdateLocalization() => Localization.UpdateLocalization(this);
private void UpdateItemList()
{
ResultsListBox.Items.Clear();
for (int i = 0; i < items.Count; i++)
ResultsListBox.Items.Add(items[i].GetValue("name") + " (" + items[i].GetValue("id") + ")");
}
private void ClearTextBoxes() {
foreach (Control control in paramsBoxes)
((TextBox)control).Clear();
}
private void ResultsListBox_SelectedIndexChanged(object sender, EventArgs e)
{
if (ResultsListBox.SelectedIndex == -1) {
NameTextBox.Clear();
IdTextBox.Clear();
ClearTextBoxes();
} else {
ClearTextBoxes();
selectedItem = items[ResultsListBox.SelectedIndex];
IdTextBox.Text = selectedItem.GetValue("id");
NameTextBox.Text = selectedItem.GetValue("name");
foreach (TextBox control in paramsBoxes)
control.Text = selectedItem.FormatKey(control.Name);
}
}
private void IdToClipboard_Click(object sender, EventArgs e)
{
if (ResultsListBox.SelectedIndex != -1)
Clipboard.SetText(
((IdPrefixTextBox.Text != string.Empty ? IdPrefixTextBox.Text + " " : string.Empty)
+ items[ResultsListBox.SelectedIndex].GetValue("id")).Trim()
);
}
private void NameIdToClipboard_Click(object sender, EventArgs e)
{
if (ResultsListBox.SelectedIndex != -1)
Clipboard.SetText(
(
items[ResultsListBox.SelectedIndex].GetValue("name")
+ " - "
+ (IdPrefixTextBox.Text != string.Empty ? IdPrefixTextBox.Text + " " : string.Empty)
+ items[ResultsListBox.SelectedIndex].GetValue("id")
)
.Trim()
);
}
private void AllNameIdToClipboard_Click(object sender, EventArgs e)
{
string copyStr = string.Empty;
for (int i = 0; i < items.Count; i++)
{
copyStr += (
items[i].GetValue("name")
+ " - "
+ (IdPrefixTextBox.Text != string.Empty ? IdPrefixTextBox.Text + " " : string.Empty)
+ items[i].GetValue("id")
)
.Trim() + (i < items.Count ? "\n" : string.Empty);
}
Clipboard.SetText(copyStr);
}
private void SortCapacityBtn_Click(object sender, EventArgs e)
{
items.Sort((a, b) => a.CompareTo(b, Core.CompareModes.ClothingStorage));
UpdateItemList();
}
private void SortProtectionBtn_Click(object sender, EventArgs e)
{
items.Sort((a, b) => a.CompareTo(b, Core.CompareModes.ClothingProtection));
UpdateItemList();
}
private void SortDamagePlayersBtn_Click(object sender, EventArgs e)
{
items.Sort((a, b) => a.CompareTo(b, Core.CompareModes.Damage));
UpdateItemList();
}
private void MixBtn_Click(object sender, EventArgs e)
{
Random random = new Random();
items.Sort((a, b) => random.Next(int.MinValue, int.MaxValue));
UpdateItemList();
}
private void SortDamageBuildingsBtn_Click(object sender, EventArgs e)
{
items.Sort((a, b) => a.CompareTo(b, Core.CompareModes.StructureDamage));
UpdateItemList();
}
private void NameLabel_Click(object sender, EventArgs e) => NameTextBox.Focus();
private void IdLabel_Click(object sender, EventArgs e) => IdTextBox.Focus();
private void SortVehicleHealthBtn_Click(object sender, EventArgs e)
{
items.Sort((a, b) => a.CompareTo(b, Core.CompareModes.VehicleHealth));
UpdateItemList();
}
private void SortBarricadeCapacityBtn_Click(object sender, EventArgs e)
{
items.Sort((a, b) => a.CompareTo(b, Core.CompareModes.StructureCapacity));
UpdateItemList();
}
private void SortByBuildingHealthBtn_Click(object sender, EventArgs e)
{
items.Sort((a, b) => a.CompareTo(b, Core.CompareModes.BuildingHealth));
UpdateItemList();
}
private void SortByShakeBtn_Click(object sender, EventArgs e)
{
items.Sort((a, b) => a.CompareTo(b, Core.CompareModes.Shake));
UpdateItemList();
}
private void SortByBarrelDamageBtn_Click(object sender, EventArgs e)
{
items.Sort((a, b) => a.CompareTo(b, Core.CompareModes.BarrelDamage));
UpdateItemList();
}
private void LinkedAmmoBtn_Click(object sender, EventArgs e)
{
if (selectedItem != null) {
List<Item> linked = selectedItem.GetLinked("ammo");
if (linked != null && linked.Count > 0) {
linked.Sort((a, b) => a.CompareTo(b, Core.CompareModes.AmmoAmount));
new ItemList(linked).Show();
} else {
MessageBox.Show("This item doesn't have linked");
}
}
}
private void LinkedModulesBtn_Click(object sender, EventArgs e)
{
if (selectedItem != null)
{
List<Item> linked = selectedItem.GetLinked("modules");
if (linked != null && linked.Count > 0)
new ItemList(linked).Show();
else
MessageBox.Show("This item doesn't have linked");
}
}
private void LinkedGunsBtn_Click(object sender, EventArgs e)
{
if (selectedItem != null)
{
List<Item> linked = selectedItem.GetLinked("guns");
if (linked != null && linked.Count > 0) {
linked.Sort((a, b) => a.CompareTo(b, Core.CompareModes.Damage));
new ItemList(linked).Show();
} else {
MessageBox.Show("This item doesn't have linked");
}
}
}
private void SortByAmmoAmountBtn_Click(object sender, EventArgs e)
{
items.Sort((a, b) => a.CompareTo(b, Core.CompareModes.AmmoAmount));
UpdateItemList();
}
private void SortByPelletsBtn_Click(object sender, EventArgs e)
{
items.Sort((a, b) => (b.GetValue("type") == "Magazine" ? b.GetValue("pellets", "1").ToInt() : 1)
.CompareTo(a.GetValue("type") == "Magazine" ? a.GetValue("pellets", "1").ToInt() : 1));
UpdateItemList();
}
private void SortByVolumeBtn_Click(object sender, EventArgs e)
{
items.Sort((a, b) => a.CompareTo(b, Core.CompareModes.BarrelVolume));
UpdateItemList();
}
}
}