Project

General

Profile

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

distorted-objectlib / src / main / java / org / distorted / objectlib / helpers / ObjectShape.java @ b76da174

1
///////////////////////////////////////////////////////////////////////////////////////////////////
2
// Copyright 2021 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.helpers;
11

    
12
import org.distorted.library.helpers.QuatHelper;
13
import org.distorted.library.type.Static3D;
14
import org.distorted.library.type.Static4D;
15
import org.distorted.objectlib.main.TwistyObject;
16

    
17
///////////////////////////////////////////////////////////////////////////////////////////////////
18

    
19
public class ObjectShape
20
  {
21
  private static final float[] mTmp1 = new float[4];
22
  private static final float[] mTmp2 = new float[4];
23

    
24
  private final float[][] mVertices;
25
  private final int[][] mVertIndices;
26

    
27
  private final boolean mFacesMultigon;
28
  private final int mNumFaces;
29
  private final int[][][] mMultigonIndices;
30

    
31
///////////////////////////////////////////////////////////////////////////////////////////////////
32

    
33
  public ObjectShape(float[][] vertices, int[][] vertIndices)
34
    {
35
    mVertices        = vertices;
36
    mVertIndices     = vertIndices;
37
    mMultigonIndices = null;
38
    mFacesMultigon   = false;
39
    mNumFaces        = vertIndices.length;
40
    }
41

    
42
///////////////////////////////////////////////////////////////////////////////////////////////////
43

    
44
  public ObjectShape(float[][] vertices, int[][][] vertIndices)
45
    {
46
    mVertices       = vertices;
47
    mVertIndices    = null;
48
    mMultigonIndices= vertIndices;
49
    mFacesMultigon  = true;
50
    mNumFaces       = vertIndices.length;
51
    }
52

    
53
///////////////////////////////////////////////////////////////////////////////////////////////////
54

    
55
  public void debug()
56
    {
57
    StringBuilder str = new StringBuilder();
58
    str.append("isMultigon: ");
59
    str.append(mFacesMultigon);
60
    str.append("\n");
61
    str.append("numVertices: ");
62
    int numV =mVertices.length;
63
    str.append(numV);
64

    
65
    for(float[] v : mVertices)
66
      {
67
      str.append(" (");
68
      str.append(v[0]);
69
      str.append(" ");
70
      str.append(v[1]);
71
      str.append(" ");
72
      str.append(v[2]);
73
      str.append(")");
74
      }
75

    
76
    if( mFacesMultigon )
77
      {
78
      int numFaces =mMultigonIndices.length;
79
      str.append("\nnumFaces: ");
80
      str.append(numFaces);
81
      str.append("\n");
82

    
83
      for(int[][] mMultigonIndex : mMultigonIndices)
84
        {
85
        int numC=mMultigonIndex.length;
86
        str.append("\nnumComponents: ");
87
        str.append(numC);
88
        str.append("\n   ");
89

    
90
        for(int[] multigonIndex : mMultigonIndex)
91
          {
92
          for(int index : multigonIndex)
93
            {
94
            str.append(" ");
95
            str.append(index);
96
            }
97
          str.append("\n   ");
98
          }
99
        }
100
      }
101
    else
102
      {
103
      int numFaces =mVertIndices.length;
104
      str.append("\nnumFaces: ");
105
      str.append(numFaces);
106
      str.append("\n   ");
107

    
108
      for(int[] vertIndex : mVertIndices)
109
        {
110
        for(int index : vertIndex)
111
          {
112
          str.append(" ");
113
          str.append(index);
114
          }
115
        str.append("\n   ");
116
        }
117
      }
118

    
119
    android.util.Log.e("D", "ObjectShape: \n"+str);
120
    }
121

    
122
///////////////////////////////////////////////////////////////////////////////////////////////////
123

    
124
  public int getNumFaces()
125
    {
126
    return mNumFaces;
127
    }
128

    
129
///////////////////////////////////////////////////////////////////////////////////////////////////
130

    
131
  public boolean isMultigon()
132
    {
133
    return mFacesMultigon;
134
    }
135

    
136
///////////////////////////////////////////////////////////////////////////////////////////////////
137

    
138
  public float[][] getVertices()
139
    {
140
    return mVertices;
141
    }
142

    
143
///////////////////////////////////////////////////////////////////////////////////////////////////
144

    
145
  public int[][] getVertIndices()
146
    {
147
    return mVertIndices;
148
    }
149

    
150
///////////////////////////////////////////////////////////////////////////////////////////////////
151

    
152
  public int[][][] getMultigonIndices()
153
    {
154
    return mMultigonIndices;
155
    }
156

    
157
///////////////////////////////////////////////////////////////////////////////////////////////////
158

    
159
  public float[] getFirstVertexInFace(int face)
160
    {
161
    if( mFacesMultigon )
162
      {
163
      int[][][] indices=getMultigonIndices();
164
      int vertIndex=indices[face][0][0];
165
      return getVertices()[vertIndex];
166
      }
167
    else
168
      {
169
      int[][] indices=getVertIndices();
170
      int vertIndex=indices[face][0];
171
      return getVertices()[vertIndex];
172
      }
173
    }
174

    
175
///////////////////////////////////////////////////////////////////////////////////////////////////
176

    
177
  public static int computeNumComponents(ObjectShape[] shapes)
178
    {
179
    int ret = 0;
180

    
181
    for( ObjectShape shape : shapes )
182
      {
183
      int numShape = shape.mNumFaces;
184
      if( numShape>ret ) ret = numShape;
185
      }
186

    
187
    return ret;
188
    }
189

    
190
///////////////////////////////////////////////////////////////////////////////////////////////////
191
// take vertex, apply quat, apply move, write to output
192

    
193
  private static void computeVertex(float[] output, float[] vertex, float[] move, Static4D quat)
194
    {
195
    QuatHelper.rotateVectorByQuat(mTmp2,vertex[0],vertex[1],vertex[2],1.0f,quat);
196

    
197
    int numMoves = move.length/3;
198
    float moveX=0.0f, moveY=0.0f, moveZ=0.0f;
199

    
200
    for(int m=0; m<numMoves; m++)
201
      {
202
      moveX += move[3*m  ];
203
      moveY += move[3*m+1];
204
      moveZ += move[3*m+2];
205
      }
206

    
207
    output[0] = mTmp2[0] + moveX/numMoves;
208
    output[1] = mTmp2[1] + moveY/numMoves;
209
    output[2] = mTmp2[2] + moveZ/numMoves;
210
    }
211

    
212
///////////////////////////////////////////////////////////////////////////////////////////////////
213

    
214
  private static boolean vertInFace(float[] vertex, Static3D faceAxis, float dist)
215
    {
216
    final float MAX_ERROR = 0.04f;  // Rex Cube requires this
217

    
218
    float x= faceAxis.get0();
219
    float y= faceAxis.get1();
220
    float z= faceAxis.get2();
221

    
222
    float a = vertex[0]*x + vertex[1]*y + vertex[2]*z;
223
    float diff = a - dist;
224

    
225
    return diff>-MAX_ERROR && diff<MAX_ERROR;
226
    }
227

    
228
///////////////////////////////////////////////////////////////////////////////////////////////////
229

    
230
  private static boolean indicesContain(int[][] indices, int index)
231
    {
232
    for( int[] ind : indices )
233
      for( int i : ind )
234
        if( i==index ) return true;
235

    
236
    return false;
237
    }
238

    
239
///////////////////////////////////////////////////////////////////////////////////////////////////
240

    
241
  private static boolean indicesContain(int[] indices, int index)
242
    {
243
    for( int j : indices )
244
      if( j==index ) return true;
245

    
246
    return false;
247
    }
248

    
249
///////////////////////////////////////////////////////////////////////////////////////////////////
250

    
251
  private static int[] computeCubitFaceColors(ObjectShape shape, float[] move, Static4D quat, Static3D[] faceAxis, float[] dist3D, float size)
252
    {
253
    float[][] vertices = shape.getVertices();
254
    int numVert = vertices.length;
255
    int numPuzzleFaces = faceAxis.length;
256
    int numCubitFaces = shape.mNumFaces;
257
    int[] cubitFaceColor = new int[numCubitFaces];
258
    for(int face=0; face<numCubitFaces; face++) cubitFaceColor[face] = 0xffffffff;
259

    
260
    for(int vert=0; vert<numVert; vert++)
261
      {
262
      computeVertex(mTmp1,vertices[vert],move,quat);
263
      int vertBelongsBitmap = 0x00000000;
264

    
265
      for(int face=0; face<numPuzzleFaces; face++)
266
        if( vertInFace(mTmp1,faceAxis[face],dist3D[face]*size) ) vertBelongsBitmap |= (1<<face);
267

    
268
      if( shape.mFacesMultigon )
269
        {
270
        for(int index=0; index<numCubitFaces; index++)
271
          if( cubitFaceColor[index]!=0 && indicesContain(shape.mMultigonIndices[index],vert) ) cubitFaceColor[index] &= vertBelongsBitmap;
272
        }
273
      else
274
        {
275
        for(int index=0; index<numCubitFaces; index++)
276
          if( cubitFaceColor[index]!=0 && indicesContain(shape.mVertIndices[index],vert) ) cubitFaceColor[index] &= vertBelongsBitmap;
277
        }
278
      }
279

    
280
    return cubitFaceColor;
281
    }
282

    
283
///////////////////////////////////////////////////////////////////////////////////////////////////
284

    
285
  private static void translateFromBitmap(int cubit, int[] colorsBitmap)
286
    {
287
    int len = colorsBitmap.length;
288

    
289
    for(int face=0; face<len; face++)
290
      {
291
      if( colorsBitmap[face]==0 ) colorsBitmap[face] = -1;
292
      else
293
        {
294
        int shift=0;
295

    
296
        while( (colorsBitmap[face]&0x1) != 1 )
297
          {
298
          colorsBitmap[face]>>=1;
299
          shift++;
300
          }
301

    
302
        if( colorsBitmap[face]!=1 )
303
          {
304
          android.util.Log.e("D", "ERROR, cubit= "+cubit+" face "+face+" seems to belong to "+shift+" and still "+colorsBitmap[face]);
305
          }
306

    
307
        colorsBitmap[face] = shift;
308
        }
309
      }
310
    }
311

    
312
///////////////////////////////////////////////////////////////////////////////////////////////////
313

    
314
  public static int[][] computeColors(ObjectShape[] shapes, float[][] moves, Static4D[] quats, TwistyObject object)
315
    {
316
    int numCubits = moves.length;
317
    int[][] colors = new int[numCubits][];
318
    int[] numLayers = object.getNumLayers();
319
    Static3D[] faceAxis = object.getFaceAxis();
320
    float[] dist3D = object.getDist3D(numLayers);
321
    float size = object.getSize();
322

    
323
    for(int cubit=0; cubit<numCubits; cubit++)
324
      {
325
      int variant = object.getCubitVariant(cubit,numLayers);
326
      colors[cubit] = computeCubitFaceColors(shapes[variant],moves[cubit],quats[cubit],faceAxis,dist3D,size);
327
      translateFromBitmap(cubit,colors[cubit]);
328
      }
329

    
330
    return colors;
331
    }
332
  }
(10-10/16)