Project

General

Profile

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

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

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 DistortedAttacheable
29
{
30
  private static int mRender = 0;
31

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

    
35
  private float mX, mY, mFOV;
36
  int mWidth,mHeight,mDepth;
37
  float mDistance;
38
  float[] mProjectionMatrix;
39

    
40
  int mDepthCreated;
41
  int[] mDepthH = new int[1];
42
  int[] mFBOH   = new int[1];
43

    
44
///////////////////////////////////////////////////////////////////////////////////////////////////
45

    
46
  DistortedOutputSurface(int width, int height, int createColor, int createDepth, int fbo, int type)
47
    {
48
    super(width,height,createColor,type);
49

    
50
    mProjectionMatrix = new float[16];
51

    
52
    mWidth = width;
53
    mHeight= height;
54

    
55
    mFOV = 60.0f;
56
    mX   =  0.0f;
57
    mY   =  0.0f;
58

    
59
    mDepthCreated= createDepth;
60
    mFBOH[0]     = fbo;
61
    mDepthH[0]   = 0;
62

    
63
    createProjection();
64
    }
65

    
66
///////////////////////////////////////////////////////////////////////////////////////////////////
67

    
68
  void createProjection()
69
    {
70
    if( mWidth>0 && mHeight>1 )
71
      {
72
      if( mFOV>0.0f )  // perspective projection
73
        {
74
        float left   = (-mX-mWidth /2.0f)/mHeight;
75
        float right  = (-mX+mWidth /2.0f)/mHeight;
76
        float bottom = (-mY-mHeight/2.0f)/mHeight;
77
        float top    = (-mY+mHeight/2.0f)/mHeight;
78
        float near   = (top-bottom) / (2.0f*(float)Math.tan(mFOV*Math.PI/360));
79
        mDistance    = mHeight*near/(top-bottom);
80
        float far    = 2*mDistance-near;
81
        mDepth       = (int)((far-near)/2);
82

    
83
        Matrix.frustumM(mProjectionMatrix, 0, left, right, bottom, top, near, far);
84
        }
85
      else             // parallel projection
86
        {
87
        float left   = -mX-mWidth /2.0f;
88
        float right  = -mX+mWidth /2.0f;
89
        float bottom = -mY-mHeight/2.0f;
90
        float top    = -mY+mHeight/2.0f;
91
        float near   = (mWidth+mHeight)/2;
92
        mDistance    = 2*near;
93
        float far    = 3*near;
94
        mDepth       = (int)near;
95

    
96
        Matrix.orthoM(mProjectionMatrix, 0, left, right, bottom, top, near, far);
97
        }
98
      }
99
    }
100

    
101
///////////////////////////////////////////////////////////////////////////////////////////////////
102
// PUBLIC API
103
///////////////////////////////////////////////////////////////////////////////////////////////////
104
/**
105
 * Draws all the attached children to this OutputSurface.
106
 * <p>
107
 * Must be called from a thread holding OpenGL Context.
108
 *
109
 * @param time Current time, in milliseconds. This will be passed to all the Effects stored in the children Nodes.
110
 * @return Number of objects rendered.
111
 */
112
  public int render(long time)
113
    {
114
    mRender++;
115

    
116
    // change tree topology (attach and detach children)
117
/*
118
    boolean changed =
119
*/
120
    DistortedAttachDaemon.toDo();
121
/*
122
    // debugging only
123
    if( changed )
124
      {
125
      for(int i=0; i<mNumChildren; i++)
126
        {
127
        mChildren.get(i).debug(0);
128
        }
129

    
130
      DistortedNode.debugMap();
131
      }
132
*/
133
    // create and delete all underlying OpenGL resources
134
    // Watch out: FIRST change topology, only then deal
135
    // with OpenGL resources. That's because changing Tree
136
    // can result in additional Framebuffers that would need
137
    // to be created immediately, before the calls to drawRecursive()
138
    toDo();
139
/*
140
    // debugging only
141
    if( changed )
142
      {
143
      DistortedSurface.debugLists();
144
      }
145
*/
146
    GLES30.glEnable(GLES30.GL_BLEND);
147
    GLES30.glBlendFunc(GLES30.GL_SRC_ALPHA, GLES30.GL_ONE_MINUS_SRC_ALPHA);
148

    
149
    int numRenders = 0;
150

    
151
    for(int i=0; i<mNumChildren; i++)
152
      {
153
      numRenders += mChildren.get(i).drawRecursive(mRender,time,this);
154
      }
155

    
156
    return numRenders;
157
    }
158

    
159
///////////////////////////////////////////////////////////////////////////////////////////////////
160
/**
161
 * Bind this Surface as a Framebuffer we can render to.
162
 */
163
  public void setAsOutput()
164
    {
165
    GLES30.glBindFramebuffer(GLES30.GL_FRAMEBUFFER, mFBOH[0]);
166

    
167
    if( mDepthCreated==CREATED )
168
      {
169
      GLES30.glEnable(GLES30.GL_DEPTH_TEST);
170
      GLES30.glDepthMask(true);
171
      }
172
    else
173
      {
174
      GLES30.glDisable(GLES30.GL_DEPTH_TEST);
175
      GLES30.glDepthMask(false);
176
      }
177
    }
178

    
179
///////////////////////////////////////////////////////////////////////////////////////////////////
180
/**
181
 * Create new Projection matrix.
182
 *
183
 * @param fov Vertical 'field of view' of the Projection frustrum (in degrees).
184
 * @param x X-coordinate of the point at which our camera looks at. 0 is the center.
185
 * @param y Y-coordinate of the point at which our camera looks at. 0 is the center.
186
 */
187
  public void setProjection(float fov, float x, float y)
188
    {
189
    mFOV = fov;
190
    mX = x;
191
    mY = y;
192

    
193
    createProjection();
194
    }
195

    
196
///////////////////////////////////////////////////////////////////////////////////////////////////
197
/**
198
 * Resize the underlying Framebuffer.
199
 * <p>
200
 * This method can be safely called mid-render as it doesn't interfere with rendering.
201
 *
202
 * @param width The new width.
203
 * @param height The new height.
204
 */
205
  public void resize(int width, int height)
206
    {
207
    if( mWidth!=width || mHeight!=height )
208
      {
209
      mWidth = width;
210
      mHeight= height;
211
      mSizeX = width;
212
      mSizeY = height;
213

    
214
      createProjection();
215

    
216
      if( mColorCreated==CREATED )
217
        {
218
        markForCreation();
219
        recreate();
220
        }
221
      }
222
    }
223

    
224
///////////////////////////////////////////////////////////////////////////////////////////////////
225
/**
226
 * Create a new DEPTH buffer and attach it or (param=false) detach an existing DEPTH attachment and recreate it.
227
 *
228
 * @param enable <bold>true</bold> if we want to attach a new DEPTH buffer to the FBO.<br>
229
 *               <bold>false</bold> if we want to detach the DEPTH attachment.
230
 */
231
  public void enableDepth(boolean enable)
232
    {
233
    if( enable && mDepthCreated==DONT_CREATE )
234
      {
235
      mDepthCreated = NOT_CREATED_YET;
236
      markForCreation();
237
      }
238
    if( !enable && mDepthCreated!=DONT_CREATE )
239
      {
240
      mDepthCreated = DONT_CREATE;
241
      markForCreation();
242
      }
243
    }
244

    
245
///////////////////////////////////////////////////////////////////////////////////////////////////
246
/**
247
 * Return true if the Surface contains a DEPTH attachment.
248
 *
249
 * @return <bold>true</bold> if the FBO contains a DEPTH attachment.
250
 */
251
  public boolean hasDepth()
252
    {
253
    return mDepthCreated==CREATED;
254
    }
255

    
256
///////////////////////////////////////////////////////////////////////////////////////////////////
257
/**
258
 * Adds a new child to the last position in the list of our Surface's children.
259
 * <p>
260
 * We cannot do this mid-render - actual attachment will be done just before the next render, by the
261
 * DistortedAttachDeamon (by calling attachNow())
262
 *
263
 * @param node The new Node to add.
264
 */
265
  public void attach(DistortedNode node)
266
    {
267
    DistortedAttachDaemon.attach(this,node);
268
    }
269

    
270
///////////////////////////////////////////////////////////////////////////////////////////////////
271
/**
272
 * Adds a new child to the last position in the list of our Surface's children.
273
 * <p>
274
 * We cannot do this mid-render - actual attachment will be done just before the next render, by the
275
 * DistortedAttachDeamon (by calling attachNow())
276
 *
277
 * @param surface InputSurface to initialize our child Node with.
278
 * @param effects DistortedEffects to initialize our child Node with.
279
 * @param mesh MeshObject to initialize our child Node with.
280
 * @return the newly constructed child Node, or null if we couldn't allocate resources.
281
 */
282
  public DistortedNode attach(DistortedInputSurface surface, DistortedEffects effects, MeshObject mesh)
283
    {
284
    DistortedNode node = new DistortedNode(surface,effects,mesh);
285
    DistortedAttachDaemon.attach(this,node);
286
    return node;
287
    }
288

    
289
///////////////////////////////////////////////////////////////////////////////////////////////////
290
/**
291
 * This is not really part of the public API. Has to be public only because it is a part of the
292
 * DistortedAttacheable interface, which should really be a class that we extend here instead but
293
 * Java has no multiple inheritance.
294
 *
295
 * @y.exclude
296
 * @param node new Node to add.
297
 */
298
  public void attachNow(DistortedNode node)
299
    {
300
    if( mChildren==null ) mChildren = new ArrayList<>(2);
301
    mChildren.add(node);
302
    mNumChildren++;
303
    }
304

    
305
///////////////////////////////////////////////////////////////////////////////////////////////////
306
/**
307
 * Removes the first occurrence of a specified child from the list of children of our Surface.
308
 * <p>
309
 * A bit questionable method as there can be many different Nodes attached as children, some
310
 * of them having the same Effects but - for instance - different Mesh. Use with care.
311
 * <p>
312
 * We cannot do this mid-render - actual detachment will be done just before the next render, by the
313
 * DistortedAttachDeamon (by calling detachNow())
314
 *
315
 * @param effects DistortedEffects to remove.
316
 */
317
  public void detach(DistortedEffects effects)
318
    {
319
    long id = effects.getID();
320
    DistortedNode node;
321

    
322
    for(int i=0; i<mNumChildren; i++)
323
      {
324
      node = mChildren.get(i);
325

    
326
      if( node.getEffects().getID()==id )
327
        {
328
        DistortedAttachDaemon.detach(this,node);
329
        break;
330
        }
331
      }
332
    }
333

    
334
///////////////////////////////////////////////////////////////////////////////////////////////////
335
/**
336
 * Removes the first occurrence of a specified child from the list of children of our Surface.
337
 * <p>
338
 * We cannot do this mid-render - actual attachment will be done just before the next render, by the
339
 * DistortedAttachDeamon (by calling detachNow())
340
 *
341
 * @param node The Node to remove.
342
 */
343
  public void detach(DistortedNode node)
344
    {
345
    DistortedAttachDaemon.detach(this,node);
346
    }
347

    
348
///////////////////////////////////////////////////////////////////////////////////////////////////
349
/**
350
 * This is not really part of the public API. Has to be public only because it is a part of the
351
 * DistortedAttacheable interface, which should really be a class that we extend here instead but
352
 * Java has no multiple inheritance.
353
 *
354
 * @y.exclude
355
 * @param node The Node to remove.
356
 */
357
  public void detachNow(DistortedNode node)
358
    {
359
    if( mNumChildren>0 && mChildren.remove(node) )
360
      {
361
      mNumChildren--;
362
      }
363
    }
364

    
365
///////////////////////////////////////////////////////////////////////////////////////////////////
366
/**
367
 * Removes all children Nodes.
368
 * <p>
369
 * We cannot do this mid-render - actual attachment will be done just before the next render, by the
370
 * DistortedAttachDeamon (by calling detachAllNow())
371
 */
372
  public void detachAll()
373
    {
374
    DistortedAttachDaemon.detachAll(this);
375
    }
376

    
377
///////////////////////////////////////////////////////////////////////////////////////////////////
378
/**
379
 * This is not really part of the public API. Has to be public only because it is a part of the
380
 * DistortedAttacheable interface, which should really be a class that we extend here instead but
381
 * Java has no multiple inheritance.
382
 *
383
 * @y.exclude
384
 */
385
  public void detachAllNow()
386
    {
387
    if( mNumChildren>0 )
388
      {
389
      mNumChildren = 0;
390
      mChildren.clear();
391
      }
392
    }
393
}
(8-8/22)