Project

General

Profile

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

examples / src / main / java / org / distorted / examples / blur / BlurRenderer.java @ 698ad0a8

1 43bda3db Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
2
// Copyright 2016 Leszek Koltunski                                                               //
3
//                                                                                               //
4 71c8884f Leszek Koltunski
// This file is part of Distorted.                                                               //
5 43bda3db Leszek Koltunski
//                                                                                               //
6 71c8884f Leszek Koltunski
// Distorted is free software: you can redistribute it and/or modify                             //
7 43bda3db Leszek Koltunski
// 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 71c8884f Leszek Koltunski
// Distorted is distributed in the hope that it will be useful,                                  //
12 43bda3db Leszek Koltunski
// 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 71c8884f Leszek Koltunski
// along with Distorted.  If not, see <http://www.gnu.org/licenses/>.                            //
18 43bda3db Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
19
20
package org.distorted.examples.blur;
21
22
import android.graphics.Bitmap;
23
import android.graphics.BitmapFactory;
24
import android.opengl.GLSurfaceView;
25
26
import org.distorted.examples.R;
27 fa9b6494 Leszek Koltunski
import org.distorted.library.effect.MatrixEffectMove;
28
import org.distorted.library.effect.MatrixEffectScale;
29
import org.distorted.library.effect.PostprocessEffectBlur;
30 e3900503 Leszek Koltunski
import org.distorted.library.main.DistortedLibrary;
31 01782e85 Leszek Koltunski
import org.distorted.library.main.DistortedEffects;
32 da57b7da Leszek Koltunski
import org.distorted.library.main.DistortedFramebuffer;
33 01782e85 Leszek Koltunski
import org.distorted.library.main.DistortedNode;
34
import org.distorted.library.main.DistortedScreen;
35
import org.distorted.library.main.DistortedTexture;
36 f3ca895f Leszek Koltunski
import org.distorted.library.mesh.MeshRectangles;
37 43bda3db Leszek Koltunski
import org.distorted.library.type.Dynamic1D;
38
import org.distorted.library.type.Static1D;
39
import org.distorted.library.type.Static3D;
40
41
import java.io.IOException;
42
import java.io.InputStream;
43
44
import javax.microedition.khronos.egl.EGLConfig;
45
import javax.microedition.khronos.opengles.GL10;
46
47
///////////////////////////////////////////////////////////////////////////////////////////////////
48
49
class BlurRenderer implements GLSurfaceView.Renderer
50
{
51 da57b7da Leszek Koltunski
    private final static int SIZE = 500;
52
53 43bda3db Leszek Koltunski
    private GLSurfaceView mView;
54 59540ba2 Leszek Koltunski
    private DistortedTexture mTexture;
55 da57b7da Leszek Koltunski
    private DistortedEffects mEffects, mBufferEffects;
56 d218d64e leszek
    private DistortedScreen mScreen;
57 da57b7da Leszek Koltunski
    private DistortedFramebuffer mBuffer;
58 698ad0a8 Leszek Koltunski
    private MeshRectangles mMesh, mMeshBuffer;
59 43bda3db Leszek Koltunski
    private Static1D mRadiusSta;
60 fa9b6494 Leszek Koltunski
    private int mObjHeight, mObjWidth;
61 da57b7da Leszek Koltunski
    private Static3D mMove, mScale, mBufferMove, mBufferScale;
62 43bda3db Leszek Koltunski
63
///////////////////////////////////////////////////////////////////////////////////////////////////
64
65
   BlurRenderer(GLSurfaceView v)
66
      {
67 698ad0a8 Leszek Koltunski
      mView       = v;
68
      mMesh       = new MeshRectangles(1,1);
69
      mMeshBuffer = new MeshRectangles(1,1);
70
      mScreen     = new DistortedScreen();
71
      mBuffer     = new DistortedFramebuffer(SIZE,SIZE,1, DistortedFramebuffer.NO_DEPTH_NO_STENCIL);
72 43bda3db Leszek Koltunski
73
      mRadiusSta = new Static1D(5);
74
      Dynamic1D radiusDyn = new Dynamic1D();
75
      radiusDyn.add(mRadiusSta);
76
77 fa9b6494 Leszek Koltunski
      mMove = new Static3D(0,0,0);
78
      mScale= new Static3D(1,1,1);
79 da57b7da Leszek Koltunski
      mBufferMove = new Static3D(0,0,0);
80
      mBufferScale= new Static3D(1,1,1);
81
82 698ad0a8 Leszek Koltunski
      mBufferEffects = new DistortedEffects();
83 da57b7da Leszek Koltunski
      mBufferEffects.apply(new MatrixEffectScale(mBufferScale));
84 dae661e9 Leszek Koltunski
      mBufferEffects.apply(new MatrixEffectMove(mBufferMove));
85 fa9b6494 Leszek Koltunski
86 698ad0a8 Leszek Koltunski
      mEffects = new DistortedEffects();
87 66d31749 Leszek Koltunski
      mEffects.apply( new PostprocessEffectBlur(radiusDyn) );
88 fa9b6494 Leszek Koltunski
      mEffects.apply(new MatrixEffectScale(mScale));
89 dae661e9 Leszek Koltunski
      mEffects.apply(new MatrixEffectMove(mMove));
90 43bda3db Leszek Koltunski
      }
91
92
///////////////////////////////////////////////////////////////////////////////////////////////////
93
94 a6da86cc Leszek Koltunski
   int setBlur(int blur)
95
     {
96 3365725b Leszek Koltunski
     int radius = blur/2;
97 a6da86cc Leszek Koltunski
     mRadiusSta.set(radius);
98
     return radius;
99 43bda3db Leszek Koltunski
     }
100
101
///////////////////////////////////////////////////////////////////////////////////////////////////
102
   
103
   public void onDrawFrame(GL10 glUnused) 
104
      {
105 da57b7da Leszek Koltunski
      long time = System.currentTimeMillis();
106
107
      mBuffer.render(time);
108
      mScreen.render(time);
109 43bda3db Leszek Koltunski
      }
110
111
///////////////////////////////////////////////////////////////////////////////////////////////////
112
    
113 fa9b6494 Leszek Koltunski
   public void onSurfaceChanged(GL10 glUnused, int width, int height)
114
     {
115 da57b7da Leszek Koltunski
     float qw1 = (float)width /SIZE;
116
     float qh1 = (float)height/SIZE;
117
     float factor1 = 0.8f* (qw1<qh1 ? qw1:qh1);
118
     int w1 = (int)(factor1*SIZE);
119
     int h1 = (int)(factor1*SIZE);
120
121
     mBufferMove.set((width-w1)/2 ,(height-h1)/2, 0);
122
     mBufferScale.set( factor1,factor1,factor1 );
123
124
     float qw2 = (float)SIZE/mObjWidth;
125
     float qh2 = (float)SIZE/mObjHeight;
126
     float factor2 = 0.9f* (qw2<qh2 ? qw2:qh2);
127
     int w2 = (int)(factor2*mObjWidth);
128
     int h2 = (int)(factor2*mObjHeight);
129
130
     mMove.set((SIZE-w2)/2 ,(SIZE-h2)/2, 0);
131
     mScale.set( factor2,factor2,factor2 );
132
133 463f1f9c leszek
     mScreen.resize(width, height);
134 fa9b6494 Leszek Koltunski
     }
135 43bda3db Leszek Koltunski
136
///////////////////////////////////////////////////////////////////////////////////////////////////
137
    
138 fa9b6494 Leszek Koltunski
   public void onSurfaceCreated(GL10 glUnused, EGLConfig config)
139
     {
140
     InputStream is = mView.getContext().getResources().openRawResource(R.raw.dog);
141
     Bitmap bitmap;
142 43bda3db Leszek Koltunski
        
143 fa9b6494 Leszek Koltunski
     try
144
       {
145
       bitmap = BitmapFactory.decodeStream(is);
146
       }
147
     finally
148
       {
149
       try
150
         {
151
         is.close();
152
         }
153
       catch(IOException e) { }
154
       }
155 43bda3db Leszek Koltunski
      
156 fa9b6494 Leszek Koltunski
     mObjHeight = bitmap.getHeight();
157
     mObjWidth  = bitmap.getWidth();
158
159 698ad0a8 Leszek Koltunski
     mMesh.setStretch(mObjWidth,mObjHeight,0);
160
     mMeshBuffer.setStretch(SIZE,SIZE,0);
161 687263cc Leszek Koltunski
162
     if( mTexture==null ) mTexture = new DistortedTexture();
163 fa9b6494 Leszek Koltunski
     mTexture.setTexture(bitmap);
164
165
     mScreen.detachAll();
166 698ad0a8 Leszek Koltunski
     mScreen.attach(mBuffer, mBufferEffects, mMeshBuffer);
167 da57b7da Leszek Koltunski
     mBuffer.attach(new DistortedNode(mTexture,mEffects,mMesh));
168 fa9b6494 Leszek Koltunski
169 885b9cca leszek
     PostprocessEffectBlur.enable();
170 fa9b6494 Leszek Koltunski
171
     try
172
       {
173 e3900503 Leszek Koltunski
       DistortedLibrary.onCreate(mView.getContext());
174 fa9b6494 Leszek Koltunski
       }
175
     catch(Exception ex)
176
       {
177
       android.util.Log.e("Blur", ex.getMessage() );
178
       }
179
     }
180 43bda3db Leszek Koltunski
}