Project

General

Profile

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

library / src / main / java / org / distorted / library / DistortedOutputSurface.java @ c9a24bfb

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.GLES30;
23
import android.opengl.Matrix;
24
import java.util.ArrayList;
25

    
26
///////////////////////////////////////////////////////////////////////////////////////////////////
27

    
28
abstract class DistortedOutputSurface extends DistortedSurface implements DistortedSlave
29
{
30
/**
31
 * Do not create DEPTH or STENCIL attachment
32
 */
33
  public static final int NO_DEPTH_NO_STENCIL = 0;
34
/**
35
 * Create DEPTH, but not STENCIL
36
 */
37
  public static final int DEPTH_NO_STENCIL    = 1;
38
/**
39
 * Create both DEPTH and STENCIL
40
 */
41
  public static final int BOTH_DEPTH_STENCIL  = 2;
42

    
43
  private static final int ATTACH = 0;
44
  private static final int DETACH = 1;
45
  private static final int DETALL = 2;
46
  private static final int SORT   = 3;
47

    
48
  private ArrayList<DistortedNode> mChildren;
49
  private int mNumChildren;   // ==mChildren.length(), but we only create mChildren if the first one gets added
50

    
51
  private class Job
52
    {
53
    int type;
54
    DistortedNode node;
55
    DistortedEffectsPostprocess dep;
56

    
57
    Job(int t, DistortedNode n, DistortedEffectsPostprocess d)
58
      {
59
      type = t;
60
      node = n;
61
      dep  = d;
62
      }
63
    }
64

    
65
  private ArrayList<Job> mJobs = new ArrayList<>();
66

    
67
  DistortedFramebuffer[] mBuffer;
68

    
69
  private long mTime;
70
  private float mFOV;
71
  float mDistance, mNear;
72
  float[] mProjectionMatrix;
73

    
74
  int mDepthStencilCreated;
75
  int mDepthStencil;
76
  int[] mDepthStencilH = new int[1];
77
  int[] mFBOH          = new int[1];
78

    
79
  private float mClearR, mClearG, mClearB, mClearA;
80
  private float mClearDepth;
81
  private int mClearStencil;
82
  private int mClear;
83
  float mMipmap;
84

    
85
///////////////////////////////////////////////////////////////////////////////////////////////////
86

    
87
  DistortedOutputSurface(int width, int height, int createColor, int numcolors, int depthStencil, int fbo, int type)
88
    {
89
    super(width,height,createColor,numcolors,type);
90

    
91
    mProjectionMatrix = new float[16];
92

    
93
    mFOV = 60.0f;
94
    mNear=  0.5f;
95

    
96
    mDepthStencilCreated= (depthStencil== NO_DEPTH_NO_STENCIL ? DONT_CREATE:NOT_CREATED_YET);
97
    mDepthStencil = depthStencil;
98

    
99
    mFBOH[0]         = fbo;
100
    mDepthStencilH[0]= 0;
101

    
102
    mTime = 0;
103

    
104
    mClearR = 0.0f;
105
    mClearG = 0.0f;
106
    mClearB = 0.0f;
107
    mClearA = 0.0f;
108

    
109
    mClearDepth = 1.0f;
110
    mClearStencil = 0;
111
    mClear = GLES30.GL_DEPTH_BUFFER_BIT | GLES30.GL_COLOR_BUFFER_BIT;
112

    
113
    mBuffer = new DistortedFramebuffer[EffectQuality.LENGTH];
114

    
115
    mMipmap = 1.0f;
116

    
117
    createProjection();
118
    }
119

    
120
///////////////////////////////////////////////////////////////////////////////////////////////////
121

    
122
  private void createProjection()
123
    {
124
    if( mWidth>0 && mHeight>1 )
125
      {
126
      if( mFOV>0.0f )  // perspective projection
127
        {
128
        float a = 2.0f*(float)Math.tan(mFOV*Math.PI/360);
129
        float q = mWidth*mNear;
130
        float c = mHeight*mNear;
131

    
132
        float left   = -q/2;
133
        float right  = +q/2;
134
        float bottom = -c/2;
135
        float top    = +c/2;
136
        float near   =  c/a;
137

    
138
        mDistance    = mHeight/a;
139
        float far    = 2*mDistance-near;
140

    
141
        Matrix.frustumM(mProjectionMatrix, 0, left, right, bottom, top, near, far);
142
        }
143
      else             // parallel projection
144
        {
145
        float left   = -mWidth/2.0f;
146
        float right  = +mWidth/2.0f;
147
        float bottom = -mHeight/2.0f;
148
        float top    = +mHeight/2.0f;
149
        float near   = mWidth+mHeight-mHeight*(1.0f-mNear);
150
        mDistance    = mWidth+mHeight;
151
        float far    = mWidth+mHeight+mHeight*(1.0f-mNear);
152

    
153
        Matrix.orthoM(mProjectionMatrix, 0, left, right, bottom, top, near, far);
154
        }
155
      }
156
    }
157

    
158
///////////////////////////////////////////////////////////////////////////////////////////////////
159

    
160
  private void createBuffers()
161
    {
162
    float mipmap=1.0f;
163

    
164
    for(int j=0; j<EffectQuality.LENGTH; j++)
165
      {
166
      mBuffer[j] = new DistortedFramebuffer(2,BOTH_DEPTH_STENCIL,TYPE_SYST, (int)(mWidth*mipmap), (int)(mHeight*mipmap) );
167
      mBuffer[j].mMipmap = mipmap;
168
      mipmap *= EffectQuality.MULTIPLIER;
169
      }
170

    
171
    DistortedObject.toDo(); // create the FBOs immediately. This is safe as we must be holding the OpenGL context now.
172

    
173
    GLES30.glStencilMask(0xff);
174
    GLES30.glDepthMask(true);
175
    GLES30.glColorMask(true,true,true,true);
176
    GLES30.glClearColor(0.0f,0.0f,0.0f,0.0f);
177
    GLES30.glClearDepthf(1.0f);
178
    GLES30.glClearStencil(0);
179

    
180
    for(int j=0; j<EffectQuality.LENGTH; j++)
181
      {
182
      mBuffer[j].setAsOutput();
183
      GLES30.glFramebufferTexture2D(GLES30.GL_FRAMEBUFFER, GLES30.GL_COLOR_ATTACHMENT0, GLES30.GL_TEXTURE_2D, mBuffer[j].mColorH[1], 0);
184
      GLES30.glClear(GLES30.GL_COLOR_BUFFER_BIT|GLES30.GL_DEPTH_BUFFER_BIT|GLES30.GL_STENCIL_BUFFER_BIT);
185
      GLES30.glFramebufferTexture2D(GLES30.GL_FRAMEBUFFER, GLES30.GL_COLOR_ATTACHMENT0, GLES30.GL_TEXTURE_2D, mBuffer[j].mColorH[0], 0);
186
      GLES30.glClear(GLES30.GL_COLOR_BUFFER_BIT);
187
      }
188
    }
189

    
190
///////////////////////////////////////////////////////////////////////////////////////////////////
191

    
192
  private int blitWithDepth(int quality, long currTime)
193
    {
194
    DistortedFramebuffer buffer = mBuffer[quality];
195

    
196
    GLES30.glViewport(0, 0, mWidth, mHeight);
197
    setAsOutput(currTime);
198
    GLES30.glActiveTexture(GLES30.GL_TEXTURE0);
199
    GLES30.glBindTexture(GLES30.GL_TEXTURE_2D, buffer.mColorH[0]);
200
    GLES30.glActiveTexture(GLES30.GL_TEXTURE1);
201
    GLES30.glBindTexture(GLES30.GL_TEXTURE_2D, buffer.mDepthStencilH[0]);
202

    
203
    GLES30.glDisable(GLES30.GL_STENCIL_TEST);
204
    GLES30.glStencilMask(0x00);
205

    
206
    DistortedEffects.blitDepthPriv(this);
207
    GLES30.glActiveTexture(GLES30.GL_TEXTURE0);
208
    GLES30.glBindTexture(GLES30.GL_TEXTURE_2D, 0);
209
    GLES30.glActiveTexture(GLES30.GL_TEXTURE1);
210
    GLES30.glBindTexture(GLES30.GL_TEXTURE_2D, 0);
211

    
212
    // clear buffers
213
    GLES30.glStencilMask(0xff);
214
    GLES30.glDepthMask(true);
215
    GLES30.glColorMask(true,true,true,true);
216
    GLES30.glClearColor(0.0f,0.0f,0.0f,0.0f);
217
    GLES30.glClearDepthf(1.0f);
218
    GLES30.glClearStencil(0);
219

    
220
    buffer.setAsOutput();
221
    GLES30.glFramebufferTexture2D(GLES30.GL_FRAMEBUFFER, GLES30.GL_COLOR_ATTACHMENT0, GLES30.GL_TEXTURE_2D, buffer.mColorH[1], 0);
222
    GLES30.glClear(GLES30.GL_COLOR_BUFFER_BIT|GLES30.GL_DEPTH_BUFFER_BIT|GLES30.GL_STENCIL_BUFFER_BIT);
223
    GLES30.glFramebufferTexture2D(GLES30.GL_FRAMEBUFFER, GLES30.GL_COLOR_ATTACHMENT0, GLES30.GL_TEXTURE_2D, buffer.mColorH[0], 0);
224
    GLES30.glClear(GLES30.GL_COLOR_BUFFER_BIT);
225

    
226
    return 1;
227
    }
228

    
229
///////////////////////////////////////////////////////////////////////////////////////////////////
230
// Render all children, one by one. If there are no postprocessing effects, just render to THIS.
231
// Otherwise, render to a buffer and on each change of Postprocessing Bucket, apply the postprocessing
232
// to a whole buffer and merge it.
233

    
234
  int renderChildren(long time, int num, ArrayList<DistortedNode> children)
235
    {
236
    int numRenders = 0;
237
    DistortedNode child;
238
    DistortedEffectsPostprocess lastP=null, currP;
239
    long lastB=0, currB;
240
    int bucketChange=0;
241
    int lastQ=0, currQ;
242

    
243
    for(int i=0; i<num; i++)
244
      {
245
      child = children.get(i);
246
      currP = child.getEffectsPostprocess();
247
      currB = currP==null ? 0 : currP.getBucket();
248
      currQ = currP==null ? 0 : currP.getQuality();
249

    
250
      if( currB==0 ) numRenders += child.draw(time,this);
251
      else
252
        {
253
        if( mBuffer[0]==null ) createBuffers();
254

    
255
        if( lastB!=currB )
256
          {
257
          if( lastB!=0 )
258
            {
259
            for(int j=bucketChange; j<i; j++)
260
              {
261
              child = children.get(j);
262
              numRenders += child.markStencilAndDepth(time,mBuffer[lastQ],lastP);
263
              }
264

    
265
            numRenders += lastP.postprocess(time, this);
266
            numRenders += blitWithDepth(lastQ,time);
267
            }
268

    
269
          bucketChange = i;
270
          }
271

    
272
        numRenders += child.draw(time,mBuffer[currQ]);
273

    
274
        if( i==num-1 )
275
          {
276
          for(int j=bucketChange; j<num; j++)
277
            {
278
            child = children.get(j);
279
            numRenders += child.markStencilAndDepth(time,mBuffer[currQ],currP);
280
            }
281

    
282
          numRenders += currP.postprocess(time,this);
283
          numRenders += blitWithDepth(currQ,time);
284
          }
285
        }
286

    
287
      lastQ = currQ;
288
      lastP = currP;
289
      lastB = currB;
290
      }
291

    
292
    return numRenders;
293
    }
294

    
295
///////////////////////////////////////////////////////////////////////////////////////////////////
296

    
297
  void newJob(int t, DistortedNode n, DistortedEffectsPostprocess d)
298
    {
299
    mJobs.add(new Job(t,n,d));
300
    }
301

    
302
///////////////////////////////////////////////////////////////////////////////////////////////////
303

    
304
  void setAsOutput()
305
    {
306
    GLES30.glBindFramebuffer(GLES30.GL_FRAMEBUFFER, mFBOH[0]);
307
    }
308

    
309
///////////////////////////////////////////////////////////////////////////////////////////////////
310
// PUBLIC API
311
///////////////////////////////////////////////////////////////////////////////////////////////////
312
/**
313
 * Draws all the attached children to this OutputSurface.
314
 * <p>
315
 * Must be called from a thread holding OpenGL Context.
316
 *
317
 * @param time Current time, in milliseconds. This will be passed to all the Effects stored in the children Nodes.
318
 * @return Number of objects rendered.
319
 */
320
  public int render(long time)
321
    {
322
    // change tree topology (attach and detach children)
323
/*
324
    boolean changed1 =
325
*/
326
    DistortedMaster.toDo();
327
/*
328
    if( changed1 )
329
      {
330
      for(int i=0; i<mNumChildren; i++)
331
        {
332
        mChildren.get(i).debug(0);
333
        }
334

    
335
      DistortedNode.debugMap();
336
      }
337
*/
338
    // create and delete all underlying OpenGL resources
339
    // Watch out: FIRST change topology, only then deal
340
    // with OpenGL resources. That's because changing Tree
341
    // can result in additional Framebuffers that would need
342
    // to be created immediately, before the calls to drawRecursive()
343
/*
344
    boolean changed2 =
345
*/
346
    toDo();
347
/*
348
    if( changed2 )
349
      {
350
      DistortedObject.debugLists();
351
      }
352
*/
353
    // mark OpenGL state as unknown
354
    DistortedRenderState.reset();
355

    
356
    int numRenders=0;
357

    
358
    for(int i=0; i<mNumChildren; i++)
359
      {
360
      numRenders += mChildren.get(i).renderRecursive(time);
361
      }
362

    
363
    setAsOutput(time);
364
    numRenders += renderChildren(time,mNumChildren,mChildren);
365

    
366
    return numRenders;
367
    }
368

    
369
///////////////////////////////////////////////////////////////////////////////////////////////////
370
/**
371
 * Bind this Surface as a Framebuffer we can render to.
372
 *
373
 * @param time Present time, in milliseconds. The point: looking at this param the library can figure
374
 *             out if this is the first time during present frame that this FBO is being set as output.
375
 *             If so, the library, in addition to binding the Surface for output, also clears the
376
 *             Surface's color and depth attachments.
377
 */
378
  public void setAsOutput(long time)
379
    {
380
    GLES30.glBindFramebuffer(GLES30.GL_FRAMEBUFFER, mFBOH[0]);
381

    
382
    if( mTime!=time )
383
      {
384
      mTime = time;
385
      DistortedRenderState.colorDepthStencilOn();
386
      GLES30.glClearColor(mClearR, mClearG, mClearB, mClearA);
387
      GLES30.glClearDepthf(mClearDepth);
388
      GLES30.glClearStencil(mClearStencil);
389
      GLES30.glClear(mClear);
390
      }
391
    }
392

    
393
///////////////////////////////////////////////////////////////////////////////////////////////////
394
/**
395
 * Set mipmap level.
396
 * <p>
397
 * Trick for speeding up your renders - one can create a pyramid of OutputSurface objects, each next
398
 * one some constant FACTOR smaller than the previous (0.5 is the common value), then set the Mipmap
399
 * Level of the i-th object to be FACTOR^i (we start counting from 0). When rendering any scene into
400
 * such prepared OutputSurface, the library will make sure to scale any Effects used so that the end
401
 * scene will end up looking identical no matter which object we render to. Identical, that is, except
402
 * for the loss of quality and gain in speed associated with rendering to a smaller Surface.
403
 * <p>
404
 * Example: if you create two FBOs, one 1000x1000 and another 500x500 in size, and set the second one
405
 * mipmap to 0.5 (the first one's is 1.0 by default), define Effects to be a single move by (100,100),
406
 * and render a skinned Mesh into both FBO, the end result will look proportionally the same, because
407
 * in the second case the move vector (100,100) will be auto-scaled to (50,50).
408
 *
409
 * @param mipmap The mipmap level. Acceptable range: 0&lt;mipmap&lt;infinity, although mipmap&gt;1
410
 *               does not make any sense (that would result in loss of speed and no gain in quality)
411
 */
412
  public void setMipmap(float mipmap)
413
    {
414
    mMipmap = mipmap;
415
    }
416

    
417
///////////////////////////////////////////////////////////////////////////////////////////////////
418
/**
419
 * Set the (R,G,B,A) values of GLES30.glClearColor() to set up color with which to clear
420
 * this Surface at the beginning of each frame.
421
 *
422
 * @param r the Red component. Default: 0.0f
423
 * @param g the Green component. Default: 0.0f
424
 * @param b the Blue component. Default: 0.0f
425
 * @param a the Alpha component. Default: 0.0f
426
 */
427
  public void glClearColor(float r, float g, float b, float a)
428
    {
429
    mClearR = r;
430
    mClearG = g;
431
    mClearB = b;
432
    mClearA = a;
433
    }
434

    
435
///////////////////////////////////////////////////////////////////////////////////////////////////
436
/**
437
 * Uses glClearDepthf() to set up a value with which to clear
438
 * the Depth buffer of our Surface at the beginning of each frame.
439
 *
440
 * @param d the Depth. Default: 1.0f
441
 */
442
  public void glClearDepthf(float d)
443
    {
444
    mClearDepth = d;
445
    }
446

    
447
///////////////////////////////////////////////////////////////////////////////////////////////////
448
/**
449
 * Uses glClearStencil() to set up a value with which to clear the
450
 * Stencil buffer of our Surface at the beginning of each frame.
451
 *
452
 * @param s the Stencil. Default: 0
453
 */
454
  public void glClearStencil(int s)
455
    {
456
    mClearStencil = s;
457
    }
458

    
459
///////////////////////////////////////////////////////////////////////////////////////////////////
460
/**
461
 * Which buffers to Clear at the beginning of each frame?
462
 * <p>
463
 * Valid values: 0, or bitwise OR of one or more values from the set GL_COLOR_BUFFER_BIT,
464
 *               GL_DEPTH_BUFFER_BIT, GL_STENCIL_BUFFER_BIT.
465
 * Default: GL_DEPTH_BUFFER_BIT | GL_COLOR_BUFFER_BIT.
466
 *
467
 * @param mask bitwise OR of BUFFER_BITs to clear.
468
 */
469
  public void glClear(int mask)
470
    {
471
    mClear = mask;
472
    }
473

    
474
///////////////////////////////////////////////////////////////////////////////////////////////////
475
/**
476
 * Create new Projection matrix.
477
 *
478
 * @param fov Vertical 'field of view' of the Projection frustrum (in degrees).
479
 *            Valid values: 0<=fov<180. FOV==0 means 'parallel projection'.
480
 * @param near Distance between the screen plane and the near plane.
481
 *             Valid vaules: 0<near<1. When near==0, the Near Plane is exactly at the tip of the
482
 *             pyramid. When near==1 (illegal!) the near plane is equivalent to the screen plane.
483
 */
484
  public void setProjection(float fov, float near)
485
    {
486
    if( fov < 180.0f && fov >=0.0f )
487
      {
488
      mFOV = fov;
489
      }
490

    
491
    if( near<   1.0f && near> 0.0f )
492
      {
493
      mNear= near;
494
      }
495
    else if( near<=0.0f )
496
      {
497
      mNear = 0.01f;
498
      }
499
    else if( near>=1.0f )
500
      {
501
      mNear=0.99f;
502
      }
503

    
504
    createProjection();
505
    }
506

    
507
///////////////////////////////////////////////////////////////////////////////////////////////////
508
/**
509
 * Resize the underlying Framebuffer.
510
 * <p>
511
 * This method can be safely called mid-render as it doesn't interfere with rendering.
512
 *
513
 * @param width The new width.
514
 * @param height The new height.
515
 */
516
  public void resize(int width, int height)
517
    {
518
    if( mWidth!=width || mHeight!=height )
519
      {
520
      mWidth = width;
521
      mHeight= height;
522

    
523
      createProjection();
524

    
525
      if( mColorCreated==CREATED )
526
        {
527
        markForCreation();
528
        recreate();
529
        }
530
      }
531
    }
532

    
533
///////////////////////////////////////////////////////////////////////////////////////////////////
534
/**
535
 * Return true if the Surface contains a DEPTH attachment.
536
 *
537
 * @return <bold>true</bold> if the Surface contains a DEPTH attachment.
538
 */
539
  public boolean hasDepth()
540
    {
541
    return mDepthStencilCreated==CREATED;
542
    }
543

    
544
///////////////////////////////////////////////////////////////////////////////////////////////////
545
/**
546
 * Return true if the Surface contains a STENCIL attachment.
547
 *
548
 * @return <bold>true</bold> if the Surface contains a STENCIL attachment.
549
 */
550
  public boolean hasStencil()
551
    {
552
    return (mDepthStencilCreated==CREATED && mDepthStencil==BOTH_DEPTH_STENCIL);
553
    }
554

    
555
///////////////////////////////////////////////////////////////////////////////////////////////////
556
/**
557
 * Adds a new child to the last position in the list of our Surface's children.
558
 * <p>
559
 * We cannot do this mid-render - actual attachment will be done just before the next render, by the
560
 * DistortedMaster (by calling doWork())
561
 *
562
 * @param node The new Node to add.
563
 */
564
  public void attach(DistortedNode node)
565
    {
566
    mJobs.add(new Job(ATTACH,node,null));
567
    DistortedMaster.newSlave(this);
568
    }
569

    
570
///////////////////////////////////////////////////////////////////////////////////////////////////
571
/**
572
 * Adds a new child to the last position in the list of our Surface's children.
573
 * <p>
574
 * We cannot do this mid-render - actual attachment will be done just before the next render, by the
575
 * DistortedMaster (by calling doWork())
576
 *
577
 * @param surface InputSurface to initialize our child Node with.
578
 * @param effects DistortedEffects to initialize our child Node with.
579
 * @param mesh MeshObject to initialize our child Node with.
580
 * @return the newly constructed child Node, or null if we couldn't allocate resources.
581
 */
582
  public DistortedNode attach(DistortedInputSurface surface, DistortedEffects effects, MeshObject mesh)
583
    {
584
    DistortedNode node = new DistortedNode(surface,effects,mesh);
585
    mJobs.add(new Job(ATTACH,node,null));
586
    DistortedMaster.newSlave(this);
587
    return node;
588
    }
589

    
590
///////////////////////////////////////////////////////////////////////////////////////////////////
591
/**
592
 * Removes the first occurrence of a specified child from the list of children of our Surface.
593
 * <p>
594
 * A bit questionable method as there can be many different Nodes attached as children, some
595
 * of them having the same Effects but - for instance - different Mesh. Use with care.
596
 * <p>
597
 * We cannot do this mid-render - actual detachment will be done just before the next render, by the
598
 * DistortedMaster (by calling doWork())
599
 *
600
 * @param effects DistortedEffects to remove.
601
 */
602
  public void detach(DistortedEffects effects)
603
    {
604
    long id = effects.getID();
605
    DistortedNode node;
606
    boolean detached = false;
607

    
608
    for(int i=0; i<mNumChildren; i++)
609
      {
610
      node = mChildren.get(i);
611

    
612
      if( node.getEffects().getID()==id )
613
        {
614
        detached = true;
615
        mJobs.add(new Job(DETACH,node,null));
616
        DistortedMaster.newSlave(this);
617
        break;
618
        }
619
      }
620

    
621
    if( !detached )
622
      {
623
      // if we failed to detach any, it still might be the case that
624
      // there's an ATTACH job that we need to cancel.
625
      int num = mJobs.size();
626
      Job job;
627

    
628
      for(int i=0; i<num; i++)
629
        {
630
        job = mJobs.get(i);
631

    
632
        if( job.type==ATTACH && job.node.getEffects()==effects )
633
          {
634
          mJobs.remove(i);
635
          break;
636
          }
637
        }
638
      }
639
    }
640

    
641
///////////////////////////////////////////////////////////////////////////////////////////////////
642
/**
643
 * Removes the first occurrence of a specified child from the list of children of our Surface.
644
 * <p>
645
 * We cannot do this mid-render - actual attachment will be done just before the next render, by the
646
 * DistortedMaster (by calling doWork())
647
 *
648
 * @param node The Node to remove.
649
 */
650
  public void detach(DistortedNode node)
651
    {
652
    mJobs.add(new Job(DETACH,node,null));
653
    DistortedMaster.newSlave(this);
654
    }
655

    
656
///////////////////////////////////////////////////////////////////////////////////////////////////
657
/**
658
 * Removes all children Nodes.
659
 * <p>
660
 * We cannot do this mid-render - actual attachment will be done just before the next render, by the
661
 * DistortedMaster (by calling doWork())
662
 */
663
  public void detachAll()
664
    {
665
    mJobs.add(new Job(DETALL,null,null));
666
    DistortedMaster.newSlave(this);
667
    }
668

    
669
///////////////////////////////////////////////////////////////////////////////////////////////////
670
/**
671
 * This is not really part of the public API. Has to be public only because it is a part of the
672
 * DistortedSlave interface, which should really be a class that we extend here instead but
673
 * Java has no multiple inheritance.
674
 *
675
 * @y.exclude
676
 */
677
  public void doWork()
678
    {
679
    int num = mJobs.size();
680
    Job job;
681

    
682
    for(int i=0; i<num; i++)
683
      {
684
      job = mJobs.remove(0);
685

    
686
      switch(job.type)
687
        {
688
        case ATTACH: if( mChildren==null ) mChildren = new ArrayList<>(2);
689
                     job.node.setSurfaceParent(this);
690
                     DistortedMaster.addSorted(mChildren,job.node);
691
                     mNumChildren++;
692
                     break;
693
        case DETACH: if( mNumChildren>0 && mChildren.remove(job.node) )
694
                       {
695
                       job.node.setSurfaceParent(null);
696
                       mNumChildren--;
697
                       }
698
                     break;
699
        case DETALL: if( mNumChildren>0 )
700
                       {
701
                       DistortedNode tmp;
702

    
703
                       for(int j=mNumChildren-1; j>=0; j--)
704
                         {
705
                         tmp = mChildren.remove(j);
706
                         tmp.setSurfaceParent(null);
707
                         }
708

    
709
                       mNumChildren = 0;
710
                       }
711
                     break;
712
        case SORT  : job.node.setPost(job.dep);
713
                     mChildren.remove(job.node);
714
                     DistortedMaster.addSorted(mChildren,job.node);
715
                     break;
716
        }
717
      }
718
    }
719
}
(9-9/26)