componenttransfer-funcnode.cpp revision 5fdfb2a8aa9c3fb2d1c7d2f8b183a3643a4bc300
/** \file
* SVG <funcR>, <funcG>, <funcB> and <funcA> implementations.
*/
/*
* Authors:
* Hugo Rodrigues <haa.rodrigues@gmail.com>
* Niko Kiirala <niko@kiirala.com>
* Felipe CorrĂȘa da Silva Sanches <juca@members.fsf.org>
* Abhishek Sharma
*
* Copyright (C) 2006, 2007, 2008 Authors
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <glib.h>
#include "attributes.h"
#include "document.h"
#include "componenttransfer.h"
#include "componenttransfer-funcnode.h"
#include "display/nr-filter-component-transfer.h"
#include "xml/repr.h"
#include "helper-fns.h"
#define SP_MACROS_SILENT
#include "macros.h"
#include "sp-factory.h"
namespace {
SPObject* createFuncR() {
return new SPFeFuncNode(SPFeFuncNode::R);
}
SPObject* createFuncG() {
return new SPFeFuncNode(SPFeFuncNode::G);
}
SPObject* createFuncB() {
return new SPFeFuncNode(SPFeFuncNode::B);
}
SPObject* createFuncA() {
return new SPFeFuncNode(SPFeFuncNode::A);
}
bool funcRRegistered = SPFactory::instance().registerObject("svg:feFuncR", createFuncR);
bool funcGRegistered = SPFactory::instance().registerObject("svg:feFuncG", createFuncG);
bool funcBRegistered = SPFactory::instance().registerObject("svg:feFuncB", createFuncB);
bool funcARegistered = SPFactory::instance().registerObject("svg:feFuncA", createFuncA);
}
/* FeFuncNode class */
SPFeFuncNode::SPFeFuncNode(SPFeFuncNode::Channel channel)
: SPObject(), type(Inkscape::Filters::COMPONENTTRANSFER_TYPE_IDENTITY),
slope(1), intercept(0), amplitude(1), exponent(1), offset(0), channel(channel) {
}
SPFeFuncNode::~SPFeFuncNode() {
}
/**
* Reads the Inkscape::XML::Node, and initializes SPDistantLight variables. For this to get called,
* our name must be associated with a repr via "sp_object_type_register". Best done through
* sp-object-repr.cpp's repr_name_entries array.
*/
void SPFeFuncNode::build(SPDocument *document, Inkscape::XML::Node *repr) {
SPObject::build(document, repr);
//Read values of key attributes from XML nodes into object.
this->readAttr( "type" );
this->readAttr( "tableValues" );
this->readAttr( "slope" );
this->readAttr( "intercept" );
this->readAttr( "amplitude" );
this->readAttr( "exponent" );
this->readAttr( "offset" );
//is this necessary?
document->addResource("fefuncnode", this); //maybe feFuncR, fefuncG, feFuncB and fefuncA ?
}
/**
* Drops any allocated memory.
*/
void SPFeFuncNode::release() {
if ( this->document ) {
// Unregister ourselves
this->document->removeResource("fefuncnode", this);
}
//TODO: release resources here
}
static Inkscape::Filters::FilterComponentTransferType sp_feComponenttransfer_read_type(gchar const *value){
if (!value) {
return Inkscape::Filters::COMPONENTTRANSFER_TYPE_ERROR; //type attribute is REQUIRED.
}
switch(value[0]){
case 'i':
if (strncmp(value, "identity", 8) == 0) {
return Inkscape::Filters::COMPONENTTRANSFER_TYPE_IDENTITY;
}
break;
case 't':
if (strncmp(value, "table", 5) == 0) {
return Inkscape::Filters::COMPONENTTRANSFER_TYPE_TABLE;
}
break;
case 'd':
if (strncmp(value, "discrete", 8) == 0) {
return Inkscape::Filters::COMPONENTTRANSFER_TYPE_DISCRETE;
}
break;
case 'l':
if (strncmp(value, "linear", 6) == 0) {
return Inkscape::Filters::COMPONENTTRANSFER_TYPE_LINEAR;
}
break;
case 'g':
if (strncmp(value, "gamma", 5) == 0) {
return Inkscape::Filters::COMPONENTTRANSFER_TYPE_GAMMA;
}
break;
}
return Inkscape::Filters::COMPONENTTRANSFER_TYPE_ERROR; //type attribute is REQUIRED.
}
/**
* Sets a specific value in the SPFeFuncNode.
*/
void SPFeFuncNode::set(unsigned int key, gchar const *value) {
Inkscape::Filters::FilterComponentTransferType type;
double read_num;
switch(key) {
case SP_ATTR_TYPE:
type = sp_feComponenttransfer_read_type(value);
if(type != this->type) {
this->type = type;
this->parent->requestModified(SP_OBJECT_MODIFIED_FLAG);
}
break;
case SP_ATTR_TABLEVALUES:
if (value){
this->tableValues = helperfns_read_vector(value);
this->parent->requestModified(SP_OBJECT_MODIFIED_FLAG);
}
break;
case SP_ATTR_SLOPE:
read_num = value ? helperfns_read_number(value) : 1;
if (read_num != this->slope) {
this->slope = read_num;
this->parent->requestModified(SP_OBJECT_MODIFIED_FLAG);
}
break;
case SP_ATTR_INTERCEPT:
read_num = value ? helperfns_read_number(value) : 0;
if (read_num != this->intercept) {
this->intercept = read_num;
this->parent->requestModified(SP_OBJECT_MODIFIED_FLAG);
}
break;
case SP_ATTR_AMPLITUDE:
read_num = value ? helperfns_read_number(value) : 1;
if (read_num != this->amplitude) {
this->amplitude = read_num;
this->parent->requestModified(SP_OBJECT_MODIFIED_FLAG);
}
break;
case SP_ATTR_EXPONENT:
read_num = value ? helperfns_read_number(value) : 1;
if (read_num != this->exponent) {
this->exponent = read_num;
this->parent->requestModified(SP_OBJECT_MODIFIED_FLAG);
}
break;
case SP_ATTR_OFFSET:
read_num = value ? helperfns_read_number(value) : 0;
if (read_num != this->offset) {
this->offset = read_num;
this->parent->requestModified(SP_OBJECT_MODIFIED_FLAG);
}
break;
default:
SPObject::set(key, value);
break;
}
}
/**
* Receives update notifications.
*/
void SPFeFuncNode::update(SPCtx *ctx, guint flags) {
std::cout << "SPFeFuncNode::update" << std::endl;
if (flags & SP_OBJECT_MODIFIED_FLAG) {
this->readAttr( "type" );
this->readAttr( "tableValues" );
this->readAttr( "slope" );
this->readAttr( "intercept" );
this->readAttr( "amplitude" );
this->readAttr( "exponent" );
this->readAttr( "offset" );
}
SPObject::update(ctx, flags);
}
/**
* Writes its settings to an incoming repr object, if any.
*/
Inkscape::XML::Node* SPFeFuncNode::write(Inkscape::XML::Document *doc, Inkscape::XML::Node *repr, guint flags) {
std::cout << "SPFeFuncNode::write" << std::endl;
if (!repr) {
repr = this->getRepr()->duplicate(doc);
}
SPObject::write(doc, repr, flags);
return repr;
}
/*
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:fileencoding=utf-8:textwidth=99 :