Project

General

Profile

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

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

1 86308421 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
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 462b983d Leszek Koltunski
import org.distorted.objectlib.helpers.FactoryBandagedCuboid;
16 86308421 Leszek Koltunski
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 b2de7562 Leszek Koltunski
   float[] getDist3D()
34 86308421 Leszek Koltunski
     {
35 b2de7562 Leszek Koltunski
     float max = mMax;
36 86308421 Leszek Koltunski
37 b2de7562 Leszek Koltunski
     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 86308421 Leszek Koltunski
44 b2de7562 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
45 86308421 Leszek Koltunski
46 b2de7562 Leszek Koltunski
   float getDist2D()
47
     {
48
     return 0.5f;
49 86308421 Leszek Koltunski
     }
50
51
///////////////////////////////////////////////////////////////////////////////////////////////////
52
53 b2de7562 Leszek Koltunski
   int[] getColors()
54 86308421 Leszek Koltunski
     {
55 b2de7562 Leszek Koltunski
     return ShapeHexahedron.FACE_COLORS;
56 86308421 Leszek Koltunski
     }
57
58
///////////////////////////////////////////////////////////////////////////////////////////////////
59
60 b2de7562 Leszek Koltunski
  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 86308421 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
73
74 b2de7562 Leszek Koltunski
  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 86308421 Leszek Koltunski
              {
91 b2de7562 Leszek Koltunski
              pos[c++] = new float[] { begX+x,begY+y,begZ+z };
92 86308421 Leszek Koltunski
              }
93
94 b2de7562 Leszek Koltunski
    return pos;
95 86308421 Leszek Koltunski
    }
96
97
///////////////////////////////////////////////////////////////////////////////////////////////////
98
99 b2de7562 Leszek Koltunski
  void getTouchedPosition(float[] output, int face, float pointX, float pointY)
100 86308421 Leszek Koltunski
    {
101
    float x = mSize[0];
102
    float y = mSize[1];
103
    float z = mSize[2];
104
105
    switch(face)
106
      {
107 b2de7562 Leszek Koltunski
      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 86308421 Leszek Koltunski
              break;
111 b2de7562 Leszek Koltunski
      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 86308421 Leszek Koltunski
              break;
115 b2de7562 Leszek Koltunski
      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 86308421 Leszek Koltunski
              break;
119 b2de7562 Leszek Koltunski
      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 86308421 Leszek Koltunski
              break;
123 b2de7562 Leszek Koltunski
      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 86308421 Leszek Koltunski
              break;
127 b2de7562 Leszek Koltunski
      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 86308421 Leszek Koltunski
              break;
131
      }
132
    }
133
134 462b983d Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
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 86308421 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
171
172
  boolean isInsideFace(int face, float[] p)
173
    {
174 b2de7562 Leszek Koltunski
    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 86308421 Leszek Koltunski
    return ( p[0]<=mDist2D && p[0]>=-mDist2D && p[1]<=mDist2D && p[1]>=-mDist2D );
184
    }
185 b2de7562 Leszek Koltunski
186
///////////////////////////////////////////////////////////////////////////////////////////////////
187
188
  MeshBase createMesh(float[] pos, boolean round)
189
     {
190 462b983d Leszek Koltunski
     FactoryBandagedCuboid factory = FactoryBandagedCuboid.getInstance();
191
     return factory.createMesh(pos,mSize[0],mSize[1],mSize[2],false,round);
192 b2de7562 Leszek Koltunski
     }
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 86308421 Leszek Koltunski
}