Project

General

Profile

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

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

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.effects2d;
21

    
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
import org.distorted.library.type.Dynamic1D;
29
import org.distorted.library.type.Static1D;
30
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

    
35
///////////////////////////////////////////////////////////////////////////////////////////////////
36

    
37
public class Effects2DSurfaceView extends GLSurfaceView
38
  {
39
  private Effects2DRenderer mRenderer;
40
  private static int mCurrentEffect;
41
  private static int mDuration;
42
  private static float mCount;
43
  private static int mScrW, mScrH;
44
    
45
  private static Static4D region;
46
  private static Static2D point;
47

    
48
  private static Static4D mRegion;
49
  private static Dynamic1D mInterA, mInterM, mInterC, mInterS;
50

    
51
  private static Dynamic3D mInterD;
52
  private static Static3D v0, v1, v2, v3;
53

    
54
  private final static Static3D mRED = new Static3D(1,0,0);
55

    
56
///////////////////////////////////////////////////////////////////////////////////////////////////
57
    
58
  public Effects2DSurfaceView(Context c, AttributeSet attrs)
59
    {
60
    super(c, attrs);
61
      
62
    mDuration = 10000;
63
    mCount    = 1.0f;
64
      
65
    mInterD = new Dynamic3D(mDuration,mCount);
66

    
67
    int h = 30;
68
    int r = 20;
69

    
70
    v0 = new Static3D( 0, r, h );
71
    v1 = new Static3D(-r, 0, h );
72
    v2 = new Static3D( 0,-r, h );
73
    v3 = new Static3D( r, 0, h );
74

    
75
    mInterD.add(v0);
76
    mInterD.add(v1);
77
    mInterD.add(v2);
78
    mInterD.add(v3);
79

    
80
    mInterA = new Dynamic1D(mDuration,mCount);
81
    mInterA.add(new Static1D(1));
82
    mInterA.add(new Static1D(0));
83

    
84
    mInterS = new Dynamic1D(mDuration,mCount);
85
    mInterS.add(new Static1D(1.0f));
86
    mInterS.add(new Static1D(0.3f));
87

    
88
    mInterC = new Dynamic1D(mDuration,mCount);
89
    mInterC.add(new Static1D(1));
90
    mInterC.add(new Static1D(0));
91

    
92
    mInterM = new Dynamic1D(mDuration,mCount);
93
    mInterM.add(new Static1D(1));
94
    mInterM.add(new Static1D(10));
95

    
96
    if(!isInEditMode())
97
      {
98
      setFocusable(true);
99
      setFocusableInTouchMode(true);
100
       
101
      setEGLContextClientVersion(2);
102
        
103
      if( Build.FINGERPRINT.startsWith("generic") ) // when running on the emulator, insert a magic line that is
104
        {                                           // supposed to cure the 'no config chosen' crash on emulator startup
105
        setEGLConfigChooser(8, 8, 8, 8, 16, 0);   
106
        }
107
        
108
      mRenderer = new Effects2DRenderer(this);
109
      setRenderer(mRenderer);
110

    
111
      point = new Static2D(0,0);
112
      region= new Static4D(0,0,60,60);
113
      mRegion = new Static4D(0,0,60,60);
114
        
115
      setEffect(0);  
116
      }
117
    }
118

    
119
///////////////////////////////////////////////////////////////////////////////////////////////////
120

    
121
  public static void setScreenSize(int width, int height)
122
    {
123
    mScrW = width;
124
    mScrH = height;
125
    }
126

    
127
///////////////////////////////////////////////////////////////////////////////////////////////////
128

    
129
  public static void setEffect(int effect)
130
    {
131
    mCurrentEffect = effect;
132
    }
133

    
134
///////////////////////////////////////////////////////////////////////////////////////////////////
135
    
136
  @Override public boolean onTouchEvent(MotionEvent event) 
137
    {
138
    int action = event.getAction();
139
    int x, y;
140
    long id = -1;
141

    
142
    switch(action)
143
      {
144
      case MotionEvent.ACTION_DOWN: x = (int)event.getX()* Effects2DRenderer.BWID/mScrW;
145
                                    y = (int)event.getY()* Effects2DRenderer.BHEI/mScrH;
146
                                    point.set(x,y);
147
                                    mRegion.set(x,y,60,60);
148

    
149
                                    switch(mCurrentEffect)
150
                                      {
151
                                      case 0: id = Effects2DRenderer.mBackground.distort(mInterD, point, region);
152
                                           break;
153
                                      case 1: id = Effects2DRenderer.mBackground.sink(mInterS, point, region);
154
                                           break;
155
                                      case 2: id = Effects2DRenderer.mBackground.alpha(mInterA, mRegion, false);
156
                                           break;  
157
                                      case 3: id = Effects2DRenderer.mBackground.macroblock(mInterM, mRegion);
158
                                           break;
159
                                      case 4: id = Effects2DRenderer.mBackground.chroma(mInterC, mRED, mRegion, false);
160
                                           break;      
161
                                      }
162

    
163
                                    Effects2DActivity act = (Effects2DActivity)getContext();
164
                                    act.effectAdded(id, mCurrentEffect);
165

    
166
                                    break;
167
      }
168

    
169
    return true;
170
    }
171

    
172
  }
(3-3/3)