2012-06-04 15:49:58 +00: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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2019-02-18 07:21:50 +11:00
|
|
|
*
|
|
|
|
* Copyright 2012, Blender Foundation.
|
2012-06-04 15:49:58 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "COM_MaskOperation.h"
|
|
|
|
|
|
|
|
#include "MEM_guardedalloc.h"
|
|
|
|
|
|
|
|
#include "BLI_listbase.h"
|
|
|
|
#include "BLI_math.h"
|
|
|
|
|
|
|
|
extern "C" {
|
2013-12-22 14:11:10 +11:00
|
|
|
# include "BKE_mask.h"
|
2012-06-04 15:49:58 +00:00
|
|
|
}
|
|
|
|
|
2012-07-12 20:10:41 +00:00
|
|
|
MaskOperation::MaskOperation() : NodeOperation()
|
|
|
|
{
|
|
|
|
this->addOutputSocket(COM_DT_VALUE);
|
|
|
|
this->m_mask = NULL;
|
|
|
|
this->m_maskWidth = 0;
|
|
|
|
this->m_maskHeight = 0;
|
2012-07-27 09:32:47 +00:00
|
|
|
this->m_maskWidthInv = 0.0f;
|
|
|
|
this->m_maskHeightInv = 0.0f;
|
2012-07-27 10:20:36 +00:00
|
|
|
this->m_frame_shutter = 0.0f;
|
|
|
|
this->m_frame_number = 0;
|
2012-07-27 09:32:47 +00:00
|
|
|
this->m_rasterMaskHandleTot = 1;
|
|
|
|
memset(this->m_rasterMaskHandles, 0, sizeof(this->m_rasterMaskHandles));
|
2012-07-12 20:10:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void MaskOperation::initExecution()
|
|
|
|
{
|
2012-07-27 09:32:47 +00:00
|
|
|
if (this->m_mask && this->m_rasterMaskHandles[0] == NULL) {
|
|
|
|
if (this->m_rasterMaskHandleTot == 1) {
|
|
|
|
this->m_rasterMaskHandles[0] = BKE_maskrasterize_handle_new();
|
2012-07-12 20:10:41 +00:00
|
|
|
|
2012-07-27 09:32:47 +00:00
|
|
|
BKE_maskrasterize_handle_init(this->m_rasterMaskHandles[0], this->m_mask,
|
|
|
|
this->m_maskWidth, this->m_maskHeight,
|
2018-09-06 10:39:25 +02:00
|
|
|
true, true, this->m_do_feather);
|
2012-07-27 09:32:47 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* make a throw away copy of the mask */
|
2012-07-27 10:20:36 +00:00
|
|
|
const float frame = (float)this->m_frame_number - this->m_frame_shutter;
|
|
|
|
const float frame_step = (this->m_frame_shutter * 2.0f) / this->m_rasterMaskHandleTot;
|
2012-07-27 09:32:47 +00:00
|
|
|
float frame_iter = frame;
|
|
|
|
|
|
|
|
Mask *mask_temp;
|
|
|
|
|
|
|
|
mask_temp = BKE_mask_copy_nolib(this->m_mask);
|
|
|
|
|
|
|
|
/* trick so we can get unkeyed edits to display */
|
|
|
|
{
|
|
|
|
MaskLayer *masklay;
|
|
|
|
MaskLayerShape *masklay_shape;
|
|
|
|
|
|
|
|
for (masklay = (MaskLayer *)mask_temp->masklayers.first;
|
|
|
|
masklay;
|
2012-10-14 07:40:16 +00:00
|
|
|
masklay = masklay->next)
|
2012-07-27 09:32:47 +00:00
|
|
|
{
|
2013-11-04 11:27:11 +00:00
|
|
|
masklay_shape = BKE_mask_layer_shape_verify_frame(masklay, this->m_frame_number);
|
2012-07-27 09:32:47 +00:00
|
|
|
BKE_mask_layer_shape_from_mask(masklay, masklay_shape);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (unsigned int i = 0; i < this->m_rasterMaskHandleTot; i++) {
|
|
|
|
this->m_rasterMaskHandles[i] = BKE_maskrasterize_handle_new();
|
|
|
|
|
|
|
|
/* re-eval frame info */
|
2013-10-29 18:46:45 +00:00
|
|
|
BKE_mask_evaluate(mask_temp, frame_iter, true);
|
2012-07-27 09:32:47 +00:00
|
|
|
|
|
|
|
BKE_maskrasterize_handle_init(this->m_rasterMaskHandles[i], mask_temp,
|
|
|
|
this->m_maskWidth, this->m_maskHeight,
|
2018-09-06 10:39:25 +02:00
|
|
|
true, true, this->m_do_feather);
|
2012-07-27 09:32:47 +00:00
|
|
|
|
|
|
|
frame_iter += frame_step;
|
|
|
|
}
|
|
|
|
|
ID-Remap - Step one: core work (cleanup and rework of generic ID datablock handling).
This commit changes a lot of how IDs are handled internally, especially the unlinking/freeing
processes. So far, this was very fuzy, to summarize cleanly deleting or replacing a datablock
was pretty much impossible, except for a few special cases.
Also, unlinking was handled by each datatype, in a rather messy and prone-to-errors way (quite
a few ID usages were missed or wrongly handled that way).
One of the main goal of id-remap branch was to cleanup this, and fatorize ID links handling
by using library_query utils to allow generic handling of those, which is now the case
(now, generic ID links handling is only "knwon" from readfile.c and library_query.c).
This commit also adds backends to allow live replacement and deletion of datablocks in Blender
(so-called 'remapping' process, where we replace all usages of a given ID pointer by a new one,
or NULL one in case of unlinking).
This will allow nice new features, like ability to easily reload or relocate libraries, real immediate
deletion of datablocks in blender, replacement of one datablock by another, etc.
Some of those are for next commits.
A word of warning: this commit is highly risky, because it affects potentially a lot in Blender core.
Though it was tested rather deeply, being totally impossible to check all possible ID usage cases,
it's likely there are some remaining issues and bugs in new code... Please report them! ;)
Review task: D2027 (https://developer.blender.org/D2027).
Reviewed by campbellbarton, thanks a bunch.
2016-06-22 17:29:38 +02:00
|
|
|
BKE_mask_free(mask_temp);
|
2012-07-27 09:32:47 +00:00
|
|
|
MEM_freeN(mask_temp);
|
2012-07-13 12:55:30 +00:00
|
|
|
}
|
2012-07-12 20:10:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void MaskOperation::deinitExecution()
|
|
|
|
{
|
2012-07-27 09:32:47 +00:00
|
|
|
for (unsigned int i = 0; i < this->m_rasterMaskHandleTot; i++) {
|
|
|
|
if (this->m_rasterMaskHandles[i]) {
|
|
|
|
BKE_maskrasterize_handle_free(this->m_rasterMaskHandles[i]);
|
|
|
|
this->m_rasterMaskHandles[i] = NULL;
|
|
|
|
}
|
2012-07-12 20:10:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-10 13:23:31 +00:00
|
|
|
void MaskOperation::determineResolution(unsigned int resolution[2], unsigned int preferredResolution[2])
|
2012-07-12 20:10:41 +00:00
|
|
|
{
|
|
|
|
if (this->m_maskWidth == 0 || this->m_maskHeight == 0) {
|
|
|
|
NodeOperation::determineResolution(resolution, preferredResolution);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
unsigned int nr[2];
|
|
|
|
|
|
|
|
nr[0] = this->m_maskWidth;
|
|
|
|
nr[1] = this->m_maskHeight;
|
|
|
|
|
|
|
|
NodeOperation::determineResolution(resolution, nr);
|
|
|
|
|
|
|
|
resolution[0] = this->m_maskWidth;
|
|
|
|
resolution[1] = this->m_maskHeight;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-27 15:49:07 +05:00
|
|
|
void MaskOperation::executePixelSampled(float output[4], float x, float y, PixelSampler /*sampler*/)
|
2012-07-12 20:10:41 +00:00
|
|
|
{
|
2014-04-16 23:25:10 +10:00
|
|
|
const float xy[2] = {
|
|
|
|
(x * this->m_maskWidthInv) + this->m_mask_px_ofs[0],
|
|
|
|
(y * this->m_maskHeightInv) + this->m_mask_px_ofs[1]};
|
2012-07-27 09:32:47 +00:00
|
|
|
|
|
|
|
if (this->m_rasterMaskHandleTot == 1) {
|
|
|
|
if (this->m_rasterMaskHandles[0]) {
|
2012-08-10 14:07:24 +00:00
|
|
|
output[0] = BKE_maskrasterize_handle_sample(this->m_rasterMaskHandles[0], xy);
|
2012-07-27 09:32:47 +00:00
|
|
|
}
|
|
|
|
else {
|
2012-08-10 14:07:24 +00:00
|
|
|
output[0] = 0.0f;
|
2012-07-27 09:32:47 +00:00
|
|
|
}
|
2012-07-13 12:55:30 +00:00
|
|
|
}
|
|
|
|
else {
|
2012-07-27 09:32:47 +00:00
|
|
|
/* incase loop below fails */
|
2012-08-10 14:07:24 +00:00
|
|
|
output[0] = 0.0f;
|
2012-07-27 09:32:47 +00:00
|
|
|
|
|
|
|
for (unsigned int i = 0; i < this->m_rasterMaskHandleTot; i++) {
|
|
|
|
if (this->m_rasterMaskHandles[i]) {
|
2012-08-10 14:07:24 +00:00
|
|
|
output[0] += BKE_maskrasterize_handle_sample(this->m_rasterMaskHandles[i], xy);
|
2012-07-27 09:32:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* until we get better falloff */
|
2012-08-10 14:07:24 +00:00
|
|
|
output[0] /= this->m_rasterMaskHandleTot;
|
2012-07-13 12:55:30 +00:00
|
|
|
}
|
2012-07-12 20:10:41 +00:00
|
|
|
}
|