Main Menu

News:

LINKS: Website | Steam | Wiki

A quick PNG to REX (xp) converter

Started by thebracket, August 10, 2016, 11:37:45 AM

Previous topic - Next topic

thebracket

Hey,

I don't know if this is useful to anyone, but for my current project I wanted to turn some PNGs into REX files. So I threw together a tool, and put it up on GitHub in case anyone can benefit from it. You can find the tool here: https://github.com/thebracket/png2rex

Basically, it lets you turn:


into this:


There's nothing super clever about it. It reads an RGBA PNG, and converts the RGB parts directly. The Alpha channel is transparent at 0, 1/4 filled at 25%, 1/2 filled at 75%, and a filled cell otherwise. Primitive, but it gets the job done!

Kyzrati

#1
Nice!

I added a similar feature to REXPaint a few months back, though mine is a little more complicated to use since it's intended for importing screenshots of other roguelikes (so on a cellwise basis rather than pixelwise).

I can see yours coming in handy for a lot more people, though :D. I'll add it to the resource lists.

Edit: Ooh, I just looked at the details and you even have translucency with CP437 tiles; that's awesome.
Josh Ge, Developer - Dev Blog | @GridSageGames | Patreon

gumix

@Kyzrati The Kitty png import thing should be considered as a part of next major RP release. Very handy indeed!

@thebracked I love the idea, I can think of a small improvement: user defined alpha ramp in form of simple string (for odd users not using full cp437, I know at least one such guy).

thebracket

The user-defined alpha ramp is a great idea (I'd thought about some sort of palette system, also, but I'm not sure how I'd best do that yet). I'll see if I can get that in there sometime soon; my time is a bit limited right now due to a sick baby, so I can't make any promises!

RM

This looks amazing - unfortunately, I haven't the slightest idea about how to go about building the source code! I attempted to follow the instructions on the Github page and downloaded CMake... Then realised I didn't have a clue how to go about downloading and installing the other required sources / libraries or even which compiler to use and where to enter the build command. As a non-coder, I find the Github layout quite confusing, so it may be that I'm missing the download link for the exe version? So, I humbly ask, has anyone compiled this PNG2REX utility and able to share it? Thank you.

Kyzrati

I can't help with building it (maybe someone else here can/will), but in the meantime, REXPaint has a version of this feature built in to it, albeit without character-based dithering. So maybe you could try that.

The instructions are in the manual, Appendix G.

As of now it'll require that you append the "cell size" to the filename to work, so for example converting a regular image will mean appending "_1x1" for pixelwise conversion. (That said, for REXPaint's next release I've updated it to assume pixewise conversion if no cell size is appended, as that will be the most common use case.)

Example: On Windows, you can drop your imagename_1x1.png file in REXPaint's /images/ directory, create a .bat file in the main directory with the following contents
start REXPaint.exe -png2xp:imagename_1x1
then run the .bat file and it'll output your .xp file. Just open/reopen REXPaint to see it.
Josh Ge, Developer - Dev Blog | @GridSageGames | Patreon

RM

Kyzrati, thanks for your guidance with this! I'll have another go of building it tonight. Thanks too for REXpaint, I've been tinkering with it non stop over the past few days and plan to use it exclusively for a game project I'm fleshing out. I totally overlooked the built in PNG import - awesome! Lack of dithering shouldn't be a problem, it'll be handy just to have my base image in the program to build on.

Kyzrati

#7
Cool, good luck with it, and yeah it can get pretty addictive :). Do eventually stop by to share what you're working on!

And coincidentally, I was actually just using this feature today--playing around with some ideas...


Josh Ge, Developer - Dev Blog | @GridSageGames | Patreon

Widmo

Hey RM! What platform are you on? If you are on Linux, Mac or anything resembling Unix I could help you through building it.

RM

Kyzrati ~ Very nice ;D I just tried importing/converting some sprites of my own with REXpaint and, of course, it works perfectly - just what I needed! Also, I'd be glad to share some of my creations once I hone my skills a bit.


Widmo ~ Hey! Thank you kindly for offering to help, unfortunately I'm on Windows 10... Although every time I reformat or there's a major update, I seriously consider giving one of the alternatives a go...

Widmo

Ah, a pity. I am unfamiliar with development tools on Windows. Good luck building the program regardless!

Kyzrati

Hey RM, another REXPaint user ("Santiago") has compiled thebracket's binaries if you'd like to use them. He comments:
QuoteI did manage to compile png2rex on windows. This is only the x64 build as I don't have the win32 libs installed but in case someone still wanted it. One is a static build the big one, the other a shared build. the png and zlib are still part of the exe on the shared but it depends on 2 mingw64 dll to run.

I've attached the files here.
Josh Ge, Developer - Dev Blog | @GridSageGames | Patreon