Log In  


Cart #32320 | 2016-11-08 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
10


A simple demo program that contains a function to dim the palette (By swapping the colors around, sort of like the fade out effect in Jelpi).
If this is far overcomplicated, please tell me.
Z: Show palette only (Fullscreen palette)
X: Show demo scene (Minimize palette)
Left: Brightest (Normal colors)
Right: Med-bright
Up: Med-dark
Down: Darkest

The "Darkest" option isn't pure black or even just before pure black, but if you are so inclined you can likely easily add some more settings if you need them.

Use the function in any of your games or projects, if you feel like using it. The demo graphics are from games I've made (And one I'm currently making, which inspired me to make this), so I ask that you don't use the demo graphics.

I'm sure this isn't the absolute end-all be-all for this, you could probably tweak and improve this one vastly, but it's basic enough. My most major concern is the size of the function, which I vaguely think I could shrink somehow.

10


1

(I know this was almost a year ago)

I found this useful, and wanted to share my shorter version... probably long simple to you, but I'm just messing around :)

pals={
{0,1,2,2,1,5,6,2,4,9,3,13,1,8,9},
{0,0,1,1,0,1,5,1,2,4,2,1,0,2,4},
{0,0,0,0,0,0,2,0,1,1,1,0,0,1,2}
}
function setpal(x)
 for c=1,16 do
   pal(c-1,pals[x][c])
 end
end

basically, use a lookup table for each brightness level, rather than a big if/else tree...


3

Another option, if you're willing to use some of your cart data instead of source code, is to put your palette in, say, sprite ram and then simply memcpy() it direct to the pseudo-memory-registers that pal() sets up at 0x5f00..0x5f0f.

You don't have to use sprite mem, mind you, but it's handy because you can see your colors in the editor. You just have to remember that each entry in the 0x5f0n registers is a full byte, so it's two pixels in the sprite editor. You need to leave every second pixel black. Alternatively, you can mark transparent colors by setting those black pixels dark blue instead, since palt() marks transparent colors by setting the upper nybble to 1.

Also, if you need to reset the palette to default 0-15, just call pal() with no arguments. It's really fast.


Edit: here, I redid the original cart with this method to better illustrate, since I know I suck at explaining things:



this is pretty sweet... I know it's old, but I'm new around here lol


Wow, I didn't expect to see people respond to this post this long afterward. Anyway, both of your suggestions (as in accidental's and Felice's) are way better than what I was trying to do. Thanks, now I don't have to worry about eating up every last token just to dim the screen!


Someone I knew once said something along these lines:

"You know, you'd think our favorite thing as programmers would be creating code, but every programmer I know actually prefers deleting it."

I like that concept. :)



[Please log in to post a comment]