home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / games / volume14 / scrabble2 / part05 / init.c next >
C/C++ Source or Header  |  1993-01-27  |  964b  |  49 lines

  1. /*
  2.  *
  3.  * init.c -- static declarations
  4.  *
  5.  */
  6.  
  7. #include "scrab.h"
  8.  
  9. char board[16][16];
  10.  
  11. char words[900000];
  12. long wptr[90000];
  13. long wlen[17];
  14. long dict_size;
  15. int dict_changed;
  16.  
  17. char plr_tiles[4][7];
  18. int plr_scores[4];
  19. int plr_skills[4];
  20. int mean_pcts[SKILL_LEVELS] = { 10, 20, 35, 50, 70 };
  21. int tiles_left[27];
  22. int players;
  23.  
  24. char your[4][7];
  25. char you[4][5];
  26. int human_player;
  27.  
  28. int b1x, b1y, b2x, b2y;
  29.  
  30. compmove *chead;
  31.  
  32. int game_done;
  33. int abort;
  34.  
  35. struct another_word new_words[8];
  36.  
  37. struct let_distrib letters[27] = {
  38.    9,  1,  2,  3,  2,  3,  4,  2, 12,  1,  2,  4,
  39.    3,  2,  2,  4,  9,  1,  1,  8,  1,  5,  4,  1,
  40.    2,  3,  6,  1,  8,  1,  2,  3,  1, 10,  6,  1,
  41.    4,  1,  6,  1,  4,  1,  2,  4,  2,  4,  1,  8,
  42.    2,  4,  1, 10,  2,  0 };
  43.  
  44. int normal_dist[40] = { 1000, 995, 980, 956, 923, 882, 835, 783,
  45.     726, 667, 607, 546, 487, 430, 375, 325, 278, 236, 198, 164,
  46.     135, 110, 89, 71, 56, 44, 34, 26, 20, 15, 11, 8, 6, 4, 3, 2,
  47.     2, 1, 1, 0 };
  48. int normal_sum;
  49.