Compare commits
No commits in common. "9f072db59500f62209a57f47e0f32600081653e8" and "e151e4b6c69d7dd7d0925d16e64c8de0acf95614" have entirely different histories.
9f072db595
...
e151e4b6c6
@ -32,15 +32,11 @@ function _init()
|
||||
plane_mask = 0xff
|
||||
|
||||
-- see tab 5 for palettes
|
||||
pal_idx = 1
|
||||
pal(palettes[palette_cycle[pal_idx]],1)
|
||||
pal(palettes.additive,1)
|
||||
end
|
||||
|
||||
function _update60()
|
||||
restore_under_cursor()
|
||||
|
||||
if (btnp(❎)) next_pal()
|
||||
|
||||
if stat(34) & 0x1 == 0 then
|
||||
-- mouse up
|
||||
was_click = false
|
||||
@ -174,7 +170,6 @@ end
|
||||
-- draw_cursor
|
||||
|
||||
function draw_cursor()
|
||||
poke(0x5f5e,0xff)
|
||||
cx, cy = stat(32), stat(33)
|
||||
|
||||
-- save blob under cursor to
|
||||
@ -192,7 +187,6 @@ end
|
||||
|
||||
function restore_under_cursor()
|
||||
palt(0, false)
|
||||
poke(0x5f5e,0xff)
|
||||
sspr(120, 24, 8, 8, cx, cy)
|
||||
palt(0, true)
|
||||
end
|
||||
@ -200,8 +194,8 @@ end
|
||||
-- future ambitions
|
||||
|
||||
-- palette selection ui
|
||||
-- [x] ...from a preset list
|
||||
-- [ ] ...freely
|
||||
-- ...from a preset list
|
||||
-- ...freely
|
||||
-->8
|
||||
-- palettes
|
||||
|
||||
@ -211,22 +205,6 @@ palettes = {
|
||||
additive = {[0]=0,136,3,4,1,141,13,5,6,8,139,10,140,14,12,7},
|
||||
subtractive = {[0]=7,12,14,1,10,11,136,5,6,140,130,129,132,131,2,0},
|
||||
}
|
||||
|
||||
palette_cycle = {"additive", "subtractive", "classic", "alt"}
|
||||
|
||||
function draw_color_blocks()
|
||||
for i=0,15 do
|
||||
local x0 = 8*i
|
||||
rectfill(x0, 0, x0+7, 7, i)
|
||||
end
|
||||
end
|
||||
|
||||
function next_pal()
|
||||
pal_idx += 1
|
||||
if (pal_idx > #palette_cycle) pal_idx = 1
|
||||
pal(palettes[palette_cycle[pal_idx]], 1)
|
||||
draw_color_blocks()
|
||||
end
|
||||
__gfx__
|
||||
00000000500000005000000050000000500000005000000050000000500000005000000000000000000000000000000000000000000000000000000000000000
|
||||
00000000550000005500000055000000550000005500000055000000550000005500000000000000000000000000000000000000000000000000000000000000
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 7.1 KiB After Width: | Height: | Size: 6.7 KiB |
Loading…
Reference in New Issue
Block a user