查看: 3823|回复: 2
打印 上一主题 下一主题

[as3基础应用]AS3寻路算法-基于广度优先搜索(第三部分)

[复制链接]
.    

3797

主题

11

听众

5万

积分

首席设计师

Rank: 8Rank: 8

纳金币
32328
精华
41

活跃会员 优秀版主 荣誉管理 论坛元老

跳转到指定楼层
楼主
发表于 2013-3-20 10:22:51 |只看该作者 |倒序浏览
主场景第一帧
var map:Map=new Map(20,20);var searched:Boolean=false;this.addChild(map);lockBtn.addEventListener(MouseEvent.CLICK,lock);unLockBtn.addEventListener(MouseEvent.CLICK,unLock);rootBtn.addEventListener(MouseEvent.CLICK,setRoot);targetBtn.addEventListener(MouseEvent.CLICK,setTarget);searchBtn.addEventListener(MouseEvent.CLICK,search);map.addEventListener(MouseEvent.CLICK,otherLock);function lock(e:MouseEvent):void{ var theX:int=int(xStation.text); var theY:int=int(yStation.text); if(searched==***e) { map.clear(); searched=false; } map.lock(theX,theY);}function otherLock(e:MouseEvent):void{ var theX:int=int(e.stageX/20); var theY:int=int(e.stageY/20); if(searched==***e) { map.clear(); searched=false; } map.lock(theX,theY);}function unLock(e:MouseEvent):void{ var theX:int=int(xStation.text); var theY:int=int(yStation.text); if(searched==***e) { map.clear(); searched=false; } map.unlock(theX,theY);}function setRoot(e:MouseEvent):void{ var theX:int=int(xStation.text); var theY:int=int(yStation.text); if(searched==***e) { map.clear(); searched=false; } map.setRoot(theX,theY);}function setTarget(e:MouseEvent):void{ var theX:int=int(xStation.text); var theY:int=int(yStation.text); if(searched==***e) { map.clear(); searched=false; } map.setTarget(theX,theY);}function search(e:MouseEvent):void{ map.search(); searched=***e;} 【来源:互联网】
更多精彩教程,尽在web3D纳金网http://www.narkii.com/college/
分享到: QQ好友和群QQ好友和群 腾讯微博腾讯微博 腾讯朋友腾讯朋友 微信微信
转播转播0 分享淘帖0 收藏收藏0 支持支持0 反对反对0
回复

使用道具 举报

0

主题

2

听众

3238

积分

中级设计师

Rank: 5Rank: 5

纳金币
0
精华
0

最佳新人 活跃会员 热心会员 灌水之王 突出贡献

沙发
发表于 2014-8-4 12:58:54 |只看该作者
THanks for sharing !
回复

使用道具 举报

100

主题

3

听众

7683

积分

高级设计师

Rank: 6Rank: 6

纳金币
2378
精华
0

最佳新人 活跃会员 热心会员 灌水之王 突出贡献

板凳
发表于 2015-2-3 13:06:35 |只看该作者
这东西貌似挺高级的!!!!!!!!!!
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

手机版|纳金网 ( 闽ICP备2021016425号-2/3

GMT+8, 2024-11-13 17:30 , Processed in 0.086445 second(s), 31 queries .

Powered by Discuz!-创意设计 X2.5

© 2008-2019 Narkii Inc.

回顶部