-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathResourceItem.cs
More file actions
174 lines (156 loc) · 4.63 KB
/
ResourceItem.cs
File metadata and controls
174 lines (156 loc) · 4.63 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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Graphics;
namespace ImagineCup2012
{
public class ResourceItem
{
private int screws;
private int planks;
private int cement;
private int oilCans;
/*
* Creates a new resource with 0 of each item
* */
public ResourceItem()
{
this.screws = 0;
this.planks = 0;
this.cement = 0;
this.oilCans = 0;
}
/*
* Creates a new resource with the specified amount of each item
* */
public ResourceItem(int screws, int planks, int cement, int oilCans)
{
this.screws = screws;
this.planks = planks;
this.cement = cement;
this.oilCans = oilCans;
}
public int getScrews()
{
return screws;
}
public int getPlanks()
{
return planks;
}
public int getCement()
{
return cement;
}
public int getOilCans()
{
return oilCans;
}
public void setScrews(int screws)
{
this.screws = screws;
}
public void setPlanks(int planks)
{
this.planks = planks;
}
public void setCement(int cement)
{
this.cement = cement;
}
public void setOilCans(int oilCans)
{
this.oilCans = oilCans;
}
/*
* Increase a resource with byAmount
* */
public void increaseResource(string name, int byAmount)
{
string key = "";
EItemType itemType = EItemType.NONE;
if (name == "Screw")
{
screws += byAmount;
key = "HudScrew";
itemType = EItemType.SCREW;
}
else if (name == "Plank")
{
planks += byAmount;
}
else if (name == "Cement")
{
cement += byAmount;
key = "HudCement";
itemType = EItemType.CEMENT;
}
else
{
oilCans += byAmount;
key = "HudOilCan";
itemType = EItemType.OILCAN;
}
foreach (KeyValuePair<string, Texture2D> texture in ResourceManager.getInstance.getRuntimeTextures())
{
if (texture.Key == key)
{
SceneManager.getInstance.getHudManager().getInventoryHud().insertItem(new ItemHud(itemType, texture.Value, new Vector2(), 0.0f,
new Vector2(texture.Value.Width / 2, texture.Value.Height / 2), new Vector2(1, 1)), byAmount, ESlotType.OTHER);
break;
}
}
}
/*
* Decrease a resource with byAmount
* */
public void decreaseResource(string name, int byAmount)
{
string key = "";
EItemType itemType = EItemType.NONE;
if (name == "Screw")
{
screws -= byAmount;
key = "HudScrew";
itemType = EItemType.SCREW;
}
else if (name == "Plank")
{
planks -= byAmount;
}
else if (name == "Cement")
{
cement -= byAmount;
key = "HudCement";
itemType = EItemType.CEMENT;
}
else
{
oilCans -= byAmount;
key = "HudOilCan";
itemType = EItemType.OILCAN;
}
//foreach (KeyValuePair<string, Texture2D> texture in ResourceManager.getInstance.getRuntimeTextures())
//{
// if (texture.Key == key)
// {
// SceneManager.getInstance.getHudManager().getInventoryHud().insertItem(new ItemHud(itemType, texture.Value, new Vector2(), 0.0f,
// new Vector2(texture.Value.Width / 2, texture.Value.Height / 2), new Vector2(1, 1)), byAmount, ESlotType.OTHER);
// break;
// }
// }
}
/*
* DEBUG ONLY
* */
public void numberOfResources()
{
Console.WriteLine("Screws: " + screws);
Console.WriteLine("Planks: " + planks);
Console.WriteLine("Cement: " + cement);
Console.WriteLine("OilCans: " + oilCans);
}
}
}