| 24 | 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0}; |
| 25 | |
| 26 | public static void initRl() { |
| 27 | Center2 c = new Center2(); |
| 28 | for (int i = 0; i < 35 * 2; i++) { |
| 29 | for (int m = 0; m < 28; m++) { |
| 30 | c.setrl(i); |
| 31 | c.move(move2std[m]); |
| 32 | rlmv[i][m] = c.getrl(); |
| 33 | } |
| 34 | } |
| 35 | for (int i = 0; i < 70; i++) { |
| 36 | c.setrl(i); |
| 37 | for (int j = 0; j < 16; j++) { |
| 38 | rlrot[i][j] = (char) c.getrl(); |
| 39 | c.rot(0); |
| 40 | if ((j & 1) == 1) c.rot(1); |
| 41 | if ((j & 7) == 7) c.rot(2); |
| 42 | } |
| 43 | } |
| 44 | } |
| 45 | |
| 46 | public static void initCt() { |
| 47 | Center2 c = new Center2(); |