-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCacheSelector.cs
65 lines (59 loc) · 2.08 KB
/
CacheSelector.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
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using HaloBlobViewer.source.formats;
namespace HaloBlobViewer
{
public partial class CacheSelector : Form
{
public CacheSelector()
{
InitializeComponent();
Globals.cacheForm = this;
}
private void LoadCachesButton_Click(object sender, EventArgs e)
{
if (CachesToLoadCheckList.CheckedItems.Count == 0)
{
MessageBox.Show("No Tag Caches Selected!", "", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
}
else
{
Globals.form.tag_tree.Nodes.Clear();
List<Int32> Indexes = new List<Int32> { };
for (int i = 0; i < CachesToLoadCheckList.CheckedItems.Count; i++)
{
object Item = CachesToLoadCheckList.CheckedItems[i];
Int32 Index = CachesToLoadCheckList.Items.IndexOf(Item);
Indexes.Add(Index);
}
Globals.form.LoadSomeCaches(Indexes);
this.Close();
}
}
private void CancelButton_Click(object sender, EventArgs e)
{
this.Close();
}
private void CachesToLoadCheckList_SelectedIndexChanged(object sender, EventArgs e)
{
Int32 NumTags = 0;
if (CachesToLoadCheckList.CheckedItems.Count > 0)
{
for (int i = 0; i < CachesToLoadCheckList.CheckedItems.Count; i++)
{
string SelItemStr = CachesToLoadCheckList.CheckedItems[i].ToString();
string TagNum = SelItemStr.Split(':')[1];
NumTags = NumTags + Convert.ToInt32(TagNum);
}
}
NumTagsText.Text = "Number of tags that will be loaded: " + NumTags;
}
}
}