Project

General

Profile

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

examples / src / main / java / org / distorted / examples / deform / DeformActivity.java @ c0f27889

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.DistortedLibrary;
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 = findViewById(R.id.deformTextRadius);
51

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

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

    
64
///////////////////////////////////////////////////////////////////////////////////////////////////
65
    
66
    @Override
67
    protected void onPause() 
68
      {
69
      super.onPause();
70
      DeformSurfaceView view = findViewById(R.id.deformSurfaceView);
71
      view.onPause();
72
      DistortedLibrary.onPause();
73
      }
74

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

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

    
112
///////////////////////////////////////////////////////////////////////////////////////////////////
113

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

    
121
///////////////////////////////////////////////////////////////////////////////////////////////////
122

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

    
130
///////////////////////////////////////////////////////////////////////////////////////////////////
131

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

    
137
      int effect = savedInstanceState.getInt("effect");
138

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

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

    
156
///////////////////////////////////////////////////////////////////////////////////////////////////
157

    
158
    public void onStartTrackingTouch(SeekBar bar) { }
159
    
160
///////////////////////////////////////////////////////////////////////////////////////////////////
161

    
162
    public void onStopTrackingTouch(SeekBar bar)  { }
163

    
164
///////////////////////////////////////////////////////////////////////////////////////////////////
165
    
166
}
(1-1/3)