Project

General

Profile

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

magiccube / src / main / java / org / distorted / object / RubikObject.java @ e844c116

1
///////////////////////////////////////////////////////////////////////////////////////////////////
2
// Copyright 2020 Leszek Koltunski                                                               //
3
//                                                                                               //
4
// This file is part of Magic Cube.                                                              //
5
//                                                                                               //
6
// Magic Cube 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
// Magic Cube 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 Magic Cube.  If not, see <http://www.gnu.org/licenses/>.                           //
18
///////////////////////////////////////////////////////////////////////////////////////////////////
19

    
20
package org.distorted.object;
21

    
22
import android.content.SharedPreferences;
23
import android.graphics.Bitmap;
24
import android.graphics.Canvas;
25
import android.graphics.Paint;
26

    
27
import org.distorted.library.effect.Effect;
28
import org.distorted.library.effect.MatrixEffectQuaternion;
29
import org.distorted.library.effect.MatrixEffectScale;
30
import org.distorted.library.effect.VertexEffectSink;
31
import org.distorted.library.main.DistortedEffects;
32
import org.distorted.library.main.DistortedNode;
33
import org.distorted.library.main.DistortedTexture;
34
import org.distorted.library.mesh.MeshBase;
35
import org.distorted.library.mesh.MeshRectangles;
36
import org.distorted.library.message.EffectListener;
37
import org.distorted.library.type.Dynamic1D;
38
import org.distorted.library.type.Static1D;
39
import org.distorted.library.type.Static3D;
40
import org.distorted.library.type.Static4D;
41

    
42
import static org.distorted.magic.RubikRenderer.NODE_FBO_SIZE;
43

    
44
///////////////////////////////////////////////////////////////////////////////////////////////////
45

    
46
public abstract class RubikObject extends DistortedNode
47
  {
48
  static final int TEXTURE_HEIGHT = 128;
49
  static final float OBJECT_SCREEN_RATIO = 0.5f;
50
  final float[] LEGAL_QUATS;
51
  final Static3D[] ROTATION_AXIS;
52

    
53
  private static final int POST_ROTATION_MILLISEC = 500;
54
  private final int NUM_CUBITS;
55
  private int mRotRow;
56
  private int mRotAxis;
57
  private Static3D mScale, mNodeScale;
58
  private Static4D mQuatAccumulated;
59
  private Cubit[] mCubits;
60

    
61
  float mStart, mStep;
62
  int mSize;
63

    
64
  Static1D mRotationAngleStatic, mRotationAngleMiddle, mRotationAngleFinal;
65
  DistortedTexture mTexture;
66

    
67
  VertexEffectSink mSinkEffect;
68
  MatrixEffectScale mScaleEffect;
69
  MatrixEffectQuaternion mQuatCEffect;
70
  MatrixEffectQuaternion mQuatAEffect;
71

    
72
///////////////////////////////////////////////////////////////////////////////////////////////////
73

    
74
  RubikObject(int size, Static4D quatCur, Static4D quatAcc, DistortedTexture nodeTexture, MeshRectangles nodeMesh, DistortedEffects nodeEffects)
75
    {
76
    super(nodeTexture,nodeEffects,nodeMesh);
77

    
78
    resizeFBO(NODE_FBO_SIZE, NODE_FBO_SIZE);
79

    
80
    Static3D[] positions = getCubitPositions(size);
81

    
82
    LEGAL_QUATS = getLegalQuats();
83
    NUM_CUBITS  = positions.length;
84
    ROTATION_AXIS = getRotationAxis();
85

    
86
    mSize = size;
87

    
88
    computeStartAndStep(positions);
89

    
90
    mRotationAngleStatic = new Static1D(0);
91
    mRotationAngleMiddle = new Static1D(0);
92
    mRotationAngleFinal  = new Static1D(0);
93

    
94
    mScale    = new Static3D(1,1,1);
95
    mNodeScale= new Static3D(1,1,1);
96

    
97
    mQuatAccumulated = quatAcc;
98

    
99
    Static3D center = new Static3D(0,0,0);
100
    Static4D region = new Static4D(0,0,0,0.72f);
101

    
102
    mSinkEffect = new VertexEffectSink( new Static1D(getSinkStrength()), center, region );
103
    mScaleEffect = new MatrixEffectScale(mScale);
104
    mQuatCEffect = new MatrixEffectQuaternion(quatCur, center);
105
    mQuatAEffect = new MatrixEffectQuaternion(quatAcc, center);
106

    
107
    MatrixEffectScale nodeScaleEffect = new MatrixEffectScale(mNodeScale);
108
    nodeEffects.apply(nodeScaleEffect);
109

    
110
    mCubits = new Cubit[NUM_CUBITS];
111
    mTexture = new DistortedTexture();
112

    
113
    int vertices = (int)(24.0f/mSize + 2.0f);
114

    
115
    for(int i=0; i<NUM_CUBITS; i++)
116
      {
117
      MeshBase cubitMesh = createCubitMesh(vertices);
118
      mCubits[i] = new Cubit(this,cubitMesh,positions[i]);
119
      textureCubitMesh(cubitMesh,i);
120

    
121
      attach(mCubits[i].mNode);
122
      }
123
    }
124

    
125
///////////////////////////////////////////////////////////////////////////////////////////////////
126

    
127
  private void textureCubitMesh(MeshBase mesh, int cubit)
128
    {
129
    boolean belongs;
130
    final int numFaces = getNumFaces();
131
    final Static4D[] maps = new Static4D[numFaces];
132
    final float ratio = 1.0f/(numFaces+1);
133

    
134
    if( 2*ROTATION_AXIS.length == numFaces )
135
      {
136
      for(int i=0; i<numFaces; i++)
137
        {
138
        belongs = belongsToRotation(cubit, i/2, i%2==0 ? mSize-1:0 );
139
        maps[i] = new Static4D( (belongs?i:6)*ratio, 0.0f, ratio, 1.0f);
140
        }
141
      }
142
    else if( ROTATION_AXIS.length == numFaces )
143
      {
144
      for(int i=0; i<numFaces; i++)
145
        {
146
        belongs = belongsToRotation(cubit, i, mSize-1 );
147
        maps[i] = new Static4D( (belongs?i:6)*ratio, 0.0f, ratio, 1.0f);
148
        }
149
      }
150

    
151
    mesh.setTextureMap(maps);
152
    }
153

    
154
///////////////////////////////////////////////////////////////////////////////////////////////////
155

    
156
  private void computeStartAndStep(Static3D[] pos)
157
    {
158
    float min = Float.MAX_VALUE;
159
    float max = Float.MIN_VALUE;
160
    float axisX = ROTATION_AXIS[0].get0();
161
    float axisY = ROTATION_AXIS[0].get1();
162
    float axisZ = ROTATION_AXIS[0].get2();
163
    float tmp;
164

    
165
    for(int i=0; i<NUM_CUBITS; i++)
166
      {
167
      tmp = pos[i].get0()*axisX + pos[i].get1()*axisY + pos[i].get2()*axisZ;
168
      if( tmp<min ) min=tmp;
169
      if( tmp>max ) max=tmp;
170
      }
171

    
172
    mStart = min;
173
    mStep  = (max-min+1.0f)/mSize;
174
    }
175

    
176
///////////////////////////////////////////////////////////////////////////////////////////////////
177

    
178
  private boolean belongsToRotation( int cubit, int axis, int row)
179
    {
180
    return mCubits[cubit].mRotationRow[axis]==row;
181
    }
182

    
183
///////////////////////////////////////////////////////////////////////////////////////////////////
184

    
185
  private void resetRotationAngle(Dynamic1D rotationAngle)
186
    {
187
    rotationAngle.setDuration(POST_ROTATION_MILLISEC);
188
    rotationAngle.resetToBeginning();
189
    rotationAngle.removeAll();
190
    rotationAngle.add(mRotationAngleStatic);
191
    rotationAngle.add(mRotationAngleMiddle);
192
    rotationAngle.add(mRotationAngleFinal);
193
    }
194

    
195
///////////////////////////////////////////////////////////////////////////////////////////////////
196

    
197
  private float getSinkStrength()
198
    {
199
    switch(mSize)
200
      {
201
      case 1 : return 1.1f;
202
      case 2 : return 1.5f;
203
      case 3 : return 1.8f;
204
      case 4 : return 2.0f;
205
      default: return 3.0f - 4.0f/mSize;
206
      }
207
    }
208

    
209
///////////////////////////////////////////////////////////////////////////////////////////////////
210
// the getFaceColors + final black in a horizontal strip.
211

    
212
  public void createTexture()
213
    {
214
    Bitmap bitmap;
215

    
216
    final int numColors = getNumFaces();
217

    
218
    Paint paint = new Paint();
219
    bitmap = Bitmap.createBitmap( (numColors+1)*TEXTURE_HEIGHT, TEXTURE_HEIGHT, Bitmap.Config.ARGB_8888);
220
    Canvas canvas = new Canvas(bitmap);
221

    
222
    paint.setAntiAlias(true);
223
    paint.setTextAlign(Paint.Align.CENTER);
224
    paint.setStyle(Paint.Style.FILL);
225

    
226
    paint.setColor(0xff000000);
227
    canvas.drawRect(0, 0, (numColors+1)*TEXTURE_HEIGHT, TEXTURE_HEIGHT, paint);
228

    
229
    for(int i=0; i<numColors; i++)
230
      {
231
      createFaceTexture(canvas,paint,i);
232
      }
233

    
234
    mTexture.setTexture(bitmap);
235
    }
236

    
237
///////////////////////////////////////////////////////////////////////////////////////////////////
238

    
239
  public int getSize()
240
    {
241
    return mSize;
242
    }
243

    
244
///////////////////////////////////////////////////////////////////////////////////////////////////
245

    
246
  public void continueRotation(float angleInDegrees)
247
    {
248
    mRotationAngleStatic.set0(angleInDegrees);
249
    }
250

    
251
///////////////////////////////////////////////////////////////////////////////////////////////////
252

    
253
  public Static4D getRotationQuat()
254
      {
255
      return mQuatAccumulated;
256
      }
257

    
258
///////////////////////////////////////////////////////////////////////////////////////////////////
259

    
260
  public void recomputeScaleFactor(int scrWidth, int scrHeight)
261
    {
262
    float factor = scrWidth>scrHeight ? scrHeight : scrWidth;
263
    float scaleFactor = OBJECT_SCREEN_RATIO*NODE_FBO_SIZE/mSize;
264

    
265
    mNodeScale.set(factor,factor,factor);
266
    mScale.set(scaleFactor,scaleFactor,scaleFactor);
267
    }
268

    
269
///////////////////////////////////////////////////////////////////////////////////////////////////
270

    
271
  public void savePreferences(SharedPreferences.Editor editor)
272
    {
273
    for(int i=0; i<NUM_CUBITS; i++) mCubits[i].savePreferences(editor);
274
    }
275

    
276
///////////////////////////////////////////////////////////////////////////////////////////////////
277

    
278
  public void restorePreferences(SharedPreferences preferences)
279
    {
280
    for(int i=0; i<NUM_CUBITS; i++) mCubits[i].restorePreferences(preferences);
281
    }
282

    
283
///////////////////////////////////////////////////////////////////////////////////////////////////
284

    
285
  public long finishRotationNow(EffectListener listener)
286
    {
287
    boolean first = true;
288
    long effectID=0;
289

    
290
    for(int i=0; i<NUM_CUBITS; i++)
291
      {
292
      if( belongsToRotation(i,mRotAxis,mRotRow) )
293
        {
294
        if( first )
295
          {
296
          first=false;
297
          effectID = mCubits[i].finishRotationNow(listener);
298
          }
299
        resetRotationAngle(mCubits[i].mRotationAngle);
300
        }
301
      }
302

    
303
    return effectID;
304
    }
305

    
306
///////////////////////////////////////////////////////////////////////////////////////////////////
307

    
308
  public void releaseResources()
309
    {
310
    mTexture.markForDeletion();
311

    
312
    for(int i=0; i<NUM_CUBITS; i++) mCubits[i].releaseResources();
313
    }
314

    
315
///////////////////////////////////////////////////////////////////////////////////////////////////
316

    
317
  public void apply(Effect effect, int position)
318
    {
319
    for(int i=0; i<NUM_CUBITS; i++) mCubits[i].mEffect.apply(effect, position);
320
    }
321

    
322
///////////////////////////////////////////////////////////////////////////////////////////////////
323

    
324
  public void remove(long effectID)
325
    {
326
    for(int i=0; i<NUM_CUBITS; i++) mCubits[i].mEffect.abortById(effectID);
327
    }
328

    
329
///////////////////////////////////////////////////////////////////////////////////////////////////
330

    
331
  public void solve()
332
    {
333
    for(int i=0; i<NUM_CUBITS; i++) mCubits[i].solve();
334
    }
335

    
336
///////////////////////////////////////////////////////////////////////////////////////////////////
337

    
338
  public boolean isSolved()
339
    {
340
    Static4D q = mCubits[0].mQuatScramble;
341

    
342
    float x = q.get0();
343
    float y = q.get1();
344
    float z = q.get2();
345
    float w = q.get3();
346

    
347
    for(int i=0; i<NUM_CUBITS; i++)
348
      {
349
      q = mCubits[i].mQuatScramble;
350

    
351
      if( q.get0()!=x || q.get1()!=y || q.get2()!=z || q.get3()!=w ) return false;
352
      }
353

    
354
    return true;
355
    }
356

    
357
///////////////////////////////////////////////////////////////////////////////////////////////////
358

    
359
  public void beginNewRotation(int axis, int row )
360
    {
361
    mRotAxis = axis;
362
    mRotRow  = row;
363

    
364
    mRotationAngleStatic.set0(0.0f);
365

    
366
    for(int i=0; i<NUM_CUBITS; i++)
367
      if( belongsToRotation(i,mRotAxis,mRotRow) )
368
        {
369
        mCubits[i].beginNewRotation(axis);
370
        }
371
     }
372

    
373
///////////////////////////////////////////////////////////////////////////////////////////////////
374

    
375
  public long addNewRotation( int axis, int row, int angle, long durationMillis, EffectListener listener )
376
     {
377
     long effectID=0;
378
     boolean first = true;
379

    
380
     mRotAxis = axis;
381
     mRotRow  = row;
382

    
383
     mRotationAngleStatic.set0(0.0f);
384

    
385
     for(int i=0; i<NUM_CUBITS; i++)
386
       if( belongsToRotation(i,mRotAxis,mRotRow) )
387
         {
388
         mCubits[i].addNewRotation(axis,durationMillis,angle);
389

    
390
         if( first )
391
           {
392
           first = false;
393
           effectID = mCubits[i].setUpCallback(listener);
394
           }
395
         }
396

    
397
     return effectID;
398
     }
399

    
400
///////////////////////////////////////////////////////////////////////////////////////////////////
401

    
402
  public void removeRotationNow()
403
     {
404
     boolean first = true;
405
     Static4D quat = null;
406

    
407
     for(int i=0; i<NUM_CUBITS; i++)
408
       if( belongsToRotation(i,mRotAxis,mRotRow) )
409
         {
410
         if( first )
411
           {
412
           first = false;
413
           quat = mCubits[i].returnRotationQuat(mRotAxis);
414
           }
415

    
416
         mCubits[i].removeRotationNow(quat);
417
         }
418

    
419
     mRotationAngleStatic.set0(0);
420
     }
421

    
422
///////////////////////////////////////////////////////////////////////////////////////////////////
423

    
424
  public int getNumAxis()
425
    {
426
    return ROTATION_AXIS.length;
427
    }
428

    
429
///////////////////////////////////////////////////////////////////////////////////////////////////
430

    
431
  abstract Static3D[] getCubitPositions(int size);
432
  abstract float[] getLegalQuats();
433
  abstract int getNumFaces();
434
  abstract void createFaceTexture(Canvas canvas, Paint paint, int face);
435
  abstract MeshBase createCubitMesh(int vertices);
436
  abstract Static3D[] getRotationAxis();
437
  public abstract int getBasicAngle();
438
  }
(4-4/7)