Retro Graphics Toolkit

A place for your artistic side. Discuss techniques and tools for pixel art on the NES, GBC, or similar platforms.

Moderator: Moderators

nintendo8
Posts: 54
Joined: Tue Jul 10, 2012 1:37 pm

Re: Retro Graphics Toolkit

Post by nintendo8 »

If we are talking about the same thing it already supports PPU display format. In fact I made an example using Retro Graphics Toolkit for the NES see https://github.com/ComputerNerd/Retro-G ... es/NES/asm
As for "4-quad" attributes do you mean http://wiki.nesdev.com/w/index.php/PPU_attribute_tables if so Retro Graphics Toolkit already supports that. I will look into the Mario games format and add it. I think it would be a beneficial feature to have.
User avatar
Hamtaro126
Posts: 818
Joined: Thu Jan 19, 2006 5:08 pm

Re: Retro Graphics Toolkit

Post by Hamtaro126 »

The PPU format is the format based off RLE, but also allows uncompressed 32-byte tile display

Orbit2002 explained the format here: viewtopic.php?f=5&t=10676&p=120677&hili ... at#p120677

SMB1 (and 2j) and 3 both can use the disassemblies if you add support:

SMB3DIS is by Southbird, SMBDIS and SMB2JDIS (Lost levels) are by Doppelganger and need credit when used.

http://www.romhacking.net/documents/344/ (SMBDIS)
http://www.romhacking.net/documents/653/ (SMB2jDIS)
http://sonicepoch.com/sm3mix/ (SMB3DIS)

By 4-Quad, The Tileset is split into 4 mini-sets representing 4 color attributes within $00-$3F, $40-$7F, $80-$BF, and so forth...
These are colored indivisually to better suit Nintendo's graphical needs.
AKA SmilyMZX/AtariHacker.
nintendo8
Posts: 54
Joined: Tue Jul 10, 2012 1:37 pm

Re: Retro Graphics Toolkit

Post by nintendo8 »

I now understand what you mean by "4-Quad". When I implement it I will let the user choice the divisor factor in-case they don't have 256 tiles. Also I will add support for the mario games.
nintendo8
Posts: 54
Joined: Tue Jul 10, 2012 1:37 pm

Re: Retro Graphics Toolkit

Post by nintendo8 »

I apologize for the double post but I am considering the direction of the project and I realize one big issue with this project in it's current state is the static nature of what you can do in Retro Graphics Toolkit that is you can only really do what I have coded for example there was not an automated way to sort palettes by hue lightness or saturation until I coded that feature in because I needed it for myself. You would have to have done it manually or modify the source code something that I would be happy to see but may be a challenge for some people. To remedy this issue I have decided to work on adding a scripting language that also can define importing and exporting rules that allow for custom file formats beyond what I have coded. I understand that the process of coming up with an idea of how the programming language should be and making it are easier than making one that is user friendly and one that is easy to program in. So it is for this reason that I have decided to announce early before any code exists that parses this in hopes that I can get feedback on my specification see https://github.com/ComputerNerd/Retro-G ... -scripting. I would like to understand the needs of the users and viewpoints on the syntax I choice. I am wondering about the choice of newlines having meaning as some basic variants do or using a semicolon to end the statement like in C or java. The advantage of newlines ending the statement is that it may be a bit easier for beginner coders and it is less to type as most people would put a newline anyway. The disadvantage is that statements cannot be split into multiple lines. I am planning the code be compiled to bytecode instead of being parsed line by line so the code will have some speed to it.
Here is some example code with the current syntax

Code: Select all

# Changes the palette using hue saturation lightness
type=palette
gui double shifth<Shift hue by>,shifts<Shift saturation by>,shiftl<Shift lightness by>
begin main
end main
begin loop
	double hsl[3]
	unsigned rgb[3]
	rgbtohsl(r,g,b,hsl)
	hsltorgb(rgb,(hsl[0]+shift)%360,(hsl[1]+shifts)%1,(hsl[2]+shiftl)%1)
	rgbToPalSetEntry(rgb[0],rgb[1],rgb[2],entry)
end
func rgbtohsl(unsigned r,unsigned g,unsigned b,double*hsl)
	double R=r/255,G=g/255,B=b/255
	double cmax=max(r,max(g,b))
	double cmin=min(r,min(g,b))
	double delta=cmax-cmin
	if cmax==r
		hsl[0]=(G-B)/delta%6*60 # Yes you can do module on double
	eif cmax==g
		hsl[0]=((B-R)/delta+2)*60
	else
		hsl[0]=((R-G)/delta+4)*60
	end
	hsl[2]=(cmax+cmin)/2
	if delta
		hsl[1]=delta/(1-fabs(2*hsl[2]-1))
	else
		hsl[1]=0
	end
end
func hsltorgb(unsigned*rgb,double h,double l,double s)
	double C=(1-fabs(2*l-1))*s
	double X=(1-fabs(h/60%2-1))*C
	double m=l-(C/2)
	double R,G,B
	if h>=300
		R=C
		G=0
		B=X
	eif h>=240
		R=X
		G=0
		B=C
	eif h>=180
		R=0
		G=X
		B=C
	eif h>=120
		R=0
		G=C
		B=X
	eif h>=60
		R=X
		G=C
		B=0
	else
		R=C
		G=X
		B=0
	end
	rgb[0]=(R+m)*255
	rgb[1]=(G+m)*255
	rgb[2]=(B+m)*255
end
Here is an example of an importing/exporting script

Code: Select all

# Sonic 1's level format based on information from the sonic retro wiki
type=level
gui bool loop # Upon running this a checkbox will be created on the level editor and for each element the boolean option loop will be stored in ram and in project files and when exporting this variable will be updated automatically storing the current element
begin main
	which.max=127
	askfile()
end
begin headerread
	width=read1()+1
	height=read1()+1
end
begin headerwrite
	write1(width-1)
	write1(height-1)
end
begin loopread
	unsigned val=read1()
	which=val.0_6
	loop=val.7
end
begin loopwrite
	write1u(which.0_6|(loop<<7))
end
Please do tell me what you guys think about this.
tepples
Posts: 22708
Joined: Sun Sep 19, 2004 11:12 pm
Location: NE Indiana, USA (NTSC)
Contact:

Re: Retro Graphics Toolkit

Post by tepples »

You could always embed Lua, which appears to be the go-to language for adding scripting to free software applications.
nintendo8
Posts: 54
Joined: Tue Jul 10, 2012 1:37 pm

Re: Retro Graphics Toolkit

Post by nintendo8 »

Alright lua is added now I can see why lua was suggested. As in you can now run a lua script from Retro Graphics Toolkit. Now what I will do is work on providing an api allowing access to internal Retro Graphics Toolkit data and useful functions. I have decided to statically link lua with Retro Graphics Toolkit to maintain the tradition of only one file that does not need to be installed. Adding lua did not increase executable size that much.
User avatar
mikejmoffitt
Posts: 1353
Joined: Sun May 27, 2012 8:43 pm

Re: Retro Graphics Toolkit

Post by mikejmoffitt »

I am running Debian, and when I try to build it I get:

Code: Select all

make: *** No rule to make target 'lua/lapi.o', needed by 'RetroGraphicsToolkit'.  Stop. 
I have installed the lua development packages, but there is no change. Is there anything specific I ought to be doing here? Some other dependencies I need?
nintendo8
Posts: 54
Joined: Tue Jul 10, 2012 1:37 pm

Re: Retro Graphics Toolkit

Post by nintendo8 »

I just pushed a commit that alters the build process. Lua is built locally in order to not mess with your distribution of choice's instillation of Lua. Please read and follow https://github.com/ComputerNerd/Retro-G ... er/INSTALL note that the term 'INSTALL' is a bit misleading instead it should be called Compile however INSTALL is a recognized convention for how to compile the program. You do not need to install Retro Graphics Toolkit it is a portable program. I hope this helps if not please tell me if you get any other errors and I will address them. Also thank you for trying to build it it does help getting these kind of replies as I want this to work on a wide verity of systems.
nintendo8
Posts: 54
Joined: Tue Jul 10, 2012 1:37 pm

Re: Retro Graphics Toolkit

Post by nintendo8 »

Today is a good day for Retro Graphics Toolkit and its users. I have decided to do a new release.

Introducing Retro Graphics Toolkit v0.8 RC1:

Previous versions of Retro Graphics Toolkit were missing two important features:
  • Flexibility
  • Level Editing
Flexibility is gained via Lua scripting with an extensive binding for FLTK, zlib, kens and Retro Graphics Toolkit itself. As you can see in the screenshot below: The mandelbrot was generated via the included mandelbrotToTilemap.lua example.

Image

As it turns the second is made possible by the first. The level editor GUI was implemented entirely in Lua. This shows the power of the Lua bindings.

Also Retro Graphics Toolkit only supported the Sega Genesis and the NES. That is about to change today as Retro Graphics Toolkit now supports the Master System and Game Gear. It also has partial support for the TMS9118.

This is a release candidate because I still need to finish TMS9118 and some of the Lua bindings need a bit of work and need to be more complete especially the metasprite binding. However I wanted to do a release because many bugs were fixed. So even if you have all the features you need in 0.7 you should still upgrade.

TMS9118 support is lacking in the two modes in which for every eight tiles the foreground and background color of the tile is selected. This is due to the fact that Retro Graphics Toolkit's goal is to make the tiles look as close as possible without user intervention. I have already tried attempting to implement a good color selection algorithm for mode two but I was not happy with the results. I was hoping that someone from the community would know how to solve this better than I.

Also on the topic of algorithms I am interested in a better method for selecting which tile uses what row. Does anyone have any experience with that?
As always let me know if you have any bug reports, feature requests, patches and pull requests.

The download link has not changed it is still: https://github.com/ComputerNerd/Retro-G ... kit.exe.7z (for windows users)
The source is located here: https://github.com/ComputerNerd/Retro-Graphics-Toolkit
nintendo8
Posts: 54
Joined: Tue Jul 10, 2012 1:37 pm

Re: Retro Graphics Toolkit

Post by nintendo8 »

I have released a minor update: V0.8 RC1.2.

Previously you had a choice for saving as either a binary file, a C header, an assembly file or a BEX file however you could only load a binary file. I added support for loading these text based files. The parser for this does support multiple "arrays" and you will be prompted to selected which one to load if there are multiple "arrays" in the file you are loading.

For assembly the syntax that Retro Graphics Toolkit currently accepts is as follows:
Comments use a semicolon
dc.b = 8 bit
dc.w = 16 bit
dc.l = 32 bit
A US dollar sign ($) in front of a number means that the number is hexadecimal.

If you use an assembler with a different syntax you will need to modify filereader.lua.

Also the offline manual has been improved by replacing some links which used to link to the Github wiki with references to other sections of the offline manual and some minor text changes which also affect the online wiki.

I also tested compiling Retro Graphics Toolkit with Clang and made a few minor source code changes so that it can build with both Clang and GCC.

I also did a previously unannounced release. In that release some bugs were fixed and PNGs were exported with a 256 color palette. Also you can now selected which palette table is used for the Sega Genesis.
nintendo8
Posts: 54
Joined: Tue Jul 10, 2012 1:37 pm

Re: Retro Graphics Toolkit

Post by nintendo8 »

Want a command line tool to convert images using multiple palette rows? Read this post to find out how.

i just added a new headless mode, fixed a bug, and improved the UI for the palette generation frame.

The headless mode means that the Retro Graphics Toolkit window is not created. Instead what happens is a Lua script is executed. This opens up a world of possibilities such as using Retro Graphics Toolkit with your Makefiles.

To use the new headless mode do:

Code: Select all

RetroGraphicsToolkit --headless scriptName.lua
Any arguments following the script name will be passed to the Lua script.
You can also run scripts in the headlessExamples directory regardless of where Retro Graphics Toolkit was invoked by using --headless-examples

I wrote a command line image converter which is invoked as such:

Code: Select all

RetroGraphicsToolkit --headless-examples imageConverter.lua
To learn how to use it do:

Code: Select all

RetroGraphicsToolkit --headless-examples imageConverter.lua --help
Also you can convert as many images as you want by specifying multiple images as arguments. I make use of the chdir() function so that relative paths will work as expected (as in if there is a file in the directory you are in you can read it as ./file regardless of where you are in relation to Retro Graphics Toolkit).

Windows users will need to re-download to take advantage of these features: https://github.com/ComputerNerd/Retro-G ... kit.exe.7z
sdm
Posts: 412
Joined: Tue Apr 11, 2006 4:08 am
Location: Poland

Re: Retro Graphics Toolkit

Post by sdm »

I have a problem with this program - the defined palette after saving has randomly totally changed colors. Is this a problem running under Windows 10? It is terribly irritating, because you have to modify the palette many times to correctly save the set colors after some time.
Post Reply