1
0
mirror of https://github.com/20kdc/OC-KittenOS.git synced 2025-04-04 11:48:39 +11:00

Fix bitmap library issues, bugfixes to everest and glacier

This commit is contained in:
20kdc 2018-07-09 18:17:49 +01:00
parent 1e3bf096d5
commit 3bc323e268
4 changed files with 18 additions and 18 deletions

View File

@ -3,7 +3,7 @@
return { return {
["neo"] = { ["neo"] = {
desc = "KittenOS NEO Kernel & Base Libs", desc = "KittenOS NEO Kernel & Base Libs",
v = 4, v = 5,
deps = { deps = {
}, },
dirs = { dirs = {

View File

@ -142,10 +142,10 @@ local function doBackgroundLine(m, mg, bdx, bdy, bdl)
local str = unicode.sub(statusLine, bdx, bdx + bdl - 1) local str = unicode.sub(statusLine, bdx, bdx + bdl - 1)
local strl = unicode.len(str) local strl = unicode.len(str)
pcall(mg.set, bdx, bdy, unicode.undoSafeTextFormat(str)) pcall(mg.set, bdx, bdy, unicode.undoSafeTextFormat(str))
pcall(mg.fill, bdx + strl, bdy, bdl - strl, 1, " ") pcall(mg.set, bdx + strl, bdy, (" "):rep(bdl - strl))
else else
monitorGPUColours(m, mg, 0x000040, 0) monitorGPUColours(m, mg, 0x000040, 0)
pcall(mg.fill, bdx, bdy, bdl, 1, " ") pcall(mg.set, bdx, bdy, (" "):rep(bdl))
end end
end end
@ -778,7 +778,7 @@ while not shuttingDown do
if os1 then if os1 then
changeFocus(os1) changeFocus(os1)
else else
changeFocus(surfaces[1]) changeFocus()
end end
end end
if s[1] == "x.neo.sys.screens" then if s[1] == "x.neo.sys.screens" then

View File

@ -125,7 +125,7 @@ local mBase = {
end end
return s return s
end, end,
delSetting = function () delSetting = function (name)
neo.ensureType(name, "string") neo.ensureType(name, "string")
local val = nil local val = nil
if name == "password" or name == "pub.clipboard" then val = "" end if name == "password" or name == "pub.clipboard" then val = "" end

View File

@ -153,20 +153,8 @@ return {
local planes = get16(0x1A) local planes = get16(0x1A)
local bpp = get16(0x1C) local bpp = get16(0x1C)
local compression = get32(0x1E) local compression = get32(0x1E)
local paletteCol = 0 local paletteCol = get32(0x2E)
local other = get32(0x2E)
paletteCol = other
-- postprocess
-- The actual values used for addressing, for cMode to mess with
local basePtr = 14 + hdrSize + (paletteCol * 4)
local scanWB = math.ceil((bpp * width) / 32) * 4
local monoWB = (math.ceil((bpp * width) / 32) * 4)
local planeWB = scanWB * height
if not packed then
basePtr = get32(0x0A) -- 'BM' header
end
-- negative height means sane coords -- negative height means sane coords
local upDown = true local upDown = true
if height >= 0x80000000 then if height >= 0x80000000 then
@ -175,6 +163,18 @@ return {
upDown = false upDown = false
end end
-- postprocess
-- The actual values used for addressing, for cMode to mess with
local basePtr = 14 + hdrSize + (paletteCol * 4)
local scanWB = math.ceil((bpp * width) / 32) * 4
local monoWB = math.ceil(width / 32) * 4
local planeWB = scanWB * height
if not packed then
basePtr = get32(0x0A) -- 'BM' header
end
-- Cursor/Icon -- Cursor/Icon
if cMode then if cMode then
height = math.floor(height / 2) height = math.floor(height / 2)