Project

General

Profile

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

distorted-objectlib / src / main / java / org / distorted / objectlib / objects / TwistyDino6.java @ 8f5116ec

1
///////////////////////////////////////////////////////////////////////////////////////////////////
2
// Copyright 2020 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.objectlib.objects;
11

    
12
import org.distorted.library.type.Static3D;
13
import org.distorted.library.type.Static4D;
14

    
15
import org.distorted.objectlib.metadata.Metadata;
16
import org.distorted.objectlib.main.InitAssets;
17
import org.distorted.objectlib.metadata.ListObjects;
18

    
19
///////////////////////////////////////////////////////////////////////////////////////////////////
20

    
21
public class TwistyDino6 extends TwistyDino
22
{
23
  public TwistyDino6(int iconMode, Static4D quat, Static3D move, float scale, Metadata meta, InitAssets asset)
24
    {
25
    super(iconMode, quat, move, scale, meta, asset);
26
    }
27

    
28
///////////////////////////////////////////////////////////////////////////////////////////////////
29

    
30
  public int[][] getScrambleEdges()
31
    {
32
    if( mEdges==null )
33
      {
34
      mEdges = new int[][]
35
        {
36
          { 0,8,1,8, 4,1,5,1, 6,7,7,7, 10,2,11,2, 12,6,13,6, 16,3,17,3, 18,5,19,5, 22,4,23,4 },  // 0
37
          {                            10,2,11,2,            16,3,17,3, 18,5,19,5            },  // 1
38
          {          4,1,5,1,                     12,6,13,6,                       22,4,23,4 },  // 2
39
          {          4,1,5,1, 6,7,7,7,                                             22,4,23,4 },  // 3
40
          { 0,8,1,8,                   10,2,11,2,            16,3,17,3                       },  // 4
41
          {          4,1,5,1, 6,7,7,7,            12,6,13,6                                  },  // 5
42
          { 0,8,1,8,                   10,2,11,2,                       18,5,19,5            },  // 6
43
          { 0,8,1,8,                                         16,3,17,3, 18,5,19,5            },  // 7
44
          {                   6,7,7,7,            12,6,13,6,                       22,4,23,4 },  // 8
45
        };
46
      }
47

    
48
    return mEdges;
49
    }
50

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

    
53
  public String getShortName()
54
    {
55
    return ListObjects.DINO_3.name();
56
    }
57

    
58
///////////////////////////////////////////////////////////////////////////////////////////////////
59

    
60
  public String[][] getTutorials()
61
    {
62
    return new String[][]{
63
                          {"gb","puTJZqFBQwo","Dino Skewb Cube Tutorial","Bearded Cubing"},
64
                          {"es","6o1Yo5iCxvI","Resolver Cubo Dino","Cuby"},
65
                          {"ru","tWDrCtIv1_U","Как собрать Дино Куб","Алексей Ярыгин"},
66
                          {"fr","hNkpte7Mesc","Comment résoudre le Dino Cube","Valentino Cube"},
67
                          {"de","RqJLI6_C9JA","Dino Cube Tutorial","GerCubing"},
68
                          {"pl","o05DYu8UMio","Dino Cube TUTORIAL PL","MrUk"},
69
                          {"br","jAwjAF8dpOM","Como resolver o Dino Cube","Rafael Cinoto"},
70
                          {"kr","imbrqGPSXWQ","(엑스큐브)완전 정복하기!","초등취미생활"},
71
                          {"vn","GrcZ_Ct2iYI","Tutorial N.7 - Dino","Duy Thích Rubik"},
72
                          {"tw","YsXEQseQ_0c","恐龍魔方 教學","不正常魔術方塊研究中心"},
73
                         };
74
    }
75
}
(19-19/59)