Project

General

Profile

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

magiccube / src / main / java / org / distorted / objects / TwistyUltimate.java @ e1dc3366

1
///////////////////////////////////////////////////////////////////////////////////////////////////
2
// Copyright 2019 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.objects;
21

    
22
import android.content.res.Resources;
23

    
24
import org.distorted.helpers.ObjectShape;
25
import org.distorted.helpers.ObjectSticker;
26
import org.distorted.helpers.ScrambleState;
27
import org.distorted.library.main.DistortedEffects;
28
import org.distorted.library.main.DistortedTexture;
29
import org.distorted.library.mesh.MeshSquare;
30
import org.distorted.library.type.Static3D;
31
import org.distorted.library.type.Static4D;
32
import org.distorted.main.R;
33

    
34
import java.util.Random;
35

    
36
import static org.distorted.objects.TwistyMinx.MINX_DBLUE;
37
import static org.distorted.objects.TwistyMinx.MINX_DGREEN;
38
import static org.distorted.objects.TwistyMinx.MINX_DRED;
39
import static org.distorted.objects.TwistyMinx.MINX_DYELLOW;
40
import static org.distorted.objects.TwistyMinx.MINX_GREY;
41
import static org.distorted.objects.TwistyMinx.MINX_LBLUE;
42
import static org.distorted.objects.TwistyMinx.MINX_LGREEN;
43
import static org.distorted.objects.TwistyMinx.MINX_ORANGE;
44
import static org.distorted.objects.TwistyMinx.MINX_PINK;
45
import static org.distorted.objects.TwistyMinx.MINX_SANDY;
46
import static org.distorted.objects.TwistyMinx.MINX_VIOLET;
47
import static org.distorted.objects.TwistyMinx.MINX_WHITE;
48

    
49
///////////////////////////////////////////////////////////////////////////////////////////////////
50

    
51
class TwistyUltimate extends TwistyObject
52
{
53
  private static final float A = (float)Math.sqrt(21*SQ5+47);
54
  private static final float B = SQ6*(5*SQ5+11)/(6*A);
55
  private static final float C = SQ6*(  SQ5+ 2)/(3*A);
56
  private static final float D = SQ3/3;
57
  private static final float E = (SQ5+1)/4;
58
  private static final float F = (SQ5-1)/4;
59
  private static final float G = (SQ5+3)/4;
60

    
61
  static final Static3D[] ROT_AXIS = new Static3D[]
62
         {
63
           new Static3D( B,0,C ),
64
           new Static3D( C,B,0 ),
65
           new Static3D(-D,D,D ),
66
           new Static3D( 0,C,-B)
67
         };
68

    
69
  private static final int[] BASIC_ANGLE = new int[] { 3,3,3,3 };
70

    
71
  private static final int[] FACE_COLORS = new int[]
72
         {
73
           MINX_LGREEN, MINX_PINK   , MINX_SANDY , MINX_LBLUE,
74
           MINX_ORANGE, MINX_VIOLET , MINX_DGREEN, MINX_DRED ,
75
           MINX_DBLUE , MINX_DYELLOW, MINX_WHITE , MINX_GREY
76
         };
77

    
78
  private static final Static4D[] QUATS = new Static4D[]
79
         {
80
           new Static4D( 0.0f, 0.0f, 0.0f, 1.0f ),
81
           new Static4D(-0.5f, 0.5f, 0.5f, 0.5f ),
82
           new Static4D( 0.5f,-0.5f,-0.5f, 0.5f ),
83
           new Static4D( 0.0f,    F,   -E, 0.5f ),
84
           new Static4D( 0.0f,   -F,    E, 0.5f ),
85
           new Static4D(    E, 0.0f,    F, 0.5f ),
86
           new Static4D(   -E, 0.0f,   -F, 0.5f ),
87
           new Static4D(    F,    E, 0.0f, 0.5f ),
88
           new Static4D(   -F,   -E, 0.0f, 0.5f ),
89
           new Static4D(    E,    F,-0.5f, 0.0f ),
90
           new Static4D( 0.5f,   -E,    F, 0.0f ),
91
           new Static4D(    F, 0.5f,    E, 0.0f )
92
         };
93

    
94
  // Colors of the faces of cubits.
95
  private static final int[][] mFaceMap = new int[][]
96
         {
97
           { 25,24,35, 36,36,36,36,36 },
98
           { 27,28,29, 36,36,36,36,36 },
99
           { 31,26,30, 36,36,36,36,36 },
100
           { 32,34,33, 36,36,36,36,36 },
101

    
102
           { 31,32,25, 36,36,36,36,36 },
103
           { 33,28,24, 36,36,36,36,36 },
104
           { 26,35,27, 36,36,36,36,36 },
105
           { 30,29,34, 36,36,36,36,36 },
106

    
107
           {  8, 0,13,21, 36,36,36,36 },
108
           {  1, 2,19,23, 36,36,36,36 },
109
           {  4,11,12,15, 36,36,36,36 },
110
           {  3, 6,14,17, 36,36,36,36 },
111
           {  5, 9,22,16, 36,36,36,36 },
112
           {  7,10,20,18, 36,36,36,36 }
113
         };
114

    
115
  // centers of the 14 cubits.
116
  static final float[][] CENTERS = new float[][]
117
         {
118
           { 0.0f,-0.5f,    G },
119
           {    E,   -E,   -E },
120
           {   -G, 0.0f,-0.5f },
121
           { 0.5f,    G, 0.0f },
122

    
123
           {   -E,    E,    E },
124
           {    G, 0.0f, 0.5f },
125
           {-0.5f,   -G, 0.0f },
126
           { 0.0f, 0.5f,   -G },
127

    
128
           {        E/2, (E+0.5f)/2,    (E+G)/2 },
129
           {   -(E+G)/2,       -E/2, (E+0.5f)/2 },
130
           { (E+0.5f)/2,   -(E+G)/2,        E/2 },
131
           {       -E/2,-(E+0.5f)/2,   -(E+G)/2 },
132
           {    (E+G)/2,        E/2,-(E+0.5f)/2 },
133
           {-(E+0.5f)/2,    (E+G)/2,       -E/2 }
134
         };
135

    
136
  private static final double[][] VERTICES_SMALL_LEFT = new double[][]
137
         {
138
            {         0.000,         0.000,         0.000},
139
            {       - 0.250,-SQ5/8 - 0.125,-SQ5/8 - 0.375},
140
            { SQ5/8 + 0.125,-SQ5/8 - 0.375,       + 0.250},
141
            { SQ5/8 + 0.375,       + 0.250,-SQ5/8 - 0.125},
142
            { SQ5/4 + 0.250,-SQ5/4 - 0.250,-SQ5/4 - 0.250},
143
            { SQ5/8 - 0.125,       + 0.250,-SQ5/8 - 0.125},
144
            {       - 0.250,-SQ5/8 - 0.125,-SQ5/8 + 0.125},
145
            { SQ5/8 + 0.125,-SQ5/8 + 0.125,       + 0.250}
146
         };
147

    
148
  private static final int[][] VERT_INDEXES_SMALL_LEFT  = new int[][]
149
         {
150
           {6,0,5,1},   // counterclockwise!
151
           {0,7,3,5},
152
           {0,6,2,7},
153
           {1,5,3,4},
154
           {3,7,2,4},
155
           {2,6,1,4},
156
         };
157

    
158
  private static final double[][] VERTICES_SMALL_RIGHT = new double[][]
159
         {
160
           { 0.0       ,  0.0      , 0.0       },
161
           { -0.5*E    , 0.5*E+0.25, -0.25     },
162
           {-0.25      , -E/2      , (-2*E-1)/4},
163
           { 0.5*E+0.25, 0.25      , -E/2      },
164
           { 0.0       , 0.5       , -E-0.5    },
165
           { 0.0       , 0.5       , 0.0       },
166
           { -0.5*E    ,-0.5*E+0.25, -0.25     },
167
           {  0.5*E    ,-0.5*E+0.25, -0.25     }
168
         };
169

    
170
  private static final int[][] VERT_INDEXES_SMALL_RIGHT = new int[][]
171
         {
172
           {6,0,5,1},   // counterclockwise!
173
           {0,7,3,5},
174
           {0,6,2,7},
175
           {4,3,5,1},
176
           {4,2,7,3},
177
           {4,1,6,2},
178
         };
179

    
180
  private static final double[][] VERTICES_BIG = new double[][]
181
         {
182
           {-E/2     ,-E/2+0.25,     0.25},
183
           { E/2     , E/2-0.25,    -0.25},
184
           {-E       ,     0.00,     0.00},
185
           {     0.25, E/2     ,-E/2-0.25},
186
           {-E/2     ,-E/2-0.25,     0.25},
187
           { E/2+0.25,    -0.25,-E/2     },
188
           {-E       ,    -0.50,     0.00},
189
           {     0.50,     0.00,-E       },
190
           {-E  +0.25, E/2     ,-E/2-0.25},
191
           {     0.25,-E/2-0.50,-E/2+0.25},
192
           {-E/2     ,-E/2-0.25,-E  -0.25}
193
         };
194

    
195
  private static final int[][] VERT_INDEXES_BIG = new int[][]
196
         {
197
           {0,1,3,8,2},   // counterclockwise!
198
           {0,4,9,5,1},
199
           { 0,2,6,4},
200
           { 1,5,7,3},
201
           {10,9,4,6},
202
           {10,9,5,7},
203
           {10,8,3,7},
204
           {10,8,2,6}
205
         };
206

    
207
  private static final int[] QUAT_INDEX = new int[]
208
         {
209
           0,6,1,2,0,4,6,5,0,1,4,9,5,2
210
         };
211

    
212
  private static final float[][] STICKERS = new float[][]
213
         {
214
           { -0.14400357f, -0.47894150f, 0.50000000f,-0.011045523f, 0.37700626f, 0.36749030f,-0.26699730f, 0.36749026f, -0.46600536f, -0.24499352f }, // Big cubit 1st
215
           {  0.36327127f,  0.26393202f,-0.36327127f, 0.500000000f,-0.36327127f,-0.26393202f, 0.36327127f,-0.50000000f },                             // Big cubit 2nd
216
           { -0.29389262f, -0.50000000f, 0.29389262f,-0.309017000f, 0.29389262f, 0.30901700f,-0.29389262f, 0.50000000f },                             // Small cubit 1st
217
         };
218

    
219
  private static final ObjectSticker[] mStickers;
220

    
221
  static
222
    {
223
    mStickers = new ObjectSticker[STICKERS.length];
224
    final float R1 = 0.08f;
225
    final float R2 = 0.13f;
226
    final float R3 = 0.11f;
227
    final float[][] radii  = { {R1,R1,R1,R1,R1},{R2,R2,R2,R2},{R3,R3,R3,R3} };
228
    final float[] strokes = { 0.07f, 0.09f, 0.08f };
229

    
230
    for(int s=0; s<STICKERS.length; s++)
231
      {
232
      mStickers[s] = new ObjectSticker(STICKERS[s],null,radii[s],strokes[s]);
233
      }
234
    }
235

    
236
  private int mCurrState;
237
  private int mIndexExcluded;
238
  private final ScrambleState[] mStates;
239
  private int[][] mScrambleTable;
240
  private int[] mNumOccurences;
241

    
242
///////////////////////////////////////////////////////////////////////////////////////////////////
243

    
244
  TwistyUltimate(int size, Static4D quat, DistortedTexture texture,
245
                 MeshSquare mesh, DistortedEffects effects, int[][] moves, Resources res, int scrWidth)
246
    {
247
    super(size, size, quat, texture, mesh, effects, moves, ObjectList.ULTI, res, scrWidth);
248

    
249
    int[] tmp = {0,-1,0, 0,1,0, 1,-1,0, 1,1,0 };
250

    
251
    mStates = new ScrambleState[]
252
      {
253
      new ScrambleState( new int[][] {tmp,tmp,tmp,tmp} )
254
      };
255
    }
256

    
257
///////////////////////////////////////////////////////////////////////////////////////////////////
258

    
259
  int[] getSolvedQuats(int cubit, int numLayers)
260
    {
261
    int status = retCubitSolvedStatus(cubit,numLayers);
262
    return status<0 ? null : buildSolvedQuats(MovementUltimate.FACE_AXIS[status],QUATS);
263
    }
264

    
265
///////////////////////////////////////////////////////////////////////////////////////////////////
266

    
267
  ObjectShape getObjectShape(int cubit, int numLayers)
268
    {
269
    int variant = getCubitVariant(cubit,numLayers);
270

    
271
    if( variant==0 )
272
      {
273
      float[][] bands     = new float[][] { {0.03f,17,0.5f,0.2f,5,2,2}, {0.01f, 1,0.5f,0.2f,5,2,2} };
274
      int[] bandIndices   = new int[] { 0,0,0,1,1,1 };
275
      float[][] corners   = new float[][] {  { 0.013f, 0.08f } };
276
      int[] cornerIndices = new int[] { 0, 0, 0, 0,-1, 0, 0, 0 };
277
      float[][] centers   = new float[][] { { 0.0f,-0.5f, -(SQ5+3)/4 } };
278
      int[] centerIndices = new int[] { 0,0,0,0,0,0,0,0 };
279
      return new ObjectShape(VERTICES_SMALL_RIGHT,VERT_INDEXES_SMALL_RIGHT,bands,bandIndices,corners,cornerIndices,centers,centerIndices,getNumCubitFaces(), null);
280
      }
281
    else if( variant==1 )
282
      {
283
      float[][] bands     = new float[][] { {0.03f,17,0.5f,0.2f,5,2,2}, {0.01f, 1,0.5f,0.2f,5,2,2} };
284
      int[] bandIndices   = new int[] { 0,0,0,1,1,1 };
285
      float[][] corners   = new float[][] {  { 0.013f, 0.08f } };
286
      int[] cornerIndices = new int[] { 0, 0, 0, 0,-1, 0, 0, 0 };
287
      float[][] centers   = new float[][] { { 0.0f,-0.5f, -(SQ5+3)/4 } };
288
      int[] centerIndices = new int[] { 0,0,0,0,0,0,0,0 };
289
      return new ObjectShape(VERTICES_SMALL_LEFT,VERT_INDEXES_SMALL_LEFT,bands,bandIndices,corners,cornerIndices,centers,centerIndices,getNumCubitFaces(), null);
290
      }
291
    else
292
      {
293
      float[][] bands     = new float[][] { {0.04f,17,0.5f,0.2f,5,2,2}, {0.03f,17,0.5f,0.2f,5,2,2}, {0.01f, 1,0.5f,0.2f,5,2,2} };
294
      int[] bandIndices   = new int[] { 0,0,1,1,2,2,2,2 };
295
      float[][] corners   = new float[][] { { 0.013f, 0.08f } };
296
      int[] cornerIndices = new int[] { 0,0,0,0,0,0,0,0,0,0,-1 };
297
      float[][] centers   = new float[][] { { -(SQ5+1)/8, 0.25f, -(SQ5+5)/8 } };
298
      int[] centerIndices = new int[] { 0,0,0,0,0,0,0,0,0,0,0 };
299
      return new ObjectShape(VERTICES_BIG,VERT_INDEXES_BIG,bands,bandIndices,corners,cornerIndices,centers,centerIndices,getNumCubitFaces(), null);
300
      }
301
    }
302

    
303
///////////////////////////////////////////////////////////////////////////////////////////////////
304

    
305
  Static4D getQuat(int cubit, int numLayers)
306
    {
307
    return QUATS[QUAT_INDEX[cubit]];
308
    }
309

    
310
///////////////////////////////////////////////////////////////////////////////////////////////////
311

    
312
  int getNumCubitVariants(int numLayers)
313
    {
314
    return 3;
315
    }
316

    
317
///////////////////////////////////////////////////////////////////////////////////////////////////
318

    
319
  int getCubitVariant(int cubit, int numLayers)
320
    {
321
    return cubit<4 ? 0 : (cubit<8 ? 1:2);
322
    }
323

    
324
///////////////////////////////////////////////////////////////////////////////////////////////////
325

    
326
  float[][] getCubitPositions(int numLayers)
327
    {
328
    return CENTERS;
329
    }
330

    
331
///////////////////////////////////////////////////////////////////////////////////////////////////
332

    
333
  int getFaceColor(int cubit, int cubitface, int size)
334
    {
335
    return mFaceMap[cubit][cubitface];
336
    }
337

    
338
///////////////////////////////////////////////////////////////////////////////////////////////////
339

    
340
  int getColor(int face)
341
    {
342
    return FACE_COLORS[face];
343
    }
344

    
345
///////////////////////////////////////////////////////////////////////////////////////////////////
346

    
347
  ObjectSticker retSticker(int face)
348
    {
349
    return mStickers[face/NUM_FACES];
350
    }
351

    
352
///////////////////////////////////////////////////////////////////////////////////////////////////
353

    
354
  float returnMultiplier()
355
    {
356
    return 1.0f;
357
    }
358

    
359
///////////////////////////////////////////////////////////////////////////////////////////////////
360

    
361
  Static4D[] getQuats()
362
    {
363
    return QUATS;
364
    }
365

    
366
///////////////////////////////////////////////////////////////////////////////////////////////////
367

    
368
  int getSolvedFunctionIndex()
369
    {
370
    return 0;
371
    }
372

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

    
375
  boolean shouldResetTextureMaps()
376
    {
377
    return false;
378
    }
379

    
380
///////////////////////////////////////////////////////////////////////////////////////////////////
381

    
382
  int getNumFaces()
383
    {
384
    return FACE_COLORS.length;
385
    }
386

    
387
///////////////////////////////////////////////////////////////////////////////////////////////////
388

    
389
  float[][] getCuts(int numLayers)
390
    {
391
    float[] cut = new float[] {0.0f};
392
    return new float[][] { cut,cut,cut,cut };
393
    }
394

    
395
///////////////////////////////////////////////////////////////////////////////////////////////////
396

    
397
  int getNumStickerTypes(int numLayers)
398
    {
399
    return STICKERS.length;
400
    }
401

    
402
///////////////////////////////////////////////////////////////////////////////////////////////////
403

    
404
  int getNumCubitFaces()
405
    {
406
    return 8;
407
    }
408

    
409
///////////////////////////////////////////////////////////////////////////////////////////////////
410

    
411
  float getScreenRatio()
412
    {
413
    return 0.67f;
414
    }
415

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

    
418
  private void initializeScrambling()
419
    {
420
    int numLayers = getNumLayers();
421

    
422
    if( mScrambleTable ==null )
423
      {
424
      mScrambleTable = new int[NUM_AXIS][numLayers];
425
      }
426
    if( mNumOccurences ==null )
427
      {
428
      int max=0;
429

    
430
      for (ScrambleState mState : mStates)
431
        {
432
        int tmp = mState.getTotal(-1);
433
        if (max < tmp) max = tmp;
434
        }
435

    
436
      mNumOccurences = new int[max];
437
      }
438

    
439
    for(int i=0; i<NUM_AXIS; i++)
440
      for(int j=0; j<numLayers; j++) mScrambleTable[i][j] = 0;
441
    }
442

    
443
///////////////////////////////////////////////////////////////////////////////////////////////////
444
// PUBLIC API
445

    
446
  public void randomizeNewScramble(int[][] scramble, Random rnd, int curr, int totalScrambles)
447
    {
448
    if( curr==0 )
449
      {
450
      mCurrState     = 0;
451
      mIndexExcluded =-1;
452
      initializeScrambling();
453
      }
454

    
455
    int[] info= mStates[mCurrState].getRandom(rnd, mIndexExcluded, mScrambleTable, mNumOccurences);
456

    
457
    scramble[curr][0] = info[0];
458
    scramble[curr][1] = info[1];
459
    scramble[curr][2] = info[2];
460

    
461
    mCurrState     = info[3];
462
    mIndexExcluded = info[0];
463
    }
464

    
465
///////////////////////////////////////////////////////////////////////////////////////////////////
466

    
467
  public Static3D[] getRotationAxis()
468
    {
469
    return ROT_AXIS;
470
    }
471

    
472
///////////////////////////////////////////////////////////////////////////////////////////////////
473

    
474
  public int[] getBasicAngle()
475
    {
476
    return BASIC_ANGLE;
477
    }
478

    
479
///////////////////////////////////////////////////////////////////////////////////////////////////
480

    
481
  public int getObjectName(int numLayers)
482
    {
483
    return R.string.ulti2;
484
    }
485

    
486
///////////////////////////////////////////////////////////////////////////////////////////////////
487

    
488
  public int getInventor(int numLayers)
489
    {
490
    return R.string.ulti2_inventor;
491
    }
492

    
493
///////////////////////////////////////////////////////////////////////////////////////////////////
494

    
495
  public int getComplexity(int numLayers)
496
    {
497
    return 6;
498
    }
499
}
(41-41/41)