Project

General

Profile

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

examples / src / main / java / org / distorted / examples / effects2d / Effects2DSurfaceView.java @ e5424523

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 e5424523 Leszek Koltunski
package org.distorted.examples.effects2d;
21 427ab7bf Leszek Koltunski
22
import android.content.Context;
23
import android.opengl.GLSurfaceView;
24
import android.os.Build;
25
import android.view.MotionEvent;
26
import android.util.AttributeSet;
27
28 59759251 Leszek Koltunski
import org.distorted.library.type.Dynamic1D;
29
import org.distorted.library.type.Static1D;
30 7589635e Leszek Koltunski
import org.distorted.library.type.Static2D;
31
import org.distorted.library.type.Static3D;
32
import org.distorted.library.type.Static4D;
33
import org.distorted.library.type.Dynamic3D;
34 427ab7bf Leszek Koltunski
35 bc0a685b Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
36 427ab7bf Leszek Koltunski
37 e5424523 Leszek Koltunski
public class Effects2DSurfaceView extends GLSurfaceView
38 bc0a685b Leszek Koltunski
  {
39 e5424523 Leszek Koltunski
  private Effects2DRenderer mRenderer;
40 bc0a685b Leszek Koltunski
  private static int mCurrentEffect;
41
  private static int mDuration;
42
  private static float mCount;
43
  private static int mScrW, mScrH;
44 427ab7bf Leszek Koltunski
    
45 7589635e Leszek Koltunski
  private static Static4D region;
46
  private static Static2D point;
47 59759251 Leszek Koltunski
48
  private static Static4D mRegion;
49 b5cc7760 Leszek Koltunski
  private static Dynamic1D mInterA, mInterM, mInterB, mInterS;
50 59759251 Leszek Koltunski
51
  private static Dynamic3D mInterD;
52 7589635e Leszek Koltunski
  private static Static3D v0, v1, v2, v3;
53 427ab7bf Leszek Koltunski
     
54 bc0a685b Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
55 427ab7bf Leszek Koltunski
    
56 e5424523 Leszek Koltunski
  public Effects2DSurfaceView(Context c, AttributeSet attrs)
57 bc0a685b Leszek Koltunski
    {
58
    super(c, attrs);
59 427ab7bf Leszek Koltunski
      
60 bc0a685b Leszek Koltunski
    mDuration = 10000;
61
    mCount    = 1.0f;
62 427ab7bf Leszek Koltunski
      
63 f988589e Leszek Koltunski
    mInterD = new Dynamic3D(mDuration,mCount);
64 59759251 Leszek Koltunski
65
    int h = 30;
66
    int r = 20;
67
68
    v0 = new Static3D( 0, r, h );
69
    v1 = new Static3D(-r, 0, h );
70
    v2 = new Static3D( 0,-r, h );
71
    v3 = new Static3D( r, 0, h );
72
73
    mInterD.add(v0);
74
    mInterD.add(v1);
75
    mInterD.add(v2);
76
    mInterD.add(v3);
77
78 f988589e Leszek Koltunski
    mInterA = new Dynamic1D(mDuration,mCount);
79 59759251 Leszek Koltunski
    mInterA.add(new Static1D(1));
80
    mInterA.add(new Static1D(0));
81
82 f988589e Leszek Koltunski
    mInterS = new Dynamic1D(mDuration,mCount);
83 b5cc7760 Leszek Koltunski
    mInterS.add(new Static1D(1.0f));
84
    mInterS.add(new Static1D(0.3f));
85
86 f988589e Leszek Koltunski
    mInterB = new Dynamic1D(mDuration,mCount);
87 59759251 Leszek Koltunski
    mInterB.add(new Static1D(1));
88
    mInterB.add(new Static1D(0));
89
90 f988589e Leszek Koltunski
    mInterM = new Dynamic1D(mDuration,mCount);
91 59759251 Leszek Koltunski
    mInterM.add(new Static1D(1));
92
    mInterM.add(new Static1D(10));
93 427ab7bf Leszek Koltunski
94 bc0a685b Leszek Koltunski
    if(!isInEditMode())
95
      {
96
      setFocusable(true);
97
      setFocusableInTouchMode(true);
98
       
99
      setEGLContextClientVersion(2);
100 427ab7bf Leszek Koltunski
        
101 bc0a685b Leszek Koltunski
      if( Build.FINGERPRINT.startsWith("generic") ) // when running on the emulator, insert a magic line that is
102
        {                                           // supposed to cure the 'no config chosen' crash on emulator startup
103
        setEGLConfigChooser(8, 8, 8, 8, 16, 0);   
104
        }
105 427ab7bf Leszek Koltunski
        
106 e5424523 Leszek Koltunski
      mRenderer = new Effects2DRenderer(this);
107 bc0a685b Leszek Koltunski
      setRenderer(mRenderer);
108 427ab7bf Leszek Koltunski
        
109 7589635e Leszek Koltunski
      point = new Static2D(0,0);
110
      region= new Static4D(0,0,60,60);
111 59759251 Leszek Koltunski
      mRegion = new Static4D(0,0,60,60);
112 427ab7bf Leszek Koltunski
        
113 bc0a685b Leszek Koltunski
      setEffect(0);  
114 427ab7bf Leszek Koltunski
      }
115 bc0a685b Leszek Koltunski
    }
116 427ab7bf Leszek Koltunski
117 bc0a685b Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
118 427ab7bf Leszek Koltunski
119 bc0a685b Leszek Koltunski
  public static void setScreenSize(int width, int height)
120
    {
121
    mScrW = width;
122
    mScrH = height;
123
    }
124 427ab7bf Leszek Koltunski
125 bc0a685b Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
126 427ab7bf Leszek Koltunski
127 bc0a685b Leszek Koltunski
  public static int getEffect()
128
    {
129
    return mCurrentEffect;
130
    }
131 427ab7bf Leszek Koltunski
   
132 bc0a685b Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
133 427ab7bf Leszek Koltunski
134 bc0a685b Leszek Koltunski
  public static void setEffect(int effect)
135
    {
136
    mCurrentEffect = effect;
137
    }
138 427ab7bf Leszek Koltunski
139 bc0a685b Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
140 427ab7bf Leszek Koltunski
141 bc0a685b Leszek Koltunski
  public static void setDuration(int duration)
142
    {
143
    mDuration = duration;
144 59759251 Leszek Koltunski
    mInterD.setDuration(duration);
145
    mInterA.setDuration(duration);
146
    mInterB.setDuration(duration);
147
    mInterM.setDuration(duration);
148 b5cc7760 Leszek Koltunski
    mInterS.setDuration(duration);
149 bc0a685b Leszek Koltunski
    }
150 427ab7bf Leszek Koltunski
151 bc0a685b Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
152 427ab7bf Leszek Koltunski
153 bc0a685b Leszek Koltunski
  public static void setCount(float count)
154
    {
155
    mCount = count;
156 59759251 Leszek Koltunski
    mInterD.setCount(count);
157
    mInterA.setCount(count);
158
    mInterB.setCount(count);
159
    mInterM.setCount(count);
160 b5cc7760 Leszek Koltunski
    mInterS.setCount(count);
161 bc0a685b Leszek Koltunski
    }
162 427ab7bf Leszek Koltunski
  
163 bc0a685b Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
164 427ab7bf Leszek Koltunski
    
165 bc0a685b Leszek Koltunski
  @Override public boolean onTouchEvent(MotionEvent event) 
166
    {
167
    int action = event.getAction();
168
    int x, y;
169 427ab7bf Leszek Koltunski
      
170 bc0a685b Leszek Koltunski
    switch(action)
171 427ab7bf Leszek Koltunski
      {
172 e5424523 Leszek Koltunski
      case MotionEvent.ACTION_DOWN: x = (int)event.getX()* Effects2DRenderer.BWID/mScrW;
173
                                    y = (int)event.getY()* Effects2DRenderer.BHEI/mScrH;
174 427ab7bf Leszek Koltunski
                                    point.set(x,y);
175 59759251 Leszek Koltunski
                                    mRegion.set(x,y,60,60);
176
177 427ab7bf Leszek Koltunski
                                    switch(mCurrentEffect)
178
                                      {
179 e5424523 Leszek Koltunski
                                      case 0: Effects2DRenderer.mBackground.distort(mInterD, point, region);
180 427ab7bf Leszek Koltunski
                                           break;
181 e5424523 Leszek Koltunski
                                      case 1: Effects2DRenderer.mBackground.sink(mInterS, point, region);
182 427ab7bf Leszek Koltunski
                                           break;
183 e5424523 Leszek Koltunski
                                      case 2: Effects2DRenderer.mBackground.alpha(mInterA, mRegion, false);
184 427ab7bf Leszek Koltunski
                                           break;  
185 e5424523 Leszek Koltunski
                                      case 3: Effects2DRenderer.mBackground.macroblock(mInterM, mRegion);
186 427ab7bf Leszek Koltunski
                                           break;
187 e5424523 Leszek Koltunski
                                      case 4: Effects2DRenderer.mBackground.brightness(mInterB, mRegion, false);
188 427ab7bf Leszek Koltunski
                                           break;      
189
                                      }
190
                                    break;
191
      }
192
            
193 bc0a685b Leszek Koltunski
    return true;
194
    }
195 427ab7bf Leszek Koltunski
  }