terraria-cpp2il-methodrecon
v1.4.4.9
Terraria mobile dump, with reconstructed method body. Dump with CallAnalysis: https://infinitynichto.github.io/terraria-cpp2il
Loading...
Searching...
No Matches
GUIWorldCreateMenu.cs
Go to the documentation of this file.
1
using
System
;
2
using
Controller
;
3
using
Microsoft.Xna.Framework
;
4
using
Microsoft.Xna.Framework.Content
;
5
using
Microsoft.Xna.Framework.Graphics
;
6
using
Terraria
;
7
using
Terraria.Localization
;
8
9
// Token: 0x02000285 RID: 645
10
public
class
GUIWorldCreateMenu
11
{
12
// Token: 0x1700017C RID: 380
13
// (get) Token: 0x06000ECD RID: 3789 RVA: 0x00048D3C File Offset: 0x00046F3C
14
private
string
WorldDescriptionName
15
{
16
get
17
{
18
return
Language
.
GetTextValue
(
"UI.WorldDescriptionName"
);
19
}
20
}
21
22
// Token: 0x1700017D RID: 381
23
// (get) Token: 0x06000ECE RID: 3790 RVA: 0x00048D54 File Offset: 0x00046F54
24
private
string
WorldDescriptionSizeSmall
25
{
26
get
27
{
28
return
Language
.
GetTextValue
(
"UI.WorldDescriptionSizeSmall"
);
29
}
30
}
31
32
// Token: 0x1700017E RID: 382
33
// (get) Token: 0x06000ECF RID: 3791 RVA: 0x00048D6C File Offset: 0x00046F6C
34
private
string
WorldDescriptionSizeMedium
35
{
36
get
37
{
38
return
Language
.
GetTextValue
(
"UI.WorldDescriptionSizeMedium"
);
39
}
40
}
41
42
// Token: 0x1700017F RID: 383
43
// (get) Token: 0x06000ED0 RID: 3792 RVA: 0x00048D84 File Offset: 0x00046F84
44
private
string
WorldDescriptionSizeLarge
45
{
46
get
47
{
48
return
Language
.
GetTextValue
(
"UI.WorldDescriptionSizeLarge"
);
49
}
50
}
51
52
// Token: 0x17000180 RID: 384
53
// (get) Token: 0x06000ED1 RID: 3793 RVA: 0x00048D9C File Offset: 0x00046F9C
54
private
string
WorldDescriptionCreative
55
{
56
get
57
{
58
return
Language
.
GetTextValue
(
"UI.WorldDescriptionCreative"
);
59
}
60
}
61
62
// Token: 0x17000181 RID: 385
63
// (get) Token: 0x06000ED2 RID: 3794 RVA: 0x00048DB4 File Offset: 0x00046FB4
64
private
string
WorldDescriptionNormal
65
{
66
get
67
{
68
return
Language
.
GetTextValue
(
"UI.WorldDescriptionNormal"
);
69
}
70
}
71
72
// Token: 0x17000182 RID: 386
73
// (get) Token: 0x06000ED3 RID: 3795 RVA: 0x00048DCC File Offset: 0x00046FCC
74
private
string
WorldDescriptionExpert
75
{
76
get
77
{
78
return
Language
.
GetTextValue
(
"UI.WorldDescriptionExpert"
);
79
}
80
}
81
82
// Token: 0x17000183 RID: 387
83
// (get) Token: 0x06000ED4 RID: 3796 RVA: 0x00048DE4 File Offset: 0x00046FE4
84
private
string
WorldDescriptionMaster
85
{
86
get
87
{
88
return
Language
.
GetTextValue
(
"UI.WorldDescriptionMaster"
);
89
}
90
}
91
92
// Token: 0x17000184 RID: 388
93
// (get) Token: 0x06000ED5 RID: 3797 RVA: 0x00048DFC File Offset: 0x00046FFC
94
private
string
WorldDescriptionDefault
95
{
96
get
97
{
98
return
Language
.
GetTextValue
(
"UI.WorldDescriptionDefault"
);
99
}
100
}
101
102
// Token: 0x06000ED6 RID: 3798 RVA: 0x00048E14 File Offset: 0x00047014
103
public
static
void
LoadContent
(
ContentManager
content)
104
{
105
Texture2D
texture2D
= content.Load<
Texture2D
>(
"Images/UI/WorldCreation/PreviewEvilRandom"
);
106
Texture2D
texture2D2
= content.Load<
Texture2D
>(
"Images/UI/WorldCreation/PreviewEvilCorruption"
);
107
Texture2D
texture2D3
= content.Load<
Texture2D
>(
"Images/UI/WorldCreation/PreviewEvilCrimson"
);
108
Texture2D
texture2D4
= content.Load<
Texture2D
>(
"Images/UI/WorldCreation/PreviewSizeSmall"
);
109
Texture2D
texture2D5
= content.Load<
Texture2D
>(
"Images/UI/WorldCreation/PreviewSizeMedium"
);
110
Texture2D
texture2D6
= content.Load<
Texture2D
>(
"Images/UI/WorldCreation/PreviewSizeLarge"
);
111
Texture2D
texture2D7
= content.Load<
Texture2D
>(
"Images/UI/WorldCreation/PreviewDifficultyNormal1"
);
112
Texture2D
texture2D8
= content.Load<
Texture2D
>(
"Images/UI/WorldCreation/PreviewDifficultyNormal2"
);
113
Texture2D
texture2D9
= content.Load<
Texture2D
>(
"Images/UI/WorldCreation/PreviewDifficultyExpert1"
);
114
Texture2D
texture2D10
= content.Load<
Texture2D
>(
"Images/UI/WorldCreation/PreviewDifficultyExpert2"
);
115
Texture2D
texture2D11
= content.Load<
Texture2D
>(
"Images/UI/WorldCreation/PreviewDifficultyMaster1"
);
116
Texture2D
texture2D12
= content.Load<
Texture2D
>(
"Images/UI/WorldCreation/PreviewDifficultyMaster2"
);
117
Texture2D
texture2D13
= content.Load<
Texture2D
>(
"Images/UI/WorldCreation/PreviewDifficultyCreative2"
);
118
}
119
120
// Token: 0x06000ED7 RID: 3799 RVA: 0x00048EC8 File Offset: 0x000470C8
121
public
void
Draw
()
122
{
123
GUIWorldCreateController
controllerInput
= this.
_controllerInput
;
124
}
125
126
// Token: 0x06000ED8 RID: 3800 RVA: 0x00048FDC File Offset: 0x000471DC
127
private
void
DrawName
()
128
{
129
SpriteFont
spriteFont
;
130
string
text
;
131
Vector2
vector =
spriteFont
.MeasureString(
text
);
132
if
(this.
_optionsBlocker
!=
null
)
133
{
134
return
;
135
}
136
int
screenWidth =
Main
.
screenWidth
;
137
int
screenHeight =
Main
.
screenHeight
;
138
}
139
140
// Token: 0x06000ED9 RID: 3801 RVA: 0x000491BC File Offset: 0x000473BC
141
private
void
DrawSeed
()
142
{
143
string
textValue
=
Language
.
GetTextValue
(
"UI.WorldCreationSeed"
);
144
SpriteFont
spriteFont
;
145
string
text
;
146
Vector2
vector =
spriteFont
.MeasureString(
text
);
147
bool
flag = this.
editingWorldSeed
;
148
if
(this.
_optionsBlocker
!=
null
)
149
{
150
if
(flag)
151
{
152
return
;
153
}
154
}
155
else
if
(flag)
156
{
157
if
(!flag)
158
{
159
}
160
int
screenWidth =
Main
.
screenWidth
;
161
int
screenHeight =
Main
.
screenHeight
;
162
return
;
163
}
164
bool
flag2
=
string
.IsNullOrEmpty(this.
newWorldSeed
);
165
string
textValue2
=
Language
.
GetTextValue
(
"UI.EnterSeed"
);
166
}
167
168
// Token: 0x06000EDA RID: 3802 RVA: 0x00049460 File Offset: 0x00047660
169
private
void
DrawImage
()
170
{
171
if
(17000 == 0)
172
{
173
}
174
int
num = this.
difficulty
;
175
if
(!
true
)
176
{
177
}
178
}
179
180
// Token: 0x06000EDB RID: 3803 RVA: 0x000494C8 File Offset: 0x000476C8
181
private
bool
IsOverOptions
(
Vector2
cursorPosition
)
182
{
183
if
(!
true
)
184
{
185
}
186
int
menuMode =
Main
.
menuMode
;
187
if
(this.
displayDifficultyOptions
)
188
{
189
GUIInputRegionExclusive
optionsBlocker
= this.
_optionsBlocker
;
190
this.
_controllerInput
.
DeactivateDifficultyOptions
();
191
}
192
if
(this.
displayWorldOptions
)
193
{
194
GUIInputRegionExclusive
optionsBlocker2
= this.
_optionsBlocker
;
195
this.
_controllerInput
.
DeactivateWorldOptions
();
196
}
197
if
(this.
displayEvilTypeOptions
)
198
{
199
GUIInputRegionExclusive
optionsBlocker3
= this.
_optionsBlocker
;
200
this.
_controllerInput
.
DeactivateEvilTypeOptions
();
201
}
202
return
true
;
203
}
204
205
// Token: 0x06000EDC RID: 3804 RVA: 0x00049530 File Offset: 0x00047730
206
private
void
DrawWorldSize
()
207
{
208
string
textValue
=
Language
.
GetTextValue
(
"UI.WorldSizeSmall"
);
209
SpriteFont
spriteFont
;
210
Vector2
vector =
spriteFont
.MeasureString(
textValue
);
211
string
textValue2
=
Language
.
GetTextValue
(
"UI.WorldSizeMedium"
);
212
SpriteFont
spriteFont2
;
213
Vector2
vector2
=
spriteFont2
.MeasureString(
textValue2
);
214
string
textValue3
=
Language
.
GetTextValue
(
"UI.WorldSizeLarge"
);
215
SpriteFont
spriteFont3
;
216
Vector2
vector3
=
spriteFont3
.MeasureString(
textValue3
);
217
bool
flag = this.
optionOpenClicked
;
218
if
(flag)
219
{
220
if
(!flag)
221
{
222
}
223
bool
mouseLeftRelease =
Main
.
mouseLeftRelease
;
224
}
225
if
(this.
displayWorldOptions
)
226
{
227
int
screenWidth =
Main
.
screenWidth
;
228
int
screenHeight =
Main
.
screenHeight
;
229
}
230
GUIInputRegionExclusive
optionsBlocker
= this.
_optionsBlocker
;
231
if
(optionsBlocker ==
null
|| this.
displayWorldOptions
)
232
{
233
}
234
if
(optionsBlocker ==
null
)
235
{
236
}
237
bool
mouseLeft =
Main
.
mouseLeft
;
238
if
(
optionsBlocker
==
null
)
239
{
240
}
241
bool
mouseLeftRelease2
=
Main
.
mouseLeftRelease
;
242
int
num = this.
worldSize
;
243
}
244
245
// Token: 0x06000EDD RID: 3805 RVA: 0x0004987C File Offset: 0x00047A7C
246
private
void
DrawWorldDifficulty
()
247
{
248
int
num = 4;
249
this.difPulldownCount
= num;
250
string
textValue
=
Language
.
GetTextValue
(
"UI.Normal"
);
251
SpriteFont
spriteFont
;
252
Vector2
vector =
spriteFont
.MeasureString(
textValue
);
253
string
textValue2
=
Language
.
GetTextValue
(
"UI.Expert"
);
254
SpriteFont
spriteFont2
;
255
Vector2
vector2
=
spriteFont2
.MeasureString(
textValue2
);
256
string
textValue3
=
Language
.
GetTextValue
(
"UI.Master"
);
257
SpriteFont
spriteFont3
;
258
Vector2
vector3
=
spriteFont3
.MeasureString(
textValue3
);
259
string
textValue4
=
Language
.
GetTextValue
(
"UI.Creative"
);
260
SpriteFont
spriteFont4
;
261
Vector2
vector4
=
spriteFont4
.MeasureString(
textValue4
);
262
int
num2
= this.
difficulty
;
263
float
num3
= this.
buttonsDistance
;
264
int
screenHeight =
Main
.
screenHeight
;
265
float
num4
= this.
buttonsDistance
;
266
int
screenHeight2
=
Main
.
screenHeight
;
267
float
num5
= this.
buttonsDistance
;
268
int
num6
= 32640;
269
int
num7
= 32768;
270
this.difWrapAround
=
num6
;
271
bool
flag = this.
optionOpenClicked
;
272
if
(flag)
273
{
274
if
(!flag)
275
{
276
}
277
bool
mouseLeftRelease =
Main
.
mouseLeftRelease
;
278
}
279
if
(this.
displayDifficultyOptions
)
280
{
281
if
(num7 == 0)
282
{
283
}
284
int
screenWidth =
Main
.
screenWidth
;
285
int
screenHeight3
=
Main
.
screenHeight
;
286
}
287
GUIInputRegionExclusive
optionsBlocker
= this.
_optionsBlocker
;
288
if
(optionsBlocker ==
null
|| this.
displayDifficultyOptions
)
289
{
290
}
291
if
(optionsBlocker ==
null
)
292
{
293
}
294
bool
mouseLeft =
Main
.
mouseLeft
;
295
if
(
optionsBlocker
==
null
)
296
{
297
}
298
bool
mouseLeftRelease2
=
Main
.
mouseLeftRelease
;
299
if
(this.
difficulty
== 0)
300
{
301
return
;
302
}
303
string
textValue5
=
Language
.
GetTextValue
(
"UI.Expert"
);
304
if
(this.
displayDifficultyOptions
)
305
{
306
}
307
string
textValue6
=
Language
.
GetTextValue
(
"Mobile.CreateWorldDifficultyTitle"
);
308
SpriteFont
spriteFont5
;
309
Vector2
vector5
=
spriteFont5
.MeasureString(
textValue6
);
310
SpriteFont
spriteFont6
;
311
Vector2
vector6
=
spriteFont6
.MeasureString(
textValue5
);
312
long
num8
= 0
L
;
313
SpriteFont
spriteFont7
;
314
Vector2
vector7
=
spriteFont7
.MeasureString(
textValue5
);
315
int
stringLength
=
textValue5
._stringLength;
316
long
num9
= 0
L
;
317
string
text
=
textValue5
.Substring((
int
)
num9
, (
int
)
num8
);
318
SpriteFont
spriteFont8
;
319
Vector2
vector8
=
spriteFont8
.MeasureString(
text
);
320
string
text2 =
text
+
"..."
;
321
bool
flag2
= this.
displayDifficultyOptions
;
322
bool
flag3
= this.
displayWorldOptions
;
323
}
324
325
// Token: 0x06000EDE RID: 3806 RVA: 0x00049D58 File Offset: 0x00047F58
326
private
void
DrawWorldEvilType
()
327
{
328
int
num = 3;
329
this.evilPulldownCount
= num;
330
string
textValue
=
Language
.
GetTextValue
(
"LegacyMisc.103"
);
331
SpriteFont
spriteFont
;
332
Vector2
vector =
spriteFont
.MeasureString(
textValue
);
333
string
textValue2
=
Language
.
GetTextValue
(
"LegacyMisc.101"
);
334
SpriteFont
spriteFont2
;
335
Vector2
vector2
=
spriteFont2
.MeasureString(
textValue2
);
336
string
textValue3
=
Language
.
GetTextValue
(
"LegacyMisc.102"
);
337
SpriteFont
spriteFont3
;
338
Vector2
vector3
=
spriteFont3
.MeasureString(
textValue3
);
339
float
num2
= this.
buttonsDistance
;
340
int
screenHeight =
Main
.
screenHeight
;
341
float
num3
= this.
buttonsDistance
;
342
int
screenHeight2
=
Main
.
screenHeight
;
343
float
num4
= this.
buttonsDistance
;
344
int
num5
= 32640;
345
int
num6
= 32768;
346
this.evilWrapAround
=
num5
;
347
bool
flag = this.
optionOpenClicked
;
348
if
(flag)
349
{
350
if
(!flag)
351
{
352
}
353
bool
mouseLeftRelease =
Main
.
mouseLeftRelease
;
354
}
355
if
(this.
displayEvilTypeOptions
)
356
{
357
if
(num6 == 0)
358
{
359
}
360
int
screenWidth =
Main
.
screenWidth
;
361
int
screenHeight3
=
Main
.
screenHeight
;
362
}
363
GUIInputRegionExclusive
optionsBlocker
= this.
_optionsBlocker
;
364
if
(optionsBlocker ==
null
|| this.
displayEvilTypeOptions
)
365
{
366
}
367
if
(optionsBlocker ==
null
)
368
{
369
}
370
bool
mouseLeft =
Main
.
mouseLeft
;
371
if
(
optionsBlocker
==
null
)
372
{
373
}
374
bool
mouseLeftRelease2
=
Main
.
mouseLeftRelease
;
375
if
(this.
evilType
== 0)
376
{
377
return
;
378
}
379
string
textValue4
=
Language
.
GetTextValue
(
"LegacyMisc.102"
);
380
if
(this.
displayEvilTypeOptions
)
381
{
382
}
383
string
textValue5
=
Language
.
GetTextValue
(
"UI.WorldCreationEvil"
);
384
SpriteFont
spriteFont4
;
385
Vector2
vector4
=
spriteFont4
.MeasureString(
textValue5
);
386
SpriteFont
spriteFont5
;
387
Vector2
vector5
=
spriteFont5
.MeasureString(
textValue4
);
388
long
num7
= 0
L
;
389
SpriteFont
spriteFont6
;
390
Vector2
vector6
=
spriteFont6
.MeasureString(
textValue4
);
391
int
stringLength
=
textValue4
._stringLength;
392
long
num8
= 0
L
;
393
string
text
=
textValue4
.Substring((
int
)
num8
, (
int
)
num7
);
394
SpriteFont
spriteFont7
;
395
Vector2
vector7
=
spriteFont7
.MeasureString(
text
);
396
string
text2 =
text
+
"..."
;
397
bool
flag2
= this.
displayWorldOptions
;
398
bool
flag3
= this.
displayEvilTypeOptions
;
399
if
(flag2)
400
{
401
return
;
402
}
403
bool
flag4
= this.
displayDifficultyOptions
;
404
GUITransactionButton.InputState
inputState
;
405
GUIWorldCreateController
controllerInput
;
406
if
(
inputState
==
GUITransactionButton
.
InputState
.Clicked)
407
{
408
int
num9
= 1;
409
bool
flag5
= this.
displayEvilTypeOptions
;
410
this.optionOpenClicked
= num9 != 0;
411
if
(
flag5
)
412
{
413
GUIInputRegionExclusive
optionsBlocker2
= this.
_optionsBlocker
;
414
this.
_controllerInput
.
DeactivateEvilTypeOptions
();
415
return
;
416
}
417
if
(!flag3)
418
{
419
controllerInput
= this.
_controllerInput
;
420
int
num10
= 2;
421
controllerInput.selectedItem
=
num10
;
422
}
423
int
num11
= 1;
424
this.displayEvilTypeOptions
= num11 != 0;
425
GUIWorldCreateController
controllerInput2
= this.
_controllerInput
;
426
int
num12
= this.
evilType
;
427
int
num13
= this.
evilWrapAround
;
428
GUIInputRegionExclusive
guiinputRegionExclusive
;
429
this._optionsBlocker
=
guiinputRegionExclusive
;
430
controllerInput2
.ActivateEvilTypeOptions(
num12
,
num13
);
431
}
432
if
(
controllerInput
==
null
)
433
{
434
}
435
if
(this.
displayEvilTypeOptions
)
436
{
437
int
num14
= this.
evilWrapAround
;
438
float
num15
= this.
buttonsDistance
;
439
float
pulldownShiftEvil
= this.
_pulldownShiftEvil
;
440
int
num16
= this.
evilWrapAround
;
441
float
num17
= this.
buttonsDistance
;
442
float
pulldownShiftEvil2
= this.
_pulldownShiftEvil
;
443
float
pulldownShiftEvil3
= this.
_pulldownShiftEvil
;
444
int
worldIndex =
controllerInput
.worldIndex;
445
int
num18
= this.
evilPulldownCount
;
446
float
num19
= this.
buttonsDistance
;
447
int
num20
= this.
evilWrapAround
;
448
float
pulldownShiftEvil4
= this.
_pulldownShiftEvil
;
449
int
num21
= this.
evilPulldownCount
;
450
float
num22
= this.
buttonsDistance
;
451
float
pulldownShiftEvil5
= this.
_pulldownShiftEvil
;
452
int
worldIndex2
= controllerInput.
worldIndex
;
453
controllerInput.worldIndex
=
worldIndex2
;
454
string
textValue6
=
Language
.
GetTextValue
(
"LegacyMisc.103"
);
455
int
num23
= this.
evilType
;
456
GUITransactionButton.InputState
inputState2
;
457
if
(
inputState2
==
GUITransactionButton
.
InputState
.Clicked && !
this
.optionOpenClicked)
458
{
459
this.evilType
=
controllerInput
;
460
string
textValue7
=
Language
.
GetTextValue
(
"UI.WorldDescriptionEvilRandom"
);
461
this.description
=
textValue7
;
462
GUIInputRegionExclusive
optionsBlocker3
= this.
_optionsBlocker
;
463
this.
_controllerInput
.
DeactivateEvilTypeOptions
();
464
}
465
string
textValue8
=
Language
.
GetTextValue
(
"LegacyMisc.101"
);
466
int
num24
= this.
evilType
;
467
GUITransactionButton.InputState
inputState3
;
468
if
(
inputState3
==
GUITransactionButton
.
InputState
.Clicked && !
this
.optionOpenClicked)
469
{
470
string
textValue9
=
Language
.
GetTextValue
(
"UI.WorldDescriptionEvilCorrupt"
);
471
this.description
=
textValue9
;
472
GUIInputRegionExclusive
optionsBlocker4
= this.
_optionsBlocker
;
473
this.
_controllerInput
.
DeactivateEvilTypeOptions
();
474
}
475
string
textValue10
=
Language
.
GetTextValue
(
"LegacyMisc.102"
);
476
int
num25
= this.
evilType
;
477
GUITransactionButton.InputState
inputState4
;
478
if
(
inputState4
==
GUITransactionButton
.
InputState
.Clicked && !
this
.optionOpenClicked)
479
{
480
string
textValue11
=
Language
.
GetTextValue
(
"UI.WorldDescriptionEvilCrimson"
);
481
this.description
=
textValue11
;
482
int
num26
= 1;
483
this.evilType
=
num26
;
484
GUIInputRegionExclusive
optionsBlocker5
= this.
_optionsBlocker
;
485
this.
_controllerInput
.
DeactivateEvilTypeOptions
();
486
}
487
GUIInputRegionExclusive
optionsBlocker6
= this.
_optionsBlocker
;
488
if
(optionsBlocker6 !=
null
)
489
{
490
int
num27
= 1;
491
optionsBlocker6.Active
=
num27
!= 0;
492
bool
mouseLeft2
=
Main
.
mouseLeft
;
493
bool
mouseLeftRelease3
=
Main
.
mouseLeftRelease
;
494
GUIInputRegionExclusive
optionsBlocker7
= this.
_optionsBlocker
;
495
this.
_controllerInput
.
DeactivateEvilTypeOptions
();
496
}
497
}
498
}
499
500
// Token: 0x06000EDF RID: 3807 RVA: 0x0004A158 File Offset: 0x00048358
501
private
void
DrawDescription
()
502
{
503
bool
flag =
string
.IsNullOrEmpty(this.
description
);
504
string
text
;
505
this.description
=
text
;
506
}
507
508
// Token: 0x06000EE0 RID: 3808 RVA: 0x0004A180 File Offset: 0x00048380
509
private
void
EnterName
()
510
{
511
Main
.
clrInput
();
512
GUIWorldCreateController
controllerInput
= this.
_controllerInput
;
513
GUIInputRegionExclusive
guiinputRegionExclusive
;
514
this._optionsBlocker
=
guiinputRegionExclusive
;
515
controllerInput
.ActivateName();
516
}
517
518
// Token: 0x06000EE1 RID: 3809 RVA: 0x0004A1A8 File Offset: 0x000483A8
519
private
void
CloseNameEdit
()
520
{
521
if
(!
true
)
522
{
523
}
524
Main
.
CloseKeyboard
();
525
GUIInputRegionExclusive
optionsBlocker
= this.
_optionsBlocker
;
526
this.
_controllerInput
.
DeactivateName
();
527
}
528
529
// Token: 0x06000EE2 RID: 3810 RVA: 0x0004A1D4 File Offset: 0x000483D4
530
private
void
EnterSeed
()
531
{
532
this.editingWorldSeed
=
true
;
533
if
(!
true
)
534
{
535
}
536
Main
.
clrInput
();
537
string
text
= this.
newWorldSeed
;
538
this._worldSeed
=
text
;
539
GUIWorldCreateController
controllerInput
= this.
_controllerInput
;
540
GUIInputRegionExclusive
guiinputRegionExclusive
;
541
this._optionsBlocker
=
guiinputRegionExclusive
;
542
controllerInput
.ActivateSeed();
543
}
544
545
// Token: 0x06000EE3 RID: 3811 RVA: 0x0004A218 File Offset: 0x00048418
546
private
void
CloseSeedEdit
()
547
{
548
if
(!
true
)
549
{
550
}
551
Main
.
CloseKeyboard
();
552
GUIInputRegionExclusive
optionsBlocker
= this.
_optionsBlocker
;
553
this.
_controllerInput
.
DeactivateSeed
();
554
}
555
556
// Token: 0x06000EE4 RID: 3812 RVA: 0x0004A244 File Offset: 0x00048444
557
public
void
GenerateSeed
()
558
{
559
if
(!
true
)
560
{
561
}
562
int
num;
563
string
text
= num.ToString();
564
this.newWorldSeed
=
text
;
565
}
566
567
// Token: 0x06000EE5 RID: 3813 RVA: 0x0004A264 File Offset: 0x00048464
568
public
void
GenerateName
()
569
{
570
LocalizedText
localizedText
;
571
string <Value>k__BackingField =
localizedText
.<Value>k__BackingField;
572
LocalizedText
localizedText2
;
573
string <Value>
k__BackingField2
=
localizedText2
.<Value>k__BackingField;
574
LocalizedText
localizedText3
;
575
string <Value>
k__BackingField3
=
localizedText3
.<Value>k__BackingField;
576
int
num;
577
if
(num != 0)
578
{
579
return
;
580
}
581
string
textValue
=
Language
.
GetTextValue
(
"SpecialWorldName.TheConstant"
);
582
}
583
584
// Token: 0x06000EE6 RID: 3814 RVA: 0x0004A29C File Offset: 0x0004849C
585
private
void
ProcessSpecialSeeds
(
string
processedSeed
)
586
{
587
int
num = 1;
588
if
(num == 0)
589
{
590
}
591
bool
flag =
processedSeed
.ToLower() ==
"no traps"
;
592
bool
flag2
=
processedSeed
.ToLower() ==
"notraps"
;
593
if
(num == 0)
594
{
595
}
596
bool
flag3
=
processedSeed
.ToLower() ==
"not the bees"
;
597
bool
flag4
=
processedSeed
.ToLower() ==
"not the bees!"
;
598
bool
flag5
=
processedSeed
.ToLower() ==
"notthebees"
;
599
if
(num == 0)
600
{
601
}
602
bool
flag6
=
processedSeed
.ToLower() ==
"for the worthy"
;
603
bool
flag7
=
processedSeed
.ToLower() ==
"fortheworthy"
;
604
if
(num == 0)
605
{
606
}
607
bool
flag8
=
processedSeed
.ToLower() ==
"don't dig up"
;
608
bool
flag9
=
processedSeed
.ToLower() ==
"dont dig up"
;
609
bool
flag10
=
processedSeed
.ToLower() ==
"dontdigup"
;
610
if
(num == 0)
611
{
612
}
613
bool
flag11
=
processedSeed
.ToLower() ==
"celebrationmk10"
;
614
if
(num == 0)
615
{
616
}
617
bool
flag12
=
processedSeed
.ToLower() ==
"constant"
;
618
bool
flag13
=
processedSeed
.ToLower() ==
"theconstant"
;
619
bool
flag14
=
processedSeed
.ToLower() ==
"the constant"
;
620
bool
flag15
=
processedSeed
.ToLower() ==
"eye4aneye"
;
621
bool
flag16
=
processedSeed
.ToLower() ==
"eyeforaneye"
;
622
if
(num == 0)
623
{
624
}
625
bool
flag17
=
processedSeed
.ToLower() ==
"get fixed boi"
;
626
bool
flag18
=
processedSeed
.ToLower() ==
"getfixedboi"
;
627
if
(num == 0)
628
{
629
}
630
}
631
632
// Token: 0x06000EE7 RID: 3815 RVA: 0x0004A420 File Offset: 0x00048620
633
public
void
CreateWorld
()
634
{
635
if
(!
true
)
636
{
637
}
638
Main.menuMode
= 7;
639
Main
.
clrInput
();
640
}
641
642
// Token: 0x06000EE8 RID: 3816 RVA: 0x0004A4E4 File Offset: 0x000486E4
643
public
void
CreateWorldCheck
()
644
{
645
int
num = this.
worldSize
;
646
}
647
648
// Token: 0x06000EE9 RID: 3817 RVA: 0x0004A508 File Offset: 0x00048708
649
private
void
DrawMainButtons
()
650
{
651
bool
mouseLeft =
Main
.
mouseLeft
;
652
bool
mouseLeftRelease =
Main
.
mouseLeftRelease
;
653
string
textValue
=
Language
.
GetTextValue
(
"UI.Create"
);
654
if
(!this.
displayWorldOptions
&& this.
displayDifficultyOptions
)
655
{
656
return
;
657
}
658
GUITransactionButton.InputState
inputState
;
659
if
(
inputState
==
GUITransactionButton
.
InputState
.Clicked)
660
{
661
}
662
string
textValue2
=
Language
.
GetTextValue
(
"UI.Back"
);
663
GUITransactionButton.InputState
inputState2
;
664
if
(
inputState2
!=
GUITransactionButton
.
InputState
.Clicked)
665
{
666
}
667
if
(this.
displayDifficultyOptions
)
668
{
669
GUIInputRegionExclusive
optionsBlocker
= this.
_optionsBlocker
;
670
this.
_controllerInput
.
DeactivateDifficultyOptions
();
671
return
;
672
}
673
if
(this.
displayWorldOptions
)
674
{
675
GUIInputRegionExclusive
optionsBlocker2
= this.
_optionsBlocker
;
676
this.
_controllerInput
.
DeactivateWorldOptions
();
677
return
;
678
}
679
if
(this.
displayEvilTypeOptions
)
680
{
681
GUIInputRegionExclusive
optionsBlocker3
= this.
_optionsBlocker
;
682
this.
_controllerInput
.
DeactivateEvilTypeOptions
();
683
return
;
684
}
685
}
686
687
// Token: 0x06000EEA RID: 3818 RVA: 0x0004A5BC File Offset: 0x000487BC
688
private
void
DrawRandomiseButtons
()
689
{
690
bool
anyControllerConnected
=
ControllerActionManager
.
AnyControllerConnected
;
691
string
textValue
=
Language
.
GetTextValue
(
"Mobile.Randomize"
);
692
int
selectedItem = this.
_controllerInput
.
selectedItem
;
693
GUITransactionButton.InputState
inputState
;
694
if
(
inputState
==
GUITransactionButton
.
InputState
.Clicked)
695
{
696
int
selectedItem2
= this.
_controllerInput
.
selectedItem
;
697
int
selectedItem3
= this.
_controllerInput
.
selectedItem
;
698
this.
GenerateSeed
();
699
}
700
GUITransactionButton.InputState
inputState2
;
701
if
(
inputState2
==
GUITransactionButton
.
InputState
.Clicked)
702
{
703
}
704
GUITransactionButton.InputState
inputState3
;
705
if
(
inputState3
!=
GUITransactionButton
.
InputState
.Clicked)
706
{
707
return
;
708
}
709
this.
GenerateSeed
();
710
}
711
712
// Token: 0x06000EEB RID: 3819 RVA: 0x0004A628 File Offset: 0x00048828
713
private
void
Back
()
714
{
715
if
(!
true
)
716
{
717
}
718
Main.menuMode
= 6;
719
}
720
721
// Token: 0x06000EEC RID: 3820 RVA: 0x0004A640 File Offset: 0x00048840
722
private
void
ProcessNewWorldSeed
()
723
{
724
string
text
= this.
newWorldSeed
.Trim();
725
int
num = 46;
726
this.newWorldSeed
=
text
;
727
string
[]
array
;
728
bool
flag =
int
.TryParse(
array
, num);
729
}
730
731
// Token: 0x06000EED RID: 3821 RVA: 0x0004A69C File Offset: 0x0004889C
732
public
GUIWorldCreateMenu
()
733
{
734
}
735
736
// Token: 0x04001ADB RID: 6875
737
private
bool
editingWorldSeed
;
738
739
// Token: 0x04001ADC RID: 6876
740
private
string
newWorldSeed
;
741
742
// Token: 0x04001ADD RID: 6877
743
public
int
worldSize
;
744
745
// Token: 0x04001ADE RID: 6878
746
public
int
evilType
;
747
748
// Token: 0x04001ADF RID: 6879
749
public
int
difficulty
;
750
751
// Token: 0x04001AE0 RID: 6880
752
private
float
createButtonScale
;
753
754
// Token: 0x04001AE1 RID: 6881
755
private
float
backButtonScale
;
756
757
// Token: 0x04001AE2 RID: 6882
758
private
float
smallButtonScale
;
759
760
// Token: 0x04001AE3 RID: 6883
761
private
float
mediumButtonScale
;
762
763
// Token: 0x04001AE4 RID: 6884
764
private
float
largeButtonScale
;
765
766
// Token: 0x04001AE5 RID: 6885
767
private
float
evilRandomButtonScale
;
768
769
// Token: 0x04001AE6 RID: 6886
770
private
float
evilCorruptionButtonScale
;
771
772
// Token: 0x04001AE7 RID: 6887
773
private
float
evilCrimsonButtonScale
;
774
775
// Token: 0x04001AE8 RID: 6888
776
private
float
generateNameScale
;
777
778
// Token: 0x04001AE9 RID: 6889
779
private
float
generateSeedScale
;
780
781
// Token: 0x04001AEA RID: 6890
782
private
float
randomiseButtonScale
;
783
784
// Token: 0x04001AEB RID: 6891
785
private
float
normalButtonScale
;
786
787
// Token: 0x04001AEC RID: 6892
788
private
float
expertButtonScale
;
789
790
// Token: 0x04001AED RID: 6893
791
private
static
Texture2D
previewEvilRandom
;
792
793
// Token: 0x04001AEE RID: 6894
794
private
static
Texture2D
previewEvilCorruption
;
795
796
// Token: 0x04001AEF RID: 6895
797
private
static
Texture2D
previewEvilCrimson
;
798
799
// Token: 0x04001AF0 RID: 6896
800
private
static
Texture2D
previewSizeSmall
;
801
802
// Token: 0x04001AF1 RID: 6897
803
private
static
Texture2D
previewSizeMedium
;
804
805
// Token: 0x04001AF2 RID: 6898
806
private
static
Texture2D
previewSizeLarge
;
807
808
// Token: 0x04001AF3 RID: 6899
809
private
static
Texture2D
previewDifficultyNormalBackground
;
810
811
// Token: 0x04001AF4 RID: 6900
812
private
static
Texture2D
previewDifficultyNormalBunny
;
813
814
// Token: 0x04001AF5 RID: 6901
815
private
static
Texture2D
previewDifficultyMasterBackground
;
816
817
// Token: 0x04001AF6 RID: 6902
818
private
static
Texture2D
previewDifficultyMasterBunny
;
819
820
// Token: 0x04001AF7 RID: 6903
821
private
static
Texture2D
previewDifficultyExpertBackground
;
822
823
// Token: 0x04001AF8 RID: 6904
824
private
static
Texture2D
previewDifficultyExpertBunny
;
825
826
// Token: 0x04001AF9 RID: 6905
827
private
static
Texture2D
previewDifficultyJourneyBunny
;
828
829
// Token: 0x04001AFA RID: 6906
830
public
string
description
;
831
832
// Token: 0x04001AFB RID: 6907
833
private
string
_worldName
=
""
;
834
835
// Token: 0x04001AFC RID: 6908
836
private
string
_worldSeed
=
""
;
837
838
// Token: 0x04001AFD RID: 6909
839
private
GUIWorldCreateController
_controllerInput
;
840
841
// Token: 0x04001AFE RID: 6910
842
private
float
NameScale
;
843
844
// Token: 0x04001AFF RID: 6911
845
private
float
SeedScale
;
846
847
// Token: 0x04001B00 RID: 6912
848
private
float
WorldScale
;
849
850
// Token: 0x04001B01 RID: 6913
851
public
bool
displayWorldOptions
;
852
853
// Token: 0x04001B02 RID: 6914
854
public
bool
displayDifficultyOptions
;
855
856
// Token: 0x04001B03 RID: 6915
857
public
bool
displayEvilTypeOptions
;
858
859
// Token: 0x04001B04 RID: 6916
860
private
GUIInputRegionExclusive
_optionsBlocker
;
861
862
// Token: 0x04001B05 RID: 6917
863
private
bool
optionOpenClicked
;
864
865
// Token: 0x04001B06 RID: 6918
866
public
float
_pulldownShift
;
867
868
// Token: 0x04001B07 RID: 6919
869
public
float
_pulldownShiftDif
;
870
871
// Token: 0x04001B08 RID: 6920
872
public
float
_pulldownShiftEvil
;
873
874
// Token: 0x04001B09 RID: 6921
875
public
int
difWrapAround
;
876
877
// Token: 0x04001B0A RID: 6922
878
public
int
evilWrapAround
;
879
880
// Token: 0x04001B0B RID: 6923
881
public
float
buttonsDistance
;
882
883
// Token: 0x04001B0C RID: 6924
884
public
int
difPulldownCount
;
885
886
// Token: 0x04001B0D RID: 6925
887
public
int
evilPulldownCount
;
888
889
// Token: 0x04001B0E RID: 6926
890
private
float
DifficultyScale
;
891
892
// Token: 0x04001B0F RID: 6927
893
private
float
EvilTypeScale
;
894
}
j__TPar
class f__AnonymousType0<< Count > j__TPar
Definition
--f__AnonymousType0.cs:8
Controller.ControllerActionManager.AnyControllerConnected
static bool AnyControllerConnected
Definition
ControllerActionManager.cs:135
Controller.ControllerActionManager
Definition
ControllerActionManager.cs:10
GUIInputRegionExclusive
Definition
GUIInputRegionExclusive.cs:7
GUITransactionButton.InputState
InputState
Definition
GUITransactionButton.cs:534
GUITransactionButton
Definition
GUITransactionButton.cs:11
GUIWorldCreateController.DeactivateSeed
void DeactivateSeed()
Definition
GUIWorldCreateController.cs:62
GUIWorldCreateController.DeactivateDifficultyOptions
void DeactivateDifficultyOptions()
Definition
GUIWorldCreateController.cs:75
GUIWorldCreateController.worldIndex
int worldIndex
Definition
GUIWorldCreateController.cs:143
GUIWorldCreateController.DeactivateWorldOptions
void DeactivateWorldOptions()
Definition
GUIWorldCreateController.cs:87
GUIWorldCreateController.DeactivateName
void DeactivateName()
Definition
GUIWorldCreateController.cs:51
GUIWorldCreateController.DeactivateEvilTypeOptions
void DeactivateEvilTypeOptions()
Definition
GUIWorldCreateController.cs:99
GUIWorldCreateController.selectedItem
int selectedItem
Definition
GUIWorldCreateController.cs:131
GUIWorldCreateController
Definition
GUIWorldCreateController.cs:6
GUIWorldCreateMenu.WorldDescriptionSizeLarge
string WorldDescriptionSizeLarge
Definition
GUIWorldCreateMenu.cs:45
GUIWorldCreateMenu._pulldownShiftEvil
float _pulldownShiftEvil
Definition
GUIWorldCreateMenu.cs:872
GUIWorldCreateMenu.expertButtonScale
float expertButtonScale
Definition
GUIWorldCreateMenu.cs:788
GUIWorldCreateMenu.WorldDescriptionMaster
string WorldDescriptionMaster
Definition
GUIWorldCreateMenu.cs:85
GUIWorldCreateMenu.CloseNameEdit
void CloseNameEdit()
Definition
GUIWorldCreateMenu.cs:519
GUIWorldCreateMenu.DrawSeed
void DrawSeed()
Definition
GUIWorldCreateMenu.cs:141
GUIWorldCreateMenu.displayEvilTypeOptions
bool displayEvilTypeOptions
Definition
GUIWorldCreateMenu.cs:857
GUIWorldCreateMenu.GenerateName
void GenerateName()
Definition
GUIWorldCreateMenu.cs:568
GUIWorldCreateMenu.worldSize
int worldSize
Definition
GUIWorldCreateMenu.cs:743
GUIWorldCreateMenu.LoadContent
static void LoadContent(ContentManager content)
Definition
GUIWorldCreateMenu.cs:103
GUIWorldCreateMenu.displayWorldOptions
bool displayWorldOptions
Definition
GUIWorldCreateMenu.cs:851
GUIWorldCreateMenu.optionOpenClicked
bool optionOpenClicked
Definition
GUIWorldCreateMenu.cs:863
GUIWorldCreateMenu.WorldDescriptionSizeMedium
string WorldDescriptionSizeMedium
Definition
GUIWorldCreateMenu.cs:35
GUIWorldCreateMenu.previewEvilRandom
static Texture2D previewEvilRandom
Definition
GUIWorldCreateMenu.cs:791
GUIWorldCreateMenu.previewDifficultyNormalBunny
static Texture2D previewDifficultyNormalBunny
Definition
GUIWorldCreateMenu.cs:812
GUIWorldCreateMenu.DifficultyScale
float DifficultyScale
Definition
GUIWorldCreateMenu.cs:890
GUIWorldCreateMenu.mediumButtonScale
float mediumButtonScale
Definition
GUIWorldCreateMenu.cs:761
GUIWorldCreateMenu.WorldScale
float WorldScale
Definition
GUIWorldCreateMenu.cs:848
GUIWorldCreateMenu.DrawImage
void DrawImage()
Definition
GUIWorldCreateMenu.cs:169
GUIWorldCreateMenu.DrawRandomiseButtons
void DrawRandomiseButtons()
Definition
GUIWorldCreateMenu.cs:688
GUIWorldCreateMenu.CloseSeedEdit
void CloseSeedEdit()
Definition
GUIWorldCreateMenu.cs:546
GUIWorldCreateMenu.WorldDescriptionNormal
string WorldDescriptionNormal
Definition
GUIWorldCreateMenu.cs:65
GUIWorldCreateMenu.description
string description
Definition
GUIWorldCreateMenu.cs:830
GUIWorldCreateMenu._pulldownShiftDif
float _pulldownShiftDif
Definition
GUIWorldCreateMenu.cs:869
GUIWorldCreateMenu.GenerateSeed
void GenerateSeed()
Definition
GUIWorldCreateMenu.cs:557
GUIWorldCreateMenu.evilRandomButtonScale
float evilRandomButtonScale
Definition
GUIWorldCreateMenu.cs:767
GUIWorldCreateMenu.previewEvilCrimson
static Texture2D previewEvilCrimson
Definition
GUIWorldCreateMenu.cs:797
GUIWorldCreateMenu.DrawWorldSize
void DrawWorldSize()
Definition
GUIWorldCreateMenu.cs:206
GUIWorldCreateMenu.previewDifficultyJourneyBunny
static Texture2D previewDifficultyJourneyBunny
Definition
GUIWorldCreateMenu.cs:827
GUIWorldCreateMenu.generateNameScale
float generateNameScale
Definition
GUIWorldCreateMenu.cs:776
GUIWorldCreateMenu.smallButtonScale
float smallButtonScale
Definition
GUIWorldCreateMenu.cs:758
GUIWorldCreateMenu.WorldDescriptionCreative
string WorldDescriptionCreative
Definition
GUIWorldCreateMenu.cs:55
GUIWorldCreateMenu.WorldDescriptionName
string WorldDescriptionName
Definition
GUIWorldCreateMenu.cs:15
GUIWorldCreateMenu._optionsBlocker
GUIInputRegionExclusive _optionsBlocker
Definition
GUIWorldCreateMenu.cs:860
GUIWorldCreateMenu.CreateWorld
void CreateWorld()
Definition
GUIWorldCreateMenu.cs:633
GUIWorldCreateMenu.WorldDescriptionDefault
string WorldDescriptionDefault
Definition
GUIWorldCreateMenu.cs:95
GUIWorldCreateMenu.editingWorldSeed
bool editingWorldSeed
Definition
GUIWorldCreateMenu.cs:737
GUIWorldCreateMenu.normalButtonScale
float normalButtonScale
Definition
GUIWorldCreateMenu.cs:785
GUIWorldCreateMenu.backButtonScale
float backButtonScale
Definition
GUIWorldCreateMenu.cs:755
GUIWorldCreateMenu.evilPulldownCount
int evilPulldownCount
Definition
GUIWorldCreateMenu.cs:887
GUIWorldCreateMenu.CreateWorldCheck
void CreateWorldCheck()
Definition
GUIWorldCreateMenu.cs:643
GUIWorldCreateMenu.Draw
void Draw()
Definition
GUIWorldCreateMenu.cs:121
GUIWorldCreateMenu.difWrapAround
int difWrapAround
Definition
GUIWorldCreateMenu.cs:875
GUIWorldCreateMenu.previewDifficultyMasterBunny
static Texture2D previewDifficultyMasterBunny
Definition
GUIWorldCreateMenu.cs:818
GUIWorldCreateMenu.Back
void Back()
Definition
GUIWorldCreateMenu.cs:713
GUIWorldCreateMenu.evilCorruptionButtonScale
float evilCorruptionButtonScale
Definition
GUIWorldCreateMenu.cs:770
GUIWorldCreateMenu.displayDifficultyOptions
bool displayDifficultyOptions
Definition
GUIWorldCreateMenu.cs:854
GUIWorldCreateMenu.previewDifficultyNormalBackground
static Texture2D previewDifficultyNormalBackground
Definition
GUIWorldCreateMenu.cs:809
GUIWorldCreateMenu.buttonsDistance
float buttonsDistance
Definition
GUIWorldCreateMenu.cs:881
GUIWorldCreateMenu.EnterName
void EnterName()
Definition
GUIWorldCreateMenu.cs:509
GUIWorldCreateMenu.GUIWorldCreateMenu
GUIWorldCreateMenu()
Definition
GUIWorldCreateMenu.cs:732
GUIWorldCreateMenu.ProcessNewWorldSeed
void ProcessNewWorldSeed()
Definition
GUIWorldCreateMenu.cs:722
GUIWorldCreateMenu.newWorldSeed
string newWorldSeed
Definition
GUIWorldCreateMenu.cs:740
GUIWorldCreateMenu.DrawMainButtons
void DrawMainButtons()
Definition
GUIWorldCreateMenu.cs:649
GUIWorldCreateMenu.DrawDescription
void DrawDescription()
Definition
GUIWorldCreateMenu.cs:501
GUIWorldCreateMenu._pulldownShift
float _pulldownShift
Definition
GUIWorldCreateMenu.cs:866
GUIWorldCreateMenu.EvilTypeScale
float EvilTypeScale
Definition
GUIWorldCreateMenu.cs:893
GUIWorldCreateMenu.previewDifficultyExpertBunny
static Texture2D previewDifficultyExpertBunny
Definition
GUIWorldCreateMenu.cs:824
GUIWorldCreateMenu.DrawWorldDifficulty
void DrawWorldDifficulty()
Definition
GUIWorldCreateMenu.cs:246
GUIWorldCreateMenu.difPulldownCount
int difPulldownCount
Definition
GUIWorldCreateMenu.cs:884
GUIWorldCreateMenu.previewSizeSmall
static Texture2D previewSizeSmall
Definition
GUIWorldCreateMenu.cs:800
GUIWorldCreateMenu.generateSeedScale
float generateSeedScale
Definition
GUIWorldCreateMenu.cs:779
GUIWorldCreateMenu.DrawName
void DrawName()
Definition
GUIWorldCreateMenu.cs:127
GUIWorldCreateMenu._worldSeed
string _worldSeed
Definition
GUIWorldCreateMenu.cs:836
GUIWorldCreateMenu.randomiseButtonScale
float randomiseButtonScale
Definition
GUIWorldCreateMenu.cs:782
GUIWorldCreateMenu.largeButtonScale
float largeButtonScale
Definition
GUIWorldCreateMenu.cs:764
GUIWorldCreateMenu.createButtonScale
float createButtonScale
Definition
GUIWorldCreateMenu.cs:752
GUIWorldCreateMenu.evilType
int evilType
Definition
GUIWorldCreateMenu.cs:746
GUIWorldCreateMenu.SeedScale
float SeedScale
Definition
GUIWorldCreateMenu.cs:845
GUIWorldCreateMenu.EnterSeed
void EnterSeed()
Definition
GUIWorldCreateMenu.cs:530
GUIWorldCreateMenu.IsOverOptions
bool IsOverOptions(Vector2 cursorPosition)
Definition
GUIWorldCreateMenu.cs:181
GUIWorldCreateMenu.WorldDescriptionSizeSmall
string WorldDescriptionSizeSmall
Definition
GUIWorldCreateMenu.cs:25
GUIWorldCreateMenu.DrawWorldEvilType
void DrawWorldEvilType()
Definition
GUIWorldCreateMenu.cs:326
GUIWorldCreateMenu.evilWrapAround
int evilWrapAround
Definition
GUIWorldCreateMenu.cs:878
GUIWorldCreateMenu.previewDifficultyMasterBackground
static Texture2D previewDifficultyMasterBackground
Definition
GUIWorldCreateMenu.cs:815
GUIWorldCreateMenu.previewSizeMedium
static Texture2D previewSizeMedium
Definition
GUIWorldCreateMenu.cs:803
GUIWorldCreateMenu.evilCrimsonButtonScale
float evilCrimsonButtonScale
Definition
GUIWorldCreateMenu.cs:773
GUIWorldCreateMenu._worldName
string _worldName
Definition
GUIWorldCreateMenu.cs:833
GUIWorldCreateMenu.previewEvilCorruption
static Texture2D previewEvilCorruption
Definition
GUIWorldCreateMenu.cs:794
GUIWorldCreateMenu.previewDifficultyExpertBackground
static Texture2D previewDifficultyExpertBackground
Definition
GUIWorldCreateMenu.cs:821
GUIWorldCreateMenu.NameScale
float NameScale
Definition
GUIWorldCreateMenu.cs:842
GUIWorldCreateMenu.ProcessSpecialSeeds
void ProcessSpecialSeeds(string processedSeed)
Definition
GUIWorldCreateMenu.cs:585
GUIWorldCreateMenu.difficulty
int difficulty
Definition
GUIWorldCreateMenu.cs:749
GUIWorldCreateMenu.WorldDescriptionExpert
string WorldDescriptionExpert
Definition
GUIWorldCreateMenu.cs:75
GUIWorldCreateMenu._controllerInput
GUIWorldCreateController _controllerInput
Definition
GUIWorldCreateMenu.cs:839
GUIWorldCreateMenu.previewSizeLarge
static Texture2D previewSizeLarge
Definition
GUIWorldCreateMenu.cs:806
GUIWorldCreateMenu
Definition
GUIWorldCreateMenu.cs:11
Microsoft.Xna.Framework.Content.ContentManager
Definition
ContentManager.cs:16
Microsoft.Xna.Framework.Graphics.SpriteFont
Definition
SpriteFont.cs:14
Microsoft.Xna.Framework.Graphics.Texture2D
Definition
Texture2D.cs:10
Terraria.Localization.Language.GetTextValue
static string GetTextValue(string key)
Definition
Language.cs:54
Terraria.Localization.Language
Definition
Language.cs:11
Terraria.Localization.LocalizedText
Definition
LocalizedText.cs:13
Terraria.Main.mouseLeftRelease
static bool mouseLeftRelease
Definition
Main.cs:2029
Terraria.Main.screenHeight
static int screenHeight
Definition
Main.cs:2015
Terraria.Main.CloseKeyboard
static void CloseKeyboard()
Definition
Main.cs:8523
Terraria.Main.clrInput
static void clrInput()
Definition
Main.cs:8459
Terraria.Main.screenWidth
static int screenWidth
Definition
Main.cs:2001
Terraria.Main.menuMode
static int menuMode
Definition
Main.cs:3357
Terraria.Main.mouseLeft
static bool mouseLeft
Definition
Main.cs:671
Terraria.Main
Definition
Main.cs:67
Controller
Definition
Axis.cs:4
Microsoft.Xna.Framework.Content
Definition
ContentManager.cs:13
Microsoft.Xna.Framework.Graphics
Definition
Blend.cs:4
Microsoft.Xna.Framework
Definition
AudioChannels.cs:4
System.ExceptionArgument.text
@ text
System.ExceptionArgument.array
@ array
System.ConsoleKey.L
@ L
System
Definition
__ComObject.cs:4
Terraria.Localization
Definition
GameCulture.cs:7
Terraria
Definition
Achievement.cs:10
Microsoft.Xna.Framework.Vector2
Definition
Vector2.cs:10
source
GUIWorldCreateMenu.cs
Generated by
1.10.0