Skip to content

WeirShi/vue3-tetris

Repository files navigation

Vue3 + Vite 做的俄罗斯方块游戏


本项目来源于俄罗斯方块, 原作者用的是Vue2,目前Vue3已经正式发布,因此在原作者的项目基础上重构为Vue3 + Vite + Vuex4.0构建的项目

戳:https://static.weirshi.com/vue3-tetris/dist/ 玩一玩!


内部结构与内容基本与原先一致,除了改写了Vue3的语法外,Vuex的语法也是使用了Composition API,以及去掉了音乐的Web Audio API使用

Vue3中用到的API

基础API:setup, onMounted, onBeforeMount, watch, computed, ref, reactive, toRefs

核心原理

  1. 游戏面板:10 * 20 二维数组的数据结构,每个空格填满时值为1,反之为0

  2. 每种形状的定义及数据结构

export const blockShape = {
  I: [[1, 1, 1, 1]],
  L: [[0, 0, 1], [1, 1, 1]],
  J: [[1, 0, 0], [1, 1, 1]],
  Z: [[1, 1, 0], [0, 1, 1]],
  S: [[0, 1, 1], [1, 1, 0]],
  O: [[1, 1], [1, 1]],
  T: [[0, 1, 0], [1, 1, 1]]
}
  1. 形状左右移动的操作以及碰壁的判定
  1. 下落速度的处理:通过使用setTimeout的定时器的时间来控制下落的快慢

  2. 对按钮同时绑定touchmouse事件,并对事件进行保存,当触发touch事件时不会触发mouse事件,mouse事件当中监听了mouseout事件来模拟mousedown
    源代码:/src/components/keyboard/index.vue

开发中遇到的问题

  • matrix组件中修改为template渲染,原作者项目在vue中使用了jsx语法,相较于jsx语法,template模板渲染时,需要手动判断render的时机。
  • 在做一些动画的时候,将嵌套的回调函数重构为了async/await语法机制调用,简单了代码维护的力度

About

Vue3+Vite+Vuex4.0构建俄罗斯方块游戏

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published