Project

General

Profile

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

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

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.object;
21

    
22
///////////////////////////////////////////////////////////////////////////////////////////////////
23

    
24
class RubikCubeMovement extends RubikObjectMovement
25
{
26
  RubikCubeMovement()
27
    {
28
    super(RubikCube.AXIS,2,0.5f);
29
    }
30

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

    
33
  private boolean isVertical(float x, float y)
34
    {
35
    return (y>x) ? (y>=-x) : (y< -x);
36
    }
37

    
38
///////////////////////////////////////////////////////////////////////////////////////////////////
39

    
40
  void fillPossibleRotations(int axis, int[] output)
41
    {
42
    switch(axis)
43
      {
44
      case 0: output[0]=2; output[1]=1; break; // (Z,Y) when looking at LEFT or RIGHT
45
      case 1: output[0]=0; output[1]=2; break; // (X,Z) when looking at BOTTOM or TOP
46
      case 2: output[0]=0; output[1]=1; break; // (X,Y) when looking at FRONT or BACK
47
      }
48
    }
49

    
50
///////////////////////////////////////////////////////////////////////////////////////////////////
51

    
52
  boolean isInsideFace(float[] p)
53
    {
54
    return ( p[0]<=0.5f && p[0]>=-0.5f && p[1]<=0.5f && p[1]>=-0.5f );
55
    }
56

    
57
///////////////////////////////////////////////////////////////////////////////////////////////////
58

    
59
  float fillUpRotationVectAndOffset(float[] v, int[] possible)
60
    {
61
    mRotationVect = isVertical(v[possible[0]],v[possible[1]]) ? possible[0] : possible[1];
62
    return mTouch[mRotationVect]+0.5f;
63
    }
64

    
65
///////////////////////////////////////////////////////////////////////////////////////////////////
66

    
67
  float returnAngle(float[] v, int[] possible)
68
    {
69
    float angle= (mRotationVect==possible[0] ? v[possible[1]] : -v[possible[0]]);
70
    if( mLastTouchedAxis==2 ) angle = -angle;
71
    return angle;
72
    }
73
}
(3-3/8)