-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.lua
More file actions
342 lines (224 loc) · 5.94 KB
/
main.lua
File metadata and controls
342 lines (224 loc) · 5.94 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
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
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
function love.load()
dofile = function(fname) return love.filesystem.load(fname)() end
dt = 1
freeze = 0
-- set rescaling filter
love.graphics.setDefaultFilter("nearest", "nearest")
love.graphics.setLineStyle("rough")
love.graphics.setLineJoin("miter")
fonts ={
main = love.graphics.newFont("assets/fonts/Axmolotl.ttf", 16)
}
-- font is https://tepokato.itch.io/axolotl-font
for i,v in ipairs(fonts) do
v:setFilter("nearest", "nearest",0)
end
love.graphics.setFont(fonts.main)
-- import libraries
-- json handler
json = require "lib.json" -- i would use a submodule, but the git repo has .lua in the name??????
-- custom functions, snippets, etc
helpers = require "lib.helpers"
-- quickly load json files
dpf = require "lib.dpf"
-- localization
loc = require "lib.loc"
loc.load("data/localization.json")
-- manages gamestates
bs = require "lib.basestate"
-- baton, manages input handling
baton = require "lib/baton/baton"
if project.res.useshuv then
shuv = require "lib.shuv"
shuv.init(project)
shuv.hackyfix()
end
-- what it says on the tin
utf8 = require("utf8")
-- deeper, modification of deep, queue functions, now with even more queue
deeper = require "lib/deeper/deeper"
-- tesound, sound playback
te = require"lib.tesound"
-- jprof, profiling
PROF_CAPTURE = project.doprofile
prof = require "lib/profiling/jprof"
prof.enabled(project.doprofile)
if project.doprofile then
print("profiling enabled!")
end
-- lovebird, debugging console
if (not project.release) then
lovebird = require "lib/lovebird/lovebird"
else
lovebird = require "lib.lovebirdstripped"
end
-- entity manager
em = require "lib.entityman"
-- spritesheet manager
ez = require "lib.ezanim_rewrite"
-- tween manager
flux = require "lib/flux/flux"
rw = require "lib/ricewine"
class = require "lib/middleclass/middleclass"
Gamestate = class('Gamestate')
function Gamestate:initialize(name)
self.name = name or 'newstate'
self.updatefunc = function() end
self.bgdrawfunc = function() end
self.fgdrawfunc = function() end
end
function Gamestate:setinit(initfunc)
self.initfunc = initfunc
end
function Gamestate:setupdate(updatefunc)
self.updatefunc = updatefunc
end
function Gamestate:setbgdraw(drawfunc)
self.bgdrawfunc = drawfunc
end
function Gamestate:setfgdraw(drawfunc)
self.fgdrawfunc = drawfunc
end
function Gamestate:init(...)
self:initfunc(...)
end
function Gamestate:update(dt)
maininput:update()
lovebird.update()
helpers.updatemouse()
prof.push("gamestate update")
self:updatefunc(dt)
prof.pop("gamestate update")
prof.push("ricewine update")
rw:update()
prof.pop("ricewine update")
prof.push("flux update")
flux.update(dt)
prof.pop("flux update")
prof.push("entityman update")
em.update(dt)
prof.pop("entityman update")
te.cleanup()
end
function Gamestate:draw()
if project.res.useshuv then
shuv.start()
end
prof.push("bg draw")
self:bgdrawfunc()
prof.pop("bg draw")
prof.push("entityman draw")
em.draw()
prof.pop("entityman draw")
prof.push("fg draw")
self:fgdrawfunc()
prof.pop("fg draw")
love.graphics.setColor(1,1,1,1)
if project.res.useshuv then
shuv.finish()
end
end
Entity = class('Entity')
function Entity:initialize(params)
params = params or {}
self.layer = self.layer or 0
self.uplayer = self.uplayer or 0
self.delete = false
for k,v in pairs(params) do
self[k] = v
end
end
function Entity:update(dt)
end
function Entity:draw(dt)
end
love.window.setTitle(project.name)
paused = false
--load sprites
sprites = require('preload.sprites')
-- make ezanim templates
animations = require('preload.animations')
-- make quads
quads = require('preload.quads')
-- load shaderss
shaders = require('preload.shaders')
--colors
colors = require('preload.colors')
function color(c)
c = c or 'white'
love.graphics.setColor(colors[c])
end
print("setting up controls")
maininput = baton.new {
controls = project.ctrls,
pairs = {
udlr = {"up", "down","left", "right"}
},
joystick = love.joystick.getJoysticks()[1],
}
-- load savefile
local defaultsave = dpf.loadjson(project.defaultsaveloc)
if project.nosaves then
savedata = defaultsave
else
savedata = dpf.loadjson(project.saveloc,defaultsave)
end
sdfunc = {}
function sdfunc.save()
dpf.savejson(project.saveloc,savedata)
end
function sdfunc.updatevol()
if project.name ~= 'roomedit' then
te.volume('sfx',savedata.options.audio.sfxvolume/10)
te.volume('music',savedata.options.audio.sfxvolume/10)
end
end
sdfunc.updatevol()
sdfunc.save()
entities = {}
-- load entities
dofile('preload/entities.lua')
-- load states
dofile('preload/states.lua')
-- load levels
toswap = nil
newswap = false
cs = bs.load(project.initstate)
cs:init()
end
function love.textinput(t)
tinput = t
end
function love.update(d)
prof.push("frame")
if (not project.frameadvance) or maininput:pressed("k1") or maininput:down("k2") then
debugprint = true
if project.res.useshuv then
shuv.check()
end
if not project.acdelt then
dt = 1
else
dt = d * 60
end
if dt >=6 then
dt = 6
end
if freeze <= 0 then
cs:update(dt)
else
freeze = freeze - dt
end
end
end
function love.draw()
cs:draw()
debugprint = false
prof.pop("frame")
end
function love.quit()
if project.doprofile then
print('saving profile')
prof.write("prof.mpack")
end
end