Function Description:
Based onHTML5's horizontal version of the shooting game, refer to the flash game "Double Agent". The left and right arrow keys control movement, the down arrow key to squat, the up arrow key to jump, please turn off the input method before experiencing it.
## This game is based on the self-developed HTML5 game framework cnGameJSEffect preview:
Implementation analysis:
1. About multi-layer maps
In the previous HTML5 game "Tank Support Team", the map used was only. A simple single-layer map means that there is only one layer of open space except for stones. However, this single-layer map has relatively large limitations. If you need to implement scene-based games (such as Super Mario and the above games). ), a map with only one layer is often not enough, because in addition to the obstacles where the game protagonist is standing, we also have game background and other elements (such as the wall behind, etc.), so we need to layer the map objects to achieve multiple The purpose of layer display. New layer object: Each layer object maintains the sprite of the layer, is responsible for updating and drawing them, and can obtain the specified coordinates on the matrix of the layer. The value of the layer object is as follows:/** *层对象 **/ var layer = function(id,mapMatrix, options) { if (!(this instanceof arguments.callee)) { return new arguments.callee(id,mapMatrix, options); } this.init(id,mapMatrix, options); } layer.prototype={ /** *初始化 **/ init: function(id,mapMatrix,options) { /** *默认对象 **/ var defaultObj = { cellSize: [32, 32], //方格宽,高 x: 0, //layer起始x y: 0 //layer起始y }; options = options || {}; options = cg.core.extend(defaultObj, options); this.id=options.id; this.mapMatrix = mapMatrix; this.cellSize = options.cellSize; this.x = options.x; this.y = options.y; this.row = mapMatrix.length; //有多少行 this.width=this.cellSize[0]* mapMatrix[0].length; this.height=this.cellSize[1]* this.row; this.spriteList=new cg.SpriteList();//该层上的sprite列表 this.imgsReference=options.imgsReference;//图片引用字典:{"1":{src:"xxx.png",x:0,y:0},"2":{src:"xxx.png",x:1,y:1}} this.zIindex=options.zIndex; }, /** *添加sprite **/ addSprites:function(sprites){ if (cg.core.isArray(sprites)) { for (var i = 0, len = sprites.length; i < len; i++) { arguments.callee.call(this, sprites[i]); } } else{ this.spriteList.add(sprites); sprites.layer=this; } }, /** *获取特定对象在layer中处于的方格的值 **/ getPosValue: function(x, y) { if (cg.core.isObject(x)) { y = x.y; x = x.x; } var isUndefined = cg.core.isUndefined; y = Math.floor(y / this.cellSize[1]); x = Math.floor(x / this.cellSize[0]); if (!isUndefined(this.mapMatrix[y]) && !isUndefined(this.mapMatrix[y][x])) { return this.mapMatrix[y][x]; } return undefined; }, /** *获取特定对象在layer中处于的方格索引 **/ getCurrentIndex: function(x, y) { if (cg.core.isObject(x)) { y = x.y; x = x.x; } return [Math.floor(x / this.cellSize[0]), Math.floor(y / this.cellSize[1])]; }, /** *获取特定对象是否刚好与格子重合 **/ isMatchCell: function(x, y) { if (cg.core.isObject(x)) { y = x.y; x = x.x; } return (x % this.cellSize[0] == 0) && (y % this.cellSize[1] == 0); }, /** *设置layer对应位置的值 **/ setPosValue: function(x, y, value) { this.mapMatrix[y][x] = value; }, /** *更新层上的sprite列表 **/ update:function(duration){ this.spriteList.update(duration); }, /** *根据layer的矩阵绘制layer和该layer上的所有sprite **/ draw: function() { var mapMatrix = this.mapMatrix; var beginX = this.x; var beginY = this.y; var cellSize = this.cellSize; var currentRow; var currentCol var currentObj; var row = this.row; var img; var col; for (var i = beginY, ylen = beginY + row * cellSize[1]; i < ylen; i += cellSize[1]) { //根据地图矩阵,绘制每个方格 currentRow = (i - beginY) / cellSize[1]; col=mapMatrix[currentRow].length; for (var j = beginX, xlen = beginX + col * cellSize[0]; j < xlen; j += cellSize[0]) { currentCol = (j - beginX) / cellSize[0]; currentObj = this.imgsReference[mapMatrix[currentRow][currentCol]]; if(currentObj){ currentObj.x = currentObj.x || 0; currentObj.y = currentObj.y || 0; img = cg.loader.loadedImgs[currentObj.src]; //绘制特定坐标的图像 cg.context.drawImage(img, currentObj.x, currentObj.y, cellSize[0], cellSize[1], j, i, cellSize[0], cellSize[1]); } } } //更新该layer上所有sprite this.spriteList.draw(); } }After that, we can easily create different layers and add them to the map:
/* 背景矩阵 */ var bgMatrix = [ [1,1,1], [1,1,1], [1,1,1] ]; this.map = new cnGame.Map({width:3000,height:3000}); var newLayer=new cnGame.Layer("bg",bgMatrix, { cellSize: [1000, 1000], width: this.map.width, height: this.map.height }); newLayer.imgsReference={ "1": { src: srcObj.bg }}; this.map.addLayer(newLayer);
2. About the mobile scene. # In the last HTML5 "Game Super Mario Game Demo", we achieved the effect of player fixation and scene movement by converting the movement of the game player into the movement of the game scene. However, this implementation method has A bigger problem, because it interferes with the changes in the xy values of the map and the player, so it will cause a lot of inconvenience.
A better implementation is to keep the xy values of the player and the map unchanged, and only change when drawing them. The coordinates of the origin.The new method of the view object: applyInView:
The function of the applyIn
View method is to not change the actual coordinates of the map and the player. Next, the view is fixed when drawing, and other game elements move relative to the view to achieve the effect of moving the background. For example, we need to make the player fixed relative to the midpoint of the view, and all other game elements on the map move relative to the view. Just need to initialize: this.view=new cnGame.View({map:this.map,x:0,y:0,width:cnGame.width,height:cnGame.height});
this.view.centerElem(this.player,true);
When drawing:
this.view.applyInView(function(){ map.draw(); });
In this way, all elements in the map will move relative to the view.
The implementation principle of applyInView is also very simple. It just keeps making the origin of drawing and the coordinates of the view equal and opposite:
/** *使坐标相对于view **/ applyInView:function(func){ cg.context.save(); cg.context.translate(-this.x, -this.y); func(); cg.context.restore(); },
In this way, no matter how the coordinates of the view change, the view will visually change Always fixed to
canvas, the coordinates of other elements are always visually relative to the view.
The above is the detailed content of Detailed explanation of horizontal shooting game based on HTML5. For more information, please follow other related articles on the PHP Chinese website!

html5的div元素默认一行不可以放两个。div是一个块级元素,一个元素会独占一行,两个div默认无法在同一行显示;但可以通过给div元素添加“display:inline;”样式,将其转为行内元素,就可以实现多个div在同一行显示了。

html5中列表和表格的区别:1、表格主要是用于显示数据的,而列表主要是用于给数据进行布局;2、表格是使用table标签配合tr、td、th等标签进行定义的,列表是利用li标签配合ol、ul等标签进行定义的。

固定方法:1、使用header标签定义文档头部内容,并添加“position:fixed;top:0;”样式让其固定不动;2、使用footer标签定义尾部内容,并添加“position: fixed;bottom: 0;”样式让其固定不动。

HTML5中画布标签是“<canvas>”。canvas标签用于图形的绘制,它只是一个矩形的图形容器,绘制图形必须通过脚本(通常是JavaScript)来完成;开发者可利用多种js方法来在canvas中绘制路径、盒、圆、字符以及添加图像等。

html5中不支持的标签有:1、acronym,用于定义首字母缩写,可用abbr替代;2、basefont,可利用css样式替代;3、applet,可用object替代;4、dir,定义目录列表,可用ul替代;5、big,定义大号文本等等。

html5废弃了dir列表标签。dir标签被用来定义目录列表,一般和li标签配合使用,在dir标签对中通过li标签来设置列表项,语法“<dir><li>列表项值</li>...</dir>”。HTML5已经不支持dir,可使用ul标签取代。

html5是指超文本标记语言(HTML)的第五次重大修改,即第5代HTML。HTML5是Web中核心语言HTML的规范,用户使用任何手段进行网页浏览时看到的内容原本都是HTML格式的,在浏览器中通过一些技术处理将其转换成为了可识别的信息。HTML5由不同的技术构成,其在互联网中得到了非常广泛的应用,提供更多增强网络应用的标准机。

3种取消方法:1、给td元素添加“border:none”无边框样式即可,语法“td{border:none}”。2、给td元素添加“border:0”样式,语法“td{border:0;}”,将td边框的宽度设置为0即可。3、给td元素添加“border:transparent”样式,语法“td{border:transparent;}”,将td边框的颜色设置为透明即可。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Chinese version
Chinese version, very easy to use

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SublimeText3 Linux new version
SublimeText3 Linux latest version

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.
