2014-01-26 04:56:04 +00:00
|
|
|
#include "SpriteFileWriter.hpp"
|
|
|
|
#include "SpriteFile.hpp"
|
|
|
|
#include "Sprite.hpp"
|
|
|
|
#include "SpritePart.hpp"
|
|
|
|
#include "SpriteFrame.hpp"
|
|
|
|
#include "InvalidOperationException.hpp"
|
|
|
|
|
|
|
|
namespace zelda
|
|
|
|
{
|
|
|
|
namespace io
|
|
|
|
{
|
|
|
|
SpriteFileWriter::SpriteFileWriter(Uint8 *data, Uint64 length)
|
|
|
|
: base(data, length)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
SpriteFileWriter::SpriteFileWriter(const std::string& filepath)
|
|
|
|
: base(filepath)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void SpriteFileWriter::writeFile(Sakura::SpriteFile* file)
|
|
|
|
{
|
|
|
|
if (!file)
|
|
|
|
throw zelda::error::InvalidOperationException("SSpriteFileWriter::writeFile -> file cannot be NULL");
|
|
|
|
|
|
|
|
base::writeUInt32(Sakura::SpriteFile::Magic);
|
|
|
|
base::writeUInt32(Sakura::SpriteFile::Version);
|
|
|
|
|
|
|
|
base::writeUInt16(file->textureCount());
|
|
|
|
base::writeUInt32(file->width());
|
|
|
|
base::writeUInt32(file->height());
|
|
|
|
base::writeFloat(file->originX());
|
|
|
|
base::writeFloat(file->originY());
|
|
|
|
base::writeUInt16(file->spriteCount());
|
|
|
|
|
|
|
|
base::writeUInt32(0xFFFFFFFF);
|
|
|
|
|
|
|
|
for (Sakura::STexture* texture : file->textures())
|
|
|
|
{
|
|
|
|
base::writeString(texture->Filepath);
|
|
|
|
base::writeBool(texture->Preload);
|
|
|
|
}
|
|
|
|
|
2014-02-27 05:47:39 +00:00
|
|
|
#ifndef LIBZELDA_USE_QT
|
2014-01-26 04:56:04 +00:00
|
|
|
for (std::pair<std::string, Sakura::Sprite*> spritePair : file->sprites())
|
|
|
|
{
|
|
|
|
Sakura::Sprite* sprite = spritePair.second;
|
|
|
|
base::writeString(sprite->name());
|
2014-02-27 05:47:39 +00:00
|
|
|
#else
|
|
|
|
foreach(Sakura::Sprite* sprite, file->sprites().values())
|
|
|
|
{
|
|
|
|
|
|
|
|
base::writeString(sprite->name().toStdString());
|
|
|
|
#endif
|
|
|
|
base::writeUInt16(sprite->frameCount());
|
2014-01-26 04:56:04 +00:00
|
|
|
base::writeUInt16(sprite->stateCount());
|
|
|
|
|
|
|
|
for (int id : sprite->stateIds())
|
|
|
|
base::writeUInt16(id);
|
|
|
|
|
2014-02-27 05:47:39 +00:00
|
|
|
for (Sakura::SpriteFrame* frame : sprite->frames())
|
2014-01-26 04:56:04 +00:00
|
|
|
{
|
2014-02-27 05:47:39 +00:00
|
|
|
base::writeFloat(frame->frameTime());
|
|
|
|
base::writeUInt16(frame->partCount());
|
|
|
|
for (Sakura::SpritePart* part: frame->parts())
|
2014-01-26 04:56:04 +00:00
|
|
|
{
|
2014-02-27 05:47:39 +00:00
|
|
|
#ifndef LIBZELDA_USE_QT
|
|
|
|
base::writeString(part->name());
|
|
|
|
#else
|
|
|
|
base::writeString(part->name().toStdString());
|
|
|
|
#endif
|
|
|
|
base::writeBool(part->hasCollision());
|
|
|
|
#ifndef LIBZELDA_USE_QT
|
|
|
|
base::writeFloat(part->offset().x);
|
|
|
|
base::writeFloat(part->offset().y);
|
|
|
|
base::writeFloat(part->textureOffset().x);
|
|
|
|
base::writeFloat(part->textureOffset().y);
|
|
|
|
base::writeUInt32(part->size().x);
|
|
|
|
base::writeUInt32(part->size().y);
|
|
|
|
#else
|
|
|
|
base::writeFloat(part->offset().x());
|
|
|
|
base::writeFloat(part->offset().y());
|
|
|
|
base::writeFloat(part->textureOffset().x());
|
|
|
|
base::writeFloat(part->textureOffset().y());
|
|
|
|
base::writeUInt32(part->size().width());
|
|
|
|
base::writeUInt32(part->size().height());
|
|
|
|
#endif
|
|
|
|
base::writeBool(part->flippedHorizontally());
|
|
|
|
base::writeBool(part->flippedVertically());
|
2014-01-26 04:56:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
save();
|
|
|
|
}
|
|
|
|
|
|
|
|
} // io
|
|
|
|
} // zelda
|