Project

General

Profile

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

examples / src / main / java / org / distorted / examples / matrix3d / Matrix3DRenderer.java @ 10b7e588

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

    
22
import android.opengl.GLES20;
23
import android.opengl.GLSurfaceView;
24

    
25
import org.distorted.library.Distorted;
26
import org.distorted.library.GridObject;
27
import org.distorted.library.DistortedObject;
28
import org.distorted.library.EffectTypes;
29

    
30
import javax.microedition.khronos.egl.EGLConfig;
31
import javax.microedition.khronos.opengles.GL10;
32

    
33
///////////////////////////////////////////////////////////////////////////////////////////////////
34

    
35
class Matrix3DRenderer implements GLSurfaceView.Renderer
36
{
37
    private GLSurfaceView mView;
38
    private DistortedObject mObject;
39
    private GridObject mGrid;
40

    
41
    private int mWidth, mHeight;
42

    
43
///////////////////////////////////////////////////////////////////////////////////////////////////
44

    
45
    Matrix3DRenderer(GLSurfaceView v)
46
      {
47
      mView = v;
48

    
49
      Matrix3DActivity act = (Matrix3DActivity)v.getContext();
50

    
51
      mObject= act.getObject();
52
      mGrid  = act.getGrid();
53
      }
54

    
55
///////////////////////////////////////////////////////////////////////////////////////////////////
56

    
57
    public void onDrawFrame(GL10 glUnused)
58
      {
59
      GLES20.glClear( GLES20.GL_DEPTH_BUFFER_BIT | GLES20.GL_COLOR_BUFFER_BIT);
60

    
61
      long time = System.currentTimeMillis();
62

    
63
      mObject.draw(time,mGrid);
64
      }
65

    
66
///////////////////////////////////////////////////////////////////////////////////////////////////
67

    
68
    public int getWidth()
69
      {
70
      return mWidth;
71
      }
72

    
73
///////////////////////////////////////////////////////////////////////////////////////////////////
74

    
75
    public int getHeight()
76
      {
77
      return mHeight;
78
      }
79

    
80
///////////////////////////////////////////////////////////////////////////////////////////////////
81

    
82
    public void onSurfaceChanged(GL10 glUnused, int width, int height)
83
      {
84
      mObject.abortEffects(EffectTypes.MATRIX);
85

    
86
      mWidth = width;
87
      mHeight= height;
88

    
89
      Distorted.onSurfaceChanged(width, height);
90
      }
91

    
92
///////////////////////////////////////////////////////////////////////////////////////////////////
93

    
94
    public void onSurfaceCreated(GL10 glUnused, EGLConfig config)
95
      {
96
      GLES20.glClearColor(0.0f, 0.0f, 0.0f, 1.0f);
97

    
98
      Matrix3DActivity act = (Matrix3DActivity)mView.getContext();
99

    
100
      mObject.setTexture(act.getBitmap());
101

    
102
      try
103
        {
104
        Distorted.onSurfaceCreated(mView.getContext());
105
        }
106
      catch(Exception ex)
107
        {
108
        android.util.Log.e("Matrix3D", ex.getMessage() );
109
        }
110
      }
111
}
(3-3/4)