-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPaperMod.cs
More file actions
123 lines (105 loc) · 3.75 KB
/
PaperMod.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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Graphics;
using Terraria;
using Terraria.ID;
using Terraria.DataStructures;
using Terraria.UI;
using Terraria.ModLoader;
using Terraria.Graphics;
using Terraria.Graphics.Effects;
using Terraria.Graphics.Shaders;
using PaperMod.Necro;
using PaperMod.UI;
using static Terraria.ModLoader.ModContent;
namespace PaperMod
{
public class PaperMod : Mod
{
private UserInterface _necroStatBarsUserInterface;
internal NecroStatBars NecroStatBars;
private UserInterface _necroMinionBarsUserInterface;
internal NecroMinionBars NecroMinionBars;
public override void Load()
{
if (!Main.dedServ)
{
NecroStatBars = new NecroStatBars();
_necroStatBarsUserInterface = new UserInterface();
_necroStatBarsUserInterface.SetState(NecroStatBars);
NecroMinionBars = new NecroMinionBars();
_necroMinionBarsUserInterface = new UserInterface();
_necroMinionBarsUserInterface.SetState(NecroMinionBars);
}
}
public override void UpdateUI(GameTime gameTime)
{
_necroStatBarsUserInterface?.Update(gameTime);
_necroMinionBarsUserInterface?.Update(gameTime);
}
public override void ModifyInterfaceLayers(List<GameInterfaceLayer> layers)
{
int statBarsIndex = layers.FindIndex(layer => layer.Name.Equals("Vanilla: Resource Bars"));
if (statBarsIndex != -1)
{
layers.Insert(statBarsIndex, new LegacyGameInterfaceLayer(
"PaperMod: Necro Stat Bars",
delegate
{
_necroStatBarsUserInterface.Draw(Main.spriteBatch, new GameTime());
return true;
},
InterfaceScaleType.UI)
);
}
int minionBarsIndex = layers.FindIndex(layer => layer.Name.Equals("Vanilla: Resource Bars"));
if (minionBarsIndex != -1)
{
layers.Insert(minionBarsIndex, new LegacyGameInterfaceLayer(
"PaperMod: Necro Stat Bars",
delegate
{
_necroMinionBarsUserInterface.Draw(Main.spriteBatch, new GameTime());
return true;
},
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;
}*/
}
}