Project

General

Profile

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

magiccube / src / main / java / org / distorted / bandaged / BandagedObjectCuboid.java @ 462b983d

1
///////////////////////////////////////////////////////////////////////////////////////////////////
2
// Copyright 2023 Leszek Koltunski                                                               //
3
//                                                                                               //
4
// This file is part of Magic Cube.                                                              //
5
//                                                                                               //
6
// 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
///////////////////////////////////////////////////////////////////////////////////////////////////
9

    
10
package org.distorted.bandaged;
11

    
12
import org.distorted.library.main.DistortedScreen;
13
import org.distorted.library.mesh.MeshBase;
14
import org.distorted.library.type.Static3D;
15
import org.distorted.objectlib.helpers.FactoryBandagedCuboid;
16
import org.distorted.objectlib.main.InitData;
17
import org.distorted.objectlib.main.TwistyObject;
18
import org.distorted.objectlib.objects.TwistyBandagedCuboid;
19
import org.distorted.objectlib.shape.ShapeHexahedron;
20
import org.distorted.objectlib.touchcontrol.TouchControlHexahedron;
21

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

    
24
public class BandagedObjectCuboid extends BandagedObject
25
{
26
   BandagedObjectCuboid(DistortedScreen screen)
27
     {
28
     super(screen);
29
     }
30

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

    
33
   float[] getDist3D()
34
     {
35
     float max = mMax;
36

    
37
     float x = 0.5f*(mSize[0]/max);
38
     float y = 0.5f*(mSize[1]/max);
39
     float z = 0.5f*(mSize[2]/max);
40

    
41
     return new float[] {x,x,y,y,z,z};
42
     }
43

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

    
46
   float getDist2D()
47
     {
48
     return 0.5f;
49
     }
50

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

    
53
   int[] getColors()
54
     {
55
     return ShapeHexahedron.FACE_COLORS;
56
     }
57

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

    
60
  Static3D[] getFaceAxis()
61
    {
62
    return TouchControlHexahedron.FACE_AXIS;
63
    }
64

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

    
67
  boolean isAdjacent(float dx, float dy, float dz)
68
    {
69
    return dx*dx + dy*dy + dz*dz == 1;
70
    }
71

    
72
///////////////////////////////////////////////////////////////////////////////////////////////////
73

    
74
  float[][] getPositions()
75
    {
76
    float[][] pos = new float[mNumCubits][];
77
    int c=0;
78
    int sx = mSize[0];
79
    int sy = mSize[1];
80
    int sz = mSize[2];
81

    
82
    float begX = 0.5f*(1-sx);
83
    float begY = 0.5f*(1-sy);
84
    float begZ = 0.5f*(1-sz);
85

    
86
    for(int x=0; x<sx; x++)
87
      for(int y=0; y<sy; y++)
88
         for(int z=0; z<sz; z++)
89
           if( x==0 || x==sx-1 || y==0 || y==sy-1 || z==0 || z==sz-1 )
90
              {
91
              pos[c++] = new float[] { begX+x,begY+y,begZ+z };
92
              }
93

    
94
    return pos;
95
    }
96

    
97
///////////////////////////////////////////////////////////////////////////////////////////////////
98

    
99
  void getTouchedPosition(float[] output, int face, float pointX, float pointY)
100
    {
101
    float x = mSize[0];
102
    float y = mSize[1];
103
    float z = mSize[2];
104

    
105
    switch(face)
106
      {
107
      case 0: output[0] = (x-1)/2;
108
              output[1] = (int)( y*pointY+y/2)-(y-1)/2;
109
              output[2] = (int)(-z*pointX-z/2)+(z-1)/2;
110
              break;
111
      case 1: output[0] =-(x-1)/2;
112
              output[1] = (int)( y*pointY+y/2)-(y-1)/2;
113
              output[2] = (int)( z*pointX+z/2)-(z-1)/2;
114
              break;
115
      case 2: output[0] = (int)( x*pointX+x/2)-(x-1)/2;
116
              output[1] = (y-1)/2;
117
              output[2] = (int)(-z*pointY-z/2)+(z-1)/2;
118
              break;
119
      case 3: output[0] = (int)( x*pointX+x/2)-(x-1)/2;
120
              output[1] =-(y-1)/2;
121
              output[2] = (int)( z*pointY+z/2)-(z-1)/2;
122
              break;
123
      case 4: output[0] = (int)( x*pointX+x/2)-(x-1)/2;
124
              output[1] = (int)( y*pointY+y/2)-(y-1)/2;
125
              output[2] = (z-1)/2;
126
              break;
127
      case 5: output[0] = (int)(-x*pointX-x/2)+(x-1)/2;
128
              output[1] = (int)( y*pointY+y/2)-(y-1)/2;
129
              output[2] =-(z-1)/2;
130
              break;
131
      }
132
    }
133

    
134
///////////////////////////////////////////////////////////////////////////////////////////////////
135

    
136
  boolean tryChangeObject(int x, int y, int z)
137
     {
138
     if( mSize[0]!=x || mSize[1]!=y || mSize[2]!=z )
139
       {
140
       mSize[0] = x;
141
       mSize[1] = y;
142
       mSize[2] = z;
143
       mMax = x>y ? Math.max(x,z) : Math.max(y,z);
144
       mNumCubits = ( x<=1 || y<=1 || z<=1 ) ? x*y*z : x*y*z-(x-2)*(y-2)*(z-2);
145
       return true;
146
       }
147

    
148
     return false;
149
     }
150

    
151
///////////////////////////////////////////////////////////////////////////////////////////////////
152

    
153
  int computeProjectionAngle()
154
     {
155
     float quot1 = mSize[2]/ (float)mSize[0];
156
     float quot2 = mSize[2]/ (float)mSize[1];
157
     float quot3 = mSize[0]/ (float)mSize[2];
158
     float quot4 = mSize[0]/ (float)mSize[1];
159

    
160
     float quot5 = Math.max(quot1,quot2);
161
     float quot6 = Math.max(quot3,quot4);
162
     float quot7 = Math.max(quot5,quot6);
163

    
164
          if( quot7<=1.0f ) return 120;
165
     else if( quot7<=1.5f ) return 90;
166
     else if( quot7<=2.0f ) return 60;
167
     else                   return 30;
168
     }
169

    
170
///////////////////////////////////////////////////////////////////////////////////////////////////
171

    
172
  boolean isInsideFace(int face, float[] p)
173
    {
174
    float max = mMax;
175

    
176
    switch(face/2)
177
      {
178
      case 0: p[0] *= (max/mSize[2]); p[1] *= (max/mSize[1]); break;
179
      case 1: p[0] *= (max/mSize[0]); p[1] *= (max/mSize[2]); break;
180
      case 2: p[0] *= (max/mSize[0]); p[1] *= (max/mSize[1]); break;
181
      }
182

    
183
    return ( p[0]<=mDist2D && p[0]>=-mDist2D && p[1]<=mDist2D && p[1]>=-mDist2D );
184
    }
185

    
186
///////////////////////////////////////////////////////////////////////////////////////////////////
187

    
188
  MeshBase createMesh(float[] pos, boolean round)
189
     {
190
     FactoryBandagedCuboid factory = FactoryBandagedCuboid.getInstance();
191
     return factory.createMesh(pos,mSize[0],mSize[1],mSize[2],false,round);
192
     }
193

    
194
///////////////////////////////////////////////////////////////////////////////////////////////////
195

    
196
  TwistyObject createObject(int mode, float size)
197
     {
198
     float[][] pos = getCubitPositions();
199
     InitData data = new InitData( mSize,pos);
200
     return new TwistyBandagedCuboid( TwistyObject.MESH_NICE, mode, ShapeHexahedron.DEFAULT_ROT, new Static3D(0,0,0), size, data, null );
201
     }
202
}
(10-10/16)