1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
|
/** \file
* Superclass for all the filter primitives
*
*/
/*
* Authors:
* Kees Cook <kees@outflux.net>
* Niko Kiirala <niko@kiirala.com>
* Abhishek Sharma
*
* Copyright (C) 2004-2007 Authors
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <string.h>
#include "attributes.h"
#include "style.h"
#include "sp-filter-primitive.h"
#include "xml/repr.h"
#include "sp-filter.h"
#include "display/nr-filter-primitive.h"
#include "display/nr-filter-types.h"
/* FilterPrimitive base class */
static void sp_filter_primitive_class_init(SPFilterPrimitiveClass *klass);
static void sp_filter_primitive_init(SPFilterPrimitive *filter_primitive);
static void sp_filter_primitive_build(SPObject *object, SPDocument *document, Inkscape::XML::Node *repr);
static void sp_filter_primitive_release(SPObject *object);
static void sp_filter_primitive_set(SPObject *object, unsigned int key, gchar const *value);
static void sp_filter_primitive_update(SPObject *object, SPCtx *ctx, guint flags);
static Inkscape::XML::Node *sp_filter_primitive_write(SPObject *object, Inkscape::XML::Document *doc, Inkscape::XML::Node *repr, guint flags);
static SPObjectClass *filter_primitive_parent_class;
GType sp_filter_primitive_get_type()
{
static GType filter_primitive_type = 0;
if (!filter_primitive_type) {
GTypeInfo filter_primitive_info = {
sizeof(SPFilterPrimitiveClass),
NULL, NULL,
(GClassInitFunc) sp_filter_primitive_class_init,
NULL, NULL,
sizeof(SPFilterPrimitive),
16,
(GInstanceInitFunc) sp_filter_primitive_init,
NULL, /* value_table */
};
filter_primitive_type = g_type_register_static(SP_TYPE_OBJECT, "SPFilterPrimitive", &filter_primitive_info, (GTypeFlags)0);
}
return filter_primitive_type;
}
static void sp_filter_primitive_class_init(SPFilterPrimitiveClass *klass)
{
SPObjectClass *sp_object_class = (SPObjectClass *)(klass);
filter_primitive_parent_class = static_cast<SPObjectClass *>(g_type_class_peek_parent(klass));
sp_object_class->build = sp_filter_primitive_build;
sp_object_class->release = sp_filter_primitive_release;
sp_object_class->write = sp_filter_primitive_write;
sp_object_class->set = sp_filter_primitive_set;
sp_object_class->update = sp_filter_primitive_update;
/* This should never be called on this base class, but only on derived
* classes. */
klass->build_renderer = NULL;
}
static void sp_filter_primitive_init(SPFilterPrimitive *filter_primitive)
{
filter_primitive->image_in = Inkscape::Filters::NR_FILTER_SLOT_NOT_SET;
filter_primitive->image_out = Inkscape::Filters::NR_FILTER_SLOT_NOT_SET;
// We must keep track if a value is set or not, if not set then the region defaults to 0%, 0%,
// 100%, 100% ("x", "y", "width", "height") of the -> filter <- region. If set then
// percentages are in terms of bounding box or viewbox, depending on value of "primitiveUnits"
// NB: SVGLength.set takes prescaled percent values: 1 means 100%
filter_primitive->x.unset(SVGLength::PERCENT, 0, 0);
filter_primitive->y.unset(SVGLength::PERCENT, 0, 0);
filter_primitive->width.unset(SVGLength::PERCENT, 1, 0);
filter_primitive->height.unset(SVGLength::PERCENT, 1, 0);
}
/**
* Reads the Inkscape::XML::Node, and initializes SPFilterPrimitive 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.
*/
static void
sp_filter_primitive_build(SPObject *object, SPDocument *document, Inkscape::XML::Node *repr)
{
object->readAttr( "style" ); // struct not derived from SPItem, we need to do this ourselves.
object->readAttr( "in" );
object->readAttr( "result" );
object->readAttr( "x" );
object->readAttr( "y" );
object->readAttr( "width" );
object->readAttr( "height" );
if ((static_cast<SPObjectClass *>(filter_primitive_parent_class))->build) {
(static_cast<SPObjectClass *>(filter_primitive_parent_class))->build(object, document, repr);
}
}
/**
* Drops any allocated memory.
*/
static void sp_filter_primitive_release(SPObject *object)
{
/* deal with our children and our selves here */
if ((static_cast<SPObjectClass *>(filter_primitive_parent_class))->release)
(static_cast<SPObjectClass *>(filter_primitive_parent_class))->release(object);
}
/**
* Sets a specific value in the SPFilterPrimitive.
*/
static void
sp_filter_primitive_set(SPObject *object, unsigned int key, gchar const *value)
{
SPFilterPrimitive *filter_primitive = SP_FILTER_PRIMITIVE(object);
(void)filter_primitive;
int image_nr;
switch (key) {
case SP_ATTR_IN:
if (value) {
image_nr = sp_filter_primitive_read_in(filter_primitive, value);
} else {
image_nr = Inkscape::Filters::NR_FILTER_SLOT_NOT_SET;
}
if (image_nr != filter_primitive->image_in) {
filter_primitive->image_in = image_nr;
object->parent->requestModified(SP_OBJECT_MODIFIED_FLAG);
}
break;
case SP_ATTR_RESULT:
if (value) {
image_nr = sp_filter_primitive_read_result(filter_primitive, value);
} else {
image_nr = Inkscape::Filters::NR_FILTER_SLOT_NOT_SET;
}
if (image_nr != filter_primitive->image_out) {
filter_primitive->image_out = image_nr;
object->parent->requestModified(SP_OBJECT_MODIFIED_FLAG);
}
break;
/* Filter primitive sub-region */
case SP_ATTR_X:
filter_primitive->x.readOrUnset(value);
object->requestModified(SP_OBJECT_MODIFIED_FLAG);
break;
case SP_ATTR_Y:
filter_primitive->y.readOrUnset(value);
object->requestModified(SP_OBJECT_MODIFIED_FLAG);
break;
case SP_ATTR_WIDTH:
filter_primitive->width.readOrUnset(value);
object->requestModified(SP_OBJECT_MODIFIED_FLAG);
break;
case SP_ATTR_HEIGHT:
filter_primitive->height.readOrUnset(value);
object->requestModified(SP_OBJECT_MODIFIED_FLAG);
break;
}
/* See if any parents need this value. */
if (((SPObjectClass *) filter_primitive_parent_class)->set) {
((SPObjectClass *) filter_primitive_parent_class)->set(object, key, value);
}
}
/**
* Receives update notifications.
*/
static void
sp_filter_primitive_update(SPObject *object, SPCtx *ctx, guint flags)
{
//SPFilterPrimitive *filter_primitive = SP_FILTER_PRIMITIVE(object);
// Is this required?
if (flags & SP_OBJECT_MODIFIED_FLAG) {
object->readAttr( "style" );
object->readAttr( "in" );
object->readAttr( "result" );
object->readAttr( "x" );
object->readAttr( "y" );
object->readAttr( "width" );
object->readAttr( "height" );
}
if (((SPObjectClass *) filter_primitive_parent_class)->update) {
((SPObjectClass *) filter_primitive_parent_class)->update(object, ctx, flags);
}
}
/**
* Writes its settings to an incoming repr object, if any.
*/
static Inkscape::XML::Node *
sp_filter_primitive_write(SPObject *object, Inkscape::XML::Document *doc, Inkscape::XML::Node *repr, guint flags)
{
SPFilterPrimitive *prim = SP_FILTER_PRIMITIVE(object);
SPFilter *parent = SP_FILTER(object->parent);
if (!repr) {
repr = object->getRepr()->duplicate(doc);
}
gchar const *in_name = sp_filter_name_for_image(parent, prim->image_in);
repr->setAttribute("in", in_name);
gchar const *out_name = sp_filter_name_for_image(parent, prim->image_out);
repr->setAttribute("result", out_name);
/* Do we need to add x,y,width,height? */
if (((SPObjectClass *) filter_primitive_parent_class)->write) {
((SPObjectClass *) filter_primitive_parent_class)->write(object, doc, repr, flags);
}
return repr;
}
int sp_filter_primitive_read_in(SPFilterPrimitive *prim, gchar const *name)
{
if (!name) return Inkscape::Filters::NR_FILTER_SLOT_NOT_SET;
// TODO: are these case sensitive or not? (assumed yes)
switch (name[0]) {
case 'S':
if (strcmp(name, "SourceGraphic") == 0)
return Inkscape::Filters::NR_FILTER_SOURCEGRAPHIC;
if (strcmp(name, "SourceAlpha") == 0)
return Inkscape::Filters::NR_FILTER_SOURCEALPHA;
if (strcmp(name, "StrokePaint") == 0)
return Inkscape::Filters::NR_FILTER_STROKEPAINT;
break;
case 'B':
if (strcmp(name, "BackgroundImage") == 0)
return Inkscape::Filters::NR_FILTER_BACKGROUNDIMAGE;
if (strcmp(name, "BackgroundAlpha") == 0)
return Inkscape::Filters::NR_FILTER_BACKGROUNDALPHA;
break;
case 'F':
if (strcmp(name, "FillPaint") == 0)
return Inkscape::Filters::NR_FILTER_FILLPAINT;
break;
}
SPFilter *parent = SP_FILTER(prim->parent);
int ret = sp_filter_get_image_name(parent, name);
if (ret >= 0) return ret;
return Inkscape::Filters::NR_FILTER_SLOT_NOT_SET;
}
int sp_filter_primitive_read_result(SPFilterPrimitive *prim, gchar const *name)
{
SPFilter *parent = SP_FILTER(prim->parent);
int ret = sp_filter_get_image_name(parent, name);
if (ret >= 0) return ret;
ret = sp_filter_set_image_name(parent, name);
if (ret >= 0) return ret;
return Inkscape::Filters::NR_FILTER_SLOT_NOT_SET;
}
/**
* Gives name for output of previous filter. Makes things clearer when prim
* is a filter with two or more inputs. Returns the slot number of result
* of previous primitive, or NR_FILTER_SOURCEGRAPHIC if this is the first
* primitive.
*/
int sp_filter_primitive_name_previous_out(SPFilterPrimitive *prim) {
SPFilter *parent = SP_FILTER(prim->parent);
SPObject *i = parent->children;
while (i && i->next != prim) i = i->next;
if (i) {
SPFilterPrimitive *i_prim = SP_FILTER_PRIMITIVE(i);
if (i_prim->image_out < 0) {
Glib::ustring name = sp_filter_get_new_result_name(parent);
int slot = sp_filter_set_image_name(parent, name.c_str());
i_prim->image_out = slot;
//XML Tree is being directly used while it shouldn't be.
i_prim->getRepr()->setAttribute("result", name.c_str());
return slot;
} else {
return i_prim->image_out;
}
}
return Inkscape::Filters::NR_FILTER_SOURCEGRAPHIC;
}
/* Common initialization for filter primitives */
void sp_filter_primitive_renderer_common(SPFilterPrimitive *sp_prim, Inkscape::Filters::FilterPrimitive *nr_prim)
{
g_assert(sp_prim != NULL);
g_assert(nr_prim != NULL);
nr_prim->set_input(sp_prim->image_in);
nr_prim->set_output(sp_prim->image_out);
/* TODO: place here code to handle input images, filter area etc. */
nr_prim->set_subregion( sp_prim->x, sp_prim->y, sp_prim->width, sp_prim->height );
// Give renderer access to filter properties
nr_prim->setStyle( sp_prim->style );
}
/*
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 :
|