home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / C / Samples / CSAPE32.ARJ / EXAMPLES / DEMOFRAM.HLP < prev    next >
Text File  |  1991-03-09  |  4KB  |  195 lines

  1. demofram.hlp
  2.  
  3. C-scape 3.2    Example Framer Help File
  4. Copyright (c) 1989, 1990 by Oakland Group, Inc.
  5. ALL RIGHTS RESERVED.
  6.  
  7. Help file for demofram.c
  8.  
  9. Revision History:
  10. -----------------
  11. 03/10/90     pmcm
  12.  
  13. The messages MUST be list in increasing message number order.  That is, 
  14.     message N must occur before message N+1 in the file.
  15.  
  16.     Message numbers must be >= 0.
  17.  
  18.     In this file, message numbers begin with #1 and continue sequentially in 
  19.     increments of one.  The messages need not sequence in increments of one but
  20.     we do so for clarity and ease of maintenance.
  21.  
  22. The help index is a two dimensional array of integers.  The integers are the
  23.     message numbers.  The array indices are the chapter and paragraph.  The 
  24.     highest chapter and highest paragraph numbers in the help file determine 
  25.     the size of the array.
  26.  
  27.     For example, suppose a help file contained only these message mappings:
  28.         
  29.             50,0:1
  30.             50,1:2
  31.             50,2:3
  32.  
  33.     In the above example, the help array allocated would be an array of
  34.     150 integers (50 by 3).  This is because the highest chapter is 50;
  35.     the highest paragraph 2 (we add one to the paragraph because they are
  36.     0-indexed while chapters are 1-indexed).
  37.  
  38.     In this file and in demofram.c, chapter numbers begin with #1 and continue 
  39.     sequentially in    increments of one so as not to waste space in the help
  40.     index array.
  41.  
  42. Chapters   must be >  0.
  43.  
  44. Paragraphs must be >= 0.  If the help function is invoked for a chapter and
  45.         paragraph for which no message exists then paragraph 0 is used to 
  46.         find the default message for the chapter.  If the is no message for
  47.         chapter 0 paragraph 0 then the help function does nothing.  
  48.  
  49. There is detailed help only for the "Help!" album just to keep this demo
  50.     file small.
  51.     
  52.     Rubber Soul, Revolver, and Sgt. Pepper use paragraph 0 and thus have only 
  53.     one generic help message each.
  54.  
  55. %%
  56.  
  57. !Help! album help
  58. 1,0:1
  59. !Help! album - song specific help
  60. 1,1:2
  61. 1,2:3
  62. 1,3:4
  63. 1,4:5
  64. 1,5:6
  65. 1,6:7
  66. 1,7:8
  67. 1,8:9
  68. 1,9:10
  69. 1,10:11
  70. 1,11:12
  71. 1,12:13
  72. 1,13:14
  73. 1,14:15
  74.  
  75. !Rubber Soul album - generic help
  76. 2,0:16
  77.  
  78. !Revolver album - generic help
  79. 3,0:17
  80.  
  81. !Sgt. Pepper album - generic help
  82. 4,0:18
  83.  
  84. %%
  85.         
  86. .1
  87. Help!
  88.  
  89.     The "Help!"    album
  90.  
  91.     (Chapter 1, Paragraph 0 : Message 1)
  92. .2
  93. Help!
  94.  
  95.     "Help!"
  96.  
  97.     (Chapter 1, Paragraph 1 : Message 2)
  98. .3
  99. Help!
  100.  
  101.     "The night before"
  102.  
  103.     (Chapter 1, Paragraph 2 : Message 3)
  104. .4
  105. Help!
  106.  
  107.     "You've got to hide your love away"
  108.  
  109.     (Chapter 1, Paragraph 3 : Message 4)
  110. .5                                    
  111. Help!
  112.  
  113.     "I need you"                    
  114.  
  115.     (Chapter 1, Paragraph 4 : Message 5)
  116. .6                                        
  117. Help!
  118.  
  119.     "Another girl"
  120.  
  121.     (Chapter 1, Paragraph 5 : Message 6)
  122. .7                                            
  123. Help!
  124.  
  125.     "You're going to lose that girl"
  126.  
  127.     (Chapter 1, Paragraph 6 : Message 7)
  128. .8
  129. Help!
  130.  
  131.     "Ticket to ride"
  132.  
  133.     (Chapter 1, Paragraph 7 : Message 8)
  134. .9
  135. Help!
  136.  
  137.     "Act naturally"
  138.  
  139.     (Chapter 1, Paragraph 8 : Message 9)
  140. .10
  141. Help!
  142.  
  143.     "It's only love"
  144.  
  145.     (Chapter 1, Paragraph 9 : Message 10)
  146. .11
  147. Help!
  148.  
  149.     "You like me too much"
  150.  
  151.     (Chapter 1, Paragraph 10 : Message 11)
  152. .12
  153. Help!
  154.  
  155.     "Tell me what you see"
  156.  
  157.     (Chapter 1, Paragraph 11 : Message 12)
  158. .13
  159. Help!
  160.  
  161.     "I've just seen a face"
  162.  
  163.     (Chapter 1, Paragraph 12 : Message 12)
  164. .14
  165. Help!
  166.  
  167.     "Yesterday"
  168.  
  169.     (Chapter 1, Paragraph 13 : Message 14)
  170. .15
  171. Help!
  172.  
  173.     "Dizzy miss lizzie"
  174.  
  175.     (Chapter 1, Paragraph 14 : Message 15)
  176. .16
  177. Rubber Soul
  178.  
  179.     Generic help for the "Rubber Soul" album
  180.  
  181.     (Chapter 2, Paragraph 0 : Message 16)
  182. .17
  183. Revolver
  184.  
  185.     Generic help for the "Revolver" album
  186.  
  187.     (Chapter 3, Paragraph 0 : Message 17)
  188. .18
  189. Sgt. Pepper
  190.  
  191.     Generic help for the "Sgt. Pepper"  album
  192.  
  193.     (Chapter 4, Paragraph 0 : Message 18)
  194. .END
  195.