Bill Murray - nametable/sprite generator

A place where you can keep others updated about your NES-related projects through screenshots, videos or information in general.

Moderator: Moderators

Post Reply
User avatar
rainwarrior
Posts: 8732
Joined: Sun Jan 22, 2012 12:03 pm
Location: Canada
Contact:

Bill Murray - nametable/sprite generator

Post 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.)
User avatar
MottZilla
Posts: 2837
Joined: Wed Dec 06, 2006 8:18 pm

Re: Bill Murray - nametable/sprite generator

Post by MottZilla »

I was so confused when I saw this thread title. Pretty neat program though.
doppelganger
Posts: 183
Joined: Tue Apr 05, 2005 7:30 pm

Re: Bill Murray - nametable/sprite generator

Post by doppelganger »

Well, you certainly made Bill Murray look like Bill Murray. Good job.
Be whatever the situation demands.
unregistered
Posts: 1318
Joined: Thu Apr 23, 2009 11:21 pm
Location: cypress, texas

Re: Bill Murray - nametable/sprite generator

Post by unregistered »

How does your program start... there is no input code? :?
User avatar
rainwarrior
Posts: 8732
Joined: Sun Jan 22, 2012 12:03 pm
Location: Canada
Contact:

Re: Bill Murray - nametable/sprite generator

Post by rainwarrior »

What do you mean by "input code"?
unregistered
Posts: 1318
Joined: Thu Apr 23, 2009 11:21 pm
Location: cypress, texas

Re: Bill Murray - nametable/sprite generator

Post 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.
User avatar
rainwarrior
Posts: 8732
Joined: Sun Jan 22, 2012 12:03 pm
Location: Canada
Contact:

Re: Bill Murray - nametable/sprite generator

Post by rainwarrior »

Oh, no, that animation was made by the python script that builds the sprite data. This ROM is not interactive.
unregistered
Posts: 1318
Joined: Thu Apr 23, 2009 11:21 pm
Location: cypress, texas

Re: Bill Murray - nametable/sprite generator

Post 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. :(
Post Reply