Project

General

Profile

Download (16.1 KB) Statistics
| Branch: | Revision:

distorted-objectlib / src / main / java / org / distorted / objectlib / objects / TwistyMirror.java @ 5d09301e

1 29b82486 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
2
// Copyright 2019 Leszek Koltunski                                                               //
3
//                                                                                               //
4
// This file is part of Magic Cube.                                                              //
5
//                                                                                               //
6 6133be67 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 29b82486 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
9
10
package org.distorted.objectlib.objects;
11
12 0c5d8bf7 Leszek Koltunski
import static org.distorted.objectlib.touchcontrol.TouchControl.TC_CHANGING_MIRROR;
13 c9c71c3f Leszek Koltunski
import static org.distorted.objectlib.touchcontrol.TouchControl.TYPE_NOT_SPLIT;
14 29b82486 Leszek Koltunski
15 82eb152a Leszek Koltunski
import java.io.InputStream;
16 29b82486 Leszek Koltunski
17
import org.distorted.library.type.Static3D;
18
import org.distorted.library.type.Static4D;
19
20 3ee1d662 Leszek Koltunski
import org.distorted.objectlib.helpers.ObjectFaceShape;
21 1d581993 Leszek Koltunski
import org.distorted.objectlib.helpers.ObjectSignature;
22 a8295031 Leszek Koltunski
import org.distorted.objectlib.main.InitData;
23 8005e762 Leszek Koltunski
import org.distorted.objectlib.main.ObjectType;
24 198c5bf0 Leszek Koltunski
import org.distorted.objectlib.helpers.ObjectShape;
25 10b7e306 Leszek Koltunski
import org.distorted.objectlib.scrambling.ScrambleState;
26 386af988 Leszek Koltunski
import org.distorted.objectlib.main.ShapeHexahedron;
27 4c9ca251 Leszek Koltunski
import org.distorted.objectlib.touchcontrol.TouchControlHexahedron;
28 29b82486 Leszek Koltunski
29
///////////////////////////////////////////////////////////////////////////////////////////////////
30
31 386af988 Leszek Koltunski
public class TwistyMirror extends ShapeHexahedron
32 29b82486 Leszek Koltunski
{
33
  static final Static3D[] ROT_AXIS = new Static3D[]
34
         {
35
           new Static3D(1,0,0),
36
           new Static3D(0,1,0),
37
           new Static3D(0,0,1)
38
         };
39
40
  private static final int[] FACE_COLORS = new int[] { COLOR_WHITE };
41
  private static final float DX = 0.10f;
42
  private static final float DY = 0.25f;
43
  private static final float DZ = 0.40f;
44
45
  private ScrambleState[] mStates;
46
  private float[][] mCuts;
47 beee90ab Leszek Koltunski
  private int[][] mBasicAngle;
48 29b82486 Leszek Koltunski
  private float[][] mPositions;
49
50
///////////////////////////////////////////////////////////////////////////////////////////////////
51
52 a8295031 Leszek Koltunski
  public TwistyMirror(InitData data, int meshState, int iconMode, Static4D quat, Static3D move, float scale, InputStream stream)
53 29b82486 Leszek Koltunski
    {
54 a8295031 Leszek Koltunski
    super(data, meshState, iconMode, data.getNumLayers()[0], quat, move, scale, stream);
55 29b82486 Leszek Koltunski
    }
56
57 253e440f Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
58
59
  @Override
60
  public int getInternalColor()
61
    {
62
    return 0xff333333;
63
    }
64
65 ed0988c0 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
66
67
  @Override
68
  public int getColor(int face)
69
    {
70
    return FACE_COLORS[face];
71
    }
72
73
///////////////////////////////////////////////////////////////////////////////////////////////////
74
75
  @Override
76
  public int getNumFaceColors()
77
    {
78
    return 1;
79
    }
80
81 29b82486 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
82
83 f9a81f52 Leszek Koltunski
  public ScrambleState[] getScrambleStates()
84 29b82486 Leszek Koltunski
    {
85
    if( mStates==null )
86
      {
87 a57e6870 Leszek Koltunski
      int[] numLayers = getNumLayers();
88 29b82486 Leszek Koltunski
      int[][] m = new int[16][];
89 a57e6870 Leszek Koltunski
      for(int i=1; i<16; i++) m[i] = createEdges(numLayers[0],i);
90 29b82486 Leszek Koltunski
91
      mStates = new ScrambleState[]
92
        {
93
        new ScrambleState( new int[][] { m[ 1], m[ 2], m[ 3] } ),  // 0
94
        new ScrambleState( new int[][] {  null, m[ 4], m[ 5] } ),  // x
95
        new ScrambleState( new int[][] { m[ 6],  null, m[ 7] } ),  // y
96
        new ScrambleState( new int[][] { m[ 8], m[ 8],  null } ),  // z
97
        new ScrambleState( new int[][] { m[10],  null, m[ 7] } ),  // xy
98
        new ScrambleState( new int[][] { m[11], m[ 9],  null } ),  // xz
99
        new ScrambleState( new int[][] {  null, m[12], m[ 5] } ),  // yx
100
        new ScrambleState( new int[][] { m[ 8], m[13],  null } ),  // yz
101
        new ScrambleState( new int[][] {  null, m[ 4], m[14] } ),  // zx
102
        new ScrambleState( new int[][] { m[ 6],  null, m[15] } ),  // zy
103
        new ScrambleState( new int[][] {  null,  null, m[ 5] } ),  // xyx
104
        new ScrambleState( new int[][] {  null, m[ 4],  null } ),  // xzx
105
        new ScrambleState( new int[][] {  null,  null, m[ 7] } ),  // yxy
106
        new ScrambleState( new int[][] { m[ 6],  null,  null } ),  // yzy
107
        new ScrambleState( new int[][] {  null, m[ 9],  null } ),  // zxz
108
        new ScrambleState( new int[][] { m[ 8],  null,  null } ),  // zyz
109
        };
110
      }
111
112
    return mStates;
113
    }
114
115
///////////////////////////////////////////////////////////////////////////////////////////////////
116
117
  private int[] createEdges(int size, int vertex)
118
    {
119
    int[] ret = new int[9*size];
120
121
    for(int l=0; l<size; l++)
122
      {
123
      ret[9*l  ] = l;
124
      ret[9*l+1] =-1;
125
      ret[9*l+2] = vertex;
126
      ret[9*l+3] = l;
127
      ret[9*l+4] = 1;
128
      ret[9*l+5] = vertex;
129
      ret[9*l+6] = l;
130
      ret[9*l+7] = 2;
131
      ret[9*l+8] = vertex;
132
      }
133
134
    return ret;
135
    }
136
137
///////////////////////////////////////////////////////////////////////////////////////////////////
138
139
  private int getRow(int cubit, int numLayers, int dim)
140
    {
141
    return (int)(mPositions[cubit][dim] + 0.5f*(numLayers-1));
142
    }
143
144 d0e6cf7f Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
145
146
  public float[][] getCubitPositions(int[] numLayers)
147
    {
148
    if( mPositions==null )
149
      {
150
      int numL = numLayers[0];
151 05cb5de6 Leszek Koltunski
      int numCubits = getNumCubitVariants(numLayers);
152 d0e6cf7f Leszek Koltunski
      mPositions = new float[numCubits][];
153
154
      float diff = 0.5f*(numL-1);
155
      int currentPosition = 0;
156
157
      for(int x = 0; x<numL; x++)
158
        for(int y = 0; y<numL; y++)
159
          for(int z = 0; z<numL; z++)
160
            if( x==0 || x==numL-1 || y==0 || y==numL-1 || z==0 || z==numL-1 )
161
              {
162
              mPositions[currentPosition++] = new float[] {x-diff,y-diff,z-diff};
163
              }
164
      }
165
166
    return mPositions;
167
    }
168
169
///////////////////////////////////////////////////////////////////////////////////////////////////
170
171
  public Static4D getCubitQuats(int cubit, int[] numLayers)
172
    {
173 1597769c Leszek Koltunski
    return mObjectQuats[0];
174 d0e6cf7f Leszek Koltunski
    }
175
176 29b82486 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
177
178 e30c522a Leszek Koltunski
  public ObjectShape getObjectShape(int variant)
179 29b82486 Leszek Koltunski
    {
180 3ee1d662 Leszek Koltunski
    int numL = getNumLayers()[0];
181 e30c522a Leszek Koltunski
    int xrow = getRow(variant,numL,0);  // cubit == variant
182
    int yrow = getRow(variant,numL,1);
183
    int zrow = getRow(variant,numL,2);
184 29b82486 Leszek Koltunski
185 a57e6870 Leszek Koltunski
    float XL = -0.5f + (xrow==     0 ? DX : 0);
186
    float XR = +0.5f + (xrow==numL-1 ? DX : 0);
187
    float YL = -0.5f - (yrow==     0 ? DY : 0);
188
    float YR = +0.5f - (yrow==numL-1 ? DY : 0);
189
    float ZL = -0.5f - (zrow==     0 ? DZ : 0);
190
    float ZR = +0.5f - (zrow==numL-1 ? DZ : 0);
191 29b82486 Leszek Koltunski
192 4e9f2df5 Leszek Koltunski
    float[][] vertices =
193 29b82486 Leszek Koltunski
          {
194
              { XR, YR, ZR },
195
              { XR, YR, ZL },
196
              { XR, YL, ZR },
197
              { XR, YL, ZL },
198
              { XL, YR, ZR },
199
              { XL, YR, ZL },
200
              { XL, YL, ZR },
201
              { XL, YL, ZL },
202
          };
203
204 4e9f2df5 Leszek Koltunski
    int[][] indices =
205 29b82486 Leszek Koltunski
          {
206
              {2,3,1,0},
207
              {7,6,4,5},
208
              {4,0,1,5},
209
              {7,3,2,6},
210
              {6,2,0,4},
211
              {3,7,5,1}
212
          };
213
214 59a971c1 Leszek Koltunski
    return new ObjectShape(vertices, indices);
215 3ee1d662 Leszek Koltunski
    }
216
217
///////////////////////////////////////////////////////////////////////////////////////////////////
218
219
  public ObjectFaceShape getObjectFaceShape(int variant)
220
    {
221
    int extraI, extraV, num, numL = getNumLayers()[0];
222 3bf19410 Leszek Koltunski
    float height = isInIconMode() ? 0.001f : 0.045f;
223 3ee1d662 Leszek Koltunski
224
    switch(numL)
225
      {
226 3bf19410 Leszek Koltunski
      case 2 : num = 6; extraI = 2; extraV = 2; break;
227
      case 3 : num = 5; extraI = 2; extraV = 2; break;
228
      case 4 : num = 5; extraI = 0; extraV = 0; break;
229
      default: num = 4; extraI = 0; extraV = 0; break;
230 3ee1d662 Leszek Koltunski
      }
231
232
    float[][] bands     = { {height,35,0.5f,0.7f,num,extraI,extraV} };
233 4c9ca251 Leszek Koltunski
    int[] bandIndices   = { 0,0,0,0,0,0 };
234 3ee1d662 Leszek Koltunski
    float[][] corners   = { {0.036f,0.12f} };
235
    int[] cornerIndices = { 0,0,0,0,0,0,0,0 };
236
    float[][] centers   = { {0.0f, 0.0f, 0.0f} };
237
    int[] centerIndices = { 0,0,0,0,0,0,0,0 };
238 29b82486 Leszek Koltunski
239 3ee1d662 Leszek Koltunski
    return new ObjectFaceShape(bands,bandIndices,corners,cornerIndices,centers,centerIndices,null);
240 29b82486 Leszek Koltunski
    }
241
242
///////////////////////////////////////////////////////////////////////////////////////////////////
243
244 e30c522a Leszek Koltunski
  public int getNumCubitVariants(int[] numLayers)
245 29b82486 Leszek Koltunski
    {
246 a57e6870 Leszek Koltunski
    int numL = numLayers[0];
247 05cb5de6 Leszek Koltunski
    return numL>1 ? 6*numL*numL - 12*numL + 8 : 1;
248 29b82486 Leszek Koltunski
    }
249
250
///////////////////////////////////////////////////////////////////////////////////////////////////
251
252 e30c522a Leszek Koltunski
  public int getCubitVariant(int cubit, int[] numLayers)
253 29b82486 Leszek Koltunski
    {
254
    return cubit;
255
    }
256
257
///////////////////////////////////////////////////////////////////////////////////////////////////
258
259 7bbfc84f Leszek Koltunski
  public float[][] getCuts(int[] numLayers)
260 29b82486 Leszek Koltunski
    {
261
    if( mCuts==null )
262
      {
263 a57e6870 Leszek Koltunski
      int numL = numLayers[0];
264
      mCuts = new float[3][numL-1];
265 29b82486 Leszek Koltunski
266 a57e6870 Leszek Koltunski
      for(int i=0; i<numL-1; i++)
267 29b82486 Leszek Koltunski
        {
268 a57e6870 Leszek Koltunski
        float cut = (2-numL)*0.5f + i;
269 29b82486 Leszek Koltunski
        mCuts[0][i] = cut;
270
        mCuts[1][i] = cut;
271
        mCuts[2][i] = cut;
272
        }
273
      }
274
275
    return mCuts;
276
    }
277
278
///////////////////////////////////////////////////////////////////////////////////////////////////
279
280 59c20632 Leszek Koltunski
  public boolean[][] getLayerRotatable(int[] numLayers)
281 29b82486 Leszek Koltunski
    {
282 05cb5de6 Leszek Koltunski
    int num = numLayers[0];
283
    boolean[] tmp = new boolean[num];
284
    for(int i=0; i<num; i++) tmp[i] = true;
285
    return new boolean[][] { tmp,tmp,tmp };
286 29b82486 Leszek Koltunski
    }
287
288
///////////////////////////////////////////////////////////////////////////////////////////////////
289
290 11fa413d Leszek Koltunski
  public int getTouchControlType()
291 59c20632 Leszek Koltunski
    {
292 0c5d8bf7 Leszek Koltunski
    return TC_CHANGING_MIRROR;
293 59c20632 Leszek Koltunski
    }
294
295
///////////////////////////////////////////////////////////////////////////////////////////////////
296
297 11fa413d Leszek Koltunski
  public int getTouchControlSplit()
298 59c20632 Leszek Koltunski
    {
299
    return TYPE_NOT_SPLIT;
300
    }
301
302
///////////////////////////////////////////////////////////////////////////////////////////////////
303
304
  public int[][][] getEnabled()
305
    {
306 82904e62 Leszek Koltunski
    return null;
307 59c20632 Leszek Koltunski
    }
308
309
///////////////////////////////////////////////////////////////////////////////////////////////////
310
311
  public float[] getDist3D(int[] numLayers)
312
    {
313 4c9ca251 Leszek Koltunski
    int N = numLayers[0];
314
    return new float[] { 0.5f+DX/N, 0.5f-DX/N, 0.5f-DY/N, 0.5f+DY/N, 0.5f-DZ/N, 0.5f+DZ/N };
315
    }
316
317
///////////////////////////////////////////////////////////////////////////////////////////////////
318
319
  public Static3D[] getFaceAxis()
320
    {
321
    return TouchControlHexahedron.FACE_AXIS;
322 59c20632 Leszek Koltunski
    }
323
324 b0720f49 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
325
326 d53fb890 Leszek Koltunski
  public float getStickerRadius()
327 b0720f49 Leszek Koltunski
    {
328
    return 0.10f;
329
    }
330
331
///////////////////////////////////////////////////////////////////////////////////////////////////
332
333 d53fb890 Leszek Koltunski
  public float getStickerStroke()
334 b0720f49 Leszek Koltunski
    {
335
    float stroke = 0.08f;
336
337 3bf19410 Leszek Koltunski
    if( isInIconMode() )
338 b0720f49 Leszek Koltunski
      {
339
      int[] numLayers = getNumLayers();
340
      stroke*= ( numLayers[0]==2 ? 1.8f : 2.0f );
341
      }
342
343
    return stroke;
344
    }
345
346 00f4980d Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
347
348 d53fb890 Leszek Koltunski
  public float[][] getStickerAngles()
349 00f4980d Leszek Koltunski
    {
350
    return null;
351
    }
352
353 29b82486 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
354
// PUBLIC API
355
356
  public Static3D[] getRotationAxis()
357
    {
358
    return ROT_AXIS;
359
    }
360
361
///////////////////////////////////////////////////////////////////////////////////////////////////
362
363 beee90ab Leszek Koltunski
  public int[][] getBasicAngles()
364 29b82486 Leszek Koltunski
    {
365 beee90ab Leszek Koltunski
    if( mBasicAngle==null )
366
      {
367
      int num = getNumLayers()[0];
368
      int[] tmp = new int[num];
369
      for(int i=0; i<num; i++) tmp[i] = 4;
370
      mBasicAngle = new int[][] { tmp,tmp,tmp };
371
      }
372
373 29b82486 Leszek Koltunski
    return mBasicAngle;
374
    }
375
376 61aa85e4 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
377
378 5f54927b Leszek Koltunski
  public String getShortName()
379 61aa85e4 Leszek Koltunski
    {
380 5f54927b Leszek Koltunski
    switch(getNumLayers()[0])
381
      {
382
      case 2: return ObjectType.MIRR_2.name();
383
      case 3: return ObjectType.MIRR_3.name();
384
      case 4: return ObjectType.MIRR_4.name();
385
      }
386
387
    return ObjectType.MIRR_2.name();
388
    }
389
390
///////////////////////////////////////////////////////////////////////////////////////////////////
391
392 1d581993 Leszek Koltunski
  public ObjectSignature getSignature()
393 5f54927b Leszek Koltunski
    {
394
    switch(getNumLayers()[0])
395 61aa85e4 Leszek Koltunski
      {
396 1d581993 Leszek Koltunski
      case 2: return new ObjectSignature(ObjectType.MIRR_2);
397
      case 3: return new ObjectSignature(ObjectType.MIRR_3);
398
      case 4: return new ObjectSignature(ObjectType.MIRR_4);
399 61aa85e4 Leszek Koltunski
      }
400
401 1d581993 Leszek Koltunski
    return null;
402 61aa85e4 Leszek Koltunski
    }
403
404 29b82486 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
405
406 e26eb4e7 Leszek Koltunski
  public String getObjectName()
407 29b82486 Leszek Koltunski
    {
408 e26eb4e7 Leszek Koltunski
    switch(getNumLayers()[0])
409 29b82486 Leszek Koltunski
      {
410 e26eb4e7 Leszek Koltunski
      case 2: return "Pocket Mirror";
411
      case 3: return "Mirror Cube";
412 05cb5de6 Leszek Koltunski
      case 4: return "Master Mirror Blocks";
413 29b82486 Leszek Koltunski
      }
414 1d581993 Leszek Koltunski
    return null;
415 29b82486 Leszek Koltunski
    }
416
417
///////////////////////////////////////////////////////////////////////////////////////////////////
418
419 e26eb4e7 Leszek Koltunski
  public String getInventor()
420 29b82486 Leszek Koltunski
    {
421 e26eb4e7 Leszek Koltunski
    switch(getNumLayers()[0])
422 29b82486 Leszek Koltunski
      {
423 e26eb4e7 Leszek Koltunski
      case 2: return "Thomas de Bruin";
424
      case 3: return "Hidetoshi Takeji";
425 05cb5de6 Leszek Koltunski
      case 4: return "Traiphum Prungtaengkit";
426 29b82486 Leszek Koltunski
      }
427 1d581993 Leszek Koltunski
    return null;
428 29b82486 Leszek Koltunski
    }
429
430 59c20632 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
431
432 e26eb4e7 Leszek Koltunski
  public int getYearOfInvention()
433 59c20632 Leszek Koltunski
    {
434 e26eb4e7 Leszek Koltunski
    switch(getNumLayers()[0])
435 59c20632 Leszek Koltunski
      {
436
      case 2: return 2007;
437
      case 3: return 2006;
438 05cb5de6 Leszek Koltunski
      case 4: return 2014;
439 59c20632 Leszek Koltunski
      }
440
    return 2006;
441
    }
442
443 29b82486 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
444
445 e26eb4e7 Leszek Koltunski
  public int getComplexity()
446 29b82486 Leszek Koltunski
    {
447 e26eb4e7 Leszek Koltunski
    switch(getNumLayers()[0])
448 29b82486 Leszek Koltunski
      {
449 b4223a92 Leszek Koltunski
      case 2: return 1;
450
      case 3: return 2;
451 05cb5de6 Leszek Koltunski
      case 4: return 3;
452 29b82486 Leszek Koltunski
      }
453 05cb5de6 Leszek Koltunski
    return 2;
454 29b82486 Leszek Koltunski
    }
455 052e0362 Leszek Koltunski
456
///////////////////////////////////////////////////////////////////////////////////////////////////
457
458
  public String[][] getTutorials()
459
    {
460
    int[] numLayers = getNumLayers();
461
462
    switch(numLayers[0])
463
      {
464
      case 2: return new String[][] {
465
                          {"gb","rSH-ZEqTmxs","Solve 2x2 Mirror Blocks","King of Cubing"},
466
                          {"es","Ipz-Ajpd4Fg","Como resolver el mirror 2x2","RUBI CUBI"},
467
                          {"ru","rGqZq0bjZlM","Как собрать Зеркальный кубик 2x2","maggam1000"},
468
                          {"de","fFMf1G7MYmA","2x2 Mirror Cube Anfängerlösung","rofrisch"},
469
                          {"pl","C6B_ZT6xilw","Jak ułożyć kostkę mirror 2x2","Lisek Smolisek"},
470
                          {"kr","9S4QTkyNm4Y","2x2 Mirror Cube","큐브놀이터"},
471 a399e91b Leszek Koltunski
                          {"vn","6zENEJlv5gA","Hướng Dẫn Giải Mirror 2x2","Rubik Cube"},
472 052e0362 Leszek Koltunski
                         };
473
      case 3: return new String[][] {
474
                          {"gb","YkzXIWnqbSw","How to Solve the Mirror Cube","Z3"},
475
                          {"es","ZTkunMo51l0","Resolver cubo de Rubik MIRROR","Cuby"},
476
                          {"ru","1QPAD3Q4r78","Как собрать Зеркальный Куб","Алексей Ярыгин"},
477
                          {"fr","tlFLE2UvjFo","Tutoriel: le rubik's cube mirroir","Le Cubiste"},
478
                          {"de","Qf2EadLLiZo","Mirror Cube lösen","Pezcraft"},
479
                          {"pl","r1-MzAL3TxE","Jak ułożyć kostkę mirror","Cube Masters"},
480
                          {"br","HWGGpIKRT_I","Como resolver o Mirror Blocks","Pedro Filho"},
481
                          {"kr","p3OJSbWopqg","미러블럭 해법","듀나메스 큐브 해법연구소"},
482 a399e91b Leszek Koltunski
                          {"vn","F3Gh6JxW1VI","Tutorial N.15 - Mirror Block","Duy Thích Rubik"},
483 052e0362 Leszek Koltunski
                         };
484
      case 4: return new String[][] {
485
                          {"gb","6gyQ5qBK8GU","4x4 Mirror: Introduction","SuperAntoniovivaldi"},
486
                          {"gb","jvKLW7vxKx4","4x4 Mirror: Layer by Layer","SuperAntoniovivaldi"},
487
                          {"gb","efHeHrXFNTQ","4x4 Mirror: Reduction","SuperAntoniovivaldi"},
488
                          {"gb","bKHQn_ARNZ8","4x4 Mirror: Parity Free Solve","SuperAntoniovivaldi"},
489
                          {"gb","Us1Dlr0PyEA","4x4 Mirror: Superparity","SuperAntoniovivaldi"},
490
                          {"es","tN2D3j0o-wk","Como hacer un mirror 4x4x4","JGOM Designer"},
491 a399e91b Leszek Koltunski
                          {"vn","ZGkVOQ3FCOg","Tutorial N.137 - Mirror 4x4x4","Duy Thích Rubik"},
492 052e0362 Leszek Koltunski
                         };
493
      }
494
    return null;
495
    }
496 29b82486 Leszek Koltunski
}