| 1 |
bc0a685b
|
Leszek Koltunski
|
///////////////////////////////////////////////////////////////////////////////////////////////////
|
| 2 |
|
|
// Copyright 2016 Leszek Koltunski //
|
| 3 |
|
|
// //
|
| 4 |
71c8884f
|
Leszek Koltunski
|
// This file is part of Distorted. //
|
| 5 |
bc0a685b
|
Leszek Koltunski
|
// //
|
| 6 |
71c8884f
|
Leszek Koltunski
|
// Distorted is free software: you can redistribute it and/or modify //
|
| 7 |
bc0a685b
|
Leszek Koltunski
|
// 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 |
71c8884f
|
Leszek Koltunski
|
// Distorted is distributed in the hope that it will be useful, //
|
| 12 |
bc0a685b
|
Leszek Koltunski
|
// 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 |
71c8884f
|
Leszek Koltunski
|
// along with Distorted. If not, see <http://www.gnu.org/licenses/>. //
|
| 18 |
bc0a685b
|
Leszek Koltunski
|
///////////////////////////////////////////////////////////////////////////////////////////////////
|
| 19 |
|
|
|
| 20 |
5068fa06
|
Leszek Koltunski
|
package org.distorted.examples.movingeffects;
|
| 21 |
427ab7bf
|
Leszek Koltunski
|
|
| 22 |
e4330c89
|
Leszek Koltunski
|
import android.app.ActivityManager;
|
| 23 |
427ab7bf
|
Leszek Koltunski
|
import android.content.Context;
|
| 24 |
e4330c89
|
Leszek Koltunski
|
import android.content.pm.ConfigurationInfo;
|
| 25 |
427ab7bf
|
Leszek Koltunski
|
import android.graphics.Canvas;
|
| 26 |
|
|
import android.graphics.Paint;
|
| 27 |
|
|
import android.graphics.Paint.Style;
|
| 28 |
|
|
import android.opengl.GLSurfaceView;
|
| 29 |
|
|
import android.view.MotionEvent;
|
| 30 |
|
|
import android.util.AttributeSet;
|
| 31 |
|
|
|
| 32 |
6173632c
|
Leszek Koltunski
|
import org.distorted.library.effect.EffectType;
|
| 33 |
|
|
import org.distorted.library.effect.FragmentEffectAlpha;
|
| 34 |
|
|
import org.distorted.library.effect.FragmentEffectChroma;
|
| 35 |
01cef452
|
Leszek Koltunski
|
import org.distorted.library.effect.VertexEffectDeform;
|
| 36 |
6173632c
|
Leszek Koltunski
|
import org.distorted.library.effect.VertexEffectSink;
|
| 37 |
|
|
import org.distorted.library.effect.VertexEffectSwirl;
|
| 38 |
01782e85
|
Leszek Koltunski
|
import org.distorted.library.main.DistortedEffects;
|
| 39 |
334c13fa
|
Leszek Koltunski
|
import org.distorted.library.type.Dynamic3D;
|
| 40 |
59759251
|
Leszek Koltunski
|
import org.distorted.library.type.Static1D;
|
| 41 |
7589635e
|
Leszek Koltunski
|
import org.distorted.library.type.Static3D;
|
| 42 |
|
|
import org.distorted.library.type.Static4D;
|
| 43 |
427ab7bf
|
Leszek Koltunski
|
|
| 44 |
7bf107f7
|
Leszek Koltunski
|
///////////////////////////////////////////////////////////////////////////////////////////////////
|
| 45 |
427ab7bf
|
Leszek Koltunski
|
|
| 46 |
|
|
public class MovingEffectsSurfaceView extends GLSurfaceView
|
| 47 |
|
|
{
|
| 48 |
|
|
private static final int LOOP_TIME = 5000;
|
| 49 |
97dadfe5
|
Leszek Koltunski
|
private static final int NUM_POINTS= 100;
|
| 50 |
6173632c
|
Leszek Koltunski
|
|
| 51 |
427ab7bf
|
Leszek Koltunski
|
public static final int EFFECT_POINTS=0;
|
| 52 |
|
|
public static final int EFFECT_BUBBLE=1;
|
| 53 |
|
|
public static final int EFFECT_SINK =2;
|
| 54 |
|
|
public static final int EFFECT_TRANS =3;
|
| 55 |
4348b52e
|
Leszek Koltunski
|
public static final int EFFECT_CHROMA=4;
|
| 56 |
427ab7bf
|
Leszek Koltunski
|
public static final int EFFECT_SWIRL =5;
|
| 57 |
59759251
|
Leszek Koltunski
|
|
| 58 |
97dadfe5
|
Leszek Koltunski
|
private static final Object lock = new Object();
|
| 59 |
4562f295
|
Leszek Koltunski
|
|
| 60 |
1585ba24
|
Leszek Koltunski
|
private Dynamic3D mCenter;
|
| 61 |
4562f295
|
Leszek Koltunski
|
private Paint mPaint;
|
| 62 |
|
|
private int moving;
|
| 63 |
8eed34d3
|
Leszek Koltunski
|
private int mScrWidth, mScrHeight;
|
| 64 |
4562f295
|
Leszek Koltunski
|
private long mTime = 0;
|
| 65 |
427ab7bf
|
Leszek Koltunski
|
|
| 66 |
4562f295
|
Leszek Koltunski
|
private int mCurrEffect;
|
| 67 |
1585ba24
|
Leszek Koltunski
|
private int mSize1, mSize2;
|
| 68 |
01cef452
|
Leszek Koltunski
|
private Static3D mDeform;
|
| 69 |
513b2e9c
|
Leszek Koltunski
|
private Static1D mRadius;
|
| 70 |
97dadfe5
|
Leszek Koltunski
|
|
| 71 |
f6d884d5
|
Leszek Koltunski
|
private MovingEffectsRenderer mRenderer;
|
| 72 |
|
|
|
| 73 |
01cef452
|
Leszek Koltunski
|
private VertexEffectDeform mEffectDeform;
|
| 74 |
6173632c
|
Leszek Koltunski
|
private VertexEffectSink mEffectSink;
|
| 75 |
|
|
private VertexEffectSwirl mEffectSwirl;
|
| 76 |
|
|
private FragmentEffectChroma mEffectChroma;
|
| 77 |
|
|
private FragmentEffectAlpha mEffectAlpha;
|
| 78 |
|
|
|
| 79 |
7bf107f7
|
Leszek Koltunski
|
///////////////////////////////////////////////////////////////////////////////////////////////////
|
| 80 |
427ab7bf
|
Leszek Koltunski
|
|
| 81 |
41a81a14
|
Leszek Koltunski
|
public MovingEffectsSurfaceView(Context context, AttributeSet attrs)
|
| 82 |
427ab7bf
|
Leszek Koltunski
|
{
|
| 83 |
41a81a14
|
Leszek Koltunski
|
super(context, attrs);
|
| 84 |
59759251
|
Leszek Koltunski
|
|
| 85 |
427ab7bf
|
Leszek Koltunski
|
mCurrEffect=EFFECT_POINTS;
|
| 86 |
|
|
mPaint = new Paint();
|
| 87 |
|
|
mPaint.setStyle(Style.FILL);
|
| 88 |
|
|
moving = -1;
|
| 89 |
|
|
|
| 90 |
c7a31368
|
Leszek Koltunski
|
mCenter = new Dynamic3D(LOOP_TIME,0.0f);
|
| 91 |
|
|
mDeform = new Static3D(0,0,0.15f);
|
| 92 |
513b2e9c
|
Leszek Koltunski
|
mRadius = new Static1D(0);
|
| 93 |
59759251
|
Leszek Koltunski
|
|
| 94 |
427ab7bf
|
Leszek Koltunski
|
if(!isInEditMode())
|
| 95 |
|
|
{
|
| 96 |
e4330c89
|
Leszek Koltunski
|
mRenderer = new MovingEffectsRenderer(this);
|
| 97 |
|
|
|
| 98 |
427ab7bf
|
Leszek Koltunski
|
setFocusable(true);
|
| 99 |
|
|
setFocusableInTouchMode(true);
|
| 100 |
e4330c89
|
Leszek Koltunski
|
final ActivityManager activityManager = (ActivityManager) context.getSystemService(Context.ACTIVITY_SERVICE);
|
| 101 |
|
|
final ConfigurationInfo configurationInfo = activityManager.getDeviceConfigurationInfo();
|
| 102 |
|
|
setEGLContextClientVersion( (configurationInfo.reqGlEsVersion>>16) >= 3 ? 3:2 );
|
| 103 |
f6d884d5
|
Leszek Koltunski
|
setRenderer(mRenderer);
|
| 104 |
6173632c
|
Leszek Koltunski
|
|
| 105 |
c7a31368
|
Leszek Koltunski
|
Static3D regionFrag = new Static3D(0.15f,0.15f,0.15f);
|
| 106 |
|
|
Static4D regionVert = new Static4D(0,0,0,0.15f);
|
| 107 |
|
|
|
| 108 |
513b2e9c
|
Leszek Koltunski
|
mEffectDeform = new VertexEffectDeform ( mDeform , mRadius, mCenter, regionVert);
|
| 109 |
c7a31368
|
Leszek Koltunski
|
mEffectSink = new VertexEffectSink (new Static1D(10) , mCenter, regionVert);
|
| 110 |
|
|
mEffectSwirl = new VertexEffectSwirl (new Static1D(30) , mCenter, regionVert);
|
| 111 |
|
|
mEffectAlpha = new FragmentEffectAlpha (new Static1D(0.5f), mCenter, regionFrag, true);
|
| 112 |
|
|
mEffectChroma = new FragmentEffectChroma(new Static1D(0.5f), new Static3D(1,0,0), mCenter, regionFrag, true);
|
| 113 |
e4330c89
|
Leszek Koltunski
|
}
|
| 114 |
427ab7bf
|
Leszek Koltunski
|
}
|
| 115 |
|
|
|
| 116 |
7bf107f7
|
Leszek Koltunski
|
///////////////////////////////////////////////////////////////////////////////////////////////////
|
| 117 |
427ab7bf
|
Leszek Koltunski
|
|
| 118 |
4562f295
|
Leszek Koltunski
|
public void onSurfaceChanged(int width,int height)
|
| 119 |
427ab7bf
|
Leszek Koltunski
|
{
|
| 120 |
398fb2ee
|
Leszek Koltunski
|
int max = width>height ? width:height;
|
| 121 |
97dadfe5
|
Leszek Koltunski
|
|
| 122 |
8eed34d3
|
Leszek Koltunski
|
mScrWidth = width;
|
| 123 |
a4d59c0b
|
Leszek Koltunski
|
mScrHeight = height;
|
| 124 |
|
|
|
| 125 |
513b2e9c
|
Leszek Koltunski
|
mRadius.set(max/2);
|
| 126 |
|
|
|
| 127 |
398fb2ee
|
Leszek Koltunski
|
mSize1 = max/200;
|
| 128 |
|
|
mSize2 = max/80;
|
| 129 |
427ab7bf
|
Leszek Koltunski
|
}
|
| 130 |
|
|
|
| 131 |
7bf107f7
|
Leszek Koltunski
|
///////////////////////////////////////////////////////////////////////////////////////////////////
|
| 132 |
427ab7bf
|
Leszek Koltunski
|
|
| 133 |
4562f295
|
Leszek Koltunski
|
public int getCurrentEffect()
|
| 134 |
427ab7bf
|
Leszek Koltunski
|
{
|
| 135 |
|
|
return mCurrEffect;
|
| 136 |
|
|
}
|
| 137 |
|
|
|
| 138 |
7bf107f7
|
Leszek Koltunski
|
///////////////////////////////////////////////////////////////////////////////////////////////////
|
| 139 |
427ab7bf
|
Leszek Koltunski
|
|
| 140 |
4562f295
|
Leszek Koltunski
|
public void Bubble()
|
| 141 |
427ab7bf
|
Leszek Koltunski
|
{
|
| 142 |
|
|
if( mCurrEffect==EFFECT_BUBBLE ) return;
|
| 143 |
|
|
|
| 144 |
|
|
synchronized(lock)
|
| 145 |
|
|
{
|
| 146 |
d04a4886
|
Leszek Koltunski
|
DistortedEffects q = mRenderer.getEffects();
|
| 147 |
6173632c
|
Leszek Koltunski
|
q.abortByType(EffectType.VERTEX);
|
| 148 |
|
|
q.abortByType(EffectType.FRAGMENT);
|
| 149 |
01cef452
|
Leszek Koltunski
|
q.apply(mEffectDeform);
|
| 150 |
427ab7bf
|
Leszek Koltunski
|
mCurrEffect = EFFECT_BUBBLE;
|
| 151 |
|
|
}
|
| 152 |
|
|
}
|
| 153 |
|
|
|
| 154 |
7bf107f7
|
Leszek Koltunski
|
///////////////////////////////////////////////////////////////////////////////////////////////////
|
| 155 |
427ab7bf
|
Leszek Koltunski
|
|
| 156 |
4562f295
|
Leszek Koltunski
|
public void Sink()
|
| 157 |
427ab7bf
|
Leszek Koltunski
|
{
|
| 158 |
|
|
if( mCurrEffect==EFFECT_SINK ) return;
|
| 159 |
|
|
|
| 160 |
|
|
synchronized(lock)
|
| 161 |
|
|
{
|
| 162 |
d04a4886
|
Leszek Koltunski
|
DistortedEffects q = mRenderer.getEffects();
|
| 163 |
6173632c
|
Leszek Koltunski
|
q.abortByType(EffectType.VERTEX);
|
| 164 |
|
|
q.abortByType(EffectType.FRAGMENT);
|
| 165 |
|
|
q.apply(mEffectSink);
|
| 166 |
427ab7bf
|
Leszek Koltunski
|
mCurrEffect = EFFECT_SINK;
|
| 167 |
|
|
}
|
| 168 |
|
|
}
|
| 169 |
|
|
|
| 170 |
7bf107f7
|
Leszek Koltunski
|
///////////////////////////////////////////////////////////////////////////////////////////////////
|
| 171 |
427ab7bf
|
Leszek Koltunski
|
|
| 172 |
4562f295
|
Leszek Koltunski
|
public void Chroma()
|
| 173 |
427ab7bf
|
Leszek Koltunski
|
{
|
| 174 |
4348b52e
|
Leszek Koltunski
|
if( mCurrEffect==EFFECT_CHROMA ) return;
|
| 175 |
427ab7bf
|
Leszek Koltunski
|
|
| 176 |
|
|
synchronized(lock)
|
| 177 |
|
|
{
|
| 178 |
d04a4886
|
Leszek Koltunski
|
DistortedEffects q = mRenderer.getEffects();
|
| 179 |
6173632c
|
Leszek Koltunski
|
q.abortByType(EffectType.VERTEX);
|
| 180 |
|
|
q.abortByType(EffectType.FRAGMENT);
|
| 181 |
|
|
q.apply(mEffectChroma);
|
| 182 |
4348b52e
|
Leszek Koltunski
|
mCurrEffect = EFFECT_CHROMA;
|
| 183 |
427ab7bf
|
Leszek Koltunski
|
}
|
| 184 |
|
|
}
|
| 185 |
|
|
|
| 186 |
7bf107f7
|
Leszek Koltunski
|
///////////////////////////////////////////////////////////////////////////////////////////////////
|
| 187 |
427ab7bf
|
Leszek Koltunski
|
|
| 188 |
4562f295
|
Leszek Koltunski
|
public void Transparency()
|
| 189 |
427ab7bf
|
Leszek Koltunski
|
{
|
| 190 |
|
|
if( mCurrEffect==EFFECT_TRANS ) return;
|
| 191 |
|
|
|
| 192 |
|
|
synchronized(lock)
|
| 193 |
|
|
{
|
| 194 |
d04a4886
|
Leszek Koltunski
|
DistortedEffects q = mRenderer.getEffects();
|
| 195 |
6173632c
|
Leszek Koltunski
|
q.abortByType(EffectType.VERTEX);
|
| 196 |
|
|
q.abortByType(EffectType.FRAGMENT);
|
| 197 |
|
|
q.apply(mEffectAlpha);
|
| 198 |
427ab7bf
|
Leszek Koltunski
|
mCurrEffect = EFFECT_TRANS;
|
| 199 |
|
|
}
|
| 200 |
|
|
}
|
| 201 |
|
|
|
| 202 |
7bf107f7
|
Leszek Koltunski
|
///////////////////////////////////////////////////////////////////////////////////////////////////
|
| 203 |
427ab7bf
|
Leszek Koltunski
|
|
| 204 |
4562f295
|
Leszek Koltunski
|
public void Swirl()
|
| 205 |
427ab7bf
|
Leszek Koltunski
|
{
|
| 206 |
|
|
if( mCurrEffect==EFFECT_SWIRL ) return;
|
| 207 |
|
|
|
| 208 |
|
|
synchronized(lock)
|
| 209 |
|
|
{
|
| 210 |
d04a4886
|
Leszek Koltunski
|
DistortedEffects q = mRenderer.getEffects();
|
| 211 |
6173632c
|
Leszek Koltunski
|
q.abortByType(EffectType.VERTEX);
|
| 212 |
|
|
q.abortByType(EffectType.FRAGMENT);
|
| 213 |
|
|
q.apply(mEffectSwirl);
|
| 214 |
427ab7bf
|
Leszek Koltunski
|
mCurrEffect = EFFECT_SWIRL;
|
| 215 |
|
|
}
|
| 216 |
|
|
}
|
| 217 |
|
|
|
| 218 |
7bf107f7
|
Leszek Koltunski
|
///////////////////////////////////////////////////////////////////////////////////////////////////
|
| 219 |
427ab7bf
|
Leszek Koltunski
|
|
| 220 |
4562f295
|
Leszek Koltunski
|
public void Abort()
|
| 221 |
427ab7bf
|
Leszek Koltunski
|
{
|
| 222 |
|
|
synchronized(lock)
|
| 223 |
|
|
{
|
| 224 |
d04a4886
|
Leszek Koltunski
|
DistortedEffects q = mRenderer.getEffects();
|
| 225 |
6173632c
|
Leszek Koltunski
|
q.abortByType(EffectType.VERTEX);
|
| 226 |
|
|
q.abortByType(EffectType.FRAGMENT);
|
| 227 |
1585ba24
|
Leszek Koltunski
|
mCenter.removeAll();
|
| 228 |
427ab7bf
|
Leszek Koltunski
|
mCurrEffect = EFFECT_POINTS;
|
| 229 |
3c8b1903
|
Leszek Koltunski
|
mRenderer.setRefresh();
|
| 230 |
427ab7bf
|
Leszek Koltunski
|
}
|
| 231 |
|
|
}
|
| 232 |
|
|
|
| 233 |
7bf107f7
|
Leszek Koltunski
|
///////////////////////////////////////////////////////////////////////////////////////////////////
|
| 234 |
427ab7bf
|
Leszek Koltunski
|
|
| 235 |
4562f295
|
Leszek Koltunski
|
public void drawCurve(Canvas c, long time)
|
| 236 |
427ab7bf
|
Leszek Koltunski
|
{
|
| 237 |
|
|
synchronized(lock)
|
| 238 |
|
|
{
|
| 239 |
1585ba24
|
Leszek Koltunski
|
int len = mCenter.getNumPoints();
|
| 240 |
97dadfe5
|
Leszek Koltunski
|
|
| 241 |
334c13fa
|
Leszek Koltunski
|
float[] drawCoord = new float[3];
|
| 242 |
|
|
Static3D cu;
|
| 243 |
3c8b1903
|
Leszek Koltunski
|
|
| 244 |
427ab7bf
|
Leszek Koltunski
|
if( len>=2 )
|
| 245 |
|
|
{
|
| 246 |
c7a31368
|
Leszek Koltunski
|
final float step = (float)LOOP_TIME/(NUM_POINTS+1);
|
| 247 |
97dadfe5
|
Leszek Koltunski
|
|
| 248 |
|
|
for(int i=0; i<NUM_POINTS; i++)
|
| 249 |
427ab7bf
|
Leszek Koltunski
|
{
|
| 250 |
3c8b1903
|
Leszek Koltunski
|
mPaint.setColor( 0xffffffff );
|
| 251 |
1585ba24
|
Leszek Koltunski
|
mCenter.get( drawCoord, 0, (long)(i*step) );
|
| 252 |
df80818c
|
Leszek Koltunski
|
c.drawCircle( (drawCoord[0]+0.5f)*mScrWidth, 0.5f*mScrHeight-drawCoord[1]*mScrWidth, mSize1, mPaint );
|
| 253 |
427ab7bf
|
Leszek Koltunski
|
}
|
| 254 |
|
|
}
|
| 255 |
|
|
|
| 256 |
|
|
mPaint.setColor(0xffff0000);
|
| 257 |
|
|
|
| 258 |
|
|
for(int curr=0; curr<len; curr++)
|
| 259 |
|
|
{
|
| 260 |
1585ba24
|
Leszek Koltunski
|
cu = mCenter.getPoint(curr);
|
| 261 |
df80818c
|
Leszek Koltunski
|
c.drawCircle( (cu.get0()+0.5f)*mScrWidth, 0.5f*mScrHeight-cu.get1()*mScrWidth, mSize2, mPaint);
|
| 262 |
427ab7bf
|
Leszek Koltunski
|
}
|
| 263 |
|
|
|
| 264 |
|
|
if( time-mTime > LOOP_TIME ) mTime = time;
|
| 265 |
|
|
}
|
| 266 |
|
|
}
|
| 267 |
|
|
|
| 268 |
7bf107f7
|
Leszek Koltunski
|
///////////////////////////////////////////////////////////////////////////////////////////////////
|
| 269 |
427ab7bf
|
Leszek Koltunski
|
|
| 270 |
a4d59c0b
|
Leszek Koltunski
|
@Override
|
| 271 |
|
|
public boolean onTouchEvent(MotionEvent event)
|
| 272 |
427ab7bf
|
Leszek Koltunski
|
{
|
| 273 |
|
|
if( mCurrEffect!=EFFECT_POINTS ) return true;
|
| 274 |
97dadfe5
|
Leszek Koltunski
|
|
| 275 |
c7a31368
|
Leszek Koltunski
|
float xDown = event.getX()/mScrWidth - 0.5f;
|
| 276 |
df80818c
|
Leszek Koltunski
|
float yDown = (0.5f*mScrHeight - event.getY())/mScrWidth;
|
| 277 |
97dadfe5
|
Leszek Koltunski
|
|
| 278 |
427ab7bf
|
Leszek Koltunski
|
switch(event.getAction())
|
| 279 |
|
|
{
|
| 280 |
8eed34d3
|
Leszek Koltunski
|
case MotionEvent.ACTION_DOWN: float gx, gy;
|
| 281 |
e3eab072
|
Leszek Koltunski
|
Static3D dv;
|
| 282 |
1585ba24
|
Leszek Koltunski
|
int len = mCenter.getNumPoints();
|
| 283 |
427ab7bf
|
Leszek Koltunski
|
|
| 284 |
|
|
for(int g=0; g<len; g++)
|
| 285 |
|
|
{
|
| 286 |
1585ba24
|
Leszek Koltunski
|
dv = mCenter.getPoint(g);
|
| 287 |
bcbd5b45
|
Leszek Koltunski
|
gx = dv.get0();
|
| 288 |
|
|
gy = dv.get1();
|
| 289 |
398fb2ee
|
Leszek Koltunski
|
|
| 290 |
bcbd5b45
|
Leszek Koltunski
|
float Z = mDeform.get2()/7;
|
| 291 |
398fb2ee
|
Leszek Koltunski
|
|
| 292 |
|
|
if( (xDown-gx)*(xDown-gx) + (yDown-gy)*(yDown-gy) < Z*Z )
|
| 293 |
427ab7bf
|
Leszek Koltunski
|
{
|
| 294 |
|
|
moving = g;
|
| 295 |
|
|
break;
|
| 296 |
|
|
}
|
| 297 |
|
|
}
|
| 298 |
|
|
if( moving<0 )
|
| 299 |
|
|
{
|
| 300 |
|
|
synchronized(lock)
|
| 301 |
|
|
{
|
| 302 |
1585ba24
|
Leszek Koltunski
|
mCenter.add(new Static3D(xDown,yDown,0));
|
| 303 |
427ab7bf
|
Leszek Koltunski
|
}
|
| 304 |
3c8b1903
|
Leszek Koltunski
|
}
|
| 305 |
|
|
mRenderer.setRefresh();
|
| 306 |
427ab7bf
|
Leszek Koltunski
|
break;
|
| 307 |
|
|
case MotionEvent.ACTION_MOVE: if( moving>=0 )
|
| 308 |
|
|
{
|
| 309 |
1585ba24
|
Leszek Koltunski
|
mCenter.setPoint(moving, xDown, yDown, 0);
|
| 310 |
3c8b1903
|
Leszek Koltunski
|
}
|
| 311 |
|
|
mRenderer.setRefresh();
|
| 312 |
427ab7bf
|
Leszek Koltunski
|
break;
|
| 313 |
|
|
case MotionEvent.ACTION_UP : moving = -1;
|
| 314 |
|
|
break;
|
| 315 |
|
|
}
|
| 316 |
|
|
return true;
|
| 317 |
|
|
}
|
| 318 |
|
|
}
|