Project

General

Profile

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

examples / src / main / java / org / distorted / examples / effects3d / Effects3DRenderer.java @ 98c04ab8

1 08f92d82 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
20 76a81b6a Leszek Koltunski
package org.distorted.examples.effects3d;
21 08f92d82 Leszek Koltunski
22
import android.graphics.Bitmap;
23
import android.graphics.BitmapFactory;
24 41a81a14 Leszek Koltunski
import android.opengl.GLES30;
25 08f92d82 Leszek Koltunski
import android.opengl.GLSurfaceView;
26
27
import org.distorted.examples.R;
28
import org.distorted.library.Distorted;
29 d04a4886 Leszek Koltunski
import org.distorted.library.DistortedEffects;
30 fe59d375 Leszek Koltunski
import org.distorted.library.DistortedNode;
31 d218d64e leszek
import org.distorted.library.DistortedScreen;
32 f6d884d5 Leszek Koltunski
import org.distorted.library.DistortedTexture;
33 b01acdaf Leszek Koltunski
import org.distorted.library.MeshFlat;
34
import org.distorted.library.MeshObject;
35 08f92d82 Leszek Koltunski
import org.distorted.library.EffectTypes;
36 950511ed Leszek Koltunski
import org.distorted.library.type.Dynamic3D;
37 833685d0 Leszek Koltunski
import org.distorted.library.type.DynamicQuat;
38 08f92d82 Leszek Koltunski
import org.distorted.library.type.Static3D;
39
import org.distorted.library.type.Static4D;
40
41
import java.io.IOException;
42
import java.io.InputStream;
43
44
import javax.microedition.khronos.egl.EGLConfig;
45
import javax.microedition.khronos.opengles.GL10;
46
47
///////////////////////////////////////////////////////////////////////////////////////////////////
48
49 76a81b6a Leszek Koltunski
class Effects3DRenderer implements GLSurfaceView.Renderer
50 08f92d82 Leszek Koltunski
{
51
    private GLSurfaceView mView;
52 f6d884d5 Leszek Koltunski
    private DistortedTexture mObjectTexture, mBackgroundTexture, mCenterTexture, mRegionTexture;
53 d04a4886 Leszek Koltunski
    private DistortedEffects mObjectEffects, mBackgroundEffects, mCenterEffects, mRegionEffects;
54 d218d64e leszek
    private DistortedScreen mScreen;
55 fe59d375 Leszek Koltunski
    private DistortedNode mCenterNode, mRegionNode;
56 b01acdaf Leszek Koltunski
    private MeshFlat mQuad;
57
    private MeshObject mObjectMesh;
58 8ff32d4d Leszek Koltunski
    private int mObjWidth, mObjHeight, mObjDepth;
59 833685d0 Leszek Koltunski
    private DynamicQuat mQuatInt1, mQuatInt2;
60 950511ed Leszek Koltunski
61 24991bc2 Leszek Koltunski
    private Dynamic3D mCenterInter, mRegionInter;
62
    private Static3D mCenterPoint, mRegionPoint;
63 6f779cd4 Leszek Koltunski
    private Dynamic3D mRegionScaleInter;
64
    private Static3D mRegionScalePoint;
65
66
    private float mFactorObj, mFactorReg;
67 950511ed Leszek Koltunski
68 833685d0 Leszek Koltunski
    Static4D mQuat1, mQuat2;
69 d2337a3a Leszek Koltunski
    int mScreenMin;
70 98c04ab8 leszek
    boolean mShowing=false;
71 833685d0 Leszek Koltunski
72 08f92d82 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
73
74 4f8ca8ff Leszek Koltunski
    Effects3DRenderer(GLSurfaceView v)
75 08f92d82 Leszek Koltunski
      {
76
      mView = v;
77 d40cfeb2 Leszek Koltunski
78 e8b6aa95 Leszek Koltunski
      Effects3DActivity act = (Effects3DActivity)v.getContext();
79
80 f6d884d5 Leszek Koltunski
      mObjectTexture     = act.getTexture();
81 bfcf419a Leszek Koltunski
      mObjectMesh        = act.getMesh();
82 d04a4886 Leszek Koltunski
      mObjectEffects     = act.getEffects();
83 7451c98a Leszek Koltunski
      mBackgroundTexture = new DistortedTexture(100,100);
84
      mCenterTexture     = new DistortedTexture(100,100);
85
      mRegionTexture     = new DistortedTexture(100,100);
86 b01acdaf Leszek Koltunski
      mQuad              = new MeshFlat(1,1);
87 d04a4886 Leszek Koltunski
      mBackgroundEffects = new DistortedEffects();
88
      mCenterEffects     = new DistortedEffects();
89
      mRegionEffects     = new DistortedEffects();
90 f6d884d5 Leszek Koltunski
91
      mObjWidth = mObjectTexture.getWidth();
92
      mObjHeight= mObjectTexture.getHeight();
93 b01acdaf Leszek Koltunski
      mObjDepth = mObjectTexture.getDepth(mObjectMesh);
94 d40cfeb2 Leszek Koltunski
95 833685d0 Leszek Koltunski
      mQuat1 = new Static4D(0,0,0,1);  // unity
96
      mQuat2 = new Static4D(0,0,0,1);  // quaternions
97
98
      mQuatInt1 = new DynamicQuat(0,0.5f);
99
      mQuatInt2 = new DynamicQuat(0,0.5f);
100
101
      mQuatInt1.add(mQuat1);
102
      mQuatInt2.add(mQuat2);
103 950511ed Leszek Koltunski
104 24991bc2 Leszek Koltunski
      mCenterInter= new Dynamic3D();
105
      mCenterPoint= new Static3D(0,0,0);
106
      mCenterInter.add(mCenterPoint);
107
108
      mRegionInter= new Dynamic3D();
109
      mRegionPoint= new Static3D(0,0,0);
110
      mRegionInter.add(mRegionPoint);
111 6f779cd4 Leszek Koltunski
112
      mRegionScaleInter = new Dynamic3D();
113
      mRegionScalePoint = new Static3D(0,0,0);
114
      mRegionScaleInter.add(mRegionScalePoint);
115 392e16fd Leszek Koltunski
116 fe59d375 Leszek Koltunski
      mCenterNode = new DistortedNode(mCenterTexture, mCenterEffects, mQuad);
117
      mRegionNode = new DistortedNode(mRegionTexture, mRegionEffects, mQuad);
118
119 d218d64e leszek
      mScreen = new DistortedScreen();
120 fe59d375 Leszek Koltunski
      mScreen.attach(mBackgroundTexture, mBackgroundEffects, mQuad      );
121
      mScreen.attach(mObjectTexture    , mObjectEffects    , mObjectMesh);
122 f338550a leszek
      }
123
124
///////////////////////////////////////////////////////////////////////////////////////////////////
125
126 98c04ab8 leszek
    void showRegionAndCenter(boolean show)
127 f338550a leszek
      {
128 98c04ab8 leszek
      if( mShowing!=show )
129
        {
130
        if( show )
131
          {
132
          mScreen.attach(mCenterNode);
133
          mScreen.attach(mRegionNode);
134
          }
135
        else
136
          {
137
          mScreen.detach(mCenterNode);
138
          mScreen.detach(mRegionNode);
139
          }
140
141
        mShowing = show;
142
        }
143 950511ed Leszek Koltunski
      }
144
145
///////////////////////////////////////////////////////////////////////////////////////////////////
146
147 334c13fa Leszek Koltunski
    void setCenter(float x, float y, float z)
148 950511ed Leszek Koltunski
      {
149 334c13fa Leszek Koltunski
      mCenterPoint.set(mFactorObj*x,mFactorObj*y,mFactorObj*z);
150 08f92d82 Leszek Koltunski
      }
151
152 6f779cd4 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
153
154 4f8ca8ff Leszek Koltunski
    void setRegion(float x, float y, float r)
155 6f779cd4 Leszek Koltunski
      {
156 f6d884d5 Leszek Koltunski
      mFactorReg = 2*mFactorObj*r/mRegionTexture.getWidth();
157 24991bc2 Leszek Koltunski
      mRegionPoint.set(mFactorObj*x,mFactorObj*y,0);
158 9ae05f6c Leszek Koltunski
      mRegionScalePoint.set(mFactorReg,mFactorReg,mFactorReg);
159 6f779cd4 Leszek Koltunski
      }
160
161 08f92d82 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
162 56cbe1cf Leszek Koltunski
163
    public void onDrawFrame(GL10 glUnused)
164 08f92d82 Leszek Koltunski
      {
165 41a81a14 Leszek Koltunski
      GLES30.glClear( GLES30.GL_DEPTH_BUFFER_BIT | GLES30.GL_COLOR_BUFFER_BIT);
166 fe59d375 Leszek Koltunski
      mScreen.render(System.currentTimeMillis());
167 08f92d82 Leszek Koltunski
      }
168
169
///////////////////////////////////////////////////////////////////////////////////////////////////
170 56cbe1cf Leszek Koltunski
171
    public void onSurfaceChanged(GL10 glUnused, int width, int height)
172 08f92d82 Leszek Koltunski
      {
173 833685d0 Leszek Koltunski
      mScreenMin = width<height ? width:height;
174
175 392e16fd Leszek Koltunski
      mObjectEffects.abortEffects(EffectTypes.MATRIX);
176
      mBackgroundEffects.abortEffects(EffectTypes.MATRIX);
177
      mCenterEffects.abortEffects(EffectTypes.MATRIX);
178
      mRegionEffects.abortEffects(EffectTypes.MATRIX);
179 950511ed Leszek Koltunski
180
      float factorCen;
181 f6d884d5 Leszek Koltunski
      int centerSize = mCenterTexture.getWidth();
182
      int regionSize = mRegionTexture.getWidth();
183 6f779cd4 Leszek Koltunski
184 261fe5bd Leszek Koltunski
      if( width*mObjHeight > height*mObjWidth ) // screen is more 'horizontal' than the Object
185 d40cfeb2 Leszek Koltunski
        {
186 950511ed Leszek Koltunski
        mFactorObj = (0.80f*height)/mObjHeight;
187
        factorCen  = (0.08f*height)/centerSize;
188 261fe5bd Leszek Koltunski
        }
189 d40cfeb2 Leszek Koltunski
      else
190
        {
191 950511ed Leszek Koltunski
        mFactorObj = (0.80f*width)/mObjWidth;
192
        factorCen  = (0.08f*width)/centerSize;
193 d40cfeb2 Leszek Koltunski
        }
194
195 76a81b6a Leszek Koltunski
      Effects3DActivity act = (Effects3DActivity)mView.getContext();
196 24991bc2 Leszek Koltunski
      mCenterPoint.set(mFactorObj*act.getCenterX(),mFactorObj*act.getCenterY(),0);
197
      mRegionPoint.set(mFactorObj*act.getRegionX(),mFactorObj*act.getRegionY(),0);
198 9ae05f6c Leszek Koltunski
199 17600407 Leszek Koltunski
      mFactorReg = 2*mFactorObj*act.getRegionR()/regionSize;
200 9ae05f6c Leszek Koltunski
      mRegionScalePoint.set(mFactorReg,mFactorReg,mFactorReg);
201 950511ed Leszek Koltunski
202 2bf60c29 Leszek Koltunski
      Static3D rotateObj = new Static3D(mObjWidth/2,mObjHeight/2, 0);
203
204 392e16fd Leszek Koltunski
      mObjectEffects.move( new Static3D( (width-mFactorObj*mObjWidth)/2 , (height-mFactorObj*mObjHeight)/2 , 0) );
205
      mObjectEffects.scale(mFactorObj);
206
      mObjectEffects.quaternion(mQuatInt1, rotateObj);
207
      mObjectEffects.quaternion(mQuatInt2, rotateObj);
208 833685d0 Leszek Koltunski
209 950511ed Leszek Koltunski
      Static3D rotateCen = new Static3D(width/2,height/2, 0);
210
211 392e16fd Leszek Koltunski
      mCenterEffects.quaternion(mQuatInt1, rotateCen);
212
      mCenterEffects.quaternion(mQuatInt2, rotateCen);
213 950511ed Leszek Koltunski
214 392e16fd Leszek Koltunski
      mCenterEffects.move( new Static3D( (width -factorCen*centerSize-mFactorObj*mObjWidth )/2 ,
215 8ff32d4d Leszek Koltunski
                                  (height-factorCen*centerSize-mFactorObj*mObjHeight)/2 , mFactorObj*mObjDepth/2+10) );
216 392e16fd Leszek Koltunski
      mCenterEffects.move(mCenterInter);
217
      mCenterEffects.scale(factorCen);
218 950511ed Leszek Koltunski
219 392e16fd Leszek Koltunski
      mRegionEffects.quaternion(mQuatInt1, rotateCen);
220
      mRegionEffects.quaternion(mQuatInt2, rotateCen);
221 6f779cd4 Leszek Koltunski
222 392e16fd Leszek Koltunski
      mRegionEffects.move( new Static3D( (width -mFactorObj*mObjWidth )/2 ,
223 8ff32d4d Leszek Koltunski
                                  (height-mFactorObj*mObjHeight)/2 , mFactorObj*mObjDepth/2+12) );
224 392e16fd Leszek Koltunski
      mRegionEffects.move(mCenterInter);
225
      mRegionEffects.move(mRegionInter);
226
      mRegionEffects.scale(mRegionScaleInter);
227
      mRegionEffects.move( new Static3D( -regionSize/2 , -regionSize/2 , 0) );
228 6f779cd4 Leszek Koltunski
229 f6d884d5 Leszek Koltunski
      int backgroundSize = mBackgroundTexture.getWidth();
230 56cbe1cf Leszek Koltunski
      float factorBackX = ((float)width)/backgroundSize;
231
      float factorBackY = ((float)height)/backgroundSize;
232 833685d0 Leszek Koltunski
233 392e16fd Leszek Koltunski
      mBackgroundEffects.move(new Static3D( -width/2, -height/2,-mFactorObj*(mObjWidth+mObjHeight)/2) );
234
      mBackgroundEffects.scale(new Static3D(2*factorBackX, 2*factorBackY, 1.0f) );
235 71d8ad03 Leszek Koltunski
236 392e16fd Leszek Koltunski
      mScreen.resize(width, height);
237 08f92d82 Leszek Koltunski
      }
238
239
///////////////////////////////////////////////////////////////////////////////////////////////////
240 56cbe1cf Leszek Koltunski
241
    public void onSurfaceCreated(GL10 glUnused, EGLConfig config)
242 08f92d82 Leszek Koltunski
      {
243 41a81a14 Leszek Koltunski
      GLES30.glClearColor(0.0f, 0.0f, 0.0f, 1.0f);
244 e7a4ef16 Leszek Koltunski
245 76a81b6a Leszek Koltunski
      Effects3DActivity act = (Effects3DActivity)mView.getContext();
246 bcc8e016 Leszek Koltunski
247 f6d884d5 Leszek Koltunski
      InputStream isB = act.getResources().openRawResource(R.raw.water);
248
      InputStream isC = act.getResources().openRawResource(R.raw.center);
249
      InputStream isR = act.getResources().openRawResource(R.raw.region);
250 71d8ad03 Leszek Koltunski
251 f6d884d5 Leszek Koltunski
      Bitmap bitmapB,bitmapC,bitmapR;
252 08f92d82 Leszek Koltunski
        
253
      try 
254
        {
255 f6d884d5 Leszek Koltunski
        bitmapB = BitmapFactory.decodeStream(isB);
256
        bitmapC = BitmapFactory.decodeStream(isC);
257
        bitmapR = BitmapFactory.decodeStream(isR);
258 71d8ad03 Leszek Koltunski
        }
259 08f92d82 Leszek Koltunski
      finally 
260
        {
261
        try 
262
          {
263 f6d884d5 Leszek Koltunski
          isB.close();
264
          isC.close();
265
          isR.close();
266 9167cfd4 Leszek Koltunski
          }
267 08f92d82 Leszek Koltunski
        catch(IOException e) { }
268
        }  
269
      
270 f6d884d5 Leszek Koltunski
      mObjectTexture.setTexture( act.getBitmap() );
271
      mBackgroundTexture.setTexture(bitmapB);
272
      mCenterTexture.setTexture(bitmapC);
273
      mRegionTexture.setTexture(bitmapR);
274 950511ed Leszek Koltunski
275 08f92d82 Leszek Koltunski
      try
276
        {
277 76f9798b Leszek Koltunski
        Distorted.onCreate(mView.getContext());
278 08f92d82 Leszek Koltunski
        }
279
      catch(Exception ex)
280
        {
281 76a81b6a Leszek Koltunski
        android.util.Log.e("Effects3D", ex.getMessage() );
282 08f92d82 Leszek Koltunski
        }
283
      }
284 56cbe1cf Leszek Koltunski
}