forked from Dolphee/FindersKeepersD3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FKAccounts.cs
129 lines (115 loc) · 3.84 KB
/
FKAccounts.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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Xml.Serialization;
using System.Windows.Media;
using PropertyChanged;
namespace FindersKeepers
{
[Serializable, ImplementPropertyChanged]
public class FKAccounts : SetDefault, ICache
{
[XmlArray("Accounts")]
[XmlArrayItem("Account")]
public List<Multibox> Accounts
{
get; set;
}
public void OnStartup()
{
foreach (var i in Accounts)
i.Foreground = Extensions.HexToBrush("#" + i.TextColor);
}
public Multibox GetAccount(int Id)
{
if (Accounts.Exists(x => x.MultiboxID == Id))
return Accounts.Find(x => x.MultiboxID == Id);
return null;
}
public Multibox GetAccount(string ProcessName)
{
if (Accounts.Exists(x => x.BattleTag == ProcessName))
return Accounts.Find(x => x.BattleTag == ProcessName);
return null;
}
public Multibox GetIfNotPresent()
{
Multibox Account = Accounts.FirstOrDefault();
Account.MainAccount = true;
return Account;
}
public object _DEFAULT()
{
return new FKAccounts
{
Accounts = new List<Multibox>()
{
new Multibox {
Nickname = "Account 1",
Enabled = true,
TextColor = "949494",
ItemTracking = true,
ExperienceTracker = true,
BattleTag = "Not Set",
MainAccount = true,
MultiboxID = 0,
},
new Multibox {
Nickname = "Account 2",
Enabled = true,
TextColor = "949494",
ItemTracking = true,
ExperienceTracker = true,
BattleTag = "Not Set",
MainAccount = false,
MultiboxID = 1,
},
new Multibox {
Nickname = "Account 3",
Enabled = true,
TextColor = "949494",
ItemTracking = true,
ExperienceTracker = true,
BattleTag = "Not Set",
MainAccount = false,
MultiboxID = 2,
},
new Multibox {
Nickname = "Account 4",
Enabled = true,
TextColor = "949494",
ItemTracking = true,
ExperienceTracker = true,
BattleTag = "Not Set",
MainAccount = false,
MultiboxID = 3,
},
}
};
}
[Serializable, ImplementPropertyChanged]
public class Multibox
{
[XmlIgnore]
public Brush Foreground;
[XmlElement]
public int MultiboxID { get; set; }
[XmlAttribute]
public string Nickname { get; set; }
[XmlElement]
public string BattleTag { get; set; }
[XmlElement]
public bool Enabled { get; set; }
[XmlElement]
public bool MainAccount { get; set; }
[XmlElement]
public bool ItemTracking { get; set; }
[XmlElement]
public bool ExperienceTracker { get; set; }
[XmlElement]
public string TextColor { get; set; }
}
}
}