Project

General

Profile

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

examples / src / main / java / org / distorted / examples / cubes / CubesRenderer.java @ 08eabc44

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

    
22
import java.io.IOException;
23
import java.io.InputStream;
24

    
25
import javax.microedition.khronos.egl.EGLConfig;
26
import javax.microedition.khronos.opengles.GL10;
27

    
28
import org.distorted.examples.R;
29

    
30
import org.distorted.library.EffectTypes;
31
import org.distorted.library.type.InterpolatorQuat;
32
import org.distorted.library.DistortedCubes;
33
import org.distorted.library.type.Float4D;
34
import org.distorted.library.type.Float3D;
35
import org.distorted.library.Distorted;
36

    
37
import android.graphics.Bitmap;
38
import android.graphics.BitmapFactory;
39
import android.opengl.GLES20;
40
import android.opengl.GLSurfaceView;
41

    
42
///////////////////////////////////////////////////////////////////////////////////////////////////
43

    
44
class CubesRenderer implements GLSurfaceView.Renderer 
45
{
46
    private static final int SIZE = 100;
47
	
48
    private int mCols, mRows;
49
	
50
    private GLSurfaceView mView;
51
    private DistortedCubes mCubes;
52
    private InterpolatorQuat mQuatInt1, mQuatInt2;
53
    
54
    Float4D mQuat1, mQuat2;
55
    int mScreenMin;
56
    
57
///////////////////////////////////////////////////////////////////////////////////////////////////
58

    
59
    public CubesRenderer(GLSurfaceView v) 
60
      {
61
      mView = v;
62
      
63
      String shape = CubesActivity.getShape();
64
      
65
      mCols = CubesActivity.getCols();
66
      mRows = shape.length() / mCols;
67
      
68
      mCubes = new DistortedCubes( mCols, shape, SIZE);
69
      
70
      mQuat1 = new Float4D(0,0,0,1);  // unity
71
      mQuat2 = new Float4D(0,0,0,1);  // quaternions
72
      
73
      mQuatInt1 = new InterpolatorQuat();
74
      mQuatInt2 = new InterpolatorQuat();
75
      mQuatInt1.setDuration(0);
76
      mQuatInt2.setDuration(0);
77
      mQuatInt1.setCount(0.5f);
78
      mQuatInt2.setCount(0.5f);
79
      
80
      mQuatInt1.add(mQuat1);
81
      mQuatInt2.add(mQuat2);
82
      }
83

    
84
///////////////////////////////////////////////////////////////////////////////////////////////////
85
   
86
    public void onDrawFrame(GL10 glUnused) 
87
      {
88
      GLES20.glClearColor(0.0f, 0.0f, 0.0f, 1.0f);
89
      GLES20.glClear( GLES20.GL_DEPTH_BUFFER_BIT | GLES20.GL_COLOR_BUFFER_BIT);
90
      
91
      mCubes.draw(System.currentTimeMillis());
92
      }
93

    
94
///////////////////////////////////////////////////////////////////////////////////////////////////
95
    
96
    public void onSurfaceChanged(GL10 glUnused, int width, int height) 
97
      {
98
      mScreenMin = width<height ? width:height;
99
    	
100
      mCubes.abortEffects(EffectTypes.MATRIX);
101

    
102
      if( mRows/mCols > height/width )
103
        {
104
        int w = (height*mRows)/mCols;
105
        mCubes.move((width-w)/2 ,0, 0);
106
        mCubes.scale((float)height/(mRows*SIZE));
107
        }  
108
      else
109
        {   
110
        int h = (width*mRows)/mCols;
111
        mCubes.move(0 ,(height-h)/2, 0);
112
        mCubes.scale((float)width/(mCols*SIZE));
113
        }
114
    
115
      Float3D center = new Float3D(mCols*SIZE/2,mRows*SIZE/2, 0);
116
      
117
      mCubes.quaternion(center, mQuatInt1);
118
      mCubes.quaternion(center, mQuatInt2);
119
       
120
      Distorted.onSurfaceChanged(width, height); 
121
      }
122

    
123
///////////////////////////////////////////////////////////////////////////////////////////////////
124
    
125
    public void onSurfaceCreated(GL10 glUnused, EGLConfig config) 
126
      {
127
      InputStream is = mView.getContext().getResources().openRawResource(R.raw.grid);
128
      Bitmap bitmap;
129
        
130
      try 
131
        {
132
        bitmap = BitmapFactory.decodeStream(is);
133
        } 
134
      finally 
135
        {
136
        try 
137
          {
138
          is.close();
139
          } 
140
        catch(IOException e) { }
141
        }  
142
      
143
      mCubes.setBitmap(bitmap);
144
      
145
      try
146
        {
147
        Distorted.onSurfaceCreated(mView.getContext());
148
        }
149
      catch(Exception ex)
150
        {
151
        android.util.Log.e("Cubes", ex.getMessage() );
152
        }
153
      }
154
}
(2-2/3)