graphics utillities
Moderator: Moderators
Forum rules
- For making cartridges of your Super NES games, see Reproduction.
graphics utillities
I've been studying snes development for about 4 months now, and I have been able to get bg tiles and sprites working just fine. I am getting ready to make a real demo, and my problem is finding tools for creating tiles, sprites, tile maps ect. without having to hand code it all. Can anyone shed some light? Thanks...
Since SNES uses 16 colors per pixel graphics for the most part, and the palette is RGB555, normal graphics editors combined with a simple converter tool works very well. A converter tool is available in the Christmas Craze sources, it is called snesbmp.
For tilemaps, there are general purpose map editors around, such as Mappy and TilED. I personally used my NES Screen Tool for single screen levels.
For tilemaps, there are general purpose map editors around, such as Mappy and TilED. I personally used my NES Screen Tool for single screen levels.
- Hamtaro126
- Posts: 786
- Joined: Thu Jan 19, 2006 5:08 pm
I just checked out Tiled and it seems like it would make life so much easier than the way I was doing things IF it could export to SNES specs. Is it possible to use this with the SNES or would a plugin be needed? In the past I played with GBA DEV and it was much easier, but there is somthing about the SNES that just gets me. maybe because when I first played one at a friends house (back when it came out) I thought it couldn't get ant better 
You can't get data of a special format like SNES nametables without a plugin. Tiled plugins are written in Java, read this - shouldn't be too difficult.
I personally don't use general purpose map editors, I prefer to edit large maps as bitmaps with a general purpose graphics editors, then convert it into a tileset and map data with a custom tool (it searches for matching tiles, packs data as needed etc).
I personally don't use general purpose map editors, I prefer to edit large maps as bitmaps with a general purpose graphics editors, then convert it into a tileset and map data with a custom tool (it searches for matching tiles, packs data as needed etc).
Oh ok I think I get the idea of how your'e doing it. I knew there had to be a better way other then hand coding the images. I'm going to follow the link about plugins though. Let me ask this. Do ya think the SNES dev. scene would benefit from somthing like this and if so how much impact could it have? Also I apoligize for my lack of skill in this area. Everytime I make headway I only open more questions for myself
SNES dev scene is very small, as I can see - one of smallest retro console scenes. Lack of tools or underdeveloped tools are certainly one of the reasons, but I think that even if there would be great tools, it wouldn't change the situation radically. I mentioned another reason that I consider a very major one in a recent post, and I think there are other factors too - because despite the Genesis/SCD/32x dev scene has better tools, I wouldn't say it is any larger.
You don't need to use Java to write Tiled plugins (in fact I'd assume those only work with the old Java version of Tiled). Tiled uses XML based file format for its maps so you can parse them using pretty much any language. The format is documented online.
Download STREEMERZ for NES from fauxgame.com! — Some other stuff I've done: fo.aspekt.fi
-
psycopathicteen
- Posts: 3001
- Joined: Wed May 19, 2010 6:12 pm