-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcube.go
423 lines (380 loc) · 9.31 KB
/
cube.go
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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
// Copyright 2020 Daniel S. Fava. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package cube
import (
"fmt"
"math"
"math/rand"
)
type Color int
var printInColors bool
const (
zero Color = iota // the "zero color"
green // green
white // white
orange // orange
red // red
yellow // yellow
blue // blue
)
func (c Color) Abs() Color {
if c < 0 {
return -c
}
return c
}
// using ANSI escape codes for colors
func (c Color) String() string {
var names [7]string
if printInColors {
names = [...]string{" ", "\033[32mg\033[0m", "\033[37mw\033[0m", "\033[35mo\033[0m", "\033[31mr\033[0m", "\033[33my\033[0m", "\033[34mb\033[0m"} // no orange, using magenta instead
} else {
names = [...]string{" ", "g", "w", "o", "r", "y", "b"}
}
var str string
if c < 0 {
str = "-"
c = -c
}
return str + names[c]
}
var stringToColor map[string]Color
func ParseColor(str string) (Color, error) {
c, ok := stringToColor[str]
if !ok {
return c, fmt.Errorf("ParseColor %s", str)
}
return c, nil
}
type Vec [3]int // a vector in 3D
type CVec [3]Color // a "color vector
type Matrix [3][3]int // a matrix
func (a CVec) or(b CVec) CVec {
var c CVec
or := func(a Color, b Color) Color {
if a == zero {
return b
} else {
return a
}
}
c[0] = or(a[0], b[0])
c[1] = or(a[1], b[1])
c[2] = or(a[2], b[2])
return c
}
// Multiplying a matrix by a Cubi
//
// The function multiplies the matrix by the position vector and
// it multiplies the matrix by the color vector
func (m *Matrix) Mult(cubi Cubi) Cubi {
var ret Cubi
for i := 0; i <= 2; i++ {
ret.pv[i] = m[i][0]*cubi.pv[0] + m[i][1]*cubi.pv[1] + m[i][2]*cubi.pv[2]
ret.cv[i] = Color(m[i][0]*int(cubi.cv[0]) + m[i][1]*int(cubi.cv[1]) + m[i][2]*int(cubi.cv[2]))
}
return ret
}
type Cubi struct {
pv Vec // position vector
cv CVec // color vector
}
type Cube struct {
n uint
cubis []Cubi
}
// A string representation of a Rubik's cube
func (cube Cube) String() string {
var fl Flat
fl.PaintCube(cube)
return fl.String()
}
type Axis uint
const (
Xax Axis = iota
Yax
Zax
)
func (ax Axis) String() string {
names := [...]string{"x", "y", "z"}
return names[ax]
}
type Direction bool
const (
Clock = false
Counterclock = true
)
func (dir Direction) String() string {
if dir {
return "counterclockwise"
}
return "clockwise"
}
// Returns a 90 degree rotation matrix about an axis,
// either counter-clockwise or clockwise
func GetRotationMatrix(a Axis, counter Direction) Matrix {
var ret Matrix
switch a {
case Xax:
if counter {
ret[0][0] = 1
ret[1][2] = 1
ret[2][1] = -1
} else {
ret[0][0] = 1
ret[1][2] = -1
ret[2][1] = 1
}
case Yax:
if counter {
ret[0][2] = -1
ret[1][1] = 1
ret[2][0] = 1
} else {
ret[0][2] = 1
ret[1][1] = 1
ret[2][0] = -1
}
case Zax:
if counter {
ret[0][1] = 1
ret[1][0] = -1
ret[2][2] = 1
} else {
ret[0][1] = -1
ret[1][0] = 1
ret[2][2] = 1
}
}
return ret
}
func (cube Cube) GetSize() uint {
return cube.n
}
// Performs a move on a cube by turning part of the
// cube about an Axis in a particular direction
func (cube Cube) Turn(a Axis, idx int, counter Direction) Cube {
ret := cube.New()
m := GetRotationMatrix(a, counter)
for cube_idx := range cube.cubis {
if cube.cubis[cube_idx].pv[a] == idx {
// We rotate via matrix multiplication
ret.cubis[cube_idx] = m.Mult(cube.cubis[cube_idx])
}
}
return ret
}
// Perform all moves on a cube
func (cube Cube) GetAllTurns() []Cube {
var ret []Cube
for _, ax := range [...]Axis{Xax, Yax, Zax} {
for idx := -int(cube.n) / 2; idx <= int(cube.n)/2; idx++ {
for _, dir := range [...]Direction{Counterclock, Clock} {
if cube.n%2 == 0 && idx == 0 {
continue
}
newCube := cube.Turn(ax, idx, dir)
if cube.n%2 == 1 && idx == 0 {
// Preserves a canonical cube
newCube = newCube.Rotate(ax, !dir)
}
ret = append(ret, newCube)
}
}
}
return ret
}
// Rotate the whole cube in 3 dimensions
func (cube Cube) Rotate(a Axis, counter Direction) Cube {
ret := cube.New()
m := GetRotationMatrix(a, counter)
for cube_idx := range cube.cubis {
// We rotate via matrix multiplication
ret.cubis[cube_idx] = m.Mult(cube.cubis[cube_idx])
}
return ret
}
// Perform all rotations on a cube
// There are 24 equivalence classes (rotations) of a cube.
func (cube Cube) GetAllRotations() []Cube {
var ret []Cube
current := cube
explored := make(map[string]Cube)
var toExplore []Cube
for {
explored[current.String()] = current
for _, ax := range [...]Axis{Xax, Yax, Zax} {
for _, dir := range [...]Direction{Counterclock, Clock} {
other := current.Rotate(ax, dir)
if _, in := explored[other.String()]; !in {
toExplore = append(toExplore, other)
}
}
}
if len(toExplore) == 0 {
// Nothing more to explore
for k := range explored {
ret = append(ret, explored[k])
}
return ret
}
current = toExplore[0]
toExplore = toExplore[1:len(toExplore)]
}
}
// Returns a cube of size n^3 in its initial configuration.
// Handles cubes of n>2. Cannot handle the trivial 1x1 cube
//
// Initializes the cube to:
// green at the center (y>0)
// blue to the back (y<0)
// red to the left (x<0)
// orange to the right (x>0)
// yellow upward (z>0)
// white downward (z<0)
func (cube *Cube) Init(n uint) {
(*cube).n = n
(*cube).cubis = make([]Cubi, int(math.Pow(float64(n), 3)-math.Pow(float64(n)-2, 3)))
ncubi := 0
for x := -int(n) / 2; x <= int(n)/2; x++ {
if x == 0 && n%2 == 0 {
continue
}
for y := -int(n) / 2; y <= int(n)/2; y++ {
if y == 0 && n%2 == 0 {
continue
}
for z := -int(n) / 2; z <= int(n)/2; z++ {
if z == 0 && n%2 == 0 {
continue
}
// Determine whether it's a center cubi (not an exterior-facing cubi)
if x < int(n)/2 && x > -int(n)/2 &&
y < int(n)/2 && y > -int(n)/2 &&
z < int(n)/2 && z > -int(n)/2 {
continue
}
// Give xc a color if x is at the Cubi has a face on
// either side of the x axis. Same for yc, zc and the y, z axes.
extremity := int(n / 2)
var xc, yc, zc Color
if x == extremity {
xc = orange
} else if x == -extremity {
xc = -red
}
if y == extremity {
yc = green
} else if y == -extremity {
yc = -blue
}
if z == extremity {
zc = yellow
} else if z == -extremity {
zc = -white
}
cube.cubis[ncubi] = Cubi{cv: CVec{xc, yc, zc}, pv: Vec{x, y, z}}
ncubi += 1
}
}
}
}
func (cube *Cube) Shuffle(times uint) {
axes := [...]Axis{Xax, Yax, Zax}
idxs := make([]int, cube.n+(cube.n+1)%2)
for idx := -int(cube.n) / 2; idx <= int(cube.n)/2; idx++ {
idxs[idx+int(cube.n)/2] = idx
}
dirs := [...]Direction{Counterclock, Clock}
var perms uint
for perms < times {
ax := axes[rand.Intn(len(axes))] // pick an axis
idx := idxs[rand.Intn(len(idxs))] // pick an index
dir := dirs[rand.Intn(len(dirs))] // pick a direction
if cube.n%2 == 0 && idx == 0 {
continue
}
(*cube) = cube.Turn(ax, idx, dir)
if idx == 0 { // Preserve the cube's orientation
(*cube) = cube.Rotate(ax, !dir)
}
perms += 1
}
}
func (cube *Cube) IsSolved() bool {
// We could do with [3][2]Color, I'm wasting a bit of memory to simplify
// the algorithm:
// Signs -1 and 1 map to array indexes 0 and 2 as opposed to 0 and 1
var sideColor [3][3]Color
extremity := int((cube.n) / 2)
for idx := range cube.cubis {
for _, ax := range [...]Axis{Xax, Yax, Zax} {
for sign := range []int{-1, 1} {
if cube.cubis[idx].pv[ax] == sign*extremity {
if sideColor[ax][sign+1] == zero {
sideColor[ax][sign+1] = cube.cubis[idx].cv[ax]
} else if sideColor[ax][sign+1] != cube.cubis[idx].cv[ax] {
return false
}
}
}
}
}
return true
}
func (cube *Cube) IsCanonical() bool {
if cube.n%2 == 0 { // Only odd sized cubes can be canonical
return false
}
extremity := int(cube.n / 2)
canon := true
for _, cubi := range cube.cubis {
switch cubi.pv {
case Vec{-extremity, 0, 0}:
canon = canon && (cubi.cv[Xax] == -red)
case Vec{extremity, 0, 0}:
canon = canon && (cubi.cv[Xax] == orange)
case Vec{0, -extremity, 0}:
canon = canon && (cubi.cv[Yax] == -blue)
case Vec{0, extremity, 0}:
canon = canon && (cubi.cv[Yax] == green)
case Vec{0, 0, -extremity}:
canon = canon && (cubi.cv[Zax] == -white)
case Vec{0, 0, extremity}:
canon = canon && (cubi.cv[Zax] == yellow)
}
}
return canon
}
// A copy-constructor
func (cube Cube) New() Cube {
var ret Cube
ret.n = cube.n
ret.cubis = make([]Cubi, len(cube.cubis))
for idx := range cube.cubis {
ret.cubis[idx] = cube.cubis[idx]
}
return ret
}
func init() {
printInColors = true
rand.Seed(42) // Pseudo random
stringToColor = make(map[string]Color)
stringToColor[" "] = zero
stringToColor["g"] = green
stringToColor["w"] = white
stringToColor["o"] = orange
stringToColor["r"] = red
stringToColor["y"] = yellow
stringToColor["b"] = blue
stringToColor["\033[32mg\033[0m"] = green
stringToColor["\033[37mw\033[0m"] = white
stringToColor["\033[35mo\033[0m"] = orange
stringToColor["\033[31mr\033[0m"] = red
stringToColor["\033[33my\033[0m"] = yellow
stringToColor["\033[34mb\033[0m"] = blue
}
func PrintInColors(flag bool) {
printInColors = flag
}