play.component.ts 12.8 KB
Newer Older
limingzhe's avatar
limingzhe committed
1 2 3 4
import {Component, ElementRef, ViewChild, OnInit, Input, OnDestroy, HostListener} from '@angular/core';

import {
  Label,
limingzhe's avatar
limingzhe committed
5
  MySprite, tweenChange,
limingzhe's avatar
limingzhe committed
6 7 8 9 10 11

} from './Unit';
import {res, resAudio} from './resources';

import {Subject} from 'rxjs';
import {debounceTime} from 'rxjs/operators';
liujiangnan's avatar
liujiangnan committed
12

limingzhe's avatar
limingzhe committed
13 14 15 16
import TWEEN from '@tweenjs/tween.js';



liujiangnan's avatar
liujiangnan committed
17 18 19 20

@Component({
  selector: 'app-play',
  templateUrl: './play.component.html',
liujiaxin's avatar
liujiaxin committed
21
  styleUrls: ['./play.component.css']
liujiangnan's avatar
liujiangnan committed
22
})
limingzhe's avatar
limingzhe committed
23 24
export class PlayComponent implements OnInit, OnDestroy {

liujiaxin's avatar
liujiaxin committed
25 26
  @ViewChild('canvas', {static: true }) canvas: ElementRef;
  @ViewChild('wrap', {static: true }) wrap: ElementRef;
limingzhe's avatar
limingzhe committed
27

limingzhe's avatar
limingzhe committed
28 29
  // 数据
  data;
limingzhe's avatar
limingzhe committed
30 31 32

  ctx;

limingzhe's avatar
limingzhe committed
33 34
  canvasWidth = 1280; // canvas实际宽度
  canvasHeight = 720; // canvas实际高度
limingzhe's avatar
limingzhe committed
35

limingzhe's avatar
limingzhe committed
36 37
  canvasBaseW = 1280; // canvas 资源预设宽度
  canvasBaseH = 720;  // canvas 资源预设高度
limingzhe's avatar
limingzhe committed
38

limingzhe's avatar
limingzhe committed
39 40
  mx; // 点击x坐标
  my; // 点击y坐标
limingzhe's avatar
limingzhe committed
41 42 43 44 45 46 47 48 49 50 51 52


  // 资源
  rawImages = new Map(res);
  rawAudios = new Map(resAudio);

  images = new Map();

  animationId: any;
  winResizeEventStream = new Subject();

  audioObj = {};
limingzhe's avatar
limingzhe committed
53

limingzhe's avatar
limingzhe committed
54 55 56 57 58 59
  renderArr;
  mapScale = 1;

  canvasLeft;
  canvasTop;

limingzhe's avatar
limingzhe committed
60
  saveKey = 'test_0011';
limingzhe's avatar
limingzhe committed
61 62


limingzhe's avatar
limingzhe committed
63 64 65 66
  btnLeft;
  btnRight;
  pic1;
  pic2;
limingzhe's avatar
limingzhe committed
67

limingzhe's avatar
limingzhe committed
68
  canTouch = true;
limingzhe's avatar
limingzhe committed
69

limingzhe's avatar
limingzhe committed
70
  curPic;
limingzhe's avatar
limingzhe committed
71 72 73 74 75 76 77

  @HostListener('window:resize', ['$event'])
  onResize(event) {
    this.winResizeEventStream.next();
  }


limingzhe's avatar
limingzhe committed
78
  ngOnInit() {
limingzhe's avatar
limingzhe committed
79

limingzhe's avatar
limingzhe committed
80
    this.data = {};
limingzhe's avatar
limingzhe committed
81

limingzhe's avatar
limingzhe committed
82 83 84
    // 获取数据
    const getData = (<any> window).courseware.getData;
    getData((data) => {
limingzhe's avatar
limingzhe committed
85

limingzhe's avatar
limingzhe committed
86 87 88 89
      if (data && typeof data == 'object') {
        this.data = data;
      }
      // console.log('data:' , data);
limingzhe's avatar
limingzhe committed
90

limingzhe's avatar
limingzhe committed
91 92
      // 初始化 各事件监听
      this.initListener();
limingzhe's avatar
limingzhe committed
93

limingzhe's avatar
limingzhe committed
94 95
      // 若无数据 则为预览模式 需要填充一些默认数据用来显示
      this.initDefaultData();
limingzhe's avatar
limingzhe committed
96

limingzhe's avatar
limingzhe committed
97 98 99 100 101 102
      // 初始化 音频资源
      this.initAudio();
      // 初始化 图片资源
      this.initImg();
      // 开始预加载资源
      this.load();
limingzhe's avatar
limingzhe committed
103

limingzhe's avatar
limingzhe committed
104
    }, this.saveKey);
limingzhe's avatar
limingzhe committed
105

limingzhe's avatar
limingzhe committed
106
  }
limingzhe's avatar
limingzhe committed
107

limingzhe's avatar
limingzhe committed
108 109 110
  ngOnDestroy() {
    window['curCtx'] = null;
    window.cancelAnimationFrame(this.animationId);
111 112 113 114 115 116 117 118 119 120
    this.cleanAudio();
  }


  cleanAudio() {
    if (this.audioObj) {
      for (const key in this.audioObj) {
        this.audioObj[key].pause();
      }
    }
limingzhe's avatar
limingzhe committed
121 122 123
  }


limingzhe's avatar
limingzhe committed
124
  load() {
limingzhe's avatar
limingzhe committed
125

limingzhe's avatar
limingzhe committed
126 127 128 129 130 131
    // 预加载资源
    this.loadResources().then(() => {
      window["air"].hideAirClassLoading(this.saveKey, this.data);
      this.init();
      this.update();
    });
limingzhe's avatar
limingzhe committed
132 133 134
  }


limingzhe's avatar
limingzhe committed
135
  init() {
limingzhe's avatar
limingzhe committed
136

limingzhe's avatar
limingzhe committed
137 138 139 140
    this.initCtx();
    this.initData();
    this.initView();
  }
limingzhe's avatar
limingzhe committed
141

limingzhe's avatar
limingzhe committed
142 143 144 145 146
  initCtx() {
    this.canvasWidth = this.wrap.nativeElement.clientWidth;
    this.canvasHeight = this.wrap.nativeElement.clientHeight;
    this.canvas.nativeElement.width = this.wrap.nativeElement.clientWidth;
    this.canvas.nativeElement.height = this.wrap.nativeElement.clientHeight;
limingzhe's avatar
limingzhe committed
147 148


limingzhe's avatar
limingzhe committed
149 150 151
    this.ctx = this.canvas.nativeElement.getContext('2d');
    this.canvas.nativeElement.width = this.canvasWidth;
    this.canvas.nativeElement.height = this.canvasHeight;
limingzhe's avatar
limingzhe committed
152

limingzhe's avatar
limingzhe committed
153
    window['curCtx'] = this.ctx;
154
    window['curImages'] = this.images;
limingzhe's avatar
limingzhe committed
155 156 157 158 159 160 161
  }






limingzhe's avatar
limingzhe committed
162 163 164 165 166
  updateItem(item) {
    if (item) {
      item.update();
    }
  }
limingzhe's avatar
limingzhe committed
167

limingzhe's avatar
limingzhe committed
168 169 170 171 172 173 174 175
  updateArr(arr) {
    if (!arr) {
      return;
    }
    for (let i = 0; i < arr.length; i++) {
      arr[i].update(this);
    }
  }
limingzhe's avatar
limingzhe committed
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







  initListener() {

    this.winResizeEventStream
      .pipe(debounceTime(500))
      .subscribe(data => {
        this.renderAfterResize();
      });


    // ---------------------------------------------
    const setParentOffset = () => {
      const rect = this.canvas.nativeElement.getBoundingClientRect();
      this.canvasLeft = rect.left;
      this.canvasTop = rect.top;
    };
    const setMxMyByTouch = (event) => {
      if (event.touches.length <= 0) {
        return;
      }
      if (this.canvasLeft == null) {
        setParentOffset();
      }
      this.mx = event.touches[0].pageX - this.canvasLeft;
      this.my = event.touches[0].pageY - this.canvasTop;
    };

    const setMxMyByMouse = (event) => {
      this.mx = event.offsetX;
      this.my = event.offsetY;
    };
    // ---------------------------------------------


    let firstTouch = true;

    const touchDownFunc = (e) => {
      if (firstTouch) {
        firstTouch = false;
        removeMouseListener();
      }
      setMxMyByTouch(e);
      this.mapDown(e);
    };
    const touchMoveFunc = (e) => {
      setMxMyByTouch(e);
      this.mapMove(e);
    };
    const touchUpFunc = (e) => {
      setMxMyByTouch(e);
      this.mapUp(e);
    };

    const mouseDownFunc = (e) => {
      if (firstTouch) {
        firstTouch = false;
        removeTouchListener();
      }
      setMxMyByMouse(e);
      this.mapDown(e);
    };
    const mouseMoveFunc = (e) => {
      setMxMyByMouse(e);
      this.mapMove(e);
    };
    const mouseUpFunc = (e) => {
      setMxMyByMouse(e);
      this.mapUp(e);
    };


    const element = this.canvas.nativeElement;

    const addTouchListener = () => {
      element.addEventListener('touchstart', touchDownFunc);
      element.addEventListener('touchmove', touchMoveFunc);
      element.addEventListener('touchend', touchUpFunc);
      element.addEventListener('touchcancel', touchUpFunc);
    };
    const removeTouchListener = () => {
      element.removeEventListener('touchstart', touchDownFunc);
      element.removeEventListener('touchmove', touchMoveFunc);
      element.removeEventListener('touchend', touchUpFunc);
      element.removeEventListener('touchcancel', touchUpFunc);
    };

    const addMouseListener = () => {
      element.addEventListener('mousedown', mouseDownFunc);
      element.addEventListener('mousemove', mouseMoveFunc);
      element.addEventListener('mouseup', mouseUpFunc);
    };
    const removeMouseListener = () => {
      element.removeEventListener('mousedown', mouseDownFunc);
      element.removeEventListener('mousemove', mouseMoveFunc);
      element.removeEventListener('mouseup', mouseUpFunc);
    };

    addMouseListener();
    addTouchListener();
  }


  playAudio(key, now = false, callback = null) {

    const audio = this.audioObj[key];
    if (audio) {
      if (now) {
        audio.pause();
        audio.currentTime = 0;
      }

      if (callback) {
        audio.onended = () => {
          callback();
        };
      }
      audio.play();
    }
  }



  loadResources() {
    const pr = [];
    this.rawImages.forEach((value, key) => {// 预加载图片

      const p = this.preload(value)
        .then(img => {
          this.images.set(key, img);
        })
        .catch(err => console.log(err));

      pr.push(p);
    });

limingzhe's avatar
limingzhe committed
317
    this.rawAudios.forEach((value, key) => {// 预加载音频
limingzhe's avatar
limingzhe committed
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

      const a = this.preloadAudio(value)
        .then(() => {
          // this.images.set(key, img);
        })
        .catch(err => console.log(err));

      pr.push(a);
    });
    return Promise.all(pr);
  }

  preload(url) {
    return new Promise((resolve, reject) => {
      const img = new Image();
      // img.crossOrigin = "anonymous";
      img.onload = () => resolve(img);
      img.onerror = reject;
      img.src = url;
    });
  }

  preloadAudio(url) {
    return new Promise((resolve, reject) => {
      const audio = new Audio();
      audio.oncanplay = (a) => {
        resolve();
      };
      audio.onerror = () => {
        reject();
      };
      audio.src = url;
      audio.load();
    });
  }


  renderAfterResize() {
    this.canvasWidth = this.wrap.nativeElement.clientWidth;
    this.canvasHeight = this.wrap.nativeElement.clientHeight;
    this.init();
  }



limingzhe's avatar
limingzhe committed
363 364


limingzhe's avatar
limingzhe committed
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
  checkClickTarget(target) {

    const rect = target.getBoundingBox();

    if (this.checkPointInRect(this.mx, this.my, rect)) {
      return true;
    }
    return false;
  }

  getWorlRect(target) {

    let rect = target.getBoundingBox();

    if (target.parent) {

      const pRect = this.getWorlRect(target.parent);
      rect.x += pRect.x;
      rect.y += pRect.y;
    }
    return rect;
  }

  checkPointInRect(x, y, rect) {
    if (x >= rect.x && x <= rect.x + rect.width) {
      if (y >= rect.y && y <= rect.y + rect.height) {
        return true;
      }
    }
    return false;
  }



limingzhe's avatar
limingzhe committed
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 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665


  addUrlToAudioObj(key, url = null, vlomue = 1, loop = false, callback = null) {

    const audioObj = this.audioObj;

    if (url == null) {
      url = key;
    }

    this.rawAudios.set(key, url);

    const audio = new Audio();
    audio.src = url;
    audio.load();
    audio.loop = loop;
    audio.volume = vlomue;

    audioObj[key] = audio;

    if (callback) {
      audio.onended = () => {
        callback();
      };
    }
  }

  addUrlToImages(url) {
    this.rawImages.set(url, url);
  }






  // ======================================================编写区域==========================================================================





  /**
   * 添加默认数据 便于无数据时的展示
   */
  initDefaultData() {

    if (!this.data.pic_url) {
      this.data.pic_url = 'assets/play/default/pic.jpg';
      this.data.pic_url_2 = 'assets/play/default/pic.jpg';
    }
  }


  /**
   * 添加预加载图片
   */
  initImg() {

    this.addUrlToImages(this.data.pic_url);
    this.addUrlToImages(this.data.pic_url_2);

  }

  /**
   * 添加预加载音频
   */
  initAudio() {

    // 音频资源
    this.addUrlToAudioObj(this.data.audio_url);
    this.addUrlToAudioObj(this.data.audio_url_2);

    // 音效
    this.addUrlToAudioObj('click', this.rawAudios.get('click'), 0.3);

  }



  /**
   * 初始化数据
   */
  initData() {

    const sx = this.canvasWidth / this.canvasBaseW;
    const sy = this.canvasHeight / this.canvasBaseH;
    const s = Math.min(sx, sy);
    this.mapScale = s;

    // this.mapScale = sx;
    // this.mapScale = sy;


    this.renderArr = [];



  }



  /**
   * 初始化试图
   */
  initView() {


    this.initPic();

    this.initBottomPart();

  }

  initBottomPart() {

    const btnLeft = new MySprite();
    btnLeft.init(this.images.get('btn_left'));
    btnLeft.x = this.canvasWidth - 150 * this.mapScale;
    btnLeft.y = this.canvasHeight - 100 * this.mapScale;

    btnLeft.setScaleXY(this.mapScale);

    this.renderArr.push(btnLeft);

    this.btnLeft = btnLeft;



    const btnRight = new MySprite();
    btnRight.init(this.images.get('btn_right'));
    btnRight.x = this.canvasWidth - 50 * this.mapScale;
    btnRight.y = this.canvasHeight - 100 * this.mapScale;
    btnRight.setScaleXY(this.mapScale);

    this.renderArr.push(btnRight);

    this.btnRight = btnRight;
  }

  initPic() {

    const maxW = this.canvasWidth * 0.7;

    const pic1 = new MySprite();
    pic1.init(this.images.get(this.data.pic_url));
    pic1.x = this.canvasWidth / 2;
    pic1.y = this.canvasHeight / 2;
    pic1.setScaleXY(maxW / pic1.width);

    this.renderArr.push(pic1);
    this.pic1 = pic1;


    const label1 = new Label();
    label1.text = this.data.text;
    label1.textAlign = 'center';
    label1.fontSize = 50;
    label1.fontName = 'BRLNSDB';
    label1.fontColor = '#ffffff';

    pic1.addChild(label1);





    const pic2 = new MySprite();
    pic2.init(this.images.get(this.data.pic_url_2));
    pic2.x = this.canvasWidth / 2 + this.canvasWidth;
    pic2.y = this.canvasHeight / 2;
    pic2.setScaleXY(maxW / pic2.width);

    this.renderArr.push(pic2);
    this.pic2 = pic2;

    this.curPic = pic1;
  }


  btnLeftClicked() {

    this.lastPage();
  }

  btnRightClicked() {

    this.nextPage();
  }

  lastPage() {

    if (this.curPic == this.pic1) {
      return;
    }

    this.canTouch = false;

    const moveLen = this.canvasWidth;
    tweenChange(this.pic1, {x: this.pic1.x + moveLen}, 1);
    tweenChange(this.pic2, {x: this.pic2.x + moveLen}, 1, () => {
      this.canTouch = true;
      this.curPic = this.pic1;
    });
  }

  nextPage() {

    if (this.curPic == this.pic2) {
      return;
    }

    this.canTouch = false;

    const moveLen = this.canvasWidth;
    tweenChange(this.pic1, {x: this.pic1.x - moveLen}, 1);
    tweenChange(this.pic2, {x: this.pic2.x - moveLen}, 1, () => {
      this.canTouch = true;
      this.curPic = this.pic2;
    });
  }

  pic1Clicked() {
    this.playAudio(this.data.audio_url);
  }

  pic2Clicked() {
    this.playAudio(this.data.audio_url_2);
  }





  mapDown(event) {

    if (!this.canTouch) {
      return;
    }

    if ( this.checkClickTarget(this.btnLeft) ) {
      this.btnLeftClicked();
      return;
    }

    if ( this.checkClickTarget(this.btnRight) ) {
      this.btnRightClicked();
      return;
    }

    if ( this.checkClickTarget(this.pic1) ) {
      this.pic1Clicked();
      return;
    }

    if ( this.checkClickTarget(this.pic2) ) {
      this.pic2Clicked();
      return;
    }

  }

  mapMove(event) {

  }

  mapUp(event) {
limingzhe's avatar
limingzhe committed
666 667 668 669

  }


limingzhe's avatar
limingzhe committed
670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685

  update() {

    // ----------------------------------------------------------
    this.animationId = window.requestAnimationFrame(this.update.bind(this));
    // 清除画布内容
    this.ctx.clearRect(0, 0, this.canvasWidth, this.canvasHeight);
    // tween 更新动画
    TWEEN.update();
    // ----------------------------------------------------------



    this.updateArr(this.renderArr);


limingzhe's avatar
limingzhe committed
686 687
  }

limingzhe's avatar
limingzhe committed
688 689


liujiangnan's avatar
liujiangnan committed
690
}