home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / games / volume8 / mgt / part01 / board.c < prev    next >
C/C++ Source or Header  |  1990-02-23  |  1KB  |  60 lines

  1.  
  2. /*
  3.  
  4.         "mgt" Copyright 1990 Shodan
  5.         All Rights Reserved.
  6.         Program by Greg Hale
  7.  
  8. Permission to use, copy, modify, and distribute this software and its
  9. documentation for any purpose and without fee is hereby granted,
  10. provided that this entire comment and copyright notice appear in all
  11. copies and that both that copyright notice and this permission notice
  12. appear in supporting documentation.  No representations are made about
  13. the suitability of this software for any purpose.  It is provided "as
  14. is" without express or implied warranty.
  15.  
  16. Please send copies of extensions to:
  17.  
  18. hale@scam.berkeley.edu
  19. 128.32.138.4    scam.berkeley.edu sting sting.Berkeley.EDU
  20.  
  21. Donations for the 'From My Go Teacher' series may be sent to:
  22.     Shodan
  23.     P.O. Box 4456
  24.     Berkeley, CA 94704
  25.     (415) 849-9475
  26.  
  27. */
  28.  
  29. #include "mgt.h"
  30. #include "var.h"
  31.  
  32.  
  33. FUNCTION piece boardSet(b,i,j,p)
  34. pBoard b;
  35. int i,j;
  36. piece p;
  37. {
  38.     register piece t;
  39.     t = b->b[i][j];
  40.     b->b[i][j] = p;
  41.     return t;
  42. }
  43.  
  44. FUNCTION piece boardGet(b,i,j)
  45. pBoard b;
  46. int i,j;
  47. {
  48.     return b->b[i][j];
  49. }
  50.  
  51.  
  52. FUNCTION void boardClear(b)
  53. pBoard b;
  54. {
  55.     int i,j;
  56.     for(i=boardsize; i--;)
  57.         for (j=boardsize; j--;)
  58.             b->b[i][j] = P_NOTHING;
  59. }
  60.