diff options
author | ubq323 <ubq323@ubq323.website> | 2024-04-01 03:28:56 +0100 |
---|---|---|
committer | ubq323 <ubq323@ubq323.website> | 2024-04-01 03:28:56 +0100 |
commit | 1f471149968dd51518213c3e2f3a3618daabff8d (patch) | |
tree | bbdb0bc01628bd58e02e42ae4c9855c7502ea19d | |
parent | 0965f8d378cc6481a260f136cfa6883e8c1116bc (diff) |
launch john
-rw-r--r-- | framebuf.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/framebuf.lua b/framebuf.lua index bf0dac4..4f7ca3b 100644 --- a/framebuf.lua +++ b/framebuf.lua @@ -177,6 +177,7 @@ function M:present(offsx, offsy) local pw, ph = M.resolution() local cols = {} local chars = {} + print("","1") for y = offsy + 1, offsy + ph, 3 do for x = offsx + 1, offsx + pw, 2 do local char, fg, bg = get_char(self, x, y) @@ -187,10 +188,12 @@ function M:present(offsx, offsy) end end end + print("","2") local palette, map = median_cut(cols, 16) for i, color in ipairs(palette) do term.setPaletteColor(2^(i - 1), color) end + print("","3") for i = 1, w * h, w do term.setCursorPos(1, (i - 1) / w) local blit_char, blit_fg, blit_bg = {}, {}, {} |