123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331 |
- <template>
- <div>
- <canvas :id="id" width="320" height="620" tabindex="0"/>
- </div>
- </template>
- <script lang="ts">
- import { Component, Prop, Vue } from "vue-property-decorator";
- import { v1 as uuid } from "uuid";
- import {SCanvasView, SColor, SPainter} from "@persagy-web/draw/lib";
- class TestView extends SCanvasView {
- map: number[][] = [];
- fkType: number = Number((Math.random() * 6).toFixed()); // 0-6
- dir: number = Number((Math.random() * 2).toFixed()); // 0-3
- fk: number[][][]=[
- [
- [0, 0, 0, 0],
- [0, 1, 1, 0],
- [0, 1, 1, 0],
- [0, 0, 0, 0],
- ],
- [
- [0, 0, 0, 0],
- [0, 1, 1, 0],
- [0, 1, 1, 0],
- [0, 0, 0, 0],
- ],
- [
- [0, 0, 0, 0],
- [0, 1, 1, 0],
- [0, 1, 1, 0],
- [0, 0, 0, 0],
- ],
- [
- [0, 0, 0, 0],
- [0, 1, 1, 0],
- [0, 1, 1, 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],
- [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, 0, 0, 0],
- [0, 1, 1, 0],
- [1, 1, 0, 0],
- [0, 0, 0, 0],
- ],
- [
- [0, 1, 0, 0],
- [0, 1, 1, 0],
- [0, 0, 1, 0],
- [0, 0, 0, 0],
- ],
- [
- [0, 0, 0, 0],
- [0, 0, 1, 1],
- [0, 1, 1, 0],
- [0, 0, 0, 0],
- ],
- [
- [0, 0, 0, 0],
- [0, 1, 0, 0],
- [0, 1, 1, 0],
- [0, 0, 1, 0],
- ],
- [
- [0, 0, 0, 0],
- [0, 1, 1, 0],
- [0, 0, 1, 1],
- [0, 0, 0, 0],
- ],
- [
- [0, 0, 0, 0],
- [0, 0, 1, 0],
- [0, 1, 1, 0],
- [0, 1, 0, 0],
- ],
- [
- [0, 0, 0, 0],
- [1, 1, 0, 0],
- [0, 1, 1, 0],
- [0, 0, 0, 0],
- ],
- [
- [0, 0, 1, 0],
- [0, 1, 1, 0],
- [0, 1, 0, 0],
- [0, 0, 0, 0],
- ],
- [
- [0, 0, 0, 0],
- [0, 1, 1, 0],
- [0, 0, 1, 0],
- [0, 0, 1, 0],
- ],
- [
- [0, 0, 0, 0],
- [0, 0, 1, 0],
- [1, 1, 1, 0],
- [0, 0, 0, 0],
- ],
- [
- [0, 1, 0, 0],
- [0, 1, 0, 0],
- [0, 1, 1, 0],
- [0, 0, 0, 0],
- ],
- [
- [0, 0, 0, 0],
- [0, 1, 1, 1],
- [0, 1, 0, 0],
- [0, 0, 0, 0],
- ],
- [
- [0, 0, 0, 0],
- [0, 1, 1, 0],
- [0, 1, 0, 0],
- [0, 1, 0, 0],
- ],
- [
- [0, 0, 0, 0],
- [1, 1, 1, 0],
- [0, 0, 1, 0],
- [0, 0, 0, 0],
- ],
- [
- [0, 0, 1, 0],
- [0, 0, 1, 0],
- [0, 1, 1, 0],
- [0, 0, 0, 0],
- ],
- [
- [0, 0, 0, 0],
- [0, 1, 0, 0],
- [0, 1, 1, 1],
- [0, 0, 0, 0],
- ],
- [
- [0, 0, 0, 0],
- [0, 0, 1, 0],
- [0, 1, 1, 1],
- [0, 0, 0, 0],
- ],
- [
- [0, 0, 0, 0],
- [0, 1, 0, 0],
- [0, 1, 1, 0],
- [0, 1, 0, 0],
- ],
- [
- [0, 0, 0, 0],
- [1, 1, 1, 0],
- [0, 1, 0, 0],
- [0, 0, 0, 0],
- ],
- [
- [0, 0, 1, 0],
- [0, 1, 1, 0],
- [0, 0, 1, 0],
- [0, 0, 0, 0],
- ]
- ];
- x = 5;
- y = 0;
- t = Date.now();
- constructor(id: string) {
- super(id);
- this.initMap();
- }
- onKeyDown(event: KeyboardEvent): void {
- console.log(event.code);
- if (event.code == "KeyW") {
- if (!this.isPz(this.x, this.y, (this.dir + 1) % 4)) {
- this.dir = (this.dir + 1) % 4;
- }
- } else if (event.code == "KeyA") {
- if (!this.isPz(this.x - 1, this.y, this.dir)) {
- this.x--;
- }
- } else if (event.code == "KeyD") {
- if (!this.isPz(this.x + 1, this.y, this.dir)) {
- this.x++;
- }
- }
- else if (event.code == "KeyS") {
- if (!this.isPz(this.x, this.y + 1, this.dir)) {
- this.y++;
- } else {
- this.fullMap();
- this.xc();
- }
- }
- this.update();
- }
- onDraw(painter: SPainter): void {
- painter.clearRect(0,0,this.width, this.height);
- painter.pen.color = SColor.Transparent;
- painter.brush.color = SColor.Red;
- this.drawMap(painter);
- this.drawFk(painter);
- if (Date.now() - this.t > 500) {
- if (!this.isPz(this.x, this.y + 1, this.dir)) {
- this.y++;
- } else {
- this.fullMap();
- this.xc();
- }
- this.t = Date.now();
- }
- this.update();
- }
- private initMap(): void {
- this.map = [];
- for (let row = 0; row < 22; row++) {
- const m1:number[] = []
- for (let col = 0; col < 14; col++) {
- if (row > 19 || col < 2 || col > 11) {
- m1.push(2);
- } else {
- m1.push(0);
- }
- }
- this.map.push(m1);
- }
- }
- private drawMap(painter: SPainter): void {
- for (let row = 0; row < 22; row++) {
- for (let col = 0; col < 14; col++) {
- if (this.map[row][col] == 1) {
- painter.drawRect(col * 30 + 11 - 60, row * 30 + 11, 28, 28);
- }
- if (this.map[row][col] == 2) {
- painter.drawRect(col * 30 + 11 - 60, row * 30 + 11, 28, 28);
- }
- }
- }
- }
- private drawFk(painter: SPainter): void {
- for (let row = 0; row < 4; row++) {
- for (let col = 0; col < 4; col++) {
- if (this.fk[this.fkType * 4 + this.dir][row][col] == 1) {
- painter.drawRect((col + this.x) * 30 + 11 - 60, (row + this.y) * 30 + 11, 28, 28);
- }
- }
- }
- }
- private isPz(x: number, y: number, dir: number): boolean {
- for (let row = 0; row < 4; row++) {
- for (let col = 0; col < 4; col++) {
- if (this.fk[this.fkType * 4 + dir][row][col] == 1 && this.map[y + row][x + col] != 0) {
- return true;
- }
- }
- }
- return false;
- }
- private fullMap() {
- for (let row = 0; row < 4; row++) {
- for (let col = 0; col < 4; col++) {
- if (this.fk[this.fkType * 4 + this.dir][row][col] == 1) {
- this.map[this.y + row][this.x + col] = 1;
- }
- }
- }
- this.x = 5;
- this.y = 0;
- this.fkType = Number((Math.random() * 6).toFixed());
- this.dir = Number((Math.random() * 2).toFixed());
- }
- private xc(): void{
- for (let row = 0; row < 20; row++) {
- let flag = true;
- for (let col = 0; col < 14; col++) {
- if (this.map[row][col] == 0) {
- flag = false;
- break;
- }
- }
- if(flag){
- this.map.splice(row,1);
- this.map.unshift([2,2,0,0,0,0,0,0,0,0,0,0,2,2]);
- // row--;
- }
- }
- }
- }
- @Component
- export default class ElsfkCanvas extends Vue {
- id: string = uuid();
- mounted(): void {
- new TestView(this.id);
- }
- }
- </script>
|