File size: 2,621 Bytes
1e92f2d |
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 |
import { List } from 'immutable';
import { blockShape, origin } from './const';
class Block {
constructor(option) {
this.type = option.type;
if (!option.rotateIndex) {
this.rotateIndex = 0;
} else {
this.rotateIndex = option.rotateIndex;
}
if (!option.timeStamp) {
this.timeStamp = Date.now();
} else {
this.timeStamp = option.timeStamp;
}
if (!option.shape) { // init
this.shape = List(blockShape[option.type].map(e => List(e)));
} else {
this.shape = option.shape;
}
if (!option.xy) {
switch (option.type) {
case 'I': // I
this.xy = List([0, 3]);
break;
case 'L': // L
this.xy = List([-1, 4]);
break;
case 'J': // J
this.xy = List([-1, 4]);
break;
case 'Z': // Z
this.xy = List([-1, 4]);
break;
case 'S': // S
this.xy = List([-1, 4]);
break;
case 'O': // O
this.xy = List([-1, 4]);
break;
case 'T': // T
this.xy = List([-1, 4]);
break;
default:
break;
}
} else {
this.xy = List(option.xy);
}
}
rotate() {
const shape = this.shape;
let result = List([]);
shape.forEach(m => m.forEach((n, k) => {
const index = m.size - k - 1;
if (result.get(index) === undefined) {
result = result.set(index, List([]));
}
const tempK = result.get(index).push(n);
result = result.set(index, tempK);
}));
const nextXy = [
this.xy.get(0) + origin[this.type][this.rotateIndex][0],
this.xy.get(1) + origin[this.type][this.rotateIndex][1],
];
const nextRotateIndex = this.rotateIndex + 1 >= origin[this.type].length ?
0 : this.rotateIndex + 1;
return {
shape: result,
type: this.type,
xy: nextXy,
rotateIndex: nextRotateIndex,
timeStamp: this.timeStamp,
};
}
fall(n = 1) {
return {
shape: this.shape,
type: this.type,
xy: [this.xy.get(0) + n, this.xy.get(1)],
rotateIndex: this.rotateIndex,
timeStamp: Date.now(),
};
}
right() {
return {
shape: this.shape,
type: this.type,
xy: [this.xy.get(0), this.xy.get(1) + 1],
rotateIndex: this.rotateIndex,
timeStamp: this.timeStamp,
};
}
left() {
return {
shape: this.shape,
type: this.type,
xy: [this.xy.get(0), this.xy.get(1) - 1],
rotateIndex: this.rotateIndex,
timeStamp: this.timeStamp,
};
}
}
export default Block;
|