2012-06-04 15:49:58 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2012, Blender Foundation.
|
|
|
|
*
|
|
|
|
* 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*
|
|
|
|
* Contributor:
|
|
|
|
* Jeroen Bakker
|
|
|
|
* Monique Dewanchand
|
|
|
|
* Sergey Sharybin
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "COM_MaskOperation.h"
|
|
|
|
|
|
|
|
#include "MEM_guardedalloc.h"
|
|
|
|
|
|
|
|
#include "BLI_listbase.h"
|
|
|
|
#include "BLI_math.h"
|
|
|
|
|
|
|
|
#include "DNA_scene_types.h"
|
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
#include "BKE_mask.h"
|
2012-06-15 18:42:03 +00:00
|
|
|
#include "../../../../intern/raskter/raskter.h"
|
2012-06-04 15:49:58 +00:00
|
|
|
}
|
|
|
|
|
2012-06-15 18:42:03 +00:00
|
|
|
MaskOperation::MaskOperation() : NodeOperation()
|
2012-06-04 15:49:58 +00:00
|
|
|
{
|
2012-06-12 18:36:49 +00:00
|
|
|
this->addOutputSocket(COM_DT_VALUE);
|
2012-06-04 15:49:58 +00:00
|
|
|
this->mask = NULL;
|
|
|
|
this->maskWidth = 0;
|
|
|
|
this->maskHeight = 0;
|
|
|
|
this->framenumber = 0;
|
|
|
|
this->rasterizedMask = NULL;
|
|
|
|
setComplex(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
void MaskOperation::initExecution()
|
|
|
|
{
|
|
|
|
initMutex();
|
|
|
|
this->rasterizedMask = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void MaskOperation::deinitExecution()
|
|
|
|
{
|
|
|
|
if (this->rasterizedMask) {
|
|
|
|
MEM_freeN(rasterizedMask);
|
|
|
|
this->rasterizedMask = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void *MaskOperation::initializeTileData(rcti *rect, MemoryBuffer **memoryBuffers)
|
|
|
|
{
|
|
|
|
if (this->rasterizedMask)
|
|
|
|
return this->rasterizedMask;
|
|
|
|
|
|
|
|
if (!this->mask)
|
|
|
|
return NULL;
|
|
|
|
|
2012-06-13 12:34:56 +00:00
|
|
|
lockMutex();
|
2012-06-04 15:49:58 +00:00
|
|
|
if (this->rasterizedMask == NULL) {
|
|
|
|
int width = this->getWidth();
|
|
|
|
int height = this->getHeight();
|
|
|
|
float *buffer;
|
|
|
|
|
|
|
|
buffer = (float *)MEM_callocN(sizeof(float) * width * height, "rasterized mask");
|
2012-06-21 12:27:57 +00:00
|
|
|
BKE_mask_rasterize(mask, width, height, buffer, TRUE, this->do_smooth, this->do_feather);
|
|
|
|
if (this->do_smooth) {
|
2012-06-15 18:42:03 +00:00
|
|
|
PLX_antialias_buffer(buffer, width, height);
|
|
|
|
}
|
2012-06-04 15:49:58 +00:00
|
|
|
|
|
|
|
this->rasterizedMask = buffer;
|
|
|
|
}
|
2012-06-13 12:34:56 +00:00
|
|
|
unlockMutex();
|
2012-06-04 15:49:58 +00:00
|
|
|
return this->rasterizedMask;
|
|
|
|
}
|
|
|
|
|
|
|
|
void MaskOperation::determineResolution(unsigned int resolution[], unsigned int preferredResolution[])
|
|
|
|
{
|
|
|
|
if (maskWidth == 0 || maskHeight == 0) {
|
|
|
|
NodeOperation::determineResolution(resolution, preferredResolution);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
unsigned int nr[2];
|
|
|
|
|
|
|
|
nr[0] = maskWidth;
|
|
|
|
nr[1] = maskHeight;
|
|
|
|
|
|
|
|
NodeOperation::determineResolution(resolution, nr);
|
|
|
|
|
|
|
|
resolution[0] = maskWidth;
|
|
|
|
resolution[1] = maskHeight;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void MaskOperation::executePixel(float *color, int x, int y, MemoryBuffer *inputBuffers[], void *data)
|
|
|
|
{
|
|
|
|
if (!data) {
|
2012-06-12 18:36:49 +00:00
|
|
|
color[0] = 0.0f;
|
2012-06-04 15:49:58 +00:00
|
|
|
}
|
|
|
|
else {
|
2012-06-15 18:42:03 +00:00
|
|
|
float *buffer = (float *) data;
|
2012-06-04 15:49:58 +00:00
|
|
|
int index = (y * this->getWidth() + x);
|
|
|
|
|
|
|
|
color[0] = buffer[index];
|
|
|
|
}
|
|
|
|
}
|