home *** CD-ROM | disk | FTP | other *** search
/ Revista CD Expert 51 / PCGamer51_17Demos.iso / games / colobotdemo / colobotdemo10e.exe / script / ant09.txt < prev    next >
Text File  |  2001-06-10  |  2KB  |  92 lines

  1. extern void object::Attack( )
  2. {
  3.     int        list[];
  4.     int        i;
  5.     object    p;
  6.     float    dist, prox;
  7.     point    nav1, nav2, dest;
  8.     boolean    advance = true;
  9.  
  10.     errmode(0);  // ne stoppe pas si erreur
  11.     while ( ismovie() != 0 )  wait(1);
  12.  
  13.     i = 0;
  14.     list[i++] = WingedGrabber;
  15.     list[i++] = TrackedGrabber;
  16.     list[i++] = WheeledGrabber;
  17.     list[i++] = LeggedGrabber;
  18.     list[i++] = WingedShooter;
  19.     list[i++] = TrackedShooter;
  20.     list[i++] = WheeledShooter;
  21.     list[i++] = LeggedShooter;
  22.     list[i++] = WingedOrgaShooter;
  23.     list[i++] = TrackedOrgaShooter;
  24.     list[i++] = WheeledOrgaShooter;
  25.     list[i++] = LeggedOrgaShooter;
  26.     list[i++] = WingedSniffer;
  27.     list[i++] = TrackedSniffer;
  28.     list[i++] = WheeledSniffer;
  29.     list[i++] = LeggedSniffer;
  30.     list[i++] = Thumper;
  31.     list[i++] = PhazerShooter;
  32.     list[i++] = Recycler;
  33.     list[i++] = Shielder;
  34.     list[i++] = Subber;
  35.     list[i++] = Me;
  36.     list[i++] = Derrick;
  37.     list[i++] = BotFactory;
  38.     list[i++] = PowerStation;
  39.     list[i++] = Converter;
  40.     list[i++] = RepairCenter;
  41.     list[i++] = DefenseTower;
  42.     list[i++] = ResearchCenter;
  43.     list[i++] = RadarStation;
  44.     list[i++] = ExchangePost;
  45.     list[i++] = PowerPlant;
  46.     list[i++] = AutoLab;
  47.     list[i++] = NuclearPlant;
  48.  
  49.     while ( true )
  50.     {
  51.         p = radar(list, 0, 360, 0, 200);
  52.         if ( p == null )
  53.         {
  54.             nav1.x = position.x-5;
  55.             nav1.y = position.y;
  56.             nav2.x = position.x+5;
  57.             nav2.y = position.y;
  58.  
  59.             while ( true )
  60.             {
  61.                 goto(nav1);
  62.                 p = radar(list, 0, 360, 0, 200);
  63.                 if ( p != null )  break;
  64.  
  65.                 goto(nav2);
  66.                 p = radar(list, 0, 360, 0, 200);
  67.                 if ( p != null )  break;
  68.             }
  69.         }
  70.         else
  71.         {
  72.             dist = distance(p.position, position);
  73.             if ( dist <= 40 && !advance )
  74.             {
  75.                 fire(p.position);
  76.                 advance = true;
  77.             }
  78.             else
  79.             {
  80.                 prox = dist-5;
  81.                 if ( prox > 40 )  prox = 40;
  82.                 if ( prox <  5 )  prox = 5;
  83.                 dest.x = (position.x-p.position.x)*prox/dist + p.position.x;
  84.                 dest.y = (position.y-p.position.y)*prox/dist + p.position.y;
  85.                 dest.z = (position.z-p.position.z)*prox/dist + p.position.z;
  86.                 goto(dest);
  87.                 advance = false;
  88.             }
  89.         }
  90.     }
  91. }
  92.