1 Star 0 Fork 0

lao-guan/gameTest

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Main.js 1.15 KB
一键复制 编辑 原始数据 按行查看 历史
lao-guan 提交于 2018-05-15 07:24 . 创建小鸟类之前的代码
// 初始化整个游戏的精灵,作为游戏开始的入口
import {ResourceLoader} from "./js/base/ResourceLoader.js"
import { Background } from "./js/runtime/Background.js"
import { DataStore } from "./js/base/DataStore.js";
import { Director } from "./js/Director.js";
import { Land } from "./js/runtime/Land.js";
import { Birds } from "./js/player/Birds.js";
export class Main {
constructor() {
this.canvas = document.getElementById('game_canvas');
this.ctx = this.canvas.getContext('2d');
this.dataStore = DataStore.getInstance();
this.director = Director.getInstance();
const loader = ResourceLoader.create();
loader.onLoaded(map => this.onResourceFirstLoaded(map));
}
onResourceFirstLoaded(map) {
this.dataStore.ctx = this.ctx;
this.dataStore.res = map;
this.init();
}
init() {
// 首先重置游戏是没有结束的
this.director.isGameOver = false;
this.dataStore
.put('pencils', [])
.put('background', Background)
.put('land', Land)
.put('birds', Birds);
// 创建铅笔,要在游戏运行逻辑之前
this.director.createPencil();
this.director.run();
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/lao-guan/gameTest.git
git@gitee.com:lao-guan/gameTest.git
lao-guan
gameTest
gameTest
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385