`
aijuans9
  • 浏览: 12892 次
最近访客 更多访客>>
社区版块
存档分类
最新评论

用仿ActionScript的语法来编写html5——第四篇,继承与简单的rpg

阅读更多

第四篇,继承与简单的rpg


用仿ActionScript的语法来编写html5——第一篇,显示一张图片
http://blog.csdn.net/lufy_legend/article/details/6753032


用仿ActionScript的语法来编写html5——第二篇,利用Sprite来实现动画
http://blog.csdn.net/lufy_legend/article/details/6760812


用仿ActionScript的语法来编写html5——第三篇,鼠标事件与游戏人物移动
http://blog.csdn.net/lufy_legend/article/details/6770713




这次用继承自LSprite的类来实现简单的rpg的demo
先看一下最后的代码与as的相似度

[javascript] view plaincopy
  1. var backLayer;  
  2. //地图  
  3. var mapimg;  
  4. //人物  
  5. var playerimg;  
  6. var loader  
  7. var imageArray;  
  8. var loadIndex = 0;  
  9. var imgData = new Array({name:"back.jpg",img:null},{name:"1.png",img:null},{name:"2.png",img:null});  
  10. var chara;  
  11. var charaList;  
  12.   
  13.   
  14. function main(){  
  15.     loadImage();  
  16. }  
  17. function loadImage(){  
  18.     if(loadIndex >= imgData.length){  
  19.         gameInit();  
  20.         return;  
  21.     }  
  22.     loader = new LLoader();  
  23.     loader.addEventListener(LEvent.COMPLETE,loadComplete);  
  24.     loader.load(imgData[loadIndex].name,"bitmapData");  
  25. }  
  26. function loadComplete(event){  
  27.     imgData[loadIndex].img = loader.content;  
  28.     loadIndex++;  
  29.     loadImage();  
  30. }  
  31. function gameInit(event){  
  32.     var bitmapdata;  
  33.     bitmapdata = new LBitmapData(imgData[0].img);  
  34.     mapimg = new LBitmap(bitmapdata);  
  35.       
  36.     document.getElementById("inittxt").innerHTML="";  
  37.     backLayer = new LSprite();  
  38.     addChild(backLayer);  
  39.     backLayer.addChild(mapimg);  
  40.       
  41.     bitmapdata = new LBitmapData(imgData[1].img,0,0,70,92);  
  42.     imageArray = LGlobal.divideCoordinate(bitmapdata.image.width,bitmapdata.image.height,8,8);  
  43.     playerimg = new LBitmap(bitmapdata);  
  44.     chara = new CharacterSprite(true,playerimg,imageArray,0,0);  
  45.     backLayer.addChild(chara);  
  46.   
  47.   
  48.     charaList = new Array();  
  49.     for(var i=0;i<10;i++){  
  50.         bitmapdata = new LBitmapData(imgData[2].img,0,0,80,91);  
  51.         imageArray = LGlobal.divideCoordinate(bitmapdata.image.width,bitmapdata.image.height,8,8);  
  52.         playerimg = new LBitmap(bitmapdata);  
  53.         var npcx = parseInt(Math.random()*800/3)*3;  
  54.         var npcy = parseInt(Math.random()*480/3)*3;  
  55.         var npc = new CharacterSprite(false,playerimg,imageArray,npcx,npcy);  
  56.         backLayer.addChild(npc);  
  57.         charaList.push(npc);  
  58.     }  
  59.       
  60.     backLayer.addEventListener(LEvent.ENTER_FRAME, onframe)  
  61.     backLayer.addEventListener(LMouseEvent.MOUSE_DOWN, onmousedown);  
  62. }  
  63.   
  64.   
  65. function onframe(){  
  66.     chara.onframe();  
  67.       
  68.     for(var i=0;i<charaList.length;i++){  
  69.         charaList[i].onframe();  
  70.     }  
  71. }  
  72. function onmousedown(event){  
  73.     chara.toCoordinate.x = parseInt(event.selfX/3)*3;  
  74.     chara.toCoordinate.y = parseInt(event.selfY/3)*3;  
  75. }  


应该还算可以吧?
看一下成果吧,看不到效果的请下载支持html5的浏览器
http://fsanguo.comoj.com/html5/jstoas03/index.html


下面说一说如何继承,继承的话,js没有办法像as那样继承,
js的继承看下面
[javascript] view plaincopy
  1. function base(derive,baseSprite,baseArgs){  
  2.     baseSprite.apply(derive,baseArgs);  
  3.       
  4.     for(prop in baseSprite.prototype){  
  5.         var proto = derive.constructor.prototype;  
  6.         if(!proto[prop]){  
  7.             proto[prop] = baseSprite.prototype[prop];  
  8.         }  
  9.     }  
  10. }  


三个参数分别是child,base,base构造器参数数组
这个方法可以实现js的完美继承
现在来建立一个继承自LSprite的类CharacterSprite
只需要在构造器里调用base(this,LSprite,[])就可以实现继承
而且CharacterSprite因为继承了LSprite的方法,所以它有addChild等方法
CharacterSprite类代码如下
[javascript] view plaincopy
  1. function CharacterSprite(ishero,bitmap,imageArray,x,y){  
  2.     base(this,LSprite,[]);  
  3.     var self = this;  
  4.     self.x = x;  
  5.     self.y = y;  
  6.     self.toCoordinate = {x:x,y:y};  
  7.     self.ishero = ishero;  
  8.     self.animeIndex = 0;  
  9.     self.dirindex = 0;  
  10.     self.dirmark = {"0,1":0,"-1,0":1,"1,0":2,"0,-1":3,"-1,1":4,"1,1":5,"-1,-1":6,"1,-1":7};  
  11.       
  12.     self.bitmap = bitmap;  
  13.     self.imageArray = imageArray;  
  14.     self.addChild(bitmap);  
  15. }  
  16. CharacterSprite.prototype.onframe = function (){  
  17.     var self = this;  
  18.     self.animeIndex++;  
  19.     if(self.animeIndex >= self.imageArray[0].length){  
  20.         self.animeIndex = 0;  
  21.     }  
  22.     var markx = 0,marky = 0;  
  23.     var l = 3;  
  24.     if(self.x > self.toCoordinate.x){  
  25.         self.x -= l;  
  26.         markx = -1;  
  27.     }else if(self.x < self.toCoordinate.x){  
  28.         self.x += l;  
  29.         markx = 1;  
  30.     }  
  31.     if(self.y > self.toCoordinate.y){  
  32.         self.y -= l;  
  33.         marky = -1;  
  34.     }else if(self.y < self.toCoordinate.y){  
  35.         self.y += l;  
  36.         marky = 1;  
  37.     }  
  38.     if(markx !=0 || marky != 0){  
  39.         var mark = markx+","+marky;  
  40.         self.dirindex = self.dirmark[mark];  
  41.     }else if(!self.ishero){  
  42.         if(self.index > 0){  
  43.             self.index -= 1;  
  44.         }else{  
  45.             self.index = parseInt(Math.random()*300);  
  46.             self.toCoordinate.x = parseInt(Math.random()*800/3)*3;  
  47.             self.toCoordinate.y = parseInt(Math.random()*480/3)*3;  
  48.         }  
  49.     }  
  50.     self.bitmap.bitmapData.setCoordinate(self.imageArray[self.dirindex][self.animeIndex].x,self.imageArray[self.dirindex][self.animeIndex].y);  
  51.       
  52. }  


然后,准备好图片,按照最开始的代码,就可以完成rpg人物的添加移动等内容了
分享到:
评论

相关推荐

    ActionScript 3.0语法参考手册

    ### ActionScript 3.0 运算符详解 #### 一、加法运算符 `+` 加法运算符用于将两个数值相加。在ActionScript 3.0中,它还可以用于字符串连接。 **示例代码:** ```actionscript var x:Number = 5; var y:Number = ...

    Actionscript3.0基础语法

    ActionScript 3.0 是Adobe Flash Platform中的编程语言,它被广泛用于开发富互联网应用程序(RIA)、游戏和动画。ActionScript 3.0 的基础语法是理解Flash和Flex开发的关键。 首先,我们要了解ActionScript 3.0中的...

    Flex第一步——基于ActionScript 3

    本篇内容将深入探讨“Flex第一步——基于ActionScript 3”,这对于初学者来说是一份极具价值的学习资料。 首先,我们需要了解ActionScript 3。ActionScript是Flash平台的核心语言,而ActionScript 3是其最新版本,...

    Flash ActionScript 3.0 编程技术教程(附书光盘)

    第1~5章介绍了ActionScript 3.0的基础知识,包括程序编写界面、数据结构、基本语法以及事件机制;第6~9章介绍了ActionScript 3.0的核心——类及以类为基础的面向对象程序设计方法,包括类的基本概念、ActionScript...

    ActionScript 3.0开发技术大全(第一部分)

     第3章 ActionScript3.0语法 第2篇 ActionScript3.0面向对象特性  第4章 ActionScript3.0面向对象编程  第5章 ActionScript3.0中的String对象  第6章 ActionScript3.0中的Array类型  第7章 ActionScript3.0...

    精通Flex 3.0——基于ActionScript 3.0实现_源代码

    《精通Flex 3.0——基于ActionScript 3.0实现》一书源代码。 Flex 3.0 ActionScript 3.0源代码 Flex 3.0源代码。 --------------------------- 第1篇 Flex技术概述 第1章 Flex概述 3 1.1 Flex简介 3 1.2 Flex...

    Flash_ActionScript语法综合

    2. **点语法**:在ActionScript中,我们使用点语法来访问和操作对象的属性和方法。例如,`_root.plane.gotoAndplay(2);` 将舞台上的plane影片剪辑移动到第2帧并播放。 3. **数据类型**:ActionScript 支持多种数据...

    使用Visual Studio Code调试基于ActionScript的LayaAir HTML5游戏的例子.zip

    在本文中,我们将深入探讨如何使用Visual Studio Code(VSCode)进行HTML5游戏的开发,特别是针对基于ActionScript的LayaAir框架。LayaAir是一款强大的跨平台开发工具,它支持ActionScript 3.0,使得开发者能够创建...

    flash actionscript 2.0 语言参考,中文,清晰,pdf

    《Flash ActionScript 2.0 语言参考》是学习和掌握Flash编程不可或缺的资源,尤其对于初学者和希望深入理解ActionScript的开发者来说,它提供了详尽的语法和功能介绍。ActionScript是Adobe Flash平台上用于创建交互...

    Java 5与ActionScript3 语法比较.doc

    Java 5与ActionScript3 语法比较

    web相片控件——ActionScript3

    该控件用Flash CS4+ActionScript3写成,能在网页上方便调用,用FlashVars参数传入图片路径。 该控件涉及了很多AS3画图的知识点。实现了加载图片,过度平滑,能通过调整SliderBar对加载的相片随意放大缩小等功能。对...

    Flash ActionScript 3.0编程技术教程(全)

    第1~5章介绍了 ActionScript 3.0的基础知识,包括程序编写界面、数据结构、基本语法以及事件机制;第6~9章介绍了ActionScript 3.0的核心——类及以类为基础的面向对象程序设计方法,包括类的基本概念、...

    ActionScript开发技术大全

    第1篇ActionScript3.0语言基础 第1章ActionScript3.0概述 2 1.1ActionScript概述 2 1.1.1ActionScript环境 2 1.1.2ActionScript3.0特性 3 1.1.3ActionScript3.0代码组织 5 1.2ActionScript3.0API概览 5 1.3小结 8 第...

    actionScript组建的使用及其语法详解

    本篇文章将深入探讨ActionScript的使用及其语法,同时也涉及与Flash平台的结合。 一、ActionScript基础 ActionScript 3.0(AS3)是ActionScript的主要版本,带来了许多性能提升和语法改进。AS3采用了强类型和类结构...

    C语言典型应用系统之——聊天室(ActionScript 3.0实现)

    《C语言典型应用系统之——聊天室(ActionScript 3.0实现)》 在IT领域,编程语言的运用千变万化,其中C语言以其高效、底层控制能力强等特点,被广泛应用于系统开发、嵌入式系统以及各种复杂计算任务。而...

    ANE——Android本地编写

    在“ANE——Android本地编写”这个主题中,我们将深入探讨如何创建一个ANE,以便在Flash应用中与Android系统进行交互。这一过程包括以下几个关键步骤: 1. **创建Android项目**:首先,你需要使用Android Studio...

    ActionScript

    2. **基础语法**:ActionScript的基本语法包括变量声明、数据类型(如Number、String、Boolean等)、流程控制(如if语句、for循环、while循环)、函数定义与调用等。理解这些基础知识是编写ActionScript程序的基础。...

    Flash ActionScript 3.0编程技术教程

    第1~5章介绍了 ActionScript 3.0的基础知识,包括程序编写界面、数据结构、基本语法以及事件机制;第6~9章介绍了ActionScript 3.0的核心——类及以类为基础的面向对象程序设计方法,包括类的基本概念、...

Global site tag (gtag.js) - Google Analytics