Eldred Habert

Results 458 comments of Eldred Habert

After some discussion, rather than the "skip embedded palette" flag, the following could be of use: - A flag to dump the palette RGBGFX ended up with (post `--fuzzy`, for...

This is equivalent to what I just mentioned [in another issue](https://github.com/gbdev/rgbds/issues/487#issuecomment-698998222).

For `--fuzzy`, what distance function should be used between colors? What range should it have on the CLI? For the range, I'm thinking 0-255 integers, as it's what other numeric...

`--fuzzy` makes sense even if a palette was specified on the CLI, in case it doesn't *exactly* match the color's images. (Param-less `--fuzzy` is intended for that exact use case,...

CLI palettes shall be specified either textually (in-line or from a file), or from a PNG file; in the latter case, colors can be specified exactly, and in the former,...

There's no point in specifying palettes as a whole in decimal, since all displays are either per-channel (either decimal or hex), or global in hex. Hence, I guess `#rrggbbaa`/`#rrggbb` versus...

So: ```ebnf palettes = palette { ( ";" | "\n" ) { "\n" } palettes } ; palette = color [ , color [ , color [ , color ]...

Would it be interesting to allow taking tiles as input, and only using those? I think this might be useful if a tileset has already been generated, and one wants...

It seems really specific: if you already know the tilemap, in which cases would you need to change the input image? If you don't change the image, there's no point...

Yeah, these look like use cases for matching disassemblies, which I'm not sure I want `rsgbgfx` to target. I'll try to keep those in mind, and incorporate them directly if...