Page 1 of 1

Bill Murray - nametable/sprite generator

Posted: Tue Feb 12, 2013 7:32 pm
by rainwarrior
I felt like making a real NES version of an image of Bill Murray made by Svetlana, but it used colours a little bit liberally and I wasn't sure if it could be managed or not. So... I wrote a quick python program to try to automate the process of building a nametable and overlaid sprites.

ROM: bill.nes
Source: bill.zip (ca65 + python 3)

The process looked like this:
Image Image Image

1. Choose some palettes by hand. (This could probably be automated, but that'll be an exercise for the next time I do this.)
2. Generate nametable by choosing the attribute palette that will maximize the number of pixels in the corresponding nametable block.
3. Progressively create sprites from the leftover pixels.

There are a lot of different ways I could approach step 3. What I settled on for this project was to greedily take the sprite which maximizes pixel coverage. This worked okay for this, but was kinda subject to overlap problems, and also tends to isolate pixels at the edges, which end up taking up their own sprites.

Anyhow, this was just a quick and dirty project for me, but I thought it might be useful to share the source for anybody who needs an example.

(The music is also by Svetlana.)

Re: Bill Murray - nametable/sprite generator

Posted: Tue Feb 12, 2013 9:34 pm
by MottZilla
I was so confused when I saw this thread title. Pretty neat program though.

Re: Bill Murray - nametable/sprite generator

Posted: Tue May 28, 2013 8:15 pm
by doppelganger
Well, you certainly made Bill Murray look like Bill Murray. Good job.

Re: Bill Murray - nametable/sprite generator

Posted: Thu May 30, 2013 3:59 pm
by unregistered
How does your program start... there is no input code? :?

Re: Bill Murray - nametable/sprite generator

Posted: Thu May 30, 2013 4:11 pm
by rainwarrior
What do you mean by "input code"?

Re: Bill Murray - nametable/sprite generator

Posted: Thu May 30, 2013 4:18 pm
by unregistered
well... like there's no controller reading... it doesn't ever do anything. In my head I expected a press the A button to start the pixel sprite dissappearance part.

Re: Bill Murray - nametable/sprite generator

Posted: Thu May 30, 2013 4:22 pm
by rainwarrior
Oh, no, that animation was made by the python script that builds the sprite data. This ROM is not interactive.

Re: Bill Murray - nametable/sprite generator

Posted: Thu May 30, 2013 4:29 pm
by unregistered
rainwarrior wrote:Oh, no, that animation was made by the python script that builds the sprite data. This ROM is not interactive.
Ok. I thought it would be. Sorry. :(