2013-08-09 08:01:20 +08:00
|
|
|
/* Aseprite
|
2013-01-27 23:13:13 +08:00
|
|
|
* Copyright (C) 2001-2013 David Capello
|
2011-03-28 01:51:02 +08:00
|
|
|
*
|
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
|
*/
|
|
|
|
|
|
2013-08-06 08:20:19 +08:00
|
|
|
#ifdef HAVE_CONFIG_H
|
2011-03-28 01:51:02 +08:00
|
|
|
#include "config.h"
|
2013-08-06 08:20:19 +08:00
|
|
|
#endif
|
2011-03-28 01:51:02 +08:00
|
|
|
|
2013-08-06 08:20:19 +08:00
|
|
|
#include "app/context_flags.h"
|
2011-03-28 01:51:02 +08:00
|
|
|
|
2013-08-06 08:20:19 +08:00
|
|
|
#include "app/context.h"
|
|
|
|
|
#include "app/document.h"
|
|
|
|
|
#include "app/document_location.h"
|
2014-10-21 09:21:31 +08:00
|
|
|
#include "doc/cel.h"
|
|
|
|
|
#include "doc/layer.h"
|
|
|
|
|
#include "doc/sprite.h"
|
|
|
|
|
#include "doc/stock.h"
|
2011-03-28 01:51:02 +08:00
|
|
|
|
2013-08-06 08:20:19 +08:00
|
|
|
namespace app {
|
|
|
|
|
|
2011-03-28 01:51:02 +08:00
|
|
|
ContextFlags::ContextFlags()
|
|
|
|
|
{
|
|
|
|
|
m_flags = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ContextFlags::update(Context* context)
|
|
|
|
|
{
|
2014-07-29 11:53:24 +08:00
|
|
|
DocumentLocation location = context->activeLocation();
|
2013-03-12 07:29:45 +08:00
|
|
|
Document* document = location.document();
|
2011-03-28 01:51:02 +08:00
|
|
|
|
|
|
|
|
m_flags = 0;
|
|
|
|
|
|
|
|
|
|
if (document) {
|
|
|
|
|
m_flags |= HasActiveDocument;
|
|
|
|
|
|
|
|
|
|
if (document->lock(Document::ReadLock)) {
|
|
|
|
|
m_flags |= ActiveDocumentIsReadable;
|
|
|
|
|
|
|
|
|
|
if (document->isMaskVisible())
|
2012-01-06 06:45:03 +08:00
|
|
|
m_flags |= HasVisibleMask;
|
2011-03-28 01:51:02 +08:00
|
|
|
|
2013-03-12 07:29:45 +08:00
|
|
|
Sprite* sprite = location.sprite();
|
2011-03-28 01:51:02 +08:00
|
|
|
if (sprite) {
|
2012-01-06 06:45:03 +08:00
|
|
|
m_flags |= HasActiveSprite;
|
2011-03-28 01:51:02 +08:00
|
|
|
|
2014-07-30 12:28:15 +08:00
|
|
|
if (sprite->backgroundLayer())
|
2012-01-06 06:45:03 +08:00
|
|
|
m_flags |= HasBackgroundLayer;
|
2011-03-28 01:51:02 +08:00
|
|
|
|
2013-03-12 07:29:45 +08:00
|
|
|
Layer* layer = location.layer();
|
2012-01-06 06:45:03 +08:00
|
|
|
if (layer) {
|
|
|
|
|
m_flags |= HasActiveLayer;
|
2011-03-28 01:51:02 +08:00
|
|
|
|
2013-01-11 23:43:25 +08:00
|
|
|
if (layer->isBackground())
|
2012-01-06 06:45:03 +08:00
|
|
|
m_flags |= ActiveLayerIsBackground;
|
2011-03-28 01:51:02 +08:00
|
|
|
|
2013-01-11 23:43:25 +08:00
|
|
|
if (layer->isReadable())
|
2012-01-06 06:45:03 +08:00
|
|
|
m_flags |= ActiveLayerIsReadable;
|
2011-03-28 01:51:02 +08:00
|
|
|
|
2013-01-11 23:43:25 +08:00
|
|
|
if (layer->isWritable())
|
2012-01-06 06:45:03 +08:00
|
|
|
m_flags |= ActiveLayerIsWritable;
|
2011-03-28 01:51:02 +08:00
|
|
|
|
2013-01-11 23:43:25 +08:00
|
|
|
if (layer->isImage()) {
|
2012-01-06 06:45:03 +08:00
|
|
|
m_flags |= ActiveLayerIsImage;
|
2011-03-28 01:51:02 +08:00
|
|
|
|
2013-03-12 07:29:45 +08:00
|
|
|
Cel* cel = static_cast<LayerImage*>(layer)->getCel(location.frame());
|
2012-01-06 06:45:03 +08:00
|
|
|
if (cel) {
|
|
|
|
|
m_flags |= HasActiveCel;
|
2011-03-28 01:51:02 +08:00
|
|
|
|
2014-07-30 12:28:15 +08:00
|
|
|
if (cel->image())
|
2012-01-06 06:45:03 +08:00
|
|
|
m_flags |= HasActiveImage;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2011-03-28 01:51:02 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (document->lockToWrite())
|
2012-01-06 06:45:03 +08:00
|
|
|
m_flags |= ActiveDocumentIsWritable;
|
2011-03-28 01:51:02 +08:00
|
|
|
|
|
|
|
|
document->unlock();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2013-08-06 08:20:19 +08:00
|
|
|
|
|
|
|
|
} // namespace app
|