Project

General

Profile

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

examples / src / main / java / org / distorted / examples / objecttree / ObjectTreeRenderer.java @ f3ca895f

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.examples.objecttree;
21

    
22
import java.io.IOException;
23
import java.io.InputStream;
24

    
25
import javax.microedition.khronos.egl.EGLConfig;
26
import javax.microedition.khronos.opengles.GL10;
27

    
28
import org.distorted.examples.R;
29

    
30
import org.distorted.library.effect.FragmentEffectChroma;
31
import org.distorted.library.effect.MatrixEffectMove;
32
import org.distorted.library.effect.MatrixEffectRotate;
33
import org.distorted.library.effect.MatrixEffectScale;
34
import org.distorted.library.effect.VertexEffectSink;
35
import org.distorted.library.main.DistortedEffects;
36
import org.distorted.library.main.DistortedFramebuffer;
37
import org.distorted.library.main.DistortedNode;
38
import org.distorted.library.main.DistortedScreen;
39
import org.distorted.library.main.DistortedLibrary;
40
import org.distorted.library.mesh.MeshCubes;
41
import org.distorted.library.mesh.MeshRectangles;
42
import org.distorted.library.main.DistortedTexture;
43
import org.distorted.library.type.Dynamic;
44
import org.distorted.library.type.Dynamic1D;
45
import org.distorted.library.type.Static1D;
46
import org.distorted.library.type.Static3D;
47
import org.distorted.library.type.Static4D;
48

    
49
import android.graphics.Bitmap;
50
import android.graphics.BitmapFactory;
51
import android.opengl.GLES31;
52
import android.opengl.GLSurfaceView;
53

    
54
///////////////////////////////////////////////////////////////////////////////////////////////////
55

    
56
class ObjectTreeRenderer implements GLSurfaceView.Renderer
57
{
58
   private GLSurfaceView mView;
59
   private DistortedEffects mEffects;
60
   private DistortedTexture mLisaTexture, mGridTexture;
61
   private DistortedScreen mScreen;
62
   private DistortedNode mRoot;
63
   private MeshRectangles mMeshRectangles;
64
   private MeshCubes mMeshCubes;
65
   private int lisaHeight, lisaWidth;
66
   private boolean mDepth;
67
   private Static3D mScale, mMove;
68

    
69
///////////////////////////////////////////////////////////////////////////////////////////////////
70

    
71
   ObjectTreeRenderer(GLSurfaceView v)
72
      {
73
      mView   = v;
74
      mDepth  = true;
75
      mScale  = new Static3D(1,1,1);
76
      mMove   = new Static3D(0,0,0);
77
      Dynamic1D chromaDyn = new Dynamic1D(5000,0.0f);
78
      chromaDyn.add(new Static1D(0.0f));
79
      chromaDyn.add(new Static1D(0.8f));
80

    
81
      mEffects= new DistortedEffects();
82
      mEffects.apply(new MatrixEffectScale(mScale));
83
      mEffects.apply(new MatrixEffectMove(mMove));
84
      mEffects.apply(new FragmentEffectChroma(chromaDyn, new Static3D(0,0,1)));
85

    
86
      mScreen = new DistortedScreen();
87
      }
88

    
89
///////////////////////////////////////////////////////////////////////////////////////////////////
90

    
91
   private void setDepthPriv()
92
     {
93
     if( mDepth ) mRoot.glEnable (GLES31.GL_DEPTH_TEST);
94
     else         mRoot.glDisable(GLES31.GL_DEPTH_TEST);
95

    
96
     mRoot.glDepthMask(mDepth);
97

    
98
     // we can also, to save memory, delete/recreate
99
     // the depth buffer each time. This is optional.
100
     mRoot.enableDepthStencil(mDepth ? DistortedFramebuffer.DEPTH_NO_STENCIL:DistortedFramebuffer.NO_DEPTH_NO_STENCIL);
101
     }
102

    
103
///////////////////////////////////////////////////////////////////////////////////////////////////
104

    
105
   void setDepth(boolean depth)
106
      {
107
      mDepth = depth;
108
      if( mRoot!=null ) setDepthPriv();
109
      }
110

    
111
///////////////////////////////////////////////////////////////////////////////////////////////////
112
   
113
   public void onDrawFrame(GL10 glUnused)
114
      {
115
      mScreen.render(System.currentTimeMillis());
116
      }
117

    
118
///////////////////////////////////////////////////////////////////////////////////////////////////
119
    
120
   public void onSurfaceChanged(GL10 glUnused, int width, int height)
121
      { 
122
      if( (float)lisaHeight/lisaWidth > (float)height/width )
123
        {
124
        int w = (height*lisaWidth)/lisaHeight;
125
        float factor = (float)height/lisaHeight;
126

    
127
        mMove.set((width-w)/2,0,0);
128
        mScale.set(factor,factor,factor);
129
        }
130
      else
131
        {
132
        int h = (width*lisaHeight)/lisaWidth;
133
        float factor = (float)width/lisaWidth;
134

    
135
        mMove.set(0,(height-h)/2,0);
136
        mScale.set(factor,factor,factor);
137
        }
138
      
139
      mScreen.resize(width, height);
140
      }
141

    
142
///////////////////////////////////////////////////////////////////////////////////////////////////
143
    
144
   public void onSurfaceCreated(GL10 glUnused, EGLConfig config)
145
      {
146
      // TODO
147
      // This appears to be needed in case we create the app anew with NO DEPTH
148
      // (i.e. we set 'no depth' and then rotate screen). Investigate.
149
      GLES31.glEnable(GLES31.GL_CULL_FACE);
150
      GLES31.glCullFace(GLES31.GL_BACK);
151
      GLES31.glFrontFace(GLES31.GL_CW);
152

    
153
      InputStream is1 = mView.getContext().getResources().openRawResource(R.raw.monalisa);
154
      InputStream is2 = mView.getContext().getResources().openRawResource(R.raw.grid);
155
      
156
      Bitmap bitmap1, bitmap2;
157
       
158
      try 
159
        {
160
        bitmap1 = BitmapFactory.decodeStream(is1);
161
        bitmap2 = BitmapFactory.decodeStream(is2);
162
        } 
163
      finally 
164
        {
165
        try 
166
          {
167
          is1.close();
168
          is2.close();
169
          } 
170
        catch(IOException e) { }
171
        }  
172
      
173
      lisaWidth     = bitmap1.getWidth();
174
      lisaHeight    = bitmap1.getHeight();
175
      int gridWidth = bitmap2.getWidth();
176
      int gridHeight= bitmap2.getHeight();
177

    
178
      if( mLisaTexture==null ) mLisaTexture = new DistortedTexture(lisaWidth,lisaHeight);
179
      if( mGridTexture==null ) mGridTexture = new DistortedTexture(gridWidth,gridHeight);
180
      mLisaTexture.setTexture(bitmap1);
181
      mGridTexture.setTexture(bitmap2);
182
      DistortedEffects gridEffects = new DistortedEffects();
183

    
184
      final int GRID = 20;
185
      final Static4D mapFB = new Static4D(0.0f,0.0f,1.0f     ,1.0f     );
186
      final Static4D mapLR = new Static4D(0.0f,0.0f,1.0f/GRID,1.0f     );
187
      final Static4D mapTB = new Static4D(0.0f,0.0f,1.0f     ,1.0f/GRID);
188

    
189
      if( mMeshRectangles ==null ) mMeshRectangles = new MeshRectangles(1,1);
190
      if( mMeshCubes==null) mMeshCubes= new MeshCubes(GRID,GRID,1, mapFB, mapFB, mapLR, mapLR, mapTB, mapTB);
191

    
192
      int gridDepth = mGridTexture.getDepth(mMeshCubes);
193

    
194
      mRoot = new DistortedNode(mLisaTexture, mEffects, mMeshRectangles);
195
      mRoot.attach(mGridTexture,gridEffects,mMeshCubes);
196

    
197
      setDepthPriv();
198

    
199
      mScreen.detachAll();
200
      mScreen.attach(mRoot);
201

    
202
      float factor = lisaWidth/(2.0f*gridWidth);
203
      MatrixEffectMove move = new MatrixEffectMove( new Static3D((lisaWidth-factor*gridWidth)/2,(lisaHeight-factor*gridHeight)/2, gridWidth/(2.0f*GRID)));
204
      MatrixEffectScale scale = new MatrixEffectScale( new Static3D(factor,factor,factor) );
205
      gridEffects.apply(scale);
206
      gridEffects.apply(move);
207

    
208
      Dynamic1D rotDyn = new Dynamic1D(12000,0.0f);
209
      rotDyn.add(new Static1D(  0));
210
      rotDyn.add(new Static1D(360));
211
      rotDyn.setMode(Dynamic.MODE_JUMP);
212
      MatrixEffectRotate rotate = new MatrixEffectRotate(rotDyn, new Static3D(1,0,0), new Static3D(gridWidth/2,gridHeight/2,gridWidth/(2*GRID)));
213
      gridEffects.apply(rotate);
214

    
215
      Dynamic1D sinkDyn = new Dynamic1D(3000,0.0f);
216
      sinkDyn.add(new Static1D(1.0f));
217
      sinkDyn.add(new Static1D(0.3f));
218
      VertexEffectSink sink = new VertexEffectSink(sinkDyn, new Static3D(gridWidth/2.0f, gridHeight/2.0f, gridDepth/2.0f) );
219
      gridEffects.apply(sink);
220

    
221
      VertexEffectSink.enable();
222
      FragmentEffectChroma.enable();
223

    
224
      try
225
        {
226
        DistortedLibrary.onCreate(mView.getContext());
227
        }
228
      catch(Exception ex)
229
        {
230
        android.util.Log.e("ObjectTree", ex.getMessage() );
231
        }
232
      }
233
}
(2-2/3)