欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

使用html5 canvas创建太空游戏的示例

程序员文章站 2023-11-13 08:12:34
这篇文章主要介绍了使用html5 canvas创建太空游戏的示例,需要的朋友可以参考下... 14-05-08...

html5 canvas 可以快速创建出有助于游戏开发的轻型图片。 本部分说明如何使用 canvas 创建将在网页中运行的怀旧风格外太空飞行游戏。 此游戏的设计主要是为了展示使用 canvas 功能开发 web 游戏的基本原则。 此太空游戏的目标是,使您的宇宙飞船穿过分布着爆炸小行星的星域,安全返回基地。
本教程包含运行游戏的完整代码。代码是使用 html5 canvas 和 javascript 编写的,包含四个独立的有注释代码示例。 每个示例都涉及一项关键的编程任务,这些任务是开发游戏的不同方面所必需的。 第四个代码示例将所有任务组合在一起,创建了一个完整有效的游戏,您可以使用箭头键移动飞船,穿越分布着爆炸红色小行星的星域迷宫。 如果您的飞船撞到行星,则将被毁坏。 为了安全返回基地,您必须避开小行星,或在您撞上小行星之前将其炸毁。 将根据您移动飞船的次数和您发射的炸弹数来进行计分。
本主题包括一个独立的有注释代码示例,为您演示如何使用 html5 canvas 和 javascript 创建包含白色星星的随机区域,以及绘制外形像飞盘一样的橙绿相间的宇宙飞船。 此游戏图像是使用像素创建的。 通过使用即时模式,canvas 具有将像素直接放在屏幕上的能力。 此功能您能够轻松地在需要的位置,以选择的颜色绘制点、线和形状。 此代码示例将为您演示如何通过在形状中组合数学贝塞尔曲线和颜色来创建宇宙飞船。 然后,它将说明如何使用由弧形组成的小圆圈来绘制星星。
此代码示例包含以下任务来演示使用canvas 绘制这些游戏元素的基本原则:
1.向网页添加 canvas 元素
2.创建黑色背景
3.在背景上绘制随机星星
4.向背景添加宇宙飞船
代码示例的末尾是讨论材料,说明有关这些任务的设计和结构以及工作方式的详细信息。
canvas 代码示例:

复制代码
代码如下:

<!doctype html>
<html>
<head>
<script type="text/javascript">
// this function is called on page load.
function canvasspacegame() {
// get the canvas element.
canvas = document.getelementbyid("mycanvas");
// make sure you got it.
if (canvas.getcontext)
// if you have it, create a canvas user inteface element.
{
// specify 2d canvas type.
ctx = canvas.getcontext("2d");</p> <p>// paint it black.
ctx.fillstyle = "black";
ctx.rect(0, 0, 300, 300);
ctx.fill();</p> <p>// paint the starfield.
stars();</p> <p>// draw space ship.
makeship();
}
}</p> <p>// paint a random starfield.</p> <p>
function stars() {</p> <p>// draw 50 stars.
for (i = 0; i <= 50; i++) {
// get random positions for stars.
var x = math.floor(math.random() * 299)
var y = math.floor(math.random() * 299)</p> <p>// make the stars white
ctx.fillstyle = "white";</p> <p>// give the ship some room.
if (x < 30 || y < 30) ctx.fillstyle = "black";</p> <p>// draw an individual star.
ctx.beginpath();
ctx.arc(x, y, 3, 0, math.pi * 2, true);
ctx.closepath();
ctx.fill();
}
}</p> <p>function makeship() {</p> <p>// draw saucer bottom.
ctx.beginpath();
ctx.moveto(28.4, 16.9);
ctx.beziercurveto(28.4, 19.7, 22.9, 22.0, 16.0, 22.0);
ctx.beziercurveto(9.1, 22.0, 3.6, 19.7, 3.6, 16.9);
ctx.beziercurveto(3.6, 14.1, 9.1, 11.8, 16.0, 11.8);
ctx.beziercurveto(22.9, 11.8, 28.4, 14.1, 28.4, 16.9);
ctx.closepath();
ctx.fillstyle = "rgb(222, 103, 0)";
ctx.fill();</p> <p>// draw saucer top.
ctx.beginpath();
ctx.moveto(22.3, 12.0);
ctx.beziercurveto(22.3, 13.3, 19.4, 14.3, 15.9, 14.3);
ctx.beziercurveto(12.4, 14.3, 9.6, 13.3, 9.6, 12.0);
ctx.beziercurveto(9.6, 10.8, 12.4, 9.7, 15.9, 9.7);
ctx.beziercurveto(19.4, 9.7, 22.3, 10.8, 22.3, 12.0);
ctx.closepath();
ctx.fillstyle = "rgb(51, 190, 0)";
ctx.fill();
}
</script>
</head>
<body onload="canvasspacegame()">
<h1>
canvas space game
</h1>
<canvas id="mycanvas" width="300" height="300">
</canvas>
</body>
</html>

canvas 代码示例讨论

本节说明本代码示例的设计和结构。 它为您讲解代码的不同部分,以及整合它们的方式。 canvas 示例使用标准 html5 标头 ,以便浏览器可以将它作为 html5 规格的一部分加以区别。

代码分成两个主要部分:
1.主体代码
2.脚本代码

主体代码
在页面加载时,主体标记使用 onload 函数调用 canvasspacegame 函数。 canvas 标记是主体的一部分。 指定了 canvas 初始宽度和高度,还指定了 id 属性。 必须使用 id,才能将 canvas 元素添加到页面的对象模型中。

脚本代码
脚本代码包括三个函数: canvasspacegame、stars 和 makeship。 加载页面时将调用 canvasspacegame 函数。 stars 和 makeship 都是从 canvasspacegame 调用的。

canvasspacegame 函数
加载页面时将调用此函数。 它通过在主体代码中使用 canvas 元素 id 来获取画布, 然后获取画布的上下文,并准备好接受绘图。 将上下文初始化为 2d 画布后,使用 fillstyle、rect 和 fill 方法将画布绘制为黑色。

stars 函数
此函数是从 canvasspacegame 调用的。 它使用 for loop 在二维平面上生成 50 个潜在的星星位置,然后使用 fillstyle 创建白色。 随后,会进行一项检查,确认 x,y 坐标是否与左上角过于靠近。 如果星星绘制得与左上角过于靠近,则会将 fillstyle 更改为黑色,使其不会妨碍宇宙飞船。 随后,使用 arc 方法绘制每个星星并使用相应的填充颜色。
makeship
此函数是从 canvasspacegame 调用的。 使用一系列的 beginpath、moveto、beziercurveto、closepath、fillstyle 和 fill 方法,绘制一个简单的宇宙飞船。
飞船是通过绘制两个椭圆来创建的,一个椭圆在另一个的上面。 它首先在 adobe illustrator cs5 中绘制,然后使用 的 ai2canvas 插件将图像导出到 canvas。 生成的 canvas 代码已复制并粘贴到此示例的代码中。