Project

General

Profile

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

examples / src / main / java / org / distorted / examples / triblur / TriblurRenderer.java @ 0ba5de00

1 80f37d1b Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
2
// Copyright 2016 Leszek Koltunski                                                               //
3
//                                                                                               //
4 71c8884f Leszek Koltunski
// This file is part of Distorted.                                                               //
5 80f37d1b Leszek Koltunski
//                                                                                               //
6 71c8884f Leszek Koltunski
// Distorted is free software: you can redistribute it and/or modify                             //
7 80f37d1b 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 80f37d1b 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 80f37d1b Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
19
20
package org.distorted.examples.triblur;
21
22
import android.graphics.Bitmap;
23
import android.graphics.BitmapFactory;
24
import android.opengl.GLSurfaceView;
25
26
import org.distorted.examples.R;
27
import org.distorted.library.effect.EffectQuality;
28 c40df162 Leszek Koltunski
import org.distorted.library.effect.EffectType;
29 80f37d1b Leszek Koltunski
import org.distorted.library.effect.FragmentEffectChroma;
30
import org.distorted.library.effect.MatrixEffectMove;
31
import org.distorted.library.effect.MatrixEffectQuaternion;
32
import org.distorted.library.effect.MatrixEffectScale;
33
import org.distorted.library.effect.PostprocessEffectBlur;
34 c40df162 Leszek Koltunski
import org.distorted.library.effect.PostprocessEffectGlow;
35 e3900503 Leszek Koltunski
import org.distorted.library.main.DistortedLibrary;
36 80f37d1b Leszek Koltunski
import org.distorted.library.main.DistortedEffects;
37
import org.distorted.library.main.DistortedNode;
38
import org.distorted.library.main.DistortedScreen;
39
import org.distorted.library.main.DistortedTexture;
40 107e4b72 Leszek Koltunski
import org.distorted.library.mesh.MeshCubes;
41 80f37d1b Leszek Koltunski
import org.distorted.library.type.Static1D;
42
import org.distorted.library.type.Static3D;
43
import org.distorted.library.type.Static4D;
44
45
import java.io.IOException;
46
import java.io.InputStream;
47
48
import javax.microedition.khronos.egl.EGLConfig;
49
import javax.microedition.khronos.opengles.GL10;
50
51
///////////////////////////////////////////////////////////////////////////////////////////////////
52
53
class TriblurRenderer implements GLSurfaceView.Renderer
54
{
55 f1b8b412 Leszek Koltunski
    private static final int NUM = 6; // 6 ints (x,y,z,R,G,B) each describe 1 object below
56
57 80f37d1b Leszek Koltunski
    private static final int[] OBJECTS =
58
        {
59 0ba5de00 Leszek Koltunski
        -130, 0, 0,   255,   0,  0,  // x,y,z, R,G,B
60 3f70dd29 Leszek Koltunski
           0, 0, 0,   255, 255,  0,  //
61 0ba5de00 Leszek Koltunski
        +130, 0, 0,     0, 255,  0,  //
62 80f37d1b Leszek Koltunski
        };
63
64 f1b8b412 Leszek Koltunski
    private static final int NUM_OBJECTS = OBJECTS.length/NUM;
65 80f37d1b Leszek Koltunski
    private static final int OBJ_SIZE    = 100;
66
67
    private GLSurfaceView mView;
68
    private DistortedTexture mTex;
69
    private DistortedNode[] mNode;
70 c40df162 Leszek Koltunski
    private Static1D[]  mEffectVector;
71 80f37d1b Leszek Koltunski
    private DistortedScreen mScreen;
72
    private PostprocessEffectBlur[] mBlur;
73 c40df162 Leszek Koltunski
    private PostprocessEffectGlow[] mGlow;
74
    private int[] mEffectStatus;
75 16b22aab Leszek Koltunski
    private Static3D mScale1, mScale2;
76 80f37d1b Leszek Koltunski
77
    Static4D mQuat1, mQuat2;
78
    int mScreenMin;
79
80
///////////////////////////////////////////////////////////////////////////////////////////////////
81
82
    TriblurRenderer(GLSurfaceView v)
83
      {
84
      mView = v;
85
86
      MeshCubes mesh = new MeshCubes(1,1,1);
87 698ad0a8 Leszek Koltunski
      mesh.setStretch(OBJ_SIZE,OBJ_SIZE,OBJ_SIZE);
88 80f37d1b Leszek Koltunski
89 687263cc Leszek Koltunski
      mTex = new DistortedTexture();
90 80f37d1b Leszek Koltunski
91
      mQuat1 = new Static4D(0,0,0,1);  // unity
92
      mQuat2 = new Static4D(0,0,0,1);  // quaternions
93
94
      mScreen = new DistortedScreen();
95 e72c53e5 Leszek Koltunski
      mScreen.showFPS();
96 80f37d1b Leszek Koltunski
97 c40df162 Leszek Koltunski
      mEffectStatus = new int[NUM_OBJECTS];
98
      mEffectVector = new Static1D[NUM_OBJECTS];
99 80f37d1b Leszek Koltunski
      mNode         = new DistortedNode[NUM_OBJECTS];
100
      mBlur         = new PostprocessEffectBlur[NUM_OBJECTS];
101 c40df162 Leszek Koltunski
      mGlow         = new PostprocessEffectGlow[NUM_OBJECTS];
102 d7413405 Leszek Koltunski
103
      FragmentEffectChroma[] chroma= new FragmentEffectChroma[NUM_OBJECTS];
104
      Static3D[] chromaVector      = new Static3D[NUM_OBJECTS];
105
      Static3D[] moveVector        = new Static3D[NUM_OBJECTS];
106 80f37d1b Leszek Koltunski
107
      DistortedEffects[] effects= new DistortedEffects[NUM_OBJECTS];
108
109 371c43ca Leszek Koltunski
      mScale1 = new Static3D(1,1,1);
110
      mScale2 = new Static3D(1.5f,1.5f,1.5f);
111 16b22aab Leszek Koltunski
      Static3D center = new Static3D(0,0,0);
112 80f37d1b Leszek Koltunski
113 371c43ca Leszek Koltunski
      MatrixEffectScale scaleEffect1 = new MatrixEffectScale(mScale1);
114
      MatrixEffectScale scaleEffect2 = new MatrixEffectScale(mScale2);
115 16b22aab Leszek Koltunski
      MatrixEffectQuaternion quatEffect1 = new MatrixEffectQuaternion(mQuat1, center);
116
      MatrixEffectQuaternion quatEffect2 = new MatrixEffectQuaternion(mQuat2, center);
117 80f37d1b Leszek Koltunski
118
      for(int i=0; i<NUM_OBJECTS; i++)
119
        {
120 d7413405 Leszek Koltunski
        moveVector[i]    = new Static3D(OBJECTS[NUM*i  ], OBJECTS[NUM*i+1], OBJECTS[NUM*i+2]);
121
        chromaVector[i]  = new Static3D(OBJECTS[NUM*i+3], OBJECTS[NUM*i+4], OBJECTS[NUM*i+5]);
122 c40df162 Leszek Koltunski
        mEffectVector[i] = new Static1D(10);
123
        mBlur[i]         = new PostprocessEffectBlur(mEffectVector[i]);
124
        mGlow[i]         = new PostprocessEffectGlow(mEffectVector[i], new Static4D(1.0f,1.0f,1.0f,0.5f) );
125 d7413405 Leszek Koltunski
        chroma[i]        = new FragmentEffectChroma( new Static1D(0.3f), chromaVector[i]);
126 698ad0a8 Leszek Koltunski
        effects[i]       = new DistortedEffects();
127 80f37d1b Leszek Koltunski
        effects[i].apply(mBlur[i]);
128 3f70dd29 Leszek Koltunski
        effects[i].apply(chroma[i]);
129 0ba5de00 Leszek Koltunski
130 d7413405 Leszek Koltunski
        effects[i].apply(new MatrixEffectMove(moveVector[i]));
131 0ba5de00 Leszek Koltunski
        effects[i].apply(quatEffect2);
132
        effects[i].apply(quatEffect1);
133
        effects[i].apply( (i==0||i==NUM_OBJECTS-1) ? scaleEffect1 : scaleEffect2 );
134 80f37d1b Leszek Koltunski
135 c40df162 Leszek Koltunski
        mEffectStatus[i] = 1;
136 371c43ca Leszek Koltunski
        mNode[i] = new DistortedNode(mTex, effects[i], mesh );
137 80f37d1b Leszek Koltunski
        mScreen.attach(mNode[i]);
138
        }
139
140
      setQuality(EffectQuality.HIGH);
141
      }
142
143
///////////////////////////////////////////////////////////////////////////////////////////////////
144
145
    void setQuality(EffectQuality quality)
146
      {
147
      for(int i=0; i<NUM_OBJECTS; i++)
148
        {
149
        mBlur[i].setQuality(quality);
150
        }
151
      }
152
153 a935e9db Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
154
155
    void setRenderModeToOIT(boolean oit)
156
      {
157
      mScreen.setOrderIndependentTransparency(oit);
158
      }
159
160 f1b8b412 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
161
162
    void setBackground(float r, float g, float b, float a)
163
      {
164
      mScreen.glClearColor(r,g,b,a);
165
      }
166
167 80f37d1b Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
168
169
    public void onDrawFrame(GL10 glUnused) 
170
      {
171
      mScreen.render(System.currentTimeMillis());
172
      }
173
174
///////////////////////////////////////////////////////////////////////////////////////////////////
175
    
176
    public void onSurfaceCreated(GL10 glUnused, EGLConfig config) 
177
      {
178
      InputStream is = mView.getContext().getResources().openRawResource(R.raw.cat);
179
      Bitmap bitmap;
180
        
181
      try 
182
        {
183
        bitmap = BitmapFactory.decodeStream(is);
184
        }
185
      finally 
186
        {
187
        try 
188
          {
189
          is.close();
190
          }
191
        catch(IOException e) { }
192
        }  
193
194
      mTex.setTexture(bitmap);
195
196
      PostprocessEffectBlur.enable();
197
      FragmentEffectChroma.enable();
198
199
      try
200
        {
201 e3900503 Leszek Koltunski
        DistortedLibrary.onCreate(mView.getContext());
202 80f37d1b Leszek Koltunski
        }
203
      catch(Exception ex)
204
        {
205
        android.util.Log.e("Triblur", ex.getMessage() );
206
        }
207
      }
208
209
///////////////////////////////////////////////////////////////////////////////////////////////////
210
211
    public void onSurfaceChanged(GL10 glUnused, int width, int height)
212
      {
213
      mScreenMin = width<height ? width:height;
214
215 0ba5de00 Leszek Koltunski
      float factor1 = 0.20f*mScreenMin/OBJ_SIZE;
216
      float factor2 = 0.75f*factor1;
217 371c43ca Leszek Koltunski
      mScale1.set(factor1,factor1,factor1);
218
      mScale2.set(factor2,factor2,factor2);
219 80f37d1b Leszek Koltunski
      mScreen.resize(width, height);
220
      }
221
222
///////////////////////////////////////////////////////////////////////////////////////////////////
223
224
    void setRange(int object, int range)
225
      {
226
      if( object>=0 && object<NUM_OBJECTS )
227
        {
228 c40df162 Leszek Koltunski
        mEffectVector[object].set(range / 2);
229 80f37d1b Leszek Koltunski
        }
230
      }
231
232
///////////////////////////////////////////////////////////////////////////////////////////////////
233
234 c40df162 Leszek Koltunski
    int[] getEffects()
235 80f37d1b Leszek Koltunski
     {
236 c40df162 Leszek Koltunski
     return mEffectStatus;
237 80f37d1b Leszek Koltunski
     }
238
239
///////////////////////////////////////////////////////////////////////////////////////////////////
240
241 c40df162 Leszek Koltunski
    void setEffects(int object, int effect)
242 80f37d1b Leszek Koltunski
      {
243
      if( object>=0 && object<NUM_OBJECTS )
244
        {
245 c40df162 Leszek Koltunski
        if( mEffectStatus[object] != effect )
246 80f37d1b Leszek Koltunski
          {
247 c40df162 Leszek Koltunski
          mEffectStatus[object] = effect;
248
          mNode[object].getEffects().abortByType(EffectType.POSTPROCESS);
249
250
          if( effect==1 ) mNode[object].getEffects().apply(mBlur[object]);
251
          if( effect==2 ) mNode[object].getEffects().apply(mGlow[object]);
252 80f37d1b Leszek Koltunski
          }
253
        }
254
      else
255
        {
256 c40df162 Leszek Koltunski
        android.util.Log.e("renderer", "Error, number: "+object+" effect: "+effect );
257 80f37d1b Leszek Koltunski
        }
258
      }
259
}