Project

General

Profile

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

magiccube / src / main / java / org / distorted / bandaged / BandagedCreatorRenderer.java @ 64020e50

1
///////////////////////////////////////////////////////////////////////////////////////////////////
2
// Copyright 2022 Leszek Koltunski                                                               //
3
//                                                                                               //
4
// This file is part of Magic Cube.                                                              //
5
//                                                                                               //
6
// 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
///////////////////////////////////////////////////////////////////////////////////////////////////
9

    
10
package org.distorted.bandaged;
11

    
12
import java.io.File;
13
import java.io.FileNotFoundException;
14
import java.io.IOException;
15
import java.io.InputStream;
16
import java.nio.ByteBuffer;
17
import java.nio.ByteOrder;
18

    
19
import javax.microedition.khronos.egl.EGLConfig;
20
import javax.microedition.khronos.opengles.GL10;
21

    
22
import android.app.Activity;
23
import android.content.res.Resources;
24
import android.opengl.GLES31;
25
import android.opengl.GLSurfaceView;
26
import android.widget.Toast;
27

    
28
import org.distorted.dialogs.RubikDialogBandagedSave;
29
import org.distorted.library.effect.EffectType;
30
import org.distorted.library.effect.FragmentEffectBrightness;
31
import org.distorted.library.effect.PostprocessEffectBorder;
32
import org.distorted.library.main.DistortedEffects;
33
import org.distorted.library.main.DistortedFramebuffer;
34
import org.distorted.library.main.DistortedLibrary;
35
import org.distorted.library.main.DistortedNode;
36
import org.distorted.library.main.DistortedScreen;
37
import org.distorted.library.main.InternalOutputSurface;
38
import org.distorted.library.mesh.MeshBase;
39
import org.distorted.library.type.Static1D;
40
import org.distorted.library.type.Static3D;
41
import org.distorted.library.type.Static4D;
42
import org.distorted.objectlib.bandaged.BandagedObject;
43
//import org.distorted.objectlib.bandaged.BandagedObjectCuboid;
44
import org.distorted.objectlib.bandaged.BandagedObjectCuboid;
45
import org.distorted.objectlib.bandaged.BandagedObjectPyraminx;
46
import org.distorted.objectlib.json.JsonWriter;
47
import org.distorted.objectlib.main.TwistyObject;
48

    
49
import org.json.JSONException;
50

    
51
///////////////////////////////////////////////////////////////////////////////////////////////////
52

    
53
public class BandagedCreatorRenderer implements GLSurfaceView.Renderer, DistortedLibrary.LibraryUser
54
{
55
   public static final float BRIGHTNESS = 0.333f;
56
   private static final int RESET_DURATION = 1000;
57
   private static final float MAX_SIZE_CHANGE = 1.70f;
58
   private static final float MIN_SIZE_CHANGE = 0.50f;
59

    
60
   private final BandagedCreatorView mView;
61
   private final Resources mResources;
62
   private final DistortedScreen mScreen;
63
   private final Static3D mScale;
64
   private final Static4D mQuatT, mQuatA;
65
   private final BandagedObject mObject;
66
   private final float mInitRatio;
67

    
68
   private boolean mInitialPhase;
69
   private long mStartTime;
70
   private float mQuatX, mQuatY, mQuatZ, mQuatW;
71
   private boolean mResetQuats, mSetQuatT, mResettingObject, mConnectingCubits, mCreatingCubits, mRescaling;
72
   private int mIndex1, mIndex2;
73
   private int mSaveIcon;
74
   private DistortedFramebuffer mFramebuffer;
75
   private String mPath;
76
   private boolean mCubitsCreated;
77
   private int mWidth, mHeight;
78
   private float mScaleValue, mObjectScreenRatio;
79

    
80
///////////////////////////////////////////////////////////////////////////////////////////////////
81

    
82
   BandagedCreatorRenderer(BandagedCreatorView v)
83
     {
84
     mView = v;
85
     mResources = v.getResources();
86

    
87
     mQuatT = new Static4D(0,0,0,1);
88
     mQuatA = new Static4D(-0.25189602f,0.3546389f,0.009657208f,0.90038127f);
89

    
90
     mResetQuats       = false;
91
     mSetQuatT         = false;
92
     mResettingObject  = false;
93
     mConnectingCubits = false;
94
     mCubitsCreated    = false;
95
     mCreatingCubits   = false;
96
     mRescaling        = false;
97

    
98
     mSaveIcon = -1;
99

    
100
     mScreen = new DistortedScreen();
101
     mScreen.glClearColor(BRIGHTNESS, BRIGHTNESS, BRIGHTNESS, 1.0f);
102
     mScale = new Static3D(1,1,1);
103
     mObject = new BandagedObjectPyraminx(mScreen);
104

    
105
     mInitRatio = mObject.getScreenRatio();
106
     mObjectScreenRatio= mInitRatio;
107
     }
108

    
109
///////////////////////////////////////////////////////////////////////////////////////////////////
110

    
111
   @Override
112
   public void onDrawFrame(GL10 glUnused)
113
     {
114
     long time = System.currentTimeMillis();
115
     mScreen.render(time);
116

    
117
     if( mSetQuatT )
118
       {
119
       mSetQuatT = false;
120
       mQuatT.set(mQuatX,mQuatY,mQuatZ,mQuatW);
121
       }
122

    
123
     if( mResetQuats )
124
       {
125
       mResetQuats = false;
126

    
127
       float qx = mQuatT.get0();
128
       float qy = mQuatT.get1();
129
       float qz = mQuatT.get2();
130
       float qw = mQuatT.get3();
131

    
132
       float rx = mQuatA.get0();
133
       float ry = mQuatA.get1();
134
       float rz = mQuatA.get2();
135
       float rw = mQuatA.get3();
136

    
137
       float tx = rw*qx - rz*qy + ry*qz + rx*qw;
138
       float ty = rw*qy + rz*qx + ry*qw - rx*qz;
139
       float tz = rw*qz + rz*qw - ry*qx + rx*qy;
140
       float tw = rw*qw - rz*qz - ry*qy - rx*qx;
141

    
142
       mQuatT.set(0f, 0f, 0f, 1f);
143
       mQuatA.set(tx, ty, tz, tw);
144
       }
145

    
146
     if( mResettingObject )
147
       {
148
       boolean done = continueResetting(time);
149
       if( done ) mResettingObject = false;
150
       }
151

    
152
     if( mSaveIcon>=0 )
153
       {
154
       renderIcon(time); // for some reason we need to call render() twice here, otherwise the
155
       mSaveIcon++;      // icon turns out black. Probably some problem with binding the texture.
156
       }
157
     if( mSaveIcon>=2 )
158
       {
159
       saveIcon();
160
       mSaveIcon = -1;
161
       }
162

    
163
     if( mConnectingCubits )
164
       {
165
       mObject.tryConnectingCubits(mIndex1,mIndex2,mScaleValue);
166
       mConnectingCubits = false;
167
       }
168

    
169
     if( mCreatingCubits )
170
       {
171
       rescaleObject();
172

    
173
       if( mCubitsCreated )
174
         {
175
         mObject.createCubits(mQuatT,mQuatA,mScale);
176
         float[] dist = mObject.getDist3D();
177
         BandagedCreatorTouchControl control = mView.getTouchControl();
178
         control.setDist3D(dist);
179
         mScreen.detachAll();
180
         mView.resetCubits();
181
         mObject.attachCubits(mScaleValue);
182
         }
183

    
184
       mCreatingCubits = false;
185
       }
186

    
187
     if( mRescaling )
188
       {
189
       rescaleObject();
190
       mObject.scaleCubits(mScaleValue);
191
       BandagedCreatorTouchControl control = mView.getTouchControl();
192
       control.setObjectRatio(mObjectScreenRatio);
193
       mRescaling = false;
194
       }
195
     }
196

    
197
///////////////////////////////////////////////////////////////////////////////////////////////////
198

    
199
   @Override
200
   public void onSurfaceChanged(GL10 glUnused, int width, int height)
201
      {
202
      if( width!=mWidth || height!=mHeight )
203
        {
204
        mWidth = width;
205
        mHeight= height;
206
        rescaleObject();
207
        mScreen.detachAll();
208
        int touched = mView.getTouched();
209
        mObject.attachAndMarkCubits(mScaleValue,touched);
210
        mView.setScreenSize(width,height);
211
        mScreen.resize(width,height);
212
        }
213
      }
214

    
215
///////////////////////////////////////////////////////////////////////////////////////////////////
216

    
217
   @Override
218
   public void onSurfaceCreated(GL10 glUnused, EGLConfig config)
219
      {
220
      DistortedLibrary.setMax(EffectType.VERTEX,0);
221
      MeshBase.setMaxEffComponents(120); // what?
222
      FragmentEffectBrightness.enable();
223
      DistortedLibrary.onSurfaceCreated(this,1);
224
      DistortedLibrary.setCull(true);
225
      mObject.recreateCubits(mQuatT,mQuatA,mScale);
226
      mCubitsCreated = true;
227
      mWidth = 0;
228
      mHeight= 0;
229
      }
230

    
231
///////////////////////////////////////////////////////////////////////////////////////////////////
232

    
233
   public DistortedScreen getScreen()
234
     {
235
     return mScreen;
236
     }
237

    
238
///////////////////////////////////////////////////////////////////////////////////////////////////
239

    
240
   void setConnecting(int index1, int index2)
241
     {
242
     mIndex1 = index1;
243
     mIndex2 = index2;
244
     mConnectingCubits = true;
245
     }
246

    
247
///////////////////////////////////////////////////////////////////////////////////////////////////
248

    
249
   public Static4D getQuatAccu()
250
     {
251
     return mQuatA;
252
     }
253

    
254
///////////////////////////////////////////////////////////////////////////////////////////////////
255

    
256
   public void setQuatTemp(float x, float y, float z, float w)
257
     {
258
     mSetQuatT = false;
259

    
260
     mQuatX = x;
261
     mQuatY = y;
262
     mQuatZ = z;
263
     mQuatW = w;
264

    
265
     mSetQuatT = true;
266
     }
267

    
268
///////////////////////////////////////////////////////////////////////////////////////////////////
269

    
270
   public void resetQuats()
271
     {
272
     mResetQuats = true;
273
     }
274

    
275
///////////////////////////////////////////////////////////////////////////////////////////////////
276

    
277
   public boolean isBusy()
278
     {
279
     return (mResettingObject || mCreatingCubits || mConnectingCubits);
280
     }
281

    
282
///////////////////////////////////////////////////////////////////////////////////////////////////
283

    
284
   public void saveObject()
285
     {
286
     TwistyObject obj = mObject.createObject(TwistyObject.MODE_NORM, 1.0f );
287
     String name = obj.getShortName();
288
     BandagedCreatorActivity act = (BandagedCreatorActivity) mView.getContext();
289

    
290
     if( act.objectDoesntExist(name) && createObjectJson(obj,act) )
291
       {
292
       setupIconCreation(act);
293
       act.addObject(obj.getShortName());
294
       }
295
     }
296

    
297
///////////////////////////////////////////////////////////////////////////////////////////////////
298

    
299
   private boolean createObjectJson(TwistyObject object, Activity act)
300
     {
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
       String json = writer.createObjectString(object,24,0);
309
       writer.write(filename,json);
310
       return true;
311
       }
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

    
323
       return false;
324
       }
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

    
336
       return false;
337
       }
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

    
349
       return false;
350
       }
351
     }
352

    
353
///////////////////////////////////////////////////////////////////////////////////////////////////
354

    
355
   private void setupIconCreation(Activity act)
356
     {
357
     final float R=1.0f;
358
     final int FBO_WIDTH  = (int)(R*720);
359
     final int FBO_HEIGHT = (int)(R*1280);
360
     final float OBJECT_SIZE = R*0.35f;
361

    
362
     TwistyObject obj = mObject.createObject(TwistyObject.MODE_ICON, OBJECT_SIZE );
363
     DistortedEffects effects = obj.getObjectEffects();
364
     DistortedNode node = obj.getNode();
365

    
366
     if( mFramebuffer==null )
367
       {
368
       mFramebuffer = new DistortedFramebuffer(FBO_WIDTH,FBO_HEIGHT,1, InternalOutputSurface.DEPTH_NO_STENCIL);
369
       mFramebuffer.glClearColor(BRIGHTNESS, BRIGHTNESS, BRIGHTNESS, 1.0f);
370
       }
371

    
372
     mFramebuffer.setProjection( mObject.computeProjectionAngle() ,0.1f);
373
     mFramebuffer.detachAll();
374
     mFramebuffer.attach(node);
375

    
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
     final String name = obj.getShortName()+".png";
383
     File file = new File(act.getFilesDir(), name);
384
     String filename = file.getAbsolutePath();
385

    
386
     mSaveIcon = 0;
387
     mPath = filename;
388
     }
389

    
390
///////////////////////////////////////////////////////////////////////////////////////////////////
391

    
392
   private void renderIcon(long time)
393
     {
394
     mFramebuffer.render(time);
395
     }
396

    
397
///////////////////////////////////////////////////////////////////////////////////////////////////
398

    
399
   private void saveIcon()
400
     {
401
     int fW = mFramebuffer.getWidth();
402
     int fH = mFramebuffer.getHeight();
403

    
404
     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
     BandagedCreatorWorkerThread.newBuffer(buf,fW,fH,6,mPath);
411
     GLES31.glBindFramebuffer(GLES31.GL_READ_FRAMEBUFFER, 0);
412

    
413
     mSaveIcon = -1;
414
     }
415

    
416
///////////////////////////////////////////////////////////////////////////////////////////////////
417

    
418
   void mulObjectRatio(float ratio)
419
     {
420
     mObjectScreenRatio *= ratio;
421

    
422
     if( mObjectScreenRatio>MAX_SIZE_CHANGE*mInitRatio) mObjectScreenRatio = MAX_SIZE_CHANGE*mInitRatio;
423
     if( mObjectScreenRatio<MIN_SIZE_CHANGE*mInitRatio) mObjectScreenRatio = MIN_SIZE_CHANGE*mInitRatio;
424

    
425
     mRescaling = true;
426
     }
427

    
428
///////////////////////////////////////////////////////////////////////////////////////////////////
429

    
430
   float getObjectRatio()
431
     {
432
     return mObjectScreenRatio;
433
     }
434

    
435
///////////////////////////////////////////////////////////////////////////////////////////////////
436

    
437
   private void rescaleObject()
438
     {
439
     float size = mObject.getMaxSize();
440
     final float Q = mObjectScreenRatio/size;
441
     mScaleValue = mWidth<mHeight ? Q*mWidth : Q*mHeight;
442
     mScale.set( mScaleValue,mScaleValue,mScaleValue );
443
     }
444

    
445
///////////////////////////////////////////////////////////////////////////////////////////////////
446

    
447
   public void changeObject(int x, int y, int z)
448
     {
449
     if( mObject.tryChangeObject(x,y,z) ) mCreatingCubits = true;
450
     }
451

    
452
///////////////////////////////////////////////////////////////////////////////////////////////////
453

    
454
   public void displaySavingDialog()
455
     {
456
     BandagedCreatorActivity act = (BandagedCreatorActivity)mView.getContext();
457
     RubikDialogBandagedSave saveDiag = new RubikDialogBandagedSave();
458
     saveDiag.show(act.getSupportFragmentManager(), null);
459
     }
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
     float quotient = ((float)diff)/RESET_DURATION;
476

    
477
     if( mInitialPhase && quotient>0.5f )
478
       {
479
       mInitialPhase=false;
480
       mView.resetCubits();
481
       mObject.resetObject(mScaleValue);
482
       }
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

    
491
     return quotient>1.0f;
492
     }
493

    
494
///////////////////////////////////////////////////////////////////////////////////////////////////
495

    
496
  public void touchCubit(int index)
497
    {
498
    mObject.touchCubit(index);
499
    }
500

    
501
///////////////////////////////////////////////////////////////////////////////////////////////////
502

    
503
  public void untouchCubit(int index)
504
    {
505
    mObject.untouchCubit(index);
506
    }
507

    
508
///////////////////////////////////////////////////////////////////////////////////////////////////
509

    
510
  public BandagedCreatorTouchControl createTouchControl()
511
    {
512
    return new BandagedCreatorTouchControl( getObjectRatio() , mScreen.getFOV(), mObject );
513
    }
514

    
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
}
(3-3/12)