Project

General

Profile

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

magiccube / src / main / java / org / distorted / objects / TwistySquare.java @ ef018c1b

1
///////////////////////////////////////////////////////////////////////////////////////////////////
2
// Copyright 2021 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

    
24
import org.distorted.library.main.DistortedEffects;
25
import org.distorted.library.main.DistortedTexture;
26
import org.distorted.library.mesh.MeshSquare;
27
import org.distorted.library.type.Static3D;
28
import org.distorted.library.type.Static4D;
29

    
30
///////////////////////////////////////////////////////////////////////////////////////////////////
31

    
32
abstract class TwistySquare extends Twisty6
33
{
34
  static final float COS15 = (SQ6+SQ2)/4;
35
  static final float SIN15 = (SQ6-SQ2)/4;
36
  static final float     X = 3*(2-SQ3)/2;
37

    
38
  // The third, artificial axis is for the generic scrambling algorithm.
39
  // Otherwise it wouldn't be possible to rotate the LO and UP layers
40
  // consecutively.
41

    
42
  static final Static3D[] ROT_AXIS = new Static3D[]
43
    {
44
      new Static3D(0,+1,0),
45
      new Static3D(COS15,0,SIN15),
46
      new Static3D(0,-1,0),
47
    };
48

    
49
  private int[] mBasicAngle;
50
  private float[][] mCuts;
51
  private boolean[][] mLayerRotatable;
52
  private Movement mMovement;
53
  Static4D[] mQuats;
54

    
55
///////////////////////////////////////////////////////////////////////////////////////////////////
56

    
57
  TwistySquare(int size, Static4D quat, DistortedTexture texture, MeshSquare mesh,
58
               DistortedEffects effects, int[][] moves, ObjectList obj, Resources res, int scrWidth)
59
    {
60
    super(size, size, quat, texture, mesh, effects, moves, obj, res, scrWidth);
61
    }
62

    
63
///////////////////////////////////////////////////////////////////////////////////////////////////
64

    
65
  void initializeQuats()
66
    {
67
    mQuats = new Static4D[]
68
      {
69
      new Static4D(  0.0f,  0.0f,  0.0f,  1.0f ),
70
      new Static4D(  0.0f, SIN15,  0.0f, COS15 ),
71
      new Static4D(  0.0f,  0.5f,  0.0f, SQ3/2 ),
72
      new Static4D(  0.0f, SQ2/2,  0.0f, SQ2/2 ),
73
      new Static4D(  0.0f, SQ3/2,  0.0f,  0.5f ),
74
      new Static4D(  0.0f, COS15,  0.0f, SIN15 ),
75
      new Static4D(  0.0f,  1.0f,  0.0f,  0.0f ),
76
      new Static4D(  0.0f, COS15,  0.0f,-SIN15 ),
77
      new Static4D(  0.0f, SQ3/2,  0.0f, -0.5f ),
78
      new Static4D(  0.0f, SQ2/2,  0.0f,-SQ2/2 ),
79
      new Static4D(  0.0f,  0.5f,  0.0f,-SQ3/2 ),
80
      new Static4D(  0.0f, SIN15,  0.0f,-COS15 ),
81

    
82
      new Static4D(  1.0f,  0.0f,  0.0f,  0.0f ),
83
      new Static4D( COS15,  0.0f, SIN15,  0.0f ),
84
      new Static4D( SQ3/2,  0.0f,  0.5f,  0.0f ),
85
      new Static4D( SQ2/2,  0.0f, SQ2/2,  0.0f ),
86
      new Static4D(  0.5f,  0.0f, SQ3/2,  0.0f ),
87
      new Static4D( SIN15,  0.0f, COS15,  0.0f ),
88
      new Static4D(  0.0f,  0.0f,  1.0f,  0.0f ),
89
      new Static4D(-SIN15,  0.0f, COS15,  0.0f ),
90
      new Static4D( -0.5f,  0.0f, SQ3/2,  0.0f ),
91
      new Static4D(-SQ2/2,  0.0f, SQ2/2,  0.0f ),
92
      new Static4D(-SQ3/2,  0.0f,  0.5f,  0.0f ),
93
      new Static4D(-COS15,  0.0f, SIN15,  0.0f )
94
      };
95
    }
96

    
97
///////////////////////////////////////////////////////////////////////////////////////////////////
98

    
99
  void initializeBasicAngle()
100
    {
101
    mBasicAngle = new int[] {12,2,12};
102
    }
103

    
104
///////////////////////////////////////////////////////////////////////////////////////////////////
105

    
106
  Static4D[] getQuats()
107
    {
108
    if( mQuats==null ) initializeQuats();
109
    return mQuats;
110
    }
111

    
112
///////////////////////////////////////////////////////////////////////////////////////////////////
113

    
114
  int getNumCubitFaces()
115
    {
116
    return 6;
117
    }
118

    
119
///////////////////////////////////////////////////////////////////////////////////////////////////
120

    
121
  float[][] getCuts(int numLayers)
122
    {
123
    if( mCuts==null )
124
      {
125
      mCuts = new float[][] { {-0.5f,+0.5f}, {0.0f}, {-0.5f,+0.5f} };
126
      }
127

    
128
    return mCuts;
129
    }
130

    
131
///////////////////////////////////////////////////////////////////////////////////////////////////
132

    
133
  private void getLayerRotatable(int numLayers)
134
    {
135
    if( mLayerRotatable==null )
136
      {
137
      mLayerRotatable = new boolean[][] { {true,false,true}, {true,true}, {true,false,true} };
138
      }
139
    }
140

    
141
///////////////////////////////////////////////////////////////////////////////////////////////////
142
// PUBLIC API
143

    
144
  public Static3D[] getRotationAxis()
145
    {
146
    return ROT_AXIS;
147
    }
148

    
149
///////////////////////////////////////////////////////////////////////////////////////////////////
150

    
151
  public Movement getMovement()
152
    {
153
    if( mMovement==null )
154
      {
155
      int numLayers = getNumLayers();
156
      if( mCuts==null ) getCuts(numLayers);
157
      getLayerRotatable(numLayers);
158

    
159
      mMovement = new MovementSquare(mCuts,mLayerRotatable,numLayers);
160
      }
161
    return mMovement;
162
    }
163

    
164
///////////////////////////////////////////////////////////////////////////////////////////////////
165

    
166
  public int[] getBasicAngle()
167
    {
168
    if( mBasicAngle ==null ) initializeBasicAngle();
169
    return mBasicAngle;
170
    }
171
}
(45-45/48)