Project

General

Profile

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

examples / src / main / java / org / distorted / examples / wind / WindRenderer.java @ 885b9cca

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.wind;
21

    
22
import android.graphics.Bitmap;
23
import android.graphics.BitmapFactory;
24
import android.opengl.GLSurfaceView;
25

    
26
import org.distorted.examples.R;
27
import org.distorted.library.effect.EffectName;
28
import org.distorted.library.effect.MatrixEffectMove;
29
import org.distorted.library.effect.MatrixEffectRotate;
30
import org.distorted.library.effect.MatrixEffectScale;
31
import org.distorted.library.effect.VertexEffectDeform;
32
import org.distorted.library.effect.VertexEffectWave;
33
import org.distorted.library.main.Distorted;
34
import org.distorted.library.main.DistortedScreen;
35
import org.distorted.library.main.MeshCubes;
36
import org.distorted.library.main.DistortedEffects;
37
import org.distorted.library.main.DistortedTexture;
38
import org.distorted.library.type.Static1D;
39
import org.distorted.library.type.Static3D;
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
class WindRenderer implements GLSurfaceView.Renderer
50
{
51
   private GLSurfaceView mView;
52
   private DistortedTexture mTexture;
53
   private DistortedScreen mScreen;
54
   private WindEffectsManager mManager;
55
   private Static3D mMove, mScale;
56
   private int mObjWidth, mObjHeight;
57
   private int mWind;
58

    
59
///////////////////////////////////////////////////////////////////////////////////////////////////
60

    
61
   WindRenderer(GLSurfaceView view)
62
      { 
63
      mView = view;
64

    
65
      mTexture = new DistortedTexture(50,30);
66
      mManager = new WindEffectsManager(mTexture);
67
      mScreen  = new DistortedScreen();
68

    
69
      DistortedEffects effects = new DistortedEffects();
70

    
71
      mScreen.attach(mTexture,effects,new MeshCubes(50,30,1));
72

    
73
      mObjWidth = mTexture.getWidth();
74
      mObjHeight= mTexture.getHeight();
75

    
76
      mMove = new Static3D(0,0,0);
77
      mScale= new Static3D(1,1,1);
78
      effects.apply( new MatrixEffectMove(mMove));
79
      effects.apply( new MatrixEffectScale(mScale));
80

    
81
      Static1D angle = new Static1D(-45);
82
      Static3D axis  = new Static3D(0,0,1);
83
      Static3D center= new Static3D(0,mObjHeight/2,0);
84

    
85
      effects.apply( new MatrixEffectRotate(angle, axis, center) );
86
      mManager.apply(effects,mWind);
87
      }
88

    
89
///////////////////////////////////////////////////////////////////////////////////////////////////
90

    
91
   void setWind(int wind)
92
      {
93
      mWind = wind;
94
      mManager.setWind(mWind);
95
      }
96
   
97
///////////////////////////////////////////////////////////////////////////////////////////////////
98
   
99
   public void onDrawFrame(GL10 glUnused) 
100
      {
101
      mScreen.render( System.currentTimeMillis() );
102
      }
103

    
104
///////////////////////////////////////////////////////////////////////////////////////////////////
105
    
106
   public void onSurfaceChanged(GL10 glUnused, int width, int height) 
107
      {
108
      float factor = ( (float)(width<height? width:height) )/(mObjHeight + 1.4f*mObjWidth);
109
      mMove.set( factor*mObjHeight*0.58f , factor*mObjHeight*0.08f , 0 );
110
      mScale.set(factor,factor,factor);
111
      mScreen.resize(width, height);
112
      }
113

    
114
///////////////////////////////////////////////////////////////////////////////////////////////////
115
    
116
   public void onSurfaceCreated(GL10 glUnused, EGLConfig config) 
117
      {
118
      InputStream is = mView.getContext().getResources().openRawResource(R.raw.iceland);
119
      Bitmap bitmap;
120

    
121
      try
122
        {
123
        bitmap = BitmapFactory.decodeStream(is);
124
        }
125
      finally
126
        {
127
        try
128
          {
129
          is.close();
130
          }
131
        catch(IOException e) { }
132
        }
133

    
134
      mTexture.setTexture(bitmap);
135

    
136
      VertexEffectDeform.enable();
137
      VertexEffectWave.enable();
138

    
139
      try
140
        {
141
        Distorted.onCreate(mView.getContext());
142
        }
143
      catch(Exception ex)
144
        {
145
        android.util.Log.e("Wind", ex.getMessage() );
146
        }
147
      }
148
}
(3-3/4)