Project

General

Profile

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

examples / src / main / java / org / distorted / examples / monalisa / MonaLisaRenderer.java @ 7451c98a

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.monalisa;
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
import org.distorted.library.Distorted;
30
import org.distorted.library.DistortedTexture;
31
import org.distorted.library.DistortedEffectQueues;
32
import org.distorted.library.GridFlat;
33
import org.distorted.library.EffectTypes;
34
import org.distorted.library.type.Dynamic3D;
35
import org.distorted.library.type.Static3D;
36
import org.distorted.library.type.Static4D;
37

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

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

    
45
class MonaLisaRenderer implements GLSurfaceView.Renderer 
46
{
47
    private GLSurfaceView mView;
48
    private DistortedTexture mTexture;
49
    private DistortedEffectQueues mQueues;
50
    private GridFlat mGrid;
51
    private int bmpHeight, bmpWidth;
52

    
53
///////////////////////////////////////////////////////////////////////////////////////////////////
54

    
55
    MonaLisaRenderer(GLSurfaceView v)
56
      {
57
      mView = v;
58

    
59
      Static3D pLeft = new Static3D( 90, 258, 0);
60
      Static3D pRight= new Static3D(176, 255, 0);
61

    
62
      Static4D rLeft = new Static4D(-10,-10,25,25);
63
      Static4D rRight= new Static4D( 10, -5,25,25);
64
      Dynamic3D dLeft = new Dynamic3D(1000,0.0f);
65
      Dynamic3D dRight= new Dynamic3D(1000,0.0f);
66
      dLeft.add ( new Static3D(  0,  0,0) );
67
      dLeft.add ( new Static3D(-20,-20,0) );
68
      dRight.add( new Static3D(  0,  0,0) );
69
      dRight.add( new Static3D( 20,-10,0) );
70

    
71
      mQueues = new DistortedEffectQueues();
72
      mQueues.distort( dLeft, pLeft , rLeft );
73
      mQueues.distort(dRight, pRight, rRight);
74
      }
75

    
76
///////////////////////////////////////////////////////////////////////////////////////////////////
77
   
78
    public void onDrawFrame(GL10 glUnused) 
79
      {
80
      GLES20.glClear( GLES20.GL_DEPTH_BUFFER_BIT | GLES20.GL_COLOR_BUFFER_BIT);
81
      mQueues.draw(System.currentTimeMillis(),mTexture,mGrid);
82
      }
83

    
84
///////////////////////////////////////////////////////////////////////////////////////////////////
85
    
86
    public void onSurfaceChanged(GL10 glUnused, int width, int height) 
87
      { 
88
      mQueues.abortEffects(EffectTypes.MATRIX);
89

    
90
      if( (float)bmpHeight/bmpWidth > (float)height/width )
91
        {
92
        int w = (height*bmpWidth)/bmpHeight;
93
        float factor = (float)height/bmpHeight;
94
        mQueues.move( new Static3D((width-w)/2,0,0) );
95
        mQueues.scale(factor);
96
        }
97
      else
98
        {
99
        int h = (width*bmpHeight)/bmpWidth;
100
        float factor = (float)width/bmpWidth;
101
        mQueues.move( new Static3D(0,(height-h)/2,0) );
102
        mQueues.scale(factor);
103
        }
104

    
105
      Distorted.onSurfaceChanged(width, height); 
106
      }
107

    
108
///////////////////////////////////////////////////////////////////////////////////////////////////
109
    
110
    public void onSurfaceCreated(GL10 glUnused, EGLConfig config) 
111
      {
112
      GLES20.glClearColor(0.0f, 0.0f, 0.0f, 1.0f);
113

    
114
      InputStream is = mView.getContext().getResources().openRawResource(R.raw.monalisa);
115
      Bitmap bitmap;
116
        
117
      try 
118
        {
119
        bitmap = BitmapFactory.decodeStream(is);
120
        } 
121
      finally 
122
        {
123
        try 
124
          {
125
          is.close();
126
          } 
127
        catch(IOException e) { }
128
        }  
129

    
130
      bmpHeight = bitmap.getHeight();
131
      bmpWidth  = bitmap.getWidth();
132

    
133
      mGrid = new GridFlat(9,9*bmpHeight/bmpWidth);
134
      mTexture = new DistortedTexture(bmpWidth,bmpHeight);
135
      mTexture.setTexture(bitmap);
136

    
137
      try
138
        {
139
        Distorted.onSurfaceCreated(mView.getContext());
140
        }
141
      catch(Exception ex)
142
        {
143
        android.util.Log.e("MonaLisa", ex.getMessage() );
144
        }
145
      }
146
}
(2-2/3)