nr-filter-turbulence.cpp revision 5ef6cb9428f2e6f5457e890a1c3b37f53730c07a
/*
* feTurbulence filter primitive renderer
*
* Authors:
* World Wide Web Consortium <http://www.w3.org/>
* Felipe Corrêa da Silva Sanches <juca@members.fsf.org>
*
* This file has a considerable amount of code adapted from
* the W3C SVG filter specs, available at:
* http://www.w3.org/TR/SVG11/filters.html#feTurbulence
*
* W3C original code is licensed under the terms of
* the (GPL compatible) W3C® SOFTWARE NOTICE AND LICENSE:
* http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231
*
* Copyright (C) 2007 authors
* Released under GNU GPL version 2 (or later), read the file 'COPYING' for more information
*/
#include "display/nr-arena-item.h"
#include "display/nr-filter.h"
#include "display/nr-filter-turbulence.h"
#include "display/nr-filter-units.h"
#include "display/nr-filter-utils.h"
#include "libnr/nr-rect-l.h"
#include "libnr/nr-blit.h"
#include <math.h>
namespace Inkscape {
namespace Filters{
FilterTurbulence::FilterTurbulence()
: XbaseFrequency(0),
YbaseFrequency(0),
numOctaves(1),
seed(0),
updated(false),
updated_area(NR::IPoint(), NR::IPoint()),
pix(NULL),
fTileWidth(10), //guessed
fTileHeight(10), //guessed
fTileX(1), //guessed
fTileY(1) //guessed
{
}
FilterPrimitive * FilterTurbulence::create() {
return new FilterTurbulence();
}
FilterTurbulence::~FilterTurbulence()
{
if (pix) {
nr_pixblock_release(pix);
delete pix;
}
}
void FilterTurbulence::set_baseFrequency(int axis, double freq){
if (axis==0) XbaseFrequency=freq;
if (axis==1) YbaseFrequency=freq;
}
void FilterTurbulence::set_numOctaves(int num){
numOctaves=num;
}
void FilterTurbulence::set_seed(double s){
seed=s;
}
void FilterTurbulence::set_stitchTiles(bool st){
stitchTiles=st;
}
void FilterTurbulence::set_type(FilterTurbulenceType t){
type=t;
}
void FilterTurbulence::set_updated(bool u){
updated=u;
}
void FilterTurbulence::render_area(NRPixBlock *pix, NR::IRect &full_area, FilterUnits const &units) {
const int bbox_x0 = full_area.min()[NR::X];
const int bbox_y0 = full_area.min()[NR::Y];
const int bbox_x1 = full_area.max()[NR::X];
const int bbox_y1 = full_area.max()[NR::Y];
Geom::Matrix unit_trans = units.get_matrix_primitiveunits2pb().inverse();
double point[2];
unsigned char *pb = NR_PIXBLOCK_PX(pix);
if (type==TURBULENCE_TURBULENCE){
for (int y = std::max(bbox_y0, pix->area.y0); y < std::min(bbox_y1, pix->area.y1); y++){
int out_line = (y - pix->area.y0) * pix->rs;
point[1] = y * unit_trans[3] + unit_trans[5];
for (int x = std::max(bbox_x0, pix->area.x0); x < std::min(bbox_x1, pix->area.x1); x++){
int out_pos = out_line + 4 * (x - pix->area.x0);
point[0] = x * unit_trans[0] + unit_trans[4];
pb[out_pos] = CLAMP_D_TO_U8( turbulence(0,point)*255 ); // CLAMP includes rounding!
pb[out_pos + 1] = CLAMP_D_TO_U8( turbulence(1,point)*255 );
pb[out_pos + 2] = CLAMP_D_TO_U8( turbulence(2,point)*255 );
pb[out_pos + 3] = CLAMP_D_TO_U8( turbulence(3,point)*255 );
}
}
} else {
for (int y = std::max(bbox_y0, pix->area.y0); y < std::min(bbox_y1, pix->area.y1); y++){
int out_line = (y - pix->area.y0) * pix->rs;
point[1] = y * unit_trans[3] + unit_trans[5];
for (int x = std::max(bbox_x0, pix->area.x0); x < std::min(bbox_x1, pix->area.x1); x++){
int out_pos = out_line + 4 * (x - pix->area.x0);
point[0] = x * unit_trans[0] + unit_trans[4];
pb[out_pos] = CLAMP_D_TO_U8( ((turbulence(0,point)*255) +255)/2 );
pb[out_pos + 1] = CLAMP_D_TO_U8( ((turbulence(1,point)*255)+255)/2 );
pb[out_pos + 2] = CLAMP_D_TO_U8( ((turbulence(2,point)*255) +255)/2 );
pb[out_pos + 3] = CLAMP_D_TO_U8( ((turbulence(3,point)*255) +255)/2 );
}
}
}
pix->empty = FALSE;
}
void FilterTurbulence::update_pixbuffer(NR::IRect &area, FilterUnits const &units) {
int bbox_x0 = area.min()[NR::X];
int bbox_y0 = area.min()[NR::Y];
int bbox_x1 = area.max()[NR::X];
int bbox_y1 = area.max()[NR::Y];
TurbulenceInit((long)seed);
if (!pix){
pix = new NRPixBlock;
nr_pixblock_setup_fast(pix, NR_PIXBLOCK_MODE_R8G8B8A8N, bbox_x0, bbox_y0, bbox_x1, bbox_y1, true);
}
else if (bbox_x0 != pix->area.x0 || bbox_y0 != pix->area.y0 ||
bbox_x1 != pix->area.x1 || bbox_y1 != pix->area.y1)
{
/* TODO: release-setup cycle not actually needed, if pixblock
* width and height don't change */
nr_pixblock_release(pix);
nr_pixblock_setup_fast(pix, NR_PIXBLOCK_MODE_R8G8B8A8N, bbox_x0, bbox_y0, bbox_x1, bbox_y1, true);
}
/* This limits pre-rendered turbulence to two megapixels. This is
* arbitary limit and could be something other, too.
* If bigger area is needed, visible area is rendered on demand. */
if (!pix || (pix->size != NR_PIXBLOCK_SIZE_TINY && pix->data.px == NULL) ||
((bbox_x1 - bbox_x0) * (bbox_y1 - bbox_y0) > 2*1024*1024)) {
pix_data = NULL;
return;
}
render_area(pix, area, units);
pix_data = NR_PIXBLOCK_PX(pix);
updated=true;
updated_area = area;
}
int FilterTurbulence::render(FilterSlot &slot, FilterUnits const &units) {
NR::IRect area = units.get_pixblock_filterarea_paraller();
// TODO: could be faster - updated_area only has to be same size as area
if (!updated || updated_area != area) update_pixbuffer(area, units);
NRPixBlock *in = slot.get(_input);
if (!in) {
g_warning("Missing source image for feTurbulence (in=%d)", _input);
return 1;
}
NRPixBlock *out = new NRPixBlock;
int x0 = in->area.x0, y0 = in->area.y0;
int x1 = in->area.x1, y1 = in->area.y1;
nr_pixblock_setup_fast(out, NR_PIXBLOCK_MODE_R8G8B8A8N, x0, y0, x1, y1, true);
if (pix_data) {
/* If pre-rendered output of whole filter area exists, just copy it. */
nr_blit_pixblock_pixblock(out, pix);
} else {
/* No pre-rendered output, render the required area here. */
render_area(out, area, units);
}
out->empty = FALSE;
slot.set(_output, out);
return 0;
}
long FilterTurbulence::Turbulence_setup_seed(long lSeed)
{
if (lSeed <= 0) lSeed = -(lSeed % (RAND_m - 1)) + 1;
if (lSeed > RAND_m - 1) lSeed = RAND_m - 1;
return lSeed;
}
long FilterTurbulence::TurbulenceRandom(long lSeed)
{
long result;
result = RAND_a * (lSeed % RAND_q) - RAND_r * (lSeed / RAND_q);
if (result <= 0) result += RAND_m;
return result;
}
void FilterTurbulence::TurbulenceInit(long lSeed)
{
double s;
int i, j, k;
lSeed = Turbulence_setup_seed(lSeed);
for(k = 0; k < 4; k++)
{
for(i = 0; i < BSize; i++)
{
uLatticeSelector[i] = i;
for (j = 0; j < 2; j++)
fGradient[k][i][j] = (double)(((lSeed = TurbulenceRandom(lSeed)) % (BSize + BSize)) - BSize) / BSize;
s = double(sqrt(fGradient[k][i][0] * fGradient[k][i][0] + fGradient[k][i][1] * fGradient[k][i][1]));
fGradient[k][i][0] /= s;
fGradient[k][i][1] /= s;
}
}
while(--i)
{
k = uLatticeSelector[i];
uLatticeSelector[i] = uLatticeSelector[j = (lSeed = TurbulenceRandom(lSeed)) % BSize];
uLatticeSelector[j] = k;
}
for(i = 0; i < BSize + 2; i++)
{
uLatticeSelector[BSize + i] = uLatticeSelector[i];
for(k = 0; k < 4; k++)
for(j = 0; j < 2; j++)
fGradient[k][BSize + i][j] = fGradient[k][i][j];
}
}
double FilterTurbulence::TurbulenceNoise2(int nColorChannel, double vec[2], StitchInfo *pStitchInfo)
{
int bx0, bx1, by0, by1, b00, b10, b01, b11;
double rx0, rx1, ry0, ry1, *q, sx, sy, a, b, t, u, v;
int i, j;
t = vec[0] + PerlinN;
bx0 = (int)t;
bx1 = bx0+1;
rx0 = t - (int)t;
rx1 = rx0 - 1.0f;
t = vec[1] + PerlinN;
by0 = (int)t;
by1 = by0+1;
ry0 = t - (int)t;
ry1 = ry0 - 1.0f;
// If stitching, adjust lattice points accordingly.
if(pStitchInfo != NULL)
{
if(bx0 >= pStitchInfo->nWrapX)
bx0 -= pStitchInfo->nWidth;
if(bx1 >= pStitchInfo->nWrapX)
bx1 -= pStitchInfo->nWidth;
if(by0 >= pStitchInfo->nWrapY)
by0 -= pStitchInfo->nHeight;
if(by1 >= pStitchInfo->nWrapY)
by1 -= pStitchInfo->nHeight;
}
bx0 &= BM;
bx1 &= BM;
by0 &= BM;
by1 &= BM;
i = uLatticeSelector[bx0];
j = uLatticeSelector[bx1];
b00 = uLatticeSelector[i + by0];
b10 = uLatticeSelector[j + by0];
b01 = uLatticeSelector[i + by1];
b11 = uLatticeSelector[j + by1];
sx = double(s_curve(rx0));
sy = double(s_curve(ry0));
q = fGradient[nColorChannel][b00]; u = rx0 * q[0] + ry0 * q[1];
q = fGradient[nColorChannel][b10]; v = rx1 * q[0] + ry0 * q[1];
a = turb_lerp(sx, u, v);
q = fGradient[nColorChannel][b01]; u = rx0 * q[0] + ry1 * q[1];
q = fGradient[nColorChannel][b11]; v = rx1 * q[0] + ry1 * q[1];
b = turb_lerp(sx, u, v);
return turb_lerp(sy, a, b);
}
double FilterTurbulence::turbulence(int nColorChannel, double *point)
{
StitchInfo stitch;
StitchInfo *pStitchInfo = NULL; // Not stitching when NULL.
// Adjust the base frequencies if necessary for stitching.
if(stitchTiles)
{
// When stitching tiled turbulence, the frequencies must be adjusted
// so that the tile borders will be continuous.
if(XbaseFrequency != 0.0)
{
double fLoFreq = double(floor(fTileWidth * XbaseFrequency)) / fTileWidth;
double fHiFreq = double(ceil(fTileWidth * XbaseFrequency)) / fTileWidth;
if(XbaseFrequency / fLoFreq < fHiFreq / XbaseFrequency)
XbaseFrequency = fLoFreq;
else
XbaseFrequency = fHiFreq;
}
if(YbaseFrequency != 0.0)
{
double fLoFreq = double(floor(fTileHeight * YbaseFrequency)) / fTileHeight;
double fHiFreq = double(ceil(fTileHeight * YbaseFrequency)) / fTileHeight;
if(YbaseFrequency / fLoFreq < fHiFreq / YbaseFrequency)
YbaseFrequency = fLoFreq;
else
YbaseFrequency = fHiFreq;
}
// Set up TurbulenceInitial stitch values.
pStitchInfo = &stitch;
stitch.nWidth = int(fTileWidth * XbaseFrequency + 0.5f);
stitch.nWrapX = int(fTileX * XbaseFrequency + PerlinN + stitch.nWidth);
stitch.nHeight = int(fTileHeight * YbaseFrequency + 0.5f);
stitch.nWrapY = int(fTileY * YbaseFrequency + PerlinN + stitch.nHeight);
}
double fSum = 0.0f;
double vec[2];
vec[0] = point[0] * XbaseFrequency;
vec[1] = point[1] * YbaseFrequency;
double ratio = 1;
for(int nOctave = 0; nOctave < numOctaves; nOctave++)
{
if(type==TURBULENCE_FRACTALNOISE)
fSum += double(TurbulenceNoise2(nColorChannel, vec, pStitchInfo) / ratio);
else
fSum += double(fabs(TurbulenceNoise2(nColorChannel, vec, pStitchInfo)) / ratio);
vec[0] *= 2;
vec[1] *= 2;
ratio *= 2;
if(pStitchInfo != NULL)
{
// Update stitch values. Subtracting PerlinN before the multiplication and
// adding it afterward simplifies to subtracting it once.
stitch.nWidth *= 2;
stitch.nWrapX = 2 * stitch.nWrapX - PerlinN;
stitch.nHeight *= 2;
stitch.nWrapY = 2 * stitch.nWrapY - PerlinN;
}
}
return fSum;
}
FilterTraits FilterTurbulence::get_input_traits() {
return TRAIT_PARALLER;
}
} /* namespace Filters */
} /* namespace Inkscape */
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
indent-tabs-mode:nil
fill-column:99
End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :