`
gutou9
  • 浏览: 144435 次
  • 性别: Icon_minigender_1
  • 来自: 大连
社区版块
存档分类
最新评论

(译)开发第一个Html5游戏(二)

    博客分类:
  • Web
阅读更多

 

HTML5 Game Development - Lesson 2

开发第一个Html5游戏(二)

今天我们继续学习Html5系列游戏开发,我们会在第一章的基础上做一些扩展,加入颜色渐变、

绘制文本、自定义文本样式、以及动画,我们还将学习UI中一个非常重要的元素,按钮。

我们的上一篇文章: (译)开发第一个Html5游戏(一) .

 

 

 

 

JS代码:(完整代码请看文章结尾链接)

var canvas, ctx;
var circles = [];
var selectedCircle;
var hoveredCircle;
var button;
var moving = false;
var speed = 2.0;

// -------------------------------------------------------------

// objects :

function Circle(x, y, radius){
    this.x = x;
    this.y = y;
    this.radius = radius;
}

function Button(x, y, w, h, state, image) {
    this.x = x;
    this.y = y;
    this.w = w;
    this.h = h;
    this.state = state;
    this.imageShift = 0;
    this.image = image;
}
// -------------------------------------------------------------

// draw functions :

function clear() { // clear canvas function
    ctx.clearRect(0, 0, ctx.canvas.width, ctx.canvas.height);
}

function drawCircle(ctx, x, y, radius) { // draw circle function
    ctx.fillStyle = 'rgba(255, 35, 55, 1.0)';

    ctx.beginPath();
    ctx.arc(x, y, radius, 0, Math.PI*2, true);
    ctx.closePath();

    ctx.fill();

    ctx.lineWidth = 1;
    ctx.strokeStyle = 'rgba(0, 0, 0, 1.0)';
    ctx.stroke(); // draw border
}

function drawScene() { // main drawScene function
    clear(); // clear canvas

    // 绘制文本
    ctx.font = '42px DS-Digital';
    ctx.textAlign = 'center';
    ctx.fillStyle = '#ffffff';
    ctx.fillText('Welcome to lesson #2', ctx.canvas.width/2, 50);

    //这里实现颜色渐变
    var bg_gradient = ctx.createLinearGradient(0, 200, 0, 400);
    bg_gradient.addColorStop(0.0, 'rgba(255, 0, 0, 0.8)');
    bg_gradient.addColorStop(0.5, 'rgba(0, 255, 0, 0.8)');
    bg_gradient.addColorStop(1.0, 'rgba(0, 0, 255, 0.8)');

    ctx.beginPath(); // custom shape begin
    ctx.fillStyle = bg_gradient;
    ctx.moveTo(circles[0].x, circles[0].y);
    for (var i=0; i<circles.length; i++) {
        ctx.lineTo(circles[i].x, circles[i].y);
    }
    ctx.closePath(); // custom shape end
    ctx.fill(); // fill custom shape

    ctx.lineWidth = 2;
    ctx.strokeStyle = 'rgba(0, 0, 255, 0.5)';
    ctx.stroke(); // draw border

    // reverting direction
    if (circles[0].x <= 300 || circles[0].x >= 385) {
        speed = -speed;
    }

    // 实现图像抖动
    if (moving) {
        circles[0].x -= speed;
        circles[0].y -= speed;
        circles[1].x += speed;
        circles[1].y -= speed;
        circles[2].x += speed;
        circles[2].y += speed;
        circles[3].x -= speed;
        circles[3].y += speed;
    }

    drawCircle(ctx, circles[0].x, circles[0].y, (hoveredCircle == 0) ? 25 : 15);
    drawCircle(ctx, circles[1].x, circles[1].y, (hoveredCircle == 1) ? 25 : 15);
    drawCircle(ctx, circles[2].x, circles[2].y, (hoveredCircle == 2) ? 25 : 15);
    drawCircle(ctx, circles[3].x, circles[3].y, (hoveredCircle == 3) ? 25 : 15);

    // draw button
    ctx.drawImage(button.image, 0, button.imageShift, button.w, button.h, button.x, button.y, button.w, button.h);

    // draw text
    ctx.font = '30px DS-Digital';
    ctx.fillStyle = '#ffffff';
    ctx.fillText('Play/Pause', 135, 480);
    ctx.fillText(button.state, 135, 515);
}

// -------------------------------------------------------------

// initialization

$(function(){
    canvas = document.getElementById('scene');
    ctx = canvas.getContext('2d');

    var circleRadius = 15;
    var width = canvas.width;
    var height = canvas.height;

    // lets add 4 circles manually
    circles.push(new Circle(width / 2 - 20, height / 2 - 20, circleRadius));
    circles.push(new Circle(width / 2 + 20, height / 2 - 20, circleRadius));
    circles.push(new Circle(width / 2 + 20, height / 2 + 20, circleRadius));
    circles.push(new Circle(width / 2 - 20, height / 2 + 20, circleRadius));

    // 图片按钮
    buttonImage = new Image();
    buttonImage.src = 'images/button.png';
    buttonImage.onload = function() {
    }
    button = new Button(50, 450, 180, 120, 'normal', buttonImage);

    // binding mousedown event (for dragging)
    $('#scene').mousedown(function(e) {

        var mouseX = e.layerX || 0;
        var mouseY = e.layerY || 0;
        for (var i=0; i<circles.length; i++) { // checking through all circles - are mouse down inside circle or not
            var circleX = circles[i].x;
            var circleY = circles[i].y;
            var radius = circles[i].radius;
            if (Math.pow(mouseX-circleX,2) + Math.pow(mouseY-circleY,2) < Math.pow(radius,2)) {
                selectedCircle = i;
                break;
            }
        }

        // button behavior
        if (mouseX > button.x && mouseX < button.x+button.w && mouseY > button.y && mouseY < button.y+button.h) {
            button.state = 'pressed';
            button.imageShift = 262;
        }
    });

    $('#scene').mousemove(function(e) { // binding mousemove event for dragging selected circle
        var mouseX = e.layerX || 0;
        var mouseY = e.layerY || 0;
        if (selectedCircle != undefined) {
            // var canvasPosition = $(this).offset();

            var radius = circles[selectedCircle].radius;
            circles[selectedCircle] = new Circle(mouseX, mouseY,radius); // changing position of selected circle
        }

        hoveredCircle = undefined;
        for (var i=0; i<circles.length; i++) { // checking through all circles - are mouse down inside circle or not
            var circleX = circles[i].x;
            var circleY = circles[i].y;
            var radius = circles[i].radius;

            if (Math.pow(mouseX-circleX,2) + Math.pow(mouseY-circleY,2) < Math.pow(radius,2)) {
                hoveredCircle = i;
                circles[hoveredCircle] = new Circle(circleX, circleY, 25);
                break;
            }
        }

        // button behavior
        if (button.state != 'pressed') {
            button.state = 'normal';
            button.imageShift = 0;
            if (mouseX > button.x && mouseX < button.x+button.w && mouseY > button.y && mouseY < button.y+button.h) {
                button.state = 'hover';
                button.imageShift = 131;
            }
        }
    });

    $('#scene').mouseup(function(e) { // on mouseup - cleaning selectedCircle
        selectedCircle = undefined;

        // button behavior
        if (button.state == 'pressed') {
            moving = !moving;
        }
        button.state = 'normal';
        button.imageShift = 0;
    });

    setInterval(drawScene, 30); // loop drawScene
});
 

原文地址 http://www.script-tutorials.com/html5-game-development-lesson-2/

Demo地址 http://www.script-tutorials.com/demos/157/index.html

源码下载  http://www.script-tutorials.com/demos/157/source.zip

0
0
分享到:
评论

相关推荐

    新手入门级html5游戏开发源码(蘑菇熊)

    本资源“新手入门级html5游戏开发源码(蘑菇熊)”是一个很好的起点,它提供了一系列逐步教程,帮助初学者理解游戏开发的核心概念。 首先,我们来看标题中的"蘑菇熊",这很可能是游戏的主题或主角,展示了如何设计...

    html5游戏开发指南

    1. **Canvas元素**:HTML5的Canvas是一个二维可绘图区域,通过JavaScript来绘制图形,包括游戏中的角色、背景和动态效果。开发者可以通过`context`对象的各种方法如`fillRect()`、`strokeRect()`、`beginPath()`等...

    HTML5游戏开发素材

    HTML5游戏开发素材 HTML5游戏开发素材 HTML5游戏开发素材 HTML5游戏开发素材

    h5移动端游戏开发工具

    其中,LayaAirHTML5开源引擎作为一个强大的工具,为开发者们打开了中大型HTML5重度游戏的开发大门,极大地降低了开发难度,提升了开发效率。 LayaAirHTML5引擎是一款专注于2D和3D游戏开发的开源引擎,它具备高效、...

    开发html5 2d 赛车游戏以及打包发布为手机APP 第一话 工欲善其事

    Phaser是一个流行的游戏开发框架,它基于HTML5 Canvas构建,提供了丰富的游戏开发功能,包括精灵、动画、物理引擎、碰撞检测等。开发者可以利用Phaser快速搭建游戏结构,减少底层实现的复杂性,专注于游戏逻辑和用户...

    HTML5 移动游戏开发高级编程.pdf

    HTML5 移动游戏开发高级编程

    HTML5 Canvas核心技术 图形、动画与游戏开发电子书

    HTML5 Canvas核心技术 图形、动画与游戏开发

    GameMaker HTML5游戏开发国内首个中文教程

    GameMaker HTML5游戏开发是国内首个以中文编写的教程,旨在帮助中文用户轻松掌握游戏制作技能,利用GameMaker Studio这一强大的工具创建跨平台的HTML5游戏。GameMaker Studio是一款流行的2D游戏开发软件,它提供了...

    基于HTML5游戏开发的研究与实现.pdf

    HTML5游戏开发还具备三点优势:第一,HTML5游戏能够移植至各种采用HTML5界面的设备;第二,HTML5平台覆盖面广,能够兼容采用各种操作系统的个人电脑、所有采用Android和iOS系统的手机设备、及其他任何连网智能设备;...

    html5游戏开发实力-街霸(用浏览器打开即可开玩,供开发学习使用)

    1. **Canvas API**:这是一个二维绘图表面,开发者可以通过JavaScript来绘制图形,实现动态游戏画面。在这个街霸游戏中,战斗场景、角色动作和特效可能都是通过Canvas进行渲染的。 2. **Web Audio API**:提供了...

    HTML5跨平台游戏开发

    HTML5跨平台游戏开发

    财神HTML5游戏源码

    总的来说,财神HTML5游戏源码是一个可以让你深入了解HTML5游戏开发的实践案例,通过对源码的学习和实践,你可以提升自己在Web游戏开发领域的技能,同时也能了解到如何将HTML5的新特性应用到实际项目中。

    HTML5 移动游戏开发高级编程(PDF和源代码)

    ◆ 阐释如何择机选用三种主要方法(CSS3、SVG或画布)之一来构建HTML游戏 ◆ 介绍使用HTML5构建实时多玩家游戏的标准模式 ◆ 讲述JavaScript游戏开发基础知识 ◆ 分步讲解如何创建2D平台动作游戏以及构建非传统多人...

    纸飞机HTML5游戏源码

    总的来说,"纸飞机HTML5游戏源码"涵盖了HTML5游戏开发的多个方面,从基本的HTML5语法到复杂的JavaScript编程,再到服务器环境的构建和资源管理,都是开发者需要掌握的关键技能。通过学习和分析这个源码,可以深入...

    学习html5游戏开发demo.zip

    HTML5游戏开发实战涉及多个关键方面,包括游戏设计、用户体验、性能优化以及利用HTML5的特性来实现各种游戏功能。以下是一些关于HTML5游戏开发实战的要点和建议: 游戏设计: 确定游戏类型和玩法,如动作、益智、...

    趣味英语测试HTML5游戏源码

    首先,HTML5提供了Canvas元素,它是一个二维绘图画布,允许开发者通过JavaScript动态绘制图形,实现游戏中的动画效果和用户交互。在本源码中,Canvas可能被用来绘制游戏场景、角色以及各种交互元素,例如题目和答案...

    疯狂植树HTML5游戏源码

    【疯狂植树HTML5游戏源码】是一款基于HTML5技术开发的游戏,它展示了HTML5在游戏领域的强大潜力。HTML5作为一种跨平台的标记语言,能够直接在浏览器中运行,无需插件支持,使得游戏的开发和分发变得更加便捷。这款...

    95个HTML5微信小游戏源码

    HTML5微信小游戏是一种基于HTML5技术开发的轻量级游戏,它们可以在微信内置浏览器中运行,无需用户下载安装,只需扫一扫或点击链接即可快速体验。这些小游戏通常利用了HTML5的Canvas、WebGL等图形渲染技术,以及Web ...

    五子棋inhtml5是一款使用Javascript开发的开源小游戏

    总结来说,五子棋inhtml5是利用HTML5和JavaScript技术开发的一款开源小游戏,它不仅提供了一种娱乐方式,更是一个学习和实践Web游戏开发的优秀资源。通过研究这个项目,开发者能够深入理解JavaScript如何与HTML5结合...

Global site tag (gtag.js) - Google Analytics