Project

General

Profile

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

magiccube / src / main / java / org / distorted / objects / RubikObjectMovement.java @ ca292407

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 org.distorted.library.type.Static2D;
23
import org.distorted.library.type.Static3D;
24
import org.distorted.library.type.Static4D;
25

    
26
///////////////////////////////////////////////////////////////////////////////////////////////////
27

    
28
public abstract class RubikObjectMovement
29
  {
30
  private int mLastTouchedAxis;
31
  private float[] mPoint, mCamera, mTouch;
32
  private float[] mPoint2D, mMove2D;
33
  private float[][][] mCastAxis;
34
  private int mLastTouchedLR;
35
  private int mNumAxis, mNumFacesPerAxis;
36
  private float mDistanceCenterFace3D, mDistanceCenterFace2D;
37
  private Static3D[] mAxis;
38

    
39
///////////////////////////////////////////////////////////////////////////////////////////////////
40

    
41
  abstract boolean isInsideFace(float[] point);
42

    
43
///////////////////////////////////////////////////////////////////////////////////////////////////
44

    
45
  RubikObjectMovement(Static3D[] axis, int numFacesPerAxis, float distance3D, float distance2D)
46
    {
47
    mPoint = new float[3];
48
    mCamera= new float[3];
49
    mTouch = new float[3];
50

    
51
    mPoint2D = new float[2];
52
    mMove2D  = new float[2];
53

    
54
    mAxis = axis;
55
    mNumAxis = mAxis.length;
56
    mNumFacesPerAxis = numFacesPerAxis;
57
    mDistanceCenterFace3D = distance3D; // distance from the center of the object to each of its faces
58
    mDistanceCenterFace2D = distance2D; // distance from the center of a face to its edge
59

    
60
    // mCastAxis[1][2]{0,1} are the 2D coords of the 2nd axis cast onto the face defined by the
61
    // 1st pair (axis,lr)
62
    mCastAxis = new float[mNumAxis*mNumFacesPerAxis][mNumAxis][2];
63

    
64
    for( int casted=0; casted<mNumAxis; casted++)
65
      {
66
      Static3D a = mAxis[casted];
67
      mPoint[0]= a.get0();
68
      mPoint[1]= a.get1();
69
      mPoint[2]= a.get2();
70

    
71
      for( int surface=0; surface<mNumAxis; surface++)
72
        for(int lr=0; lr<mNumFacesPerAxis; lr++)
73
          {
74
          int index = surface*mNumFacesPerAxis + lr;
75

    
76
          if( casted!=surface )
77
            {
78
            convertTo2Dcoords( mPoint, mAxis[surface], lr, mPoint2D);
79
            mCastAxis[index][casted][0] = mPoint2D[0];
80
            mCastAxis[index][casted][1] = mPoint2D[1];
81
            normalize2D(mCastAxis[index][casted]);
82
            }
83
          else
84
            {
85
            mCastAxis[index][casted][0] = 0;
86
            mCastAxis[index][casted][1] = 0;
87
            }
88
          }
89
      }
90
    }
91

    
92
///////////////////////////////////////////////////////////////////////////////////////////////////
93

    
94
  private void normalize2D(float[] vect)
95
    {
96
    float len = (float)Math.sqrt(vect[0]*vect[0] + vect[1]*vect[1]);
97
    vect[0] /= len;
98
    vect[1] /= len;
99
    }
100

    
101
///////////////////////////////////////////////////////////////////////////////////////////////////
102
// find the casted axis with which our move2D vector forms an angle closest to 90 deg.
103

    
104
  private int computeRotationIndex(int axis, int lr, float[] move2D)
105
    {
106
    float cosAngle, minCosAngle = Float.MAX_VALUE;
107
    int minIndex=-1;
108
    int index = axis*mNumFacesPerAxis + lr;
109
    float m0 = move2D[0];
110
    float m1 = move2D[1];
111
    float len = (float)Math.sqrt(m0*m0 + m1*m1);
112
    m0 /= len;
113
    m1 /= len;
114

    
115
    for(int i=0; i<mNumAxis; i++)
116
      {
117
      if( axis != i )
118
        {
119
        cosAngle = m0*mCastAxis[index][i][0] +  m1*mCastAxis[index][i][1];
120
        if( cosAngle<0 ) cosAngle = -cosAngle;
121

    
122
        if( cosAngle<minCosAngle )
123
          {
124
          minCosAngle=cosAngle;
125
          minIndex = i;
126
          }
127
        }
128
      }
129

    
130
    return minIndex;
131
    }
132

    
133
///////////////////////////////////////////////////////////////////////////////////////////////////
134

    
135
  private float computeOffset(float[] point, float[] axis)
136
    {
137
    return point[0]*axis[0] + point[1]*axis[1] + mDistanceCenterFace2D;
138
    }
139

    
140
///////////////////////////////////////////////////////////////////////////////////////////////////
141

    
142
  private boolean faceIsVisible(Static3D axis, int lr)
143
    {
144
    float castCameraOnAxis = mCamera[0]*axis.get0() + mCamera[1]*axis.get1() + mCamera[2]*axis.get2();
145
    return (2*lr-1)*castCameraOnAxis > mDistanceCenterFace3D;
146
    }
147

    
148
///////////////////////////////////////////////////////////////////////////////////////////////////
149
// given precomputed mCamera and mPoint, respectively camera and touch point positions in ScreenSpace,
150
// compute point 'output[]' which:
151
// 1) lies on a face of the Object, i.e. surface defined by (axis, distance from (0,0,0)) [and this
152
//    distance is +-mDistanceCenterFace, depending if it is the face on the left or the right end of
153
//    the axis] (lr=0 or 1, so (2lr-1)*mDistanceCenterFace)
154
// 2) is co-linear with mCamera and mPoint
155
//
156
// output = camera + alpha*(point-camera), where alpha = [dist-axis*camera] / [axis*(point-camera)]
157

    
158
  private void castTouchPointOntoFace(Static3D axis, int lr, float[] output)
159
    {
160
    float d0 = mPoint[0]-mCamera[0];
161
    float d1 = mPoint[1]-mCamera[1];
162
    float d2 = mPoint[2]-mCamera[2];
163
    float a0 = axis.get0();
164
    float a1 = axis.get1();
165
    float a2 = axis.get2();
166

    
167
    float denom = a0*d0 + a1*d1 + a2*d2;
168

    
169
    if( denom != 0.0f )
170
      {
171
      float axisCam = a0*mCamera[0] + a1*mCamera[1] + a2*mCamera[2];
172
      float distance = (2*lr-1)*mDistanceCenterFace3D;
173
      float alpha = (distance-axisCam)/denom;
174

    
175
      output[0] = mCamera[0] + d0*alpha;
176
      output[1] = mCamera[1] + d1*alpha;
177
      output[2] = mCamera[2] + d2*alpha;
178
      }
179
    }
180

    
181
///////////////////////////////////////////////////////////////////////////////////////////////////
182
// Convert the 3D point3D into a 2D point on the same face surface, but in a different
183
// coordinate system: a in-plane 2D coord where the origin is in the point where the axis intersects
184
// the surface, and whose Y axis points 'north' i.e. is in the plane given by the 3D origin, the
185
// original 3D Y axis and our 2D in-plane origin.
186
// If those 3 points constitute a degenerate triangle which does not define a plane - which can only
187
// happen if axis is vertical (or in theory when 2D origin and 3D origin meet, but that would have to
188
// mean that the distance between the center of the Object and its faces is 0) - then we arbitrarily
189
// decide that 2D Y = (0,0,-1) in the North Pole and (0,0,1) in the South Pole)
190

    
191
  private void convertTo2Dcoords(float[] point3D, Static3D axis, int lr, float[] output)
192
    {
193
    float y0,y1,y2; // base Y vector of the 2D coord system
194
    float a0 = axis.get0();
195
    float a1 = axis.get1();
196
    float a2 = axis.get2();
197

    
198
    if( lr==0 )
199
      {
200
      a0=-a0; a1=-a1; a2=-a2;
201
      }
202

    
203
    if( a0==0.0f && a2==0.0f )
204
      {
205
      y0=0; y1=0; y2=-a1;
206
      }
207
    else if( a1==0.0f )
208
      {
209
      y0=0; y1=1; y2=0;
210
      }
211
    else
212
      {
213
      float norm = (float)(-a1/Math.sqrt(1-a1*a1));
214
      y0 = norm*a0; y1= norm*(a1-1/a1); y2=norm*a2;
215
      }
216

    
217
    float x0 = y1*a2 - y2*a1;  //
218
    float x1 = y2*a0 - y0*a2;  // (2D coord baseY) x (axis) = 2D coord baseX
219
    float x2 = y0*a1 - y1*a0;  //
220

    
221
    float originAlpha = point3D[0]*a0 + point3D[1]*a1 + point3D[2]*a2;
222

    
223
    float origin0 = originAlpha*a0; // coords of the point where axis
224
    float origin1 = originAlpha*a1; // intersects surface plane i.e.
225
    float origin2 = originAlpha*a2; // the origin of our 2D coord system
226

    
227
    float v0 = point3D[0] - origin0;
228
    float v1 = point3D[1] - origin1;
229
    float v2 = point3D[2] - origin2;
230

    
231
    output[0] = v0*x0 + v1*x1 + v2*x2;
232
    output[1] = v0*y0 + v1*y1 + v2*y2;
233
    }
234

    
235
///////////////////////////////////////////////////////////////////////////////////////////////////
236
// PUBLIC API
237
///////////////////////////////////////////////////////////////////////////////////////////////////
238

    
239
  public boolean faceTouched(Static4D rotatedTouchPoint, Static4D rotatedCamera)
240
    {
241
    mPoint[0]  = rotatedTouchPoint.get0()/RubikObject.OBJECT_SCREEN_RATIO;
242
    mPoint[1]  = rotatedTouchPoint.get1()/RubikObject.OBJECT_SCREEN_RATIO;
243
    mPoint[2]  = rotatedTouchPoint.get2()/RubikObject.OBJECT_SCREEN_RATIO;
244

    
245
    mCamera[0] = rotatedCamera.get0()/RubikObject.OBJECT_SCREEN_RATIO;
246
    mCamera[1] = rotatedCamera.get1()/RubikObject.OBJECT_SCREEN_RATIO;
247
    mCamera[2] = rotatedCamera.get2()/RubikObject.OBJECT_SCREEN_RATIO;
248

    
249
    for( mLastTouchedAxis=0; mLastTouchedAxis<mNumAxis; mLastTouchedAxis++)
250
      {
251
      for( mLastTouchedLR=0; mLastTouchedLR<mNumFacesPerAxis; mLastTouchedLR++)
252
        {
253
        if( faceIsVisible(mAxis[mLastTouchedAxis], mLastTouchedLR) )
254
          {
255
          castTouchPointOntoFace(mAxis[mLastTouchedAxis], mLastTouchedLR, mTouch);
256
          convertTo2Dcoords(mTouch, mAxis[mLastTouchedAxis], mLastTouchedLR, mPoint2D);
257

    
258
          if( isInsideFace(mPoint2D) ) return true;
259
          }
260
        }
261
      }
262

    
263
    return false;
264
    }
265

    
266
///////////////////////////////////////////////////////////////////////////////////////////////////
267

    
268
  public Static2D newRotation(Static4D rotatedTouchPoint)
269
    {
270
    mPoint[0] = rotatedTouchPoint.get0()/RubikObject.OBJECT_SCREEN_RATIO;
271
    mPoint[1] = rotatedTouchPoint.get1()/RubikObject.OBJECT_SCREEN_RATIO;
272
    mPoint[2] = rotatedTouchPoint.get2()/RubikObject.OBJECT_SCREEN_RATIO;
273

    
274
    castTouchPointOntoFace(mAxis[mLastTouchedAxis], mLastTouchedLR, mTouch);
275
    convertTo2Dcoords(mTouch, mAxis[mLastTouchedAxis], mLastTouchedLR, mMove2D);
276

    
277
    mMove2D[0] -= mPoint2D[0];
278
    mMove2D[1] -= mPoint2D[1];
279

    
280
    int rotIndex = computeRotationIndex(mLastTouchedAxis, mLastTouchedLR, mMove2D);
281
    int index    = mLastTouchedAxis*mNumFacesPerAxis+mLastTouchedLR;
282
    float offset = computeOffset(mPoint2D, mCastAxis[index][rotIndex]);
283

    
284
    return new Static2D(rotIndex,offset);
285
    }
286

    
287
///////////////////////////////////////////////////////////////////////////////////////////////////
288

    
289
  public int getTouchedFace()
290
    {
291
    return mNumFacesPerAxis==2 ? 2*mLastTouchedAxis + 1 - mLastTouchedLR : mLastTouchedAxis;
292
    }
293

    
294
///////////////////////////////////////////////////////////////////////////////////////////////////
295
// TODO
296

    
297
  public int getTouchedCubit()
298
    {
299
    return 0;
300
    }
301
  }
(6-6/8)