Project

General

Profile

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

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

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 static org.distorted.objectlib.touchcontrol.TouchControl.TC_HEXAHEDRON;
13
import static org.distorted.objectlib.touchcontrol.TouchControl.TYPE_SPLIT_CORNER;
14

    
15
import java.io.InputStream;
16

    
17
import org.distorted.library.type.Static3D;
18
import org.distorted.library.type.Static4D;
19

    
20
import org.distorted.objectlib.helpers.ObjectFaceShape;
21
import org.distorted.objectlib.helpers.ObjectShape;
22
import org.distorted.objectlib.main.InitData;
23
import org.distorted.objectlib.scrambling.ScrambleState;
24
import org.distorted.objectlib.main.ShapeHexahedron;
25
import org.distorted.objectlib.touchcontrol.TouchControlHexahedron;
26

    
27
///////////////////////////////////////////////////////////////////////////////////////////////////
28

    
29
abstract class TwistyDino extends ShapeHexahedron
30
{
31
  static final Static3D[] ROT_AXIS = new Static3D[]
32
         {
33
           new Static3D(+SQ3/3,+SQ3/3,+SQ3/3),
34
           new Static3D(+SQ3/3,+SQ3/3,-SQ3/3),
35
           new Static3D(+SQ3/3,-SQ3/3,+SQ3/3),
36
           new Static3D(+SQ3/3,-SQ3/3,-SQ3/3)
37
         };
38

    
39
  private int[][] mBasicAngle;
40
  private float[][] mCuts;
41
  private float[][] mCenters;
42
  ScrambleState[] mStates;
43
  private int[] mQuatIndex;
44

    
45
///////////////////////////////////////////////////////////////////////////////////////////////////
46

    
47
  TwistyDino(InitData data, int meshState, int iconMode, Static4D quat, Static3D move, float scale, InputStream stream)
48
    {
49
    super(data, meshState, iconMode, data.getNumLayers()[0], quat, move, scale, stream);
50
    }
51

    
52
///////////////////////////////////////////////////////////////////////////////////////////////////
53

    
54
  public float[][] getCuts(int[] numLayers)
55
    {
56
    if( mCuts==null )
57
      {
58
      float[] cut = new float[] { -SQ3/3, +SQ3/3 };
59
      mCuts = new float[][] { cut,cut,cut,cut };
60
      }
61

    
62
    return mCuts;
63
    }
64

    
65
///////////////////////////////////////////////////////////////////////////////////////////////////
66

    
67
  public boolean[][] getLayerRotatable(int[] numLayers)
68
    {
69
    int numAxis = ROT_AXIS.length;
70
    boolean[] tmp = new boolean[] {true,false,true};
71
    boolean[][] layerRotatable = new boolean[numAxis][];
72
    for(int i=0; i<numAxis; i++) layerRotatable[i] = tmp;
73

    
74
    return layerRotatable;
75
    }
76

    
77
///////////////////////////////////////////////////////////////////////////////////////////////////
78

    
79
  public int getTouchControlType()
80
    {
81
    return TC_HEXAHEDRON;
82
    }
83

    
84
///////////////////////////////////////////////////////////////////////////////////////////////////
85

    
86
  public int getTouchControlSplit()
87
    {
88
    return TYPE_SPLIT_CORNER;
89
    }
90

    
91
///////////////////////////////////////////////////////////////////////////////////////////////////
92

    
93
  public int[][][] getEnabled()
94
    {
95
    return new int[][][]
96
      {
97
          {{0,1},{3,1},{2,3},{0,2}},
98
          {{2,3},{3,1},{0,1},{0,2}},
99
          {{1,2},{0,1},{0,3},{2,3}},
100
          {{1,2},{2,3},{0,3},{0,1}},
101
          {{0,3},{0,2},{1,2},{1,3}},
102
          {{1,2},{0,2},{0,3},{1,3}},
103
      };
104
    }
105

    
106
///////////////////////////////////////////////////////////////////////////////////////////////////
107

    
108
  public float[] getDist3D(int[] numLayers)
109
    {
110
    return TouchControlHexahedron.D3D;
111
    }
112

    
113
///////////////////////////////////////////////////////////////////////////////////////////////////
114

    
115
  public Static3D[] getFaceAxis()
116
    {
117
    return TouchControlHexahedron.FACE_AXIS;
118
    }
119

    
120
///////////////////////////////////////////////////////////////////////////////////////////////////
121

    
122
  public float[][] getCubitPositions(int[] numLayers)
123
    {
124
    if( mCenters ==null )
125
      {
126
      mCenters = new float[][]
127
         {
128
             { 0.0f, 1.5f, 1.5f },
129
             { 1.5f, 0.0f, 1.5f },
130
             { 0.0f,-1.5f, 1.5f },
131
             {-1.5f, 0.0f, 1.5f },
132
             { 1.5f, 1.5f, 0.0f },
133
             { 1.5f,-1.5f, 0.0f },
134
             {-1.5f,-1.5f, 0.0f },
135
             {-1.5f, 1.5f, 0.0f },
136
             { 0.0f, 1.5f,-1.5f },
137
             { 1.5f, 0.0f,-1.5f },
138
             { 0.0f,-1.5f,-1.5f },
139
             {-1.5f, 0.0f,-1.5f }
140
         };
141
      }
142

    
143
    return mCenters;
144
    }
145

    
146
///////////////////////////////////////////////////////////////////////////////////////////////////
147

    
148
  public Static4D getCubitQuats(int cubit, int[] numLayers)
149
    {
150
    if( mQuatIndex==null ) mQuatIndex = new int[] { 0,2,10,8,1,4,6,7,11,5,9,3 };
151
    return mObjectQuats[mQuatIndex[cubit]];
152
    }
153

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

    
156
  public ObjectShape getObjectShape(int variant)
157
    {
158
    float[][] vertices= { {-1.5f, 0.0f, 0.0f},{ 1.5f, 0.0f, 0.0f},{ 0.0f,-1.5f, 0.0f},{ 0.0f, 0.0f,-1.5f} };
159
    int[][] indices   = { {2,1,0},{3,0,1},{2,3,1},{3,2,0} };
160
    return new ObjectShape(vertices, indices);
161
    }
162

    
163
///////////////////////////////////////////////////////////////////////////////////////////////////
164

    
165
  public ObjectFaceShape getObjectFaceShape(int variant)
166
    {
167
    float h1 = isInIconMode() ? 0.001f : 0.035f;
168
    float h2 = isInIconMode() ? 0.001f : 0.010f;
169
    float[][] bands     = { {h1,30,0.16f,0.8f,6,2,2}, {h2,30,0.16f,0.2f,6,2,2} };
170
    int[] bandIndices   = { 0,0,1,1 };
171
    float[][] corners   = { {0.07f,0.40f}, {0.05f,0.30f} };
172
    int[] cornerIndices = { 0,0,1,1 };
173
    float[][] centers   = { {0.0f, -0.75f, -0.75f} };
174
    int[] centerIndices = { 0,0,0,0 };
175
    return new ObjectFaceShape(bands,bandIndices,corners,cornerIndices,centers,centerIndices, null);
176
    }
177

    
178
///////////////////////////////////////////////////////////////////////////////////////////////////
179

    
180
  public int getNumCubitVariants(int[] numLayers)
181
    {
182
    return 1;
183
    }
184

    
185
///////////////////////////////////////////////////////////////////////////////////////////////////
186

    
187
  public int getCubitVariant(int cubit, int[] numLayers)
188
    {
189
    return 0;
190
    }
191

    
192
///////////////////////////////////////////////////////////////////////////////////////////////////
193

    
194
  public float getStickerRadius()
195
    {
196
    return 0.09f;
197
    }
198

    
199
///////////////////////////////////////////////////////////////////////////////////////////////////
200

    
201
  public float getStickerStroke()
202
    {
203
    return isInIconMode() ? 0.22f : 0.15f;
204
    }
205

    
206
///////////////////////////////////////////////////////////////////////////////////////////////////
207

    
208
  public float[][] getStickerAngles()
209
    {
210
    return null;
211
    }
212

    
213
///////////////////////////////////////////////////////////////////////////////////////////////////
214
// PUBLIC API
215

    
216
  public Static3D[] getRotationAxis()
217
    {
218
    return ROT_AXIS;
219
    }
220

    
221
///////////////////////////////////////////////////////////////////////////////////////////////////
222

    
223
  public int[][] getBasicAngles()
224
    {
225
    if( mBasicAngle==null )
226
      {
227
      int num = getNumLayers()[0];
228
      int[] tmp = new int[num];
229
      for(int i=0; i<num; i++) tmp[i] = 3;
230
      mBasicAngle = new int[][] { tmp,tmp,tmp,tmp };
231
      }
232

    
233
    return mBasicAngle;
234
    }
235

    
236
///////////////////////////////////////////////////////////////////////////////////////////////////
237

    
238
  public int getComplexity()
239
    {
240
    return 0;
241
    }
242
}
(9-9/36)