Project

General

Profile

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

distorted-objectlib / src / main / java / org / distorted / objectlib / touchcontrol / TouchControl.java @ 509b223f

1 ab31cf6f Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
2
// Copyright 2020 Leszek Koltunski                                                               //
3
//                                                                                               //
4
// This file is part of Magic Cube.                                                              //
5
//                                                                                               //
6 71f8a172 Leszek Koltunski
// 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 ab31cf6f Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
9
10 c9c71c3f Leszek Koltunski
package org.distorted.objectlib.touchcontrol;
11 ab31cf6f Leszek Koltunski
12 c9c71c3f Leszek Koltunski
import org.distorted.library.type.Static4D;
13 ab31cf6f Leszek Koltunski
14
///////////////////////////////////////////////////////////////////////////////////////////////////
15
16 c9c71c3f Leszek Koltunski
public abstract class TouchControl
17
  {
18
  // it doesn't matter where we touch a face - the list of enabled rotAxis will always be the same
19
  public static final int TYPE_NOT_SPLIT    = 0;
20
  // each face is split into several parts by lines coming from its center to the midpoints of each edge
21
  public static final int TYPE_SPLIT_EDGE   = 1;
22
  // each face is split into several parts by lines coming from its center to the vertices
23
  public static final int TYPE_SPLIT_CORNER = 2;
24
25 cd2e8d4c Leszek Koltunski
  public static final int TC_HEXAHEDRON        =   6;
26
  public static final int TC_TETRAHEDRON       =   4;
27
  public static final int TC_OCTAHEDRON        =   8;
28
  public static final int TC_DODECAHEDRON      =  12;
29 5caf2641 Leszek Koltunski
  public static final int TC_ICOSAHEDRON       =  20;
30 cd2e8d4c Leszek Koltunski
  public static final int TC_CUBOID            =   0;
31 5caf2641 Leszek Koltunski
  public static final int TC_BALL              =   1;
32 cd2e8d4c Leszek Koltunski
  public static final int TC_CHANGING_MIRROR   = 100;
33
  public static final int TC_CHANGING_SQUARE   = 101;
34
  public static final int TC_CHANGING_SHAPEMOD = 102;
35 c9c71c3f Leszek Koltunski
36 57ef6378 Leszek Koltunski
  float mObjectRatio;
37
38
///////////////////////////////////////////////////////////////////////////////////////////////////
39
40 11fa413d Leszek Koltunski
  public TouchControl(float ratio)
41 57ef6378 Leszek Koltunski
    {
42 11fa413d Leszek Koltunski
    mObjectRatio = ratio;
43 57ef6378 Leszek Koltunski
    }
44
45
///////////////////////////////////////////////////////////////////////////////////////////////////
46
47
  public void setObjectRatio(float ratio)
48
    {
49
    mObjectRatio = ratio;
50
    }
51
52 0c5d8bf7 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
53
// Convert the 3D point3D into a 2D point on the same face surface, but in a different
54
// coordinate system: a in-plane 2D coord where the origin is in the point where the axis intersects
55
// the surface, and whose Y axis points 'north' i.e. is in the plane given by the 3D origin, the
56
// original 3D Y axis and our 2D in-plane origin.
57
// If those 3 points constitute a degenerate triangle which does not define a plane - which can only
58
// happen if axis is vertical (or in theory when 2D origin and 3D origin meet, but that would have to
59
// mean that the distance between the center of the Object and its faces is 0) - then we arbitrarily
60
// decide that 2D Y = (0,0,-1) in the North Pole and (0,0,1) in the South Pole)
61
// (ax,ay,az) - vector normal to the face surface.
62
63
  void convertTo2Dcoords(float[] point3D, float ax, float ay, float az , float[] output)
64
    {
65
    float y0,y1,y2; // base Y vector of the 2D coord system
66
67
    if( ax==0.0f && az==0.0f )
68
      {
69
      y0=0; y1=0; y2=-ay;
70
      }
71
    else if( ay==0.0f )
72
      {
73
      y0=0; y1=1; y2=0;
74
      }
75
    else
76
      {
77
      float norm = (float)(-ay/Math.sqrt(1-ay*ay));
78
      y0 = norm*ax; y1= norm*(ay-1/ay); y2=norm*az;
79
      }
80
81
    float x0 = y1*az - y2*ay;  //
82
    float x1 = y2*ax - y0*az;  // (2D coord baseY) x (axis) = 2D coord baseX
83
    float x2 = y0*ay - y1*ax;  //
84
85
    float originAlpha = point3D[0]*ax + point3D[1]*ay + point3D[2]*az;
86
87
    float origin0 = originAlpha*ax; // coords of the point where axis
88
    float origin1 = originAlpha*ay; // intersects surface plane i.e.
89
    float origin2 = originAlpha*az; // the origin of our 2D coord system
90
91
    float v0 = point3D[0] - origin0;
92
    float v1 = point3D[1] - origin1;
93
    float v2 = point3D[2] - origin2;
94
95
    output[0] = v0*x0 + v1*x1 + v2*x2;
96
    output[1] = v0*y0 + v1*y1 + v2*y2;
97
    }
98
99
///////////////////////////////////////////////////////////////////////////////////////////////////
100
// find the casted axis with which our move2D vector forms an angle closest to 90 deg.
101
102
  int computeRotationIndex(float[][] rotAxis, float[] move2D, int[] enabled)
103
    {
104
    float cosAngle, minCosAngle = Float.MAX_VALUE;
105
    int minIndex=0, index;
106
    float m0 = move2D[0];
107
    float m1 = move2D[1];
108
    int numAxis = enabled[0];
109
110
    for(int axis=1; axis<=numAxis; axis++)
111
      {
112
      index = enabled[axis];
113
      cosAngle = m0*rotAxis[index][0] + m1*rotAxis[index][1];
114
      if( cosAngle<0 ) cosAngle = -cosAngle;
115
116
      if( cosAngle<minCosAngle )
117
        {
118
        minCosAngle=cosAngle;
119
        minIndex = index;
120
        }
121
      }
122
123
    return minIndex;
124
    }
125
126 57ef6378 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
127
128
  public abstract boolean objectTouched(Static4D rotatedTouchPoint, Static4D rotatedCamera);
129 cd2e8d4c Leszek Koltunski
  public abstract void newRotation(int[] output, Static4D rotatedTouchPoint, Static4D quat);
130 57ef6378 Leszek Koltunski
  public abstract void getCastedRotAxis(float[] output, Static4D quat, int rotIndex);
131 11fa413d Leszek Koltunski
  public abstract int getTouchedCubitFace();
132
  public abstract int getTouchedCubit();
133 c9c71c3f Leszek Koltunski
  public abstract float returnRotationFactor(int[] numLayers, int row);
134
  }