生命游戏HTML5 Canvas代码
生命游戏是英国数学家约翰·何顿·康威在1970年发明的细胞自动机。它最初于1970年10月在《科学美国人》杂志中马丁·葛登能(Martin Gardner,1914年11月21日-2010年5月22日。又译:马丁·加德纳)的“数学游戏”专栏出现。
生命游戏其实是一个零玩家游戏,它包括一个二维矩形世界,这个世界中的每个方格居住着一个活着的或死了的细胞。一个 细胞在下一个时刻生死取决于相邻八个方格中活着的或死了的细胞的数量。如果相邻方格活着的细胞数量过多,这个细胞会因为资源匮乏而在下一个时刻死去;相 反,如果周围活细胞过少,这个细胞会因太孤单而死去。实际中,你可以设定周围活细胞的数目怎样时才适宜该细胞的生存。如果这个数目设定过高,世界中的大部 分细胞会因为找不到太多的活的邻居而死去,直到整个世界都没有生命;如果这个数目设定过低,世界中又会被生命充满而没有什么变化。实际中,这个数目一般选 取2或者3;这样整个生命世界才不至于太过荒凉或拥挤,而是一种动态的平衡。这样的话,游戏的规则就是:当一个方格周围有2或3个活细胞时,方格中的活细 胞在下一个时刻继续存活;即使这个时刻方格中没有活细胞,在下一个时刻也会“诞生”活细胞。在这个游戏中,还可以设定一些更加复杂的规则,例如当前方格的 状况不仅由父一代决定,而且还考虑祖父一代的情况。你还可以作为这个世界的上帝,随意设定某个方格细胞的死活,以观察对世界的影响。
在游戏的进行中,杂乱无序的细胞会逐渐演化出各种精致、有形的结构;这些结构往往有很好的对称性,而且每一代都在变化形状。一些形状已经锁定,不会逐代变化。有时,一些已经成形的结构会因为一些无序细胞的“入侵”而被破坏。但是形状和秩序经常能从杂乱中产生出来。
由于游戏是在一个二维平面中进行的,所以可以首先定义一个二元组,方便后续操作:
//二元组 function TwoDimensional(x, y){ var _x = x; var _y = y; this.GetX = function () { return _x; } this.SetX = function (x) { _x = x; } this.GetY = function () { return _y; } this.SetY = function (y) { _y = y; } }
为了美观起见,我们定义圆角矩形来表现我们的细胞:
//扩展RoundRect类 //params //x : 圆角矩阵左上方x轴坐标 //y : 圆角矩阵左上方y轴坐标 //width : 圆角矩阵宽度 //height : 圆角矩阵高度 //radius : 圆角矩阵圆角弧度 //degree : 圆角矩阵线宽 //color : 笔触颜色 //fillStyle : 填充颜色 //isFill : 是否填充 //isStroke : 是否绘制 CanvasRenderingContext2D.prototype.roundRect = function (x, y, width, height, radius, degree, color, fillStyle, isFill, isStroke) { if(typeof isStroke == 'undefined') isStroke = true; if(typeof radius == 'undefined') radius = 5; this.beginPath(); this.moveTo(x + radius, y); this.lineTo(x + width - radius, y); this.quadraticCurveTo(x + width, y, x + width, y + radius); this.lineTo(x + width, y + height - radius); this.quadraticCurveTo(x + width, y + height, x + width - radius, y + height); this.lineTo(x + radius, y + height); this.quadraticCurveTo(x, y + height, x, y + height - radius); this.lineTo(x, y + radius); this.quadraticCurveTo(x, y, x + radius, y); this.lineWidth = degree; this.strokeStyle = color; this.closePath(); this.fillStyle = fillStyle; if(isStroke) this.stroke(); if(isFill) this.fill(); }
然后,定义细胞类
//细胞类 //params //life 细胞是否生存 function Cell (life){ //是否生存 var _life = life; //获得细胞是否生存 this.IsLive = function (){ return _life; } //杀死该细胞 this.Kill = function (){ _life = false; } //复活该细胞 this.Relive = function (){ _life = true; } }
最后,写舞台类
//舞台类 //params //canvasName : 画布名 //rows : 行数 //columns : 列数 function Stage (canvasName, rows, columns){ //画布名 var _canvasName = canvasName; //网格行数 var _rows = rows; //网格列数 var _columns = columns; //画布句柄 var _canvas = document.getElementById(_canvasName); //画布高度 var _canvasHeight = _canvas.height; //画布宽度 var _canvasWidth = _canvas.width; //画笔 var _canvasContext = _canvas.getContext('2d'); //格宽 var _unitWidth = _canvasWidth / _columns; //格高 var _unitHeight = _canvasHeight / _rows; //细胞繁衍数 var _breedNumber = 0; //细胞生存数 var _liveNumber = 0; //细胞矩阵 var _cellMatrx = new Array(_rows); for(var i = 0; i = 0 && x + i = 0 && y + j
为了方便控制,在body中如下编写:
细胞繁衍数 :
细胞生存数 :
繁衍周期(毫秒):
<script> var isStart = false; var intervalHandler; var stageObject = new Stage("Stage", 50, 50); stageObject.Refresh(); function OnClickButton(){ if(isStart){ isStart = false; clearInterval(intervalHandler); document.getElementById('StartOrStopButton').value = '开始'; } else{ stageObject.SetBreedNumber(document.getElementById('CellsReproduceNumber').value); stageObject.SetLiveNumber(document.getElementById('CellsLiveNumber').value); intervalHandler = setInterval('stageObject.CheckAll()', document.getElementById('CellsBreedCycle').value); document.getElementById('StartOrStopButton').value = '停止'; isStart = true; } } </script>
上一篇: Linux 强制安装 rpm 包
下一篇: html+css网页的基本概念讲解
推荐阅读
-
HTML5网页版黑白子五子棋游戏的示例代码分享
-
javascript和HTML5利用canvas构建猜牌游戏实现算法_javascript技巧
-
详解HTML5中canvas支持触摸屏的签名面板的示例代码
-
HTML5 Canvas实现图片缩放、翻转、颜色渐变的代码示例_html5教程技巧
-
html5使用canvas实现图片下载功能的示例代码
-
canvas实现飞机打怪兽射击小游戏的示例代码
-
利用html5 canvas动态画饼状图的示例代码
-
HTML5 Canvas实现玫瑰曲线和心形图案的代码实例
-
html5 Canvas绘制线条 closePath()实例代码
-
html5 canvas 简单画板实现代码