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

  1. extern void object::Attack( )
  2. {
  3.     int        list[];
  4.     int        i;
  5.     object    p;
  6.     float    dist, prox;
  7.     point    dest;
  8.  
  9.     errmode(0);  // ne stoppe pas si erreur
  10.     while ( ismovie() != 0 )  wait(1);
  11.  
  12.     i = 0;
  13.     list[i++] = WingedGrabber;
  14.     list[i++] = TrackedGrabber;
  15.     list[i++] = WheeledGrabber;
  16.     list[i++] = LeggedGrabber;
  17.     list[i++] = WingedShooter;
  18.     list[i++] = TrackedShooter;
  19.     list[i++] = WheeledShooter;
  20.     list[i++] = LeggedShooter;
  21.     list[i++] = WingedOrgaShooter;
  22.     list[i++] = TrackedOrgaShooter;
  23.     list[i++] = WheeledOrgaShooter;
  24.     list[i++] = LeggedOrgaShooter;
  25.     list[i++] = WingedSniffer;
  26.     list[i++] = TrackedSniffer;
  27.     list[i++] = WheeledSniffer;
  28.     list[i++] = LeggedSniffer;
  29.     list[i++] = Thumper;
  30.     list[i++] = PhazerShooter;
  31.     list[i++] = Recycler;
  32.     list[i++] = Shielder;
  33.     list[i++] = Subber;
  34.     list[i++] = Me;
  35.     list[i++] = Derrick;
  36.     list[i++] = BotFactory;
  37.     list[i++] = PowerStation;
  38.     list[i++] = Converter;
  39.     list[i++] = RepairCenter;
  40.     list[i++] = DefenseTower;
  41.     list[i++] = AlienNest;
  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, 30);
  52.         if ( p == null )
  53.         {
  54.             wait(2);
  55.         }
  56.         else
  57.         {
  58.             dist = distance(p.position, position);
  59.             if ( dist <= 10 )
  60.             {
  61.                 fire();
  62.             }
  63.             else
  64.             {
  65.                 prox = dist-5;
  66.                 if ( prox > 25 )  prox = 25;
  67.                 dest.x = (position.x-p.position.x)*prox/dist + p.position.x;
  68.                 dest.y = (position.y-p.position.y)*prox/dist + p.position.y;
  69.                 dest.z = (position.z-p.position.z)*prox/dist + p.position.z;
  70.                 goto(dest);
  71.             }
  72.         }
  73.     }
  74. }
  75.