Project

General

Profile

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

examples / src / main / java / org / distorted / examples / objecttree / ObjectTreeRenderer.java @ 698ad0a8

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
      final int GRID = 20;
174
      final Static4D mapFB = new Static4D(0.0f,0.0f,1.0f     ,1.0f     );
175
      final Static4D mapLR = new Static4D(0.0f,0.0f,1.0f/GRID,1.0f     );
176
      final Static4D mapTB = new Static4D(0.0f,0.0f,1.0f     ,1.0f/GRID);
177

    
178
      lisaWidth     = bitmap1.getWidth();
179
      lisaHeight    = bitmap1.getHeight();
180
      int gridWidth = bitmap2.getWidth();
181
      int gridHeight= bitmap2.getHeight();
182
      int gridDepth = gridWidth/GRID;
183

    
184
      if( mLisaTexture==null ) mLisaTexture = new DistortedTexture();
185
      if( mGridTexture==null ) mGridTexture = new DistortedTexture();
186
      mLisaTexture.setTexture(bitmap1);
187
      mGridTexture.setTexture(bitmap2);
188

    
189
      DistortedEffects gridEffects = new DistortedEffects();
190

    
191
      if( mMeshRectangles ==null )
192
        {
193
        mMeshRectangles = new MeshRectangles(1,1);
194
        mMeshRectangles.setStretch(lisaWidth,lisaHeight,0);
195
        }
196

    
197
      if( mMeshCubes==null)
198
        {
199
        mMeshCubes= new MeshCubes(GRID,GRID,1, mapFB, mapFB, mapLR, mapLR, mapTB, mapTB);
200
        mMeshCubes.setStretch(gridWidth,gridHeight,gridDepth);
201
        }
202

    
203
      mRoot = new DistortedNode(mLisaTexture, mEffects, mMeshRectangles);
204
      mRoot.attach(mGridTexture,gridEffects,mMeshCubes);
205

    
206
      setDepthPriv();
207

    
208
      mScreen.detachAll();
209
      mScreen.attach(mRoot);
210

    
211
      float factor = lisaWidth/(2.0f*gridWidth);
212
      MatrixEffectMove move = new MatrixEffectMove( new Static3D((lisaWidth-factor*gridWidth)/2,(lisaHeight-factor*gridHeight)/2, gridWidth/(2.0f*GRID)));
213
      MatrixEffectScale scale = new MatrixEffectScale( new Static3D(factor,factor,factor) );
214
      gridEffects.apply(scale);
215
      gridEffects.apply(move);
216

    
217
      Dynamic1D rotDyn = new Dynamic1D(12000,0.0f);
218
      rotDyn.add(new Static1D(  0));
219
      rotDyn.add(new Static1D(360));
220
      rotDyn.setMode(Dynamic.MODE_JUMP);
221
      MatrixEffectRotate rotate = new MatrixEffectRotate(rotDyn, new Static3D(1,0,0), new Static3D(gridWidth/2,gridHeight/2,gridWidth/(2*GRID)));
222
      gridEffects.apply(rotate);
223

    
224
      Dynamic1D sinkDyn = new Dynamic1D(3000,0.0f);
225
      sinkDyn.add(new Static1D(1.0f));
226
      sinkDyn.add(new Static1D(0.3f));
227
      VertexEffectSink sink = new VertexEffectSink(sinkDyn, new Static3D(gridWidth/2.0f, gridHeight/2.0f, gridDepth/2.0f) );
228
      gridEffects.apply(sink);
229

    
230
      VertexEffectSink.enable();
231
      FragmentEffectChroma.enable();
232

    
233
      try
234
        {
235
        DistortedLibrary.onCreate(mView.getContext());
236
        }
237
      catch(Exception ex)
238
        {
239
        android.util.Log.e("ObjectTree", ex.getMessage() );
240
        }
241
      }
242
}
(2-2/3)