Project

General

Profile

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

examples / src / main / java / org / distorted / examples / monalisa / MonaLisaRenderer.java @ 7589635e

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.DistortedBitmap;
31
import org.distorted.library.EffectTypes;
32
import org.distorted.library.type.Static2D;
33
import org.distorted.library.type.Static3D;
34
import org.distorted.library.type.Static4D;
35

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

    
41
///////////////////////////////////////////////////////////////////////////////////////////////////
42

    
43
class MonaLisaRenderer implements GLSurfaceView.Renderer 
44
{
45
    private GLSurfaceView mView;
46
    private DistortedBitmap monaLisa;
47
    private Static2D pLeft, pRight;
48
    private Static4D rLeft, rRight;
49
    private Static3D vLeft, vRight;
50
    private int bmpHeight, bmpWidth;
51
    
52
///////////////////////////////////////////////////////////////////////////////////////////////////
53

    
54
    public MonaLisaRenderer(GLSurfaceView v) 
55
      {
56
      mView = v;
57
      
58
      pLeft = new Static2D( 90, 258);
59
      pRight= new Static2D(176, 255);
60
      
61
      rLeft = new Static4D(-10,-10,25,25);
62
      rRight= new Static4D( 10, -5,25,25);
63
      
64
      vLeft = new Static3D(-20,-20,0);
65
      vRight= new Static3D( 20,-10,0);
66
      }
67

    
68
///////////////////////////////////////////////////////////////////////////////////////////////////
69
   
70
    public void onDrawFrame(GL10 glUnused) 
71
      {
72
      GLES20.glClearColor(0.0f, 0.0f, 0.0f, 1.0f);
73
      GLES20.glClear( GLES20.GL_DEPTH_BUFFER_BIT | GLES20.GL_COLOR_BUFFER_BIT);
74
      
75
      monaLisa.draw(System.currentTimeMillis());
76
      }
77

    
78
///////////////////////////////////////////////////////////////////////////////////////////////////
79
    
80
    public void onSurfaceChanged(GL10 glUnused, int width, int height) 
81
      { 
82
      monaLisa.abortEffects(EffectTypes.MATRIX);
83
         
84
      if( bmpHeight/bmpWidth > height/width )
85
        {
86
        int w = (height*bmpWidth)/bmpHeight;
87
        float factor = (float)height/bmpHeight;
88

    
89
        monaLisa.move( new Static3D((width-w)/2,0,0) );
90
        monaLisa.scale( new Static3D(factor,factor,factor) );
91
        }
92
      else
93
        {
94
        int h = (width*bmpHeight)/bmpWidth;
95
        float factor = (float)width/bmpWidth;
96

    
97
        monaLisa.move( new Static3D(0,(height-h)/2,0) );
98
        monaLisa.scale( new Static3D(factor,factor,factor) );
99
        }
100
      
101
      Distorted.onSurfaceChanged(width, height); 
102
      }
103

    
104
///////////////////////////////////////////////////////////////////////////////////////////////////
105
    
106
    public void onSurfaceCreated(GL10 glUnused, EGLConfig config) 
107
      {
108
      InputStream is = mView.getContext().getResources().openRawResource(R.raw.monalisa);
109
      Bitmap bitmap;
110
        
111
      try 
112
        {
113
        bitmap = BitmapFactory.decodeStream(is);
114
        } 
115
      finally 
116
        {
117
        try 
118
          {
119
          is.close();
120
          } 
121
        catch(IOException e) { }
122
        }  
123
      
124
      bmpHeight = bitmap.getHeight();
125
      bmpWidth  = bitmap.getWidth();
126
      
127
      monaLisa = new DistortedBitmap(bitmap, 10);
128
      monaLisa.distort( vLeft, rLeft , pLeft, 1000, 0);
129
      monaLisa.distort(vRight, rRight, pRight,1000, 0);
130
      
131
      try
132
        {
133
        Distorted.onSurfaceCreated(mView.getContext());
134
        }
135
      catch(Exception ex)
136
        {
137
        android.util.Log.e("MonaLisa", ex.getMessage() );
138
        }
139
      }
140
}
(2-2/3)