-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMetaCube.java
172 lines (141 loc) · 5.1 KB
/
MetaCube.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
/* View license at project root. */
package com.gen.cube;
import java.awt.Graphics;
import java.awt.Color;
/* This is for sotring face side info */
public class MetaCube{
private MetaSubCube[][][] cube; // the sub cubes
/* Set solved */
public MetaCube(){
cube = new MetaSubCube[3][3][3];
for(int x=0;x<3;x++)
for(int y=0;y<3;y++)
for(int z=0;z<3;z++)
cube[x][y][z] = new MetaSubCube();
setSolved();
}
/* Set as solved rubiks cube */
private void setSolved(){
// bottom
for(int x=0;x<3;x++)
for(int y=0;y<3;y++)
cube[x][y][0].set(Cube.bottom,Color.yellow);
// top
for(int x=0;x<3;x++)
for(int y=0;y<3;y++)
cube[x][y][2].set(Cube.top,Color.cyan);
// back
for(int x=0;x<3;x++)
for(int z=0;z<3;z++)
cube[x][0][z].set(Cube.back,Color.red);
// front
for(int x=0;x<3;x++)
for(int z=0;z<3;z++)
cube[x][2][z].set(Cube.front,Color.orange);
// right
for(int y=0;y<3;y++)
for(int z=0;z<3;z++)
cube[2][y][z].set(Cube.right,Color.green);
// left
for(int y=0;y<3;y++)
for(int z=0;z<3;z++)
cube[0][y][z].set(Cube.left,Color.blue);
}
/* Rotate a side by a direction, rotation in one direction is 3 in the other */
public void rotate(int side,int dir){
if(side==Cube.right){
if(dir==Cube.clock)
rotateRightLeft(0);
if(dir==Cube.counter)
for(int i=0;i<3;i++)
rotateRightLeft(0);
}
if(side==Cube.left){
if(dir==Cube.clock)
rotateRightLeft(2);
if(dir==Cube.counter)
for(int i=0;i<3;i++)
rotateRightLeft(2);
}
if(side==Cube.top){
if(dir==Cube.clock)
rotateBottomTop(2);
if(dir==Cube.counter)
for(int i=0;i<3;i++)
rotateBottomTop(2);
}
if(side==Cube.bottom){
if(dir==Cube.clock)
rotateBottomTop(0);
if(dir==Cube.counter)
for(int i=0;i<3;i++)
rotateBottomTop(0);
}
if(side==Cube.back){
if(dir==Cube.clock)
rotateBackFront(0);
if(dir==Cube.counter)
for(int i=0;i<3;i++)
rotateBackFront(0);
}
if(side==Cube.front){
if(dir==Cube.clock)
rotateBackFront(2);
if(dir==Cube.counter)
for(int i=0;i<3;i++)
rotateBackFront(2);
}
}
/* Rotate */
private void rotateBackFront(int val){
MetaSubCube temp = cube[0][val][0];
cube[0][val][0] = cube[0][val][2]; // 00 - 02
cube[0][val][2] = cube[2][val][2]; // 02 - 22
cube[2][val][2] = cube[2][val][0]; // 22 - 20
cube[2][val][0] = temp; // 02 - 22
temp = cube[0][val][1];
cube[0][val][1] = cube[1][val][2]; // 01 - 12
cube[1][val][2] = cube[2][val][1]; // 12 - 21
cube[2][val][1] = cube[1][val][0]; // 21 - 10
cube[1][val][0] = temp; // 10 - 01
for(int x=0;x<3;x++)
for(int z=0;z<3;z++)
cube[x][val][z].rotateBackFront();
}
/* Rotate */
private void rotateBottomTop(int val){
MetaSubCube temp = cube[0][0][val];
cube[0][0][val] = cube[0][2][val]; // 00 - 02
cube[0][2][val] = cube[2][2][val]; // 02 - 22
cube[2][2][val] = cube[2][0][val]; // 22 - 20
cube[2][0][val] = temp; // 02 - 22
temp = cube[0][1][val];
cube[0][1][val] = cube[1][2][val]; // 01 - 12
cube[1][2][val] = cube[2][1][val]; // 12 - 21
cube[2][1][val] = cube[1][0][val]; // 21 - 10
cube[1][0][val] = temp; // 10 - 01
for(int x=0;x<3;x++)
for(int y=0;y<3;y++)
cube[x][y][val].rotateBottomTop();
}
/* Rotate */
private void rotateRightLeft(int val){
MetaSubCube temp = cube[val][0][0];
cube[val][0][0] = cube[val][0][2]; // 00 - 02
cube[val][0][2] = cube[val][2][2]; // 02 - 22
cube[val][2][2] = cube[val][2][0]; // 22 - 20
cube[val][2][0] = temp; // 02 - 22
temp = cube[val][0][1];
cube[val][0][1] = cube[val][1][2]; // 01 - 12
cube[val][1][2] = cube[val][2][1]; // 12 - 21
cube[val][2][1] = cube[val][1][0]; // 21 - 10
cube[val][1][0] = temp; // 10 - 01
for(int y=0;y<3;y++)
for(int z=0;z<3;z++)
cube[val][y][z].rotateRightLeft();
}
/* Return the cube's colors */
public Color[] colors(int x,int y,int z){
return cube[x][y][z].colors();
}
}