-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCard viewer.lua
277 lines (252 loc) · 11.8 KB
/
Card viewer.lua
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
CardViewer = Class{__includes = BaseState}
function CardViewer:init(name,imagePath,level,evolution,inDeck,number,parent,mode)
self.name = name
self.stats = Characters[name]
self.statsOnDisplay = {}
self.level = level
self.evolution = evolution
self.initialPower = characterStrength({self.name,self.level,self.evolution})
self.mode = mode or 'stats'
if self.mode == 'stats' then
self:createStats()
else
self:createBiography()
end
if inDeck then
gStateMachine.current.cardDisplayedNumber = number
self.parent = parent
else
gStateMachine.current.cardDisplayedNumber = number - gStateMachine.current.page * 18
end
gStateMachine.current.cardDisplayedInDeck = inDeck
self:updateEvolution()
--Create image which toggles between displaying stats and description
gui[1] = Button(function() self:swapMode() end,nil,nil,imagePath .. '.jpg',390,540)
end
function CardViewer:updateEvolution()
if self.evolution == 4 then
self.evolutionImage = gStateMachine.current.graphics['Graphics/Evolution Max Big']
if self.evolutionImage then
self.evolutionWidth = self.evolutionImage:getWidth()
self.evolutionX = 690 - self.evolutionWidth-12 - 8
end
else
self.evolutionImage = gStateMachine.current.graphics['Graphics/Evolution Big']
if self.evolutionImage then
self.evolutionWidth = self.evolutionImage:getWidth()
self.evolutionHeight = self.evolutionImage:getHeight()
self.evolutionX = {
690 - self.evolutionHeight-4,
690 - self.evolutionHeight*2-7,
690 - self.evolutionHeight*3-10
}
end
end
end
function CardViewer:changeStat(stat, difference)
if stat == 'Evolution' then
if self.evolution + difference >= 0 and self.evolution + difference <= 4 then
self.evolution = self.evolution + difference
self:updateEvolution()
self:updateStats()
end
else
if self.level + difference >= 1 and self.level + difference <= 60 then
self.level = self.level + difference
self:updateStats(true)
end
end
end
function CardViewer:updateStats(stat)
self.modifier = ((self.level + (60 - self.level) / 1.7) / 60) * (1 - ((4 - self.evolution) * 0.1))
if stat then
self.statsOnDisplay['Level']:updateText('Level: ' .. self.level)
self.statsOnDisplay['Level'].x = self.statsOnDisplay['Level'].x + 270
end
if self.stats['rangedOffense'] then
self.statsOnDisplay['Melee Offense']:updateText('Melee Offense: ' .. math.floor(self.stats['meleeOffense'] * self.modifier+0.5))
self.statsOnDisplay['Ranged Offense']:updateText('Ranged Offense: ' .. math.floor(self.stats['rangedOffense'] * self.modifier+0.5))
self.statsOnDisplay['Ranged Offense'].x = self.statsOnDisplay['Ranged Offense'].x + 270
self.statsOnDisplay['Melee Offense'].x = self.statsOnDisplay['Melee Offense'].x + 270
else
self.statsOnDisplay['Offense']:updateText('Offense: ' .. math.floor(self.stats['meleeOffense'] * self.modifier+0.5))
self.statsOnDisplay['Offense'].x = self.statsOnDisplay['Offense'].x + 270
end
self.statsOnDisplay['Defense']:updateText('Defense: ' .. math.floor(self.stats['defense'] * self.modifier+0.5))
self.statsOnDisplay['Defense'].x = self.statsOnDisplay['Defense'].x + 270
self.statsOnDisplay['Overall Strength']:updateText('Overall Strength: ' .. math.floor(characterStrength({self.name,self.level,self.evolution})+0.5))
self.statsOnDisplay['Overall Strength'].x = self.statsOnDisplay['Overall Strength'].x + 270
self.statsUpdated = true
gStateMachine.current:createCardViewerBackground()
end
function CardViewer:saveStats()
if gStateMachine.current.cardDisplayedInDeck then
P1deckEdit(gStateMachine.current.cardDisplayedNumber,{self.name, self.level, self.evolution})
self.parent.level = self.level
if self.parent.evolution ~= self.evolution then
self.parent:deleteEvolutionSprites()
self.parent.evolution = self.evolution
self.parent:updateEvolutionSprites()
end
P1strength = P1strength - self.initialPower + characterStrength({self.name,self.level,self.evolution})
else
P1cardsEdit(gStateMachine.current.cardDisplayedNumber+(gStateMachine.current.page * 18),{self.name, self.level, self.evolution})
if not gStateMachine.current.sort then
gStateMachine.current.sort = true
end
end
end
function CardViewer:swapMode()
if self.mode == 'stats' then
self.mode = 'biography'
if self.biography == nil then
self:createBiography()
end
if sandbox then
self.statsOnDisplay['Evolution'].visible = false
gui[3].visible = false
gui[4].visible = false
gui[5].visible = false
gui[6].visible = false
self.hiddenbuttons = {gui[3], gui[4]}
gui[3] = gui[7]
gui[4] = gui[8]
gui[7] = nil
gui[8] = nil
end
else
self.mode = 'stats'
if sandbox and gui[7] == nil then
gui[7] = gui[3]
gui[8] = gui[4]
end
if next(self.statsOnDisplay) == nil then
self:createStats()
elseif sandbox then
gui[3] = self.hiddenbuttons[1]
gui[4] = self.hiddenbuttons[2]
self.statsOnDisplay['Evolution'].visible = true
gui[3].visible = true
gui[4].visible = true
gui[5].visible = true
gui[6].visible = true
end
end
gStateMachine.current:createCardViewerBackground()
end
function CardViewer:createBiography()
if self.stats['biography'] then
self.biography = Text(wrap(self.stats['biography'],40),font40SW,'centre',90)
else
self.biography = Text(wrap("No biography currently :(",40),font40SW,'centre',90)
end
self.biography.x = self.biography.x + 270
end
function CardViewer:createStats()
self.modifier = ((self.level + (60 - self.level) / 1.7) / 60) * (1 - ((4 - self.evolution) * 0.1))
self.y = 0
self:createStat(math.floor(self.initialPower+0.5),'Overall Strength')
self.y = self.y + 30
self:createStat(self.level,'Level')
if self.stats['rangedOffense'] then
self:createStat(math.floor(self.stats['meleeOffense'] * self.modifier+0.5),'Melee Offense')
self:createStat(math.floor(self.stats['rangedOffense'] * self.modifier+0.5),'Ranged Offense')
else
self:createStat(math.floor(self.stats['meleeOffense'] * self.modifier+0.5),'Offense')
end
self:createStat(math.floor(self.stats['defense'] * self.modifier+0.5),'Defense')
self:createStat(self.stats['evade'],'Evade')
self:createStat(self.stats['range'],'Range')
self.y = self.y + 45
if self.stats.weaponCount then
self.weapons = {}
self.weapons[self.stats['weapon1']] = 1
for i=2,self.stats['weaponCount'] do
if self.stats['weapon'..tostring(i)] then
if self.weapons[self.stats['weapon'..tostring(i)]] then
self.weapons[self.stats['weapon'..tostring(i)]] = self.weapons[self.stats['weapon'..tostring(i)]] + 1
else
self.weapons[self.stats['weapon'..tostring(i)]] = 1
end
else
self.weapons[self.stats['weapon1']] = self.weapons[self.stats['weapon1']] + 1
end
end
self:createStat(nil,'weapons:',nil,font50SW)
for k, pair in pairs(self.weapons) do
self:createStat(k,pair .. 'x','weapon' .. k,font50SW)
end
self.y = self.y + 15
elseif self.stats['weapon1'] then
self:createStat(self.stats['weapon1'],'weapon',nil,font50SW)
self.y = self.y + 15
end
if self.stats.projectileCount then
self.projectiles = {}
self.projectiles[self.stats['projectile1']] = 1
for i=2,self.stats['projectileCount'] do
if self.stats['projectile'..tostring(i)] then
if self.projectiles[self.stats['projectile'..tostring(i)]] then
self.projectiles[self.stats['projectile'..tostring(i)]] = self.projectiles[self.stats['projectile'..tostring(i)]] + 1
else
self.projectiles[self.stats['projectile'..tostring(i)]] = 1
end
else
self.projectiles[self.stats['projectile1']] = self.projectiles[self.stats['projectile1']] + 1
end
end
self:createStat(nil,'Projectiles:',nil,font50SW)
for k, pair in pairs(self.projectiles) do
self:createStat(k,pair .. 'x','projectile' .. k,font50SW)
end
elseif self.stats['projectile1'] then
self:createStat(self.stats['projectile1'],'Projectile',nil,font50SW)
end
if sandbox then
self.statsOnDisplay['Evolution'] = Text('Evolution',font60SW,'centre',950)
self.statsOnDisplay['Evolution'].x = self.statsOnDisplay['Evolution'].x + 270
gui[3] = Button(function() self:changeStat('Level',-1) end,nil,nil,'Minus',1920/2+40,self.statsOnDisplay['Level'].y+self.statsOnDisplay['Level'].height/2,nil,nil,nil,true)
gui[4] = Button(function() self:changeStat('Level',1) end,nil,nil,'Plus',1920/2+500,self.statsOnDisplay['Level'].y+self.statsOnDisplay['Level'].height/2,nil,nil,nil,true)
gui[5] = Button(function() self:changeStat('Evolution',-1) end,nil,nil,'Minus',1920/2+20,950+self.statsOnDisplay['Evolution'].height/2,nil,nil,nil,true)
gui[6] = Button(function() self:changeStat('Evolution',1) end,nil,nil,'Plus',1920/2+520,950+self.statsOnDisplay['Evolution'].height/2,nil,nil,nil,true)
end
end
function CardViewer:createStat(stat, displayName, name, font)
if name == nil then
name = displayName
end
if font == nil then
font = font60SW
self.y = self.y + 70
else
self.y = self.y + 60
end
if stat then
self.statsOnDisplay[name] = Text(displayName .. ': ' .. stat,font,'centre',self.y)
else
self.statsOnDisplay[name] = Text(displayName,font,'centre',self.y)
end
self.statsOnDisplay[name].x = self.statsOnDisplay[name].x + 270
end
function CardViewer:update()
end
function CardViewer:render()
end
function CardViewer:renderInFront() --Unfortunately no more of these draw arguments can be stored easily as variables as they all depend on the scaling of the card image. This could be updated separately when it changes but currently isn't.
if self.evolutionImage then --In case offthread loading hasn't finished yet (would have to be a very slow system)
local scaling = gui[1].scaling
local scalingX = 600*(gui[1].scaling-1)
local scalingY = 900*(gui[1].scaling-1)
if self.evolution == 4 then
love.graphics.draw(self.evolutionImage,self.evolutionX +((scalingX)/2),(90+12)-((scalingY)/2)+8,0,scaling,scaling,(scaling-1)*1.35*self.evolutionWidth,(scaling-1)/3*self.evolutionWidth)
elseif self.evolution > 0 then
love.graphics.draw(self.evolutionImage,self.evolutionX[1]+((scalingX)/2),(90+12)-((scalingY)/2),math.rad(90),scaling,scaling,(scaling-1)/2*self.evolutionWidth,(scaling-1)/2*self.evolutionWidth)
if self.evolution > 1 then
love.graphics.draw(self.evolutionImage,self.evolutionX[2]+((scalingX)/2),(90+12)-((scalingY)/2),math.rad(90),scaling,scaling,(scaling-1)/2*self.evolutionWidth,(scaling-1)/2*self.evolutionWidth)
if self.evolution > 2 then
love.graphics.draw(self.evolutionImage,self.evolutionX[3]+((scalingX)/2),(90+12)-((scalingY)/2),math.rad(90),scaling,scaling,(scaling-1)/2*self.evolutionWidth,(scaling-1)/2*self.evolutionWidth)
end
end
end
end
end