Project

General

Profile

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

examples / src / main / java / org / distorted / examples / bitmaptree / BitmapTreeRenderer.java @ e4330c89

1 bc0a685b Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
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 427ab7bf Leszek Koltunski
20 3c70973c Leszek Koltunski
package org.distorted.examples.bitmaptree;
21 427ab7bf Leszek Koltunski
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 5068fa06 Leszek Koltunski
import org.distorted.examples.R;
29 427ab7bf Leszek Koltunski
30 6646c476 leszek
import org.distorted.library.effect.EffectName;
31
import org.distorted.library.effect.FragmentEffectChroma;
32
import org.distorted.library.effect.MatrixEffectMove;
33
import org.distorted.library.effect.MatrixEffectRotate;
34
import org.distorted.library.effect.MatrixEffectScale;
35
import org.distorted.library.effect.VertexEffectSink;
36 01782e85 Leszek Koltunski
import org.distorted.library.main.DistortedEffects;
37
import org.distorted.library.main.DistortedFramebuffer;
38
import org.distorted.library.main.DistortedNode;
39
import org.distorted.library.main.DistortedScreen;
40
import org.distorted.library.main.Distorted;
41
import org.distorted.library.main.MeshCubes;
42
import org.distorted.library.main.MeshFlat;
43
import org.distorted.library.main.DistortedTexture;
44 c0486401 Leszek Koltunski
import org.distorted.library.type.Dynamic;
45 59759251 Leszek Koltunski
import org.distorted.library.type.Dynamic1D;
46
import org.distorted.library.type.Static1D;
47 7589635e Leszek Koltunski
import org.distorted.library.type.Static3D;
48 427ab7bf Leszek Koltunski
49
import android.graphics.Bitmap;
50
import android.graphics.BitmapFactory;
51 41a81a14 Leszek Koltunski
import android.opengl.GLES30;
52 427ab7bf Leszek Koltunski
import android.opengl.GLSurfaceView;
53
54
///////////////////////////////////////////////////////////////////////////////////////////////////
55
56 3c70973c Leszek Koltunski
class BitmapTreeRenderer implements GLSurfaceView.Renderer
57 427ab7bf Leszek Koltunski
{
58
   private GLSurfaceView mView;
59 d04a4886 Leszek Koltunski
   private DistortedEffects mEffects;
60 59540ba2 Leszek Koltunski
   private DistortedTexture mLisaTexture, mGridTexture;
61 d218d64e leszek
   private DistortedScreen mScreen;
62 8744aa41 Leszek Koltunski
   private DistortedNode mRoot;
63 5f2a53b6 leszek
   private MeshFlat mMeshFlat;
64
   private MeshCubes mMeshCubes;
65 392e16fd Leszek Koltunski
   private int lisaHeight, lisaWidth;
66 b5636dbf leszek
   private boolean mDepth;
67 6646c476 leszek
   private Static3D mScale, mMove;
68 392e16fd Leszek Koltunski
69 427ab7bf Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
70
71 3c70973c Leszek Koltunski
   BitmapTreeRenderer(GLSurfaceView v)
72 427ab7bf Leszek Koltunski
      {
73 392e16fd Leszek Koltunski
      mView   = v;
74 b5636dbf leszek
      mDepth  = true;
75 6646c476 leszek
      mScale  = new Static3D(1,1,1);
76
      mMove   = new Static3D(0,0,0);
77 3c70973c Leszek Koltunski
      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 6646c476 leszek
      mEffects.apply(new MatrixEffectMove(mMove));
83
      mEffects.apply(new MatrixEffectScale(mScale));
84 3c70973c Leszek Koltunski
      mEffects.apply(new FragmentEffectChroma(chromaDyn, new Static3D(0,0,1)));
85
86 e4330c89 Leszek Koltunski
      mScreen = new DistortedScreen();
87 427ab7bf Leszek Koltunski
      }
88
89 1746198f Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
90
91 b5636dbf leszek
   private void setDepthPriv()
92
     {
93
     if( mDepth ) mRoot.glEnable (GLES30.GL_DEPTH_TEST);
94
     else         mRoot.glDisable(GLES30.GL_DEPTH_TEST);
95 fc695380 leszek
96 b5636dbf leszek
     mRoot.glDepthMask(mDepth);
97 fc695380 leszek
98 b5636dbf leszek
     // we can also, to save memory, delete/recreate
99
     // the depth buffer each time. This is optional.
100 559da65d Leszek Koltunski
     mRoot.enableDepthStencil(mDepth ? DistortedFramebuffer.DEPTH_NO_STENCIL:DistortedFramebuffer.NO_DEPTH_NO_STENCIL);
101 b5636dbf leszek
     }
102
103
///////////////////////////////////////////////////////////////////////////////////////////////////
104
105
   void setDepth(boolean depth)
106
      {
107
      mDepth = depth;
108
      if( mRoot!=null ) setDepthPriv();
109 1746198f Leszek Koltunski
      }
110
111 427ab7bf Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
112
   
113 1746198f Leszek Koltunski
   public void onDrawFrame(GL10 glUnused)
114 427ab7bf Leszek Koltunski
      {
115 fe59d375 Leszek Koltunski
      mScreen.render(System.currentTimeMillis());
116 427ab7bf Leszek Koltunski
      }
117
118
///////////////////////////////////////////////////////////////////////////////////////////////////
119
    
120 1746198f Leszek Koltunski
   public void onSurfaceChanged(GL10 glUnused, int width, int height)
121 427ab7bf Leszek Koltunski
      { 
122 630703d1 leszek
      if( (float)lisaHeight/lisaWidth > (float)height/width )
123
        {
124
        int w = (height*lisaWidth)/lisaHeight;
125
        float factor = (float)height/lisaHeight;
126
127 6646c476 leszek
        mMove.set((width-w)/2,0,0);
128
        mScale.set(factor,factor,factor);
129 630703d1 leszek
        }
130
      else
131
        {
132
        int h = (width*lisaHeight)/lisaWidth;
133
        float factor = (float)width/lisaWidth;
134
135 6646c476 leszek
        mMove.set(0,(height-h)/2,0);
136
        mScale.set(factor,factor,factor);
137 630703d1 leszek
        }
138 427ab7bf Leszek Koltunski
      
139 392e16fd Leszek Koltunski
      mScreen.resize(width, height);
140 427ab7bf Leszek Koltunski
      }
141
142
///////////////////////////////////////////////////////////////////////////////////////////////////
143
    
144 1746198f Leszek Koltunski
   public void onSurfaceCreated(GL10 glUnused, EGLConfig config)
145 427ab7bf Leszek Koltunski
      {
146 3c70973c Leszek Koltunski
      // 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 3c44dcc7 leszek
      GLES30.glEnable(GLES30.GL_CULL_FACE);
150
      GLES30.glCullFace(GLES30.GL_BACK);
151
      GLES30.glFrontFace(GLES30.GL_CW);
152 e7a4ef16 Leszek Koltunski
153 427ab7bf Leszek Koltunski
      InputStream is1 = mView.getContext().getResources().openRawResource(R.raw.monalisa);
154 c0486401 Leszek Koltunski
      InputStream is2 = mView.getContext().getResources().openRawResource(R.raw.grid);
155 427ab7bf Leszek Koltunski
      
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 f6d884d5 Leszek Koltunski
      lisaWidth     = bitmap1.getWidth();
174
      lisaHeight    = bitmap1.getHeight();
175 371d99fa Leszek Koltunski
      int gridWidth = bitmap2.getWidth();
176
      int gridHeight= bitmap2.getHeight();
177 f6d884d5 Leszek Koltunski
178 59540ba2 Leszek Koltunski
      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 371d99fa Leszek Koltunski
      DistortedEffects gridEffects = new DistortedEffects();
183 e8b6aa95 Leszek Koltunski
184 4b676b3f Leszek Koltunski
      final int GRID = 10;
185
186 5f2a53b6 leszek
      if( mMeshFlat==null ) mMeshFlat = new MeshFlat(1,1);
187 58e9e190 leszek
      if( mMeshCubes==null) mMeshCubes= new MeshCubes(GRID,GRID,1);
188 5f2a53b6 leszek
189
      mRoot = new DistortedNode(mLisaTexture, mEffects, mMeshFlat);
190
      mRoot.attach(mGridTexture,gridEffects,mMeshCubes);
191 7589635e Leszek Koltunski
192 b5636dbf leszek
      setDepthPriv();
193
194 fe59d375 Leszek Koltunski
      mScreen.detachAll();
195
      mScreen.attach(mRoot);
196
197 630703d1 leszek
      float factor = lisaWidth/(2.0f*gridWidth);
198 6646c476 leszek
      MatrixEffectMove move = new MatrixEffectMove( new Static3D((lisaWidth-factor*gridWidth)/2,(lisaHeight-factor*gridHeight)/2, gridWidth/(2.0f*GRID)));
199
      MatrixEffectScale scale = new MatrixEffectScale( new Static3D(factor,factor,factor) );
200
      gridEffects.apply(move);
201
      gridEffects.apply(scale);
202 7bf107f7 Leszek Koltunski
203 c0486401 Leszek Koltunski
      Dynamic1D rotDyn = new Dynamic1D(12000,0.0f);
204
      rotDyn.add(new Static1D(  0));
205
      rotDyn.add(new Static1D(360));
206
      rotDyn.setMode(Dynamic.MODE_JUMP);
207 6646c476 leszek
      MatrixEffectRotate rotate = new MatrixEffectRotate(rotDyn, new Static3D(1,0,0), new Static3D(gridWidth/2,gridHeight/2,gridWidth/(2*GRID)));
208
      gridEffects.apply(rotate);
209 c0486401 Leszek Koltunski
210
      Dynamic1D sinkDyn = new Dynamic1D(3000,0.0f);
211 7bf107f7 Leszek Koltunski
      sinkDyn.add(new Static1D(1.0f));
212 c0486401 Leszek Koltunski
      sinkDyn.add(new Static1D(0.3f));
213 6646c476 leszek
      VertexEffectSink sink = new VertexEffectSink(sinkDyn, new Static3D(gridWidth/2,gridHeight/2, 0));
214
      gridEffects.apply(sink);
215 59759251 Leszek Koltunski
216 6646c476 leszek
      DistortedEffects.enableEffect(EffectName.SINK);
217
      DistortedEffects.enableEffect(EffectName.CHROMA);
218 6637d0f2 Leszek Koltunski
219 427ab7bf Leszek Koltunski
      try
220
        {
221 76f9798b Leszek Koltunski
        Distorted.onCreate(mView.getContext());
222 427ab7bf Leszek Koltunski
        }
223
      catch(Exception ex)
224
        {
225 3c70973c Leszek Koltunski
        android.util.Log.e("BitmapTree", ex.getMessage() );
226 427ab7bf Leszek Koltunski
        }
227
      }
228
}