mirror of
https://github.com/20kdc/OC-KittenOS.git
synced 2025-04-04 11:48:39 +11:00
Fix nbcompose and knbs bugs
This commit is contained in:
parent
4c12bb548a
commit
e1530057a6
@ -212,7 +212,9 @@ function genMain()
|
|||||||
file.ticks[songPosition][layer][1] = defInst
|
file.ticks[songPosition][layer][1] = defInst
|
||||||
nt = file.ticks[songPosition][layer][2]
|
nt = file.ticks[songPosition][layer][2]
|
||||||
end
|
end
|
||||||
nb.playNote(iTranslation[defInst] or 0, nt - 33, file.layers[layer][2] / 100)
|
if nb then
|
||||||
|
nb.playNote(iTranslation[defInst] or 0, nt - 33, file.layers[layer][2] / 100)
|
||||||
|
end
|
||||||
require("knbs").correctSongLH(file)
|
require("knbs").correctSongLH(file)
|
||||||
update()
|
update()
|
||||||
theStatusBar.update(window)
|
theStatusBar.update(window)
|
||||||
@ -220,7 +222,9 @@ function genMain()
|
|||||||
file.ticks[songPosition] = file.ticks[songPosition] or {}
|
file.ticks[songPosition] = file.ticks[songPosition] or {}
|
||||||
local note = noteKey:find(string.char(a), 1, true) - 1
|
local note = noteKey:find(string.char(a), 1, true) - 1
|
||||||
file.ticks[songPosition][layer] = {defInst, note + 33}
|
file.ticks[songPosition][layer] = {defInst, note + 33}
|
||||||
nb.playNote(iTranslation[defInst] or 0, note, file.layers[layer][2] / 100)
|
if nb then
|
||||||
|
nb.playNote(iTranslation[defInst] or 0, note, file.layers[layer][2] / 100)
|
||||||
|
end
|
||||||
require("knbs").correctSongLH(file)
|
require("knbs").correctSongLH(file)
|
||||||
update()
|
update()
|
||||||
theStatusBar.update(window)
|
theStatusBar.update(window)
|
||||||
@ -299,13 +303,13 @@ function genMain()
|
|||||||
neoux.tcbutton(30, 2, "Layers", function (w)
|
neoux.tcbutton(30, 2, "Layers", function (w)
|
||||||
window.reset(genLayers())
|
window.reset(genLayers())
|
||||||
end),
|
end),
|
||||||
neoux.tcrawview(39, 2, {"qT/S"}),
|
neoux.tcrawview(39, 2, {"cT/S"}),
|
||||||
neoux.tcfield(43, 2, 8, function (tx)
|
neoux.tcfield(43, 2, 8, function (tx)
|
||||||
if tx then
|
if tx then
|
||||||
local txn = tonumber(tx) or 0
|
local txn = tonumber(tx) or 0
|
||||||
file.tempo = math.min(math.max(0, math.floor(txn * 4)), 65535)
|
file.tempo = math.min(math.max(0, math.floor(txn)), 65535)
|
||||||
end
|
end
|
||||||
return tostring(math.floor(file.tempo / 25))
|
return tostring(file.tempo)
|
||||||
end),
|
end),
|
||||||
theStatusBar,
|
theStatusBar,
|
||||||
table.unpack(theNotePane)
|
table.unpack(theNotePane)
|
||||||
@ -323,7 +327,7 @@ function tick()
|
|||||||
local temp = 1 / math.max(file.tempo / 100, 0.01)
|
local temp = 1 / math.max(file.tempo / 100, 0.01)
|
||||||
if os.uptime() >= uptime + temp then
|
if os.uptime() >= uptime + temp then
|
||||||
-- execute at this song position
|
-- execute at this song position
|
||||||
if file.ticks[songPosition] then
|
if file.ticks[songPosition] and nb then
|
||||||
for i = 0, file.height - 1 do
|
for i = 0, file.height - 1 do
|
||||||
local tck = file.ticks[songPosition][i]
|
local tck = file.ticks[songPosition][i]
|
||||||
if tck then
|
if tck then
|
||||||
|
@ -166,7 +166,7 @@ return {
|
|||||||
},
|
},
|
||||||
["app-nbcompose"] = {
|
["app-nbcompose"] = {
|
||||||
desc = "Music player/composer using the NBS format",
|
desc = "Music player/composer using the NBS format",
|
||||||
v = 0,
|
v = 1,
|
||||||
deps = {
|
deps = {
|
||||||
"neo",
|
"neo",
|
||||||
"lib-knbs",
|
"lib-knbs",
|
||||||
@ -219,7 +219,7 @@ return {
|
|||||||
-- libraries
|
-- libraries
|
||||||
["lib-knbs"] = {
|
["lib-knbs"] = {
|
||||||
desc = "NBS reader/writer library",
|
desc = "NBS reader/writer library",
|
||||||
v = 0,
|
v = 1,
|
||||||
deps = {
|
deps = {
|
||||||
"zzz-license-pd"
|
"zzz-license-pd"
|
||||||
},
|
},
|
||||||
|
@ -125,7 +125,7 @@ return {
|
|||||||
nbs.layers[i] = nil
|
nbs.layers[i] = nil
|
||||||
end
|
end
|
||||||
-- add layers up to target
|
-- add layers up to target
|
||||||
for i = nbs.height - 1, layers - 1 do
|
for i = nbs.height, layers - 1 do
|
||||||
nbs.layers[i] = {"L" .. i, 100}
|
nbs.layers[i] = {"L" .. i, 100}
|
||||||
end
|
end
|
||||||
-- clean up song
|
-- clean up song
|
||||||
|
Loading…
Reference in New Issue
Block a user