home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / lambda / soundpot / a / backgmmn.lbr / GAMEPLAN.HZR / GAMEPLAN.HDR
Encoding:
Text File  |  1993-10-26  |  1.4 KB  |  42 lines

  1. /* GAMEPLAN.HDR */
  2.  
  3. /*================================================================*/
  4. /*                  change nothing in this file                   */
  5. /*vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv*/
  6.  
  7. #define TRUE 1
  8. #define FALSE 0
  9. #define ME 1
  10. #define YU 2
  11. #define YRBAR 0
  12. #define MYBAR 25
  13. #define YRHOME 26
  14. #define MYHOME 27
  15. #define ERROR 999
  16. #define MYLEVEL 2
  17.  
  18. extern int list[2][28];  /* two dice, two lists */
  19.  
  20. extern struct board { 
  21.     int stones,  /* number of stones on that point */
  22.         owner,   /* and whose they are */
  23.         x,y,         /*  x and y coordinates of point base */
  24.         lastx,lasty, /* last location drawn on this point */
  25.         cx,cy;       /* coordinates for column numbers */
  26.     }
  27.     point[28], bdsave[28]; /* 24 points, plus 2 bars, 2 homes */
  28.  
  29. extern struct { int cube, whosecube; } doubles;
  30.  
  31. extern struct { int fr,to,flag; } pending;
  32.  
  33. extern int level, dice[2], myscore, yrscore, player, movesleft, cantuse, 
  34.     myturns, swapped, tswap, deciding, expert, tone, show, moremsgline, 
  35.     firstmove, helpdisabled, yrdice, lookforit, startcubevalue;
  36.  
  37. extern char *chatter[80];
  38.  
  39. /*----------------------------------------------*/
  40. /* end of header -- change NOTHING in this file */
  41. /*----------------------------------------------*/
  42.