mirror of
https://github.com/20kdc/OC-KittenOS.git
synced 2025-04-05 04:08:39 +11:00
Add support in klogo for abnormal headers, try to improve logo
This commit is contained in:
parent
899a3b2521
commit
a837148c3b
@ -6,11 +6,13 @@ local neoux = require("neoux")(event, neo)
|
|||||||
local braille = require("braille")
|
local braille = require("braille")
|
||||||
local bmp = require("bmp")
|
local bmp = require("bmp")
|
||||||
local icecap = neo.requireAccess("x.neo.pub.base", "loadimg")
|
local icecap = neo.requireAccess("x.neo.pub.base", "loadimg")
|
||||||
local qt = icecap.open("/logo.bmp", false)
|
local file = icecap.open("/logo.bmp", false)
|
||||||
|
|
||||||
local header = qt.read(bmp.headerMinSzBMP)
|
local header = file.read(bmp.headerMinSzBMP)
|
||||||
|
local palette = ""
|
||||||
|
|
||||||
local lcBase = bmp.headerMinSzBMP
|
local lcBase = bmp.headerMinSzBMP
|
||||||
|
local palBase = bmp.headerMinSzBMP
|
||||||
local lcWidth = 1
|
local lcWidth = 1
|
||||||
|
|
||||||
local lc = {}
|
local lc = {}
|
||||||
@ -25,17 +27,23 @@ end
|
|||||||
local function getLine(y)
|
local function getLine(y)
|
||||||
if not lc[y] then
|
if not lc[y] then
|
||||||
local idx = y * lcWidth
|
local idx = y * lcWidth
|
||||||
qt.seek("set", lcBase + idx - 1)
|
file.seek("set", lcBase + idx - 1)
|
||||||
if lcdq[1] then
|
if lcdq[1] then
|
||||||
lc[table.remove(lcdq, 1)] = nil
|
lc[table.remove(lcdq, 1)] = nil
|
||||||
end
|
end
|
||||||
table.insert(lcdq, y)
|
table.insert(lcdq, y)
|
||||||
lc[y] = qt.read(lcWidth)
|
lc[y] = file.read(lcWidth)
|
||||||
end
|
end
|
||||||
return lc[y]
|
return lc[y]
|
||||||
end
|
end
|
||||||
|
|
||||||
local bitmap = bmp.connect(function (i)
|
local bitmap = bmp.connect(function (i)
|
||||||
|
if i >= palBase then
|
||||||
|
local v = palette:byte(i + 1 - palBase)
|
||||||
|
if v then
|
||||||
|
return v
|
||||||
|
end
|
||||||
|
end
|
||||||
if i >= lcBase then
|
if i >= lcBase then
|
||||||
local ld = getLine(math.floor((i - lcBase) / lcWidth))
|
local ld = getLine(math.floor((i - lcBase) / lcWidth))
|
||||||
i = ((i - lcBase) % lcWidth) + 1
|
i = ((i - lcBase) % lcWidth) + 1
|
||||||
@ -44,8 +52,9 @@ local bitmap = bmp.connect(function (i)
|
|||||||
return header:byte(i) or 0
|
return header:byte(i) or 0
|
||||||
end)
|
end)
|
||||||
|
|
||||||
qt.seek("set", bitmap.paletteAddress - 1)
|
file.seek("set", bitmap.paletteAddress - 1)
|
||||||
header = header .. qt.read(bitmap.paletteCol * 4)
|
palette = file.read(bitmap.paletteCol * 4)
|
||||||
|
palBase = bitmap.paletteAddress
|
||||||
lcBase = bitmap.dataAddress
|
lcBase = bitmap.dataAddress
|
||||||
lcWidth = bitmap.dsSpan
|
lcWidth = bitmap.dsSpan
|
||||||
|
|
||||||
|
Binary file not shown.
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.4 KiB |
Loading…
Reference in New Issue
Block a user