home *** CD-ROM | disk | FTP | other *** search
/ ftp.barnyard.co.uk / 2015.02.ftp.barnyard.co.uk.tar / ftp.barnyard.co.uk / cpm / walnut-creek-CDROM / MBUG / MBUG153.ARC / LS.DOC < prev    next >
Text File  |  1979-12-31  |  2KB  |  99 lines

  1. Letter Shift - Documentation
  2. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  3. Programmed by Konstantin Articus
  4.               Gross strasse 21
  5.               2250 Husum
  6.               West Germany
  7.  
  8. This game is Public Domain.
  9. You may change it for your own purpose.
  10.  
  11. Converted for CP/M and Microbee by A J Laughton, Oct'90  
  12.  
  13. Hardware requirements: Disk Microbee
  14. Tested on CIAB and 128k Premium but it should also work with others.
  15. Pascal: Turbo Pascal 3.0
  16.  
  17. Files on disk:
  18. ~~~~~~~~~~~~~~
  19. LS.DOC This documentation for Letter Shift
  20. LS.COM Compiled version of Letter Shift
  21. LS.PAS Source code of Letter Shift
  22.  
  23. Letter Shift is a game (not only) for children. The aim of the game is
  24. to put unarranged letters in alphabetical order.
  25.  
  26. It seems simple, but it can be very difficult. This depends on how often
  27. the letters are shuffled. The most difficult game results from an input
  28. between 30 to 50.
  29.  
  30. How to move the letters:
  31. ~~~~~~~~~~~~~~~~~~~~~~~~
  32. One field on the board is emtpy. A neighbouring letter (vertical
  33. or horizontal) can be set on the empty field by typing it in.
  34. The computer doesn't allow non-existing or non-neighbouring letters
  35. to be moved.
  36.  
  37.  
  38. Example:
  39. ~~~~~~~~
  40. Board: (3 times shuffled)
  41.  
  42.     +---+---+---+---+
  43.     ║ A ║ B ║ C ║ D ║
  44.     +---+---+---+---+
  45.     ║ E ║ F ║ G ║ H ║
  46.     +---+---+---+---+
  47.     ║ I ║ J ║ L ║   ║
  48.     +---+---+---+---+
  49.     ║ M ║ N ║ K ║ O ║
  50.     +---+---+---+---+
  51.  
  52. Input: L
  53.  
  54. Board:
  55.  
  56.     +---+---+---+---+
  57.     ║ A ║ B ║ C ║ D ║
  58.     +---+---+---+---+
  59.     ║ E ║ F ║ G ║ H ║
  60.     +---+---+---+---+
  61.     ║ I ║ J ║   ║ L ║
  62.     +---+---+---+---+
  63.     ║ M ║ N ║ K ║ O ║
  64.     +---+---+---+---+
  65.  
  66. Input: K
  67.  
  68.  
  69. Board:
  70.  
  71.     +---+---+---+---+
  72.     ║ A ║ B ║ C ║ D ║
  73.     +---+---+---+---+
  74.     ║ E ║ F ║ G ║ H ║
  75.     +---+---+---+---+
  76.     ║ I ║ J ║ K ║ L ║
  77.     +---+---+---+---+
  78.     ║ M ║ N ║   ║ O ║
  79.     +---+---+---+---+
  80.  
  81. Input: O
  82.  
  83. Board:
  84.  
  85.     +---+---+---+---+
  86.     ║ A ║ B ║ C ║ D ║
  87.     +---+---+---+---+
  88.     ║ E ║ F ║ G ║ H ║
  89.     +---+---+---+---+
  90.     ║ I ║ J ║ K ║ L ║
  91.     +---+---+---+---+
  92.     ║ M ║ N ║ O ║   ║  <- this field must be empty !
  93.     +---+---+---+---+
  94.  
  95. Now the riddle is solved !
  96.  
  97. Enjoy
  98.   Letter Shift !
  99.