Project

General

Profile

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

examples / src / main / java / org / distorted / examples / generic / GenericRenderer.java @ b1fca44e

1 08f92d82 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
2
// Copyright 2016 Leszek Koltunski                                                               //
3
//                                                                                               //
4 71c8884f Leszek Koltunski
// This file is part of Distorted.                                                               //
5 08f92d82 Leszek Koltunski
//                                                                                               //
6 71c8884f Leszek Koltunski
// Distorted is free software: you can redistribute it and/or modify                             //
7 08f92d82 Leszek Koltunski
// 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 71c8884f Leszek Koltunski
// Distorted is distributed in the hope that it will be useful,                                  //
12 08f92d82 Leszek Koltunski
// 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 71c8884f Leszek Koltunski
// along with Distorted.  If not, see <http://www.gnu.org/licenses/>.                            //
18 08f92d82 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
19
20 2ec2dc32 Leszek Koltunski
package org.distorted.examples.generic;
21 08f92d82 Leszek Koltunski
22
import android.graphics.Bitmap;
23
import android.graphics.BitmapFactory;
24
import android.opengl.GLSurfaceView;
25
26
import org.distorted.examples.R;
27 b88ec561 Leszek Koltunski
import org.distorted.library.effect.Effect;
28
import org.distorted.library.effect.EffectType;
29 06366d12 Leszek Koltunski
import org.distorted.library.effect.MatrixEffectMove;
30
import org.distorted.library.effect.MatrixEffectQuaternion;
31
import org.distorted.library.effect.MatrixEffectScale;
32 b1fca44e Leszek Koltunski
import org.distorted.library.effect.VertexEffectScale;
33 e3900503 Leszek Koltunski
import org.distorted.library.main.DistortedLibrary;
34 01782e85 Leszek Koltunski
import org.distorted.library.main.DistortedEffects;
35
import org.distorted.library.main.DistortedNode;
36
import org.distorted.library.main.DistortedScreen;
37
import org.distorted.library.main.DistortedTexture;
38 57d7fdba Leszek Koltunski
import org.distorted.library.mesh.MeshBase;
39 698ad0a8 Leszek Koltunski
import org.distorted.library.mesh.MeshQuad;
40 e83350b4 Leszek Koltunski
import org.distorted.library.mesh.MeshSphere;
41 08f92d82 Leszek Koltunski
import org.distorted.library.type.Static3D;
42
import org.distorted.library.type.Static4D;
43
44
import java.io.IOException;
45
import java.io.InputStream;
46
47
import javax.microedition.khronos.egl.EGLConfig;
48
import javax.microedition.khronos.opengles.GL10;
49
50
///////////////////////////////////////////////////////////////////////////////////////////////////
51
52 46b26cdc Leszek Koltunski
class GenericRenderer implements GLSurfaceView.Renderer
53 08f92d82 Leszek Koltunski
{
54 f86c9fb5 Leszek Koltunski
    private static final float FOV = 30.0f;
55 af662543 leszek
    private static final float NEAR = 0.1f;
56
57 08f92d82 Leszek Koltunski
    private GLSurfaceView mView;
58 f6d884d5 Leszek Koltunski
    private DistortedTexture mObjectTexture, mBackgroundTexture, mCenterTexture, mRegionTexture;
59 698ad0a8 Leszek Koltunski
    private DistortedEffects mObjectEffects;
60 d218d64e leszek
    private DistortedScreen mScreen;
61 fe59d375 Leszek Koltunski
    private DistortedNode mCenterNode, mRegionNode;
62 698ad0a8 Leszek Koltunski
    private float mObjWidth, mObjHeight, mObjDepth;
63 529054e9 Leszek Koltunski
    private Static3D mCenterPoint, mRegionPoint, mScaleRegion;
64
    private Static3D mMoveObject, mScaleObject, mScaleCenter, mMoveBackground, mScaleBackground;
65 fec27f16 Leszek Koltunski
    private boolean mShowingCenter=false;
66
    private boolean mShowingRegion=false;
67 1e7603bb Leszek Koltunski
    private float mFactorObj;
68 65f622c1 Leszek Koltunski
    private int mWidth;
69 e83350b4 Leszek Koltunski
    private float mFactor;
70 950511ed Leszek Koltunski
71 833685d0 Leszek Koltunski
    Static4D mQuat1, mQuat2;
72 d2337a3a Leszek Koltunski
    int mScreenMin;
73 833685d0 Leszek Koltunski
74 08f92d82 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
75
76 46b26cdc Leszek Koltunski
    GenericRenderer(GLSurfaceView v)
77 08f92d82 Leszek Koltunski
      {
78
      mView = v;
79 d40cfeb2 Leszek Koltunski
80 46b26cdc Leszek Koltunski
      GenericActivity2 act = (GenericActivity2)v.getContext();
81 e8b6aa95 Leszek Koltunski
82 06366d12 Leszek Koltunski
      mMoveObject     = new Static3D(0,0,0);
83 fec27f16 Leszek Koltunski
      mScaleObject    = new Static3D(1,1,1);
84 06366d12 Leszek Koltunski
      mScaleCenter    = new Static3D(1,1,1);
85
      mMoveBackground = new Static3D(0,0,0);
86
      mScaleBackground= new Static3D(1,1,1);
87
88 f6d884d5 Leszek Koltunski
      mObjectTexture     = act.getTexture();
89 687263cc Leszek Koltunski
      mBackgroundTexture = new DistortedTexture();
90
      mCenterTexture     = new DistortedTexture();
91
      mRegionTexture     = new DistortedTexture();
92 06366d12 Leszek Koltunski
93 1e7603bb Leszek Koltunski
      mFactorObj = 1.0f;
94
95 698ad0a8 Leszek Koltunski
      mObjectEffects   = act.getEffects();
96
      DistortedEffects backgroundEffects = new DistortedEffects();
97
      DistortedEffects centerEffects     = new DistortedEffects();
98
      DistortedEffects regionEffects     = new DistortedEffects();
99 f6d884d5 Leszek Koltunski
100 698ad0a8 Leszek Koltunski
      MeshBase mesh   = act.getMesh();
101 75cc1461 Leszek Koltunski
      MeshQuad quad   = new MeshQuad();
102 aac5c562 leszek
103 e83350b4 Leszek Koltunski
      mFactor = mesh instanceof MeshSphere ? 1.0f : 0.7f;
104
105 687263cc Leszek Koltunski
      mObjWidth = act.getWidth();
106
      mObjHeight= act.getHeight();
107
      mObjDepth = act.getDepth();
108 d40cfeb2 Leszek Koltunski
109 833685d0 Leszek Koltunski
      mQuat1 = new Static4D(0,0,0,1);  // unity
110
      mQuat2 = new Static4D(0,0,0,1);  // quaternions
111
112 24991bc2 Leszek Koltunski
      mCenterPoint= new Static3D(0,0,0);
113
      mRegionPoint= new Static3D(0,0,0);
114 529054e9 Leszek Koltunski
      mScaleRegion = new Static3D(0,0,0);
115 392e16fd Leszek Koltunski
116 75cc1461 Leszek Koltunski
      mCenterNode = new DistortedNode(mCenterTexture, centerEffects, quad);
117
      mRegionNode = new DistortedNode(mRegionTexture, regionEffects, quad);
118 fe59d375 Leszek Koltunski
119 e4330c89 Leszek Koltunski
      mScreen = new DistortedScreen();
120 af662543 leszek
      mScreen.setProjection(FOV, NEAR);
121 75cc1461 Leszek Koltunski
      mScreen.attach(mBackgroundTexture, backgroundEffects, quad );
122 698ad0a8 Leszek Koltunski
      mScreen.attach(mObjectTexture    , mObjectEffects   , mesh );
123 06366d12 Leszek Koltunski
124 529054e9 Leszek Koltunski
      Static3D rotateCen = new Static3D(0,0,0);
125 06366d12 Leszek Koltunski
126 529054e9 Leszek Koltunski
      MatrixEffectQuaternion quat1cen = new MatrixEffectQuaternion(mQuat1, rotateCen);
127
      MatrixEffectQuaternion quat2cen = new MatrixEffectQuaternion(mQuat2, rotateCen);
128
      MatrixEffectMove centerMove     = new MatrixEffectMove(mCenterPoint);
129 06366d12 Leszek Koltunski
130 698ad0a8 Leszek Koltunski
      centerEffects.apply( new MatrixEffectScale(mScaleCenter) );
131
      centerEffects.apply( centerMove );
132 529054e9 Leszek Koltunski
      centerEffects.apply( new MatrixEffectMove(new Static3D(0,0,12)) );
133 698ad0a8 Leszek Koltunski
      centerEffects.apply(quat2cen);
134
      centerEffects.apply(quat1cen);
135 06366d12 Leszek Koltunski
136 529054e9 Leszek Koltunski
      regionEffects.apply( new MatrixEffectScale(mScaleRegion) );
137 698ad0a8 Leszek Koltunski
      regionEffects.apply( centerMove );
138 529054e9 Leszek Koltunski
      regionEffects.apply( new MatrixEffectMove(mRegionPoint) );
139
      regionEffects.apply( new MatrixEffectMove(new Static3D(0,0,10)) );
140 698ad0a8 Leszek Koltunski
      regionEffects.apply(quat2cen);
141
      regionEffects.apply(quat1cen);
142 06366d12 Leszek Koltunski
143 65f622c1 Leszek Koltunski
      resetMatrixEffects();
144 b1fca44e Leszek Koltunski
      resetVertexEffects();
145 65f622c1 Leszek Koltunski
146 e3900503 Leszek Koltunski
      // quite tricky: move the background exactly to the FAR plane! (see InternalOutputSurface.setProjection() )
147 698ad0a8 Leszek Koltunski
      backgroundEffects.apply(new MatrixEffectScale(mScaleBackground) );
148
      backgroundEffects.apply(new MatrixEffectMove(mMoveBackground) );
149 f338550a leszek
      }
150
151 65f622c1 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
152
153
    void resetMatrixEffects()
154
      {
155 529054e9 Leszek Koltunski
      Static3D rotateObj = new Static3D(0,0,0);
156 65f622c1 Leszek Koltunski
157
      MatrixEffectQuaternion quat1obj = new MatrixEffectQuaternion(mQuat1,  rotateObj);
158
      MatrixEffectQuaternion quat2obj = new MatrixEffectQuaternion(mQuat2,  rotateObj);
159
160 687263cc Leszek Koltunski
      mObjectEffects.apply(quat2obj);
161
      mObjectEffects.apply(quat1obj);
162
      mObjectEffects.apply( new MatrixEffectScale(mScaleObject) );
163
      mObjectEffects.apply( new MatrixEffectMove(mMoveObject));
164 65f622c1 Leszek Koltunski
165
      mQuat1.set(0,0,0,1);
166
      mQuat2.set(0,0,0,1);
167
      }
168
169 b1fca44e Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
170
171
    void resetVertexEffects()
172
      {
173
      Static3D scale = new Static3D(mObjWidth, mObjHeight, mObjDepth);
174
      mObjectEffects.apply( new VertexEffectScale(scale) );
175
      }
176
177 f338550a leszek
///////////////////////////////////////////////////////////////////////////////////////////////////
178
179 0ab55f0c Leszek Koltunski
    void showRegionAndCenter(boolean showRegion, boolean showCenter)
180 f338550a leszek
      {
181 0ab55f0c Leszek Koltunski
      if( mShowingCenter!=showCenter  )
182 98c04ab8 leszek
        {
183 1e7603bb Leszek Koltunski
        if( showCenter )
184
          {
185
          if( mShowingRegion ) mScreen.detach(mRegionNode);
186
          mScreen.attach(mCenterNode);
187
          if( mShowingRegion ) mScreen.attach(mRegionNode);
188
          }
189
        else
190
          {
191
          mScreen.detach(mCenterNode);
192
          }
193 0ab55f0c Leszek Koltunski
194
        mShowingCenter = showCenter;
195
        }
196
197
      if( mShowingRegion!=showRegion  )
198
        {
199
        if( showRegion ) mScreen.attach(mRegionNode);
200
        else             mScreen.detach(mRegionNode);
201
202
        mShowingRegion = showRegion;
203 98c04ab8 leszek
        }
204 950511ed Leszek Koltunski
      }
205
206 65f622c1 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
207
208
    public int getWidth()
209
      {
210
      return mWidth;
211
      }
212
213 fc286c71 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
214
215
    float getScaleFactor()
216
      {
217
      return mFactorObj;
218
      }
219
220 950511ed Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
221
222 334c13fa Leszek Koltunski
    void setCenter(float x, float y, float z)
223 950511ed Leszek Koltunski
      {
224 334c13fa Leszek Koltunski
      mCenterPoint.set(mFactorObj*x,mFactorObj*y,mFactorObj*z);
225 08f92d82 Leszek Koltunski
      }
226
227 6f779cd4 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
228
229 9e7b6dbd Leszek Koltunski
    void setRegion(float x, float y, float z, float r)
230 6f779cd4 Leszek Koltunski
      {
231 75cc1461 Leszek Koltunski
      float factorReg = 2*mFactorObj*r;
232 1e7603bb Leszek Koltunski
      mRegionPoint.set(mFactorObj*x,mFactorObj*y, mFactorObj*z);
233 529054e9 Leszek Koltunski
      mScaleRegion.set(factorReg,factorReg,factorReg);
234 6f779cd4 Leszek Koltunski
      }
235
236 bddd4b2d Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
237
238
    void useOIT(boolean use)
239
      {
240
      mScreen.setOrderIndependentTransparency(use);
241
      }
242
243 08f92d82 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
244 56cbe1cf Leszek Koltunski
245
    public void onDrawFrame(GL10 glUnused)
246 08f92d82 Leszek Koltunski
      {
247 fe59d375 Leszek Koltunski
      mScreen.render(System.currentTimeMillis());
248 08f92d82 Leszek Koltunski
      }
249
250
///////////////////////////////////////////////////////////////////////////////////////////////////
251 56cbe1cf Leszek Koltunski
252
    public void onSurfaceChanged(GL10 glUnused, int width, int height)
253 08f92d82 Leszek Koltunski
      {
254 65f622c1 Leszek Koltunski
      mWidth = width;
255 75cc1461 Leszek Koltunski
      mScreenMin = Math.min(width, height);
256 752c6b57 Leszek Koltunski
257 950511ed Leszek Koltunski
      float factorCen;
258 6f779cd4 Leszek Koltunski
259 261fe5bd Leszek Koltunski
      if( width*mObjHeight > height*mObjWidth ) // screen is more 'horizontal' than the Object
260 d40cfeb2 Leszek Koltunski
        {
261 e83350b4 Leszek Koltunski
        mFactorObj = (mFactor*height)/mObjHeight;
262 75cc1461 Leszek Koltunski
        factorCen  = (0.08f  *height);
263 261fe5bd Leszek Koltunski
        }
264 d40cfeb2 Leszek Koltunski
      else
265
        {
266 e83350b4 Leszek Koltunski
        mFactorObj = (mFactor*width)/mObjWidth;
267 75cc1461 Leszek Koltunski
        factorCen  = (0.08f  *width);
268 d40cfeb2 Leszek Koltunski
        }
269
270 529054e9 Leszek Koltunski
      setCenter(0,0,0);
271 7126b262 Leszek Koltunski
      setRegion(0.0f,0.0f,0.0f,0.25f*(mObjWidth+mObjHeight));
272 1e7603bb Leszek Koltunski
273 529054e9 Leszek Koltunski
      mMoveObject.set( 0, 0 , -mFactorObj*mObjDepth );
274 fec27f16 Leszek Koltunski
      mScaleObject.set(mFactorObj,mFactorObj,mFactorObj);
275 06366d12 Leszek Koltunski
      mScaleCenter.set(factorCen,factorCen,factorCen);
276 fce25d04 leszek
277 e3900503 Leszek Koltunski
      // quite tricky: move the background exactly to the FAR plane! (see InternalOutputSurface.setProjection() )
278 529054e9 Leszek Koltunski
      mMoveBackground.set( 0,0, -0.9f*height*(1.0f-NEAR)/(2.0f*(float)Math.tan(FOV*Math.PI/360)) );
279 75cc1461 Leszek Koltunski
      mScaleBackground.set( 2*width, 2*height, 1.0f );
280 fce25d04 leszek
281 392e16fd Leszek Koltunski
      mScreen.resize(width, height);
282 08f92d82 Leszek Koltunski
      }
283
284
///////////////////////////////////////////////////////////////////////////////////////////////////
285 56cbe1cf Leszek Koltunski
286
    public void onSurfaceCreated(GL10 glUnused, EGLConfig config)
287 08f92d82 Leszek Koltunski
      {
288 46b26cdc Leszek Koltunski
      GenericActivity2 act = (GenericActivity2)mView.getContext();
289 bcc8e016 Leszek Koltunski
290 f6d884d5 Leszek Koltunski
      InputStream isB = act.getResources().openRawResource(R.raw.water);
291
      InputStream isC = act.getResources().openRawResource(R.raw.center);
292
      InputStream isR = act.getResources().openRawResource(R.raw.region);
293 71d8ad03 Leszek Koltunski
294 f6d884d5 Leszek Koltunski
      Bitmap bitmapB,bitmapC,bitmapR;
295 08f92d82 Leszek Koltunski
        
296
      try 
297
        {
298 f6d884d5 Leszek Koltunski
        bitmapB = BitmapFactory.decodeStream(isB);
299
        bitmapC = BitmapFactory.decodeStream(isC);
300
        bitmapR = BitmapFactory.decodeStream(isR);
301 71d8ad03 Leszek Koltunski
        }
302 08f92d82 Leszek Koltunski
      finally 
303
        {
304
        try 
305
          {
306 f6d884d5 Leszek Koltunski
          isB.close();
307
          isC.close();
308
          isR.close();
309 9167cfd4 Leszek Koltunski
          }
310 75cc1461 Leszek Koltunski
        catch(IOException ignored) { }
311 08f92d82 Leszek Koltunski
        }  
312
      
313 f6d884d5 Leszek Koltunski
      mObjectTexture.setTexture( act.getBitmap() );
314
      mBackgroundTexture.setTexture(bitmapB);
315
      mCenterTexture.setTexture(bitmapC);
316
      mRegionTexture.setTexture(bitmapR);
317 950511ed Leszek Koltunski
318 e3900503 Leszek Koltunski
      DistortedLibrary.setMax(EffectType.VERTEX  ,10);
319
      DistortedLibrary.setMax(EffectType.FRAGMENT,10);
320 676c14da Leszek Koltunski
321 b88ec561 Leszek Koltunski
      Effect.enableEffects(EffectType.VERTEX);
322
      Effect.enableEffects(EffectType.FRAGMENT);
323
      Effect.enableEffects(EffectType.POSTPROCESS);
324 cdcbdbe3 Leszek Koltunski
325 08f92d82 Leszek Koltunski
      try
326
        {
327 e3900503 Leszek Koltunski
        DistortedLibrary.onCreate(mView.getContext());
328 08f92d82 Leszek Koltunski
        }
329
      catch(Exception ex)
330
        {
331 76a81b6a Leszek Koltunski
        android.util.Log.e("Effects3D", ex.getMessage() );
332 08f92d82 Leszek Koltunski
        }
333
      }
334 56cbe1cf Leszek Koltunski
}