Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Predicates1D.h « stroke « intern « freestyle « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 05fc043822f310df5094ba3cee2623107b8bfd4a (plain)
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
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
/*
 * ***** BEGIN GPL LICENSE BLOCK *****
 *
 * 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.
 *
 * ***** END GPL LICENSE BLOCK *****
 */

#ifndef __FREESTYLE_PREDICATES_1D_H__
#define __FREESTYLE_PREDICATES_1D_H__

/** \file blender/freestyle/intern/stroke/Predicates1D.h
 *  \ingroup freestyle
 *  \brief Class gathering stroke creation algorithms
 *  \author Stephane Grabli
 *  \author Emmanuel Turquin
 *  \date 01/07/2003
 */

#include <string>

#include "AdvancedFunctions1D.h"

#include "../system/TimeStamp.h"

#include "../view_map/Interface1D.h"
#include "../view_map/Functions1D.h"

#ifdef WITH_CXX_GUARDEDALLOC
#include "MEM_guardedalloc.h"
#endif

namespace Freestyle {

//
// UnaryPredicate1D (base class for predicates in 1D)
//
///////////////////////////////////////////////////////////

/*! Base class for Unary Predicates that work on Interface1D.
 *  A UnaryPredicate1D is a functor that evaluates a condition on a Interface1D and returns
 *  true or false depending on whether this condition is satisfied or not.
 *  The UnaryPredicate1D is used by calling its () operator.
 *  Any inherited class must overload the () operator.
 */
class UnaryPredicate1D
{
public:
	bool result;
	void *py_up1D;

	/*! Default constructor. */
	UnaryPredicate1D()
	{
		py_up1D = NULL;
	}

	/*! Destructor. */
	virtual ~UnaryPredicate1D() {}

	/*! Returns the string of the name of the UnaryPredicate1D. */
	virtual string getName() const
	{
		return "UnaryPredicate1D";
	}

	/*! The () operator. Must be overload by inherited classes.
	 *  \param inter
	 *    The Interface1D on  which we wish to evaluate the predicate.
	 *  \return true if the condition is satisfied, false otherwise.
	 */
	virtual int operator()(Interface1D& inter);

#ifdef WITH_CXX_GUARDEDALLOC
	MEM_CXX_CLASS_ALLOC_FUNCS("Freestyle:UnaryPredicate1D")
#endif
};


//
// BinaryPredicate1D (base class for predicates in 1D)
//
///////////////////////////////////////////////////////////

/*! Base class for Binary Predicates working on Interface1D.
 *  A BinaryPredicate1D is typically an ordering relation between two Interface1D.
 *  It evaluates a relation between 2 Interface1D and returns true or false.
 *  It is used by calling the () operator.
 */
class BinaryPredicate1D
{
public:
	bool result;
	void *py_bp1D;

	/*! Default constructor. */
	BinaryPredicate1D()
	{
		py_bp1D = NULL;
	}

	/*! Destructor. */
	virtual ~BinaryPredicate1D() {}

	/*! Returns the string of the name of the binary predicate. */
	virtual string getName() const
	{
		return "BinaryPredicate1D";
	}

	/*! The () operator. Must be overload by inherited classes.
	 *  It evaluates a relation between 2 Interface1D.
	 *  \param inter1
	 *    The first Interface1D.
	 *  \param inter2
	 *    The second Interface1D.
	 *  \return true or false.
	 */
	virtual int operator()(Interface1D& inter1, Interface1D& inter2);

#ifdef WITH_CXX_GUARDEDALLOC
	MEM_CXX_CLASS_ALLOC_FUNCS("Freestyle:BinaryPredicate1D")
#endif
};


//
// Predicates definitions
//
///////////////////////////////////////////////////////////

namespace Predicates1D {

// TrueUP1D
/*! Returns true */
class TrueUP1D : public UnaryPredicate1D
{
public:
	/*! Constructor */
	TrueUP1D() {}

	/*! Returns the string "TrueUP1D"*/
	string getName() const
	{
		return "TrueUP1D";
	}

	/*! the () operator */
	int operator()(Interface1D&)
	{
		result = true;
		return 0;
	}
};

// FalseUP1D
/*! Returns false */
class FalseUP1D : public UnaryPredicate1D
{
public:
	/*! Constructor */
	FalseUP1D() {}

	/*! Returns the string "FalseUP1D"*/
	string getName() const
	{
		return "FalseUP1D";
	}

	/*! the () operator */
	int operator()(Interface1D&)
	{
		result = false;
		return 0;
	}
};

// QuantitativeInvisibilityUP1D
/*! Returns true if the Quantitative Invisibility evaluated at an Interface1D, using the QuantitativeInvisibilityF1D
 *  functor, equals a certain user-defined value.
 */
class QuantitativeInvisibilityUP1D : public UnaryPredicate1D
{
public:
	/*! Builds the Predicate.
	 *  \param qi
	 *    The Quantitative Invisibility you want the Interface1D to have
	 */
	QuantitativeInvisibilityUP1D(unsigned qi = 0) : _qi(qi) {}

	/*! Returns the string "QuantitativeInvisibilityUP1D" */
	string getName() const
	{
		return "QuantitativeInvisibilityUP1D";
	}

	/*! the () operator */
	int operator()(Interface1D& inter)
	{
		Functions1D::QuantitativeInvisibilityF1D func;
		if (func(inter) < 0)
			return -1;
		result = (func.result == _qi);
		return 0;
	}

private:
	unsigned _qi;
};

// ContourUP1D
/*! Returns true if the Interface1D is a contour.
 *  An Interface1D is a contour if it is borded by a different shape on each of its sides.
 */
class ContourUP1D : public UnaryPredicate1D
{
private:
	Functions1D::CurveNatureF1D _getNature;

public:
	/*! Returns the string "ContourUP1D"*/
	string getName() const
	{
		return "ContourUP1D";
	}

	/*! The () operator. */
	int operator()(Interface1D& inter)
	{
		if (_getNature(inter) < 0)
			return -1;
		if ((_getNature.result & Nature::SILHOUETTE) || (_getNature.result & Nature::BORDER)) {
			Interface0DIterator it = inter.verticesBegin();
			for (; !it.isEnd(); ++it) {
				if (Functions0D::getOccludeeF0D(it) != Functions0D::getShapeF0D(it)) {
					result = true;
					return 0;
				}
			}
		}
		result = false;
		return 0;
	}
};

// ExternalContourUP1D
/*! Returns true if the Interface1D is an external contour.
 *  An Interface1D is an external contour if it is borded by no shape on one of its sides.
 */
class ExternalContourUP1D : public UnaryPredicate1D
{
private:
	Functions1D::CurveNatureF1D _getNature;

public:
	/*! Returns the string "ExternalContourUP1D" */
	string getName() const
	{
		return "ExternalContourUP1D";
	}

	/*! The () operator. */
	int operator()(Interface1D& inter)
	{
		if (_getNature(inter) < 0)
			return -1;
		if ((_getNature.result & Nature::SILHOUETTE) || (_getNature.result & Nature::BORDER)) {
			set<ViewShape*> occluded;
			Functions1D::getOccludeeF1D(inter, occluded);
			for (set<ViewShape*>::iterator os = occluded.begin(), osend = occluded.end(); os != osend; ++os) {
				if ((*os) == 0) {
					result = true;
					return 0;
				}
			}
		}
		result = false;
		return 0;
	}
};

// EqualToTimeStampUP1D
/*! Returns true if the Interface1D's time stamp is equal to a certain user-defined value. */
class EqualToTimeStampUP1D : public UnaryPredicate1D
{
protected:
	unsigned _timeStamp;

public:
	EqualToTimeStampUP1D(unsigned ts) : UnaryPredicate1D()
	{
		_timeStamp = ts;
	}

	/*! Returns the string "EqualToTimeStampUP1D"*/
	string getName() const
	{
		return "EqualToTimeStampUP1D";
	}

	/*! The () operator. */
	int operator()(Interface1D& inter)
	{
		result = (inter.getTimeStamp() == _timeStamp);
		return 0;
	}
};

// EqualToChainingTimeStampUP1D
/*! Returns true if the Interface1D's time stamp is equal to a certain user-defined value. */
class EqualToChainingTimeStampUP1D : public UnaryPredicate1D
{
protected:
	unsigned _timeStamp;

public:
	EqualToChainingTimeStampUP1D(unsigned ts) : UnaryPredicate1D()
	{
		_timeStamp = ts;
	}

	/*! Returns the string "EqualToChainingTimeStampUP1D"*/
	string getName() const
	{
		return "EqualToChainingTimeStampUP1D";
	}

	/*! The () operator. */
	int operator()(Interface1D& inter)
	{
		ViewEdge *edge = dynamic_cast<ViewEdge*>(&inter);
		if (!edge) {
			result = false;
			return 0;
		}
		result = (edge->getChainingTimeStamp() >= _timeStamp);
		return 0;
	}
};

// ShapeUP1D
/*! Returns true if the shape to which the Interface1D belongs to has the same Id as the one specified by the user. */
class ShapeUP1D: public UnaryPredicate1D
{
private:
	Id _id;

public:
	/*! Builds the Predicate.
	 *  \param idFirst
	 *    The first Id component.
	 *  \param idSecond
	 *    The second Id component.
	 */
	ShapeUP1D(unsigned idFirst, unsigned idSecond = 0) : UnaryPredicate1D()
	{
		_id = Id(idFirst, idSecond);
	}

	/*! Returns the string "ShapeUP1D"*/
	string getName() const
	{
		return "ShapeUP1D";
	}

	/*! The () operator. */
	int operator()(Interface1D& inter)
	{
		set<ViewShape*> shapes;
		Functions1D::getShapeF1D(inter, shapes);
		for (set<ViewShape*>::iterator s = shapes.begin(), send = shapes.end(); s != send; ++s) {
			if ((*s)->getId() == _id) {
				result = true;
				return 0;
			}
		}
		result = false;
		return 0;
	}
};

// WithinImageBoundaryUP1D
/*! Returns true if the Interface1D is (partly) within the image boundary. */
class WithinImageBoundaryUP1D: public UnaryPredicate1D
{
private:
	real _xmin, _ymin, _xmax, _ymax;

public:
	/*! Builds the Predicate.
	 *  \param xmin
	 *    The X lower bound of the image boundary.
	 *  \param ymin
	 *    The Y lower bound of the image boundary.
	 *  \param xmax
	 *    The X upper bound of the image boundary.
	 *  \param ymax
	 *    The Y upper bound of the image boundary.
	 */
	WithinImageBoundaryUP1D(const real xmin, const real ymin, const real xmax, const real ymax)
	: _xmin(xmin), _ymin(ymin), _xmax(xmax), _ymax(ymax)
	{
	}

	/*! Returns the string "WithinImageBoundaryUP1D" */
	string getName() const
	{
		return "WithinImageBoundaryUP1D";
	}

	/*! The () operator. */
	int operator()(Interface1D& inter)
	{
		// 1st pass: check if a point is within the image boundary.
		Interface0DIterator it = inter.verticesBegin(), itend = inter.verticesEnd();
		for (; it != itend; ++it) {
			real x = (*it).getProjectedX();
			real y = (*it).getProjectedY();
			if (_xmin <= x && x <= _xmax && _ymin <= y && y <= _ymax) {
				result = true;
				return 0;
			}
		}
		// 2nd pass: check if a line segment intersects with the image boundary.
		it = inter.verticesBegin();
		if (it != itend) {
			Vec2r pmin(_xmin, _ymin);
			Vec2r pmax(_xmax, _ymax);
			Vec2r prev((*it).getPoint2D());
			++it;
			for (; it != itend; ++it) {
				Vec2r p((*it).getPoint2D());
				if (GeomUtils::intersect2dSeg2dArea (pmin, pmax, prev, p)) {
					result = true;
					return 0;
				}
				prev = p;
			}
		}
		result = false;
		return 0;
	}
};

//
//   Binary Predicates definitions
//
///////////////////////////////////////////////////////////

// TrueBP1D
/*! Returns true. */
class TrueBP1D : public BinaryPredicate1D
{
public:
	/*! Returns the string "TrueBP1D" */
	string getName() const
	{
		return "TrueBP1D";
	}

	/*! The () operator. */
	int operator()(Interface1D& /*i1*/, Interface1D& /*i2*/)
	{
		result = true;
		return 0;
	}
};

// FalseBP1D
/*! Returns false. */
class FalseBP1D : public BinaryPredicate1D
{
public:
	/*! Returns the string "FalseBP1D" */
	string getName() const
	{
		return "FalseBP1D";
	}

	/*! The () operator. */
	int operator()(Interface1D& /*i1*/, Interface1D& /*i2*/)
	{
		result = false;
		return 0;
	}
};

// Length2DBP1D
/*! Returns true if the 2D length of the Interface1D i1 is less than the 2D length of the Interface1D i2. */
class Length2DBP1D : public BinaryPredicate1D
{
public:
	/*! Returns the string "Length2DBP1D" */
	string getName() const
	{
		return "Length2DBP1D";
	}

	/*! The () operator. */
	int operator()(Interface1D& i1, Interface1D& i2)
	{
		result = (i1.getLength2D() > i2.getLength2D());
		return 0;
	}
};

// SameShapeIdBP1D
/*! Returns true if the Interface1D i1 and i2 belong to the same shape. */
class SameShapeIdBP1D : public BinaryPredicate1D
{
public:
	/*! Returns the string "SameShapeIdBP1D" */
	string getName() const
	{
		return "SameShapeIdBP1D";
	}

	/*! The () operator. */
	int operator()(Interface1D& i1, Interface1D& i2)
	{
		set<ViewShape*> shapes1;
		Functions1D::getShapeF1D(i1, shapes1);
		set<ViewShape*> shapes2;
		Functions1D::getShapeF1D(i2, shapes2);
		// FIXME:// n2 algo, can do better...
		for (set<ViewShape*>::iterator s = shapes1.begin(), send = shapes1.end(); s != send; ++s) {
			Id current = (*s)->getId();
			for (set<ViewShape*>::iterator s2 = shapes2.begin(), s2end = shapes2.end(); s2 != s2end; ++s2) {
				if ((*s2)->getId() == current) {
					result = true;
					return 0;
				}
			}
		}
		result = false;
		return 0;
	}
};

// ViewMapGradientNormBP1D
/*! Returns true if the evaluation of the Gradient norm Function is higher for Interface1D i1 than for i2. */
class ViewMapGradientNormBP1D : public BinaryPredicate1D
{
private:
	Functions1D::GetViewMapGradientNormF1D _func;

public:
	ViewMapGradientNormBP1D(int level, IntegrationType iType = MEAN, float sampling = 2.0)
	: BinaryPredicate1D(), _func(level, iType, sampling)
	{
	}

	/*! Returns the string "ViewMapGradientNormBP1D" */
	string getName() const
	{
		return "ViewMapGradientNormBP1D";
	}

	/*! The () operator. */
	int operator()(Interface1D& i1, Interface1D& i2)
	{
		if (_func(i1) < 0)
			return -1;
		real n1 = _func.result;
		if (_func(i2) < 0)
			return -1;
		real n2 = _func.result;
		result = (n1 > n2);
		return 0;
	}
};

} // end of namespace Predicates1D

} /* namespace Freestyle */

#endif // __FREESTYLE_PREDICATES_1D_H__