Project

General

Profile

« Previous | Next » 

Revision c9c71c3f

Added by Leszek Koltunski over 2 years ago

Abstract out the TouchControl stuff in preparation for its new type - TouchControlShapeChanging.

View differences:

src/main/java/org/distorted/objectlib/objects/TwistyRex.java
19 19

  
20 20
package org.distorted.objectlib.objects;
21 21

  
22
import static org.distorted.objectlib.movement.Movement.MOVEMENT_HEXAHEDRON;
23
import static org.distorted.objectlib.movement.Movement.TYPE_SPLIT_CORNER;
22
import static org.distorted.objectlib.touchcontrol.TouchControl.TC_HEXAHEDRON;
23
import static org.distorted.objectlib.touchcontrol.TouchControl.TYPE_SPLIT_CORNER;
24 24

  
25 25
import java.io.InputStream;
26 26

  
27 27
import org.distorted.library.type.Static3D;
28 28
import org.distorted.library.type.Static4D;
29 29

  
30
import org.distorted.objectlib.movement.MovementHexahedron;
30
import org.distorted.objectlib.touchcontrol.TouchControlHexahedron;
31 31
import org.distorted.objectlib.main.ObjectControl;
32 32
import org.distorted.objectlib.main.ObjectType;
33 33
import org.distorted.objectlib.helpers.ObjectShape;
......
108 108
    {
109 109
    if( mQuats==null ) initializeQuats();
110 110
    int status = retCubitSolvedStatus(cubit,numLayers);
111
    return status<0 ? null : buildSolvedQuats(MovementHexahedron.FACE_AXIS[status],mQuats);
111
    return status<0 ? null : buildSolvedQuats(TouchControlHexahedron.FACE_AXIS[status],mQuats);
112 112
    }
113 113

  
114 114
///////////////////////////////////////////////////////////////////////////////////////////////////
......
163 163

  
164 164
  public int getMovementType()
165 165
    {
166
    return MOVEMENT_HEXAHEDRON;
166
    return TC_HEXAHEDRON;
167 167
    }
168 168

  
169 169
///////////////////////////////////////////////////////////////////////////////////////////////////

Also available in: Unified diff