home *** CD-ROM | disk | FTP | other *** search
/ The Best 3D Games of 1995 / Microforum-TheBest3DGamesOf1995.iso / 3d1 / 3dcubic / readme.bat < prev    next >
DOS Batch File  |  1992-05-28  |  6KB  |  119 lines

  1. @ECHO OFF
  2. CLS
  3. ECHO                              3D-SQUARE GAME
  4. ECHO                      Copyright (c) Shahzad Bhatti, 1992-93
  5. ECHO                              --------------------
  6. ECHO.
  7. ECHO 3-D Square Game is developed by Shahzad Bhatti and is based on square game.
  8. ECHO Just like square game you are supposed to make each side of square in the
  9. ECHO game of same color, there are six color in the game, those are WHITE, RED,
  10. ECHO BROWN, BLUE, GREEN, YELLOW.
  11. ECHO.
  12. ECHO This game contains WYSWYG (what you see is what you get) menu system
  13. ECHO makes this game neat and easy.
  14. ECHO.
  15. ECHO Basically this game has following features:
  16. ECHO.
  17. ECHO 1. When you will type GO and press ENTER, the game will start new
  18. ECHO game and will show you 3D picture of it.
  19. ECHO.
  20. ECHO 2. You can see other sides by pressing arrow keys, those arrow keys are
  21. ECHO    relevant to the front side, for example if you want to bring upper side
  22. ECHO    with relevant to front side downward you will press down key, if you want
  23. ECHO    to bring right side with relevant to the front side leftward you will
  24. ECHO    press left key, etc.
  25. ECHO.
  26. ECHO                   Press any key to continue
  27. PAUSE > NUL
  28. ECHO.
  29. ECHO 3. You will see that each side consist of sixteen boxes, like
  30. ECHO.
  31. ECHO                 ╔═════╦═════╦═════╦═════╗
  32. ECHO                 ║  1  ║  2  ║  3  ║  4  ║
  33. ECHO                 ╠═════╬═════╬═════╬═════╣
  34. ECHO                 ║  5  ║  6  ║  7  ║  8  ║
  35. ECHO                 ╠═════╬═════╬═════╬═════╣
  36. ECHO                 ║  9  ║  10 ║  11 ║  12 ║
  37. ECHO                 ╠═════╬═════╬═════╬═════╣
  38. ECHO                 ║  13 ║  14 ║  15 ║  16 ║
  39. ECHO                 ╚═════╩═════╩═════╩═════╝
  40. ECHO.
  41. ECHO   In this game I call combination of boxes 1,5,9,13 a column. So there
  42. ECHO   are four columns in each side, other column may be 3,7,11,15.
  43. ECHO   And I call combination of boxes 1,2,3,4 a row. Likewise, there are
  44. ECHO   four rows. Columns are numbered from 1 to 4 from left to right, and
  45. ECHO   rows are numbered from 1 to 4 from top to bottom. Just like regular
  46. ECHO   square game you can rotate one or more columns and rows.
  47. ECHO   For example, if you want to move 1st (boxes 1,2,3,4) and 4th
  48. ECHO   (13,14,15,16) row to the left, you will do it by invoking main menu
  49. ECHO   by pressing F10 and pressing right arrow twice or just by pressing ALT+R.
  50. ECHO.
  51. ECHO                   Press any key to continue
  52. PAUSE > NUL
  53. ECHO.
  54. ECHO   Then menu will you you item "rotate left" as yellow. This means that
  55. ECHO   this item is already selected, you can just press ENTER or L.
  56. ECHO.
  57. ECHO   After pressing L or ENTER key, menu will ask you row number and you
  58. ECHO   will type 1 and 4 and will press ENTER. This will move 1st and 4th
  59. ECHO   row to the left.
  60. ECHO.
  61. ECHO 4. You can move column upward or downward in the same way through
  62. ECHO    "rotate column menu" that can be invoked by pressing ALT+C and
  63. ECHO    U or D for upward or downward and column numbers. For example if
  64. ECHO    you want to move 2nd (2,6,10,14) and 3rd (3,7,11,15) column downward
  65. ECHO    with relevant to front side, you will press C holding ALT key, and
  66. ECHO    menu will show you that rotate upward is in yellow that means that
  67. ECHO    this is selected. But you can select "rotate downward" by pressing
  68. ECHO    D key or downward key and ENTER. Then menu will ask you column numbers
  69. ECHO    you will type 2 and 3 and will press ENTER again. This will move the
  70. ECHO    columns 2 and 3 downward.
  71. ECHO.
  72. ECHO 5. You can start new game by selecting GAME MENU by pressing ALT+G or
  73. ECHO    F10 and select N for new game or just by pressing ENTER.
  74. ECHO.
  75. ECHO.
  76. ECHO.                  Press any key to continue
  77. PAUSE > NUL
  78. ECHO.
  79. ECHO 6. You can save current game, this will ask you the name of file, you
  80. ECHO    just need to give filename without extention. You will have to type
  81. ECHO    name for upto 8 characters. You can save game by pressing ALT+G and
  82. ECHO    S or by just pressing F2.
  83. ECHO.
  84. ECHO 7. You can load previously saved game by pressing ALT+G and O or by
  85. ECHO    pressing F3. This will also ask you the name of file without extention.
  86. ECHO    You have to type full name of the file including path name, for example
  87. ECHO    if file is in C drive in the GAME directory and file name is SAVE1. You
  88. ECHO    will type C:\GAME\SAVE1 and will press ENTER. If you make mistake
  89. ECHO    typing filename, you can press BACKSPACE to delete characters and type
  90. ECHO    right letters.
  91. ECHO.
  92. ECHO 8  You can toggle sound of beep by pressing 'B'.
  93. ECHO.
  94. ECHO 9. You can quit game by going to GAME MENU by pressing ALT+G and
  95. ECHO    pressing E or by just pressing F7 or escape key. In case of F7 or
  96. ECHO    escape key, program will ask you the permission to quit the game.
  97. ECHO.
  98. ECHO 10. You can also invoke help page at any time by pressing F1.
  99. ECHO.
  100. ECHO.
  101. ECHO.                  Press any key to continue
  102. PAUSE > NUL
  103. ECHO.
  104. ECHO 11. I have also included one solved game in the files. You can load that
  105. ECHO     game by pressing F3 and typing SOLVED. That can show you an example
  106. ECHO     of solved game.
  107. ECHO.
  108. ECHO I hope you will enjoy it. If you have any problem or need help inform me,
  109. ECHO I will try to solve it. :-)
  110. ECHO.
  111. ECHO                                               Shahzad Bhatti,
  112. ECHO                                               2196 Oakdale Circle
  113. ECHO                                               Hanover Park,IL 60103
  114. ECHO                                                       U.S.A.
  115. ECHO                                               CompuServe 72760, 3612
  116. ECHO.
  117. ECHO.
  118. ECHO.
  119.