Usage: Using the mouse, you place a few points in the window. Next,
you right click to apply the algo.
Algo:
for each pixel {
find the color of the nearest point;
apply this color to the current pixel;
}
Screen shot:
Sources and binaries:
points.tar.gz (105k), Linux/Windows®
Up
Since I was unable to find a tool to extract information from snes roms that
worked with Linux and I could not find the source code of any similar tool
that I could have ported, I wrote my own.
This tool can extract the title, country, license and other info of one or many
snes roms.
Example:
[raph@fantasy rom_backups]$ snesrom_info Donkey_kong_1.smc Donkey_kong_2.fig
Filename: Donkey_kong_1.smc
Title: DONKEY KONG COUNTRY
Type: ROM and Save RAM
Country: Australia, Europe, Oceania and Asia
License: Nintendo
------------------
Filename: Donkey_kong_2.fig
Title: Donkey Kong Country 2
Type: ROM and Save RAM
Country: USA
License: Nintendo
------------------
There is also a list mode. To use it, use the
-l argument.
exemple:
[raph@fantasy rom_backups]$ snesrom_info -l * > list_mode.txt
It is also possible to output in html format using the
-h argument.
[raph@fantasy rom_backups]$ snesrom_info -lh * > list_mode.html
or:
[raph@fantasy rom_backups]$ snesrom_info -h Donkey_kong_1.smc \
> Donkey_kong_2.fig > hmtl_mode.html
Here are example of generated html:
list_mode.html et
html_mode.html.
Unlike the others who have coded similar tools, I am kind enough to give the
source code.
Up