Project

General

Profile

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

examples / src / main / java / org / distorted / examples / generic / GenericRenderer.java @ 698ad0a8

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 e3900503 Leszek Koltunski
import org.distorted.library.main.DistortedLibrary;
33 01782e85 Leszek Koltunski
import org.distorted.library.main.DistortedEffects;
34
import org.distorted.library.main.DistortedNode;
35
import org.distorted.library.main.DistortedScreen;
36
import org.distorted.library.main.DistortedTexture;
37 57d7fdba Leszek Koltunski
import org.distorted.library.mesh.MeshBase;
38 698ad0a8 Leszek Koltunski
import org.distorted.library.mesh.MeshQuad;
39 e83350b4 Leszek Koltunski
import org.distorted.library.mesh.MeshSphere;
40 08f92d82 Leszek Koltunski
import org.distorted.library.type.Static3D;
41
import org.distorted.library.type.Static4D;
42
43
import java.io.IOException;
44
import java.io.InputStream;
45
46
import javax.microedition.khronos.egl.EGLConfig;
47
import javax.microedition.khronos.opengles.GL10;
48
49
///////////////////////////////////////////////////////////////////////////////////////////////////
50
51 46b26cdc Leszek Koltunski
class GenericRenderer implements GLSurfaceView.Renderer
52 08f92d82 Leszek Koltunski
{
53 f86c9fb5 Leszek Koltunski
    private static final float FOV = 30.0f;
54 af662543 leszek
    private static final float NEAR = 0.1f;
55
56 08f92d82 Leszek Koltunski
    private GLSurfaceView mView;
57 f6d884d5 Leszek Koltunski
    private DistortedTexture mObjectTexture, mBackgroundTexture, mCenterTexture, mRegionTexture;
58 698ad0a8 Leszek Koltunski
    private DistortedEffects mObjectEffects;
59 d218d64e leszek
    private DistortedScreen mScreen;
60 698ad0a8 Leszek Koltunski
    private MeshQuad mRegionQuad, mCenterQuad, mBackgroundQuad;
61 fe59d375 Leszek Koltunski
    private DistortedNode mCenterNode, mRegionNode;
62 698ad0a8 Leszek Koltunski
    private float mObjWidth, mObjHeight, mObjDepth;
63 06366d12 Leszek Koltunski
    private Static3D mCenterPoint, mRegionPoint, mRegionScalePoint;
64 fec27f16 Leszek Koltunski
    private Static3D mRotateCen, mMoveObject, mScaleObject, mMoveCenter, mScaleCenter, mMoveRegion, mMoveBackground, mScaleBackground;
65
    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
      mRotateCen      = new Static3D(0,0,0);
83
      mMoveObject     = new Static3D(0,0,0);
84 fec27f16 Leszek Koltunski
      mScaleObject    = new Static3D(1,1,1);
85 06366d12 Leszek Koltunski
      mMoveCenter     = new Static3D(0,0,0);
86
      mScaleCenter    = new Static3D(1,1,1);
87
      mMoveRegion     = new Static3D(0,0,0);
88
      mMoveBackground = new Static3D(0,0,0);
89
      mScaleBackground= new Static3D(1,1,1);
90
91 f6d884d5 Leszek Koltunski
      mObjectTexture     = act.getTexture();
92 687263cc Leszek Koltunski
      mBackgroundTexture = new DistortedTexture();
93
      mCenterTexture     = new DistortedTexture();
94
      mRegionTexture     = new DistortedTexture();
95 06366d12 Leszek Koltunski
96 1e7603bb Leszek Koltunski
      mFactorObj = 1.0f;
97
98 698ad0a8 Leszek Koltunski
      mObjectEffects   = act.getEffects();
99
      DistortedEffects backgroundEffects = new DistortedEffects();
100
      DistortedEffects centerEffects     = new DistortedEffects();
101
      DistortedEffects regionEffects     = new DistortedEffects();
102 f6d884d5 Leszek Koltunski
103 698ad0a8 Leszek Koltunski
      MeshBase mesh   = act.getMesh();
104
      mRegionQuad     = new MeshQuad();
105
      mCenterQuad     = new MeshQuad();
106
      mBackgroundQuad = new MeshQuad();
107 aac5c562 leszek
108 e83350b4 Leszek Koltunski
      mFactor = mesh instanceof MeshSphere ? 1.0f : 0.7f;
109
110 687263cc Leszek Koltunski
      mObjWidth = act.getWidth();
111
      mObjHeight= act.getHeight();
112
      mObjDepth = act.getDepth();
113 d40cfeb2 Leszek Koltunski
114 833685d0 Leszek Koltunski
      mQuat1 = new Static4D(0,0,0,1);  // unity
115
      mQuat2 = new Static4D(0,0,0,1);  // quaternions
116
117 24991bc2 Leszek Koltunski
      mCenterPoint= new Static3D(0,0,0);
118
      mRegionPoint= new Static3D(0,0,0);
119 6f779cd4 Leszek Koltunski
      mRegionScalePoint = new Static3D(0,0,0);
120 392e16fd Leszek Koltunski
121 698ad0a8 Leszek Koltunski
      mCenterNode = new DistortedNode(mCenterTexture, centerEffects, mCenterQuad);
122
      mRegionNode = new DistortedNode(mRegionTexture, regionEffects, mRegionQuad);
123 fe59d375 Leszek Koltunski
124 e4330c89 Leszek Koltunski
      mScreen = new DistortedScreen();
125 af662543 leszek
      mScreen.setProjection(FOV, NEAR);
126 698ad0a8 Leszek Koltunski
      mScreen.attach(mBackgroundTexture, backgroundEffects, mBackgroundQuad );
127
      mScreen.attach(mObjectTexture    , mObjectEffects   , mesh );
128 06366d12 Leszek Koltunski
129 698ad0a8 Leszek Koltunski
      float regionSize = mRegionQuad.getStretchX();
130 06366d12 Leszek Koltunski
      mRotateCen = new Static3D(0 ,0, 0);
131
132
      MatrixEffectQuaternion quat1cen = new MatrixEffectQuaternion(mQuat1, mRotateCen);
133
      MatrixEffectQuaternion quat2cen = new MatrixEffectQuaternion(mQuat2, mRotateCen);
134
      MatrixEffectMove centerMove = new MatrixEffectMove(mCenterPoint);
135
136 698ad0a8 Leszek Koltunski
      centerEffects.apply( new MatrixEffectScale(mScaleCenter) );
137
      centerEffects.apply( centerMove );
138
      centerEffects.apply( new MatrixEffectMove(mMoveCenter) );
139
      centerEffects.apply(quat2cen);
140
      centerEffects.apply(quat1cen);
141 06366d12 Leszek Koltunski
142 698ad0a8 Leszek Koltunski
      regionEffects.apply( new MatrixEffectMove(new Static3D( -regionSize*0.5f , -regionSize*0.5f , 0)) );
143
      regionEffects.apply( new MatrixEffectScale(mRegionScalePoint) );
144
      regionEffects.apply( new MatrixEffectMove(mRegionPoint) );
145
      regionEffects.apply( centerMove );
146
      regionEffects.apply( new MatrixEffectMove(mMoveRegion) );
147
      regionEffects.apply(quat2cen);
148
      regionEffects.apply(quat1cen);
149 06366d12 Leszek Koltunski
150 65f622c1 Leszek Koltunski
      resetMatrixEffects();
151
152 e3900503 Leszek Koltunski
      // quite tricky: move the background exactly to the FAR plane! (see InternalOutputSurface.setProjection() )
153 698ad0a8 Leszek Koltunski
      backgroundEffects.apply(new MatrixEffectScale(mScaleBackground) );
154
      backgroundEffects.apply(new MatrixEffectMove(mMoveBackground) );
155 f338550a leszek
      }
156
157 65f622c1 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
158
159
    void resetMatrixEffects()
160
      {
161 b424b062 Leszek Koltunski
      Static3D rotateObj = new Static3D( (float)mObjWidth/2, (float)mObjHeight/2, (float)mObjDepth/2 );
162 65f622c1 Leszek Koltunski
163
      MatrixEffectQuaternion quat1obj = new MatrixEffectQuaternion(mQuat1,  rotateObj);
164
      MatrixEffectQuaternion quat2obj = new MatrixEffectQuaternion(mQuat2,  rotateObj);
165
166 687263cc Leszek Koltunski
      mObjectEffects.apply(quat2obj);
167
      mObjectEffects.apply(quat1obj);
168
      mObjectEffects.apply( new MatrixEffectScale(mScaleObject) );
169
      mObjectEffects.apply( new MatrixEffectMove(mMoveObject));
170 65f622c1 Leszek Koltunski
171
      mQuat1.set(0,0,0,1);
172
      mQuat2.set(0,0,0,1);
173
      }
174
175 f338550a leszek
///////////////////////////////////////////////////////////////////////////////////////////////////
176
177 0ab55f0c Leszek Koltunski
    void showRegionAndCenter(boolean showRegion, boolean showCenter)
178 f338550a leszek
      {
179 0ab55f0c Leszek Koltunski
      if( mShowingCenter!=showCenter  )
180 98c04ab8 leszek
        {
181 1e7603bb Leszek Koltunski
        if( showCenter )
182
          {
183
          if( mShowingRegion ) mScreen.detach(mRegionNode);
184
          mScreen.attach(mCenterNode);
185
          if( mShowingRegion ) mScreen.attach(mRegionNode);
186
          }
187
        else
188
          {
189
          mScreen.detach(mCenterNode);
190
          }
191 0ab55f0c Leszek Koltunski
192
        mShowingCenter = showCenter;
193
        }
194
195
      if( mShowingRegion!=showRegion  )
196
        {
197
        if( showRegion ) mScreen.attach(mRegionNode);
198
        else             mScreen.detach(mRegionNode);
199
200
        mShowingRegion = showRegion;
201 98c04ab8 leszek
        }
202 950511ed Leszek Koltunski
      }
203
204 65f622c1 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
205
206
    public int getWidth()
207
      {
208
      return mWidth;
209
      }
210
211 950511ed Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
212
213 334c13fa Leszek Koltunski
    void setCenter(float x, float y, float z)
214 950511ed Leszek Koltunski
      {
215 334c13fa Leszek Koltunski
      mCenterPoint.set(mFactorObj*x,mFactorObj*y,mFactorObj*z);
216 08f92d82 Leszek Koltunski
      }
217
218 6f779cd4 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
219
220 9e7b6dbd Leszek Koltunski
    void setRegion(float x, float y, float z, float r)
221 6f779cd4 Leszek Koltunski
      {
222 698ad0a8 Leszek Koltunski
      float factorReg = 2*mFactorObj*r/mRegionQuad.getStretchX();
223 1e7603bb Leszek Koltunski
      mRegionPoint.set(mFactorObj*x,mFactorObj*y, mFactorObj*z);
224
      mRegionScalePoint.set(factorReg,factorReg,factorReg);
225 6f779cd4 Leszek Koltunski
      }
226
227 bddd4b2d Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
228
229
    void useOIT(boolean use)
230
      {
231
      mScreen.setOrderIndependentTransparency(use);
232
      }
233
234 08f92d82 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
235 56cbe1cf Leszek Koltunski
236
    public void onDrawFrame(GL10 glUnused)
237 08f92d82 Leszek Koltunski
      {
238 fe59d375 Leszek Koltunski
      mScreen.render(System.currentTimeMillis());
239 08f92d82 Leszek Koltunski
      }
240
241
///////////////////////////////////////////////////////////////////////////////////////////////////
242 56cbe1cf Leszek Koltunski
243
    public void onSurfaceChanged(GL10 glUnused, int width, int height)
244 08f92d82 Leszek Koltunski
      {
245 65f622c1 Leszek Koltunski
      mWidth = width;
246 833685d0 Leszek Koltunski
      mScreenMin = width<height ? width:height;
247 752c6b57 Leszek Koltunski
248 950511ed Leszek Koltunski
      float factorCen;
249 698ad0a8 Leszek Koltunski
      float centerSize = mCenterQuad.getStretchX();
250 6f779cd4 Leszek Koltunski
251 261fe5bd Leszek Koltunski
      if( width*mObjHeight > height*mObjWidth ) // screen is more 'horizontal' than the Object
252 d40cfeb2 Leszek Koltunski
        {
253 e83350b4 Leszek Koltunski
        mFactorObj = (mFactor*height)/mObjHeight;
254
        factorCen  = (0.08f  *height)/centerSize;
255 261fe5bd Leszek Koltunski
        }
256 d40cfeb2 Leszek Koltunski
      else
257
        {
258 e83350b4 Leszek Koltunski
        mFactorObj = (mFactor*width)/mObjWidth;
259
        factorCen  = (0.08f  *width)/centerSize;
260 d40cfeb2 Leszek Koltunski
        }
261
262 7126b262 Leszek Koltunski
      setCenter(0.5f*mObjWidth,0.5f*mObjHeight,0.5f*mObjDepth);
263
      setRegion(0.0f,0.0f,0.0f,0.25f*(mObjWidth+mObjHeight));
264 1e7603bb Leszek Koltunski
265 a4d59c0b Leszek Koltunski
      mMoveObject.set( (width-mFactorObj*mObjWidth)/2 , (height-mFactorObj*mObjHeight)/2 , -mFactorObj*mObjDepth );
266 1e7603bb Leszek Koltunski
      mRotateCen.set(width*0.5f,height*0.5f, 0);
267 fec27f16 Leszek Koltunski
      mScaleObject.set(mFactorObj,mFactorObj,mFactorObj);
268 06366d12 Leszek Koltunski
      mMoveCenter.set( (width -factorCen*centerSize-mFactorObj*mObjWidth )/2 ,
269
                       (height-factorCen*centerSize-mFactorObj*mObjHeight)/2 , 15 );
270
      mScaleCenter.set(factorCen,factorCen,factorCen);
271
      mMoveRegion.set( (width -mFactorObj*mObjWidth )/2 ,(height-mFactorObj*mObjHeight)/2 , 12 );
272 fce25d04 leszek
273 698ad0a8 Leszek Koltunski
      float backgroundSize = mBackgroundQuad.getStretchX();
274 fce25d04 leszek
      float factorBackX = ((float)width)/backgroundSize;
275
      float factorBackY = ((float)height)/backgroundSize;
276
277 e3900503 Leszek Koltunski
      // quite tricky: move the background exactly to the FAR plane! (see InternalOutputSurface.setProjection() )
278 1e7603bb Leszek Koltunski
      mMoveBackground.set( -width*0.5f, -height*0.5f, -0.9f*height*(1.0f-NEAR)/(2.0f*(float)Math.tan(FOV*Math.PI/360)) );
279 06366d12 Leszek Koltunski
      mScaleBackground.set( 2*factorBackX, 2*factorBackY, 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 08f92d82 Leszek Koltunski
        catch(IOException e) { }
311
        }  
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
}