48 lines
956 B
JavaScript
48 lines
956 B
JavaScript
|
// @flow
|
||
|
|
||
|
import BaseShape from "./BaseShape";
|
||
|
|
||
|
export default class ShapeI extends BaseShape {
|
||
|
|
||
|
#colors: Object;
|
||
|
|
||
|
constructor(colors: Object) {
|
||
|
super();
|
||
|
this.position.x = 3;
|
||
|
this.#colors = colors;
|
||
|
}
|
||
|
|
||
|
getColor(): string {
|
||
|
return this.#colors.tetrisI;
|
||
|
}
|
||
|
|
||
|
getShapes() {
|
||
|
return [
|
||
|
[
|
||
|
[0, 0, 0, 0],
|
||
|
[1, 1, 1, 1],
|
||
|
[0, 0, 0, 0],
|
||
|
[0, 0, 0, 0],
|
||
|
],
|
||
|
[
|
||
|
[0, 0, 1, 0],
|
||
|
[0, 0, 1, 0],
|
||
|
[0, 0, 1, 0],
|
||
|
[0, 0, 1, 0],
|
||
|
],
|
||
|
[
|
||
|
[0, 0, 0, 0],
|
||
|
[0, 0, 0, 0],
|
||
|
[1, 1, 1, 1],
|
||
|
[0, 0, 0, 0],
|
||
|
],
|
||
|
[
|
||
|
[0, 1, 0, 0],
|
||
|
[0, 1, 0, 0],
|
||
|
[0, 1, 0, 0],
|
||
|
[0, 1, 0, 0],
|
||
|
],
|
||
|
];
|
||
|
}
|
||
|
}
|