File: splash.lua

package info (click to toggle)
mrrescue 1.02e-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 13,228 kB
  • sloc: makefile: 9; sh: 1
file content (75 lines) | stat: -rw-r--r-- 1,814 bytes parent folder | download | duplicates (3)
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
splash = {}

lg = love.graphics

function splash.enter()
	state = STATE_SPLASH
	transition_time = 0

	playMusic("opening")
end

function splash.update(dt)
	transition_time = transition_time + dt
end

function splash.draw()
	lg.push()
	lg.scale(config.scale)

	if transition_time < 4 then
		if transition_time < 1 then
			local alpha = cap(255*transition_time, 0,255)
			lg.setColor(255,255,255,alpha)
			lg.draw(img.tangram, quad.screen, 0,0)
			lg.setColor(255,255,255,255)
		elseif transition_time > 3 then
			local alpha = cap(255*(1-(transition_time-3)), 0,255)
			lg.setColor(255,255,255,alpha)
			lg.draw(img.tangram, quad.screen, 0,0)
			lg.setColor(255,255,255,255)
		else
			lg.draw(img.tangram, quad.screen, 0,0)
		end
	elseif transition_time < 8 then
		if transition_time < 5 then
			local alpha = cap(255*(transition_time-4), 0,255)
			lg.setColor(255,255,255,alpha)
			lg.draw(img.lovesplashpixel, quad.screen, 0,0)
			lg.setColor(255,255,255,255)
		elseif transition_time > 7 then
			local alpha = cap(255*(1-(transition_time-7)), 0,255)
			lg.setColor(255,255,255,alpha)
			lg.draw(img.lovesplashpixel, quad.screen, 0,0)
			lg.setColor(255,255,255,255)
		else
			lg.draw(img.lovesplashpixel, quad.screen, 0,0)
		end
	elseif transition_time < 10 then
		local alpha = cap(128*(transition_time-8), 0, 255)
		lg.setColor(255,255,255,alpha)
		lg.draw(img.splash, quad.screen, 0,0)
		lg.setColor(255,255,255,255)
	else
		lg.draw(img.splash, quad.screen, 0,0)
		lg.setFont(font.bold)
		if transition_time % 1.6 < 0.8 then
			lg.print("PRESS START", 150, 140)
		end
	end

	lg.pop()
end

function splash.keypressed(k,uni)
	if k == "return" or k == " " or k == "escape" then
		playSound("blip")
		mainmenu.enter()
	end
end

function splash.action(k)
	playSound("blip")
	mainmenu.enter()
	mainmenu.enter()
end