Project

General

Profile

Download (31.2 KB) Statistics
| Branch: | Revision:

library / src / main / java / org / distorted / library / DistortedEffectQueues.java @ 7cf783cb

1
///////////////////////////////////////////////////////////////////////////////////////////////////
2
// Copyright 2016 Leszek Koltunski                                                               //
3
//                                                                                               //
4
// This file is part of Distorted.                                                               //
5
//                                                                                               //
6
// Distorted is free software: you can redistribute it and/or modify                             //
7
// it under the terms of the GNU General Public License as published by                          //
8
// the Free Software Foundation, either version 2 of the License, or                             //
9
// (at your option) any later version.                                                           //
10
//                                                                                               //
11
// Distorted is distributed in the hope that it will be useful,                                  //
12
// but WITHOUT ANY WARRANTY; without even the implied warranty of                                //
13
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                                 //
14
// GNU General Public License for more details.                                                  //
15
//                                                                                               //
16
// You should have received a copy of the GNU General Public License                             //
17
// along with Distorted.  If not, see <http://www.gnu.org/licenses/>.                            //
18
///////////////////////////////////////////////////////////////////////////////////////////////////
19

    
20
package org.distorted.library;
21

    
22
import android.opengl.GLES20;
23

    
24
import org.distorted.library.message.EffectListener;
25
import org.distorted.library.type.Data1D;
26
import org.distorted.library.type.Data2D;
27
import org.distorted.library.type.Data3D;
28
import org.distorted.library.type.Data4D;
29
import org.distorted.library.type.Data5D;
30
import org.distorted.library.type.Static3D;
31

    
32
///////////////////////////////////////////////////////////////////////////////////////////////////
33
/**
34
 * Class containing {@link EffectTypes#LENGTH} queues, each a class derived from EffectQueue.
35
 * <p>
36
 * The queues hold actual effects to be applied to a given (DistortedTexture,GridObject) combo.
37
 */
38
public class DistortedEffectQueues
39
  {
40
  private static long mNextID =0;
41
  private long mID;
42

    
43
  private EffectQueueMatrix    mM;
44
  private EffectQueueFragment  mF;
45
  private EffectQueueVertex    mV;
46

    
47
  private boolean matrixCloned, vertexCloned, fragmentCloned;
48

    
49
///////////////////////////////////////////////////////////////////////////////////////////////////
50
    
51
  private void initializeEffectLists(DistortedEffectQueues d, int flags)
52
    {
53
    if( (flags & Distorted.CLONE_MATRIX) != 0 )
54
      {
55
      mM = d.mM;
56
      matrixCloned = true;
57
      }
58
    else
59
      {
60
      mM = new EffectQueueMatrix(mID);
61
      matrixCloned = false;
62
      }
63
    
64
    if( (flags & Distorted.CLONE_VERTEX) != 0 )
65
      {
66
      mV = d.mV;
67
      vertexCloned = true;
68
      }
69
    else
70
      {
71
      mV = new EffectQueueVertex(mID);
72
      vertexCloned = false;
73
      }
74
    
75
    if( (flags & Distorted.CLONE_FRAGMENT) != 0 )
76
      {
77
      mF = d.mF;
78
      fragmentCloned = true;
79
      }
80
    else
81
      {
82
      mF = new EffectQueueFragment(mID);
83
      fragmentCloned = false;
84
      }
85
    }
86

    
87
///////////////////////////////////////////////////////////////////////////////////////////////////
88
   
89
  void drawPriv(long currTime, DistortedTexture tex, GridObject grid, DistortedFramebuffer df)
90
    {
91
    GLES20.glViewport(0, 0, df.mWidth, df.mHeight);
92

    
93
    float halfZ = tex.mHalfX*grid.zFactor;
94

    
95
    mM.compute(currTime);
96
    mM.send(df,tex.mHalfX,tex.mHalfY,halfZ);
97
      
98
    mV.compute(currTime);
99
    mV.send(tex.mHalfX,tex.mHalfY,halfZ);
100
        
101
    mF.compute(currTime);
102
    mF.send(tex.mHalfX,tex.mHalfY);
103

    
104
    grid.draw();
105
    }
106

    
107
///////////////////////////////////////////////////////////////////////////////////////////////////
108
   
109
  void drawNoEffectsPriv(DistortedTexture tex, GridObject grid, DistortedFramebuffer df)
110
    {
111
    GLES20.glViewport(0, 0, df.mWidth, df.mHeight);
112

    
113
    mM.sendZero(df,tex.mHalfX,tex.mHalfY,tex.mHalfX*grid.zFactor);
114
    mV.sendZero();
115
    mF.sendZero();
116

    
117
    grid.draw();
118
    }
119
    
120
///////////////////////////////////////////////////////////////////////////////////////////////////
121
   
122
  private void releasePriv()
123
    {
124
    if( !matrixCloned  ) mM.abortAll(false);
125
    if( !vertexCloned  ) mV.abortAll(false);
126
    if( !fragmentCloned) mF.abortAll(false);
127

    
128
    mM = null;
129
    mV = null;
130
    mF = null;
131
    }
132

    
133
///////////////////////////////////////////////////////////////////////////////////////////////////
134

    
135
  static void onDestroy()
136
    {
137
    mNextID = 0;
138
    }
139

    
140
///////////////////////////////////////////////////////////////////////////////////////////////////
141
// PUBLIC API
142
///////////////////////////////////////////////////////////////////////////////////////////////////
143
/**
144
 * Create empty effect queue.
145
 */
146
  public DistortedEffectQueues()
147
    {
148
    mID = mNextID++;
149
    initializeEffectLists(this,0);
150
    }
151

    
152
///////////////////////////////////////////////////////////////////////////////////////////////////
153
/**
154
 * Copy constructor.
155
 * <p>
156
 * Whatever we do not clone gets created just like in the default constructor.
157
 * We only call this from the descendant's classes' constructors where we have to pay attention
158
 * to give it the appropriate type of a DistortedObject!
159
 *
160
 * @param dc    Source object to create our object from
161
 * @param flags A bitmask of values specifying what to copy.
162
 *              For example, CLONE_VERTEX | CLONE_MATRIX.
163
 */
164
  public DistortedEffectQueues(DistortedEffectQueues dc, int flags)
165
    {
166
    mID = mNextID++;
167
    initializeEffectLists(dc,flags);
168
    }
169

    
170
///////////////////////////////////////////////////////////////////////////////////////////////////
171
/**
172
 * Draw the DistortedObject to the location specified by current Matrix effects.    
173
 * <p>
174
 * Must be called from a thread holding OpenGL Context
175
 *
176
 * @param currTime current time, in milliseconds.
177
 *        This gets passed on to Dynamics inside the Effects that are currently applied to the
178
 *        Object.
179
 */
180
  public void draw(long currTime, DistortedTexture tex, GridObject grid)
181
    {
182
    tex.createTexture();
183
    GLES20.glBindFramebuffer(GLES20.GL_FRAMEBUFFER, 0);
184
    GLES20.glBindTexture(GLES20.GL_TEXTURE_2D, tex.mTextureDataH[0]);
185
    drawPriv(currTime, tex, grid, Distorted.mFramebuffer);
186
    DistortedFramebuffer.deleteAllMarked();
187
    DistortedTexture.deleteAllMarked();
188
    }
189

    
190
///////////////////////////////////////////////////////////////////////////////////////////////////
191
/**
192
 * Draw the DistortedObject to the Framebuffer passed.
193
 * <p>
194
 * Must be called from a thread holding OpenGL Context
195
 *
196
 * @param currTime Current time, in milliseconds.
197
 * @param df       Framebuffer to render this to.
198
 */
199
  public void draw(long currTime, DistortedTexture tex, GridObject grid, DistortedFramebuffer df)
200
    {
201
    tex.createTexture();
202
    df.createFBO();
203
    GLES20.glBindFramebuffer(GLES20.GL_FRAMEBUFFER, df.fboIds[0]);
204
    GLES20.glBindTexture(GLES20.GL_TEXTURE_2D, tex.mTextureDataH[0]);
205
    drawPriv(currTime, tex, grid, df);
206
    DistortedFramebuffer.deleteAllMarked();
207
    DistortedTexture.deleteAllMarked();
208
    }
209

    
210
///////////////////////////////////////////////////////////////////////////////////////////////////
211
/**
212
 * Releases all resources.
213
 */
214
  public synchronized void delete()
215
    {
216
    releasePriv();
217
    }
218

    
219
///////////////////////////////////////////////////////////////////////////////////////////////////
220
/**
221
 * Returns unique ID of this instance.
222
 *
223
 * @return ID of the object.
224
 */
225
  public long getID()
226
      {
227
      return mID;
228
      }
229

    
230
///////////////////////////////////////////////////////////////////////////////////////////////////
231
/**
232
 * Adds the calling class to the list of Listeners that get notified each time some event happens 
233
 * to one of the Effects that are currently applied to the DistortedObject.
234
 * 
235
 * @param el A class implementing the EffectListener interface that wants to get notifications.
236
 */
237
  public void addEventListener(EffectListener el)
238
    {
239
    mV.addListener(el);
240
    mF.addListener(el);
241
    mM.addListener(el);
242
    }
243

    
244
///////////////////////////////////////////////////////////////////////////////////////////////////
245
/**
246
 * Removes the calling class from the list of Listeners.
247
 * 
248
 * @param el A class implementing the EffectListener interface that no longer wants to get notifications.
249
 */
250
  public void removeEventListener(EffectListener el)
251
    {
252
    mV.removeListener(el);
253
    mF.removeListener(el);
254
    mM.removeListener(el);
255
    }
256

    
257
///////////////////////////////////////////////////////////////////////////////////////////////////
258
/**
259
 * Aborts all Effects.
260
 * @return Number of effects aborted.
261
 */
262
  public int abortAllEffects()
263
      {
264
      return mM.abortAll(true) + mV.abortAll(true) + mF.abortAll(true);
265
      }
266

    
267
///////////////////////////////////////////////////////////////////////////////////////////////////
268
/**
269
 * Aborts all Effects of a given type, for example all MATRIX Effects.
270
 * 
271
 * @param type one of the constants defined in {@link EffectTypes}
272
 * @return Number of effects aborted.
273
 */
274
  public int abortEffects(EffectTypes type)
275
    {
276
    switch(type)
277
      {
278
      case MATRIX  : return mM.abortAll(true);
279
      case VERTEX  : return mV.abortAll(true);
280
      case FRAGMENT: return mF.abortAll(true);
281
      default      : return 0;
282
      }
283
    }
284
    
285
///////////////////////////////////////////////////////////////////////////////////////////////////
286
/**
287
 * Aborts a single Effect.
288
 * 
289
 * @param id ID of the Effect we want to abort.
290
 * @return number of Effects aborted. Always either 0 or 1.
291
 */
292
  public int abortEffect(long id)
293
    {
294
    int type = (int)(id&EffectTypes.MASK);
295

    
296
    if( type==EffectTypes.MATRIX.type   ) return mM.removeByID(id>>EffectTypes.LENGTH);
297
    if( type==EffectTypes.VERTEX.type   ) return mV.removeByID(id>>EffectTypes.LENGTH);
298
    if( type==EffectTypes.FRAGMENT.type ) return mF.removeByID(id>>EffectTypes.LENGTH);
299

    
300
    return 0;
301
    }
302

    
303
///////////////////////////////////////////////////////////////////////////////////////////////////
304
/**
305
 * Abort all Effects of a given name, for example all rotations.
306
 * 
307
 * @param name one of the constants defined in {@link EffectNames}
308
 * @return number of Effects aborted.
309
 */
310
  public int abortEffects(EffectNames name)
311
    {
312
    switch(name.getType())
313
      {
314
      case MATRIX  : return mM.removeByType(name);
315
      case VERTEX  : return mV.removeByType(name);
316
      case FRAGMENT: return mF.removeByType(name);
317
      default      : return 0;
318
      }
319
    }
320
    
321
///////////////////////////////////////////////////////////////////////////////////////////////////
322
/**
323
 * Print some info about a given Effect to Android's standard out. Used for debugging only.
324
 * 
325
 * @param id Effect ID we want to print info about
326
 * @return <code>true</code> if a single Effect of type effectType has been found.
327
 */
328
    
329
  public boolean printEffect(long id)
330
    {
331
    int type = (int)(id&EffectTypes.MASK);
332

    
333
    if( type==EffectTypes.MATRIX.type   )  return mM.printByID(id>>EffectTypes.LENGTH);
334
    if( type==EffectTypes.VERTEX.type   )  return mV.printByID(id>>EffectTypes.LENGTH);
335
    if( type==EffectTypes.FRAGMENT.type )  return mF.printByID(id>>EffectTypes.LENGTH);
336

    
337
    return false;
338
    }
339
   
340
///////////////////////////////////////////////////////////////////////////////////////////////////   
341
///////////////////////////////////////////////////////////////////////////////////////////////////
342
// Individual effect functions.
343
///////////////////////////////////////////////////////////////////////////////////////////////////
344
// Matrix-based effects
345
///////////////////////////////////////////////////////////////////////////////////////////////////
346
/**
347
 * Moves the Object by a (possibly changing in time) vector.
348
 * 
349
 * @param vector 3-dimensional Data which at any given time will return a Static3D
350
 *               representing the current coordinates of the vector we want to move the Object with.
351
 * @return       ID of the effect added, or -1 if we failed to add one.
352
 */
353
  public long move(Data3D vector)
354
    {   
355
    return mM.add(EffectNames.MOVE,vector);
356
    }
357

    
358
///////////////////////////////////////////////////////////////////////////////////////////////////
359
/**
360
 * Scales the Object by (possibly changing in time) 3D scale factors.
361
 * 
362
 * @param scale 3-dimensional Data which at any given time returns a Static3D
363
 *              representing the current x- , y- and z- scale factors.
364
 * @return      ID of the effect added, or -1 if we failed to add one.
365
 */
366
  public long scale(Data3D scale)
367
    {   
368
    return mM.add(EffectNames.SCALE,scale);
369
    }
370

    
371
///////////////////////////////////////////////////////////////////////////////////////////////////
372
/**
373
 * Scales the Object by one uniform, constant factor in all 3 dimensions. Convenience function.
374
 *
375
 * @param scale The factor to scale all 3 dimensions with.
376
 * @return      ID of the effect added, or -1 if we failed to add one.
377
 */
378
  public long scale(float scale)
379
    {
380
    return mM.add(EffectNames.SCALE, new Static3D(scale,scale,scale));
381
    }
382

    
383
///////////////////////////////////////////////////////////////////////////////////////////////////
384
/**
385
 * Rotates the Object by 'angle' degrees around the center.
386
 * Static axis of rotation is given by the last parameter.
387
 *
388
 * @param angle  Angle that we want to rotate the Object to. Unit: degrees
389
 * @param axis   Axis of rotation
390
 * @param center Coordinates of the Point we are rotating around.
391
 * @return       ID of the effect added, or -1 if we failed to add one.
392
 */
393
  public long rotate(Data1D angle, Static3D axis, Data3D center )
394
    {   
395
    return mM.add(EffectNames.ROTATE, angle, axis, center);
396
    }
397

    
398
///////////////////////////////////////////////////////////////////////////////////////////////////
399
/**
400
 * Rotates the Object by 'angle' degrees around the center.
401
 * Here both angle and axis can dynamically change.
402
 *
403
 * @param angleaxis Combined 4-tuple representing the (angle,axisX,axisY,axisZ).
404
 * @param center    Coordinates of the Point we are rotating around.
405
 * @return          ID of the effect added, or -1 if we failed to add one.
406
 */
407
  public long rotate(Data4D angleaxis, Data3D center)
408
    {
409
    return mM.add(EffectNames.ROTATE, angleaxis, center);
410
    }
411

    
412
///////////////////////////////////////////////////////////////////////////////////////////////////
413
/**
414
 * Rotates the Object by quaternion.
415
 *
416
 * @param quaternion The quaternion describing the rotation.
417
 * @param center     Coordinates of the Point we are rotating around.
418
 * @return           ID of the effect added, or -1 if we failed to add one.
419
 */
420
  public long quaternion(Data4D quaternion, Data3D center )
421
    {
422
    return mM.add(EffectNames.QUATERNION,quaternion,center);
423
    }
424

    
425
///////////////////////////////////////////////////////////////////////////////////////////////////
426
/**
427
 * Shears the Object.
428
 *
429
 * @param shear   The 3-tuple of shear factors. The first controls level
430
 *                of shearing in the X-axis, second - Y-axis and the third -
431
 *                Z-axis. Each is the tangens of the shear angle, i.e 0 -
432
 *                no shear, 1 - shear by 45 degrees (tan(45deg)=1) etc.
433
 * @param center  Center of shearing, i.e. the point which stays unmoved.
434
 * @return        ID of the effect added, or -1 if we failed to add one.
435
 */
436
  public long shear(Data3D shear, Data3D center)
437
    {
438
    return mM.add(EffectNames.SHEAR, shear, center);
439
    }
440

    
441
///////////////////////////////////////////////////////////////////////////////////////////////////
442
// Fragment-based effects  
443
///////////////////////////////////////////////////////////////////////////////////////////////////
444
/**
445
 * Makes a certain sub-region of the Object smoothly change all three of its RGB components.
446
 *        
447
 * @param blend  1-dimensional Data that returns the level of blend a given pixel will be
448
 *               mixed with the next parameter 'color': pixel = (1-level)*pixel + level*color.
449
 *               Valid range: <0,1>
450
 * @param color  Color to mix. (1,0,0) is RED.
451
 * @param region Region this Effect is limited to.
452
 * @param smooth If true, the level of 'blend' will smoothly fade out towards the edges of the region.
453
 * @return       ID of the effect added, or -1 if we failed to add one.
454
 */
455
  public long chroma(Data1D blend, Data3D color, Data4D region, boolean smooth)
456
    {
457
    return mF.add( smooth? EffectNames.SMOOTH_CHROMA:EffectNames.CHROMA, blend, color, region);
458
    }
459

    
460
///////////////////////////////////////////////////////////////////////////////////////////////////
461
/**
462
 * Makes the whole Object smoothly change all three of its RGB components.
463
 *
464
 * @param blend  1-dimensional Data that returns the level of blend a given pixel will be
465
 *               mixed with the next parameter 'color': pixel = (1-level)*pixel + level*color.
466
 *               Valid range: <0,1>
467
 * @param color  Color to mix. (1,0,0) is RED.
468
 * @return       ID of the effect added, or -1 if we failed to add one.
469
 */
470
  public long chroma(Data1D blend, Data3D color)
471
    {
472
    return mF.add(EffectNames.CHROMA, blend, color);
473
    }
474

    
475
///////////////////////////////////////////////////////////////////////////////////////////////////
476
/**
477
 * Makes a certain sub-region of the Object smoothly change its transparency level.
478
 *        
479
 * @param alpha  1-dimensional Data that returns the level of transparency we want to have at any given
480
 *               moment: pixel.a *= alpha.
481
 *               Valid range: <0,1>
482
 * @param region Region this Effect is limited to. 
483
 * @param smooth If true, the level of 'alpha' will smoothly fade out towards the edges of the region.
484
 * @return       ID of the effect added, or -1 if we failed to add one. 
485
 */
486
  public long alpha(Data1D alpha, Data4D region, boolean smooth)
487
    {
488
    return mF.add( smooth? EffectNames.SMOOTH_ALPHA:EffectNames.ALPHA, alpha, region);
489
    }
490

    
491
///////////////////////////////////////////////////////////////////////////////////////////////////
492
/**
493
 * Makes the whole Object smoothly change its transparency level.
494
 *
495
 * @param alpha  1-dimensional Data that returns the level of transparency we want to have at any
496
 *               given moment: pixel.a *= alpha.
497
 *               Valid range: <0,1>
498
 * @return       ID of the effect added, or -1 if we failed to add one.
499
 */
500
  public long alpha(Data1D alpha)
501
    {
502
    return mF.add(EffectNames.ALPHA, alpha);
503
    }
504

    
505
///////////////////////////////////////////////////////////////////////////////////////////////////
506
/**
507
 * Makes a certain sub-region of the Object smoothly change its brightness level.
508
 *        
509
 * @param brightness 1-dimensional Data that returns the level of brightness we want to have
510
 *                   at any given moment. Valid range: <0,infinity)
511
 * @param region     Region this Effect is limited to.
512
 * @param smooth     If true, the level of 'brightness' will smoothly fade out towards the edges of the region.
513
 * @return           ID of the effect added, or -1 if we failed to add one.
514
 */
515
  public long brightness(Data1D brightness, Data4D region, boolean smooth)
516
    {
517
    return mF.add( smooth ? EffectNames.SMOOTH_BRIGHTNESS: EffectNames.BRIGHTNESS, brightness, region);
518
    }
519

    
520
///////////////////////////////////////////////////////////////////////////////////////////////////
521
/**
522
 * Makes the whole Object smoothly change its brightness level.
523
 *
524
 * @param brightness 1-dimensional Data that returns the level of brightness we want to have
525
 *                   at any given moment. Valid range: <0,infinity)
526
 * @return           ID of the effect added, or -1 if we failed to add one.
527
 */
528
  public long brightness(Data1D brightness)
529
    {
530
    return mF.add(EffectNames.BRIGHTNESS, brightness);
531
    }
532

    
533
///////////////////////////////////////////////////////////////////////////////////////////////////
534
/**
535
 * Makes a certain sub-region of the Object smoothly change its contrast level.
536
 *        
537
 * @param contrast 1-dimensional Data that returns the level of contrast we want to have
538
 *                 at any given moment. Valid range: <0,infinity)
539
 * @param region   Region this Effect is limited to.
540
 * @param smooth   If true, the level of 'contrast' will smoothly fade out towards the edges of the region.
541
 * @return         ID of the effect added, or -1 if we failed to add one.
542
 */
543
  public long contrast(Data1D contrast, Data4D region, boolean smooth)
544
    {
545
    return mF.add( smooth ? EffectNames.SMOOTH_CONTRAST:EffectNames.CONTRAST, contrast, region);
546
    }
547

    
548
///////////////////////////////////////////////////////////////////////////////////////////////////
549
/**
550
 * Makes the whole Object smoothly change its contrast level.
551
 *
552
 * @param contrast 1-dimensional Data that returns the level of contrast we want to have
553
 *                 at any given moment. Valid range: <0,infinity)
554
 * @return         ID of the effect added, or -1 if we failed to add one.
555
 */
556
  public long contrast(Data1D contrast)
557
    {
558
    return mF.add(EffectNames.CONTRAST, contrast);
559
    }
560

    
561
///////////////////////////////////////////////////////////////////////////////////////////////////
562
/**
563
 * Makes a certain sub-region of the Object smoothly change its saturation level.
564
 *        
565
 * @param saturation 1-dimensional Data that returns the level of saturation we want to have
566
 *                   at any given moment. Valid range: <0,infinity)
567
 * @param region     Region this Effect is limited to.
568
 * @param smooth     If true, the level of 'saturation' will smoothly fade out towards the edges of the region.
569
 * @return           ID of the effect added, or -1 if we failed to add one.
570
 */
571
  public long saturation(Data1D saturation, Data4D region, boolean smooth)
572
    {
573
    return mF.add( smooth ? EffectNames.SMOOTH_SATURATION:EffectNames.SATURATION, saturation, region);
574
    }
575

    
576
///////////////////////////////////////////////////////////////////////////////////////////////////
577
/**
578
 * Makes the whole Object smoothly change its saturation level.
579
 *
580
 * @param saturation 1-dimensional Data that returns the level of saturation we want to have
581
 *                   at any given moment. Valid range: <0,infinity)
582
 * @return           ID of the effect added, or -1 if we failed to add one.
583
 */
584
  public long saturation(Data1D saturation)
585
    {
586
    return mF.add(EffectNames.SATURATION, saturation);
587
    }
588

    
589
///////////////////////////////////////////////////////////////////////////////////////////////////
590
// Vertex-based effects  
591
///////////////////////////////////////////////////////////////////////////////////////////////////
592
/**
593
 * Distort a (possibly changing in time) part of the Object by a (possibly changing in time) vector of force.
594
 *
595
 * @param vector 3-dimensional Vector which represents the force the Center of the Effect is
596
 *               currently being dragged with.
597
 * @param center 3-dimensional Data that, at any given time, returns the Center of the Effect.
598
 * @param region Region that masks the Effect.
599
 * @return       ID of the effect added, or -1 if we failed to add one.
600
 */
601
  public long distort(Data3D vector, Data3D center, Data4D region)
602
    {  
603
    return mV.add(EffectNames.DISTORT, vector, center, region);
604
    }
605

    
606
///////////////////////////////////////////////////////////////////////////////////////////////////
607
/**
608
 * Distort the whole Object by a (possibly changing in time) vector of force.
609
 *
610
 * @param vector 3-dimensional Vector which represents the force the Center of the Effect is
611
 *               currently being dragged with.
612
 * @param center 3-dimensional Data that, at any given time, returns the Center of the Effect.
613
 * @return       ID of the effect added, or -1 if we failed to add one.
614
 */
615
  public long distort(Data3D vector, Data3D center)
616
    {
617
    return mV.add(EffectNames.DISTORT, vector, center, null);
618
    }
619

    
620
///////////////////////////////////////////////////////////////////////////////////////////////////
621
/**
622
 * Deform the shape of the whole Object with a (possibly changing in time) vector of force applied to
623
 * a (possibly changing in time) point on the Object.
624
 *
625
 * @param vector Vector of force that deforms the shape of the whole Object.
626
 * @param center 3-dimensional Data that, at any given time, returns the Center of the Effect.
627
 * @param region Region that masks the Effect.
628
 * @return       ID of the effect added, or -1 if we failed to add one.
629
 */
630
  public long deform(Data3D vector, Data3D center, Data4D region)
631
    {
632
    return mV.add(EffectNames.DEFORM, vector, center, region);
633
    }
634

    
635
///////////////////////////////////////////////////////////////////////////////////////////////////
636
/**
637
 * Deform the shape of the whole Object with a (possibly changing in time) vector of force applied to
638
 * a (possibly changing in time) point on the Object.
639
 *     
640
 * @param vector Vector of force that deforms the shape of the whole Object.
641
 * @param center 3-dimensional Data that, at any given time, returns the Center of the Effect.
642
 * @return       ID of the effect added, or -1 if we failed to add one.
643
 */
644
  public long deform(Data3D vector, Data3D center)
645
    {  
646
    return mV.add(EffectNames.DEFORM, vector, center, null);
647
    }
648

    
649
///////////////////////////////////////////////////////////////////////////////////////////////////  
650
/**
651
 * Pull all points around the center of the Effect towards the center (if degree>=1) or push them
652
 * away from the center (degree<=1)
653
 *
654
 * @param sink   The current degree of the Effect.
655
 * @param center 3-dimensional Data that, at any given time, returns the Center of the Effect.
656
 * @param region Region that masks the Effect.
657
 * @return       ID of the effect added, or -1 if we failed to add one.
658
 */
659
  public long sink(Data1D sink, Data3D center, Data4D region)
660
    {
661
    return mV.add(EffectNames.SINK, sink, center, region);
662
    }
663

    
664
///////////////////////////////////////////////////////////////////////////////////////////////////
665
/**
666
 * Pull all points around the center of the Effect towards the center (if degree>=1) or push them
667
 * away from the center (degree<=1)
668
 *
669
 * @param sink   The current degree of the Effect.
670
 * @param center 3-dimensional Data that, at any given time, returns the Center of the Effect.
671
 * @return       ID of the effect added, or -1 if we failed to add one.
672
 */
673
  public long sink(Data1D sink, Data3D center)
674
    {
675
    return mV.add(EffectNames.SINK, sink, center);
676
    }
677

    
678
///////////////////////////////////////////////////////////////////////////////////////////////////
679
/**
680
 * Pull all points around the center of the Effect towards a line passing through the center
681
 * (that's if degree>=1) or push them away from the line (degree<=1)
682
 *
683
 * @param pinch  The current degree of the Effect + angle the line forms with X-axis
684
 * @param center 3-dimensional Data that, at any given time, returns the Center of the Effect.
685
 * @param region Region that masks the Effect.
686
 * @return       ID of the effect added, or -1 if we failed to add one.
687
 */
688
  public long pinch(Data2D pinch, Data3D center, Data4D region)
689
    {
690
    return mV.add(EffectNames.PINCH, pinch, center, region);
691
    }
692

    
693
///////////////////////////////////////////////////////////////////////////////////////////////////
694
/**
695
 * Pull all points around the center of the Effect towards a line passing through the center
696
 * (that's if degree>=1) or push them away from the line (degree<=1)
697
 *
698
 * @param pinch  The current degree of the Effect + angle the line forms with X-axis
699
 * @param center 3-dimensional Data that, at any given time, returns the Center of the Effect.
700
 * @return       ID of the effect added, or -1 if we failed to add one.
701
 */
702
  public long pinch(Data2D pinch, Data3D center)
703
    {
704
    return mV.add(EffectNames.PINCH, pinch, center);
705
    }
706

    
707
///////////////////////////////////////////////////////////////////////////////////////////////////  
708
/**
709
 * Rotate part of the Object around the Center of the Effect by a certain angle.
710
 *
711
 * @param swirl  The angle of Swirl (in degrees). Positive values swirl clockwise.
712
 * @param center 3-dimensional Data that, at any given time, returns the Center of the Effect.
713
 * @param region Region that masks the Effect.
714
 * @return       ID of the effect added, or -1 if we failed to add one.
715
 */
716
  public long swirl(Data1D swirl, Data3D center, Data4D region)
717
    {    
718
    return mV.add(EffectNames.SWIRL, swirl, center, region);
719
    }
720

    
721
///////////////////////////////////////////////////////////////////////////////////////////////////
722
/**
723
 * Rotate the whole Object around the Center of the Effect by a certain angle.
724
 *
725
 * @param swirl  The angle of Swirl (in degrees). Positive values swirl clockwise.
726
 * @param center 3-dimensional Data that, at any given time, returns the Center of the Effect.
727
 * @return       ID of the effect added, or -1 if we failed to add one.
728
 */
729
  public long swirl(Data1D swirl, Data3D center)
730
    {
731
    return mV.add(EffectNames.SWIRL, swirl, center);
732
    }
733

    
734
///////////////////////////////////////////////////////////////////////////////////////////////////
735
/**
736
 * Directional, sinusoidal wave effect.
737
 *
738
 * @param wave   A 5-dimensional data structure describing the wave: first member is the amplitude,
739
 *               second is the wave length, third is the phase (i.e. when phase = PI/2, the sine
740
 *               wave at the center does not start from sin(0), but from sin(PI/2) ) and the next two
741
 *               describe the 'direction' of the wave.
742
 *               <p>
743
 *               Wave direction is defined to be a 3D vector of length 1. To define such vectors, we
744
 *               need 2 floats: thus the third member is the angle Alpha (in degrees) which the vector
745
 *               forms with the XY-plane, and the fourth is the angle Beta (again in degrees) which
746
 *               the projection of the vector to the XY-plane forms with the Y-axis (counterclockwise).
747
 *               <p>
748
 *               <p>
749
 *               Example1: if Alpha = 90, Beta = 90, (then V=(0,0,1) ) and the wave acts 'vertically'
750
 *               in the X-direction, i.e. cross-sections of the resulting surface with the XZ-plane
751
 *               will be sine shapes.
752
 *               <p>
753
 *               Example2: if Alpha = 90, Beta = 0, the again V=(0,0,1) and the wave is 'vertical',
754
 *               but this time it waves in the Y-direction, i.e. cross sections of the surface and the
755
 *               YZ-plane with be sine shapes.
756
 *               <p>
757
 *               Example3: if Alpha = 0 and Beta = 45, then V=(sqrt(2)/2, -sqrt(2)/2, 0) and the wave
758
 *               is entirely 'horizontal' and moves point (x,y,0) in direction V by whatever is the
759
 *               value if sin at this point.
760
 * @param center 3-dimensional Data that, at any given time, returns the Center of the Effect.
761
 * @return       ID of the effect added, or -1 if we failed to add one.
762
 */
763
  public long wave(Data5D wave, Data3D center)
764
    {
765
    return mV.add(EffectNames.WAVE, wave, center, null);
766
    }
767

    
768
///////////////////////////////////////////////////////////////////////////////////////////////////
769
/**
770
 * Directional, sinusoidal wave effect.
771
 *
772
 * @param wave   see {@link DistortedEffectQueues#wave(Data5D,Data3D)}
773
 * @param center 3-dimensional Data that, at any given time, returns the Center of the Effect.
774
 * @param region Region that masks the Effect.
775
 * @return       ID of the effect added, or -1 if we failed to add one.
776
 */
777
  public long wave(Data5D wave, Data3D center, Data4D region)
778
    {
779
    return mV.add(EffectNames.WAVE, wave, center, region);
780
    }
781
  }
(2-2/15)