Project

General

Profile

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

examples / src / main / java / org / distorted / examples / mirror / MirrorRenderer.java @ 16b22aab

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.mirror;
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.FragmentEffectBrightness;
28
import org.distorted.library.effect.MatrixEffectMove;
29
import org.distorted.library.effect.MatrixEffectScale;
30
import org.distorted.library.main.Distorted;
31
import org.distorted.library.main.DistortedEffects;
32
import org.distorted.library.main.DistortedFramebuffer;
33
import org.distorted.library.main.DistortedScreen;
34
import org.distorted.library.main.DistortedTexture;
35
import org.distorted.library.mesh.MeshFlat;
36
import org.distorted.library.type.Static1D;
37
import org.distorted.library.type.Static3D;
38

    
39
import java.io.IOException;
40
import java.io.InputStream;
41

    
42
import javax.microedition.khronos.egl.EGLConfig;
43
import javax.microedition.khronos.opengles.GL10;
44

    
45
///////////////////////////////////////////////////////////////////////////////////////////////////
46

    
47
class MirrorRenderer implements GLSurfaceView.Renderer
48
{
49
   private static final float MIRROR_SCALE     =0.70f;  // each next mirror will be 70% of the size or the previous
50
   private static final float HEAD_SCALE       =0.30f;  // Head's height will be 30% of the height of the mirror
51
   private static final float MIRROR_BRIGHTNESS=0.70f;  // Each next mirror 30% darker
52
   private static final float MIRROR_MARGIN    =0.11f;  // The frame of the mirror takes up 11% of its width
53
   private static final float MIRROR_MOVE_H    =0.12f;  // Each next mirror is moved to the left by 12% of
54
                                                        // the length of the previous one
55
   private static final float MIRROR_MOVE_V    =0.22f;  // Move the mirror up
56

    
57
   private GLSurfaceView mView;
58
   private DistortedEffects mEffectsMirror, mEffectsHead, mEffectsNull;
59
   private DistortedEffects mEffectsOffscreen1, mEffectsOffscreen2;
60
   private DistortedTexture mTextureMirror, mTextureHead;
61
   private DistortedFramebuffer mOffScreen1, mOffScreen2;
62
   private DistortedScreen mScreen;
63
   private MeshFlat mQuad;
64
   private Static3D mHeadPosition, mScaleMirror, mMoveOffscreen2, mScaleHead;
65

    
66
   private int mX;
67
   private int mMirrorW, mMirrorH, mHeadW, mHeadH;
68
   private int mScreenW, mScreenH;
69

    
70
///////////////////////////////////////////////////////////////////////////////////////////////////
71

    
72
   MirrorRenderer(GLSurfaceView view)
73
      { 
74
      mView    = view;
75
      mQuad    = new MeshFlat(1,1);
76
      mScreen  = new DistortedScreen();
77

    
78
      mEffectsMirror    = new DistortedEffects();
79
      mEffectsHead      = new DistortedEffects();
80
      mEffectsOffscreen1= new DistortedEffects();
81
      mEffectsOffscreen2= new DistortedEffects();
82
      mEffectsNull      = new DistortedEffects();
83

    
84
      mX = MirrorActivity.INIT_POSITION;
85

    
86
      mHeadPosition    = new Static3D(0,0,0);
87
      mScaleMirror     = new Static3D(1,1,1);
88
      mMoveOffscreen2  = new Static3D(0,0,0);
89
      mScaleHead       = new Static3D(1,1,1);
90

    
91
      mEffectsMirror.apply( new MatrixEffectScale(mScaleMirror));
92
      mEffectsOffscreen1.apply( new MatrixEffectScale( new Static3D(MIRROR_SCALE,MIRROR_SCALE,MIRROR_SCALE)));
93
      mEffectsOffscreen2.apply( new MatrixEffectMove(mMoveOffscreen2) );
94
      mEffectsHead.apply( new MatrixEffectMove(mHeadPosition) );
95
      mEffectsHead.apply( new MatrixEffectScale(mScaleHead) );
96
      mEffectsOffscreen1.apply(new FragmentEffectBrightness(new Static1D(MIRROR_BRIGHTNESS)));
97
      }
98

    
99
///////////////////////////////////////////////////////////////////////////////////////////////////
100

    
101
   void setPosition(int pos)
102
      {
103
      mX = pos;
104

    
105
      float headWdivScreenW = mScreenW >0 ? (float)mHeadW/mScreenW : 0.0f;
106
      float left = headWdivScreenW -0.5f + MIRROR_MARGIN;
107
      float right= -left;
108

    
109
      mHeadPosition.set1( ((right-left)*(mX/100.0f) + left) * mScreenW );
110
      }
111
   
112
///////////////////////////////////////////////////////////////////////////////////////////////////
113

    
114
   public void onResume()
115
     {
116
     mScreenW = 0;
117
     mScreenH = 0;
118
     }
119

    
120
///////////////////////////////////////////////////////////////////////////////////////////////////
121

    
122
   public void onDrawFrame(GL10 glUnused) 
123
      {
124
      long time = System.currentTimeMillis();
125

    
126
      mOffScreen1.render(time);
127
      mOffScreen2.render(time);
128
      mScreen.render(time);
129
      }
130

    
131
///////////////////////////////////////////////////////////////////////////////////////////////////
132
    
133
   public void onSurfaceChanged(GL10 glUnused, int width, int height) 
134
      {
135
      if( mScreenW!=width || mScreenH!=height)
136
        {
137
        mScreenW = width;
138
        mScreenH = height;
139

    
140
        if( mOffScreen1!=null ) mOffScreen1.markForDeletion();
141
        if( mOffScreen2!=null ) mOffScreen2.markForDeletion();
142

    
143
        mOffScreen1 = new DistortedFramebuffer(                    mScreenW ,                    mScreenH , 1, DistortedFramebuffer.NO_DEPTH_NO_STENCIL );
144
        mOffScreen2 = new DistortedFramebuffer( (int)(MIRROR_SCALE*mScreenW), (int)(MIRROR_SCALE*mScreenH), 1, DistortedFramebuffer.NO_DEPTH_NO_STENCIL );
145

    
146
        float headScale = HEAD_SCALE *mScreenH/ mHeadH;
147
        mScaleHead.set(headScale,headScale,headScale);
148

    
149
        float scaleW = (float)mScreenW/mMirrorW;
150
        float scaleH = (float)mScreenH/mMirrorH;
151

    
152
        mScaleMirror.set( scaleW, scaleH, 1.0f);
153

    
154
        mMoveOffscreen2.set( (MIRROR_MOVE_H-0.5f+0.5f*MIRROR_SCALE)*mScreenW, (MIRROR_MOVE_V-0.5f+0.5f*MIRROR_SCALE)*mScreenH*mMirrorW/mMirrorH, 0);
155
        mHeadPosition.set2( (0.5f*HEAD_SCALE - 0.5f + MIRROR_MARGIN*mMirrorW/mMirrorH)*mScreenH );
156

    
157
        setPosition(mX);
158

    
159
        mOffScreen1.attach( mTextureMirror, mEffectsMirror    , mQuad );
160
        mOffScreen1.attach( mOffScreen2   , mEffectsOffscreen2, mQuad );
161
        mOffScreen1.attach( mTextureHead  , mEffectsHead      , mQuad );
162
        mOffScreen2.attach( mOffScreen1   , mEffectsOffscreen1, mQuad );
163

    
164
        mScreen.detachAll();
165
        mScreen.attach    ( mOffScreen1   , mEffectsNull      , mQuad );
166
        mScreen.resize(mScreenW,mScreenH);
167
        }
168
      }
169

    
170
///////////////////////////////////////////////////////////////////////////////////////////////////
171
    
172
   public void onSurfaceCreated(GL10 glUnused, EGLConfig config) 
173
      {
174
      InputStream isM = mView.getContext().getResources().openRawResource(R.raw.mirror);
175
      InputStream isH = mView.getContext().getResources().openRawResource(R.raw.messi);
176

    
177
      Bitmap bitmapM, bitmapH;
178

    
179
      try
180
        {
181
        bitmapM = BitmapFactory.decodeStream(isM);
182
        bitmapH = BitmapFactory.decodeStream(isH);
183
        }
184
      finally
185
        {
186
        try
187
          {
188
          isM.close();
189
          isH.close();
190
          }
191
        catch(IOException e) { }
192
        }
193

    
194
      mMirrorW = bitmapM.getWidth();
195
      mMirrorH = bitmapM.getHeight();
196
      mHeadW   = bitmapH.getWidth();
197
      mHeadH   = bitmapH.getHeight();
198

    
199
      if( mTextureMirror==null ) mTextureMirror = new DistortedTexture(mMirrorW,mMirrorH);
200
      if( mTextureHead  ==null ) mTextureHead   = new DistortedTexture(mHeadW, mHeadH);
201

    
202
      mTextureMirror.setTexture(bitmapM);
203
      mTextureHead.setTexture(bitmapH);
204

    
205
      FragmentEffectBrightness.enable();
206

    
207
      try
208
        {
209
        Distorted.onCreate(mView.getContext());
210
        }
211
      catch(Exception ex)
212
        {
213
        android.util.Log.e("Mirror", ex.getMessage() );
214
        }
215
      }
216
}
(2-2/3)