home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 274.lha / SimGen_Src / SIZEDEFS.h < prev    next >
C/C++ Source or Header  |  1989-07-26  |  1KB  |  41 lines

  1. #ifndef SIZEDEFS_INCLUDE
  2. #define SIZEDEFS_INCLUDE
  3. /*
  4.  * Size and type definitions for screen.
  5.  *
  6.  * If this file is modified, COPPER.c, DOUBLE.c, SPACEWAR.c & GAMELOGIC.c
  7.  * will be recompiled.
  8.  */
  9.  
  10. /* DEPTH is the number of bitplane for your display.
  11.    1 = 2  colors
  12.    2 = 4  colors
  13.    3 = 8  colors
  14.    4 = 16 colors
  15.    5 = 32 colors
  16.    6 = 64 colors [Extra-HalfBrite] or
  17.        4096 colors [Hold-And-Modify]
  18. */
  19. #define DEPTH    2
  20.  
  21. /* WIDTH is the width of the display in pixels.  If you set it to more than
  22.    320 you must set the HIRES bit of the MODES define. */
  23. #define WIDTH    640
  24.  
  25. /* HEIGHT is the height of the display in pixels.  If you set to to more than
  26.    200 you must set the LACE bit of the MODES define. */
  27. #define HEIGHT    200
  28.  
  29. /* MODES is used to define the display modes you want.  Valid flags are
  30.      HIRES -> 640 across
  31.      LACE  -> 400 down
  32.      HAM   -> Hold-And-Modify
  33.      EXTRA_HALFBRITE -> Extra-HalfBrite mode.
  34. */
  35. #define MODES    HIRES
  36.  
  37. /* NOTE: If you want to use Dual Playfield mode or you want an Overscan
  38.    display I'll have to make some changes to the rest of the program. */
  39.  
  40. #endif
  41.