Project

General

Profile

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

library / src / main / java / org / distorted / library / main / DistortedScreen.java @ 586b5fa1

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.GLES31;
28

    
29
import org.distorted.library.effect.MatrixEffectMove;
30
import org.distorted.library.type.Static3D;
31

    
32
/**
33
 * Class which represents the Screen.
34
 * <p>
35
 * User is able to render to it just like to a DistortedFramebuffer.
36
 */
37
public class DistortedScreen extends DistortedFramebuffer
38
  {
39
  ///// DEBUGGING ONLY /////////////////////////
40
  private boolean mShowFPS;
41

    
42
  private static final int NUM_FRAMES  = 100;
43

    
44
  private MeshObject fpsMesh;
45
  private DistortedTexture fpsTexture;
46
  private DistortedEffects fpsEffects;
47
  private Canvas fpsCanvas;
48
  private Bitmap fpsBitmap;
49
  private Paint mPaint;
50
  private int fpsH, fpsW;
51
  private String fpsString;
52
  private long lastTime=0;
53
  private long[] durations;
54
  private int currDuration;
55
  private static MatrixEffectMove mMoveEffect = new MatrixEffectMove( new Static3D(5,5,0) );
56
  ///// END DEBUGGING //////////////////////////
57

    
58
  private int mCurrFBO;
59

    
60
///////////////////////////////////////////////////////////////////////////////////////////////////
61
// PUBLIC API
62
///////////////////////////////////////////////////////////////////////////////////////////////////
63
/**
64
 * Create a new Screen. Initially 1x1 in size.
65
 * <p>
66
 * Has to be followed by a 'resize()' to set the size.
67
 */
68
  public DistortedScreen()
69
    {
70
    super(Distorted.FBO_QUEUE_SIZE,1,BOTH_DEPTH_STENCIL, TYPE_SYST, 1,1);
71
    mShowFPS = false;
72
    mCurrFBO = 0;
73
    }
74

    
75
///////////////////////////////////////////////////////////////////////////////////////////////////
76
/**
77
 * Draws all the attached children to this OutputSurface.
78
 * <p>
79
 * Must be called from a thread holding OpenGL Context.
80
 *
81
 * @param time Current time, in milliseconds. This will be passed to all the Effects stored in the children Nodes.
82
 * @return Number of objects rendered.
83
 */
84
  public int render(long time)
85
    {
86
    if( mShowFPS )
87
      {
88
      if( lastTime==0 ) lastTime = time;
89

    
90
      currDuration++;
91
      if (currDuration >= NUM_FRAMES) currDuration = 0;
92
      durations[NUM_FRAMES] += ((time - lastTime) - durations[currDuration]);
93
      durations[currDuration] = time - lastTime;
94

    
95
      fpsString = "" + ((int)(10000.0f*NUM_FRAMES/durations[NUM_FRAMES]))/10.0f;
96

    
97
      mPaint.setColor(0xffffffff);
98
      fpsCanvas.drawRect(0, 0, fpsW, fpsH, mPaint);
99
      mPaint.setColor(0xff000000);
100
      fpsCanvas.drawText(fpsString, fpsW/2, 0.75f*fpsH, mPaint);
101
      fpsTexture.setTexture(fpsBitmap);
102

    
103
      lastTime = time;
104
      }
105

    
106
    int numrender = super.render(time,mCurrFBO);
107

    
108
    GLES31.glBindFramebuffer(GLES31.GL_FRAMEBUFFER, 0);
109
    setAsInput(mCurrFBO,0);
110
    GLES31.glColorMask(true,true,true,true);
111
    GLES31.glDepthMask(false);
112
    GLES31.glDisable(GLES31.GL_STENCIL_TEST);
113
    GLES31.glDisable(GLES31.GL_DEPTH_TEST);
114
    GLES31.glDisable(GLES31.GL_BLEND);
115

    
116
    DistortedEffects.blitPriv(this);
117

    
118
    if( mShowFPS && fpsTexture.setAsInput())
119
      {
120
      fpsEffects.drawPriv(fpsW / 2.0f, fpsH / 2.0f, fpsMesh, this, time, 0);
121
      }
122

    
123
    mCurrFBO++;
124
    if( mCurrFBO>=Distorted.FBO_QUEUE_SIZE ) mCurrFBO=0;
125

    
126
    return numrender+1;
127
    }
128

    
129
///////////////////////////////////////////////////////////////////////////////////////////////////
130
/**
131
 * Make the library show Frames Per Second in the upper-left corner.
132
 * <p>
133
 */
134
  public void showFPS()
135
    {
136
    mShowFPS = true;
137

    
138
    fpsW = 120;
139
    fpsH =  70;
140

    
141
    fpsString = "";
142
    fpsBitmap = Bitmap.createBitmap(fpsW,fpsH, Bitmap.Config.ARGB_8888);
143
    fpsMesh = new MeshFlat(1,1);
144
    fpsTexture = new DistortedTexture(fpsW,fpsH);
145
    fpsTexture.setTexture(fpsBitmap);
146
    fpsCanvas = new Canvas(fpsBitmap);
147
    fpsEffects = new DistortedEffects();
148
    fpsEffects.apply(mMoveEffect);
149

    
150
    mPaint = new Paint();
151
    mPaint.setAntiAlias(true);
152
    mPaint.setTextAlign(Paint.Align.CENTER);
153
    mPaint.setTextSize(0.7f*fpsH);
154

    
155
    durations = new long[NUM_FRAMES+1];
156
    currDuration = 0;
157

    
158
    for(int i=0; i<NUM_FRAMES+1; i++) durations[i]=16;  // Assume FPS will be
159
    durations[NUM_FRAMES] = NUM_FRAMES*16;              // close to 1000/16 ~ 60
160
    }
161
  }
(10-10/21)