Project

General

Profile

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

examples / src / main / java / org / distorted / examples / macroblock / MacroblockRenderer.java @ f988589e

1 bc0a685b Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
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 5068fa06 Leszek Koltunski
package org.distorted.examples.macroblock;
21 427ab7bf Leszek Koltunski
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 5068fa06 Leszek Koltunski
import org.distorted.examples.R;
29
import org.distorted.library.Distorted;
30
import org.distorted.library.DistortedBitmap;
31 95593730 Leszek Koltunski
import org.distorted.library.EffectTypes;
32 7589635e Leszek Koltunski
import org.distorted.library.type.Dynamic1D;
33
import org.distorted.library.type.Dynamic3D;
34
import org.distorted.library.type.Static1D;
35
import org.distorted.library.type.Static3D;
36
import org.distorted.library.type.Static4D;
37 427ab7bf Leszek Koltunski
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 MacroblockRenderer implements GLSurfaceView.Renderer 
46
{
47
    private GLSurfaceView mView;
48
    private DistortedBitmap macroblock;
49 59759251 Leszek Koltunski
    private Static4D macRegion, alphaRegion;
50 427ab7bf Leszek Koltunski
    private int bmpHeight, bmpWidth;
51 59759251 Leszek Koltunski
52 427ab7bf Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
53
54
    public MacroblockRenderer(GLSurfaceView v) 
55
      {   
56
      mView = v;
57
      
58 59759251 Leszek Koltunski
        macRegion = new Static4D( 530, 200,100,100);
59
      alphaRegion = new Static4D( 230, 200,100,100);
60 427ab7bf Leszek Koltunski
      }
61
62
///////////////////////////////////////////////////////////////////////////////////////////////////
63
   
64
    public void onDrawFrame(GL10 glUnused) 
65
      {
66
      GLES20.glClearColor(0.0f, 0.0f, 0.0f, 1.0f);
67
      GLES20.glClear( GLES20.GL_DEPTH_BUFFER_BIT | GLES20.GL_COLOR_BUFFER_BIT);
68
   
69
      macroblock.draw(System.currentTimeMillis());
70
      }
71
72
///////////////////////////////////////////////////////////////////////////////////////////////////
73
    
74
    public void onSurfaceCreated(GL10 glUnused, EGLConfig config) 
75
      {  
76
      InputStream is = mView.getContext().getResources().openRawResource(R.raw.cat_and_dog);
77
      Bitmap bitmap;
78
        
79
      try 
80
        {
81
        bitmap = BitmapFactory.decodeStream(is);
82
        } 
83
      finally 
84
        {
85
        try 
86
          {
87
          is.close();
88
          } 
89
        catch(IOException e) { }
90
        }  
91
      
92
      bmpHeight = bitmap.getHeight();
93
      bmpWidth  = bitmap.getWidth();
94
      
95 59759251 Leszek Koltunski
      macroblock = new DistortedBitmap(bitmap, 30);
96
97 f988589e Leszek Koltunski
      Dynamic1D macroblockDyn = new Dynamic1D(3000,0.0f);
98 59759251 Leszek Koltunski
      macroblockDyn.add(new Static1D( 1));
99
      macroblockDyn.add(new Static1D(30));
100
101
      macroblock.macroblock(macroblockDyn, macRegion);
102
103 f988589e Leszek Koltunski
      Dynamic1D alphaDyn = new Dynamic1D(3000,0.0f);
104 59759251 Leszek Koltunski
      alphaDyn.add(new Static1D(1));
105
      alphaDyn.add(new Static1D(0));
106
107
      macroblock.alpha( alphaDyn, alphaRegion, false );
108 427ab7bf Leszek Koltunski
      
109
      try
110
        {
111 ed1c0b33 Leszek Koltunski
        Distorted.onSurfaceCreated(mView.getContext());
112 427ab7bf Leszek Koltunski
        }
113
      catch(Exception ex)
114
        {
115
        android.util.Log.e("Renderer", ex.getMessage() );
116
        }
117
      }
118
    
119
///////////////////////////////////////////////////////////////////////////////////////////////////
120
    
121
    public void onSurfaceChanged(GL10 glUnused, int width, int height) 
122
      {
123
      int duration = 10000;   
124
      
125 f988589e Leszek Koltunski
      Dynamic3D diMove = new Dynamic3D(duration,0.0f);
126 7589635e Leszek Koltunski
      diMove.add(new Static3D(width-bmpWidth,height-bmpHeight,0));
127
      diMove.add(new Static3D(0,0,0));
128 427ab7bf Leszek Koltunski
      
129 f988589e Leszek Koltunski
      Dynamic3D diScale = new Dynamic3D(duration,0.0f);
130 7589635e Leszek Koltunski
      diScale.add(new Static3D(1,1,1));
131
      diScale.add(new Static3D(0.33f,0.33f,1));
132 427ab7bf Leszek Koltunski
      
133 f988589e Leszek Koltunski
      Dynamic1D diRotate = new Dynamic1D(duration,0.0f);
134 7589635e Leszek Koltunski
      diRotate.add(new Static1D(  0));
135
      diRotate.add(new Static1D(360));
136 427ab7bf Leszek Koltunski
      
137 a8c3ada7 Leszek Koltunski
      macroblock.abortEffects(EffectTypes.MATRIX);
138 427ab7bf Leszek Koltunski
139
      macroblock.move(diMove);
140
      macroblock.scale(diScale);
141 7589635e Leszek Koltunski
      macroblock.rotate( new Static3D(bmpWidth/2,bmpHeight/2,0), diRotate, new Static3D(0,0,1) );
142
143 427ab7bf Leszek Koltunski
      Distorted.onSurfaceChanged(width, height); 
144
      }
145
}