Project

General

Profile

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

examples / src / main / java / org / distorted / examples / deform / DeformActivity.java @ 107e4b72

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

    
22
import org.distorted.library.main.Distorted;
23
import org.distorted.examples.R;
24
import org.distorted.library.effect.EffectName;
25

    
26
import android.app.Activity;
27
import android.opengl.GLSurfaceView;
28
import android.os.Bundle;
29
import android.view.View;
30
import android.widget.RadioButton;
31
import android.widget.SeekBar;
32
import android.widget.TextView;
33
import android.widget.SeekBar.OnSeekBarChangeListener;
34

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

    
37
public class DeformActivity extends Activity implements OnSeekBarChangeListener
38
{
39
    private TextView textR;
40
    private EffectName mCurrEffect;
41

    
42
///////////////////////////////////////////////////////////////////////////////////////////////////
43
    
44
    @Override
45
    protected void onCreate(Bundle savedState)
46
      {
47
      super.onCreate(savedState);
48
      setContentView(R.layout.deformlayout);
49

    
50
      textR = (TextView)findViewById(R.id.deformTextRadius);
51

    
52
      SeekBar barR = (SeekBar)findViewById(R.id.deformSeekRadius);
53
      barR.setOnSeekBarChangeListener(this);
54

    
55
      if( savedState==null )
56
        {
57
        barR.setProgress(50);
58
        RadioButton effect = (RadioButton)findViewById(R.id.deformDistortButton);
59
        effect.setChecked(true);
60
        Distort(null);
61
        }
62
      }
63

    
64
///////////////////////////////////////////////////////////////////////////////////////////////////
65
    
66
    @Override
67
    protected void onPause() 
68
      {
69
      DeformSurfaceView view = (DeformSurfaceView) this.findViewById(R.id.deformSurfaceView);
70

    
71
      Distorted.onPause();
72
      view.onPause();
73
      super.onPause();
74
      }
75

    
76
///////////////////////////////////////////////////////////////////////////////////////////////////
77
    
78
    @Override
79
    protected void onResume() 
80
      {
81
      super.onResume();
82
      
83
      GLSurfaceView view = (GLSurfaceView) this.findViewById(R.id.deformSurfaceView);
84
      view.onResume();
85
      }
86
 
87
///////////////////////////////////////////////////////////////////////////////////////////////////
88
    
89
    @Override
90
    protected void onDestroy() 
91
      {
92
      Distorted.onDestroy();
93
      super.onDestroy();
94
      }
95
 
96
///////////////////////////////////////////////////////////////////////////////////////////////////
97
    
98
    public void Distort(View v)
99
      {
100
      DeformSurfaceView view = (DeformSurfaceView) this.findViewById(R.id.deformSurfaceView);
101
      view.getRenderer().setMode(EffectName.DISTORT);
102
      mCurrEffect = EffectName.DISTORT;
103
      }     
104
    
105
///////////////////////////////////////////////////////////////////////////////////////////////////
106

    
107
    public void Deform(View v)
108
      {
109
      DeformSurfaceView view = (DeformSurfaceView) this.findViewById(R.id.deformSurfaceView);
110
      view.getRenderer().setMode(EffectName.DEFORM);
111
      mCurrEffect = EffectName.DEFORM;
112
      }       
113

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

    
116
    public void Shear(View v)
117
      {
118
      DeformSurfaceView view = (DeformSurfaceView) this.findViewById(R.id.deformSurfaceView);
119
      view.getRenderer().setMode(EffectName.SHEAR);
120
      mCurrEffect = EffectName.SHEAR;
121
      }       
122

    
123
///////////////////////////////////////////////////////////////////////////////////////////////////
124

    
125
    @Override
126
    public void onSaveInstanceState(Bundle savedInstanceState)
127
      {
128
      super.onSaveInstanceState(savedInstanceState);
129
      savedInstanceState.putInt("effect", mCurrEffect.ordinal() );
130
      }
131

    
132
///////////////////////////////////////////////////////////////////////////////////////////////////
133

    
134
    @Override
135
    public void onRestoreInstanceState(Bundle savedInstanceState)
136
      {
137
      super.onRestoreInstanceState(savedInstanceState);
138

    
139
      int effect = savedInstanceState.getInt("effect");
140

    
141
      if( effect == EffectName.DISTORT.ordinal() ) Distort(null);
142
      if( effect == EffectName.DEFORM.ordinal()  ) Deform(null);
143
      if( effect == EffectName.SHEAR.ordinal()   ) Shear(null);
144
      }
145

    
146
///////////////////////////////////////////////////////////////////////////////////////////////////
147
    
148
    public void onProgressChanged(SeekBar bar, int progress, boolean fromUser) 
149
      {
150
      switch (bar.getId()) 
151
        {
152
        case R.id.deformSeekRadius: DeformSurfaceView view = (DeformSurfaceView) this.findViewById(R.id.deformSurfaceView);
153
                                    view.getRenderer().setRegionRadius(progress);
154
                                    textR.setText(getString(R.string.radius_placeholder,(progress<100 ? (""+progress): "Infinity") ));
155
                                    break;
156
        }
157
      }
158

    
159
///////////////////////////////////////////////////////////////////////////////////////////////////
160

    
161
    public void onStartTrackingTouch(SeekBar bar) { }
162
    
163
///////////////////////////////////////////////////////////////////////////////////////////////////
164

    
165
    public void onStopTrackingTouch(SeekBar bar)  { }
166

    
167
///////////////////////////////////////////////////////////////////////////////////////////////////
168
    
169
}
(1-1/3)