-
Notifications
You must be signed in to change notification settings - Fork 57
Not supported importing map images with multiple palettes #11
Comments
The Issue #7 is a part of this problem. |
@MetLob that Map Editor look so good, yeah it's a possible solution to make it manually. But I think I have already fixed that problem in another program: Ninoimager, a image importer for Ninokuni DS game. Maybe we could implement that algorithm here too. |
Please, is there a workarounf or fix for this yet? :/ |
This is in development and will be fixed in later. |
Will you be implementing that Map editor? That's beautiful and exactly what I'm looking for, as well as importing new tiles to the end of a file. |
It's been over a year now since this issue was posted, and it hasn't been resolved yet. |
Tinke is not officially dead but I am not giving it much time... I started some years ago to think in a new tool that will do much more than Tinke. Tinke is powerful but I have learnt in the past years how I can do it better and it needs a new re-implementation from 0 (I can't count how many times I already re-implemented it). So, these days I am focusing my time in working in a library and working in some tools that will be the core of the next Tinke project. Until the moment when I have something new working, I will continue maintaining Tinke (I am not doing very well in this point...). Since this feature seems to be quite popular, I will try to save some time to implement it. |
@pleonex Thanks for replying. And I'm sorry if I annoyed you with my post. |
@Romsstar ah no problem, I am not annoyed. It's true that I should work more in this project since there are a lot of people contributing (3 pending PR and 24 open issues). As I said in a previous comment, I already implemented this feature in another tool so if you need it for a particular project, I could try to modify that tool to make it work for you. Can you send me an email with some test files? (my email is in my profile page) |
@pleonex I sent you a mail with the files. I hope you received it :) |
Images with a map file uses more than one palette. For instance, a 4 bpp depth image with map file could use 16 palettes with 16 colors in the same image, in total it could have 256 colors. Tinke only checks that the number of unique colors is not more than
1 << depth
, so in this case it would refuse the image since it would have more than 16 colors.We would need to check if the map compression algorithm support checking for more than one palette so we would need just to update the check condition.
The text was updated successfully, but these errors were encountered: