-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathface.lua
291 lines (228 loc) · 6.79 KB
/
face.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
278
279
280
281
282
283
284
285
286
287
288
289
local pd <const> = playdate
local kcy <const> = kicooya
local gfx <const> = pd.graphics
local cd <const> = kcy.ctrl.commonDrawing
--
class('luaSample',{
_fqTable =
{
25, 31, 40, 50, 63,
80, 100, 125, 160, 200,
250, 315, 400, 500, 630,
800, 1000, 1250, 1600, 2000,
2500, 3150, 4000, 5000, 6300,
8000, 10000, 12500, 16000, 20000
},
}, kcy.face).extends(kcy.face.userFace)
--
function kcy.face.luaSample._drawShadowText(txt, font, rect)
gfx.setPattern(kcy.pattern.black)
local textW = font:getTextWidth(txt)
local textT = rect[2]
gfx.setClipRect(rect[1], rect[2], rect[3], rect[4])
rect[1] = rect[1] + 2
rect[2] = rect[2] + 2
rect[3] = rect[3] - 4
rect[4] = rect[4] - 4
gfx.setImageDrawMode(gfx.kDrawModeFillWhite)
font:drawText(txt, rect[1] - 2, textT)
font:drawText(txt, rect[1] - 1, textT)
font:drawText(txt, rect[1] + 1, textT)
font:drawText(txt, rect[1] + 2, textT)
font:drawText(txt, rect[1], textT - 2)
font:drawText(txt, rect[1], textT - 1)
font:drawText(txt, rect[1], textT + 1)
font:drawText(txt, rect[1], textT + 2)
font:drawText(txt, rect[1] - 1, textT - 1)
font:drawText(txt, rect[1] + 1, textT - 1)
font:drawText(txt, rect[1] - 1, textT + 1)
font:drawText(txt, rect[1] + 1, textT + 1)
gfx.setImageDrawMode(gfx.kDrawModeCopy)
font:drawText(txt, rect[1], textT)
gfx.clearClipRect()
end
--
function kcy.face.luaSample._drawBackgroundImage(l, t, w, h)
gfx.setPattern(kcy.pattern.pinwheel)
gfx.fillRect(0, 0, pd.display.getWidth(), pd.display.getHeight())
gfx.setPattern(kcy.pattern.denseslash)
gfx.fillRect(l, t, w, h)
end
--
function kcy.face.luaSample._drawText(song, l, t, w)
if not song then
return
end
local ttlFont = kcy.font:getTitleFont()
if not ttlFont then
return
end
local dscFont = kcy.font:getDescriptionFont()
if not dscFont then
return
end
local textMargin = 10
local textL = l + textMargin
local textT = t + textMargin
local textW = w - (textMargin * 2)
local ttl = song:getTitle()
if ttl then
kcy.face.luaSample._drawShadowText(ttl, ttlFont,
{ textL, textT, textW, ttlFont:getHeight() + 4})
textT += ttlFont:getHeight() + textMargin
end
local album = song:getAlbum()
if album then
kcy.face.luaSample._drawShadowText(album, dscFont,
{ textL, textT, textW, dscFont:getHeight() + 4})
textT += dscFont:getHeight() + textMargin
end
local ast = song:getArtist()
if ast then
kcy.face.luaSample._drawShadowText(ast, dscFont,
{ textL, textT, textW, dscFont:getHeight() + 4})
end
end
--
function kcy.face.luaSample._drawArtImage(song)
local img = song:getLargeArtImage()
if not img then
return
end
local imgW, imgH = img:getSize()
local rc = {
(pd.display.getWidth() / 2) - (imgW / 2),
(pd.display.getHeight() / 2) - (imgH / 2),
imgW, imgH
}
gfx.setPattern(kcy.pattern.white)
gfx.fillRect(rc[1] - 3, rc[2] - 3, rc[3] + 6, rc[4] + 6)
gfx.setPattern(kcy.pattern.densechecker)
gfx.drawRect(rc[1] - 2, rc[2] - 2, rc[3] + 4, rc[4] + 4)
gfx.setImageDrawMode(gfx.kDrawModeCopy)
img:draw(rc[1], rc[2])
end
--
function kcy.face.luaSample:_createFqIndexTable(analyzer)
local cnt = analyzer.getAudioFrequencyDataCount()
if cnt == 0 then
return
end
self._fqIndexTable = {}
local dataIndex = 1
for i = 1, cnt do
local fq = analyzer.getAudioFrequencyData(i)
if fq > self._fqTable[dataIndex] then
self._fqIndexTable[dataIndex] = i
dataIndex = dataIndex + 1
if dataIndex > #self._fqTable then
break
end
end
end
end
--
function kcy.face.luaSample:_updateDecibelTable(analyzer)
if self._fqIndexTable == nil then
self:_createFqIndexTable(analyzer)
if self._fqIndexTable == nil then
return
end
end
self._dbTable = {}
for i = 1, #self._fqTable do
self._dbTable[i] = 0
end
local fq, decibelLeft, decibelRight
for i = 1, #self._fqIndexTable do
fq, decibelLeft, decibelRight = analyzer.getAudioFrequencyData(self._fqIndexTable[i])
if fq then
local db = (decibelLeft + decibelRight) / 2
if self._dbTable[i] < db then
self._dbTable[i] = db
end
end
end
end
--
function kcy.face.luaSample:init()
self._fqIndexTable = nil
self._dbTable = {}
self._l = 10
self._t = 10
self._w = pd.display.getWidth() - 36
self._h = pd.display.getHeight() - 20
end
--[[
[Memo]
This function is called only once when kicooya startup.
]]
function kcy.face.luaSample:initializeFace(arg)
return true
end
--[[
[Memo]
This function is called when the active state of the playback screen is changed.
]]
function kcy.face.luaSample:onActivate(active)
end
--[[
[Memo]
This function is called when the playback status changes of a song.
]]
function kcy.face.luaSample:onPlayingChanged()
end
--[[
[Memo]
This function is called when the currently playing song changes.
]]
function kcy.face.luaSample:updateNowPlaying(song)
self._song = song
end
--[[
[Memo]
This function is called when the currently playing song changes, so draw a background.
]]
function kcy.face.luaSample:updateBackground()
self._drawBackgroundImage(self._l, self._t, self._w, self._h)
self._drawArtImage(self._song)
self._drawText(self._song, self._l, self._t, self._w)
end
--[[
[Memo]
This function is called frame by frame when a drawing, so draw what needs to be moved.
]]
function kcy.face.luaSample:drawFace()
end
--[[
[Memo]
This function is called when drawing the AudioVisualizer.
If this function is defined, the process of parsing audio data for rendering is performed.
If you do not need to draw the AudioVisualizer, do not define this function.
]]
--
function kcy.face.luaSample:drawAudioVisualizer(analyzer)
self:_updateDecibelTable(analyzer)
if not self._fqIndexTable then
return
end
local hmag = 0
local itemW = self._w / #self._dbTable
local pt = {self._l, self._t + self._h}
for i = 1, #self._dbTable do
hmag = self._dbTable[i] / 60
if hmag > 1.0 then
hmag = 1.0
end
pt[#pt + 1] = self._l + (i * itemW)
pt[#pt + 1] = self._t + self._h - (self._h * hmag)
end
pt[#pt + 1] = self._l + self._w
pt[#pt + 1] = self._t + self._h
gfx.setPattern(kcy.pattern.white)
gfx.fillPolygon(table.unpack(pt))
gfx.setPattern(kcy.pattern.densechecker)
gfx.drawPolygon(pd.geometry.polygon.new(table.unpack(pt)))
end
--
return kcy.face.luaSample()