Project

General

Profile

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

magiccube / src / main / java / org / distorted / objects / TwistyPyraminx.java @ e9a87113

1 e844c116 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
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 1f9772f3 Leszek Koltunski
package org.distorted.objects;
21 e844c116 Leszek Koltunski
22 ccf9fec5 Leszek Koltunski
import android.content.res.Resources;
23 e844c116 Leszek Koltunski
24 045d8cbd Leszek Koltunski
import org.distorted.helpers.ObjectShape;
25 9c06394a Leszek Koltunski
import org.distorted.helpers.ObjectSticker;
26 bbbfb6af Leszek Koltunski
import org.distorted.helpers.ScrambleState;
27 e844c116 Leszek Koltunski
import org.distorted.library.main.DistortedEffects;
28
import org.distorted.library.main.DistortedTexture;
29 efa8aa48 Leszek Koltunski
import org.distorted.library.mesh.MeshSquare;
30 e844c116 Leszek Koltunski
import org.distorted.library.type.Static3D;
31
import org.distorted.library.type.Static4D;
32 6fd4a72c Leszek Koltunski
import org.distorted.main.R;
33 e844c116 Leszek Koltunski
34
///////////////////////////////////////////////////////////////////////////////////////////////////
35
36 9c2f0c91 Leszek Koltunski
public class TwistyPyraminx extends TwistyObject
37 e844c116 Leszek Koltunski
{
38 ad38d800 Leszek Koltunski
  static final Static3D[] ROT_AXIS = new Static3D[]
39 e844c116 Leszek Koltunski
         {
40 ac940e24 Leszek Koltunski
           new Static3D(     0,-SQ3/3,-SQ6/3),
41
           new Static3D(     0,-SQ3/3,+SQ6/3),
42
           new Static3D(+SQ6/3,+SQ3/3,     0),
43
           new Static3D(-SQ6/3,+SQ3/3,     0),
44 ad38d800 Leszek Koltunski
         };
45
46 e844c116 Leszek Koltunski
  private static final int[] FACE_COLORS = new int[]
47
         {
48 ece1b58d Leszek Koltunski
           COLOR_GREEN , COLOR_YELLOW,
49
           COLOR_BLUE  , COLOR_RED
50 e844c116 Leszek Koltunski
         };
51
52 bbbfb6af Leszek Koltunski
  private ScrambleState[] mStates;
53 48fec01e Leszek Koltunski
  private int[] mBasicAngle;
54
  private Static4D[] mQuats;
55
  private ObjectSticker[] mStickers;
56 e9a87113 Leszek Koltunski
  private Movement mMovement;
57 bbbfb6af Leszek Koltunski
58 e844c116 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
59
60 ac940e24 Leszek Koltunski
  TwistyPyraminx(int size, Static4D quat, DistortedTexture texture, MeshSquare mesh,
61
                 DistortedEffects effects, int[][] moves, Resources res, int scrWidth)
62 e844c116 Leszek Koltunski
    {
63 db875721 Leszek Koltunski
    super(size, size, quat, texture, mesh, effects, moves, ObjectList.PYRA, res, scrWidth);
64 91792184 Leszek Koltunski
    }
65 bbbfb6af Leszek Koltunski
66 91792184 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
67
68
  ScrambleState[] getScrambleStates()
69
    {
70
    if( mStates==null )
71
      {
72
      int numLayers = getNumLayers();
73
      initializeScrambleStates(numLayers);
74
      }
75
76
    return mStates;
77 e844c116 Leszek Koltunski
    }
78
79 48fec01e Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
80
81
  private void initializeQuats()
82
    {
83
    mQuats = new Static4D[]
84
         {
85
         new Static4D(  0.0f,   0.0f,   0.0f,  1.0f),
86
         new Static4D(  0.0f,   1.0f,   0.0f,  0.0f),
87
         new Static4D( SQ2/2,   0.5f,   0.0f,  0.5f),
88
         new Static4D(-SQ2/2,   0.5f,   0.0f,  0.5f),
89
         new Static4D(  0.0f,  -0.5f, -SQ2/2,  0.5f),
90
         new Static4D(  0.0f,  -0.5f,  SQ2/2,  0.5f),
91
         new Static4D( SQ2/2,   0.5f,   0.0f, -0.5f),
92
         new Static4D(-SQ2/2,   0.5f,   0.0f, -0.5f),
93
         new Static4D(  0.0f,  -0.5f, -SQ2/2, -0.5f),
94
         new Static4D(  0.0f,  -0.5f,  SQ2/2, -0.5f),
95
         new Static4D( SQ2/2,   0.0f,  SQ2/2,  0.0f),
96
         new Static4D(-SQ2/2,   0.0f,  SQ2/2,  0.0f)
97
         };
98
    }
99
100 a480ee80 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
101
102 bbbfb6af Leszek Koltunski
  private int[][] generateState(int start, int end)
103 a480ee80 Leszek Koltunski
    {
104 bbbfb6af Leszek Koltunski
    int len = end-start+1;
105
    int[] tmp = new int[6*len];
106
107
    for(int i=0; i<len; i++)
108
      {
109
      tmp[6*i  ] = start;
110
      tmp[6*i+1] = -1;
111
      tmp[6*i+2] = start;
112
      tmp[6*i+3] = start;
113
      tmp[6*i+4] = +1;
114
      tmp[6*i+5] = start;
115
116
      start++;
117
      }
118
119
    return new int[][] {tmp,tmp,tmp,tmp};
120 a480ee80 Leszek Koltunski
    }
121
122 0203be88 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
123
124 bbbfb6af Leszek Koltunski
  private void initializeScrambleStates(int numLayers)
125 0203be88 Leszek Koltunski
    {
126 bbbfb6af Leszek Koltunski
    mStates = new ScrambleState[numLayers];
127 0203be88 Leszek Koltunski
128 bbbfb6af Leszek Koltunski
    for(int i=0; i<numLayers-1; i++)
129 0203be88 Leszek Koltunski
      {
130 bbbfb6af Leszek Koltunski
      mStates[i] = new ScrambleState( generateState(0,numLayers-1-i) );
131 0203be88 Leszek Koltunski
      }
132
133 bbbfb6af Leszek Koltunski
    mStates[numLayers-1] = new ScrambleState( generateState(1,numLayers-2) );
134
    }
135
136
///////////////////////////////////////////////////////////////////////////////////////////////////
137
138
  int[] getSolvedQuats(int cubit, int numLayers)
139
    {
140 48fec01e Leszek Koltunski
    if( mQuats==null ) initializeQuats();
141 bbbfb6af Leszek Koltunski
    int status = retCubitSolvedStatus(cubit,numLayers);
142 48fec01e Leszek Koltunski
    return status<0 ? null : buildSolvedQuats(MovementPyraminx.FACE_AXIS[status],mQuats);
143 0203be88 Leszek Koltunski
    }
144
145 e844c116 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
146
147 e6cf7283 Leszek Koltunski
  private void addTetrahedralLattice(int size, int index, float[][] pos)
148 49f67f9b Leszek Koltunski
    {
149 ac940e24 Leszek Koltunski
    final float DX = 1.0f;
150
    final float DY = SQ2/2;
151
    final float DZ = 1.0f;
152 49f67f9b Leszek Koltunski
153 ac940e24 Leszek Koltunski
    float startX = 0.0f;
154
    float startY =-DY*(size-1)/2;
155
    float startZ = DZ*(size-1)/2;
156 769409d2 Leszek Koltunski
157 ac940e24 Leszek Koltunski
    for(int layer=0; layer<size; layer++)
158 49f67f9b Leszek Koltunski
      {
159 ac940e24 Leszek Koltunski
      float currX = startX;
160
      float currY = startY;
161
162
      for(int x=0; x<layer+1; x++)
163
        {
164
        float currZ = startZ;
165
166
        for(int z=0; z<size-layer; z++)
167
          {
168 e6cf7283 Leszek Koltunski
          pos[index] = new float[] {currX,currY,currZ};
169 ac940e24 Leszek Koltunski
          index++;
170
          currZ -= DZ;
171
          }
172
173
        currX += DX;
174
        }
175
176
      startX-=DX/2;
177
      startY+=DY;
178
      startZ-=DZ/2;
179 49f67f9b Leszek Koltunski
      }
180
    }
181
182
///////////////////////////////////////////////////////////////////////////////////////////////////
183 ac940e24 Leszek Koltunski
// there are (n^3-n)/6 octahedrons and ((n+1)^3 - (n+1))/6 tetrahedrons
184 49f67f9b Leszek Koltunski
185 e6cf7283 Leszek Koltunski
  float[][] getCubitPositions(int size)
186 e844c116 Leszek Koltunski
    {
187 ac940e24 Leszek Koltunski
    int numOcta = (size-1)*size*(size+1)/6;
188
    int numTetra= size*(size+1)*(size+2)/6;
189 e6cf7283 Leszek Koltunski
    float[][] ret = new float[numOcta+numTetra][];
190 49f67f9b Leszek Koltunski
191 ac940e24 Leszek Koltunski
    addTetrahedralLattice(size-1,      0,ret);
192
    addTetrahedralLattice(size  ,numOcta,ret);
193 49f67f9b Leszek Koltunski
194 ac940e24 Leszek Koltunski
    return ret;
195 e844c116 Leszek Koltunski
    }
196
197
///////////////////////////////////////////////////////////////////////////////////////////////////
198
199 10585385 Leszek Koltunski
  Static4D[] getQuats()
200 e844c116 Leszek Koltunski
    {
201 48fec01e Leszek Koltunski
    if( mQuats==null ) initializeQuats();
202
    return mQuats;
203 e844c116 Leszek Koltunski
    }
204
205
///////////////////////////////////////////////////////////////////////////////////////////////////
206
207 abf36986 Leszek Koltunski
  int getNumFaceColors()
208 e844c116 Leszek Koltunski
    {
209
    return FACE_COLORS.length;
210
    }
211
212 169219a7 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
213
214
  int getSolvedFunctionIndex()
215
    {
216
    return 0;
217
    }
218
219 eab9d8f8 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
220
221 a64e07d0 Leszek Koltunski
  int getNumStickerTypes(int numLayers)
222 eab9d8f8 Leszek Koltunski
    {
223 48fec01e Leszek Koltunski
    return 1;
224 eab9d8f8 Leszek Koltunski
    }
225
226 7403cdfa Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
227
228 5da517d3 Leszek Koltunski
  float[][] getCuts(int numLayers)
229 7403cdfa Leszek Koltunski
    {
230 5da517d3 Leszek Koltunski
    float[][] cuts = new float[4][numLayers-1];
231 a97e02b7 Leszek Koltunski
232 5da517d3 Leszek Koltunski
    for(int i=0; i<numLayers-1; i++)
233 a97e02b7 Leszek Koltunski
      {
234 5da517d3 Leszek Koltunski
      float cut = (1.0f+i-numLayers/3.0f)*(SQ6/3);
235 e6734aa9 Leszek Koltunski
      cuts[0][i] = cut;
236
      cuts[1][i] = cut;
237
      cuts[2][i] = cut;
238
      cuts[3][i] = cut;
239 a97e02b7 Leszek Koltunski
      }
240
241
    return cuts;
242 7403cdfa Leszek Koltunski
    }
243
244 8f53e513 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
245
246
  int getNumCubitFaces()
247
    {
248 ac940e24 Leszek Koltunski
    return 8;
249 8f53e513 Leszek Koltunski
    }
250
251 f0fa83ae Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
252
253
  float getScreenRatio()
254
    {
255 48fec01e Leszek Koltunski
    return 0.88f;
256 f0fa83ae Leszek Koltunski
    }
257
258 eaee1ddc Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
259
260
  boolean shouldResetTextureMaps()
261
    {
262
    return false;
263
    }
264
265 31cd7256 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
266
267
  private int getNumOctahedrons(int numLayers)
268
    {
269
    return (numLayers-1)*numLayers*(numLayers+1)/6;
270
    }
271
272 f6d06256 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
273
274 ac940e24 Leszek Koltunski
  private int faceColor(int cubit, int axis)
275 f6d06256 Leszek Koltunski
    {
276 abf36986 Leszek Koltunski
    return CUBITS[cubit].mRotationRow[axis] == 1 ? axis : NUM_TEXTURES;
277 f6d06256 Leszek Koltunski
    }
278
279 f0fa83ae Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
280
281 ac940e24 Leszek Koltunski
  int getFaceColor(int cubit, int cubitface, int size)
282 e844c116 Leszek Koltunski
    {
283 ac940e24 Leszek Koltunski
    if( cubit< (size-1)*size*(size+1)/6 )
284 40ab026e Leszek Koltunski
      {
285 ac940e24 Leszek Koltunski
      switch( cubitface )
286
        {
287
        case 0: return faceColor(cubit,0);
288
        case 2: return faceColor(cubit,1);
289
        case 5: return faceColor(cubit,3);
290
        case 7: return faceColor(cubit,2);
291 abf36986 Leszek Koltunski
        default:return NUM_TEXTURES;
292 ac940e24 Leszek Koltunski
        }
293 40ab026e Leszek Koltunski
      }
294 ac940e24 Leszek Koltunski
    else
295 89a11f7b Leszek Koltunski
      {
296 abf36986 Leszek Koltunski
      return cubitface<NUM_TEXTURES ? faceColor(cubit,cubitface) : NUM_TEXTURES;
297 89a11f7b Leszek Koltunski
      }
298 e844c116 Leszek Koltunski
    }
299
300 045d8cbd Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
301
302
  ObjectShape getObjectShape(int cubit, int numLayers)
303
    {
304
    int variant = getCubitVariant(cubit,numLayers);
305
306
    if( variant==0 )
307
      {
308 48fec01e Leszek Koltunski
      double[][] vertices = new double[][] { { 0.5,0.0,0.5},{ 0.5,0.0,-0.5},{-0.5,0.0,-0.5},{-0.5,0.0,0.5},{ 0.0,SQ2/2,0.0},{ 0.0,-SQ2/2,0.0} };
309
      int[][] vert_indices = new int[][] { {3,0,4},{0,1,4},{1,2,4},{2,3,4},{5,0,3},{5,1,0},{5,2,1},{5,3,2} };
310 045d8cbd Leszek Koltunski
      int N = numLayers==3? 6 : 5;
311
      int E = numLayers==3? 2 : 1;
312
      float[][] bands     = new float[][] { {0.05f,35,0.5f,0.8f,N,E,E} };
313
      int[] bandIndices   = new int[] { 0,0,0,0,0,0,0,0 };
314
      float[][] corners   = new float[][] { {0.04f,0.20f} };
315
      int[] cornerIndices = new int[] { 0,0,0,0,0,0 };
316
      float[][] centers   = new float[][] { {0.0f, 0.0f, 0.0f} };
317
      int[] centerIndices = new int[] { 0,0,0,0,0,0 };
318 48fec01e Leszek Koltunski
      return new ObjectShape(vertices,vert_indices,bands,bandIndices,corners,cornerIndices,centers,centerIndices,getNumCubitFaces(), null);
319 045d8cbd Leszek Koltunski
      }
320
    else
321
      {
322 48fec01e Leszek Koltunski
      double[][] vertices = new double[][] { {-0.5, SQ2/4, 0.0},{ 0.5, SQ2/4, 0.0},{ 0.0,-SQ2/4, 0.5},{ 0.0,-SQ2/4,-0.5} };
323
      int[][] vert_indices = new int[][] { {2,1,0},{3,0,1},{3,2,0},{2,3,1} };
324 045d8cbd Leszek Koltunski
      int N = numLayers==3? 6 : 5;
325
      int E = numLayers==3? 2 : 1;
326
      float[][] bands     = new float[][] { {0.05f,35,0.5f,0.8f,N,E,E} };
327
      int[] bandIndices   = new int[] { 0,0,0,0 };
328
      float[][] corners   = new float[][] { {0.06f,0.15f} };
329
      int[] cornerIndices = new int[] { 0,0,0,0 };
330
      float[][] centers   = new float[][] { {0.0f, 0.0f, 0.0f} };
331
      int[] centerIndices = new int[] { 0,0,0,0 };
332 48fec01e Leszek Koltunski
      return new ObjectShape(vertices,vert_indices,bands,bandIndices,corners,cornerIndices,centers,centerIndices,getNumCubitFaces(), null);
333 045d8cbd Leszek Koltunski
      }
334
    }
335
336
///////////////////////////////////////////////////////////////////////////////////////////////////
337
338 3e605536 Leszek Koltunski
  Static4D getQuat(int cubit, int numLayers)
339 045d8cbd Leszek Koltunski
    {
340 48fec01e Leszek Koltunski
    if( mQuats==null ) initializeQuats();
341
    return mQuats[0];
342 045d8cbd Leszek Koltunski
    }
343
344
///////////////////////////////////////////////////////////////////////////////////////////////////
345
346 3e605536 Leszek Koltunski
  int getNumCubitVariants(int numLayers)
347 045d8cbd Leszek Koltunski
    {
348
    return 2;
349
    }
350
351
///////////////////////////////////////////////////////////////////////////////////////////////////
352
353
  int getCubitVariant(int cubit, int numLayers)
354
    {
355
    return cubit<getNumOctahedrons(numLayers) ? 0:1;
356
    }
357
358 7289fd6c Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
359
360 9c06394a Leszek Koltunski
  int getColor(int face)
361 7289fd6c Leszek Koltunski
    {
362 9c06394a Leszek Koltunski
    return FACE_COLORS[face];
363
    }
364
365
///////////////////////////////////////////////////////////////////////////////////////////////////
366 76c2bd07 Leszek Koltunski
367 9c06394a Leszek Koltunski
  ObjectSticker retSticker(int face)
368
    {
369 48fec01e Leszek Koltunski
    if( mStickers==null )
370
      {
371
      float[][] STICKERS = new float[][] { { -0.4330127f, -0.25f, 0.4330127f, -0.25f, 0.0f, 0.5f } };
372
      final float stroke = 0.08f;
373
      final float radius = 0.06f;
374
      final float[] radii= {radius,radius,radius};
375
      mStickers = new ObjectSticker[STICKERS.length];
376
      mStickers[0] = new ObjectSticker(STICKERS[0],null,radii,stroke);
377
      }
378
379 abf36986 Leszek Koltunski
    return mStickers[face/NUM_FACE_COLORS];
380 7289fd6c Leszek Koltunski
    }
381
382 fb377dae Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
383 7403cdfa Leszek Koltunski
// SQ6/3 = height of the tetrahedron
384 fb377dae Leszek Koltunski
385
  float returnMultiplier()
386
    {
387 d99f3a48 Leszek Koltunski
    return getNumLayers()/(SQ6/3);
388 fb377dae Leszek Koltunski
    }
389
390 7c969a6d Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
391 91792184 Leszek Koltunski
// public API
392 bbbfb6af Leszek Koltunski
393
  public Static3D[] getRotationAxis()
394
    {
395
    return ROT_AXIS;
396
    }
397
398 e9a87113 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
399
400
  public Movement getMovement()
401
    {
402
    if( mMovement==null ) mMovement = new MovementPyraminx();
403
    return mMovement;
404
    }
405
406 bbbfb6af Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
407
408
  public int[] getBasicAngle()
409
    {
410 48fec01e Leszek Koltunski
    if( mBasicAngle ==null ) mBasicAngle = new int[] { 3,3,3,3 };
411
    return mBasicAngle;
412 e46e17fb Leszek Koltunski
    }
413 f0336037 Leszek Koltunski
414 6fd4a72c Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
415
416
  public int getObjectName(int numLayers)
417
    {
418
    switch(numLayers)
419
      {
420
      case 3: return R.string.pyra3;
421
      case 4: return R.string.pyra4;
422
      case 5: return R.string.pyra5;
423
      }
424
    return R.string.pyra3;
425
    }
426
427
///////////////////////////////////////////////////////////////////////////////////////////////////
428
429
  public int getInventor(int numLayers)
430
    {
431
    switch(numLayers)
432
      {
433
      case 3: return R.string.pyra3_inventor;
434
      case 4: return R.string.pyra4_inventor;
435
      case 5: return R.string.pyra5_inventor;
436
      }
437
    return R.string.pyra3_inventor;
438
    }
439
440
///////////////////////////////////////////////////////////////////////////////////////////////////
441
442
  public int getComplexity(int numLayers)
443
    {
444
    switch(numLayers)
445
      {
446
      case 3: return 4;
447
      case 4: return 6;
448
      case 5: return 8;
449
      }
450
    return 4;
451
    }
452 e844c116 Leszek Koltunski
}