home *** CD-ROM | disk | FTP | other *** search
/ 5 Star Games: Windows Edition / 5StarsGames-Windows31Edition.iso / bonus / wcdbrk2 / wcdbrk2.rc < prev    next >
Text File  |  1991-06-07  |  4KB  |  82 lines

  1. #include <windows.h>
  2. #include "wcdbrk2.h"
  3.  
  4. Wcdbrk2    ICON WCDBRK2.ICO
  5.  
  6. Board       BITMAP BOARD.BMP       ; Game board
  7. Pegboard BITMAP PEGBOARD.BMP    ; Peg holder
  8. Blclpeg  BITMAP BLCLPEG.BMP     ; Black Clue peg
  9. Whclpeg  BITMAP WHCLPEG.BMP     ; White Clue peg
  10. Bluepeg  BITMAP BLUEPEG.BMP     ; Blue peg
  11. Dkpupeg  BITMAP DKPUPEG.BMP     ; Dark Purple peg
  12. Grenpeg  BITMAP GRENPEG.BMP     ; Green peg
  13. Ltblpeg  BITMAP LTBLPEG.BMP     ; Light Blue peg
  14. Oranpeg  BITMAP ORANPEG.BMP     ; Orange peg
  15. Purppeg  BITMAP PURPPEG.BMP     ; Purple peg
  16. Redpeg    BITMAP REDPEG.BMP      ; Red peg
  17. Yellpeg  BITMAP YELLPEG.BMP     ; Yellow peg
  18.  
  19. WndCdBrkMenu MENU
  20. BEGIN
  21.     POPUP "&New"
  22.     BEGIN
  23.         MENUITEM "Start New Game", IDM_NEW
  24.     END
  25.     POPUP "&About"
  26.     BEGIN
  27.         MENUITEM "About Code Breaker...", IDM_ABOUT
  28.     END
  29.     POPUP "&Give Up"
  30.     BEGIN
  31.         MENUITEM "I give up!", IDM_GIVEUP
  32.     END
  33.     POPUP "&Help"
  34.     BEGIN
  35.         MENUITEM "How do I play this?", IDM_HELP
  36.     END
  37. END
  38.  
  39. AboutBox DIALOG 22, 17, 144, 162
  40. STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
  41. CAPTION "About Code Breaker II"
  42. BEGIN
  43.     CTEXT "by OMNIBUS Systems"                     -1,  0,   5,  144,  8
  44.     CTEXT "Kenneth Fogel"                          -1,  0,  14,  144,  8
  45.     CTEXT "Code Breaker Game"                      -1,  0,  29,  144,  8
  46.     CTEXT "Version 2.0 Beta 1"                     -1,  0,  38,  144,  8
  47.     CTEXT "CompuServe 74646,2157"                  -1,  0,  50,  144,  8
  48.     CTEXT "GENIE K.FOGEL"                          -1,  0,  59,  144,  8
  49.     CTEXT "This program is EGOWARE!"               -1,  0,  80,  144,  8
  50.     CTEXT "The program and source code I place"    -1,  0,  89,  144,  8
  51.     CTEXT "in the public domain. I only ask that"  -1,  0,  98,  144,  8
  52.     CTEXT "you drop me a line and let me know"     -1,  0, 107,  144,  8
  53.     CTEXT "what you think of it!"                  -1,  0, 116,  144,  8
  54.     CTEXT "Please include what part of the world"  -1,  0, 125,  144,  8
  55.     CTEXT "you are from."                          -1,  0, 134,  144,  8
  56.     DEFPUSHBUTTON "OK"     IDOK,  53, 145,  38,   14,  WS_GROUP
  57.     ICON           "Wcdbrk2",  -1, 15,  14,   16, 21
  58. END
  59. HelpBox DIALOG 5, 5, 305, 200
  60. STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
  61. CAPTION "Code Breaker II Help"
  62. BEGIN
  63.     LTEXT "Your task is to discover the secret code created by the computer. The code is made"         -1,  5, 10, 305, 8
  64.     LTEXT "up of 4 out of 8 possible colours. Colours may or may not repeat."                          -1,  5, 19, 305, 8
  65.     LTEXT "Using the mouse, point and click on a colour in the pegboard on the right side of"          -1,  5, 29, 305, 8
  66.     LTEXT "the game board. An asterisk will appear to show which colour is currently selected."        -1,  5, 38, 305, 8
  67.     LTEXT "Using the mouse, point and click on a square in the game board to place your colour"        -1,  5, 48, 305, 8
  68.     LTEXT "down. You start from the bottom row and after each round you advance to the next row"       -1,  5, 57, 305, 8
  69.     LTEXT "up. You may change your selections until you are ready to see if you have been successful." -1,  5, 66, 305, 8
  70.     LTEXT "Using the mouse, point and click on the button labelled 'Did I Get It Right'."              -1,  5, 76, 305, 8
  71.     LTEXT "If you have not filled all the squares in the current row you will be ignored."             -1,  5, 85, 305, 8
  72.     LTEXT "Otherwise the computer will either declare you the winner or provide clues to"              -1,  5, 94, 305, 8
  73.     LTEXT "assist you in uncovering the code."                                                         -1,  5,103, 305, 8
  74.     LTEXT "A clue is either a white or black peg on the right of the colour squares. A white peg"      -1,  5,113, 305, 8
  75.     LTEXT "signifies that one of your colours matches the secret code in colour and position."          -1,  5,122, 305, 8
  76.     LTEXT "A black peg signifies that one of your colours is correct but in the wrong position."       -1,  5,131, 305, 8
  77.     LTEXT "The position of the clue pegs is randomly selected. This means the same guess made twice"   -1,  5,140, 305, 8
  78.     LTEXT "will have the same mix of white and black pegs but in different positions each time."       -1,  5,149, 305, 8
  79.     CTEXT "Good luck and don't forget to drop me a line telling me that"                               -1,  5,159, 305, 8
  80.     CTEXT "you are using the program and where in the world you are from."                             -1,  5,168, 305, 8
  81.     DEFPUSHBUTTON "OK"     IDOK,  135, 180,  40,   14,  WS_GROUP
  82. END