- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPaperMod.cs
More file actions
Latest commit
123 lines (105 loc) · 3.75 KB
/
Copy pathPaperMod.cs
File metadata and controls
123 lines (105 loc) · 3.75 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
usingSystem;
usingSystem.Collections.Generic;
usingSystem.Linq;
usingSystem.Text;
usingSystem.Threading.Tasks;
usingMicrosoft.Xna.Framework;
usingMicrosoft.Xna.Framework.Graphics;
usingTerraria;
usingTerraria.ID;
usingTerraria.DataStructures;
usingTerraria.UI;
usingTerraria.ModLoader;
usingTerraria.Graphics;
usingTerraria.Graphics.Effects;
usingTerraria.Graphics.Shaders;
usingPaperMod.Necro;
usingPaperMod.UI;
usingstaticTerraria.ModLoader.ModContent;
namespacePaperMod
{
publicclassPaperMod:Mod
{
privateUserInterface_necroStatBarsUserInterface;
internalNecroStatBarsNecroStatBars;
privateUserInterface_necroMinionBarsUserInterface;
internalNecroMinionBarsNecroMinionBars;
publicoverridevoidLoad()
{
if(!Main.dedServ)
{
NecroStatBars=newNecroStatBars();
_necroStatBarsUserInterface=newUserInterface();
_necroStatBarsUserInterface.SetState(NecroStatBars);
NecroMinionBars=newNecroMinionBars();
_necroMinionBarsUserInterface=newUserInterface();
_necroMinionBarsUserInterface.SetState(NecroMinionBars);
}
}
publicoverridevoidUpdateUI(GameTimegameTime)
{
_necroStatBarsUserInterface?.Update(gameTime);
_necroMinionBarsUserInterface?.Update(gameTime);
}
publicoverridevoidModifyInterfaceLayers(List<GameInterfaceLayer>layers)
{
intstatBarsIndex=layers.FindIndex(layer =>layer.Name.Equals("Vanilla: Resource Bars"));
if(statBarsIndex!=-1)
{
layers.Insert(statBarsIndex,newLegacyGameInterfaceLayer(
"PaperMod: Necro Stat Bars",
delegate
{
_necroStatBarsUserInterface.Draw(Main.spriteBatch,newGameTime());
returntrue;
},
InterfaceScaleType.UI)
);
}
intminionBarsIndex=layers.FindIndex(layer =>layer.Name.Equals("Vanilla: Resource Bars"));
if(minionBarsIndex!=-1)
{
layers.Insert(minionBarsIndex,newLegacyGameInterfaceLayer(
"PaperMod: Necro Stat Bars",
delegate
{
_necroMinionBarsUserInterface.Draw(Main.spriteBatch,newGameTime());
returntrue;
},
InterfaceScaleType.UI)
);
}
}
/*internal NecroStatBars necroStatBars;
public UserInterface necroStatBarsInterface;
public override void Load()
{
if (!Main.dedServ)
{
necroStatBars = new NecroStatBars();
necroStatBars.Initialize();
necroStatBarsInterface = new UserInterface();
necroStatBarsInterface.SetState(necroStatBars);
}
}
public override void UpdateUI(GameTime gameTime)
{
if(!Main.gameMenu && NecroStatBars.visible)
{
necroStatBarsInterface?.Update(gameTime);
}
}
public override void ModifyInterfaceLayers(List<GameInterfaceLayer> layers)
{
layers.Add(new LegacyGameInterfaceLayer("PaperMod: Necro Stat Bars", DrawNecroStatBars, InterfaceScaleType.UI));
}
private bool DrawNecroStatBars()
{
if (!Main.gameMenu && NecroStatBars.visible)
{
necroStatBarsInterface.Draw(Main.spriteBatch, new GameTime());
}
return true;
}*/
}
}