1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-22 22:13:35 +02:00

fix image generation

This commit is contained in:
Laserlicht 2024-11-30 13:01:33 +01:00
parent 443bcf6d50
commit 1c715e39ba
2 changed files with 15 additions and 18 deletions

View File

@ -369,20 +369,20 @@ void AssetGenerator::createPaletteShiftedSprites()
auto anim = GH.renderHandler().loadAnimation(filename, EImageBlitMode::COLORKEY);
for(int j = 0; j < anim->size(); j++)
{
int counter = 0;
for(int k = 0; k < paletteAnimations[i].size(); k++)
for(int l = 0; l < 11; l++)
{
auto element = paletteAnimations[i][k];
int length = std::holds_alternative<TerrainPaletteAnimation>(element) ? std::get<TerrainPaletteAnimation>(element).length : std::get<RiverPaletteAnimation>(element).length;
for(int l = 0; l < length; l++)
{
std::string filenameNew = "sprites/" + sprite + "_Shifted" + "/" + sprite + boost::str(boost::format("%02d") % j) + "_" + std::to_string(counter) + ".png";
std::string filenameNew = "sprites/" + sprite + "_Shifted" + "/" + sprite + boost::str(boost::format("%02d") % j) + "_" + std::to_string(l) + ".png";
ResourcePath savePath(filenameNew, EResType::IMAGE);
if(!CResourceHandler::get("local")->createResource(filenameNew))
return;
auto img = anim->getImage(j);
auto imgLoc = anim->getImageLocator(j, 0);
imgLoc.scalingFactor = 1;
auto img = GH.renderHandler().loadImage(imgLoc, EImageBlitMode::COLORKEY);
for(int k = 0; k < paletteAnimations[i].size(); k++)
{
auto element = paletteAnimations[i][k];
if(std::holds_alternative<TerrainPaletteAnimation>(element))
{
auto tmp = std::get<TerrainPaletteAnimation>(element);
@ -393,11 +393,8 @@ void AssetGenerator::createPaletteShiftedSprites()
auto tmp = std::get<RiverPaletteAnimation>(element);
img->shiftPalette(tmp.start, tmp.length, l);
}
}
img->exportBitmap(*CResourceHandler::get("local")->getResourceName(savePath));
counter++;
}
}
}
}

View File

@ -50,8 +50,6 @@ private:
void printError(size_t frame, size_t group, std::string type) const;
std::shared_ptr<IImage> getImageImpl(size_t frame, size_t group=0, bool verbose=true);
ImageLocator getImageLocator(size_t frame, size_t group) const;
public:
CAnimation(const AnimationPath & Name, std::map<size_t, std::vector <ImageLocator> > layout, EImageBlitMode mode);
~CAnimation();
@ -74,5 +72,7 @@ public:
void playerColored(PlayerColor player);
void createFlippedGroup(const size_t sourceGroup, const size_t targetGroup);
ImageLocator getImageLocator(size_t frame, size_t group) const;
};