对于小白来说用js实现俄罗斯方块还是有难度的,网上找了很多代码看,有的很长难懂,有的短小精悍,但不只用到了js还用到了框架,对于还未接触框架的小白宝宝,也只能无奈自己是小白了,自己写不出来那就找一篇纯js代码,弄懂也是一种收获吧。so 接下来就是我的理解咯,有不对的地方请多多包涵

个人觉得思路还是很重要的,那我就先以我理解之后,来说说其思路

首先整个编程过程用到了六个数组吧,第一个是全局数组shapes,存放了7种俄罗斯方块的形状,之后的数组都是动态创建并赋值的,divs[]长度为4 存放要下落的方块,div2[]长度也是4用来存放预告方块的,对应的就有shape[]用来说明下落方块的形状是怎么样,shape2[]用来存放预告方块形状的,这两个形状都是随机产生的,还有一个隐形的数组用来存放显示界面中所有方块的,个人认为最难的就是理清显示界面和抽象数组之间的关系吧,先上一个思维导图让大家直观的理清思路,之后慢慢详解代码

<style>        //设置好元素样式,到时候动态创建元素,直接设置其属性 根据类名确定样式

.c {
margin: 1px;
width: 19px;
height: 19px;
background: red;
position: absolute;    //下落方块样式
}

.d {
margin: 1px;
width: 19px;
height: 19px;
background: gray;
position: absolute; //下落到不能下落方块样式 其实就改变了颜色
}

.f {
top: 0px;
left: 0px;
background: black;
position: absolute; //整个游戏显示界面
}

.e {
top: 0px;
background: #151515;
position: absolute;   //预告方块界面
}

.g {
width: 100px;
height: 20px;
color: white;
position: absolute;  //分数显示界面
}
</style>

开始JS代码

<script type="text/javascript">
var row = 18;
var col = 10;
var announcement = 6;
var size = 20;
var isOver = false;
var shapes = ("0,1,1,1,2,1,3,1;1,0,1,1,1,2,2,2;2,0,2,1,2,2,1,2;0,1,1,1,1,2,2,2;1,2,2,2,2,1,3,1;1,1,2,1,1,2,2,2;0,2,1,2,1,1,2,2").split(";");
var tetris;
var container;

最难理解的可能就是shapes数组 .split(";");是将数组以;分割成一个个数组值,每个数组值单号代表top值,双号代表left值代表一种方块形状 此处上图

function createElm(tag, css) {
var elm = document.createElement(tag);
elm.className = css;
document.body.appendChild(elm);
return elm;
}

function Tetris(css, x, y, shape) {
// 创建4个div用来组合出各种方块
var myCss = css ? css : "c";
this.divs = [createElm("div", myCss), createElm("div", myCss), createElm("div", myCss), createElm("div", myCss)];
if(!shape) {
this.divs2 = [createElm("div", myCss), createElm("div", myCss), createElm("div", myCss), createElm("div", myCss)];
this.score = createElm("div", "g");
this.score.style.top = 10 * size + "px";
this.score.style.left = (col - -1) * size + "px";
this.score.innerHTML = "score:0";
}
this.container = null;
this.refresh = function() {
this.x = (typeof(x) != 'undefined') ? x : 3;
this.y = (typeof(y) != 'undefined') ? y : 0;
// 如果有传参,优先使用参数的,如果有预告,优先使用预告,都没有就自己生成
if(shape)
this.shape = shape;
else if(this.shape2)
this.shape = this.shape2;
else
this.shape = shape ? shape : shapes[Math.floor((Math.random() * shapes.length - 0.000000001))].split(",");
this.shape2 = shapes[Math.floor((Math.random() * shapes.length - 0.000000001))].split(",");
if(this.container && !this.container.check(this.x, this.y, this.shape)) {
isOver = true;
alert("游戏结束");
} else {
this.show();
this.showScore();
this.showAnnouncement();
}
}
// 显示方块
this.show = function() {
for(var i in this.divs) {
this.divs[i].style.top = (this.shape[i * 2 + 1] - -this.y) * size + "px";//顶部中间开始
this.divs[i].style.left = (this.shape[i * 2] - -this.x) * size + "px";
}
}
// 显示预告
this.showAnnouncement = function() {
for(var i in this.divs2) {
this.divs2[i].style.top = (this.shape2[i * 2 + 1] - -1) * size + "px";//定位在显示区
this.divs2[i].style.left = (this.shape2[i * 2] - -1 - -col) * size + "px";
}
}
// 显示分数
this.showScore = function() {
if(this.container && this.score) {
this.score.innerHTML = "score:" + this.container.score;
}
}
// 水平移动方块的位置
this.hMove = function(step) {
if(this.container.check(this.x - -step, this.y, this.shape)) {
this.x += step;
this.show();
}
}
// 垂直移动方块位置
this.vMove = function(step) {
if(this.container.check(this.x, this.y - -step, this.shape)) {
this.y += step;
this.show();
} else {
this.container.fixShape(this.x, this.y, this.shape);
this.container.findFull();
this.refresh();
}
}
// 旋转方块
this.rotate = function() {
var newShape = [this.shape[1], 3 - this.shape[0], this.shape[3], 3 - this.shape[2], this.shape[5], 3 - this.shape[4], this.shape[7], 3 - this.shape[6]];
if(this.container.check(this.x, this.y, newShape)) {
this.shape = newShape;
this.show();
}
}
this.refresh();
}

function Container() {
this.init = function() {
// 绘制方块所在区域
var bgDiv = createElm("div", "f");
bgDiv.style.width = size * col + "px";
bgDiv.style.height = size * row + "px";
// 绘制预告所在区域
var bgDiv = createElm("div", "e");
bgDiv.style.left = size * col + "px";
bgDiv.style.width = size * announcement + "px";
bgDiv.style.height = size * row + "px";
// 清空积分
this.score = 0;
}
this.check = function(x, y, shape) {
// 检查边界越界
var flag = false;
var leftmost = col;
var rightmost = 0;
var undermost = 0;
for(var i = 0; i < 8; i += 2) {
// 记录最左边水平坐标
if(shape[i] < leftmost)
leftmost = shape[i];
// 记录最右边水平坐标
if(shape[i] > rightmost)
rightmost = shape[i];
// 记录最下边垂直坐标
if(shape[i + 1] > undermost)
undermost = shape[i + 1];
// 判断是否碰撞
if(this[(shape[i + 1] - -y) * 100 - -(shape[i] - -x)])
flag = true;
}
// 判断是否到达极限高度
for(var m = 0; m < 3; m++)
for(var n = 0; n < col; n++)
if(this[m * 100 + n])
flag = true;
if((rightmost - -x + 1) > col || (leftmost - -x) < 0 || (undermost - -y + 1) > row || flag)
return false;
return true;
}
// 用灰色方块替换红色方块,并在容器中记录灰色方块的位置
this.fixShape = function(x, y, shape) {
var t = new Tetris("d", x, y, shape);
for(var i = 0; i < 8; i += 2)
this[(shape[i + 1] - -y) * 100 - -(shape[i] - -x)] = t.divs[i / 2];
}
// 遍历整个容器,判断是否可以消除
this.findFull = function() {
var s = 0;
for(var m = 0; m < row; m++) {
var count = 0;
for(var n = 0; n < col; n++)
if(this[m * 100 + n])
count++;
if(count == col) {
s++;
this.removeLine(m);
}
}
this.score -= -this.calScore(s);
}
this.calScore = function(s) {
if(s != 0)
return s - -this.calScore(s - 1)
else
return 0;
}
// 消除指定一行方块
this.removeLine = function(row) {
// 移除一行方块
for(var n = 0; n < col; n++)
document.body.removeChild(this[row * 100 + n]);
// 把所消除行上面所有的方块下移一行
for(var i = row; i > 0; i--) {
for(var j = 0; j < col; j++) {
this[i * 100 - -j] = this[(i - 1) * 100 - -j]//数组中 消除行上的所有元素逐行下移 (等同于在数组改变位置)
if(this[i * 100 - -j])//如果此下标有元素 让其定位到要显示的位置
this[i * 100 - -j].style.top = i * size + "px";
}
}
}
}

function init() {
container = new Container();
container.init();
tetris = new Tetris();
tetris.container = container;
document.onkeydown = function(e) {
if(isOver) return;
var e = window.event ? window.event : e;
switch(e.keyCode) {
case 38: //up
tetris.rotate();
break;
case 40: //down
tetris.vMove(1);
break;
case 37: //left
tetris.hMove(-1);
break;
case 39: //right
tetris.hMove(1);
break;
}
}
setInterval("if(!isOver) tetris.vMove(1)", 500);
}
</script>
</head>

<body οnlοad="init()">
</body>

</html>

纯js实现俄罗斯方块详解与源码相关推荐

  1. RN FlatList使用详解及源码解析

    FlatList使用详解及源码解析 前言 长列表或者无限下拉列表是最常见的应用场景之一.RN 提供的 ListView 组件,在长列表这种数据量大的场景下,性能堪忧.而在最新的 0.43 版本中,提供 ...

  2. hadoop作业初始化过程详解(源码分析第三篇)

    (一)概述 我们在上一篇blog已经详细的分析了一个作业从用户输入提交命令到到达JobTracker之前的各个过程.在作业到达JobTracker之后初始化之前,JobTracker会通过submit ...

  3. SpringMVC异常处理机制详解[附带源码分析]

    SpringMVC异常处理机制详解[附带源码分析] 参考文章: (1)SpringMVC异常处理机制详解[附带源码分析] (2)https://www.cnblogs.com/fangjian0423 ...

  4. 详解LAMP源码编译安装

    实战:LAMP源码编译安装 家住海边喜欢浪:zhang789.blog.51cto.com 目录 详解LAMP源码编译安装 LAMP简介 一.准备工作 二.编译安装 Apache 三.编译安装 MyS ...

  5. 详解 Python 源码之对象机制

    在Python中,对象就是在堆上申请的结构体,对象不能是被静态初始化的,并且也不能是在栈空间上生存的.唯一的例外就是类型对象(type object),Python中所有的类型对象都是被静态初始化的. ...

  6. spark RDD详解及源码分析

    spark RDD详解及源码分析 @(SPARK)[spark] spark RDD详解及源码分析 一基础 一什么是RDD 二RDD的适用范围 三一些特性 四RDD的创建 1由一个已经存在的scala ...

  7. spark 调度模块详解及源码分析

    spark 调度模块详解及源码分析 @(SPARK)[spark] spark 调度模块详解及源码分析 一概述 一三个主要的类 1class DAGScheduler 2trait TaskSched ...

  8. FPGA学习之路—接口(2)—I2C协议详解+Verilog源码分析

    FPGA学习之路--I2C协议详解+Verilog源码分析 定义 I2C Bus(Inter-Integrated Circuit Bus) 最早是由Philips半导体(现被NXP收购)开发的两线时 ...

  9. linux设备驱动开发详解源码,linux设备驱动开发详解光盘源码.rar

    压缩包 : linux设备驱动开发详解光盘源码.rar 列表 19/busybox源代码/busybox-1.2.1.tar.bz2 19/MTD工具/mtd-utils-1.0.0.tar.gz 1 ...

最新文章

  1. 重磅直播 | 自动驾驶中的视觉感知技术
  2. 13.QT信号槽的连接方式
  3. Cocoapods安装过程【转载】
  4. python找出在原图中的位置_用python简单处理图片(4):图像中的像素访问
  5. BT5下使用Armitage的一些问题
  6. python的变量名必须以什么开头_python以下划线开头的变量名含义
  7. python支持gui编程_Python GUI编程完整示例
  8. ActiveReports 报表控件官方中文新手教程 (1)-安装、激活以及产品资源
  9. 转:用人单位给计算机系学生的一封信
  10. no segments* file found in org.apache.lucene.store.SimpleFSDirectory
  11. 1.8 其他正则化方法
  12. pom.xml中依赖的optionaltrue/optional标签
  13. PHP三种字符串界定符的区别
  14. Ubuntu“无法解析或打开软件包的列表或是状态文件”的解决办法。
  15. python 详解re模块
  16. WIFI和蓝牙无线模块的应用小结
  17. 播布客里小布老师的全部视频收集
  18. 超参数调优方法整理大全
  19. 7723java世界Ol,《世界OL》装备镶嵌
  20. [书籍阅读] Spring Persistence with Hibernate

热门文章

  1. 一个电脑白痴和一个黑客的超爆笑的对话
  2. 简单快速生成序列化ID
  3. 清华大学计算机系刘景财,2017年清华大学计算机系硕士录取名单
  4. 02 离线安装管理ceph图形化界面calamari
  5. Ceph Calamari Server RPM编译
  6. Envoy 调试流量的常用技巧直播分享及问答整理
  7. 记一次 nginx的rewrite和proxy_pass操作
  8. 【附源码】计算机毕业设计JAVA智友少儿编程学习平台
  9. 快速关闭SELinux
  10. MacOS 校验iso sha256值、md5值,linux