home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / games / volume17 / xasteroids3 / part01 / xast.c < prev    next >
C/C++ Source or Header  |  1993-03-21  |  28KB  |  932 lines

  1. /*    Xasteroids
  2.     Copyright 1990 by Phil Goetz
  3.     goetz@cs.buffalo.EDU
  4.     Version 5, 9 Feb 93
  5.  
  6.     Changes from version 4.3:
  7.  
  8.         High score script.
  9.         Enemy moves towards you at higher levels.
  10.  
  11.     Changes from version 3:
  12.  
  13.         Better collision detection:  Actually checks for intersection
  14.             of line segments if non-round objects are very close.
  15.         Explosions!  (Thanks to Peter Phillips.)
  16.         Fine rotation repeating detected using KeyRelease.
  17.         Thrust indicator behind ship.  (Thanks to Peter Phillips.)
  18.         Doesn't place ship in center of screen for new levels.
  19.         Seeds random-number generator with time.
  20.             (Thanks to Craig Smith.)
  21.         Shields!  (Thanks to Peter Phillips.  I rewrote the bounce code
  22.             & added the energy bar & other refinements.)
  23.         Solved won't-take-input bug. (Thanks to Doug Merritt.)
  24.         Detects failure of XOpenDisplay. (Thanks to Pat Ryan.)
  25.  
  26.     Contributors:    Peter Phillips <pphillip@cs.ubc.ca>
  27.             Pat Ryan <pat@jaameri.gsfc.nasa.gov>
  28.             Craig Smith <csmith@cscs.UUCP>
  29.             Doug Merritt <doug@netcom.com>
  30.             Makefile by James Berg <berg@plains>
  31.             Hi score script by Chris Moore <moore@src.bae.co.uk>
  32.             Man page by David Partain <dpl@ida.liu.se>
  33. */
  34. #include <stdio.h>        /* For NULL    */
  35. #include <X11/Xlib.h>
  36. #include <X11/Xutil.h>
  37. #include <X11/cursorfont.h>    /* For erasing cursor - not important    */
  38. #include <math.h>
  39.  
  40. /* Indexes for 1st dimension of obj    */
  41. /* The order they are in is important    */
  42. #define    AST    0
  43. #define    ENEMY    96
  44. #define ENEMYBUL 97
  45. #define    FBUL    98
  46. #define    LASTBUL    102
  47. #define    SHIP    103
  48. #define LASTOBJ 103    /* Must be ship!  See makeasts().    */
  49.  
  50. /* Shapes    */
  51. /* Order is important!  See collide().    */
  52. #define    ASTSHAPE1    0
  53. #define ASTSHAPE2    1
  54. #define ASTSHAPE3    2
  55. #define ENBULSH        3
  56. #define    BULSHAPE    4
  57. #define    SHIPSHAPE    5
  58. #define SHIPTHRSHAPE    6
  59. #define    ENEMYSHAPE    7
  60. #define LASTSHAPE    7
  61.  
  62. /* Masses    */
  63. #define M_BIG    8.0
  64. #define M_MED    4.0
  65. #define M_SMALL    1.0
  66. #define M_SHIP    1.5
  67. #define M_ENEMY    1.0
  68. #define M_BULLET 0.1
  69.  
  70. /* Keys        */
  71. #define FIRE        'p'
  72. #define PAUSE        27    /* escape    */
  73. #define SHIELD        '`'
  74. #define THRUST        'o'
  75.  
  76. #define BMAX        300    /* Max particles in a "boom" + 1    */
  77. #define letheight    20    /* height of font    */
  78. #define    pi        3.1415926535897932384
  79. #define SHIPSIZE    28
  80.  
  81. typedef struct _Boom *Boom;
  82. struct _Boom {Boom next; int dur, part; double bcoord[BMAX][2], bvec[BMAX][2];};
  83. typedef struct {int shape, alive, time;
  84.         double mass, x, y, xvel, yvel, rot, rotvel;} Objtype;
  85. typedef struct {double angle; int length;} PolarPair;
  86. typedef struct {double x, y, mag;} Vector;
  87.  
  88. /* Global variables:    */
  89. Objtype    obj[SHIP+1];
  90. /*    In shapes pairs, 1st # is radians, 2nd is length in pixels.
  91.     Degrees: 0 ->, pi/2 down, pi <-, 3*pi/2 up
  92.     IF YOU CHANGE THE SHAPES, you MUST change numpairs & shapesize
  93. */
  94. PolarPair shapes[LASTSHAPE+1][11] =
  95.     {    {{0,0}, {3*pi/2,40}, {0,20}, {pi/4,28}, {pi/2,40}, /* just crossed 0-deg line */
  96.          {3*pi/4,28},{pi,40},{5*pi/4,28},{3*pi/2,40},{7*pi/4,28},{0,20}},
  97. /*    hexagon if you prefer
  98.         {{0,0}, {3*pi/2, 20}, {pi/6, 20}, {pi/2, 20},
  99.                  {5*pi/6, 20}, {7*pi/6, 20}, {3*pi/2, 20}, {11*pi/6, 20}},
  100. */
  101.         {{0,0}, {3*pi/2,20}, {0,10}, {pi/4,14}, {pi/2,20},
  102.          {3*pi/4,14},{pi,20},{5*pi/4,14},{3*pi/2,20},{7*pi/4,14},{0,10}},
  103.         {{0,0}, {3*pi/2,10}, {0,5}, {pi/4,7}, {pi/2,10},
  104.          {3*pi/4,7},{pi,10},{5*pi/4,7},{3*pi/2,10},{7*pi/4,7},{0,5}},
  105.         {{0,0}, {7*pi/4, 4}, {pi/4, 4}, {3*pi/4, 4}, {5*pi/4, 4}},
  106.         {{0,0}, {0,10}},
  107.         {{0,0}, {5*pi/4,28}, {0,20}, {pi/4,28},{3*pi/4,28},{pi,20},{7*pi/4,28}},    /* Ship */
  108.         {{0,0}, {5*pi/4,28}, {0,20}, {pi/4,28},{3*pi/4,28},{pi,20},
  109.          {7*pi/4,28}, {3*pi/4, 7}, {9*pi/8, 13}, {15*pi/8, 13}},    /* Thrusting ship */
  110.         {{0,0}, {pi,20},{7*pi/4,28},{pi/4,28},{pi,20}}
  111.     };
  112. Boom    blist = NULL;
  113. double    drawscale = 1, speedscale = 1;
  114. int    width, height,
  115.     energy,        /* # of turns shield is good for    */
  116.     highscore = 0, level,
  117.     nextbul = FBUL,            /* Obj# of next bullet fired    */
  118.     numasts, oldscore = 99,
  119.     rndint = 73, ships, score,
  120.     numpairs[LASTSHAPE+1]    = {11, 11, 11, 5, 2, 7, 10, 5},
  121.     shapesize[LASTSHAPE+1]    = {44, 21, 10, 2, 1, SHIPSIZE+1, 35, 20},
  122.     shield_on;
  123.  
  124. initasts()
  125. {    int i;
  126.     extern Objtype obj[SHIP+1];
  127.  
  128.     for (i = 0; i < LASTOBJ+1; i++)
  129.     {    obj[i].rot = 0;
  130.         obj[i].rotvel = 0;
  131.     }
  132.     for (i = 0; i < ENEMY; i++)
  133.     {    obj[i].shape = ASTSHAPE1;
  134.     }
  135.     obj[SHIP].shape = SHIPSHAPE;
  136.     obj[SHIP].mass = M_SHIP;
  137.     obj[ENEMY].shape = ENEMYSHAPE;
  138.     obj[ENEMY].mass = M_ENEMY;
  139.     obj[ENEMYBUL].shape = ENBULSH;
  140.     obj[ENEMYBUL].mass = M_BULLET;
  141.     for (i = FBUL; i < LASTBUL+1; i++)
  142.     {    obj[i].shape = BULSHAPE;
  143.         obj[i].mass = M_BULLET;
  144. }    }
  145.  
  146. makeasts()
  147. {    int i;
  148.     extern Objtype obj[SHIP+1];
  149.     extern int level, numasts, rndint;
  150.     extern double speedscale;
  151.     unsigned char a;
  152.  
  153.     for (i = 0; i < SHIP; i++)
  154.         obj[i].alive = 0; /* Erase objs from last level except ship */
  155.     for (i = ENEMYBUL; i < LASTBUL+1; i++)
  156.         obj[i].time = 0;        /* No bullets in the air */
  157.     for (i = 0; i < ((level > 8) ? 8 : level+4); i++)    /* Asteroids:    */
  158.     {    a = rand(rndint); a>>=1;    /* a = rand# from 0 to 127 */
  159.         if (a > 63)
  160.             obj[i].x = (double) a;
  161.             else obj[i].x = (double) (width - a);
  162.         a = rand(rndint); a>>=1;    /* Now the same for y    */
  163.         if (a >  63)
  164.             obj[i].y = (double) a;
  165.             else obj[i].y = (double) height - a;
  166.         a = rand(rndint); a = 4 - a>>5;
  167.         obj[i].rot = (double) a;
  168.         a = rand(rndint);
  169.         obj[i].rotvel = ((double) a)/2048;
  170.         a = rand(rndint);
  171.         obj[i].xvel = cos((double) a);
  172.         obj[i].yvel = sin((double) a);
  173.         obj[i].shape = ASTSHAPE1;
  174.         obj[i].mass = M_BIG;
  175.         obj[i].alive = 1;
  176.     }
  177.     numasts = i;
  178. }
  179.  
  180. makeenemy()    /* Start an enemy ship    */
  181. {    extern Objtype obj[SHIP+1];
  182.     extern int height, level, rndint;
  183.     unsigned char c;
  184.  
  185.     obj[ENEMY].alive = 1;
  186.     obj[ENEMY].x = 0;
  187.     obj[ENEMY].y = (double) height/4;
  188.     c = rand(rndint); obj[ENEMY].y += (double) c; /* May put enemy outside window    */
  189.     obj[ENEMY].xvel = .4 + ((double) level)/3.;
  190.     obj[ENEMY].yvel = 0;
  191.     obj[ENEMY].rot = 0;
  192.     obj[ENEMY].rotvel = 0;
  193. }
  194.  
  195. int nextast()    /* Find next unused asteroid object    */
  196. {    extern Objtype obj[SHIP+1];
  197.     int i;
  198.     for (i = 0; obj[i].alive; i++);    /* guaranteed to find one    */
  199.     return i;
  200. }
  201.  
  202. int collide(i, j)    /* Returns non-zero if i collided with j    */
  203.             /* Ship must be j!  (See below)            */
  204.     int i, j;
  205. {    extern Objtype obj[SHIP+1];
  206.     extern int shapesize[LASTSHAPE+1];
  207.     extern double drawscale;
  208.     double    mi, mj,                /* Slopes of lines    */
  209.         ix1, ix2, iy1, iy2, jx1, jx2, jy1, jy2,    /* Endpoints    */
  210.         roti, rotj,
  211.         xcross,    ycross,        /* coord of intersection    */
  212.         z;
  213.     int    diff, xd, yd,
  214.         a, b,
  215.         shapei, shapej;
  216.     xd = obj[i].x - obj[j].x;
  217.     yd = obj[i].y - obj[j].y;
  218.     diff = sqrt((double)(xd*xd + yd*yd));
  219.     shapei = obj[i].shape; shapej = obj[j].shape;
  220.     /* Note this will miss if drawscale is < 0    */
  221.     if (diff < (shapesize[shapei] + shapesize[shapej])*drawscale)
  222.     {   /* If both are round objects, approximation is good */
  223.         if (shapei < SHIPSHAPE && shapej < SHIPSHAPE) return 1;
  224.         if (j == SHIP && shield_on) return 1;    /* Ship always j! */
  225.         roti = obj[i].rot; rotj = obj[j].rot;
  226.         ix1 = (double) obj[i].x; iy1 = (double) obj[i].y;
  227.         for (a = 1; a < numpairs[shapei]; a++)
  228.         {    ix2 = ix1 + (double) shapes[shapei][a].length * drawscale *
  229.             cos(shapes[shapei][a].angle + roti);
  230.         iy2 = iy1 + (double) shapes[shapei][a].length * drawscale *
  231.             sin(shapes[shapei][a].angle + roti);
  232.         if (ix1 == ix2)
  233.         {    printf("\nif1 = if2"); return 1;} /* Easy way out */
  234.         mi = (iy2-iy1)/(ix2-ix1);
  235.         z = mi*ix1;
  236.         jx1 = (double) obj[j].x; jy1 = (double) obj[j].y;
  237.         for (b = 1; b < numpairs[shapej]; b++)
  238.         {    jx2 = jx1 + (double) shapes[shapej][b].length *
  239.                 drawscale * cos(shapes[shapej][b].angle + rotj);
  240.             jy2 = jy1 + (double) shapes[shapej][b].length *
  241.                 drawscale * sin(shapes[shapej][b].angle + rotj);
  242.             if (jx1 == jx2)
  243.             {    ycross = ix1 + (jx1-ix1)*mi;
  244.                 if ((jx1-ix1) * (ix2-jx1) >= 0 &&
  245.                     (ycross-jy1)*(jy2-ycross) >= 0)
  246.                     return 1;
  247.                 else jx2 += .0001;    /* Avoid divide by 0 */
  248.             }
  249.             mj = (jy2-jy1)/(jx2-jx1);
  250.             if (mj == mi) goto Loopend;    /* Parallel lines */
  251.             xcross = (iy1 - jy1 + mj*jx1 - z) / (mj - mi);
  252.             if ((xcross-ix1) * (ix2-xcross) > 0
  253.                 && (xcross-jx1) * (jx2-xcross) > 0) return 1;
  254. Loopend:        jx1 = jx2; jy1 = jy2;
  255.         }
  256.         ix1 = ix2; iy1 = iy2;
  257.     }   }
  258.     return 0;
  259. }
  260.  
  261. blastpair(i, j)        /* Generate random velocity vector v.    */
  262.     int i, j ;    /* Add v to i, -v to j.            */
  263. {    extern int rndint;
  264.     extern Objtype obj[SHIP+1];
  265.     unsigned char c;    /* for rand    */
  266.     double vx, vy;
  267.     c = rand(rndint);
  268. /*    c = 4 - c>>5;    if you need angles from -3 to 4        */
  269.     c>>2;        /* possibly save some time on sin/cos    */
  270.     vx = cos((double) c); vy = sin((double) c);
  271.     obj[i].xvel = obj[i].xvel + vx;
  272.     obj[i].yvel = obj[i].yvel + vy;
  273.     obj[j].xvel = obj[j].xvel - vx;
  274.     obj[j].yvel = obj[j].yvel - vy;
  275.     obj[i].rotvel = obj[i].rotvel + .05;
  276.     obj[j].rotvel = obj[j].rotvel - .05;
  277. }
  278.  
  279. /* dot product of 2 vectors    */
  280. #define dot(i,j)    (i.x*j.x + i.y*j.y)
  281. /* rotational inertia (constant eliminated) of obj. i    */
  282. #define rotinert(i)    (double) (obj[i].mass*shapesize[obj[i].shape]*shapesize[obj[i].shape])
  283.  
  284. /* cause two objects to collide elastically    */
  285. bounce(i, j)
  286. int    i,j;
  287. {
  288. double    rotrat, temp;
  289. extern    Objtype obj[SHIP+1];
  290. Vector    vi, vj,        /* velocity of objs i, j        */
  291.     ij,        /* vector from center of i to center of j */
  292.     vi_ij, vj_ij,    /* velocity of obj along vector ij    */
  293.     vipij, vjpij,    /* velocity perpendicular to ij        */
  294.     vi_ijf, vj_ijf;    /* post-collision velocity along ij    */
  295.  
  296. vi.x = obj[i].xvel; vi.y = obj[i].yvel;
  297. vj.x = obj[j].xvel; vj.y = obj[j].yvel;
  298. ij.x = obj[j].x - obj[i].x; ij.y = obj[j].y - obj[i].y;
  299. ij.mag = sqrt(ij.x*ij.x + ij.y*ij.y);
  300. /*
  301. Calculate velocities projected onto ij;
  302.     vi_ij = vi*cos(a) = (vi dot ij) / |ij|        */
  303. vi_ij.mag = dot(vi, ij) / ij.mag;
  304. vi_ij.x = (ij.x * vi_ij.mag) / ij.mag;
  305. vi_ij.y = (ij.y * vi_ij.mag) / ij.mag;
  306. vj_ij.mag = dot(vj, ij) / ij.mag;
  307. vj_ij.x = (ij.x * vj_ij.mag) / ij.mag;
  308. vj_ij.y = (ij.y * vj_ij.mag) / ij.mag;
  309. if (vi_ij.mag - vj_ij.mag < 0)    /* Objs moving away from each other -
  310.     Since objs are round (at least when bouncing), this means
  311.     they are moving away from each other already.    */
  312.     return;
  313. /*
  314. Calculate component of velocities perpendicular to ij:
  315.     |vipij| = |vi|*sin(a) = |vi x ij| / |ij|
  316. Same as
  317.     |vipij| = |vi|*cos(pi/2 - a) = (vi dot (perp. to ij)) / |ij|    */
  318. temp = vi.y*ij.x - vi.x*ij.y;    /* - (cross product when 3rd coord is 0)*/
  319. temp /= (ij.mag*ij.mag);
  320. vipij.x = -ij.y*temp; vipij.y = ij.x*temp;
  321. temp = (vj.x*ij.y - vj.y*ij.x) / (ij.mag*ij.mag);
  322. vjpij.x = -ij.y*temp; vjpij.y = ij.x*temp;
  323. /*
  324. Calculate the linear elastic collision along ij:
  325.     mass(i)*vi_ij + mass(j)*vj_ij = mass(i)*vi_ijf + mass(j)*vj_ijf
  326.     vi_ij + vi_ijf = vj_ij + vj_ijf    (derived by dividing equation
  327.     for conservation of kinetic energy by eq. for cons. of momentum) */
  328. temp = obj[i].mass/obj[j].mass;
  329. vj_ijf.x = (temp * (2*vi_ij.x - vj_ij.x) + vj_ij.x) / (1 + temp);
  330. vj_ijf.y = (temp * (2*vi_ij.y - vj_ij.y) + vj_ij.y) / (1 + temp);
  331. vi_ijf.x = vj_ijf.x + vj_ij.x - vi_ij.x;
  332. vi_ijf.y = vj_ijf.y + vj_ij.y - vi_ij.y;
  333. /*
  334. Now, given vi_ijf and vj_ijf, add them to the perpendicular
  335.     components to get final velocity vectors        */
  336. obj[i].xvel = vi_ijf.x + vipij.x;
  337. obj[i].yvel = vi_ijf.y + vipij.y;
  338. obj[j].xvel = vj_ijf.x + vjpij.x;
  339. obj[j].yvel = vj_ijf.y + vjpij.y;
  340. /*
  341. Now calculate rotational velocity exchange    */
  342. rotrat = rotinert(i)/rotinert(j);
  343. temp = rotrat * (2*obj[i].rotvel - obj[j].rotvel) / (1+rotrat);
  344. obj[i].rotvel = temp + obj[j].rotvel - obj[i].rotvel;
  345. obj[j].rotvel = temp;
  346. }
  347.  
  348. botline(disp, window, gc)    /* Print status line text    */
  349.     Display *disp;
  350.     Drawable window;
  351.     GC gc;
  352. {    extern int highscore, ships, score;
  353.     char text[70];
  354.     sprintf(text, "Ships:%2d   Score:%6d   Shield:        High:%6d",
  355.         ships, score, highscore);
  356.     XDrawImageString (disp, window, gc, 0, height+letheight,
  357.             text, strlen(text));
  358. }
  359.  
  360. printss(disp, window, gc)    /* Print ships and score    */
  361.     Display *disp;
  362.     Drawable window;
  363.     GC gc;
  364. {    extern int height, highscore, oldscore, ships, score;
  365.     extern Objtype obj[SHIP+1];    /* to kill ship    */
  366.     char sstring[30];
  367.  
  368.     if (score != oldscore)
  369.     {    if (score/10000 > oldscore/10000)
  370.         {    ships++; botline(disp, window, gc);}
  371.         if (score/10000 < oldscore/10000)
  372.         {    ships--; botline(disp, window, gc);
  373.             if (!ships) obj[SHIP].alive = 0;
  374.         }
  375.         if (score > highscore)    /* Separate if to avoid flashing */
  376.         {    highscore = score;
  377.             sprintf(sstring, "%6d", highscore);
  378.             XDrawImageString (disp, window, gc, 460,
  379.                 height+letheight, sstring, strlen(sstring));
  380.         }
  381.         sprintf(sstring, "%6d", score);
  382.         XDrawImageString (disp, window, gc, 170, height+letheight,
  383.                 sstring, strlen(sstring));
  384.         oldscore = score;
  385.     }
  386.  
  387.     /* Draw shield energy bar    */
  388.     XFillRectangle(disp, window, gc, 340, height+8, energy>>1, 10);
  389.     XClearArea(disp, window, 340+(energy>>1), height+8, 8, 10, False);
  390. }
  391.  
  392. upscore(killer, up)    /* Only award score for things the player shot */
  393.     int killer, up;
  394. {    extern int score;
  395.     if (killer != ENEMYBUL && killer != SHIP)
  396.         score = score + up;
  397. }
  398.  
  399. /* boom, movebooms, drawbooms all by Peter Phillips */
  400. boom(ob, particles, duration)
  401. int ob;
  402. int particles;
  403. int duration;
  404. { extern int rndint;
  405.   int i;
  406.   unsigned int r1, r2;
  407.   Boom b;
  408.   double x, y;
  409.   double angle, length;
  410.  
  411.   b = (Boom) malloc(sizeof(struct _Boom));
  412.   b->dur = duration;
  413.   b->part = particles;
  414.   x = obj[ob].x;
  415.   y = obj[ob].y;
  416.   for (i = 0; i < particles; i++) {
  417.     r1 = (rand(rndint) >> 2) % 100;
  418.     r2 = (rand(rndint) >> 2) % 7;
  419.  
  420.     b->bcoord[i][0] = x;
  421.     b->bcoord[i][1] = y;
  422.     angle = r1 * pi / 50.0;
  423.     length = 3 + r2;
  424.     b->bvec[i][0] = cos(angle) * length + obj[ob].xvel;
  425.     b->bvec[i][1] = sin(angle) * length + obj[ob].yvel;
  426.   }
  427.   b->next = blist;
  428.   blist = b;
  429. }
  430.  
  431. /* move the various booms that are active */
  432. movebooms()
  433. {
  434.   int i;
  435.   Boom b, prevb;
  436.  
  437.   prevb = NULL;
  438.   b = blist;
  439.   while (b != NULL) {
  440.     b->dur--;
  441.     if (b->dur < 0) { /* delete this boom */
  442.       Boom temp;
  443.  
  444.       temp = b;
  445.       if (prevb == NULL) {
  446.         blist = b->next;
  447.       } else {
  448.         prevb->next = b->next;
  449.       }
  450.       b = b->next;
  451.       free(temp);
  452.     } else {  /* move boom, advance list */
  453.       for (i = 0; i < b->part; i++) {
  454.         b->bcoord[i][0] += b->bvec[i][0];
  455.         b->bcoord[i][1] += b->bvec[i][1];
  456.       }
  457.       prevb = b;
  458.       b = b->next;
  459.     }
  460.   }
  461. }
  462.  
  463. /* Draw the various booms */
  464. drawbooms(disp, window, gc)
  465.      Display *disp;
  466.      Drawable window;
  467.      GC gc;
  468. {
  469.   int i;
  470.   Boom b;
  471.   XPoint figure[BMAX];
  472.  
  473.   b = blist;
  474.   while (b != NULL) {
  475.     for (i = 0; i < b->part; i++) {
  476.       figure[i].x = (int) b->bcoord[i][0];
  477.       figure[i].y = (int) b->bcoord[i][1];
  478.     }
  479.     XDrawPoints(disp, window, gc, figure, b->part, CoordModeOrigin);
  480.     b = b->next;
  481.   }
  482. }
  483.  
  484. deletebooms()    /* delete all booms */
  485. {    Boom b;
  486.  
  487.     b = blist;
  488.     while (b != NULL)
  489.     {    b->dur = 0;
  490.         b = b->next;
  491. }    }
  492.  
  493. killast(killer, i)
  494.     int killer, i;        /* i = Asteroid # to kill    */
  495. {    extern Objtype obj[SHIP+1];
  496.     extern int numasts;
  497.     int k, na, oldna;
  498.  
  499.     if (obj[i].shape == ASTSHAPE1)
  500.     {    na = nextast();        /* Could put 6 lines in a sub */
  501.         obj[na].x = obj[i].x;
  502.         obj[na].y = obj[i].y;
  503.         obj[na].xvel = obj[i].xvel;
  504.         obj[na].yvel = obj[i].yvel;
  505.         obj[na].alive++;
  506.         obj[na].shape = ASTSHAPE2;
  507.         obj[na].mass = M_MED;
  508.         obj[i].shape = ASTSHAPE2;
  509.         obj[i].mass = M_MED;
  510.         blastpair(i, na);
  511.         boom(i, 30, 12);
  512.         numasts++;
  513.         if (numasts == 2)    /* Big asteroid was last remaining */
  514.             upscore(killer, 25+level*2000);
  515.         else    upscore(killer, 25);
  516.     }
  517.     else if (obj[i].shape == ASTSHAPE2)
  518.     {
  519.         for (k = 0; k < 3; k++)
  520.         {    oldna = na;
  521.             na = nextast();
  522.             obj[na].x = obj[i].x;
  523.             obj[na].y = obj[i].y;
  524.             obj[na].xvel = obj[i].xvel;
  525.             obj[na].yvel = obj[i].yvel;
  526.             obj[na].alive++;
  527.             obj[na].shape = ASTSHAPE3;
  528.             obj[na].mass = M_SMALL;
  529.             if (k == 1) blastpair(oldna,na);
  530.         }
  531.         obj[i].shape = ASTSHAPE3;
  532.         obj[i].mass = M_SMALL;
  533.         blastpair(na, i);
  534.         boom(i, 20, 10);
  535.         if (numasts == 1) upscore(killer, 500*level);
  536.         numasts = numasts + 3;
  537.         upscore(killer, 50);
  538.     }
  539.     else if (obj[i].shape == ASTSHAPE3)
  540.     {    boom(i, 10, 8);
  541.         obj[i].alive = 0; numasts--; upscore(killer, 100);}
  542.     else    /* enemy {ship or bullet}    */
  543.     {    boom(i, 9, 7);
  544.         obj[i].alive = 0; upscore(killer, 500);}
  545. }
  546. moveobjs(crash)
  547.     int *crash;
  548. {    extern Objtype obj[SHIP+1];
  549.     extern int ships;
  550.     extern double speedscale;
  551.     int i, j;    /* Indexes    */
  552.     double *temp;
  553.  
  554.     movebooms();
  555.     for (i = 0; i < LASTOBJ+1; i++)
  556.         if (obj[i].alive)
  557.         {    temp = &obj[i].x;
  558.             *temp = *temp + obj[i].xvel*speedscale;
  559.             while (*temp < 0) *temp = *temp + (double) width;
  560.             while (*temp > width) *temp = *temp - (double) width;
  561.             temp = &obj[i].y;
  562.             *temp = *temp + obj[i].yvel*speedscale;
  563.             while (*temp < 0) *temp = *temp + height;
  564.             while (*temp > height) *temp = *temp - height;
  565.             obj[i].rot = obj[i].rot + obj[i].rotvel;
  566.         }
  567.     for (i = 0; i < FBUL; i++)
  568.         if (obj[i].alive)
  569.         {
  570.         if (obj[SHIP].alive && collide(i, SHIP))
  571.         {    if (shield_on) bounce(SHIP, i);
  572.             else
  573.             {    *crash = 2;
  574.                 ships--; obj[SHIP].alive = 0;
  575.                 killast(SHIP, i);
  576.                 continue;
  577.         }    }
  578.         for (j = ENEMYBUL; j < LASTBUL+1; j++)
  579.             if (obj[j].alive && collide(i, j) &&
  580.                (j != ENEMYBUL || (i != ENEMYBUL && i != ENEMY)))
  581.             {    obj[j].alive = 0;    /* Kill the bullet */
  582.                 /* Don't have 2 bullets kill same asteroid */
  583.                 if (obj[i].alive) killast(j,i);
  584.             }
  585.         }
  586. }
  587.  
  588. fire()
  589. {    extern Objtype obj[SHIP+1];
  590.     extern int width, nextbul;
  591.     extern double drawscale, speedscale;
  592.     double *shiprot, cosrot, sinrot;
  593.  
  594.     obj[nextbul].alive++;
  595.     shiprot = &obj[SHIP].rot;
  596.     cosrot = cos(*shiprot); sinrot = sin(*shiprot);
  597.     obj[nextbul].x = obj[SHIP].x + 20 * cosrot * drawscale;
  598.     obj[nextbul].y = obj[SHIP].y + 20 * sinrot * drawscale;
  599.     obj[nextbul].xvel = obj[SHIP].xvel + 10 * cosrot;
  600.     obj[nextbul].yvel = obj[SHIP].yvel + 10 * sinrot;
  601.     obj[nextbul].rot = *shiprot;
  602.     obj[nextbul].time = width/(speedscale*11);    /* loops before bullet expires    */
  603.     nextbul++; if (nextbul == LASTBUL+1) nextbul = FBUL;
  604. }
  605.  
  606. hyper()
  607. {    extern Objtype obj[SHIP+1];
  608.     extern int width, height, rndint;
  609.     unsigned char c;
  610.     unsigned int i;
  611.  
  612.     c = rand(rndint); i = c; i<<=2;    /* 0 - 1024    */
  613.     while (i > width) i -= width;
  614.     obj[SHIP].x = (double) i;
  615.     c = rand(rndint); i = c; i<<=2;    /* 0 - 1024    */
  616.     while (i > height) i -= height;
  617.     obj[SHIP].y = (double) i;
  618. }
  619.  
  620. vdraw(disp, window, gc, shape, x, y, rot)
  621.     Display *disp;
  622.     Drawable window;
  623.     GC gc;
  624.     int shape;
  625.     double x, y, rot;
  626.  
  627. {    int line;
  628.     extern PolarPair shapes[LASTSHAPE+1][11];
  629.     extern int numpairs[LASTSHAPE+1];
  630.     extern double drawscale;
  631.     XPoint figure[20];
  632.     figure[0].x = (int) x; figure[0].y = (int) y;
  633.     for (line=1; line < numpairs[shape]; line++)    /* 2 pairs = 1 line */
  634.     {    figure[line].x  = (int) shapes[shape][line].length *
  635.             cos(shapes[shape][line].angle + rot) * drawscale;
  636.         figure[line].y  = (int) shapes[shape][line].length *
  637.             sin(shapes[shape][line].angle + rot) * drawscale;
  638.     }
  639.     XDrawLines (disp, window, gc, figure, numpairs[shape], CoordModePrevious);
  640. }
  641.  
  642. main(argc, argv)
  643.     int argc;
  644.     char **argv;
  645. {    Colormap cmap;
  646.     Cursor cursor;
  647.     Display *disp;
  648.     Font font;
  649.     GC gc, pmgc;
  650.     KeySym key;
  651.     Pixmap pixmap;
  652.     Window window;
  653.     XColor black, exact;
  654.     XEvent event;
  655.     XSizeHints hint;
  656.     XWMHints wmhints;
  657.     extern int width, height;
  658.     int screen, depth;
  659.     char text[30];
  660.     unsigned long fg, bg;
  661.  
  662.     extern double drawscale, speedscale;
  663.     extern int level, numasts, rndint, ships, score, oldscore;
  664.     extern Objtype obj[SHIP+1];
  665.     unsigned char c;    /* for rand    */
  666.     double *temp, dx, dy, dist;
  667.     int crashed, flashon, len, pause = 0, delay = 64,
  668.         enemycount, counter, counterstart = 1,
  669.         i,    /* index for drawing objs, counting bullets */
  670.         r;    /* radius of shield circle    */
  671.  
  672.     disp = XOpenDisplay(0);
  673.     if (disp == (Display *) NULL)
  674.     {    fprintf(stderr, "Could not open display\n");
  675.         exit(1);
  676.     }
  677.     screen = DefaultScreen(disp);
  678.     bg = BlackPixel(disp, screen);
  679.     fg = WhitePixel(disp, screen);
  680.     hint.x = 150; hint.y = 200; hint.width = 550; hint.height = 550;
  681.     hint.flags = PPosition | PSize;
  682.     width = hint.width; height = hint.height-letheight-1;
  683.     depth = DefaultDepth (disp, screen);
  684.     window = XCreateSimpleWindow (disp, DefaultRootWindow(disp),
  685.         hint.x, hint.y, hint.width, hint.height, 5, fg, bg);
  686.     pixmap = XCreatePixmap (disp, window, width, height, depth);
  687.     XSetStandardProperties (disp, window, "asteroids", "asteroids", None,
  688.         argv, argc, &hint);
  689.     gc = XCreateGC (disp, window, 0, 0);
  690.     XSetGraphicsExposures(disp, gc, 0);    /* IMPORTANT!  If you do not
  691.         specifically ask not to get Expose events, every XCopyArea
  692.         will generate one, & the event queue will fill up.    */
  693.     font = XLoadFont(disp, "10x20\0");    /* If you don't have this
  694.         font, try replacing it with 9x15\0    */
  695.     XSetFont(disp, gc, font);
  696.     pmgc = XCreateGC (disp, window, 0, 0);
  697.     XSetBackground (disp, gc, bg);
  698.     XSetForeground (disp, gc, fg);
  699.     XSetForeground (disp, pmgc, bg);  /* fg of pixmap is bg of window */
  700.     wmhints.flags = InputHint;
  701.     wmhints.input = True;
  702.     XSetWMHints(disp, window, &wmhints);    /* Thanks to Doug Merritt */
  703.     XSelectInput (disp, window,
  704.         KeyPressMask | KeyReleaseMask | StructureNotifyMask);
  705.     XMapRaised (disp, window);
  706.  
  707.     /* Erase cursor. Just delete next 5 lines if any error.    */
  708.     cmap = XDefaultColormap(disp, screen);
  709.     XAllocNamedColor(disp, cmap, "Black", &exact, &black);
  710.     cursor = XCreateFontCursor(disp, XC_dot);
  711.     XRecolorCursor(disp, cursor, &black, &black);
  712.     XDefineCursor(disp, window, cursor);
  713.  
  714.     XFillRectangle (disp, pixmap, pmgc, 0, 0, width, height);
  715. /*    Can delete next line if it causes trouble    */
  716.     srand((unsigned) time(0));    /* By Craig Smith    */
  717.     initasts();
  718. Newgame:
  719.     deletebooms();
  720.     ships = 3;
  721.     score = 0; oldscore = -1;
  722.     for (level = 0; ;)
  723.     {   if (level < 15) level++;
  724.         makeasts ();
  725. Newship:    botline(disp, window, gc);
  726.         if (!obj[SHIP].alive)
  727.         {    obj[SHIP].x = width/2;
  728.         obj[SHIP].y = height/2;
  729.         obj[SHIP].xvel = 0;
  730.         obj[SHIP].yvel = 0;
  731.         obj[SHIP].rot = 3*pi/2;
  732.         obj[SHIP].rotvel = 0;
  733.         energy = 80;
  734.         shield_on = 0;
  735.         }
  736.         obj[SHIP].alive = (ships > 0);
  737.         crashed = 0; flashon = 0; enemycount = 20;
  738.         counter = 0;
  739.         while (numasts)
  740.         {    for (i = FBUL; i < LASTBUL+1; i++)  /* Bullet timer */
  741.             if (obj[i].alive)
  742.             {    obj[i].time--;
  743.             if (!obj[i].time) obj[i].alive = 0; /* Not --! */
  744.             }
  745.         while (XEventsQueued(disp, QueuedAfterReading))
  746.         {   XNextEvent(disp, &event);
  747.             switch (event.type)
  748.             {    case MappingNotify:
  749.                 XRefreshKeyboardMapping (&event);
  750.                 break;
  751.             case ConfigureNotify:
  752.                 width = event.xconfigure.width;
  753.                 height = event.xconfigure.height-letheight-1;
  754.                 XFreePixmap (disp, pixmap);
  755.                 pixmap = XCreatePixmap (disp, window, width, height, depth);
  756.                 XFillRectangle (disp, pixmap, pmgc, 0, 0, width, height);
  757.                 botline(disp, window, gc);
  758.                 break;
  759.             case KeyPress:
  760.                 len = XLookupString (&event, text, 10, &key, 0);
  761.                 if (len == 1 && !shield_on) switch (text[0])
  762.                 {    case 'e':
  763.                     obj[SHIP].rotvel = obj[SHIP].rotvel - .1; break;
  764.                 case 'r':
  765.                     obj[SHIP].rotvel = obj[SHIP].rotvel + .1; break;
  766.                 case 'w':
  767.                     obj[SHIP].rot -= pi/4; break;
  768.                 case 't':
  769.                     obj[SHIP].rot += pi/4; break;
  770.                 case 'd':
  771.                     obj[SHIP].rotvel = obj[SHIP].rotvel - .02; break;
  772.                 case 'f':
  773.                     obj[SHIP].rotvel = obj[SHIP].rotvel + .02; break;
  774.                 case THRUST:
  775.                     obj[SHIP].xvel += cos(obj[SHIP].rot);
  776.                     obj[SHIP].yvel += sin(obj[SHIP].rot);
  777.                     obj[SHIP].shape = SHIPTHRSHAPE;
  778.                     break;
  779.                 case FIRE:
  780.                     if (obj[SHIP].alive) fire(); break;
  781.                 case ' ':
  782.                     if (obj[SHIP].alive)
  783.                     {    hyper(); flashon = 1;
  784. /*                    NOT XSetForeground (disp, gc, bg);
  785.     If you set the fg black, & print the highscore, it will effectively erase it.    */
  786.                         XSetForeground (disp, pmgc, fg);
  787.                     XFillRectangle (disp, pixmap, pmgc, 0, 0, width, height);
  788.                     }
  789.                     break;
  790.                 case SHIELD:
  791.                     if (energy)
  792.                     {    shield_on = 1;
  793.                     obj[SHIP].shape = SHIPSHAPE;}
  794.                     break;
  795.                 case '.':    /* decrease delay    */
  796.                     if (delay > 1) delay >>=1; break;
  797.                 case ',':    /* increase delay    */
  798.                     delay <<=1; break;
  799.                 case 'm':    /* decrease drawscale - may go negative */
  800.                     drawscale -= .1; break;
  801.                 case 'n':    /* increase drawscale    */
  802.                     drawscale += .1; break;
  803.                 case '2':    /* increase speedscale    */
  804.                     speedscale += .1; break;
  805.                 case '1':    /* decrease speedscale    */
  806.                     speedscale -= .1; break;
  807.                 case 'b':    /* increase moves/update */
  808.                     counterstart++; break;
  809.                 case 'v':    /* decrease moves/update */
  810.                     if (counterstart > 1) counterstart--;
  811.                     break;
  812.                 case PAUSE:    /* pause    */
  813.                     pause = 1 - pause; break;
  814.                 case '+':    /* cheat    */
  815.                     ships++; botline(disp, window, gc); break;
  816.                 case 'Q':    /* quit        */
  817.                     goto End;
  818.                 case 's':    /* start new ship */
  819.                     if (!obj[SHIP].alive)
  820.                     if (ships < 1) goto Newgame;
  821.                     else goto Newship;
  822.                     break;
  823.                 }
  824.                 break;
  825.             case KeyRelease:
  826.                 len = XLookupString(&event, text, 10, &key, 0);
  827.                 if (len == 1) switch (text[0])
  828.                 {    case 'e':
  829.                     obj[SHIP].rotvel = 0; break;
  830.                 case 'r':
  831.                     obj[SHIP].rotvel = 0; break;
  832.                 case THRUST:
  833.                     obj[SHIP].shape = SHIPSHAPE;
  834.                     break;
  835.                 case SHIELD:
  836.                     shield_on = 0; break;
  837.                 }
  838. /*                break;        */
  839.         }   }
  840.         if (!pause)
  841.         {   moveobjs(&crashed);
  842.             if (ships) score--;    /* timer effect    */
  843.             if (!counter)
  844.             {    counter = counterstart;    /* Restart counter */
  845.             if (crashed == 2)
  846.             {   crashed--; flashon++;
  847.                 boom(SHIP, BMAX-1, 70);
  848.                 XSetForeground (disp, pmgc, fg);
  849.                 XFillRectangle (disp, pixmap, pmgc, 0, 0, width, height);
  850.                 botline(disp, window, gc);
  851.             }
  852.             /* Write copyright notice    */
  853.             if (!ships && blist == NULL)
  854.             {   sprintf(text, "Xasteroids");
  855.                 XDrawImageString (disp, pixmap, gc,
  856.                 width/2-50, height/2-2*letheight,
  857.                 text, strlen(text));
  858.                 sprintf(text, "Copyright 1990 by Phil Goetz");
  859.                 XDrawImageString (disp, pixmap, gc,
  860.                 width/2-140, height/2,
  861.                 text, strlen(text));
  862.                 sprintf(text, "goetz@cs.buffalo.edu");
  863.                 XDrawImageString (disp, pixmap, gc,
  864.                 width/2-100, height/2+2*letheight,
  865.                 text, strlen(text));
  866.             }
  867.             /*    Draw objects    */
  868.             for (i = 0; i <= LASTOBJ; i++)
  869.                 if (obj[i].alive)
  870.                 vdraw(disp, pixmap, gc, obj[i].shape,
  871.                     obj[i].x, obj[i].y, obj[i].rot);
  872.             if (shield_on && obj[SHIP].alive)
  873.             {   r = abs((int) (drawscale*SHIPSIZE));
  874.                 XDrawArc(disp, pixmap, gc,
  875.                 ((int) obj[SHIP].x) - r,
  876.                 ((int) obj[SHIP].y) - r,
  877.                 2*r, 2*r, 0, 360*64);
  878.                 energy--;
  879.                 if (!energy) shield_on = 0;
  880.             }
  881.             drawbooms(disp, pixmap, gc);
  882.             /* update display:    */
  883.             XCopyArea(disp, pixmap, window, gc, 0, 0, width, height, 0, 0);
  884.             printss(disp, window, gc);
  885.             /* erase objects    */
  886.             XFillRectangle (disp, pixmap, pmgc, 0, 0, width, height);
  887.             if (flashon)
  888.             {   flashon--;
  889.                 XSetForeground (disp, pmgc, bg);
  890.                 XFillRectangle (disp, pixmap, pmgc, 0, 0, width, height);
  891.             }
  892.             XSync(disp, 0);
  893.             }
  894.             counter--;
  895.             i = (rand(rndint)>>8) & 255;
  896.             if (!obj[ENEMY].alive)
  897.             {   if (i < level)
  898.                 {    c = rand(rndint);
  899.                 if (c < level * 10) makeenemy();
  900.             }   }
  901.             else
  902.             {    i += (obj[SHIP].y > obj[ENEMY].y)
  903.                 ? level>>1 : -(level>>1);
  904.             obj[ENEMY].yvel += (i>128+6*obj[ENEMY].yvel) ? .5 : -.5;
  905.             }
  906.             enemycount--; if (!enemycount)
  907.             {    enemycount = 100;
  908.             if (obj[ENEMY].alive)
  909.             {   obj[ENEMYBUL].alive++;
  910.                 obj[ENEMYBUL].x = obj[ENEMY].x;
  911.                 obj[ENEMYBUL].y = obj[ENEMY].y;
  912.                 dx = obj[SHIP].x - obj[ENEMY].x;
  913.                 dy = obj[SHIP].y - obj[ENEMY].y;
  914.                 dist = sqrt(dx*dx + dy*dy);
  915.                 obj[ENEMYBUL].xvel = 3*dx/dist;
  916.                 obj[ENEMYBUL].yvel = 3*dy/dist;
  917.             }
  918.             else    obj[ENEMYBUL].alive = 0;
  919.             }
  920.             for (i = 0; i < delay; i++);
  921.         }
  922.         }
  923.     }
  924. End:    printf("\nYour high score was %d\n", highscore);
  925.     XFreeGC (disp, gc);
  926.     XFreeGC (disp, pmgc);
  927.     XFreePixmap (disp, pixmap);
  928.     XDestroyWindow (disp, window);
  929.     XCloseDisplay (disp);
  930.     exit(0);
  931. }
  932.