Project

General

Profile

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

library / src / main / java / org / distorted / library / main / DistortedScreen.java @ c840136b

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.main;
21

    
22
///////////////////////////////////////////////////////////////////////////////////////////////////
23

    
24
import android.graphics.Bitmap;
25
import android.graphics.Canvas;
26
import android.graphics.Paint;
27
import android.opengl.GLES30;
28

    
29
import org.distorted.library.effect.MatrixEffectMove;
30
import org.distorted.library.effect.MatrixEffectScale;
31
import org.distorted.library.mesh.MeshQuad;
32
import org.distorted.library.type.Static3D;
33

    
34
/**
35
 * Class which represents the Screen.
36
 * <p>
37
 * User is able to render to it just like to a DistortedFramebuffer.
38
 */
39
public class DistortedScreen extends DistortedFramebuffer
40
  {
41
  ///// DEBUGGING ONLY /////////////////////////
42
  private static final int NUM_FRAMES  = 100;
43
  private static final float DEBUG_SCR_FRAC = 0.15f;
44
  private static final float DEBUG_FRAC     = 0.5f;
45

    
46
  private static final int DEBUG_MODE_NONE = 0;
47
  private static final int DEBUG_MODE_FPS  = 1;
48
  private static final int DEBUG_MODE_FRAME= 2;
49

    
50
  private int mDebugMode;
51
  private boolean mDebugAllocated;
52

    
53
  private MeshQuad debugMesh;
54
  private DistortedTexture debugTexture;
55
  private DistortedEffects debugEffects;
56
  private Canvas debugCanvas;
57
  private Bitmap debugBitmap;
58
  private Paint mPaint;
59
  private String debugString;
60
  private long lastTime=0;
61
  private long[] durations;
62
  private int currDuration;
63
  private int frameNumber;
64
  private static Static3D mMoveVector = new Static3D(0,0,0);
65
  private static MatrixEffectMove mMoveEffect = new MatrixEffectMove(mMoveVector);
66
  ///// END DEBUGGING //////////////////////////
67

    
68
  private int mQueueSize;
69
  private int mCurRenderedFBO;    // During the first FBO_QUEUE_SIZE frames, we blit the very first
70
  private int mToBeBlittedFBO;    // FBO one we have rendered. Then, we keep blitting the one we
71
  private boolean mFirstCircle;   // rendered FBO_QUEUE_SIZE ago.
72

    
73
  private int mDebugWidth, mDebugHeight, mDebugGap, mDebugTextColor, mDebugBackColor;
74

    
75
///////////////////////////////////////////////////////////////////////////////////////////////////
76
// PUBLIC API
77
///////////////////////////////////////////////////////////////////////////////////////////////////
78
/**
79
 * Create a new Screen. Initially 1x1 in size.
80
 * <p>
81
 * Has to be followed by a 'resizeFBO()' to set the size.
82
 */
83
  public DistortedScreen()
84
    {
85
    super(DistortedLibrary.WAIT_FOR_FBO_QUEUE_SIZE,1,BOTH_DEPTH_STENCIL, TYPE_SYST, STORAGE_PRIVATE,1,1);
86
    mDebugMode = DEBUG_MODE_NONE;
87
    mCurRenderedFBO = 0;
88
    mToBeBlittedFBO = 0;
89
    mFirstCircle = true;
90
    mDebugAllocated = false;
91
    mQueueSize = -1;
92
    }
93

    
94
///////////////////////////////////////////////////////////////////////////////////////////////////
95
/**
96
 * Draws all the attached children to this OutputSurface.
97
 * <p>
98
 * Must be called from a thread holding OpenGL Context.
99
 *
100
 * @param time Current time, in milliseconds. This will be passed to all the Effects stored in the children Nodes.
101
 * @return Number of objects rendered.
102
 */
103
  public int render(long time)
104
    {
105
    if( mDebugMode!=DEBUG_MODE_NONE )
106
      {
107
      if( lastTime==0 ) lastTime = time;
108

    
109
      if( mDebugMode==DEBUG_MODE_FPS )
110
        {
111
        currDuration++;
112
        if (currDuration >= NUM_FRAMES) currDuration = 0;
113
        durations[NUM_FRAMES] += ((time - lastTime) - durations[currDuration]);
114
        durations[currDuration] = time - lastTime;
115

    
116
        debugString = "" + ((int)(10000.0f*NUM_FRAMES/durations[NUM_FRAMES]))/10.0f;
117
        }
118
      else if( mDebugMode==DEBUG_MODE_FRAME )
119
        {
120
        debugString = "" + frameNumber;
121
        frameNumber++;
122
        }
123

    
124
      if( !mDebugAllocated )
125
        {
126
        mDebugAllocated = true;
127
        debugString = "";
128

    
129
        debugBitmap = Bitmap.createBitmap( mDebugWidth, mDebugHeight, Bitmap.Config.ARGB_8888);
130
        debugMesh = new MeshQuad();
131
        debugTexture = new DistortedTexture();
132
        debugTexture.setTexture(debugBitmap);
133
        debugCanvas = new Canvas(debugBitmap);
134
        debugEffects = new DistortedEffects();
135
        debugEffects.apply( new MatrixEffectScale( new Static3D(mDebugWidth,mDebugHeight,1) ) );
136
        debugEffects.apply(mMoveEffect);
137

    
138
        mPaint = new Paint();
139
        mPaint.setAntiAlias(true);
140
        mPaint.setTextAlign(Paint.Align.CENTER);
141
        mPaint.setTextSize(0.7f*mDebugHeight);
142
        }
143

    
144
      mPaint.setColor(mDebugBackColor);
145
      debugCanvas.drawRect(0, 0, mDebugWidth, mDebugHeight, mPaint);
146
      mPaint.setColor(mDebugTextColor);
147
      debugCanvas.drawText(debugString, 0.5f*mDebugWidth, 0.75f*mDebugHeight, mPaint);
148
      debugTexture.setTexture(debugBitmap);
149

    
150
      mMoveVector.set( (-mWidth+mDebugWidth)*0.5f +mDebugGap, (mHeight-mDebugHeight)*0.5f -mDebugGap, 0);
151

    
152
      lastTime = time;
153
      }
154

    
155
    int numrender = super.render(time,mCurRenderedFBO);
156

    
157
    GLES30.glBindFramebuffer(GLES30.GL_FRAMEBUFFER, 0);
158

    
159
    // workaround for the Mali issues: blit the framebuffer we have computed DistortedLibrary.FBO_QUEUE_SIZE
160
    // frames ago. Looks like FBO_QUEUE_SIZE=2 solves the issue already but I decided to play it safe and
161
    // make it equal to 3.
162
    // This of course introduces a delay and uses more memory, but it does not appear to have any effect
163
    // on speed. Maybe a slight positive effect if any!
164
    setAsInput(mToBeBlittedFBO,0);
165

    
166
    GLES30.glColorMask(true,true,true,true);
167
    GLES30.glDepthMask(false);
168
    GLES30.glDisable(GLES30.GL_STENCIL_TEST);
169
    GLES30.glDisable(GLES30.GL_DEPTH_TEST);
170
    GLES30.glDisable(GLES30.GL_BLEND);
171

    
172
    DistortedLibrary.blitPriv(this);
173

    
174
    if( mDebugMode!=DEBUG_MODE_NONE && debugTexture.setAsInput())
175
      {
176
      DistortedLibrary.drawPriv(debugEffects, debugMesh, this, time,0);
177
      }
178

    
179
    if( mQueueSize<=0 )
180
      {
181
      mQueueSize = DistortedLibrary.getQueueSize();
182
      }
183

    
184
    if( ++mCurRenderedFBO>=mQueueSize )
185
      {
186
      mCurRenderedFBO = 0;
187
      if (mFirstCircle) mFirstCircle = false;
188
      }
189
    if( !mFirstCircle && ++mToBeBlittedFBO>=mQueueSize )
190
      {
191
      mToBeBlittedFBO=0;
192
      }
193

    
194
    return numrender+1;
195
    }
196

    
197
///////////////////////////////////////////////////////////////////////////////////////////////////
198
/**
199
 * Make the library show Frames Per Second in the upper-left corner.
200
 * <p>
201
 */
202
  public void showFPS()
203
    {
204
    int width     = (int)(mWidth*DEBUG_SCR_FRAC);
205
    int height    = (int)(mWidth*DEBUG_SCR_FRAC*DEBUG_FRAC);
206
    int gap       = 5;
207
    int textColor = 0xffffffff;
208
    int backColor = 0xff000000;
209

    
210
    showFPS(width,height,gap,textColor,backColor);
211
    }
212

    
213
///////////////////////////////////////////////////////////////////////////////////////////////////
214
/**
215
 * Make the library show Frames Per Second in the upper-left corner.
216
 * Set appropriate params.
217
 * <p>
218
 */
219
  public void showFPS(int width, int height, int gap, int textColor, int backColor)
220
    {
221
    mDebugWidth     = width;
222
    mDebugHeight    = height;
223
    mDebugGap       = gap;
224
    mDebugBackColor = backColor;
225
    mDebugTextColor = textColor;
226

    
227
    if( mDebugMode!=DEBUG_MODE_FPS )
228
      {
229
      mDebugMode = DEBUG_MODE_FPS;
230

    
231
      durations = new long[NUM_FRAMES + 1];
232
      currDuration = 0;
233

    
234
      for (int i=0; i<NUM_FRAMES+1; i++) durations[i] = 16;  // Assume FPS will be
235
      durations[NUM_FRAMES] = NUM_FRAMES * 16;               // close to 1000/16 ~ 60
236
      }
237
    }
238

    
239
///////////////////////////////////////////////////////////////////////////////////////////////////
240
/**
241
 * Make the library show current frame number in the upper-left corner.
242
 * <p>
243
 */
244
  public void showFrameNumber()
245
    {
246
    if( mDebugMode!=DEBUG_MODE_FRAME )
247
      {
248
      mDebugMode = DEBUG_MODE_FRAME;
249
      frameNumber = 0;
250
      }
251
    }
252
  }
(5-5/17)