Project

General

Profile

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

examples / src / main / java / org / distorted / examples / effectqueue / EffectQueueSurfaceView.java @ 8eed34d3

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

    
22
import android.app.ActivityManager;
23
import android.content.Context;
24
import android.content.pm.ConfigurationInfo;
25
import android.opengl.GLSurfaceView;
26
import android.view.MotionEvent;
27
import android.util.AttributeSet;
28

    
29
import org.distorted.library.effect.Effect;
30
import org.distorted.library.effect.FragmentEffectAlpha;
31
import org.distorted.library.effect.FragmentEffectChroma;
32
import org.distorted.library.effect.FragmentEffectSaturation;
33
import org.distorted.library.effect.VertexEffectDistort;
34
import org.distorted.library.effect.VertexEffectSink;
35
import org.distorted.library.type.Dynamic1D;
36
import org.distorted.library.type.Static1D;
37
import org.distorted.library.type.Static3D;
38
import org.distorted.library.type.Static4D;
39
import org.distorted.library.type.Dynamic3D;
40

    
41
import static org.distorted.examples.effectqueue.EffectQueueRenderer.*;
42

    
43
///////////////////////////////////////////////////////////////////////////////////////////////////
44

    
45
public class EffectQueueSurfaceView extends GLSurfaceView
46
  {
47
  private static final int RADIUS = EffectQueueRenderer.BWID/6;
48

    
49
  private EffectQueueRenderer mRenderer;
50
  private int mCurrentEffect;
51
  private int mScrW, mScrH;
52
    
53
  private Dynamic1D mInterA, mInterB, mInterC, mInterS;
54
  private Dynamic3D mInterD;
55

    
56
  private final static Static3D RED      = new Static3D(1,0,0);
57
  private final static Static3D REGION_F = new Static3D(RADIUS,RADIUS,RADIUS);
58
  private final static Static4D REGION_V = new Static4D(0,0,0,RADIUS);
59

    
60
///////////////////////////////////////////////////////////////////////////////////////////////////
61
    
62
  public EffectQueueSurfaceView(Context context, AttributeSet attrs)
63
    {
64
    super(context, attrs);
65
      
66
    int duration = 10000;
67
    float count  = 1.0f;
68
    int h = 30;
69
    int r = 20;
70

    
71
    mInterD = new Dynamic3D(duration,count);
72

    
73
    mInterD.add(new Static3D( 0, r, h ));
74
    mInterD.add(new Static3D(-r, 0, h ));
75
    mInterD.add(new Static3D( 0,-r, h ));
76
    mInterD.add(new Static3D( r, 0, h ));
77

    
78
    mInterA = new Dynamic1D(duration,count);
79
    mInterA.add(new Static1D(1));
80
    mInterA.add(new Static1D(0));
81

    
82
    mInterS = new Dynamic1D(duration,count);
83
    mInterS.add(new Static1D(1.0f));
84
    mInterS.add(new Static1D(0.3f));
85

    
86
    mInterC = new Dynamic1D(duration,count);
87
    mInterC.add(new Static1D(1));
88
    mInterC.add(new Static1D(0));
89

    
90
    mInterB = new Dynamic1D(duration,count);
91
    mInterB.add(new Static1D(0));
92
    mInterB.add(new Static1D(1));
93

    
94
    if(!isInEditMode())
95
      {
96
      setFocusable(true);
97
      setFocusableInTouchMode(true);
98
      mRenderer = new EffectQueueRenderer(this);
99
      final ActivityManager activityManager     = (ActivityManager) context.getSystemService(Context.ACTIVITY_SERVICE);
100
      final ConfigurationInfo configurationInfo = activityManager.getDeviceConfigurationInfo();
101
      setEGLContextClientVersion( (configurationInfo.reqGlEsVersion>>16) >= 3 ? 3:2 );
102
      setRenderer(mRenderer);
103
      setEffect(0);
104
      }
105
    }
106

    
107
///////////////////////////////////////////////////////////////////////////////////////////////////
108

    
109
  EffectQueueRenderer getRenderer()
110
    {
111
    return mRenderer;
112
    }
113

    
114
///////////////////////////////////////////////////////////////////////////////////////////////////
115

    
116
  public void setScreenSize(int width, int height)
117
    {
118
    mScrW = width;
119
    mScrH = height;
120
    }
121

    
122
///////////////////////////////////////////////////////////////////////////////////////////////////
123

    
124
  public void setEffect(int effect)
125
    {
126
    mCurrentEffect = effect;
127
    }
128

    
129
///////////////////////////////////////////////////////////////////////////////////////////////////
130
    
131
  @Override
132
  public boolean onTouchEvent(MotionEvent event)
133
    {
134
    int x,y,action = event.getAction();
135
    Effect effect;
136
    boolean success;
137

    
138
    switch(action)
139
      {
140
      case MotionEvent.ACTION_DOWN: x = (int)event.getX()*BWID/mScrW - BWID/2;
141
                                    y = BHEI/2 - (int)event.getY()*BHEI/mScrH;
142
                                    EffectQueueActivity act = (EffectQueueActivity)getContext();
143
                                    Static3D center = new Static3D(x,y,0);
144

    
145
                                    switch(mCurrentEffect)
146
                                      {
147
                                      case 0: effect = new VertexEffectDistort     (mInterD,      center, REGION_V);
148
                                              success= mRenderer.getEffects().apply(effect);
149
                                              act.effectAdded(success,effect);
150
                                              break;
151
                                      case 1: effect = new VertexEffectSink        (mInterS,      center, REGION_V);
152
                                              success= mRenderer.getEffects().apply(effect);
153
                                              act.effectAdded(success,effect);
154
                                              break;
155
                                      case 2: effect = new FragmentEffectAlpha     (mInterA,      center, REGION_F, true);
156
                                              success= mRenderer.getEffects().apply(effect);
157
                                              act.effectAdded(success,effect);
158
                                              break;
159
                                      case 3: effect = new FragmentEffectSaturation(mInterB,      center, REGION_F, false);
160
                                              success= mRenderer.getEffects().apply(effect);
161
                                              act.effectAdded(success,effect);
162
                                              break;
163
                                      case 4: effect = new FragmentEffectChroma    (mInterC, RED, center, REGION_F, true);
164
                                              success= mRenderer.getEffects().apply(effect);
165
                                              act.effectAdded(success,effect);
166
                                              break;
167
                                      }
168

    
169
                                    break;
170
      }
171

    
172
    return true;
173
    }
174

    
175
  }
(3-3/3)