1
0
mirror of https://github.com/aseprite/aseprite.git synced 2025-04-04 10:20:14 +00:00
David Capello f1f24cbcdd Replace doc::Stock with doc::ImageRef shared pointer
Changes:
* Add doc::ImageRef to count references to the same image between Cels
  (at this moment we cannot generate linked cels anyway)
* Remove doc:Stock class and doc::Sprite::m_stock member variable
* Remove app::undoers::Add/RemoveImage
* Add doc::SubObjectsIO and app::undoers::ObjectIO to
  replace doc::LayerSubObjectsSerializer
2015-01-04 10:58:14 -03:00

86 lines
1.4 KiB
C++

// Aseprite Document Library
// Copyright (c) 2001-2014 David Capello
//
// This file is released under the terms of the MIT license.
// Read LICENSE.txt for more information.
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "doc/sprites.h"
#include "base/mutex.h"
#include "base/unique_ptr.h"
#include "doc/sprite.h"
#include "doc/cel.h"
#include "doc/image.h"
#include "doc/layer.h"
#include "doc/primitives.h"
#include <algorithm>
namespace doc {
Sprites::Sprites(Document* doc)
: m_doc(doc)
{
ASSERT(doc != NULL);
}
Sprites::~Sprites()
{
deleteAll();
}
Sprite* Sprites::add(int width, int height, ColorMode mode, int ncolors)
{
base::UniquePtr<Sprite> spr(
doc::Sprite::createBasicSprite(
(doc::PixelFormat)mode, width, height, ncolors));
add(spr);
return spr.release();
}
Sprite* Sprites::add(Sprite* spr)
{
ASSERT(spr != NULL);
m_sprites.insert(begin(), spr);
notifyObservers(&SpritesObserver::onAddSprite, spr);
return spr;
}
void Sprites::remove(Sprite* spr)
{
iterator it = std::find(begin(), end(), spr);
ASSERT(it != end());
if (it != end())
m_sprites.erase(it);
}
void Sprites::move(Sprite* spr, int index)
{
remove(spr);
m_sprites.insert(begin()+index, spr);
}
void Sprites::deleteAll()
{
std::vector<Sprite*> copy = m_sprites;
for (iterator it = copy.begin(), end = copy.end(); it != end; ++it) {
Sprite* spr = *it;
delete spr;
}
m_sprites.clear();
}
} // namespace doc