forked from warawanaidene/ModdingStatsHelper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUtils.cs
More file actions
204 lines (176 loc) · 6.34 KB
/
Copy pathUtils.cs
File metadata and controls
204 lines (176 loc) · 6.34 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
using EFT.InventoryLogic;
using System.Collections.Generic;
using System.Linq;
namespace ShowMeTheStats
{
public static class Utils
{
public static string AlignTextToWidth(string text)
{
int spaces = 20;
int currentLength = text.Length;
int newLength = spaces - currentLength;
if (currentLength < spaces)
{
for (int i = 0; i < newLength; i++)
{
text += " ";
}
}
return text;
}
public static string[] getDigitsFromStringValues(string attributeStringValue)
{
string extractedDigits = "";
string extractedOperator = "";
string extractedType = "";
foreach (char c in attributeStringValue)
{
if (char.IsDigit(c) || c == '.')
{
extractedDigits += c.ToString();
}
else if (c == '-' || c == '+')
{
extractedOperator = c.ToString();
}
else if (c == '%' || c == 'M' || c == 'O' || c == 'A') // lazy ahh MOA extraction
{
extractedType += c.ToString();
}
}
if (extractedType == "MOA")
{
extractedType = " " + extractedType;
}
string[] final = { extractedOperator, extractedDigits, extractedType };
return final;
}
public static string SubstractStringValue(string slottedAttributeStringValue, string replacingAttributeStringValue)
{
//[0] = operator
//[1] = float
//[2] = "%" string
string[] slottingAttributeExtracted = getDigitsFromStringValues(slottedAttributeStringValue);
string[] replacingAttributeExtracted = getDigitsFromStringValues(replacingAttributeStringValue);
string subtracted = (float.Parse(replacingAttributeExtracted[0] + replacingAttributeExtracted[1]) - float.Parse(slottingAttributeExtracted[0] + slottingAttributeExtracted[1])).ToString(); //"F1"
return subtracted + replacingAttributeExtracted[2];
}
public static string GetValueColor(float numBase, bool LessIsGood, EItemAttributeLabelVariations labelVariation, bool reversed)
{
string blueColor = "#54c1ff";
string redColor = "#c40000";
string textColor = "";
if (labelVariation == EItemAttributeLabelVariations.Colored)
{
if (numBase < 0f)
{
if (LessIsGood)
{
textColor = blueColor;
}
else if (!LessIsGood)
{
textColor = redColor;
}
}
else if (numBase > 0f)
{
if (LessIsGood)
{
textColor = redColor;
}
else if (!LessIsGood)
{
textColor = blueColor;
}
}
if (reversed)
{
if (textColor == blueColor)
{
textColor = redColor;
}
else if (textColor == redColor)
{
textColor = blueColor;
}
}
}
else
{
textColor = "#ffffff"; // white
}
return textColor;
}
public static string ReverseOperator(string stringValue)
{
if (stringValue.Contains("-"))
{
stringValue = stringValue.Replace("-", "+");
}
else if (stringValue.Contains("+"))
{
stringValue = stringValue.Replace("+", "-");
}
return stringValue;
}
public static string SpaghettiLastStringValueOperatorCheck(string attributeStringValue, float attributeBase)
{
if (attributeStringValue.Trim().ToUpper().Contains("LOUDNESS") || attributeStringValue.Trim().ToUpper().Contains("MOA") || attributeStringValue.Trim().ToUpper().Contains("MAX COUNT"))
{
if (attributeStringValue.Contains("+"))
{
attributeStringValue = attributeStringValue.Replace("+", "");
}
return attributeStringValue;
}
else if (!attributeStringValue.Contains("+") && !attributeStringValue.Contains("-"))
{
return "+" + attributeStringValue;
}
return attributeStringValue;
}
public static string AddOperatorToStringValue(string attributeStringValue, float attributeBase, bool reversed)
{
if (attributeBase < 0f)
{
if (!attributeStringValue.Contains("-"))
{
if (!reversed)
{
attributeStringValue = "-" + attributeStringValue;
}
else if (reversed)
{
attributeStringValue = "+" + attributeStringValue;
}
}
}
else
{
if (!reversed)
{
attributeStringValue = "+" + attributeStringValue;
}
else if (reversed)
{
attributeStringValue = "-" + attributeStringValue;
}
}
return attributeStringValue;
}
public static List<ItemAttributeClass> GetAllAttributesNotInBlacklist(List<ItemAttributeClass> attributes)
{
List<ItemAttributeClass> attributesResult = new List<ItemAttributeClass>();
foreach (var attribute in attributes)
{
if (!Globals.statBlacklist.Any(x => x == attribute.Id.ToString()))
{
attributesResult.Add(attribute);
}
}
return attributesResult;
}
}
}