Project

General

Profile

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

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

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 ArrayList<DistortedNode> mChildren;
31
  private int mNumChildren;   // ==mChildren.length(), but we only create mChildren if the first one gets added
32

    
33
  private float mFOV;
34
  int mWidth,mHeight,mDepth;
35
  float mDistance, mNear;
36
  float[] mProjectionMatrix;
37

    
38
  int mDepthCreated;
39
  int[] mDepthH = new int[1];
40
  int[] mFBOH   = new int[1];
41

    
42
///////////////////////////////////////////////////////////////////////////////////////////////////
43

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

    
48
    mProjectionMatrix = new float[16];
49

    
50
    mWidth = width;
51
    mHeight= height;
52

    
53
    mFOV = 60.0f;
54
    mNear=  0.5f;
55

    
56
    mDepthCreated= createDepth;
57
    mFBOH[0]     = fbo;
58
    mDepthH[0]   = 0;
59

    
60
    createProjection();
61
    }
62

    
63
///////////////////////////////////////////////////////////////////////////////////////////////////
64

    
65
  void createProjection()
66
    {
67
    if( mWidth>0 && mHeight>1 )
68
      {
69
      if( mFOV>0.0f )  // perspective projection
70
        {
71
        float a = 2.0f*(float)Math.tan(mFOV*Math.PI/360);
72
        float q = mWidth*mNear;
73
        float c = mHeight*mNear;
74

    
75
        float left   = -q/2;
76
        float right  = +q/2;
77
        float bottom = -c/2;
78
        float top    = +c/2;
79
        float near   =  c/a;
80

    
81
        mDistance    = mHeight/a;
82
        float far    = 2*mDistance-near;
83
        mDepth       = (int)((far-near)/2);
84

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

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

    
103
///////////////////////////////////////////////////////////////////////////////////////////////////
104
// PUBLIC API
105
///////////////////////////////////////////////////////////////////////////////////////////////////
106
/**
107
 * Draws all the attached children to this OutputSurface.
108
 * <p>
109
 * Must be called from a thread holding OpenGL Context.
110
 *
111
 * @param time Current time, in milliseconds. This will be passed to all the Effects stored in the children Nodes.
112
 * @return Number of objects rendered.
113
 */
114
  public int render(long time)
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
    // mark OpenGL state as unknown
147
    DistortedRenderState.reset();
148

    
149
    int numRenders = 0;
150

    
151
    for(int i=0; i<mNumChildren; i++)
152
      {
153
      numRenders += mChildren.get(i).drawRecursive(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

    
168
///////////////////////////////////////////////////////////////////////////////////////////////////
169
/**
170
 * Create new Projection matrix.
171
 *
172
 * @param fov Vertical 'field of view' of the Projection frustrum (in degrees).
173
 *            Valid values: 0<=fov<180. FOV==0 means 'parallel projection'.
174
 * @param near Distance between the screen plane and the near plane.
175
 *             Valid vaules: 0<near<1. When near==0, the Near Plane is exactly at the tip of the
176
 *             pyramid. When near==1 (illegal!) the near plane is equivalent to the screen plane.
177
 */
178
  public void setProjection(float fov, float near)
179
    {
180
    if( fov < 180.0f && fov >=0.0f ) mFOV = fov;
181
    if( near<   1.0f && near> 0.0f ) mNear= near;
182

    
183
    createProjection();
184
    }
185

    
186
///////////////////////////////////////////////////////////////////////////////////////////////////
187
/**
188
 * Resize the underlying Framebuffer.
189
 * <p>
190
 * This method can be safely called mid-render as it doesn't interfere with rendering.
191
 *
192
 * @param width The new width.
193
 * @param height The new height.
194
 */
195
  public void resize(int width, int height)
196
    {
197
    if( mWidth!=width || mHeight!=height )
198
      {
199
      mWidth = width;
200
      mHeight= height;
201
      mSizeX = width;
202
      mSizeY = height;
203

    
204
      createProjection();
205

    
206
      if( mColorCreated==CREATED )
207
        {
208
        markForCreation();
209
        recreate();
210
        }
211
      }
212
    }
213

    
214
///////////////////////////////////////////////////////////////////////////////////////////////////
215
/**
216
 * Create a new DEPTH buffer and attach it or (param=false) detach an existing DEPTH attachment and recreate it.
217
 *
218
 * @param enable <bold>true</bold> if we want to attach a new DEPTH buffer to the FBO.<br>
219
 *               <bold>false</bold> if we want to detach the DEPTH attachment.
220
 */
221
  public void enableDepth(boolean enable)
222
    {
223
    if( enable && mDepthCreated==DONT_CREATE )
224
      {
225
      mDepthCreated = NOT_CREATED_YET;
226
      markForCreation();
227
      }
228
    if( !enable && mDepthCreated!=DONT_CREATE )
229
      {
230
      mDepthCreated = DONT_CREATE;
231
      markForCreation();
232
      }
233
    }
234

    
235
///////////////////////////////////////////////////////////////////////////////////////////////////
236
/**
237
 * Return true if the Surface contains a DEPTH attachment.
238
 *
239
 * @return <bold>true</bold> if the FBO contains a DEPTH attachment.
240
 */
241
  public boolean hasDepth()
242
    {
243
    return mDepthCreated==CREATED;
244
    }
245

    
246
///////////////////////////////////////////////////////////////////////////////////////////////////
247
/**
248
 * Adds a new child to the last position in the list of our Surface's children.
249
 * <p>
250
 * We cannot do this mid-render - actual attachment will be done just before the next render, by the
251
 * DistortedAttachDeamon (by calling attachNow())
252
 *
253
 * @param node The new Node to add.
254
 */
255
  public void attach(DistortedNode node)
256
    {
257
    DistortedAttachDaemon.attach(this,node);
258
    }
259

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

    
279
///////////////////////////////////////////////////////////////////////////////////////////////////
280
/**
281
 * This is not really part of the public API. Has to be public only because it is a part of the
282
 * DistortedAttacheable interface, which should really be a class that we extend here instead but
283
 * Java has no multiple inheritance.
284
 *
285
 * @y.exclude
286
 * @param node new Node to add.
287
 */
288
  public void attachNow(DistortedNode node)
289
    {
290
    if( mChildren==null ) mChildren = new ArrayList<>(2);
291
    mChildren.add(node);
292
    mNumChildren++;
293
    }
294

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

    
312
    for(int i=0; i<mNumChildren; i++)
313
      {
314
      node = mChildren.get(i);
315

    
316
      if( node.getEffects().getID()==id )
317
        {
318
        DistortedAttachDaemon.detach(this,node);
319
        break;
320
        }
321
      }
322
    }
323

    
324
///////////////////////////////////////////////////////////////////////////////////////////////////
325
/**
326
 * Removes the first occurrence of a specified child from the list of children of our Surface.
327
 * <p>
328
 * We cannot do this mid-render - actual attachment will be done just before the next render, by the
329
 * DistortedAttachDeamon (by calling detachNow())
330
 *
331
 * @param node The Node to remove.
332
 */
333
  public void detach(DistortedNode node)
334
    {
335
    DistortedAttachDaemon.detach(this,node);
336
    }
337

    
338
///////////////////////////////////////////////////////////////////////////////////////////////////
339
/**
340
 * This is not really part of the public API. Has to be public only because it is a part of the
341
 * DistortedAttacheable interface, which should really be a class that we extend here instead but
342
 * Java has no multiple inheritance.
343
 *
344
 * @y.exclude
345
 * @param node The Node to remove.
346
 */
347
  public void detachNow(DistortedNode node)
348
    {
349
    if( mNumChildren>0 && mChildren.remove(node) )
350
      {
351
      mNumChildren--;
352
      }
353
    }
354

    
355
///////////////////////////////////////////////////////////////////////////////////////////////////
356
/**
357
 * Removes all children Nodes.
358
 * <p>
359
 * We cannot do this mid-render - actual attachment will be done just before the next render, by the
360
 * DistortedAttachDeamon (by calling detachAllNow())
361
 */
362
  public void detachAll()
363
    {
364
    DistortedAttachDaemon.detachAll(this);
365
    }
366

    
367
///////////////////////////////////////////////////////////////////////////////////////////////////
368
/**
369
 * This is not really part of the public API. Has to be public only because it is a part of the
370
 * DistortedAttacheable interface, which should really be a class that we extend here instead but
371
 * Java has no multiple inheritance.
372
 *
373
 * @y.exclude
374
 */
375
  public void detachAllNow()
376
    {
377
    if( mNumChildren>0 )
378
      {
379
      mNumChildren = 0;
380
      mChildren.clear();
381
      }
382
    }
383
}
(8-8/23)