forked from KirbyKid256/mari0_aces
-
Notifications
You must be signed in to change notification settings - Fork 0
/
errorwindow.lua
95 lines (81 loc) · 2.38 KB
/
errorwindow.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
--im sick of mari0
--so maybe ill finish this later
--this is just some simple framework so i can get it ready faster
--TODO!
errorwindow = class:new()
local padding = 6
function errorwindow:init(title, text)
self.width = 360
self.height = 180
self.x = (width*16-self.width)/2
self.y = (height*16-self.height)/2
self.title = title
self.text = text
self.button = {}
self.button["ignore"] = guielement:new("button", self.x+padding, self.y+self.height-15-padding, "ignore", function() end, 2)
self.button["retry"] = guielement:new("button", self.x+self.width-8-padding, self.y+self.height-15-padding, "retry", function() end, 2)
self.button["retry"].x = self.button["retry"].x - self.button["retry"].width
self.a = 1
self.opened = false
end
function errorwindow:update(dt)
self.a = math.min(1, self.a + (3000/255)*dt)
self.button["ignore"]:update(dt)
self.button["retry"]:update(dt)
end
function errorwindow:draw(a)
a = a or self.a
--window
love.graphics.setColor(0, 0, 0, a*230/255)
love.graphics.rectangle("fill", self.x*scale, self.y*scale, self.width*scale, self.height*scale)
love.graphics.setColor(1, 1, 1, a)
drawrectangle(self.x, self.y, self.width, 19)
drawrectangle(self.x, self.y+18, self.width, self.height-18)
--text
love.graphics.setScissor(self.x*scale, self.y*scale, self.width*scale, (self.height-padding-15)*scale)
love.graphics.setColor(1, 1, 1, a)
properprintfast(self.title, (self.x+padding)*scale, (self.y+padding)*scale)
love.graphics.setColor(1, 1, 1, a)
properprintfastf(self.text, (self.x+padding)*scale, (self.y+padding+20)*scale, self.width-padding*2)
love.graphics.setScissor()
--buttons
self.button["ignore"]:draw(a)
self.button["retry"]:draw(a)
end
function errorwindow:keypressed(k)
if k == "escape" then
self:close()
self.retry()
end
end
function errorwindow:mousepressed(x, y, button)
for i, v in pairs(self.button) do
if v:click(x, y, button) then
if i == "ignore" then
self:close()
elseif i == "retry" then
self:close()
self.retry()
end
return
end
end
end
function errorwindow:mousereleased(x, y, button)
for i, v in pairs(self.button) do
v:unclick(x, y, button)
end
end
function errorwindow:open(title, text, retry)
if blockhitsound then
playsound(blockhitsound)
end
self.title = title
self.text = text
self.retry = retry
self.opened = true
self.a = 0
end
function errorwindow:close()
self.opened = false
end