home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / os2 / hpgl312.zip / CHARSET0.H < prev    next >
Text File  |  1993-04-18  |  6KB  |  209 lines

  1. /*
  2.    Copyright (c) 1992, 1993 Heinz W. Werntges.  All rights reserved.
  3.    Distributed by Free Software Foundation, Inc.
  4.  
  5. This file is part of HP2xx.
  6.  
  7. HP2xx is distributed in the hope that it will be useful, but
  8. WITHOUT ANY WARRANTY.  No author or distributor accepts responsibility
  9. to anyone for the consequences of using it or for whether it serves any
  10. particular purpose or works at all, unless he says so in writing.  Refer
  11. to the GNU General Public License, Version 2 or later, for full details.
  12.  
  13. Everyone is granted permission to copy, modify and redistribute
  14. HP2xx, but only under the conditions described in the GNU General Public
  15. License.  A copy of this license is supposed to have been
  16. given to you along with HP2xx so you can know your rights and
  17. responsibilities.  It should be in a file named COPYING.  Among other
  18. things, the copyright notice and this notice must be preserved on all
  19. copies.
  20.  
  21. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  22. */
  23.  
  24. /**
  25.  ** This file defines a standard character set by elementary
  26.  ** "draw" & "move" commands. The format is a very compact one from
  27.  ** the old days where every byte was still appreciated.
  28.  **
  29.  ** A font or character set is an array of strings. Each character
  30.  ** corresponds to one of these strings, which is addressed by its ASCII code.
  31.  **
  32.  ** A character is a (NULL-terminated) string of bytes. Each byte
  33.  ** codes for a draw or move action according to the code below:
  34.  **
  35.  **    Bit:    7 6 5 4 3 2 1 0
  36.  **        p x x x y y y y
  37.  **
  38.  **    p:    Plot flag. If set, "draw to" new point, else "move to" it.
  39.  **    xxx:    3-bit unsigned integer  (0...7). X coordinate of new point.
  40.  **    yyyy:    4-bit unsigned integer (0..15). Y coordinate of new point.
  41.  **
  42.  ** The baseline is y = 4 instead of y = 0, so characters with parts
  43.  ** below it can be drawn properly without a need for sign bits.
  44.  ** Function "code_to_ucoord()" transforms these coordinates into
  45.  ** actual user coordinates.
  46.  **
  47.  ** Example:    code for character 'L': "\032\224\324" translates to:
  48.  **        moveto(1,10); drawto(1,4); drawto(5,4);
  49.  **
  50.  ** From the example you can conclude that the font below essentially is
  51.  ** defined on a 5x7 grid:
  52.  **
  53.  **          0 1 2 3 4 5 6 7
  54.  **    15    . . . . . . . .        . : unused
  55.  **    14    . . . . . . . .        * : always used
  56.  **    13    . . . . . . . .        o : sometimes used
  57.  **    12    . . . . . . . .
  58.  **    11    . . . . . . . .
  59.  **    10    o * * * * * . .
  60.  **     9    o * * * * * . .
  61.  **     8    o * * * * * . .
  62.  **     7    o * * * * * . .
  63.  **     6    o * * * * * . .
  64.  **     5    o * * * * * . .
  65.  **     4    o * * * * * . .
  66.  **     3    o o o o o o . .
  67.  **     2    o o o o o o . .
  68.  **     1    o o o o o o . .
  69.  **     0    o o o o o o . .
  70.  **/
  71.  
  72.  
  73. /**
  74.  ** The following array of strings contains the basic character set (set 0).
  75.  **
  76.  ** NOTE: A nice way to add a new charset would be, e. g., to introduce a
  77.  ** ``charset1[]'' as the "alternate" charset and implement the HP-GL
  78.  ** commands needed for switching from one to the other.
  79.  **/
  80.  
  81. char    *charset0[128] =
  82. {
  83.     /* 0x00 ... 0x1f    */
  84.  
  85. /**
  86.  ** Some control codes are valid in HPGL. These are handled elsewhere
  87.  ** in a font-independent manner, so following codes are dummies:
  88.  **/
  89. "","","","", "","","","", "","","","", "","","","",
  90. "","","","", "","","","", "","","","", "","","","",
  91.  
  92. /**
  93.  ** Unfortunately, some compilers do not process \xNN properly,
  94.  ** so I changed all hex codes (\xNN) into octal codes (\NNN),
  95.  ** thereby losing readability but gaining portability.
  96.  **/
  97.  
  98.     /* 0x20 ... 0x2f    */
  99. "",
  100. "\064\265\066\272",
  101. "\051\252\111\312",
  102. "\044\252\104\312\026\326\030\330",
  103. "\064\272\131\251\230\247\307\326\305\225",
  104. "\024\332\051\250\270\271\251\066\265\305\306\266",
  105. "\124\230\231\252\271\270\226\225\244\264\326",
  106. "\071\312",
  107. "\132\270\266\324",
  108. "\024\266\270\232",
  109. "\005\351\145\211\072\264",
  110. "\065\271\027\327",
  111. "\064\244\245\265\263\242",
  112. "\027\327",
  113. "\064\244\245\265\264",
  114. "\352",
  115.  
  116.     /* 0x30 ... 0x3f    */
  117. /*
  118. "\025\244\304\325\331\312\252\231\225\331", ** Zero including `/' **
  119. */
  120. "\025\244\304\325\331\312\252\231\225",
  121. "\044\304\064\272\251",
  122. "\031\252\312\331\330\225\224\324",
  123. "\025\244\304\325\326\307\267\332\232",
  124. "\112\227\226\326\107\304",
  125. "\132\232\230\310\327\325\304\244\225",
  126. "\132\272\230\225\244\304\325\326\307\227",
  127. "\032\332\331\226\224",
  128. "\107\330\331\312\252\231\230\247\307\326\325\304\244\225\226\247",
  129. "\044\264\326\331\312\252\231\230\247\327",
  130. "\047\250\270\267\247\045\265\264\244\245",
  131. "\046\247\267\266\246\064\244\245\265\263\242",
  132. "\112\227\304",
  133. "\030\330\026\326",
  134. "\032\307\224",
  135. "\031\252\312\331\330\307\267\266\065\264",
  136.  
  137.     /* 0x40 ... 0x4f    */
  138. "\103\243\224\230\252\312\331\326\305\266\267\310\330",
  139. "\024\231\252\312\331\324\026\326",
  140. "\024\232\312\331\330\307\227\024\304\325\326\307",
  141. "\125\304\244\225\231\252\312\331",
  142. "\024\232\312\331\325\304\224",
  143. "\124\224\232\332\027\307",
  144. "\024\232\332\027\307",
  145. "\131\312\252\231\225\244\304\325\327\247",
  146. "\024\232\124\332\027\327",
  147. "\024\324\064\272\032\332",
  148. "\025\244\304\325\332\232",
  149. "\024\232\027\247\324\047\332",
  150. "\032\224\324",
  151. "\024\232\270\332\324",
  152. "\024\232\324\332",
  153. "\044\225\231\252\312\331\325\304\244",
  154.  
  155.     /* 0x50 ... 0x5f    */
  156. "\024\232\312\331\330\307\227",
  157. "\044\225\231\252\312\331\326\264\244\066\324",
  158. "\024\232\312\331\330\307\227\247\324",
  159. "\025\244\304\325\326\307\247\230\231\252\312\331",
  160. "\064\272\232\332",
  161. "\032\225\244\304\325\332",
  162. "\032\230\264\330\332",
  163. "\032\224\267\324\332",
  164. "\024\332\124\232",
  165. "\032\231\266\264\066\331\332",
  166. "\032\332\224\324",
  167. "\124\264\272\332",
  168. "\032\324",
  169. "\024\264\272\232",
  170. "\030\272\330",
  171. "\023\323",
  172.  
  173.     /* 0x60 ... 0x6f    */
  174. "\053\310",
  175. "\124\244\225\227\250\310\304",
  176. "\024\304\325\327\310\250\052\244",
  177. "\125\304\264\245\247\270\310\327",
  178. "\112\304\244\225\227\250\310\104\324",
  179. "\026\306\327\310\250\227\225\244\324",
  180. "\064\271\312\332\047\307",
  181. "\022\262\303\310\250\227\225\244\304",
  182. "\032\224\030\270\307\304",
  183. "\072\271\050\270\264\044\304",
  184. "\072\271\050\270\263\242\222",
  185. "\024\232\104\226\310",
  186. "\052\272\264\044\304",
  187. "\024\230\027\250\267\264\067\310\327\324",
  188. "\024\230\027\250\270\307\304",
  189. "\044\225\227\250\270\307\305\264\244",
  190.  
  191.     /* 0x70 ... 0x7f    */
  192. "\022\230\270\307\305\264\224",
  193. "\104\244\225\227\250\310\302",
  194. "\030\224\026\270\310",
  195. "\110\250\227\246\266\305\264\224",
  196. "\052\244\304\030\310",
  197. "\030\225\244\304\310",
  198. "\030\226\264\326\330",
  199. "\030\225\244\265\267\065\304\325\330",
  200. "\030\324\024\330",
  201. "\022\326\330\030\226\264",
  202. "\030\310\224\304",
  203. "\113\273\252\250\227\246\244\263\303",
  204. "\073\263",
  205. "\053\273\312\310\327\306\304\263\243",
  206. "\031\252\310\331",
  207. ""
  208. };
  209.