Project

General

Profile

Download (16.5 KB) Statistics
| Branch: | Tag: | Revision:

magiccube / src / main / java / org / distorted / bandaged / BandagedRenderer.java @ a5972f92

1 9530f6b0 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
2 da56b12f Leszek Koltunski
// Copyright 2022 Leszek Koltunski                                                               //
3 9530f6b0 Leszek Koltunski
//                                                                                               //
4
// This file is part of Magic Cube.                                                              //
5
//                                                                                               //
6 44fec653 Leszek Koltunski
// Magic Cube is proprietary software licensed under an EULA which you should have received      //
7
// along with the code. If not, check https://distorted.org/magic/License-Magic-Cube.html        //
8 9530f6b0 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
9
10
package org.distorted.bandaged;
11
12 b4a6e84d Leszek Koltunski
import java.io.File;
13
import java.io.FileNotFoundException;
14
import java.io.IOException;
15 d0ad3964 Leszek Koltunski
import java.io.InputStream;
16 b4a6e84d Leszek Koltunski
import java.nio.ByteBuffer;
17
import java.nio.ByteOrder;
18
19 77efd5ad Leszek Koltunski
import javax.microedition.khronos.egl.EGLConfig;
20
import javax.microedition.khronos.opengles.GL10;
21
22 72e386ef Leszek Koltunski
import android.app.Activity;
23 d0ad3964 Leszek Koltunski
import android.content.res.Resources;
24 7cb8d4b0 Leszek Koltunski
import android.opengl.GLES31;
25 9530f6b0 Leszek Koltunski
import android.opengl.GLSurfaceView;
26 72e386ef Leszek Koltunski
import android.widget.Toast;
27 9530f6b0 Leszek Koltunski
28 6647b730 Leszek Koltunski
import org.distorted.dialogs.RubikDialogBandagedSave;
29 6dff7924 Leszek Koltunski
import org.distorted.library.effect.EffectType;
30 1a106eb8 Leszek Koltunski
import org.distorted.library.effect.FragmentEffectBrightness;
31 7cb8d4b0 Leszek Koltunski
import org.distorted.library.effect.PostprocessEffectBorder;
32
import org.distorted.library.main.DistortedEffects;
33
import org.distorted.library.main.DistortedFramebuffer;
34 9530f6b0 Leszek Koltunski
import org.distorted.library.main.DistortedLibrary;
35 da56b12f Leszek Koltunski
import org.distorted.library.main.DistortedNode;
36 9530f6b0 Leszek Koltunski
import org.distorted.library.main.DistortedScreen;
37 20b60ad9 Leszek Koltunski
import org.distorted.library.main.InternalOutputSurface;
38 6dff7924 Leszek Koltunski
import org.distorted.library.mesh.MeshBase;
39 7cb8d4b0 Leszek Koltunski
import org.distorted.library.type.Static1D;
40 77efd5ad Leszek Koltunski
import org.distorted.library.type.Static3D;
41
import org.distorted.library.type.Static4D;
42 e514732c leszek
import org.distorted.objectlib.bandaged.BandagedObject;
43 7da27d2b leszek
import org.distorted.objectlib.bandaged.LocallyBandagedList;
44 72e386ef Leszek Koltunski
import org.distorted.objectlib.json.JsonWriter;
45 402b1325 leszek
import org.distorted.objectlib.main.ObjectControl;
46 72e386ef Leszek Koltunski
import org.distorted.objectlib.main.TwistyObject;
47 f404152d Leszek Koltunski
48 72e386ef Leszek Koltunski
import org.json.JSONException;
49
50 9530f6b0 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
51
52 7ee8337b leszek
public class BandagedRenderer implements GLSurfaceView.Renderer, DistortedLibrary.LibraryUser
53 9530f6b0 Leszek Koltunski
{
54 7cb8d4b0 Leszek Koltunski
   public static final float BRIGHTNESS = 0.333f;
55 213c15de Leszek Koltunski
   private static final int RESET_DURATION = 1000;
56 f6bf4e77 Leszek Koltunski
   private static final float MAX_SIZE_CHANGE = 1.70f;
57
   private static final float MIN_SIZE_CHANGE = 0.50f;
58 9530f6b0 Leszek Koltunski
59 7ee8337b leszek
   private final BandagedView mView;
60 d0ad3964 Leszek Koltunski
   private final Resources mResources;
61 75173f81 Leszek Koltunski
   private final DistortedScreen mScreen;
62
   private final Static3D mScale;
63 50ec342b Leszek Koltunski
   private final Static4D mQuatT, mQuatA;
64 f404152d Leszek Koltunski
   private final BandagedObject mObject;
65 4dcfb7a9 leszek
   private final float mInitRatio;
66 75173f81 Leszek Koltunski
67 e0b71e6e Leszek Koltunski
   private boolean mInitialPhase;
68
   private long mStartTime;
69 b9d062cf Leszek Koltunski
   private float mQuatX, mQuatY, mQuatZ, mQuatW;
70 f6bf4e77 Leszek Koltunski
   private boolean mResetQuats, mSetQuatT, mResettingObject, mConnectingCubits, mCreatingCubits, mRescaling;
71 1d4592a2 Leszek Koltunski
   private int mIndex1, mIndex2;
72 7cb8d4b0 Leszek Koltunski
   private int mSaveIcon;
73
   private DistortedFramebuffer mFramebuffer;
74
   private String mPath;
75 b9d062cf Leszek Koltunski
   private boolean mCubitsCreated;
76 a8aa49dc Leszek Koltunski
   private int mWidth, mHeight;
77 f6bf4e77 Leszek Koltunski
   private float mScaleValue, mObjectScreenRatio;
78 da56b12f Leszek Koltunski
79 9530f6b0 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
80
81 7ee8337b leszek
   BandagedRenderer(BandagedView v, int ordinal)
82 9530f6b0 Leszek Koltunski
     {
83 d0ad3964 Leszek Koltunski
     mView = v;
84
     mResources = v.getResources();
85
86 50ec342b Leszek Koltunski
     mQuatT = new Static4D(0,0,0,1);
87
     mQuatA = new Static4D(-0.25189602f,0.3546389f,0.009657208f,0.90038127f);
88 da56b12f Leszek Koltunski
89 1d4592a2 Leszek Koltunski
     mResetQuats       = false;
90
     mSetQuatT         = false;
91
     mResettingObject  = false;
92
     mConnectingCubits = false;
93 b9d062cf Leszek Koltunski
     mCubitsCreated    = false;
94 227e8c1f Leszek Koltunski
     mCreatingCubits   = false;
95 f6bf4e77 Leszek Koltunski
     mRescaling        = false;
96 75173f81 Leszek Koltunski
97 7cb8d4b0 Leszek Koltunski
     mSaveIcon = -1;
98
99 9530f6b0 Leszek Koltunski
     mScreen = new DistortedScreen();
100
     mScreen.glClearColor(BRIGHTNESS, BRIGHTNESS, BRIGHTNESS, 1.0f);
101 550db260 Leszek Koltunski
     mScale = new Static3D(1,1,1);
102 7da27d2b leszek
     mObject= LocallyBandagedList.create(ordinal,mScreen);
103 4dcfb7a9 leszek
104
     mInitRatio = mObject.getScreenRatio();
105
     mObjectScreenRatio= mInitRatio;
106 e0b71e6e Leszek Koltunski
     }
107
108 9530f6b0 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
109
110
   @Override
111
   public void onDrawFrame(GL10 glUnused)
112
     {
113
     long time = System.currentTimeMillis();
114
     mScreen.render(time);
115 75173f81 Leszek Koltunski
116 50ec342b Leszek Koltunski
     if( mSetQuatT )
117 75173f81 Leszek Koltunski
       {
118 50ec342b Leszek Koltunski
       mSetQuatT = false;
119 b9d062cf Leszek Koltunski
       mQuatT.set(mQuatX,mQuatY,mQuatZ,mQuatW);
120 75173f81 Leszek Koltunski
       }
121
122
     if( mResetQuats )
123
       {
124
       mResetQuats = false;
125
126 50ec342b Leszek Koltunski
       float qx = mQuatT.get0();
127
       float qy = mQuatT.get1();
128
       float qz = mQuatT.get2();
129
       float qw = mQuatT.get3();
130 75173f81 Leszek Koltunski
131 50ec342b Leszek Koltunski
       float rx = mQuatA.get0();
132
       float ry = mQuatA.get1();
133
       float rz = mQuatA.get2();
134
       float rw = mQuatA.get3();
135 75173f81 Leszek Koltunski
136
       float tx = rw*qx - rz*qy + ry*qz + rx*qw;
137
       float ty = rw*qy + rz*qx + ry*qw - rx*qz;
138
       float tz = rw*qz + rz*qw - ry*qx + rx*qy;
139
       float tw = rw*qw - rz*qz - ry*qy - rx*qx;
140
141 50ec342b Leszek Koltunski
       mQuatT.set(0f, 0f, 0f, 1f);
142
       mQuatA.set(tx, ty, tz, tw);
143 75173f81 Leszek Koltunski
       }
144 e0b71e6e Leszek Koltunski
145
     if( mResettingObject )
146
       {
147
       boolean done = continueResetting(time);
148
       if( done ) mResettingObject = false;
149
       }
150 7cb8d4b0 Leszek Koltunski
151 eb6bccbd Leszek Koltunski
     if( mSaveIcon>=0 )
152
       {
153 f203ffa0 Leszek Koltunski
       renderIcon(time); // for some reason we need to call render() twice here, otherwise the
154
       mSaveIcon++;      // icon turns out black. Probably some problem with binding the texture.
155 eb6bccbd Leszek Koltunski
       }
156
     if( mSaveIcon>=2 )
157
       {
158
       saveIcon();
159
       mSaveIcon = -1;
160
       }
161 1d4592a2 Leszek Koltunski
162
     if( mConnectingCubits )
163
       {
164 f404152d Leszek Koltunski
       mObject.tryConnectingCubits(mIndex1,mIndex2,mScaleValue);
165 e3c970a7 Leszek Koltunski
       mConnectingCubits = false;
166 1d4592a2 Leszek Koltunski
       }
167 227e8c1f Leszek Koltunski
168
     if( mCreatingCubits )
169
       {
170
       rescaleObject();
171
172
       if( mCubitsCreated )
173
         {
174 f404152d Leszek Koltunski
         mObject.createCubits(mQuatT,mQuatA,mScale);
175
         float[] dist = mObject.getDist3D();
176 7ee8337b leszek
         BandagedTouchControl control = mView.getTouchControl();
177 f404152d Leszek Koltunski
         control.setDist3D(dist);
178 227e8c1f Leszek Koltunski
         mScreen.detachAll();
179
         mView.resetCubits();
180 f404152d Leszek Koltunski
         mObject.attachCubits(mScaleValue);
181 227e8c1f Leszek Koltunski
         }
182 e3c970a7 Leszek Koltunski
183
       mCreatingCubits = false;
184 227e8c1f Leszek Koltunski
       }
185 f6bf4e77 Leszek Koltunski
186
     if( mRescaling )
187
       {
188
       rescaleObject();
189 f404152d Leszek Koltunski
       mObject.scaleCubits(mScaleValue);
190 7ee8337b leszek
       BandagedTouchControl control = mView.getTouchControl();
191 f6bf4e77 Leszek Koltunski
       control.setObjectRatio(mObjectScreenRatio);
192 e3c970a7 Leszek Koltunski
       mRescaling = false;
193 f6bf4e77 Leszek Koltunski
       }
194 9530f6b0 Leszek Koltunski
     }
195
196
///////////////////////////////////////////////////////////////////////////////////////////////////
197
198
   @Override
199
   public void onSurfaceChanged(GL10 glUnused, int width, int height)
200
      {
201 3b8f5220 Leszek Koltunski
      if( width!=mWidth || height!=mHeight )
202
        {
203
        mWidth = width;
204
        mHeight= height;
205
        rescaleObject();
206
        mScreen.detachAll();
207
        int touched = mView.getTouched();
208 f404152d Leszek Koltunski
        mObject.attachAndMarkCubits(mScaleValue,touched);
209 3b8f5220 Leszek Koltunski
        mView.setScreenSize(width,height);
210
        mScreen.resize(width,height);
211
        }
212 9530f6b0 Leszek Koltunski
      }
213
214
///////////////////////////////////////////////////////////////////////////////////////////////////
215
216
   @Override
217
   public void onSurfaceCreated(GL10 glUnused, EGLConfig config)
218
      {
219 7d8ae8db Leszek Koltunski
      DistortedLibrary.setMax(EffectType.VERTEX,0);
220 402b1325 leszek
      MeshBase.setMaxEffComponents(ObjectControl.MAX_MOVING_PARTS);
221 1a106eb8 Leszek Koltunski
      FragmentEffectBrightness.enable();
222 d0ad3964 Leszek Koltunski
      DistortedLibrary.onSurfaceCreated(this,1);
223 6dff7924 Leszek Koltunski
      DistortedLibrary.setCull(true);
224 f404152d Leszek Koltunski
      mObject.recreateCubits(mQuatT,mQuatA,mScale);
225 b9d062cf Leszek Koltunski
      mCubitsCreated = true;
226 3b8f5220 Leszek Koltunski
      mWidth = 0;
227
      mHeight= 0;
228 9530f6b0 Leszek Koltunski
      }
229
230 550db260 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
231
232
   public DistortedScreen getScreen()
233
     {
234
     return mScreen;
235
     }
236
237
///////////////////////////////////////////////////////////////////////////////////////////////////
238
239 1d4592a2 Leszek Koltunski
   void setConnecting(int index1, int index2)
240
     {
241
     mIndex1 = index1;
242
     mIndex2 = index2;
243
     mConnectingCubits = true;
244
     }
245
246 75173f81 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
247
248 50ec342b Leszek Koltunski
   public Static4D getQuatAccu()
249
     {
250
     return mQuatA;
251
     }
252 75173f81 Leszek Koltunski
253
///////////////////////////////////////////////////////////////////////////////////////////////////
254
255 50ec342b Leszek Koltunski
   public void setQuatTemp(float x, float y, float z, float w)
256
     {
257 2683f0c4 Leszek Koltunski
     mSetQuatT = false;
258
259 b9d062cf Leszek Koltunski
     mQuatX = x;
260
     mQuatY = y;
261
     mQuatZ = z;
262
     mQuatW = w;
263 75173f81 Leszek Koltunski
264 50ec342b Leszek Koltunski
     mSetQuatT = true;
265
     }
266 75173f81 Leszek Koltunski
267
///////////////////////////////////////////////////////////////////////////////////////////////////
268
269 50ec342b Leszek Koltunski
   public void resetQuats()
270
     {
271
     mResetQuats = true;
272
     }
273
274
///////////////////////////////////////////////////////////////////////////////////////////////////
275
276 e0b71e6e Leszek Koltunski
   public boolean isBusy()
277 50ec342b Leszek Koltunski
     {
278 e3c970a7 Leszek Koltunski
     return (mResettingObject || mCreatingCubits || mConnectingCubits);
279 e0b71e6e Leszek Koltunski
     }
280
281
///////////////////////////////////////////////////////////////////////////////////////////////////
282
283
   public void saveObject()
284 72e386ef Leszek Koltunski
     {
285 f404152d Leszek Koltunski
     TwistyObject obj = mObject.createObject(TwistyObject.MODE_NORM, 1.0f );
286 bfb59352 Leszek Koltunski
     String name = obj.getShortName();
287 7ee8337b leszek
     BandagedActivity act = (BandagedActivity) mView.getContext();
288 72e386ef Leszek Koltunski
289 bfb59352 Leszek Koltunski
     if( act.objectDoesntExist(name) && createObjectJson(obj,act) )
290 e48ad1af Leszek Koltunski
       {
291 f404152d Leszek Koltunski
       setupIconCreation(act);
292 e48ad1af Leszek Koltunski
       act.addObject(obj.getShortName());
293 e1637420 leszek
       act.doNotShowDialogAnymore();
294 e48ad1af Leszek Koltunski
       }
295 72e386ef Leszek Koltunski
     }
296
297
///////////////////////////////////////////////////////////////////////////////////////////////////
298
299 e48ad1af Leszek Koltunski
   private boolean createObjectJson(TwistyObject object, Activity act)
300 72e386ef Leszek Koltunski
     {
301
     final String name = object.getShortName()+"_object.json";
302
     File file = new File(act.getFilesDir(), name);
303
     String filename = file.getAbsolutePath();
304
305
     try
306
       {
307
       JsonWriter writer = JsonWriter.getInstance();
308 ff4a2a13 leszek
       String json = writer.createObjectString(object);
309 72e386ef Leszek Koltunski
       writer.write(filename,json);
310 e48ad1af Leszek Koltunski
       return true;
311 72e386ef Leszek Koltunski
       }
312
     catch(JSONException ex)
313
       {
314
       act.runOnUiThread(new Runnable()
315
         {
316
         public void run()
317
           {
318
           String message = "JSON Exception saving to \n\n"+filename+"\n\n failed:\n\n"+ex.getMessage();
319
           Toast.makeText(act,message,Toast.LENGTH_LONG).show();
320
           }
321
         });
322 e48ad1af Leszek Koltunski
323
       return false;
324 72e386ef Leszek Koltunski
       }
325
     catch(FileNotFoundException ex)
326
       {
327
       act.runOnUiThread(new Runnable()
328
         {
329
         public void run()
330
           {
331
           String message = "FileNotFound exception saving to \n\n"+filename+"\n\n failed:\n\n"+ex.getMessage();
332
           Toast.makeText(act,message,Toast.LENGTH_LONG).show();
333
           }
334
         });
335 e48ad1af Leszek Koltunski
336
       return false;
337 72e386ef Leszek Koltunski
       }
338
     catch(IOException ex)
339
       {
340
       act.runOnUiThread(new Runnable()
341
         {
342
         public void run()
343
           {
344
           String message = "IO exception saving to \n\n"+filename+"\n\n failed:\n\n"+ex.getMessage();
345
           Toast.makeText(act,message,Toast.LENGTH_LONG).show();
346
           }
347
         });
348 e48ad1af Leszek Koltunski
349
       return false;
350 72e386ef Leszek Koltunski
       }
351
     }
352
353 2d88fcc3 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
354
355 f404152d Leszek Koltunski
   private void setupIconCreation(Activity act)
356 72e386ef Leszek Koltunski
     {
357 f203ffa0 Leszek Koltunski
     final float R=1.0f;
358 ba52835a Leszek Koltunski
     final int FBO_WIDTH  = (int)(R*720);
359
     final int FBO_HEIGHT = (int)(R*1280);
360 d06018a9 leszek
     final float OBJECT_SIZE = R*0.60f;
361 f203ffa0 Leszek Koltunski
362 f404152d Leszek Koltunski
     TwistyObject obj = mObject.createObject(TwistyObject.MODE_ICON, OBJECT_SIZE );
363 16663e27 Leszek Koltunski
     DistortedEffects effects = obj.getObjectEffects();
364
     DistortedNode node = obj.getNode();
365 eb6bccbd Leszek Koltunski
366 20b60ad9 Leszek Koltunski
     if( mFramebuffer==null )
367
       {
368 f203ffa0 Leszek Koltunski
       mFramebuffer = new DistortedFramebuffer(FBO_WIDTH,FBO_HEIGHT,1, InternalOutputSurface.DEPTH_NO_STENCIL);
369
       mFramebuffer.glClearColor(BRIGHTNESS, BRIGHTNESS, BRIGHTNESS, 1.0f);
370 20b60ad9 Leszek Koltunski
       }
371 7cb8d4b0 Leszek Koltunski
372 f404152d Leszek Koltunski
     mFramebuffer.setProjection( mObject.computeProjectionAngle() ,0.1f);
373 20b60ad9 Leszek Koltunski
     mFramebuffer.detachAll();
374
     mFramebuffer.attach(node);
375 7cb8d4b0 Leszek Koltunski
376
     Static1D halo = new Static1D(5);
377
     Static4D color = new Static4D(0,0,0,1);
378
     PostprocessEffectBorder border = new PostprocessEffectBorder(halo,color);
379
     border.setHaloDepth(false);
380
     effects.apply(border);
381
382 16663e27 Leszek Koltunski
     final String name = obj.getShortName()+".png";
383 7cb8d4b0 Leszek Koltunski
     File file = new File(act.getFilesDir(), name);
384
     String filename = file.getAbsolutePath();
385
386
     mSaveIcon = 0;
387
     mPath = filename;
388 72e386ef Leszek Koltunski
     }
389 7cb8d4b0 Leszek Koltunski
390
///////////////////////////////////////////////////////////////////////////////////////////////////
391
392 eb6bccbd Leszek Koltunski
   private void renderIcon(long time)
393
     {
394
     mFramebuffer.render(time);
395
     }
396 7cb8d4b0 Leszek Koltunski
397 eb6bccbd Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
398 7cb8d4b0 Leszek Koltunski
399 eb6bccbd Leszek Koltunski
   private void saveIcon()
400
     {
401
     int fW = mFramebuffer.getWidth();
402
     int fH = mFramebuffer.getHeight();
403 7cb8d4b0 Leszek Koltunski
404 eb6bccbd Leszek Koltunski
     ByteBuffer buf = ByteBuffer.allocateDirect(fW*fH*4);
405
     buf.order(ByteOrder.LITTLE_ENDIAN);
406
407
     mFramebuffer.setAsReadFramebuffer(0);
408
     GLES31.glReadBuffer(GLES31.GL_COLOR_ATTACHMENT0);
409
     GLES31.glReadPixels( 0, 0, fW, fH, GLES31.GL_RGBA, GLES31.GL_UNSIGNED_BYTE, buf);
410 7ee8337b leszek
     BandagedWorkerThread.newBuffer(buf,fW,fH,6,mPath);
411 eb6bccbd Leszek Koltunski
     GLES31.glBindFramebuffer(GLES31.GL_READ_FRAMEBUFFER, 0);
412
413
     mSaveIcon = -1;
414
     }
415 7cb8d4b0 Leszek Koltunski
416 f6bf4e77 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
417
418
   void mulObjectRatio(float ratio)
419
     {
420
     mObjectScreenRatio *= ratio;
421
422 4dcfb7a9 leszek
     if( mObjectScreenRatio>MAX_SIZE_CHANGE*mInitRatio) mObjectScreenRatio = MAX_SIZE_CHANGE*mInitRatio;
423
     if( mObjectScreenRatio<MIN_SIZE_CHANGE*mInitRatio) mObjectScreenRatio = MIN_SIZE_CHANGE*mInitRatio;
424 f6bf4e77 Leszek Koltunski
425
     mRescaling = true;
426
     }
427
428
///////////////////////////////////////////////////////////////////////////////////////////////////
429
430
   float getObjectRatio()
431
     {
432
     return mObjectScreenRatio;
433
     }
434
435 a8aa49dc Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
436
437
   private void rescaleObject()
438
     {
439 afd7e804 Leszek Koltunski
     float size = mObject.getMaxSize();
440 f6bf4e77 Leszek Koltunski
     final float Q = mObjectScreenRatio/size;
441 a8aa49dc Leszek Koltunski
     mScaleValue = mWidth<mHeight ? Q*mWidth : Q*mHeight;
442
     mScale.set( mScaleValue,mScaleValue,mScaleValue );
443
     }
444
445 b9d062cf Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
446
447
   public void changeObject(int x, int y, int z)
448
     {
449 f404152d Leszek Koltunski
     if( mObject.tryChangeObject(x,y,z) ) mCreatingCubits = true;
450 b9d062cf Leszek Koltunski
     }
451
452 72e386ef Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
453
454
   public void displaySavingDialog()
455 e0b71e6e Leszek Koltunski
     {
456 7ee8337b leszek
     BandagedActivity act = (BandagedActivity)mView.getContext();
457 6647b730 Leszek Koltunski
     RubikDialogBandagedSave saveDiag = new RubikDialogBandagedSave();
458 61a7b812 Leszek Koltunski
     saveDiag.show(act.getSupportFragmentManager(), null);
459 e0b71e6e Leszek Koltunski
     }
460
461
///////////////////////////////////////////////////////////////////////////////////////////////////
462
463
   public void setupReset()
464
     {
465
     mResettingObject = true;
466
     mInitialPhase    = true;
467
     mStartTime       = System.currentTimeMillis();
468
     }
469
470
///////////////////////////////////////////////////////////////////////////////////////////////////
471
472
   public boolean continueResetting(long time)
473
     {
474
     long diff = time-mStartTime;
475 213c15de Leszek Koltunski
     float quotient = ((float)diff)/RESET_DURATION;
476 e0b71e6e Leszek Koltunski
477
     if( mInitialPhase && quotient>0.5f )
478
       {
479
       mInitialPhase=false;
480 f404152d Leszek Koltunski
       mView.resetCubits();
481
       mObject.resetObject(mScaleValue);
482 e0b71e6e Leszek Koltunski
       }
483
484
     double angle = 2*Math.PI*quotient*quotient*(3-2*quotient);
485
486
     float sinA = (float)Math.sin(angle);
487
     float cosA = (float)Math.cos(angle);
488
489
     mQuatT.set(0, -sinA, 0, cosA);
490 50ec342b Leszek Koltunski
491 e0b71e6e Leszek Koltunski
     return quotient>1.0f;
492 50ec342b Leszek Koltunski
     }
493 6f3af598 Leszek Koltunski
494
///////////////////////////////////////////////////////////////////////////////////////////////////
495
496
  public void touchCubit(int index)
497
    {
498 f404152d Leszek Koltunski
    mObject.touchCubit(index);
499 6f3af598 Leszek Koltunski
    }
500
501
///////////////////////////////////////////////////////////////////////////////////////////////////
502
503
  public void untouchCubit(int index)
504
    {
505 f404152d Leszek Koltunski
    mObject.untouchCubit(index);
506
    }
507
508
///////////////////////////////////////////////////////////////////////////////////////////////////
509
510 7ee8337b leszek
  public BandagedTouchControl createTouchControl()
511 f404152d Leszek Koltunski
    {
512 7ee8337b leszek
    return new BandagedTouchControl( getObjectRatio() , mScreen.getFOV(), mObject );
513 6f3af598 Leszek Koltunski
    }
514 d0ad3964 Leszek Koltunski
515
///////////////////////////////////////////////////////////////////////////////////////////////////
516
517
  public void distortedException(Exception ex)
518
    {
519
    android.util.Log.e("BandagedCreator", "unexpected exception: "+ex.getMessage() );
520
    }
521
522
///////////////////////////////////////////////////////////////////////////////////////////////////
523
524
  public InputStream localFile(int fileID)
525
    {
526
    return mResources.openRawResource(fileID);
527
    }
528
529
///////////////////////////////////////////////////////////////////////////////////////////////////
530
531
  public void logMessage(String message)
532
    {
533
    android.util.Log.e("BandagedCreator", message );
534
    }
535 9530f6b0 Leszek Koltunski
}