Project

General

Profile

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

distorted-objectlib / src / main / java / org / distorted / objectlib / touchcontrol / TouchControl.java @ 11fa413d

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.objectlib.touchcontrol;
21

    
22
import org.distorted.library.type.Static4D;
23

    
24
///////////////////////////////////////////////////////////////////////////////////////////////////
25

    
26
public abstract class TouchControl
27
  {
28
  // it doesn't matter where we touch a face - the list of enabled rotAxis will always be the same
29
  public static final int TYPE_NOT_SPLIT    = 0;
30
  // each face is split into several parts by lines coming from its center to the midpoints of each edge
31
  public static final int TYPE_SPLIT_EDGE   = 1;
32
  // each face is split into several parts by lines coming from its center to the vertices
33
  public static final int TYPE_SPLIT_CORNER = 2;
34

    
35
  public static final int TC_HEXAHEDRON   = 6;
36
  public static final int TC_TETRAHEDRON  = 4;
37
  public static final int TC_OCTAHEDRON   = 8;
38
  public static final int TC_DODECAHEDRON =12;
39
  public static final int TC_CUBOID       = 0;
40
  public static final int TC_CHANGING     = 1;
41

    
42
  float mObjectRatio;
43

    
44
///////////////////////////////////////////////////////////////////////////////////////////////////
45

    
46
  public TouchControl(float ratio)
47
    {
48
    mObjectRatio = ratio;
49
    }
50

    
51
///////////////////////////////////////////////////////////////////////////////////////////////////
52

    
53
  public void setObjectRatio(float ratio)
54
    {
55
    mObjectRatio = ratio;
56
    }
57

    
58
///////////////////////////////////////////////////////////////////////////////////////////////////
59

    
60
  public abstract boolean objectTouched(Static4D rotatedTouchPoint, Static4D rotatedCamera);
61
  public abstract void newRotation(int[] output, Static4D rotatedTouchPoint);
62
  public abstract void getCastedRotAxis(float[] output, Static4D quat, int rotIndex);
63
  public abstract int getTouchedCubitFace();
64
  public abstract int getTouchedCubit();
65
  public abstract float returnRotationFactor(int[] numLayers, int row);
66
  }
(1-1/8)