Project

General

Profile

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

magiccube / src / main / java / org / distorted / object / RubikCubeMovement.java @ dd65ead3

1 beb325a0 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
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.object;
21
22
///////////////////////////////////////////////////////////////////////////////////////////////////
23
24 27a70eae Leszek Koltunski
class RubikCubeMovement extends RubikObjectMovement
25 beb325a0 Leszek Koltunski
{
26 dd65ead3 Leszek Koltunski
  RubikCubeMovement()
27
    {
28
    super(3,2);
29
    }
30 beb325a0 Leszek Koltunski
31
///////////////////////////////////////////////////////////////////////////////////////////////////
32
33 dd65ead3 Leszek Koltunski
  private boolean isVertical(float x, float y)
34
    {
35
    return (y>x) ? (y>=-x) : (y< -x);
36
    }
37 beb325a0 Leszek Koltunski
38
///////////////////////////////////////////////////////////////////////////////////////////////////
39
40 dd65ead3 Leszek Koltunski
  boolean faceIsVisible(int axis, int lr)
41
    {
42
    return (2*lr-1)*mCamera[axis] > 0.5f;
43
    }
44 775e675d Leszek Koltunski
45
///////////////////////////////////////////////////////////////////////////////////////////////////
46
// given precomputed mCamera and mPoint, respectively camera and touch point positions in ScreenSpace,
47
// cast this touch point onto the surface defined by the 'face' and write the cast coords to 'output'.
48
// Center of the 'face' = (0,0), third coord always +- cubeHalfSize.
49
50 dd65ead3 Leszek Koltunski
  void castTouchPointOntoFace(int axis, int lr, float[] output)
51
    {
52
    float diff = mPoint[axis]-mCamera[axis];
53
    float ratio= diff!=0.0f ? ((lr-0.5f)-mCamera[axis])/diff : 0.0f;
54 775e675d Leszek Koltunski
55 dd65ead3 Leszek Koltunski
    output[0] = (mPoint[0]-mCamera[0])*ratio + mCamera[0];
56
    output[1] = (mPoint[1]-mCamera[1])*ratio + mCamera[1];
57
    output[2] = (mPoint[2]-mCamera[2])*ratio + mCamera[2];
58
    }
59 775e675d Leszek Koltunski
60
///////////////////////////////////////////////////////////////////////////////////////////////////
61
62 dd65ead3 Leszek Koltunski
  void fillPossibleRotations(int axis, int[] output)
63
    {
64
    switch(axis)
65 775e675d Leszek Koltunski
      {
66 dd65ead3 Leszek Koltunski
      case 0: output[0]=2; output[1]=1; break; // (Z,Y) when looking at LEFT or RIGHT
67
      case 1: output[0]=0; output[1]=2; break; // (X,Z) when looking at BOTTOM or TOP
68
      case 2: output[0]=0; output[1]=1; break; // (X,Y) when looking at FRONT or BACK
69 beb325a0 Leszek Koltunski
      }
70 dd65ead3 Leszek Koltunski
    }
71 beb325a0 Leszek Koltunski
72
///////////////////////////////////////////////////////////////////////////////////////////////////
73
74 dd65ead3 Leszek Koltunski
  boolean isInsideFace(float[] p)
75
    {
76
    return ( p[0]<=0.5f && p[0]>=-0.5f && p[1]<=0.5f && p[1]>=-0.5f && p[2]<=0.5f && p[2]>=-0.5f );
77
    }
78 beb325a0 Leszek Koltunski
79
///////////////////////////////////////////////////////////////////////////////////////////////////
80
81 dd65ead3 Leszek Koltunski
  float fillUpRotationVectAndOffset(float[] v, int[] possible)
82
    {
83
    mRotationVect = isVertical(v[possible[0]],v[possible[1]]) ? possible[0] : possible[1];
84
    return mTouch[mRotationVect]+0.5f;
85
    }
86 beb325a0 Leszek Koltunski
87
///////////////////////////////////////////////////////////////////////////////////////////////////
88
89 dd65ead3 Leszek Koltunski
  float returnAngle(float[] v, int[] possible)
90
    {
91
    float angle= (mRotationVect==possible[0] ? v[possible[1]] : -v[possible[0]]);
92
    if( mLastTouchedAxis==2 ) angle = -angle;
93
    return angle;
94
    }
95 beb325a0 Leszek Koltunski
}