Project

General

Profile

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

library / src / main / java / org / distorted / library / main / DistortedOutputSurface.java @ 9e999930

1 c5369f1b leszek
///////////////////////////////////////////////////////////////////////////////////////////////////
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 fe82a979 Leszek Koltunski
package org.distorted.library.main;
21 c5369f1b leszek
22 e6519ac8 Leszek Koltunski
import android.opengl.GLES31;
23 af4cc5db Leszek Koltunski
import android.opengl.Matrix;
24 86e99907 leszek
25 3521c6fe leszek
import org.distorted.library.effect.EffectQuality;
26
27 a09ada4c Leszek Koltunski
import java.util.ArrayList;
28 af4cc5db Leszek Koltunski
29
///////////////////////////////////////////////////////////////////////////////////////////////////
30 70b6a155 Leszek Koltunski
/**
31
 * This is not really part of the public API.
32
 *
33
 * @y.exclude
34
 */
35
public abstract class DistortedOutputSurface extends DistortedSurface implements DistortedMaster.Slave
36 af4cc5db Leszek Koltunski
{
37 89de975c leszek
/**
38
 * Do not create DEPTH or STENCIL attachment
39
 */
40 23eecbd9 Leszek Koltunski
  public static final int NO_DEPTH_NO_STENCIL = 0;
41 89de975c leszek
/**
42
 * Create DEPTH, but not STENCIL
43
 */
44 23eecbd9 Leszek Koltunski
  public static final int DEPTH_NO_STENCIL    = 1;
45 89de975c leszek
/**
46
 * Create both DEPTH and STENCIL
47
 */
48 23eecbd9 Leszek Koltunski
  public static final int BOTH_DEPTH_STENCIL  = 2;
49 89de975c leszek
50 efe3d8fe leszek
  private static final int ATTACH = 0;
51
  private static final int DETACH = 1;
52
  private static final int DETALL = 2;
53
  private static final int SORT   = 3;
54
55 a09ada4c Leszek Koltunski
  private ArrayList<DistortedNode> mChildren;
56
  private int mNumChildren;   // ==mChildren.length(), but we only create mChildren if the first one gets added
57
58 efe3d8fe leszek
  private class Job
59
    {
60
    int type;
61
    DistortedNode node;
62
63 ffbe7ecf Leszek Koltunski
    Job(int t, DistortedNode n)
64 efe3d8fe leszek
      {
65
      type = t;
66
      node = n;
67
      }
68
    }
69
70
  private ArrayList<Job> mJobs = new ArrayList<>();
71
72 ce154014 Leszek Koltunski
  // Global buffers used for postprocessing.
73 9b94626c Leszek Koltunski
  private static DistortedOutputSurface[] mBuffer = new DistortedOutputSurface[EffectQuality.LENGTH];
74 60c1c622 leszek
75 c2c08950 leszek
  private float mFOV;
76
  float mDistance, mNear;
77 af4cc5db Leszek Koltunski
  float[] mProjectionMatrix;
78
79 89de975c leszek
  int mDepthStencilCreated;
80
  int mDepthStencil;
81 9d845904 Leszek Koltunski
  int[] mDepthStencilH;
82
  int[] mFBOH;
83
  private long[] mTime;
84 a436ccc5 leszek
85 a9f41fa3 leszek
  private float mClearR, mClearG, mClearB, mClearA;
86
  private float mClearDepth;
87 23eecbd9 Leszek Koltunski
  private int mClearStencil;
88 ad16ed3b Leszek Koltunski
  private int mClear;
89 78db8663 Leszek Koltunski
  float mMipmap;
90
91 61441ce2 Leszek Koltunski
  int mRealWidth;   // the Surface can be backed up with a texture that is
92
  int mRealHeight;  // larger than the viewport we have to it.
93
                    // mWidth,mHeight are the sizes of the Viewport, those -
94
                    // sizes of the backing up texture.
95 a4b182d4 Leszek Koltunski
96 af4cc5db Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
97
98 9d845904 Leszek Koltunski
  DistortedOutputSurface(int width, int height, int createColor, int numfbos, int numcolors, int depthStencil, int fbo, int type)
99 af4cc5db Leszek Koltunski
    {
100 9d845904 Leszek Koltunski
    super(width,height,createColor,numfbos,numcolors,type);
101
102
    mDepthStencilH = new int[numfbos];
103
    mFBOH          = new int[numfbos];
104
105
    mTime = new long[numfbos];
106
    for(int i=0; i<mNumFBOs;i++) mTime[i]=0;
107 af4cc5db Leszek Koltunski
108 a4b182d4 Leszek Koltunski
    mRealWidth = width;
109
    mRealHeight= height;
110
111 af4cc5db Leszek Koltunski
    mProjectionMatrix = new float[16];
112
113
    mFOV = 60.0f;
114 54fe333a leszek
    mNear=  0.5f;
115 af4cc5db Leszek Koltunski
116 23eecbd9 Leszek Koltunski
    mDepthStencilCreated= (depthStencil== NO_DEPTH_NO_STENCIL ? DONT_CREATE:NOT_CREATED_YET);
117 89de975c leszek
    mDepthStencil = depthStencil;
118
119
    mFBOH[0]         = fbo;
120
    mDepthStencilH[0]= 0;
121 a436ccc5 leszek
122 a9f41fa3 leszek
    mClearR = 0.0f;
123
    mClearG = 0.0f;
124
    mClearB = 0.0f;
125
    mClearA = 0.0f;
126
127
    mClearDepth = 1.0f;
128 23eecbd9 Leszek Koltunski
    mClearStencil = 0;
129 e6519ac8 Leszek Koltunski
    mClear = GLES31.GL_DEPTH_BUFFER_BIT | GLES31.GL_COLOR_BUFFER_BIT;
130 a9f41fa3 leszek
131 8426bd6a Leszek Koltunski
    mMipmap = 1.0f;
132 78db8663 Leszek Koltunski
133 af4cc5db Leszek Koltunski
    createProjection();
134
    }
135
136 c5369f1b leszek
///////////////////////////////////////////////////////////////////////////////////////////////////
137
138 be60d4ff leszek
  private void createProjection()
139 af4cc5db Leszek Koltunski
    {
140
    if( mWidth>0 && mHeight>1 )
141
      {
142
      if( mFOV>0.0f )  // perspective projection
143
        {
144 54fe333a leszek
        float a = 2.0f*(float)Math.tan(mFOV*Math.PI/360);
145 8426bd6a Leszek Koltunski
        float q = mWidth*mNear;
146
        float c = mHeight*mNear;
147 54fe333a leszek
148 c2c08950 leszek
        float left   = -q/2;
149
        float right  = +q/2;
150
        float bottom = -c/2;
151
        float top    = +c/2;
152
        float near   =  c/a;
153 54fe333a leszek
154 8426bd6a Leszek Koltunski
        mDistance    = mHeight/a;
155 af4cc5db Leszek Koltunski
        float far    = 2*mDistance-near;
156
157
        Matrix.frustumM(mProjectionMatrix, 0, left, right, bottom, top, near, far);
158
        }
159
      else             // parallel projection
160
        {
161 8426bd6a Leszek Koltunski
        float left   = -mWidth/2.0f;
162
        float right  = +mWidth/2.0f;
163
        float bottom = -mHeight/2.0f;
164
        float top    = +mHeight/2.0f;
165
        float near   = mWidth+mHeight-mHeight*(1.0f-mNear);
166
        mDistance    = mWidth+mHeight;
167
        float far    = mWidth+mHeight+mHeight*(1.0f-mNear);
168 af4cc5db Leszek Koltunski
169
        Matrix.orthoM(mProjectionMatrix, 0, left, right, bottom, top, near, far);
170
        }
171
      }
172
    }
173
174 1d6d261e Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
175
176 040cd18c Leszek Koltunski
  private static void createPostprocessingBuffers(int width, int height, float near)
177 1d6d261e Leszek Koltunski
    {
178
    float mipmap=1.0f;
179
180 9b94626c Leszek Koltunski
    for (int j=0; j<EffectQuality.LENGTH; j++)
181 1d6d261e Leszek Koltunski
      {
182 f4d6114c Leszek Koltunski
      mBuffer[j] = new DistortedFramebuffer(Distorted.FBO_QUEUE_SIZE,2,BOTH_DEPTH_STENCIL,TYPE_SYST, (int)(width*mipmap), (int)(height*mipmap) );
183 0f011027 Leszek Koltunski
      mBuffer[j].mMipmap = mipmap;
184 9b94626c Leszek Koltunski
      mBuffer[j].mNear = near;  // copy mNear as well (for blitting- see PostprocessEffect.apply() )
185
      mBuffer[j].glClearColor(1.0f, 1.0f, 1.0f, 0.0f);
186 a4b182d4 Leszek Koltunski
187 1d6d261e Leszek Koltunski
      mipmap *= EffectQuality.MULTIPLIER;
188
      }
189
190
    DistortedObject.toDo(); // create the FBOs immediately. This is safe as we must be holding the OpenGL context now.
191
192 e6519ac8 Leszek Koltunski
    GLES31.glStencilMask(0xff);
193
    GLES31.glDepthMask(true);
194 9b94626c Leszek Koltunski
    GLES31.glColorMask(true, true, true, true);
195
    GLES31.glClearColor(1.0f, 1.0f, 1.0f, 0.0f);
196 e6519ac8 Leszek Koltunski
    GLES31.glClearDepthf(1.0f);
197
    GLES31.glClearStencil(0);
198 1d6d261e Leszek Koltunski
199 9b94626c Leszek Koltunski
    for (int j=0; j<EffectQuality.LENGTH; j++)
200 1d6d261e Leszek Koltunski
      {
201 f4d6114c Leszek Koltunski
      for(int k=0; k<Distorted.FBO_QUEUE_SIZE; k++)
202
        {
203
        GLES31.glBindFramebuffer(GLES31.GL_FRAMEBUFFER, mBuffer[j].mFBOH[k]);
204
        GLES31.glFramebufferTexture2D(GLES31.GL_FRAMEBUFFER, GLES31.GL_COLOR_ATTACHMENT0, GLES31.GL_TEXTURE_2D, mBuffer[j].mColorH[2*k+1], 0);
205
        GLES31.glClear(GLES31.GL_COLOR_BUFFER_BIT | GLES31.GL_DEPTH_BUFFER_BIT | GLES31.GL_STENCIL_BUFFER_BIT);
206
        GLES31.glFramebufferTexture2D(GLES31.GL_FRAMEBUFFER, GLES31.GL_COLOR_ATTACHMENT0, GLES31.GL_TEXTURE_2D, mBuffer[j].mColorH[2*k  ], 0);
207
        GLES31.glClear(GLES31.GL_COLOR_BUFFER_BIT);
208
        }
209 1d6d261e Leszek Koltunski
      }
210 f4d6114c Leszek Koltunski
211
    GLES31.glBindFramebuffer(GLES31.GL_FRAMEBUFFER, 0);
212 1d6d261e Leszek Koltunski
    }
213
214 a4b182d4 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
215
216 ce154014 Leszek Koltunski
  static synchronized void onDestroy()
217 a4b182d4 Leszek Koltunski
    {
218 9b94626c Leszek Koltunski
    for(int j=0; j<EffectQuality.LENGTH; j++)
219 ce154014 Leszek Koltunski
      {
220 9b94626c Leszek Koltunski
      mBuffer[j] = null;
221 ce154014 Leszek Koltunski
      }
222
    }
223 a4b182d4 Leszek Koltunski
224 ce154014 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
225 ae2802b1 Leszek Koltunski
// The postprocessing buffers mBuffer[] are generally speaking too large (there's just one static
226 040cd18c Leszek Koltunski
// set of them) so before we use them for output, we need to adjust the Viewport as if they were
227 ae2802b1 Leszek Koltunski
// smaller. That takes care of outputting pixels to them. When we use them as input, we have to
228
// adjust the texture coords - see the get{Width|Height}Correction functions.
229 a4b182d4 Leszek Koltunski
230 040cd18c Leszek Koltunski
  private static void clonePostprocessingViewport(DistortedOutputSurface from)
231 ce154014 Leszek Koltunski
    {
232 040cd18c Leszek Koltunski
    if( mBuffer[0].mWidth != from.mWidth || mBuffer[0].mHeight != from.mHeight )
233 a4b182d4 Leszek Koltunski
      {
234 ce154014 Leszek Koltunski
      DistortedOutputSurface surface;
235
236
      for(int i=0; i<EffectQuality.LENGTH; i++)
237
        {
238
        surface = mBuffer[i];
239
240
        surface.mWidth  = (int)(from.mWidth *surface.mMipmap);
241
        surface.mHeight = (int)(from.mHeight*surface.mMipmap);
242
243
        surface.mNear   = from.mNear;  // Near plane is independent of the mipmap level
244
245 ae2802b1 Leszek Koltunski
        //android.util.Log.e("surface", "viewport "+i+" to ("+from.mWidth+"x"+from.mHeight+")");
246 b0f04e72 Leszek Koltunski
247 ce154014 Leszek Koltunski
        surface.createProjection();
248
249
        int maxw = surface.mWidth  > surface.mRealWidth  ? surface.mWidth  : surface.mRealWidth;
250
        int maxh = surface.mHeight > surface.mRealHeight ? surface.mHeight : surface.mRealHeight;
251 a4b182d4 Leszek Koltunski
252 ce154014 Leszek Koltunski
        if (maxw > surface.mRealWidth || maxh > surface.mRealHeight)
253
          {
254
          surface.mRealWidth = maxw;
255
          surface.mRealHeight = maxh;
256
257 341151fc Leszek Koltunski
          surface.recreate();
258
          surface.create();
259 ce154014 Leszek Koltunski
          }
260
        }
261 a4b182d4 Leszek Koltunski
      }
262
    }
263
264 6b962e80 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
265
266 9d845904 Leszek Koltunski
  private int blitWithDepth(long currTime, DistortedOutputSurface buffer,int fbo)
267 6b962e80 Leszek Koltunski
    {
268 e6519ac8 Leszek Koltunski
    GLES31.glViewport(0, 0, mWidth, mHeight);
269 f4d6114c Leszek Koltunski
    setAsOutputFBO(currTime,fbo);
270 e6519ac8 Leszek Koltunski
    GLES31.glActiveTexture(GLES31.GL_TEXTURE0);
271 f4d6114c Leszek Koltunski
    GLES31.glBindTexture(GLES31.GL_TEXTURE_2D, buffer.mColorH[2*fbo]);
272 e6519ac8 Leszek Koltunski
    GLES31.glActiveTexture(GLES31.GL_TEXTURE1);
273 f4d6114c Leszek Koltunski
    GLES31.glBindTexture(GLES31.GL_TEXTURE_2D, buffer.mDepthStencilH[fbo]);
274 6b962e80 Leszek Koltunski
275 e6519ac8 Leszek Koltunski
    GLES31.glDisable(GLES31.GL_STENCIL_TEST);
276
    GLES31.glStencilMask(0x00);
277 6b962e80 Leszek Koltunski
278 ae2802b1 Leszek Koltunski
    DistortedEffects.blitDepthPriv(this, buffer.getWidthCorrection(), buffer.getHeightCorrection() );
279 e6519ac8 Leszek Koltunski
    GLES31.glActiveTexture(GLES31.GL_TEXTURE0);
280
    GLES31.glBindTexture(GLES31.GL_TEXTURE_2D, 0);
281
    GLES31.glActiveTexture(GLES31.GL_TEXTURE1);
282
    GLES31.glBindTexture(GLES31.GL_TEXTURE_2D, 0);
283 6b962e80 Leszek Koltunski
284
    // clear buffers
285 e6519ac8 Leszek Koltunski
    GLES31.glStencilMask(0xff);
286
    GLES31.glDepthMask(true);
287
    GLES31.glColorMask(true,true,true,true);
288
    GLES31.glClearColor(0.0f,0.0f,0.0f,0.0f);
289
    GLES31.glClearDepthf(1.0f);
290
    GLES31.glClearStencil(0);
291 6b962e80 Leszek Koltunski
292 f4d6114c Leszek Koltunski
    buffer.setAsOutputFBO(fbo);
293
    GLES31.glFramebufferTexture2D(GLES31.GL_FRAMEBUFFER, GLES31.GL_COLOR_ATTACHMENT0, GLES31.GL_TEXTURE_2D, buffer.mColorH[2*fbo+1], 0);
294 e6519ac8 Leszek Koltunski
    GLES31.glClear(GLES31.GL_COLOR_BUFFER_BIT|GLES31.GL_DEPTH_BUFFER_BIT|GLES31.GL_STENCIL_BUFFER_BIT);
295 f4d6114c Leszek Koltunski
    GLES31.glFramebufferTexture2D(GLES31.GL_FRAMEBUFFER, GLES31.GL_COLOR_ATTACHMENT0, GLES31.GL_TEXTURE_2D, buffer.mColorH[2*fbo  ], 0);
296 e6519ac8 Leszek Koltunski
    GLES31.glClear(GLES31.GL_COLOR_BUFFER_BIT);
297 6b962e80 Leszek Koltunski
298
    return 1;
299
    }
300
301 040cd18c Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
302
303
  void clear()
304
    {
305
    DistortedRenderState.colorDepthStencilOn();
306
    GLES31.glClearColor(mClearR, mClearG, mClearB, mClearA);
307
    GLES31.glClearDepthf(mClearDepth);
308
    GLES31.glClearStencil(mClearStencil);
309
    GLES31.glClear(mClear);
310
    DistortedRenderState.colorDepthStencilRestore();
311
    }
312
313 af4cc5db Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
314 e02264ff leszek
// Render all children, one by one. If there are no postprocessing effects, just render to THIS.
315
// Otherwise, render to a buffer and on each change of Postprocessing Bucket, apply the postprocessing
316 9455da17 Leszek Koltunski
// to a whole buffer (lastQueue.postprocess) and merge it (this.blitWithDepth).
317 39086ebb leszek
318 9d845904 Leszek Koltunski
  int renderChildren(long time, int numChildren, ArrayList<DistortedNode> children, int fbo)
319 b2939df4 Leszek Koltunski
    {
320 7266d8ef Leszek Koltunski
    int quality=0, internalQuality = 0, numRenders = 0, bucketChange = 0;
321 3f44e745 Leszek Koltunski
    DistortedNode child1, child2;
322 70b6a155 Leszek Koltunski
    EffectQueuePostprocess lastQueue=null, currQueue;
323 915b7b2b leszek
    long lastBucket=0, currBucket;
324 0afc143a leszek
325 8e28b6ff leszek
    for(int i=0; i<numChildren; i++)
326 39086ebb leszek
      {
327 3f44e745 Leszek Koltunski
      child1 = children.get(i);
328 70b6a155 Leszek Koltunski
      currQueue = child1.getPostprocessQueue();
329
      currBucket= currQueue.getID();
330 b9798977 leszek
331 040cd18c Leszek Koltunski
      if( currBucket==0 )
332
        {
333 f4d6114c Leszek Koltunski
        setAsOutputFBO(time,fbo);
334 040cd18c Leszek Koltunski
        numRenders += child1.draw(time,this);
335
        }
336 60c1c622 leszek
      else
337
        {
338 9b94626c Leszek Koltunski
        if( mBuffer[0]==null ) createPostprocessingBuffers(mWidth,mHeight,mNear);
339 c9a24bfb Leszek Koltunski
340 915b7b2b leszek
        if( lastBucket!=currBucket )
341 c9a24bfb Leszek Koltunski
          {
342 040cd18c Leszek Koltunski
          if( lastBucket==0 )
343
            {
344
            clonePostprocessingViewport(this);
345
            }
346
          else
347 c9a24bfb Leszek Koltunski
            {
348
            for(int j=bucketChange; j<i; j++)
349
              {
350 3f44e745 Leszek Koltunski
              child2 = children.get(j);
351 f4d6114c Leszek Koltunski
              mBuffer[internalQuality].setAsOutputFBO(fbo);
352 70b6a155 Leszek Koltunski
              numRenders += child2.markStencilAndDepth(time,mBuffer[internalQuality],lastQueue);
353 c9a24bfb Leszek Koltunski
              }
354
355 f4d6114c Leszek Koltunski
            numRenders += lastQueue.postprocess(mBuffer,fbo);
356 9d845904 Leszek Koltunski
            numRenders += blitWithDepth(time, mBuffer[quality],fbo);
357 9e999930 Leszek Koltunski
            mBuffer[quality].clearBuffer(fbo);
358 c9a24bfb Leszek Koltunski
            }
359 660cd468 leszek
360 70b6a155 Leszek Koltunski
          internalQuality = currQueue.getInternalQuality();
361
          quality         = currQueue.getQuality();
362
          bucketChange    = i;
363 c9a24bfb Leszek Koltunski
          }
364
365 f4d6114c Leszek Koltunski
        mBuffer[quality].setAsOutputFBO(time,fbo);
366 8dccc3c2 Leszek Koltunski
        child1.drawNoBlend(time,mBuffer[quality]);
367 c9a24bfb Leszek Koltunski
368 8e28b6ff leszek
        if( i==numChildren-1 )
369 cf7394cc leszek
          {
370 8e28b6ff leszek
          for(int j=bucketChange; j<numChildren; j++)
371 c9a24bfb Leszek Koltunski
            {
372 3f44e745 Leszek Koltunski
            child2 = children.get(j);
373 f4d6114c Leszek Koltunski
            mBuffer[internalQuality].setAsOutputFBO(fbo);
374 70b6a155 Leszek Koltunski
            numRenders += child2.markStencilAndDepth(time,mBuffer[internalQuality],currQueue);
375 c9a24bfb Leszek Koltunski
            }
376
377 f4d6114c Leszek Koltunski
          numRenders += currQueue.postprocess(mBuffer,fbo);
378 9d845904 Leszek Koltunski
          numRenders += blitWithDepth(time, mBuffer[quality],fbo);
379 cf7394cc leszek
          }
380 9b94626c Leszek Koltunski
        } // end else (postprocessed child)
381 b9798977 leszek
382 70b6a155 Leszek Koltunski
      lastQueue = currQueue;
383
      lastBucket= currBucket;
384 040cd18c Leszek Koltunski
      } // end main for loop
385 270c27bc Leszek Koltunski
386 39086ebb leszek
    return numRenders;
387
    }
388
389 be60d4ff leszek
///////////////////////////////////////////////////////////////////////////////////////////////////
390
391 26a4e5f6 leszek
  ArrayList<DistortedNode> getChildren()
392 be60d4ff leszek
    {
393 26a4e5f6 leszek
    return mChildren;
394 be60d4ff leszek
    }
395
396 ae2802b1 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
397
/**
398
 * Not part of the Public API.
399
 *
400
 * @y.exclude
401
 */
402
  public float getWidthCorrection()
403
    {
404
    return (float)mWidth/mRealWidth;
405
    }
406
407
///////////////////////////////////////////////////////////////////////////////////////////////////
408
/**
409
 * Not part of the Public API.
410
 *
411
 * @y.exclude
412
 */
413
  public float getHeightCorrection()
414
    {
415
    return (float)mHeight/mRealHeight;
416
    }
417
418 9455da17 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
419 9b94626c Leszek Koltunski
420 9e999930 Leszek Koltunski
  private void clearBuffer(int fbo)
421 9455da17 Leszek Koltunski
    {
422
    DistortedRenderState.colorDepthStencilOn();
423 9e999930 Leszek Koltunski
424 9455da17 Leszek Koltunski
    GLES31.glClearColor(mClearR, mClearG, mClearB, mClearA);
425 9e999930 Leszek Koltunski
    GLES31.glClearDepthf(mClearDepth);
426
    GLES31.glClearStencil(mClearStencil);
427
428
    GLES31.glBindFramebuffer(GLES31.GL_FRAMEBUFFER, mFBOH[fbo]);
429
    GLES31.glFramebufferTexture2D(GLES31.GL_FRAMEBUFFER, GLES31.GL_COLOR_ATTACHMENT0, GLES31.GL_TEXTURE_2D, mColorH[2*fbo+1], 0);
430
    GLES31.glClear(GLES31.GL_COLOR_BUFFER_BIT|GLES31.GL_DEPTH_BUFFER_BIT|GLES31.GL_STENCIL_BUFFER_BIT);
431
    GLES31.glFramebufferTexture2D(GLES31.GL_FRAMEBUFFER, GLES31.GL_COLOR_ATTACHMENT0, GLES31.GL_TEXTURE_2D, mColorH[2*fbo  ], 0);
432 9455da17 Leszek Koltunski
    GLES31.glClear(GLES31.GL_COLOR_BUFFER_BIT);
433 9e999930 Leszek Koltunski
434 9455da17 Leszek Koltunski
    DistortedRenderState.colorDepthStencilRestore();
435
    }
436
437 9d845904 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
438
439 f4d6114c Leszek Koltunski
  private void setAsOutputFBO(long time, int fbo)
440 9d845904 Leszek Koltunski
    {
441
    if( fbo>=0 && fbo<mNumFBOs )
442
      {
443
      GLES31.glBindFramebuffer(GLES31.GL_FRAMEBUFFER, mFBOH[fbo]);
444
445
      if (mTime[fbo] != time)
446
        {
447
        mTime[fbo] = time;
448
        clear();
449
        }
450
      }
451
    else
452
      {
453 f4d6114c Leszek Koltunski
      android.util.Log.e("surface", "error in setAsOutput1, fbo="+fbo);
454
      }
455
    }
456
457
///////////////////////////////////////////////////////////////////////////////////////////////////
458
/**
459
 * Not part of the Public API.
460
 *
461
 * @y.exclude
462
 */
463
  public void setAsOutputFBO(int fbo)
464
    {
465
    if( fbo>=0 && fbo<mNumFBOs )
466
      {
467
      GLES31.glBindFramebuffer(GLES31.GL_FRAMEBUFFER, mFBOH[fbo]);
468
      }
469
    else
470
      {
471
      android.util.Log.e("surface", "error in setAsOutput2, fbo="+fbo);
472 9d845904 Leszek Koltunski
      }
473
    }
474
475 b2939df4 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
476
// PUBLIC API
477 39086ebb leszek
///////////////////////////////////////////////////////////////////////////////////////////////////
478 9d845904 Leszek Koltunski
/**
479
 * Draws all the attached children to this OutputSurface's 0th FBO.
480
 * <p>
481
 * Must be called from a thread holding OpenGL Context.
482
 *
483
 * @param time Current time, in milliseconds. This will be passed to all the Effects stored in the children Nodes.
484
 * @return Number of objects rendered.
485
 */
486
  public int render(long time)
487
    {
488
    return render(time,0);
489
    }
490 86e99907 leszek
491 9d845904 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
492 c5369f1b leszek
/**
493 d9706fd2 Leszek Koltunski
 * Draws all the attached children to this OutputSurface.
494 af4cc5db Leszek Koltunski
 * <p>
495
 * Must be called from a thread holding OpenGL Context.
496
 *
497 d9706fd2 Leszek Koltunski
 * @param time Current time, in milliseconds. This will be passed to all the Effects stored in the children Nodes.
498 9d845904 Leszek Koltunski
 * @param fbo The surface can have many FBOs backing it up - render this to FBO number 'fbo'.
499 7691a39f leszek
 * @return Number of objects rendered.
500 c5369f1b leszek
 */
501 9d845904 Leszek Koltunski
  public int render(long time, int fbo)
502 af4cc5db Leszek Koltunski
    {
503 c204c69d leszek
    // change tree topology (attach and detach children)
504 889cce10 Leszek Koltunski
/*
505 42571056 Leszek Koltunski
    boolean changed1 =
506 889cce10 Leszek Koltunski
*/
507 efe3d8fe leszek
    DistortedMaster.toDo();
508 eadf0859 leszek
/*
509 42571056 Leszek Koltunski
    if( changed1 )
510 c204c69d leszek
      {
511
      for(int i=0; i<mNumChildren; i++)
512
        {
513 af27df87 leszek
        mChildren.get(i).debug(0);
514 c204c69d leszek
        }
515 af27df87 leszek
516 7691a39f leszek
      DistortedNode.debugMap();
517 c204c69d leszek
      }
518 eadf0859 leszek
*/
519 09ab7524 Leszek Koltunski
    // create and delete all underlying OpenGL resources
520
    // Watch out: FIRST change topology, only then deal
521
    // with OpenGL resources. That's because changing Tree
522
    // can result in additional Framebuffers that would need
523
    // to be created immediately, before the calls to drawRecursive()
524 42571056 Leszek Koltunski
/*
525
    boolean changed2 =
526
*/
527 f8377ef8 leszek
    toDo();
528 eadf0859 leszek
/*
529 42571056 Leszek Koltunski
    if( changed2 )
530 af27df87 leszek
      {
531 226144d0 leszek
      DistortedObject.debugLists();
532 42571056 Leszek Koltunski
      }
533 eadf0859 leszek
*/
534 c834348d leszek
    // mark OpenGL state as unknown
535
    DistortedRenderState.reset();
536 2ed1c692 leszek
537 b2939df4 Leszek Koltunski
    int numRenders=0;
538 7691a39f leszek
539 d9706fd2 Leszek Koltunski
    for(int i=0; i<mNumChildren; i++)
540 af4cc5db Leszek Koltunski
      {
541 b2939df4 Leszek Koltunski
      numRenders += mChildren.get(i).renderRecursive(time);
542 af4cc5db Leszek Koltunski
      }
543 7691a39f leszek
544 9d845904 Leszek Koltunski
    numRenders += renderChildren(time,mNumChildren,mChildren,fbo);
545 b2939df4 Leszek Koltunski
546 7691a39f leszek
    return numRenders;
547 af4cc5db Leszek Koltunski
    }
548
549
///////////////////////////////////////////////////////////////////////////////////////////////////
550 c5369f1b leszek
/**
551
 * Bind this Surface as a Framebuffer we can render to.
552 02ab6f9d leszek
 *
553
 * @param time Present time, in milliseconds. The point: looking at this param the library can figure
554
 *             out if this is the first time during present frame that this FBO is being set as output.
555
 *             If so, the library, in addition to binding the Surface for output, also clears the
556
 *             Surface's color and depth attachments.
557 c5369f1b leszek
 */
558 95c441a2 leszek
  public void setAsOutput(long time)
559 a436ccc5 leszek
    {
560 e6519ac8 Leszek Koltunski
    GLES31.glBindFramebuffer(GLES31.GL_FRAMEBUFFER, mFBOH[0]);
561 95c441a2 leszek
562 9d845904 Leszek Koltunski
    if( mTime[0]!=time )
563 95c441a2 leszek
      {
564 9d845904 Leszek Koltunski
      mTime[0] = time;
565 040cd18c Leszek Koltunski
      clear();
566 95c441a2 leszek
      }
567 a436ccc5 leszek
    }
568 af4cc5db Leszek Koltunski
569 1dfc9074 leszek
///////////////////////////////////////////////////////////////////////////////////////////////////
570
/**
571
 * Bind this Surface as a Framebuffer we can render to.
572
 * <p>
573
 * This version does not attempt to clear anything.
574
 */
575
  public void setAsOutput()
576
    {
577 e6519ac8 Leszek Koltunski
    GLES31.glBindFramebuffer(GLES31.GL_FRAMEBUFFER, mFBOH[0]);
578 1dfc9074 leszek
    }
579
580
///////////////////////////////////////////////////////////////////////////////////////////////////
581
/**
582
 * Return the Near plane of the Projection included in the Surface.
583
 *
584
 * @return the Near plane.
585
 */
586
  public float getNear()
587
    {
588
    return mNear;
589
    }
590
591 638b5b5c leszek
///////////////////////////////////////////////////////////////////////////////////////////////////
592
/**
593
 * Set mipmap level.
594
 * <p>
595
 * Trick for speeding up your renders - one can create a pyramid of OutputSurface objects, each next
596
 * one some constant FACTOR smaller than the previous (0.5 is the common value), then set the Mipmap
597
 * Level of the i-th object to be FACTOR^i (we start counting from 0). When rendering any scene into
598
 * such prepared OutputSurface, the library will make sure to scale any Effects used so that the end
599
 * scene will end up looking identical no matter which object we render to. Identical, that is, except
600
 * for the loss of quality and gain in speed associated with rendering to a smaller Surface.
601 8426bd6a Leszek Koltunski
 * <p>
602
 * Example: if you create two FBOs, one 1000x1000 and another 500x500 in size, and set the second one
603
 * mipmap to 0.5 (the first one's is 1.0 by default), define Effects to be a single move by (100,100),
604
 * and render a skinned Mesh into both FBO, the end result will look proportionally the same, because
605
 * in the second case the move vector (100,100) will be auto-scaled to (50,50).
606 638b5b5c leszek
 *
607
 * @param mipmap The mipmap level. Acceptable range: 0&lt;mipmap&lt;infinity, although mipmap&gt;1
608
 *               does not make any sense (that would result in loss of speed and no gain in quality)
609
 */
610
  public void setMipmap(float mipmap)
611
    {
612
    mMipmap = mipmap;
613
    }
614
615 a9f41fa3 leszek
///////////////////////////////////////////////////////////////////////////////////////////////////
616
/**
617 e6519ac8 Leszek Koltunski
 * Set the (R,G,B,A) values of GLES31.glClearColor() to set up color with which to clear
618 ad16ed3b Leszek Koltunski
 * this Surface at the beginning of each frame.
619 a9f41fa3 leszek
 *
620
 * @param r the Red component. Default: 0.0f
621
 * @param g the Green component. Default: 0.0f
622
 * @param b the Blue component. Default: 0.0f
623
 * @param a the Alpha component. Default: 0.0f
624
 */
625
  public void glClearColor(float r, float g, float b, float a)
626
    {
627
    mClearR = r;
628
    mClearG = g;
629
    mClearB = b;
630
    mClearA = a;
631
    }
632
633
///////////////////////////////////////////////////////////////////////////////////////////////////
634
/**
635 23eecbd9 Leszek Koltunski
 * Uses glClearDepthf() to set up a value with which to clear
636
 * the Depth buffer of our Surface at the beginning of each frame.
637 a9f41fa3 leszek
 *
638
 * @param d the Depth. Default: 1.0f
639
 */
640
  public void glClearDepthf(float d)
641
    {
642
    mClearDepth = d;
643
    }
644
645 23eecbd9 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
646
/**
647
 * Uses glClearStencil() to set up a value with which to clear the
648
 * Stencil buffer of our Surface at the beginning of each frame.
649
 *
650
 * @param s the Stencil. Default: 0
651
 */
652
  public void glClearStencil(int s)
653
    {
654
    mClearStencil = s;
655
    }
656
657 ad16ed3b Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
658
/**
659
 * Which buffers to Clear at the beginning of each frame?
660
 * <p>
661
 * Valid values: 0, or bitwise OR of one or more values from the set GL_COLOR_BUFFER_BIT,
662
 *               GL_DEPTH_BUFFER_BIT, GL_STENCIL_BUFFER_BIT.
663
 * Default: GL_DEPTH_BUFFER_BIT | GL_COLOR_BUFFER_BIT.
664
 *
665
 * @param mask bitwise OR of BUFFER_BITs to clear.
666
 */
667
  public void glClear(int mask)
668
    {
669
    mClear = mask;
670
    }
671
672 af4cc5db Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
673
/**
674
 * Create new Projection matrix.
675
 *
676
 * @param fov Vertical 'field of view' of the Projection frustrum (in degrees).
677 54fe333a leszek
 *            Valid values: 0<=fov<180. FOV==0 means 'parallel projection'.
678
 * @param near Distance between the screen plane and the near plane.
679 61441ce2 Leszek Koltunski
 *             Valid vaules: 0<near<1. When near==0 (illegal!), the Near Plane is exactly at the tip of
680
 *             the pyramid. When near==1 (illegal!) the near plane is equivalent to the screen plane.
681 af4cc5db Leszek Koltunski
 */
682 54fe333a leszek
  public void setProjection(float fov, float near)
683 af4cc5db Leszek Koltunski
    {
684 8069e806 Leszek Koltunski
    if( fov < 180.0f && fov >=0.0f )
685
      {
686
      mFOV = fov;
687
      }
688
689
    if( near<   1.0f && near> 0.0f )
690
      {
691
      mNear= near;
692
      }
693
    else if( near<=0.0f )
694
      {
695
      mNear = 0.01f;
696
      }
697
    else if( near>=1.0f )
698
      {
699
      mNear=0.99f;
700
      }
701 af4cc5db Leszek Koltunski
702 040cd18c Leszek Koltunski
    if( mBuffer!=null )
703 1dfc9074 leszek
      {
704
      for(int j=0; j<EffectQuality.LENGTH; j++) mBuffer[j].mNear = mNear;
705
      }
706
707 af4cc5db Leszek Koltunski
    createProjection();
708
    }
709
710
///////////////////////////////////////////////////////////////////////////////////////////////////
711 c5369f1b leszek
/**
712 af4cc5db Leszek Koltunski
 * Resize the underlying Framebuffer.
713 c7da4e65 leszek
 * <p>
714
 * This method can be safely called mid-render as it doesn't interfere with rendering.
715 af4cc5db Leszek Koltunski
 *
716
 * @param width The new width.
717
 * @param height The new height.
718 c5369f1b leszek
 */
719 af4cc5db Leszek Koltunski
  public void resize(int width, int height)
720
    {
721
    if( mWidth!=width || mHeight!=height )
722
      {
723 a4b182d4 Leszek Koltunski
      mWidth = mRealWidth = width;
724
      mHeight= mRealHeight= height;
725 f8377ef8 leszek
726
      createProjection();
727
728 c7da4e65 leszek
      if( mColorCreated==CREATED )
729 f8377ef8 leszek
        {
730 f28fffc2 Leszek Koltunski
        markForCreation();
731 f8377ef8 leszek
        recreate();
732
        }
733 af4cc5db Leszek Koltunski
      }
734
    }
735 a09ada4c Leszek Koltunski
736 a436ccc5 leszek
///////////////////////////////////////////////////////////////////////////////////////////////////
737
/**
738 89de975c leszek
 * Return true if the Surface contains a DEPTH attachment.
739 a436ccc5 leszek
 *
740 89de975c leszek
 * @return <bold>true</bold> if the Surface contains a DEPTH attachment.
741 a436ccc5 leszek
 */
742 89de975c leszek
  public boolean hasDepth()
743 a436ccc5 leszek
    {
744 89de975c leszek
    return mDepthStencilCreated==CREATED;
745 a436ccc5 leszek
    }
746
747
///////////////////////////////////////////////////////////////////////////////////////////////////
748
/**
749 89de975c leszek
 * Return true if the Surface contains a STENCIL attachment.
750 a436ccc5 leszek
 *
751 89de975c leszek
 * @return <bold>true</bold> if the Surface contains a STENCIL attachment.
752 a436ccc5 leszek
 */
753 89de975c leszek
  public boolean hasStencil()
754 a436ccc5 leszek
    {
755 89de975c leszek
    return (mDepthStencilCreated==CREATED && mDepthStencil==BOTH_DEPTH_STENCIL);
756 a436ccc5 leszek
    }
757
758 a09ada4c Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
759
/**
760
 * Adds a new child to the last position in the list of our Surface's children.
761 c204c69d leszek
 * <p>
762
 * We cannot do this mid-render - actual attachment will be done just before the next render, by the
763 efe3d8fe leszek
 * DistortedMaster (by calling doWork())
764 a09ada4c Leszek Koltunski
 *
765
 * @param node The new Node to add.
766
 */
767 c204c69d leszek
  public void attach(DistortedNode node)
768 a09ada4c Leszek Koltunski
    {
769 ffbe7ecf Leszek Koltunski
    mJobs.add(new Job(ATTACH,node));
770 efe3d8fe leszek
    DistortedMaster.newSlave(this);
771 a09ada4c Leszek Koltunski
    }
772
773
///////////////////////////////////////////////////////////////////////////////////////////////////
774
/**
775
 * Adds a new child to the last position in the list of our Surface's children.
776 c204c69d leszek
 * <p>
777
 * We cannot do this mid-render - actual attachment will be done just before the next render, by the
778 efe3d8fe leszek
 * DistortedMaster (by calling doWork())
779 a09ada4c Leszek Koltunski
 *
780
 * @param surface InputSurface to initialize our child Node with.
781
 * @param effects DistortedEffects to initialize our child Node with.
782
 * @param mesh MeshObject to initialize our child Node with.
783
 * @return the newly constructed child Node, or null if we couldn't allocate resources.
784
 */
785 c204c69d leszek
  public DistortedNode attach(DistortedInputSurface surface, DistortedEffects effects, MeshObject mesh)
786 a09ada4c Leszek Koltunski
    {
787
    DistortedNode node = new DistortedNode(surface,effects,mesh);
788 ffbe7ecf Leszek Koltunski
    mJobs.add(new Job(ATTACH,node));
789 efe3d8fe leszek
    DistortedMaster.newSlave(this);
790 c204c69d leszek
    return node;
791
    }
792
793 af27df87 leszek
///////////////////////////////////////////////////////////////////////////////////////////////////
794
/**
795
 * Removes the first occurrence of a specified child from the list of children of our Surface.
796
 * <p>
797
 * A bit questionable method as there can be many different Nodes attached as children, some
798
 * of them having the same Effects but - for instance - different Mesh. Use with care.
799
 * <p>
800
 * We cannot do this mid-render - actual detachment will be done just before the next render, by the
801 efe3d8fe leszek
 * DistortedMaster (by calling doWork())
802 af27df87 leszek
 *
803
 * @param effects DistortedEffects to remove.
804
 */
805
  public void detach(DistortedEffects effects)
806
    {
807
    long id = effects.getID();
808
    DistortedNode node;
809 8baa1fe6 Leszek Koltunski
    boolean detached = false;
810 af27df87 leszek
811
    for(int i=0; i<mNumChildren; i++)
812
      {
813
      node = mChildren.get(i);
814
815
      if( node.getEffects().getID()==id )
816
        {
817 8baa1fe6 Leszek Koltunski
        detached = true;
818 ffbe7ecf Leszek Koltunski
        mJobs.add(new Job(DETACH,node));
819 efe3d8fe leszek
        DistortedMaster.newSlave(this);
820 af27df87 leszek
        break;
821
        }
822
      }
823 8baa1fe6 Leszek Koltunski
824
    if( !detached )
825
      {
826
      // if we failed to detach any, it still might be the case that
827 efe3d8fe leszek
      // there's an ATTACH job that we need to cancel.
828
      int num = mJobs.size();
829
      Job job;
830
831
      for(int i=0; i<num; i++)
832
        {
833
        job = mJobs.get(i);
834
835
        if( job.type==ATTACH && job.node.getEffects()==effects )
836
          {
837
          mJobs.remove(i);
838
          break;
839
          }
840
        }
841 8baa1fe6 Leszek Koltunski
      }
842 af27df87 leszek
    }
843
844 a09ada4c Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
845
/**
846
 * Removes the first occurrence of a specified child from the list of children of our Surface.
847 c204c69d leszek
 * <p>
848
 * We cannot do this mid-render - actual attachment will be done just before the next render, by the
849 efe3d8fe leszek
 * DistortedMaster (by calling doWork())
850 c204c69d leszek
 *
851
 * @param node The Node to remove.
852
 */
853
  public void detach(DistortedNode node)
854
    {
855 ffbe7ecf Leszek Koltunski
    mJobs.add(new Job(DETACH,node));
856 efe3d8fe leszek
    DistortedMaster.newSlave(this);
857 a09ada4c Leszek Koltunski
    }
858
859
///////////////////////////////////////////////////////////////////////////////////////////////////
860
/**
861
 * Removes all children Nodes.
862 c204c69d leszek
 * <p>
863
 * We cannot do this mid-render - actual attachment will be done just before the next render, by the
864 efe3d8fe leszek
 * DistortedMaster (by calling doWork())
865 c204c69d leszek
 */
866
  public void detachAll()
867
    {
868 ffbe7ecf Leszek Koltunski
    mJobs.add(new Job(DETALL,null));
869 efe3d8fe leszek
    DistortedMaster.newSlave(this);
870 c204c69d leszek
    }
871
872
///////////////////////////////////////////////////////////////////////////////////////////////////
873
/**
874
 * This is not really part of the public API. Has to be public only because it is a part of the
875 efe3d8fe leszek
 * DistortedSlave interface, which should really be a class that we extend here instead but
876 c204c69d leszek
 * Java has no multiple inheritance.
877 43fbf0dd leszek
 *
878
 * @y.exclude
879 a09ada4c Leszek Koltunski
 */
880 efe3d8fe leszek
  public void doWork()
881 a09ada4c Leszek Koltunski
    {
882 efe3d8fe leszek
    int num = mJobs.size();
883
    Job job;
884
885
    for(int i=0; i<num; i++)
886
      {
887
      job = mJobs.remove(0);
888
889
      switch(job.type)
890
        {
891 be60d4ff leszek
        case ATTACH: if( mChildren==null ) mChildren = new ArrayList<>(2);
892
                     job.node.setSurfaceParent(this);
893 040cd18c Leszek Koltunski
                     DistortedMaster.addSortingByBuckets(mChildren,job.node);
894 efe3d8fe leszek
                     mNumChildren++;
895
                     break;
896 be60d4ff leszek
        case DETACH: if( mNumChildren>0 && mChildren.remove(job.node) )
897 efe3d8fe leszek
                       {
898 be60d4ff leszek
                       job.node.setSurfaceParent(null);
899 efe3d8fe leszek
                       mNumChildren--;
900
                       }
901
                     break;
902 be60d4ff leszek
        case DETALL: if( mNumChildren>0 )
903 efe3d8fe leszek
                       {
904 be60d4ff leszek
                       DistortedNode tmp;
905
906
                       for(int j=mNumChildren-1; j>=0; j--)
907
                         {
908
                         tmp = mChildren.remove(j);
909
                         tmp.setSurfaceParent(null);
910
                         }
911
912 efe3d8fe leszek
                       mNumChildren = 0;
913
                       }
914
                     break;
915 ffbe7ecf Leszek Koltunski
        case SORT  : mChildren.remove(job.node);
916 040cd18c Leszek Koltunski
                     DistortedMaster.addSortingByBuckets(mChildren,job.node);
917 efe3d8fe leszek
                     break;
918
        }
919
      }
920 a09ada4c Leszek Koltunski
    }
921 af4cc5db Leszek Koltunski
}