贪吃蛇 js 原型方法 事件 计时器

简介: 通过 原型方法 事件 计时器 等实现贪吃蛇效果。

键盘上下左右控制

<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
        .map {
            width: 400px;
            height: 400px;
            background-color: #ccc;
            position: relative;
        }
    </style>
</head>
<body>
<div class="map">

</div>
<script>
    //food div
    (function () {
        var elements = [];

        function Food(x, y, width, height, color) {
            // 横纵坐标 width height backgroundColor
            this.x = x || 0;
            this.y = y || 0;
            this.width = width || 20;
            this.height = height || 20;
            this.color = color || "green";
        }

        Food.prototype.init = function (map) {
            // delete div
            reomve();
            // creat div
            var div = document.createElement('div');
            // add div
            map.appendChild(div);
            // set div style
            div.style.width = this.width + "px";
            div.style.height = this.height + "px";
            div.style.backgroundColor = this.color;
            // Out of document stream 脱离文档流
            div.style.position = "absolute";
            // random横纵坐标
            this.x = parseInt(Math.random() * (map.offsetWidth / this.width)) * this.width;
            this.y = parseInt(Math.random() * (map.offsetHeight / this.height)) * this.height;
            div.style.left = this.x + "px";
            div.style.top = this.y + "px";
            elements.push(div)
        };

        // private func delete div
        function reomve() {
            for (var i = 0; i < elements.length; i++) {
                var ele = elements[i];
                // find child element's father remove this
                ele.parentNode.removeChild(ele);
                // delete child
                elements.splice(i, 1);
            }
        }

        // global
        window.Food = Food;
    }());

    // snake
    (function () {
        var elements = [];

        function Snake(width, height, direction) {
            // snack Each part width
            this.width = width || 20;
            this.height = height || 20;

            // snack's body
            this.body = [
                {x: 3, y: 2, color: "red"}, //head
                {x: 2, y: 2, color: "black"}, //body
                {x: 1, y: 2, color: "black"} //tail
            ];

            // direction
            this.direction = direction || "right"
        }

        Snake.prototype.init = function (map) {
            // delete snake
            remove();
            // loop body
            for (var i = 0; i < this.body.length; i++) {
                var obj = this.body[i];
                var div = document.createElement("div");
                // add div to map
                map.appendChild(div);
                // set div style
                div.style.position = "absolute";
                div.style.width = this.width + "px";
                div.style.height = this.height + "px";
                // x,y
                div.style.left = obj.x * this.width + "px";
                div.style.top = obj.y * this.height + "px";
                div.style.backgroundColor = obj.color;
                // add div to elements
                elements.push(div);
            }
        };
        Snake.prototype.move = function (food, map) {
            // change body x, y
            for (i = this.body.length - 1; i > 0; i--) {
                this.body[i].x = this.body[i - 1].x;
                this.body[i].y = this.body[i - 1].y;
            }
            // select direction change x,y
            switch (this.direction) {
                case "right":
                    this.body[0].x += 1;
                    break;
                case "left":
                    this.body[0].x -= 1;
                    break;
                case "top":
                    this.body[0].y -= 1;
                    break;
                case "bottom":
                    this.body[0].y += 1;
                    break;
            }
            // judgement food x,y snake x,y
            let snakeX = this.body[0].x * this.width;
            let snakeY = this.body[0].y * this.height;
            let foodX = food.x;
            let foodY = food.y;
            // judgement snake or food x,y
            if (snakeX == foodX && snakeY == foodY) {
                // get last body
                var last = this.body[this.body.length - 1];
                this.body.push({
                    x: last.x,
                    y: last.y,
                    color: last.color,
                });
                // delete food init food
                food.init(map)

            }
            // console.log(foodX, foodY)
        };

        function remove() {
            for (var i = elements.length - 1; i > -1; i--) {
                // find parent remove child element
                var ele = elements[i];
                //from map remove child element
                ele.parentNode.removeChild(ele);
                elements.splice(i, 1)
            }
        }

        // Snake.prototype.init(document.querySelector(".map"));
        // global
        window.Snake = Snake;
    }());
    // game
    (function () {
        function Game(map) {
            this.food = new Food();
            this.snake = new Snake();
            this.map = map;
        }

        // init game food snake
        Game.prototype.init = function () {
            this.food.init(this.map);
            this.snake.init(this.map);
            // console.log(this);
            this.RunSnake();
            this.bindkey();
        };
        // run snake
        Game.prototype.RunSnake = function () {
            // run
            var IntervalId = setInterval(function () {
                // 此时this为window
                this.snake.move(this.food, this.map);
                this.snake.init(this.map);
                // max x,y
                let MaxX = this.map.offsetWidth / this.snake.width;
                let MaxY = this.map.offsetHeight / this.snake.height;
                let x = this.snake.body[0].x;
                let y = this.snake.body[0].y;
                // console.log(this.snake.body[0].x + " " + this.snake.body[0].y + "X" + MaxX + "Y" + MaxY);
                if (x < 0 || x > MaxX || y < 0 || y > MaxY) {
                    // console.log(this.x+" "+this.y);
                    clearInterval(IntervalId);
                    window.alert("ganmeover!")
                }
                // 使用bindl改变this的指向
            }.bind(this), 150)
        };
        //keyboard down event
        Game.prototype.bindkey = function () {
            // get keyboard down
            document.addEventListener('keydown', function (e) {
                //获取按键的值
                switch (e.keyCode) {
                    case 37:
                        this.snake.direction = "left";
                        break;
                    case 38:
                        this.snake.direction = "top";
                        break;
                    case 39:
                        this.snake.direction = "right";
                        break;
                    case 40:
                        this.snake.direction = "bottom";
                        break;
                }
            }.bind(this), false)
        };
        window.Game = Game
    }());
    var gm = new Game(document.querySelector(".map"));
    gm.init()

    // console.log(fd.x+"===="+fd.y)
    // console.log(fd.width)
</script>

</body>
</html>

想要试验效果的可以到我的个人网站上体验
夏溪辰的博客-贪吃蛇

目录
相关文章
|
13天前
|
缓存 监控 前端开发
JavaScript 实现大文件上传的方法
【10月更文挑战第17天】通过以上步骤和方法,我们可以实现较为可靠和高效的大文件上传功能。当然,具体的实现方式还需要根据实际的应用场景和服务器要求进行调整和优化。
|
23小时前
|
JavaScript 前端开发 图形学
JavaScript 中 Math 对象常用方法
【10月更文挑战第29天】JavaScript中的Math对象提供了丰富多样的数学方法,涵盖了基本数学运算、幂运算、开方、随机数生成、极值获取以及三角函数等多个方面,为各种数学相关的计算和处理提供了强大的支持,是JavaScript编程中不可或缺的一部分。
|
6天前
|
JavaScript 前端开发 Go
异步加载 JS 的方法
【10月更文挑战第24天】异步加载 JavaScript 是提高网页性能和用户体验的重要手段。通过使用不同的方法和技术,可以实现灵活、高效的异步加载 JavaScript。在实际应用中,需要根据具体情况选择合适的方法,并注意处理可能出现的问题,以确保网页能够正常加载和执行。
|
16天前
|
存储 JavaScript 前端开发
js事件队列
【10月更文挑战第15天】
40 6
|
17天前
|
人工智能 JavaScript 网络安全
ToB项目身份认证AD集成(三完):利用ldap.js实现与windows AD对接实现用户搜索、认证、密码修改等功能 - 以及针对中文转义问题的补丁方法
本文详细介绍了如何使用 `ldapjs` 库在 Node.js 中实现与 Windows AD 的交互,包括用户搜索、身份验证、密码修改和重置等功能。通过创建 `LdapService` 类,提供了与 AD 服务器通信的完整解决方案,同时解决了中文字段在 LDAP 操作中被转义的问题。
|
18天前
|
存储 JavaScript 前端开发
JavaScript 数据类型详解:基本类型与引用类型的区别及其检测方法
JavaScript 数据类型分为基本数据类型和引用数据类型。基本数据类型(如 string、number 等)具有不可变性,按值访问,存储在栈内存中。引用数据类型(如 Object、Array 等)存储在堆内存中,按引用访问,值是可变的。本文深入探讨了这两种数据类型的特性、存储方式、以及检测数据类型的两种常用方法——typeof 和 instanceof,帮助开发者更好地理解 JavaScript 内存模型和类型检测机制。
38 0
JavaScript 数据类型详解:基本类型与引用类型的区别及其检测方法
|
22小时前
|
Web App开发 JavaScript 前端开发
如何确保 Math 对象的方法在不同的 JavaScript 环境中具有一致的精度?
【10月更文挑战第29天】通过遵循标准和最佳实践、采用固定精度计算、进行全面的测试与验证、避免隐式类型转换以及持续关注和更新等方法,可以在很大程度上确保Math对象的方法在不同的JavaScript环境中具有一致的精度,从而提高代码的可靠性和可移植性。
|
23小时前
|
JavaScript 前端开发 开发者
|
18天前
|
存储 JavaScript 前端开发
JavaScript数组去重的八种方法详解及性能对比
在JavaScript开发中,数组去重是一个常见的操作。本文详细介绍了八种实现数组去重的方法,从基础的双重循环和 indexOf() 方法,到较为高级的 Set 和 Map 实现。同时,分析了每种方法的原理和适用场景,并指出了使用 Set 和 Map 是目前最优的解决方案。通过本文,读者可以深入理解每种方法的优缺点,并选择最合适的数组去重方式。
32 0
|
19天前
|
JavaScript API
深入解析JS中的visibilitychange事件:监听浏览器标签间切换的利器
深入解析JS中的visibilitychange事件:监听浏览器标签间切换的利器
45 0