游手好学教程 – AS3实现飞机游戏角色的移动

 

最近做了一个纯俯视的射击类游戏,涉及到地图不规则边缘的碰撞检测,也在鼠标操作以及键盘操作飞机上犹豫了一下。现在分别做出鼠标和键盘的飞机操作做个比较,不知道大家偏好那种. 也放出源码和大家分享交流,代码很简单,我接触AS3不久,经验比较少,大家多多指点,共同进步啊。

游戏是纯俯视的,控制飞机,无论是键盘还是鼠标都会运用到三角函数的知识,分别计算出飞机在X轴和Y轴上的速度,然后在游戏的循环函数(ENTER_FRAME或者Timer)里面控制飞机在X轴和Y轴上的增加或者减少,原理大概就是这样的。

下面,先看看SWF演示吧,默认是键盘操作,方向键控制,点击相关按钮切换到鼠标操作,鼠标操作我这里做的其实就是一个简单的跟随.

下边是实现该移动功能的文档类代码,你可以封装成单独的player类去运用.

/**
* 键盘与鼠标控制游戏中的人物
* Author: Vincent chan
* URL: http://www.8ria.com
*/

package
{
 import flash.display.MovieClip;
 import flash.events.Event;
 import flash.events.KeyboardEvent;
 import flash.ui.Keyboard;
 import flash.events.MouseEvent;
 
 public class IndexDoc extends MovieClip
 {
  private var player:MovieClip;
  private var up:Boolean = false;
  private var down:Boolean = false;
  private var left:Boolean = false;
  private var right:Boolean = false;
  private var decay:Number = .95;
  private var speedX:Number = 0;
  private var speedY:Number = 0;
  private var speedZ:Number = .5; 
  private var speedR:Number = 4;
  private var speed:Number = 0;
  private var maxSpeed:Number = 10;
  private var style:String = “key”;

  public function IndexDoc()
  {
   //初始化UI
   initUI();
   //初始化事件
   initEvent();
  }
  
  private function initUI():void
  {
   player = fly_mc;
   this["key_btn"].buttonMode = true;
   this["mouse_btn"].buttonMode = true;
  }
  
  private function initEvent():void
  {
   stage.addEventListener(KeyboardEvent.KEY_DOWN, keyDownHandler);
   stage.addEventListener(KeyboardEvent.KEY_UP, keyUPHandler);
   stage.addEventListener(Event.ENTER_FRAME, gameLoop);
   this["key_btn"].addEventListener(MouseEvent.CLICK, changeStyle);
   this["mouse_btn"].addEventListener(MouseEvent.CLICK, changeStyle);
  }
  
  private function changeStyle(e:MouseEvent):void
  {
   //点击按钮选择鼠标或者键盘模式
   switch(e.currentTarget.name)
   {
    case “mouse_btn”:
    style = “mouse”;
    break;
    
    case “key_btn”:
    style = “key”;
    break;
   }
  }

  private function gameLoop(e:Event):void
  {
   //使用键盘
   if(style == “key”)
   {
            useKey();
   }
   //使用鼠标
   if(style == “mouse”)
   {
   useMouse();
   }
  }
       
  private function useKey()
  {
   //键盘控制player的移动
   if(up)
   {
   speedX += speedZ*Math.sin(player.rotation*(Math.PI/180));
   speedY += speedZ*Math.cos(player.rotation*(Math.PI/180));
   player.gotoAndStop(2);
   }
   else
   {
   speedX *= decay;
   speedY *= decay;
   player.gotoAndStop(1);
   }
   
   speed = Math.sqrt((speedX*speedX)+(speedY*speedY));
   
   if( speed > maxSpeed )
   {
    speedX *= maxSpeed/speed;
    speedY *= maxSpeed/speed;
   }

   player.y -= speedY;
   player.x += speedX;
           
   //控制player的角度
   if(right)
   {
   player.rotation += speedR;
   }
   if(left)
   {
   player.rotation -= speedR;
   }
   
   //player越界处理
   if( player.y < 0 ){
    player.y = stage.stageHeight;
   }
   if( player.y > stage.stageHeight ){
    player.y = 0;
   }
   if( player.x < 0 ){
    player.x = stage.stageWidth;
   }
   if( player.x > stage.stageWidth ){
    player.x = 0;
   }   
  }
  
  private function useMouse():void
  {
      var dx : Number = mouseX – player.x;
   var dy : Number = mouseY – player.y; 

   player.x += dx/10;
   player.y += dy/10;
   
   var angle : Number = Math.atan2(dy, dx) * 180 / Math.PI;

   player.rotation = angle + 90;
  }
  
  private function keyDownHandler(e:KeyboardEvent):void
  {
   switch( e.keyCode )
   {
    case Keyboard.UP:
     up = true;
     break;
     
    case Keyboard.DOWN:
     down = true;
     break;
     
    case Keyboard.LEFT:
     left = true;
     break;
     
    case Keyboard.RIGHT:
     right = true;
     break;
   }
  }
  
  private function keyUPHandler(e:KeyboardEvent):void
  {
   switch( e.keyCode )
   {
    case Keyboard.UP:
     up = false;
     break;
     
    case Keyboard.DOWN:
     down = false;
     break;
     
    case Keyboard.LEFT:
     left = false;
     break;
     
    case Keyboard.RIGHT:
     right = false;
     break;
   }
  }
  
 } 
}


1 Star2 Stars3 Stars4 Stars5 Stars
Loading ... Loading ...

本站游戏文字以及教程均为个人原创,转载请注明转自 9STG.COM 游手好学并加上本站链接。更多经典游戏来自COMEONGAME.COM

收藏分享:

1,878 人关注


你可能还喜欢

48 条评论


  1. [...] 程序:写过一个关于飞船运动的教程http://www.8ria.com/archives/219.html,关于组装其实就是addChild mc到一个容器上 [...]

  2. bohr says:

    哈哈,怎么没有
    ‘地图不规则边缘的碰撞检测” 的部分啊,哈哈
    多角色碰撞检测才是难题。。。

  3. coffee says:

    [...]the time to read or visit the content or sites we have linked to below the[...]……

    [...]here are some links to sites that we link to because we think they are worth visiting[...]……

  4. spin and go says:

    rotacni mop…

    That is very interesting, You’re an excessively skilled blogger. I have joined your feed and stay up for in quest of extra of your great post….

  5. seo says:

    seo…

    This is very fascinating, You’re an overly professional blogger. I’ve joined your rss feed and look forward to in the hunt for extra of your magnificent post….

  6. Dietary Supplements…

    That is really attention-grabbing, You’re an overly professional blogger. I have joined your rss feed and sit up for seeking extra of your great post….

  7. Cambridge Life Solutions…

    This is really interesting, You’re a very skilled blogger. I have joined your feed and look ahead to seeking more of your magnificent post….

  8. how to hack says:

    pron…

    That is really interesting, You are an excessively professional blogger. I’ve joined your feed and look forward to looking for more of your fantastic post….

  9. New Age store…

    This is very interesting, You’re a very professional blogger. I have joined your rss feed and stay up for in quest of more of your wonderful post….

  10. production says:

    video…

    This is really fascinating, You’re a very skilled blogger. I have joined your rss feed and look forward to searching for more of your great post….

  11. Car Wax says:

    Harly Wax…

    This is really interesting, You’re an overly skilled blogger. I have joined your rss feed and look forward to searching for extra of your excellent post….

  12. income opportunity…

    This is very fascinating, You’re a very professional blogger. I’ve joined your feed and look forward to in the hunt for more of your excellent post….

  13. fashion jewelry…

    This is very interesting, You are an excessively professional blogger. I’ve joined your feed and look forward to in search of extra of your wonderful post….

  14. life coach…

    That is really interesting, You are a very skilled blogger. I’ve joined your feed and look forward to in search of extra of your wonderful post….

  15. [...]Sites of interest we have a link to[...]……

    [...]usually posts some very interesting stuff like this. If you’re new to this site[...]……

  16. is going to click on when they…

    are searching for something on the internet, a picture, or a text link that looks like a tax audit???? i think somebody is going to click on the pretty picture myself. elemental palmistry involves elemental characteristics that are present on the…

  17. hypnosis says:

    hypnotherapy…

    This is really attention-grabbing, You are an overly professional blogger. I have joined your rss feed and look forward to searching for extra of your magnificent post….

  18. Sex Chat says:

    Tight Mature Women…

    That is very fascinating, You are a very professional blogger. I’ve joined your feed and look forward to searching for more of your excellent post….

  19. Recommended Resources…

    [...]the time to read or visit the content or sites we have linked to below the[...]…

  20. beautiful girl erotic picture…

    That is very attention-grabbing, You are an overly skilled blogger. I’ve joined your feed and stay up for in the hunt for extra of your great post….

  21. a drink.the woman asked him if he…

    had but the man said he had none. she further enquired to know his name. the man identified himself as xuma, form the north. after speaking for sometime the woman left to bring light. she returned without him noticing.from the door,…

  22. Play Soccer says:

    winning, with strikers, fernando torres and david…

    villa in the squad. that combined with goalie iker casillas and midfielder xabi alonso, spain is hoping to be the first country to win back to back european championships and prove that they are still the best in world.this should be…

  23. eastwood, rncp and woman’s health specialist is…

    a wealth of information on hormonal issues. over the next few days i am going to post sections of her amazing newsletter on why is estrogen dominance significant?”dr. lee’s statement above is bold but true. as a women’s health specialist for…

  24. professional photos…

    That is really fascinating, You’re a very professional blogger. I’ve joined your feed and stay up for in quest of extra of your excellent post….

  25. and ddos weaknesses,, and finally, national certs…

    can scan all the networks they are responsible for – something the belgian cert has already started doing. given the openness of the internet and the differing challenges and interests of those operating on it, these measures will of course only…

  26. a free giveaway promotion, they’ll tell you…

    on their very own website.  many companies that have been named in fake e-mails such as ericsson and applebee’s have statements on their websites warning customers about the fake e-mails. 5.  check the story out yourself.most …

  27. old used tires to the closest rubber…

    conversion factory. these depots may or may not purchase your tires to convert the rubber into another product but at least you have a place to get rid of them without adding to your landfill.as for your used rims, get in…

  28. LED v LCD says:

    cost associated with it. those customers are…

    right. television signals are simply not broadcast in 1080p, so if you are using the set to watch your favorite television shows there is no need to buy anything else.only blu-ray discs bring out the best of 1080p resolution. customers who…

  29. candidiasis says:

    a healthy immune response. if the friendly…

    bacteria are disrupted candida can increase its numbers drastically, change into a fungus form and the candida causes health problems. the balance of organisms in the intestines can be disrupted by different factors. probably the most important factor …

  30. has it will just put it down…

    and not even bother with it. trust me, locking your phone is easy and it works.now that you know a bunch of different ways to keep your phone safe, i highly recommend that you do. don’t just think that nothing can…

  31. brisbane web development…

    That is really fascinating, You are an excessively skilled blogger. I have joined your feed and stay up for searching for extra of your wonderful post….

  32. Bankrecht says:

    rechtsanwalt…

    That is really fascinating, You’re a very skilled blogger. I’ve joined your rss feed and sit up for looking for extra of your wonderful post….

  33. insurance? then you need to have car…

    that is safety conscious. this is because many insurance companies fear giving out insurance if you have a car known to wreck havoc on the roads. the main reason is that you are looked at as a person who is bound…

  34. showing signs of impairment, even without any…

    alcohol in your system. it is important to realize that some prescriptions may cause failure of the breathalyzer test that may also depend on the type of the breathalyzer being used.knowing your medications and its effects on your body are vitally…

  35. alarm within 15′ from the bedroom entrance….

    in larger homes / apartments, where bedrooms are located more than 30′ apart, two or more smoke detectors might have to be installed. at least one is required on each story of the house and in the basement. crawlspaces and uninhabitable…

  36. sacrificed to the idols of false gods….

    and by the time they open their own eyes; it is too late, and the damage is irreversible. in this regard, it is quite evident that something or someone else out there is thinking for super bowl fans, for americans, for…

  37. ps vita says:

    world go by.if you happen to be…

    near the spanish steps, you could try the traditional italian food at imagã². other possibilities include the famous fish and superb wines of camponeschi near the campo de ‘fiori, the heavenly dishes at agata e roma, and the traditional italian dishes…

  38. replace the smoking habit and get them…

    to enjoy imagining in the future carrying out this different behaviour.i then re-enforce this with some strong direct suggestion and further future pacing living life as a non-smoker.as you can see it is more about the ’set-up’ than about the techniq…

  39. i was determined to quite smoking. i…

    started by trying to cut right down to just a couple a day but i soon realized that i had to give up altogether. there was no way that i could just give up on my own, i needed some sort…

  40. fly rod minnow. both worked. chris then…

    tried a holographic shrimp. alan spotted a pair of fish under a dock. chris repeatedly skipped the shrimp under there. after a dozen or so casts one of them took it. after releasing that fish chris commenced to skipping the shrimp…

  41. are coupon savvy so they know to…

    look for online coupons to make any internet retail purchase cheaper especially in this economy today. free coupons are like offering a carrot to get them interested. also the coupon advertising websites may offer several different programs to online r…

  42. wordpress help…

    That is very interesting, You are a very professional blogger. I’ve joined your rss feed and sit up for in search of more of your fantastic post….

  43. …[Trackback]…

    More information here…

  44. is not even mentioned as an investment…

    destination, since very few know about the opportunities that exist in chile for profitable real estate deals.business culture of chilechile is a country with large families even now. business could be developed mostly through word-of-mouth approach, s…

  45. draining your bank account! in this article…

    i’m going to answer 8 faq’s most people have about successfully losing weight at home… but without spending a fortune!questions regarding fitness…question #1 – is a gym membership necessary?no, there are plenty of ways you can workout at home and…

  46. wordpress technical support says:

    wordpress help…

    This is very attention-grabbing, You are a very professional blogger. I’ve joined your rss feed and look ahead to searching for more of your excellent post….

  47. …[Trackback]…

    New and improved article…

  48. CCTV installation…

    That is very attention-grabbing, You are an overly skilled blogger. I have joined your rss feed and sit up for looking for extra of your magnificent post….


发表回复

您必须 登录 才能发表回复!