Project

General

Profile

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

examples / src / main / java / org / distorted / examples / wind / WindRenderer.java @ 687263cc

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.MatrixEffectMove;
28
import org.distorted.library.effect.MatrixEffectRotate;
29
import org.distorted.library.effect.MatrixEffectScale;
30
import org.distorted.library.effect.VertexEffectDeform;
31
import org.distorted.library.effect.VertexEffectWave;
32
import org.distorted.library.main.DistortedLibrary;
33
import org.distorted.library.main.DistortedScreen;
34
import org.distorted.library.mesh.MeshCubes;
35
import org.distorted.library.main.DistortedEffects;
36
import org.distorted.library.main.DistortedTexture;
37
import org.distorted.library.type.Static1D;
38
import org.distorted.library.type.Static3D;
39

    
40
import java.io.IOException;
41
import java.io.InputStream;
42

    
43
import javax.microedition.khronos.egl.EGLConfig;
44
import javax.microedition.khronos.opengles.GL10;
45

    
46
///////////////////////////////////////////////////////////////////////////////////////////////////
47

    
48
class WindRenderer implements GLSurfaceView.Renderer
49
{
50
   private GLSurfaceView mView;
51
   private DistortedTexture mTexture;
52
   private DistortedScreen mScreen;
53
   private WindEffectsManager mManager;
54
   private WindGust mGust;
55
   private Static3D mMove, mScale;
56
   private int mObjWidth, mObjHeight;
57

    
58
///////////////////////////////////////////////////////////////////////////////////////////////////
59

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

    
64
      MeshCubes cubes = new MeshCubes(50,30,1);
65
      DistortedEffects effects = new DistortedEffects(50,30,1);
66

    
67
      mTexture = new DistortedTexture();
68
      mManager = new WindEffectsManager(50,30);
69
      mGust    = new WindGust();
70
      mScreen  = new DistortedScreen();
71

    
72
      mScreen.attach(mTexture,effects,cubes);
73

    
74
      mObjWidth = effects.getStartchX();
75
      mObjHeight= effects.getStartchY();
76

    
77
      mManager.apply(effects);
78

    
79
      mMove = new Static3D(0,0,0);
80
      mScale= new Static3D(1,1,1);
81

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

    
86
      effects.apply( new MatrixEffectRotate(angle, axis, center) );
87
      effects.apply( new MatrixEffectScale(mScale));
88
      effects.apply( new MatrixEffectMove(mMove));
89
      }
90

    
91
///////////////////////////////////////////////////////////////////////////////////////////////////
92

    
93
   void setWind(int wind)
94
      {
95
      mGust.setAverageWind(wind);
96
      }
97
   
98
///////////////////////////////////////////////////////////////////////////////////////////////////
99
   
100
   public void onDrawFrame(GL10 glUnused) 
101
      {
102
      long time = System.currentTimeMillis();
103

    
104
      if( mGust.isWindBlowingNow(time) ) mManager.increaseWind(time);
105
      else                               mManager.decreaseWind(time);
106

    
107
      mScreen.render(time);
108
      }
109

    
110
///////////////////////////////////////////////////////////////////////////////////////////////////
111
    
112
   public void onSurfaceChanged(GL10 glUnused, int width, int height) 
113
      {
114
      int min = width<height? width:height;
115

    
116
      float factor = ((float)min)/(mObjHeight + 1.4f*mObjWidth);
117
      mMove.set( factor*mObjHeight*0.58f +(width-min)*0.5f, height - factor*mObjHeight*1.08f -(height-min)*0.5f, 0 );
118
      mScale.set(factor,factor,factor);
119
      mScreen.resize(width, height);
120
      }
121

    
122
///////////////////////////////////////////////////////////////////////////////////////////////////
123
    
124
   public void onSurfaceCreated(GL10 glUnused, EGLConfig config) 
125
      {
126
      InputStream is = mView.getContext().getResources().openRawResource(R.raw.iceland);
127
      Bitmap bitmap;
128

    
129
      try
130
        {
131
        bitmap = BitmapFactory.decodeStream(is);
132
        }
133
      finally
134
        {
135
        try
136
          {
137
          is.close();
138
          }
139
        catch(IOException e) { }
140
        }
141

    
142
      mTexture.setTexture(bitmap);
143

    
144
      VertexEffectDeform.enable();
145
      VertexEffectWave.enable();
146

    
147
      try
148
        {
149
        DistortedLibrary.onCreate(mView.getContext());
150
        }
151
      catch(Exception ex)
152
        {
153
        android.util.Log.e("Wind", ex.getMessage() );
154
        }
155
      }
156
}
(4-4/5)