Project

General

Profile

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

magiccube / src / main / java / org / distorted / objects / TwistyDino.java @ 4de711ba

1
///////////////////////////////////////////////////////////////////////////////////////////////////
2
// Copyright 2020 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
import android.graphics.Canvas;
24
import android.graphics.Paint;
25

    
26
import org.distorted.helpers.FactoryCubit;
27
import org.distorted.helpers.FactorySticker;
28
import org.distorted.library.effect.MatrixEffectQuaternion;
29
import org.distorted.library.main.DistortedEffects;
30
import org.distorted.library.main.DistortedTexture;
31
import org.distorted.library.mesh.MeshBase;
32
import org.distorted.library.mesh.MeshSquare;
33
import org.distorted.library.type.Static3D;
34
import org.distorted.library.type.Static4D;
35

    
36
///////////////////////////////////////////////////////////////////////////////////////////////////
37

    
38
public abstract class TwistyDino extends TwistyObject
39
{
40
  // the four rotation axis of a RubikDino. Must be normalized.
41
  static final Static3D[] ROT_AXIS = new Static3D[]
42
         {
43
           new Static3D(+SQ3/3,+SQ3/3,+SQ3/3),
44
           new Static3D(+SQ3/3,+SQ3/3,-SQ3/3),
45
           new Static3D(+SQ3/3,-SQ3/3,+SQ3/3),
46
           new Static3D(+SQ3/3,-SQ3/3,-SQ3/3)
47
         };
48

    
49
  private static final int[] BASIC_ANGLE = new int[] { 3,3,3,3 };
50

    
51
  private static final int[] FACE_COLORS = new int[]
52
         {
53
           COLOR_YELLOW, COLOR_WHITE,
54
           COLOR_BLUE  , COLOR_GREEN,
55
           COLOR_RED   , COLOR_ORANGE
56
         };
57

    
58
  // All legal rotation quats of a RubikDino
59
  static final Static4D[] QUATS = new Static4D[]
60
         {
61
           new Static4D(  0.0f,  0.0f,  0.0f,  1.0f ),
62
           new Static4D(  0.5f,  0.5f,  0.5f, -0.5f ),
63
           new Static4D(  0.0f,  0.0f,  1.0f,  0.0f ),
64
           new Static4D(  0.5f, -0.5f, -0.5f, -0.5f ),
65
           new Static4D(  0.5f,  0.5f,  0.5f,  0.5f ),
66
           new Static4D(  0.5f,  0.5f, -0.5f, -0.5f ),
67
           new Static4D(  0.5f, -0.5f,  0.5f, -0.5f ),
68
           new Static4D(  0.5f, -0.5f, -0.5f,  0.5f ),
69
           new Static4D(  0.0f,  1.0f,  0.0f,  0.0f ),
70
           new Static4D(  0.5f, -0.5f,  0.5f,  0.5f ),
71
           new Static4D(  1.0f,  0.0f,  0.0f,  0.0f ),
72
           new Static4D(  0.5f,  0.5f, -0.5f,  0.5f )
73
         };
74

    
75
  // centers of the 12 edges. Must be in the same order like QUATs above.
76
  static final float[][] CENTERS = new float[][]
77
         {
78
             { 0.0f, 1.5f, 1.5f },
79
             { 1.5f, 0.0f, 1.5f },
80
             { 0.0f,-1.5f, 1.5f },
81
             {-1.5f, 0.0f, 1.5f },
82
             { 1.5f, 1.5f, 0.0f },
83
             { 1.5f,-1.5f, 0.0f },
84
             {-1.5f,-1.5f, 0.0f },
85
             {-1.5f, 1.5f, 0.0f },
86
             { 0.0f, 1.5f,-1.5f },
87
             { 1.5f, 0.0f,-1.5f },
88
             { 0.0f,-1.5f,-1.5f },
89
             {-1.5f, 0.0f,-1.5f }
90
         };
91

    
92
  private static final double[][] VERTICES = new double[][]
93
          {
94
             {-1.5, 0.0, 0.0},
95
             { 1.5, 0.0, 0.0},
96
             { 0.0,-1.5, 0.0},
97
             { 0.0, 0.0,-1.5}
98
          };
99

    
100
  private static final int[][] VERT_INDEXES = new int[][]
101
          {
102
             {2,1,0},   // counterclockwise!
103
             {3,0,1},
104
             {2,3,1},
105
             {3,2,0},
106
          };
107

    
108
  private static final float[][] STICKERS = new float[][]
109
          {
110
             { 0.0f, -1.0f/3, 0.5f, 1.0f/6, -0.5f, 1.0f/6 }
111
          };
112

    
113
  private static MeshBase[] mMeshes;
114

    
115
///////////////////////////////////////////////////////////////////////////////////////////////////
116

    
117
  TwistyDino(int size, Static4D quat, DistortedTexture texture, MeshSquare mesh,
118
             DistortedEffects effects, int[][] moves, ObjectList obj, Resources res, int scrWidth)
119
    {
120
    super(size, size, quat, texture, mesh, effects, moves, obj, res, scrWidth);
121
    }
122

    
123
///////////////////////////////////////////////////////////////////////////////////////////////////
124

    
125
  float getScreenRatio()
126
    {
127
    return 0.5f;
128
    }
129

    
130
///////////////////////////////////////////////////////////////////////////////////////////////////
131

    
132
  Static4D[] getQuats()
133
    {
134
    return QUATS;
135
    }
136

    
137
///////////////////////////////////////////////////////////////////////////////////////////////////
138

    
139
  int getNumFaces()
140
    {
141
    return FACE_COLORS.length;
142
    }
143

    
144
///////////////////////////////////////////////////////////////////////////////////////////////////
145

    
146
  float[][] getCuts(int size)
147
    {
148
    float[] cut = new float[] { -SQ3/3, +SQ3/3 };
149
    return new float[][] { cut,cut,cut,cut };
150
    }
151

    
152
///////////////////////////////////////////////////////////////////////////////////////////////////
153

    
154
  int getNumStickerTypes(int numLayers)
155
    {
156
    return STICKERS.length;
157
    }
158

    
159
///////////////////////////////////////////////////////////////////////////////////////////////////
160

    
161
  int getNumCubitFaces()
162
    {
163
    return 4;
164
    }
165

    
166
///////////////////////////////////////////////////////////////////////////////////////////////////
167

    
168
  float[][] getCubitPositions(int size)
169
    {
170
    return CENTERS;
171
    }
172

    
173
///////////////////////////////////////////////////////////////////////////////////////////////////
174

    
175
  MeshBase createCubitMesh(int cubit, int numLayers)
176
    {
177
    if( mMeshes==null )
178
      {
179
      FactoryCubit factory = FactoryCubit.getInstance();
180
      factory.clear();
181
      mMeshes = new MeshBase[1];
182
      }
183

    
184
    if( mMeshes[0]==null )
185
      {
186
      float[][] bands= new float[][]
187
          {
188
             {0.035f,30,0.16f,0.8f,6,2,2},
189
             {0.010f,30,0.16f,0.2f,6,2,2}
190
          };
191
      int[] bandIndexes   = new int[] { 0,0,1,1 };
192
      float[][] corners   = new float[][] { {0.07f,0.40f}, {0.05f,0.30f} };
193
      int[] cornerIndexes = new int[] { 0,0,1,1 };
194
      float[][] centers   = new float[][] { {0.0f, -0.75f, -0.75f} };
195
      int[] centerIndexes = new int[] { 0,0,0,0 };
196

    
197
      FactoryCubit factory = FactoryCubit.getInstance();
198

    
199
      factory.createNewFaceTransform(VERTICES,VERT_INDEXES);
200
      mMeshes[0] = factory.createRoundedSolid(VERTICES, VERT_INDEXES,
201
                                              bands, bandIndexes,
202
                                              corners, cornerIndexes,
203
                                              centers, centerIndexes,
204
                                              getNumCubitFaces() );
205
      }
206

    
207
    MeshBase mesh = mMeshes[0].copy(true);
208
    MatrixEffectQuaternion quat = new MatrixEffectQuaternion( QUATS[cubit], new Static3D(0,0,0) );
209
    mesh.apply(quat,0xffffffff,0);
210

    
211
    return mesh;
212
    }
213

    
214
///////////////////////////////////////////////////////////////////////////////////////////////////
215

    
216
  void createFaceTexture(Canvas canvas, Paint paint, int face, int left, int top)
217
    {
218
    float R = 0.025f;
219
    float S = 0.05f;
220

    
221
    FactorySticker factory = FactorySticker.getInstance();
222
    factory.drawRoundedPolygon(canvas, paint, left, top, STICKERS[0], S, FACE_COLORS[face], R);
223
    }
224

    
225
///////////////////////////////////////////////////////////////////////////////////////////////////
226

    
227
  float returnMultiplier()
228
    {
229
    return 2.0f;
230
    }
231

    
232
///////////////////////////////////////////////////////////////////////////////////////////////////
233
// PUBLIC API
234

    
235
  public Static3D[] getRotationAxis()
236
    {
237
    return ROT_AXIS;
238
    }
239

    
240
///////////////////////////////////////////////////////////////////////////////////////////////////
241

    
242
  public int[] getBasicAngle()
243
    {
244
    return BASIC_ANGLE;
245
    }
246

    
247
///////////////////////////////////////////////////////////////////////////////////////////////////
248
// only needed for solvers - there are no Dino solvers ATM)
249

    
250
  public String retObjectString()
251
    {
252
    return "";
253
    }
254

    
255
///////////////////////////////////////////////////////////////////////////////////////////////////
256

    
257
  public int getComplexity(int numLayers)
258
    {
259
    return 2;
260
    }
261
}
(24-24/41)