-
Notifications
You must be signed in to change notification settings - Fork 8
/
Styles.cs
404 lines (367 loc) · 14.7 KB
/
Styles.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
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
using UnityEngine;
namespace UmbraMenu
{
public static class Styles
{
private static GUIStyle defaultStyle, chestStyle, newtStyle, equipmentStyle, lunarStyle, voidStyle, chanceStyle, bloodStyle, combatStyle, mountainStyle, woodsStyle, teleporterStyle;
private static GUIStyle mainBgStyle, onStyle, offStyle, labelStyle, titleStyle, btnStyle, itemBtnStyle, cornerStyle, highlightBtnStyle, activeModsStyle, renderTeleporterStyle, renderMobsStyle, renderInteractablesStyle, renderSecretsStyle, watermarkStyle, statsStyle, selectedChestStyle;
public static GUIStyle CreateGUIStyle(Texture2D normalBackground, Texture2D activeBackground, Color color, int fontSize, FontStyle font, TextAnchor textAlignmnet, bool wrapWords = false)
{
GUIStyle GUIStyle = new GUIStyle();
GUIStyle.normal.background = normalBackground;
GUIStyle.onNormal.background = normalBackground;
GUIStyle.active.background = activeBackground;
GUIStyle.onActive.background = activeBackground;
GUIStyle.normal.textColor = color;
GUIStyle.onNormal.textColor = color;
GUIStyle.active.textColor = color;
GUIStyle.onActive.textColor = color;
GUIStyle.fontSize = fontSize;
GUIStyle.fontStyle = font;
GUIStyle.alignment = textAlignmnet;
GUIStyle.wordWrap = wrapWords;
return GUIStyle;
}
private static void BuildStyles()
{
mainBgStyle = CreateGUIStyle(Textures.BackTexture, Textures.BackTexture, Color.HSVToRGB(0.5256f, 0.9286f, 0.9333f), 15, FontStyle.Normal, TextAnchor.UpperCenter);
cornerStyle = CreateGUIStyle(Textures.BtnTexture, Textures.BackTexture, Color.HSVToRGB(0.5256f, 0.9286f, 0.9333f), 18, FontStyle.Normal, TextAnchor.UpperCenter);
labelStyle = CreateGUIStyle(null, null, Color.grey, 18, FontStyle.Normal, TextAnchor.UpperCenter);
statsStyle = CreateGUIStyle(null, null, Color.grey, 18, FontStyle.Normal, TextAnchor.MiddleLeft);
titleStyle = CreateGUIStyle(null, null, Color.HSVToRGB(0.5256f, 0.9286f, 0.9333f), 18, FontStyle.Normal, TextAnchor.UpperCenter);
activeModsStyle = CreateGUIStyle(null, null, Color.HSVToRGB(0.5256f, 0.9286f, 0.9333f), 18, FontStyle.Normal, TextAnchor.MiddleLeft, true);
renderInteractablesStyle = CreateGUIStyle(null, null, Color.green, 14, FontStyle.Normal, TextAnchor.MiddleLeft);
renderSecretsStyle = CreateGUIStyle(null, null, Color.HSVToRGB(0.5065f, 1.0000f, 1.0000f), 14, FontStyle.Normal, TextAnchor.MiddleLeft);
renderTeleporterStyle = CreateGUIStyle(null, null, Color.white, 14, FontStyle.Normal, TextAnchor.MiddleLeft);
renderMobsStyle = CreateGUIStyle(null, null, Color.red, 14, FontStyle.Normal, TextAnchor.MiddleLeft);
selectedChestStyle = CreateGUIStyle(null, null, Color.blue, 14, FontStyle.Normal, TextAnchor.MiddleRight);
watermarkStyle = CreateGUIStyle(null, null, Color.HSVToRGB(0.5256f, 0.9286f, 0.9333f), 14, FontStyle.Normal, TextAnchor.MiddleLeft);
offStyle = CreateGUIStyle(Textures.OffTexture, Textures.OffPressTexture, Color.HSVToRGB(0.5256f, 0.9286f, 0.9333f), 15, FontStyle.Normal, TextAnchor.MiddleCenter);
onStyle = CreateGUIStyle(Textures.OnTexture, Textures.OnPressTexture, Color.HSVToRGB(0.5256f, 0.9286f, 0.9333f), 15, FontStyle.Normal, TextAnchor.MiddleCenter);
btnStyle = CreateGUIStyle(Textures.BtnTexture, Textures.BtnPressTexture, Color.HSVToRGB(0.5256f, 0.9286f, 0.9333f), 15, FontStyle.Normal, TextAnchor.MiddleCenter);
itemBtnStyle = CreateGUIStyle(Textures.BtnTexture, Textures.BtnPressTexture, Color.HSVToRGB(0.5256f, 0.9286f, 0.9333f), 15, FontStyle.Normal, TextAnchor.MiddleCenter);
highlightBtnStyle = CreateGUIStyle(Textures.HighlightTexture, Textures.HighlightPressTexture, Color.HSVToRGB(0.5256f, 0.9286f, 0.9333f), 15, FontStyle.Normal, TextAnchor.MiddleCenter);
}
#region Styles
public static GUIStyle MainBgStyle
{
get
{
if (mainBgStyle == null)
{
mainBgStyle = CreateGUIStyle(Textures.BackTexture, Textures.BackTexture, Color.HSVToRGB(0.5256f, 0.9286f, 0.9333f), 15, FontStyle.Normal, TextAnchor.UpperCenter);
}
return mainBgStyle;
}
}
public static GUIStyle CornerStyle
{
get
{
if (cornerStyle == null)
{
cornerStyle = CreateGUIStyle(Textures.BtnTexture, Textures.BackTexture, Color.HSVToRGB(0.5256f, 0.9286f, 0.9333f), 18, FontStyle.Normal, TextAnchor.UpperCenter);
}
return cornerStyle;
}
}
public static GUIStyle LabelStyle
{
get
{
if (labelStyle == null)
{
labelStyle = CreateGUIStyle(null, null, Color.grey, 18, FontStyle.Normal, TextAnchor.UpperCenter);
}
return labelStyle;
}
}
public static GUIStyle StatsStyle
{
get
{
if (statsStyle == null)
{
statsStyle = CreateGUIStyle(null, null, Color.grey, 18, FontStyle.Normal, TextAnchor.MiddleLeft);
}
return statsStyle;
}
}
public static GUIStyle TitleStyle
{
get
{
if (titleStyle == null)
{
titleStyle = CreateGUIStyle(null, null, Color.HSVToRGB(0.5256f, 0.9286f, 0.9333f), 18, FontStyle.Normal, TextAnchor.UpperCenter);
}
return titleStyle;
}
}
public static GUIStyle ActiveModsStyle
{
get
{
if (activeModsStyle == null)
{
activeModsStyle = CreateGUIStyle(null, null, Color.HSVToRGB(0.5256f, 0.9286f, 0.9333f), 18, FontStyle.Normal, TextAnchor.MiddleLeft, true);
}
return activeModsStyle;
}
}
public static GUIStyle RenderInteractablesStyle
{
get
{
if (renderInteractablesStyle == null)
{
renderInteractablesStyle = CreateGUIStyle(null, null, Color.green, 14, FontStyle.Normal, TextAnchor.MiddleLeft);
}
return renderInteractablesStyle;
}
}
public static GUIStyle RenderTeleporterStyle
{
get
{
if (renderTeleporterStyle == null)
{
renderTeleporterStyle = CreateGUIStyle(null, null, Color.white, 14, FontStyle.Normal, TextAnchor.MiddleLeft);
}
return renderTeleporterStyle;
}
}
public static GUIStyle RenderMobsStyle
{
get
{
if (renderMobsStyle == null)
{
renderMobsStyle = CreateGUIStyle(null, null, Color.red, 14, FontStyle.Normal, TextAnchor.MiddleLeft);
}
return renderMobsStyle;
}
}
public static GUIStyle SelectedChestStyle
{
get
{
if (selectedChestStyle == null)
{
selectedChestStyle = CreateGUIStyle(null, null, Color.HSVToRGB(0.5256f, 0.9286f, 0.9333f), 14, FontStyle.Normal, TextAnchor.MiddleRight);
}
return selectedChestStyle;
}
}
public static GUIStyle WatermarkStyle
{
get
{
if (watermarkStyle == null)
{
watermarkStyle = CreateGUIStyle(null, null, Color.HSVToRGB(0.5256f, 0.9286f, 0.9333f), 14, FontStyle.Normal, TextAnchor.MiddleLeft);
}
return watermarkStyle;
}
}
public static GUIStyle OffStyle
{
get
{
if (offStyle == null)
{
offStyle = CreateGUIStyle(Textures.OffTexture, Textures.OffPressTexture, Color.HSVToRGB(0.5256f, 0.9286f, 0.9333f), 15, FontStyle.Normal, TextAnchor.MiddleCenter);
}
return offStyle;
}
}
public static GUIStyle OnStyle
{
get
{
if (onStyle == null)
{
onStyle = CreateGUIStyle(Textures.OnTexture, Textures.OnPressTexture, Color.HSVToRGB(0.5256f, 0.9286f, 0.9333f), 15, FontStyle.Normal, TextAnchor.MiddleCenter);
}
return onStyle;
}
}
public static GUIStyle BtnStyle
{
get
{
if (btnStyle == null)
{
btnStyle = CreateGUIStyle(Textures.BtnTexture, Textures.BtnPressTexture, Color.HSVToRGB(0.5256f, 0.9286f, 0.9333f), 15, FontStyle.Normal, TextAnchor.MiddleCenter);
}
return btnStyle;
}
}
public static GUIStyle ItemBtnStyle
{
get
{
if (itemBtnStyle == null)
{
itemBtnStyle = CreateGUIStyle(Textures.BtnTexture, Textures.BtnPressTexture, Color.HSVToRGB(0.5256f, 0.9286f, 0.9333f), 15, FontStyle.Normal, TextAnchor.MiddleCenter);
}
return itemBtnStyle;
}
}
public static GUIStyle HighlightBtnStyle
{
get
{
if (highlightBtnStyle == null)
{
highlightBtnStyle = CreateGUIStyle(Textures.HighlightTexture, Textures.HighlightPressTexture, Color.HSVToRGB(0.5256f, 0.9286f, 0.9333f), 15, FontStyle.Normal, TextAnchor.MiddleCenter);
}
return highlightBtnStyle;
}
}
public static GUIStyle RenderSecretsStyle
{
get
{
if (renderSecretsStyle == null)
{
renderSecretsStyle = CreateGUIStyle(null, null, Color.HSVToRGB(0.5065f, 1.0000f, 1.0000f), 14, FontStyle.Normal, TextAnchor.MiddleLeft);
}
return renderSecretsStyle;
}
}
public static GUIStyle DefaultStyle
{
get
{
if (defaultStyle == null)
{
defaultStyle = CreateGUIStyle(null, null, new Color32(180, 200, 220, 255), 12, FontStyle.Normal, TextAnchor.MiddleCenter);
}
return defaultStyle;
}
}
public static GUIStyle ChestStyle
{
get
{
if (chestStyle == null)
{
chestStyle = CreateGUIStyle(null, null, new Color32(40, 110, 255, 255), 12, FontStyle.Normal, TextAnchor.MiddleCenter);
}
return chestStyle;
}
}
public static GUIStyle NewtStyle
{
get
{
if (newtStyle == null)
{
newtStyle = CreateGUIStyle(null, null, new Color32(70, 130, 220, 255), 12, FontStyle.BoldAndItalic, TextAnchor.MiddleCenter);
}
return newtStyle;
}
}
public static GUIStyle EquipmentStyle
{
get
{
if (equipmentStyle == null)
{
equipmentStyle = CreateGUIStyle(null, null, new Color32(200, 80, 0, 255), 12, FontStyle.Normal, TextAnchor.MiddleCenter);
}
return equipmentStyle;
}
}
public static GUIStyle LunarStyle
{
get
{
if (lunarStyle == null)
{
lunarStyle = CreateGUIStyle(null, null, new Color32(120, 175, 225, 255), 12, FontStyle.Italic, TextAnchor.MiddleCenter);
}
return lunarStyle;
}
}
public static GUIStyle VoidStyle
{
get
{
if (voidStyle == null)
{
voidStyle = CreateGUIStyle(null, null, new Color32(250, 80, 160, 255), 12, FontStyle.Italic, TextAnchor.MiddleCenter);
}
return voidStyle;
}
}
public static GUIStyle ChanceStyle
{
get
{
if (chanceStyle == null)
{
chanceStyle = CreateGUIStyle(null, null, new Color32(255, 255, 90, 255), 12, FontStyle.Bold, TextAnchor.MiddleCenter);
}
return chanceStyle;
}
}
public static GUIStyle BloodStyle
{
get
{
if (bloodStyle == null)
{
bloodStyle = CreateGUIStyle(null, null, new Color32(230, 110, 100, 255), 12, FontStyle.Bold, TextAnchor.MiddleCenter);
}
return bloodStyle;
}
}
public static GUIStyle CombatStyle
{
get
{
if (combatStyle == null)
{
combatStyle = CreateGUIStyle(null, null, new Color32(230, 165, 240, 255), 12, FontStyle.Bold, TextAnchor.MiddleCenter);
}
return combatStyle;
}
}
public static GUIStyle MountainStyle
{
get
{
if (mountainStyle == null)
{
mountainStyle = CreateGUIStyle(null, null, new Color32(125, 230, 255, 255), 12, FontStyle.Bold, TextAnchor.MiddleCenter);
}
return mountainStyle;
}
}
public static GUIStyle WoodsStyle
{
get
{
if (woodsStyle == null)
{
woodsStyle = CreateGUIStyle(null, null, new Color32(170, 225, 100, 255), 12, FontStyle.Bold, TextAnchor.MiddleCenter);
}
return woodsStyle;
}
}
public static GUIStyle TeleporterStyle
{
get
{
if (teleporterStyle == null)
{
teleporterStyle = CreateGUIStyle(null, null, new Color32(125, 40, 70, 255), 12, FontStyle.Bold, TextAnchor.MiddleCenter);
}
return teleporterStyle;
}
}
#endregion
}
}