home *** CD-ROM | disk | FTP | other *** search
/ Freelog Special Freeware 31 / FreelogHS31.iso / PDF / Ghostscript / gs860w32.exe / gs8.60 / lib / gs_init.ps < prev    next >
Text File  |  2007-06-17  |  74KB  |  2,180 lines

  1. % Copyright (C) 1989-2004 Artifex Software, Inc. All rights reserved.
  2. % This software is provided AS-IS with no warranty, either express or
  3. % implied.
  4. % This software is distributed under license and may not be copied,
  5. % modified or distributed except as expressly authorized under the terms
  6. % of the license contained in the file LICENSE in this distribution.
  7. % For more information about licensing, please refer to
  8. % http://www.ghostscript.com/licensing/. For information on
  9. % commercial licensing, go to http://www.artifex.com/licensing/ or
  10. % contact Artifex Software, Inc., 101 Lucas Valley Road #110,
  11. % San Rafael, CA  94903, U.S.A., +1(415)492-9861.
  12.  
  13. % $Id: gs_init.ps 8054 2007-06-17 00:01:02Z alexcher $
  14. % Initialization file for the interpreter.
  15. % When this is run, systemdict is still writable.
  16.  
  17. % Comment lines of the form
  18. %    %% Replace <n> <file(s)>
  19. % indicate places where the next <n> lines should be replaced by
  20. % the contents of <file(s)>, when creating a single merged init file.
  21.  
  22. % The interpreter can call out to PostScript code.  All procedures
  23. % called in this way, and no other procedures defined in these
  24. % initialization files, have names that begin with %, e.g.,
  25. % (%Type1BuildChar) cvn.
  26.  
  27. % Check the interpreter revision.  NOTE: the interpreter code requires
  28. % that the first non-comment token in this file be an integer.
  29. 860
  30. dup revision ne
  31.  { (gs: Interpreter revision \() print revision 10 string cvs print
  32.    (\) does not match gs_init.ps revision \() print 10 string cvs print
  33.    (\).\n) print flush //null 1 .quit
  34.  }
  35. if pop
  36.  
  37. % Acquire userdict, and set its length if necessary.
  38. /userdict where
  39.  { pop userdict maxlength 0 eq }
  40.  { true }
  41. ifelse
  42. systemdict exch
  43.  {        % userdict wasn't already set up by iinit.c.
  44.    dup /userdict
  45.    currentdict dup 200 .setmaxlength        % userdict
  46.    .forceput            % userdict is local, systemdict is global
  47.  }
  48. if begin
  49.  
  50. % Define dummy local/global operators if needed.
  51. systemdict /.setglobal known
  52.  { true .setglobal
  53.  }
  54.  { /.setglobal { pop } bind def
  55.    /.currentglobal { false } bind def
  56.    /.gcheck { pop false } bind def
  57.  }
  58. ifelse
  59.  
  60. % Define .languagelevel if needed.
  61. systemdict /.languagelevel known not { /.languagelevel 1 def } if
  62.  
  63. % Optionally choose a default paper size other than U.S. letter.
  64. % The default page size for many devices is set at compile time to 
  65. % letter, but this can be changed to A4 although this is rarely done.  
  66. % Some devices such as bbox have a different default page size,
  67. % and should not be set to A4 or letter.
  68. % When ghostscript is used in countries that use the international
  69. % standard page size A4 rather than US letter, the page size of 
  70. % devices that default to letter or A4 can be changed by setting
  71. % DEFAULTPAPERSIZE.
  72. % /DEFAULTPAPERSIZE (a4) def
  73.  
  74. % Turn on array packing for the rest of initialization.
  75. true setpacking
  76.  
  77. % Define the old MS-DOS EOF character as a no-op.
  78. % This is a hack to get around the absurd habit of MS-DOS editors
  79. % of adding an EOF character at the end of the file.
  80. <1a> cvn { } def
  81.  
  82. % Acquire the debugging flags.
  83. currentdict /DEBUG known   /DEBUG exch def
  84.  
  85. % if DEBUG is set, set ALL of the subset debugging flags
  86. mark    % '[' isn't defined yet
  87.   /CCFONTDEBUG        % Compiled Fonts
  88.   /CFFDEBUG        % CFF Fonts
  89.   /CMAPDEBUG        % CMAP 
  90.   /DOCIEDEBUG        % CIE color
  91.   /EPSDEBUG        % EPS handling
  92.   /FAPIDEBUG        % Font API
  93.   /INITDEBUG        % Initialization
  94.   /PDFDEBUG        % PDF Interpreter
  95.   /PDFOPTDEBUG        % PDF Optimizer (Linearizer)
  96.   /PDFWRDEBUG        % PDF Writer
  97.   /SETPDDEBUG        % setpagedevice
  98.   /TTFDEBUG        % TTF Fonts
  99.   /VGIFDEBUG        % ViewGIF
  100.   /VJPGDEBUG        % ViewJPEG
  101.   /RESMPDEBUG        % Resource map
  102. counttomark array astore exch pop % ']' isn't defined yet
  103. { dup currentdict exch known DEBUG or def } forall
  104.  
  105. currentdict /PDFSTEP known /PDFSTEP exch def
  106. % if PDFSTEP is on, turn on PDFDEBUG
  107. PDFSTEP { /PDFDEBUG true def } if
  108.  
  109.   /VMDEBUG
  110.     INITDEBUG {{print mark
  111.             systemdict /level2dict known
  112.          { .currentglobal dup false .setglobal vmstatus
  113.            true .setglobal vmstatus 3 -1 roll pop
  114.            6 -2 roll pop .setglobal
  115.          }
  116.          { vmstatus 3 -1 roll pop
  117.          }
  118.         ifelse usertime 16#fffff and counttomark
  119.           { ( ) print (           ) cvs print }
  120.         repeat pop
  121.         ( ) print systemdict length (    ) cvs print
  122.         ( ) print countdictstack (  ) cvs print
  123.         ( <) print count (    ) cvs print (>\n) print flush
  124.       }}
  125.       {{pop
  126.       }}
  127.      ifelse
  128.   def
  129.  
  130. currentdict /BATCH known   /BATCH exch def
  131. currentdict /DELAYBIND known   /DELAYBIND exch def
  132. currentdict /DISKFONTS known   /DISKFONTS exch def
  133. currentdict /DOINTERPOLATE .knownget { /INTERPOLATE exch def } if
  134. currentdict /ESTACKPRINT known   /ESTACKPRINT exch def
  135. currentdict /FAKEFONTS known   /FAKEFONTS exch def
  136. currentdict /FIXEDMEDIA known   /FIXEDMEDIA exch def
  137. currentdict /FIXEDRESOLUTION known   /FIXEDRESOLUTION exch def
  138. currentdict /LOCALFONTS known   /LOCALFONTS exch def
  139. currentdict /JOBSERVER known   /JOBSERVER exch def
  140. currentdict /NOBIND known   /NOBIND exch def
  141. /.bind /bind load def
  142. NOBIND { /bind { } def } if
  143. currentdict /NOCACHE known   /NOCACHE exch def
  144. currentdict /NOCCFONTS known   /NOCCFONTS exch def
  145. currentdict /NOCIE known   /NOCIE exch def
  146. currentdict /NOPSICC known   /NOPSICC exch def
  147. currentdict /NODISPLAY known   not /DISPLAYING exch def
  148. currentdict /NOFONTMAP known   /NOFONTMAP exch def
  149. currentdict /NOFONTPATH known   /NOFONTPATH exch def
  150. currentdict /NOGC known   /NOGC exch def
  151. currentdict /NOINTERPOLATE .knownget { /INTERPOLATE exch not def } if
  152. currentdict /NOMEDIAATTRS known /NOMEDIAATTRS exch def
  153. currentdict /NOOUTERSAVE known   /NOOUTERSAVE exch def
  154. currentdict /NOPAGEPROMPT known   /NOPAGEPROMPT exch def
  155. currentdict /NOPAUSE known   /NOPAUSE exch def
  156. currentdict /NOPLATFONTS known   /NOPLATFONTS exch def
  157. currentdict /NOPROMPT known   /NOPROMPT exch def
  158. currentdict /NOTRANSPARENCY known   /NOTRANSPARENCY exch def
  159. currentdict /DOPS known   /DOPS exch def
  160. currentdict /NOSUBSTDEVICECOLORS known   /NOSUBSTDEVICECOLORS exch def
  161. % The default value of ORIENT1 is true, not false.
  162. currentdict /ORIENT1 known not { /ORIENT1 true def } if
  163. currentdict /OSTACKPRINT known   /OSTACKPRINT exch def
  164. currentdict /OUTPUTFILE known    % obsolete
  165.  { /OutputFile /OUTPUTFILE load def
  166.    currentdict /OUTPUTFILE .undef
  167.  } if
  168. currentdict /QUIET known   /QUIET exch def
  169. % DELAYSAFER is effectively the same as newer NOSAFER
  170. currentdict /DELAYSAFER known { /DELAYSAFER true def /NOSAFER true def } if
  171. /SAFER currentdict /NOSAFER known {
  172.   false
  173. } {
  174.   currentdict /SAFER known
  175.   currentdict /PARANOIDSAFER known or    % PARANOIDSAFER is equivalent
  176. }
  177. ifelse def
  178. currentdict /SHORTERRORS known   /SHORTERRORS exch def
  179. currentdict /STRICT known   /STRICT exch def
  180. currentdict /TTYPAUSE known   /TTYPAUSE exch def
  181. currentdict /WRITESYSTEMDICT known   /WRITESYSTEMDICT exch def
  182.  
  183. % Acquire environment variables.
  184. currentdict /DEVICE known not
  185.  { (GS_DEVICE) getenv { /DEVICE exch def } if } if
  186.  
  187. (START) VMDEBUG
  188.  
  189. % Open the standard files, so they will be open at the outermost save level.
  190. (%stdin) (r) file pop
  191. (%stdout) (w) file pop
  192. (%stderr) (w) file pop
  193.  
  194. /.currentuserparams where {
  195.   pop mark
  196.     % The Adobe implementations appear to have very large maximum
  197.     % stack sizes.  This turns out to actually make a difference,
  198.     % since some badly-behaved files include extremely long procedures,
  199.     % or construct huge arrays on the operand stack.
  200.     % We reset the stack sizes now so that we don't have to worry
  201.     % about overflowing the (rather small) built-in stack sizes
  202.     % during initialization.
  203.   /MaxDictStack 500
  204.   /MaxExecStack 5000
  205.   /MaxOpStack 65414
  206.   .dicttomark .setuserparams
  207. } if
  208.  
  209. % Define a procedure for skipping over an unneeded section of code.
  210. % This avoids allocating space for the skipped procedures.
  211. % We can't use readline, because that imposes a line length limit.
  212. /.skipeof    % <string> .skipeof -
  213.  { currentfile exch 1 exch .subfiledecode flushfile
  214.  } .bind def
  215.  
  216. % Define procedures to assist users who don't read the documentation.
  217. userdict begin
  218. /help
  219.  { (Enter PostScript commands.  '(filename) run' runs a file, 'quit' exits.\n)
  220.    print flush
  221.  } .bind def
  222. end
  223.  
  224. % Define =string, which is used by some PostScript programs even though
  225. % it isn't documented anywhere.
  226. % Put it in userdict so that each context can have its own copy.
  227. userdict /=string 256 string put
  228.  
  229. % Print the greeting.
  230.  
  231. /printgreeting
  232.  { mark
  233.    product (Ghostscript) search
  234.     { pop pop pop
  235.       (This software comes with NO WARRANTY: see the file PUBLIC for details.\n)
  236.     }
  237.     { pop
  238.     }
  239.    ifelse
  240.    (\n) copyright
  241.    (\)\n) revisiondate 10 mod revisiondate 10 idiv 10 mod (-)
  242.    revisiondate 100 idiv 10 mod revisiondate 1000 idiv 10 mod (-)
  243.    revisiondate 10000 idiv ( \()
  244.    revision 10 mod
  245.    revision 100 mod 10 idiv (.)
  246.    revision 100 idiv ( )
  247.    product
  248.    counttomark
  249.     { (%stdout) (w) file exch 0 .writecvp
  250.     } repeat pop
  251.  } .bind def
  252.  
  253. QUIET not { printgreeting flush } if
  254.  
  255. % Define a special version of def for making operator procedures.
  256. /obind {    % <name> <proc> obind <name> <oper>
  257.   1 index exch .makeoperator
  258. } .bind def
  259. /odef {        % <name> <proc> odef -
  260.   1 index exch .makeoperator def
  261. } .bind def
  262.  
  263. % Define a special version of def for storing local objects into global
  264. % dictionaries.  Like .forceput, this exists only during initialization.
  265. /.forcedef {        % <key> <value> .forcedef -
  266.   1 .argindex pop    % check # of args
  267.   currentdict 3 1 roll .forceput
  268. } .bind odef
  269.  
  270. % Define procedures for accessing variables in systemdict and userdict
  271. % regardless of the contents of the dictionary stack.
  272. /.systemvar {        % <name> .systemvar <value>
  273.   //systemdict exch get
  274. } .bind odef
  275. /.userdict {        % - .userdict <dict>
  276.   /userdict .systemvar
  277. } .bind odef
  278. /.uservar {        % <name> .uservar <value>
  279.   .userdict exch get
  280. } .bind odef
  281.  
  282. % If we're delaying binding, remember everything that needs to be bound later.
  283. DELAYBIND NOBIND not and
  284.  { .currentglobal false .setglobal
  285.    systemdict /.delaybind 1500 array .forceput
  286.    .setglobal
  287.    userdict /.delaycount 0 put
  288.     % When we've done the delayed bind, we want to stop saving.
  289.     % Detect this by the disappearance of .delaybind.
  290.    /bind
  291.     { /.delaybind .systemvar dup length 0 ne
  292.        { .delaycount 2 index put
  293.          .userdict /.delaycount .delaycount 1 add put
  294.        }
  295.        { pop /.bind cvx exec
  296.        }
  297.       ifelse
  298.     } .bind def
  299.  } if
  300.  
  301. %**************** BACKWARD COMPATIBILITY ****************
  302. /hwsizedict mark /HWSize //null .dicttomark readonly def
  303. /copyscanlines {        % <device> <y> <string> copyscanlines <substr>
  304.   0 3 1 roll 3 index //hwsizedict .getdeviceparams
  305.   exch pop exch pop aload pop 3 2 roll
  306.   0 exch //null exch .getbitsrect exch pop
  307. } bind odef
  308. currentdict /hwsizedict .undef
  309. /getdeviceprops
  310.  { //null .getdeviceparams
  311.  } bind odef
  312. /.putdeviceprops
  313.  { //null true counttomark 1 add 3 roll .putdeviceparams
  314.    dup type /booleantype ne
  315.     { dup mark eq { /unknown /rangecheck } if
  316.       counttomark 4 add 1 roll cleartomark pop pop pop
  317.       /.putdeviceprops .systemvar exch signalerror
  318.     }
  319.    if
  320.  } bind odef
  321. /.currentfilladjust { .currentfilladjust2 pop } bind odef
  322. /.setfilladjust { dup .setfilladjust2 } bind odef
  323. /.writecvs { 0 .writecvp } bind odef
  324. %**************** DEPRECATED PROCEDURES ****************
  325. %**************** DO NOT USE THESE IN NEW CODE ****************
  326. /max { .max } bind def        % use .max instead
  327. /min { .min } bind def        % use .min instead
  328. /unread /.unread load def    % use .peekstring instead
  329. %**************** END OF BACKWARD COMPATIBILITY SECTION ****************
  330.  
  331. % Utility for removing all entries from a dictionary
  332. /.PurgeDict   % <dict> .PurgeDict -
  333. { { true
  334.     1 index { pop exch pop false exit
  335.     } forall
  336.     { exit
  337.     } if
  338.     1 index exch undef
  339.   } loop
  340.   pop
  341. } bind def
  342.  
  343. % Define predefined procedures substituting for operators,
  344. % in alphabetical order.
  345.  
  346. userdict /#copies 1 put
  347. % Adobe implementations don't accept /[ or /], so we don't either.
  348. ([) cvn
  349.     /mark load def
  350. (]) cvn
  351.     {counttomark array astore exch pop} odef
  352. % .beginpage is redefined if setpagedevice is present.
  353. /.beginpage { } odef
  354. % In LanguageLevel 3, copypage erases the page.
  355. /copypage {
  356.     .languagelevel 3 ge
  357.     dup { 0 } { 1 } ifelse .endpage .doneshowpage {
  358.       .currentnumcopies 1 index .outputpage
  359.       (>>copypage, press <return> to continue<<\n) .confirm
  360.       dup { erasepage } if
  361.     } if pop
  362.     systemdict /..page_default_spaces .knownget { //.PurgeDict exec } if
  363.     .beginpage
  364. } odef
  365. /currentmatrix {
  366.     dup type /arraytype ne
  367.     { /currentmatrix load  /typecheck signalerror } if
  368.     dup length 6 ne
  369.     { /currentmatrix load  /rangecheck signalerror } if
  370.     .currentmatrix 6 .argindex astore pop
  371. } odef
  372. % .currentnumcopies is redefined in Level 2.
  373. /.currentnumcopies { #copies } odef
  374. /setcolorscreen where { pop        % not in all Level 1 configurations
  375.    /currentcolorscreen
  376.     { .currenthalftone
  377.        { { 60.0 exch 0.0 exch 3 copy 6 copy }    % halftone - not possible
  378.          { 3 copy 6 copy }            % screen
  379.          { }                % colorscreen
  380.        }
  381.       exch get exec
  382.     } odef
  383. } if
  384. /currentscreen
  385.     { .currenthalftone
  386.        { { 60.0 exch 0.0 exch }            % halftone - not possible
  387.          { }                % screen
  388.          { 12 3 roll 9 { pop } repeat }    % colorscreen
  389.        }
  390.       exch get exec
  391.     } odef
  392. /.echo /echo load def
  393. userdict /.echo.mode true put
  394. /echo    {dup /.echo.mode exch store .echo} odef
  395. /.eexec_param_dict mark
  396.   /eexec true
  397.   /seed 55665
  398. .dicttomark readonly def
  399. /eexec {
  400.     % Rebind .currentresourcefile if it is the source for the eexec.
  401.   dup //.eexec_param_dict //filterdict /eexecDecode get exec
  402.   cvx exch .currentresourcefile eq
  403.   //systemdict begin { {exec} .execasresource } { exec } ifelse
  404.     % Only pop systemdict if it is still the top element,
  405.     % because this is apparently what Adobe interpreters do.
  406.   currentdict //systemdict eq { end } if
  407. } odef
  408. % .endpage is redefined if setpagedevice is present.
  409. /.endpage { 2 ne } odef
  410. % erasepage mustn't use gsave/grestore, because we call it before
  411. % the graphics state stack has been fully initialized.
  412. /erasepage
  413.     { /currentcolor where
  414.        { pop currentcolor currentcolorspace { setcolorspace setcolor } }
  415.        { /currentcmykcolor where
  416.           { pop currentcmykcolor { setcmykcolor } }
  417.           { currentrgbcolor { setrgbcolor } }
  418.          ifelse
  419.        }
  420.       ifelse
  421.           currentoverprint false setoverprint 1 setgray .fillpage setoverprint
  422.           exec
  423.     } odef
  424. % To satisfy the Genoa FTS, executive must be a procedure, not an operator.
  425. /executive
  426.     { { prompt
  427.          { (%statementedit) (r) .systemvmfile } stopped
  428.          { pop pop $error /errorname get /undefinedfilename eq
  429.         { .clearerror exit } if        % EOF
  430.            /handleerror .systemvar exec //null        % ioerror??
  431.          }
  432.         if
  433.         cvx { .runexec } execute
  434.       } loop
  435.     } bind def
  436. /filter
  437.     { //filterdict 1 .argindex .knownget
  438.        { exch pop exec }
  439.        { /filter .systemvar /undefined signalerror }
  440.       ifelse
  441.     } odef
  442. % handleerror procedure as mentioned in the "Operators" section of the PLRM Section 8.2
  443. % This invokes the handleerror procedure from errordict (unless we are running under a
  444. % JOBSERVER where we want to always use a defined error handler (many error handlers in
  445. % 'wild' PostScript files are broken and don't indicate the error in any useful fashion).
  446. %
  447. % We run the handleerror procedure using .internalstopped so that broken error handlers
  448. % won't cause nested errors (Unexpected Error conditions).
  449. /handleerror
  450.     JOBSERVER {
  451.       { /.GShandleerror .systemvar .internalstopped pop } bind % always use .GShandleerror.
  452.     } {
  453.       { /errordict .systemvar /handleerror get .internalstopped pop } bind % PLRM standard errorhandling
  454.     } ifelse def
  455. /identmatrix [1.0 0.0 0.0 1.0 0.0 0.0] readonly def
  456. /identmatrix {
  457.     dup type /arraytype ne { /identmatrix load  /typecheck signalerror } if
  458.     dup length 6 ne { /identmatrix load  /rangecheck signalerror } if
  459.     dup 0 //identmatrix putinterval
  460. } odef
  461. /languagelevel 1 def        % gs_lev2.ps may change this
  462. /makeimagedevice { false makewordimagedevice } odef
  463. /matrix    { 6 array identmatrix } odef
  464. % .promptmsg is redefined if the interpreter includes readline support.
  465. /.promptmsg {
  466.     (GS) print
  467.     count 0 ne { (<) print count =only } if
  468.     (>) print flush
  469. } bind def
  470. /prompt    { flush flushpage NOPROMPT not { .promptmsg } if } bind def
  471. /pstack    { 0 1 count 3 sub { index == } for } bind def
  472. /putdeviceprops
  473.     { .putdeviceprops { erasepage } if } odef
  474. /quit    { /quit load 0 .quit } odef
  475. /run    { dup type /filetype ne { (r) .systemvmfile } if
  476.         % We must close the file when execution terminates,
  477.         % regardless of the state of the stack,
  478.         % and then propagate an error, if any.
  479.       cvx null {.runexec} .errorexec
  480.     } odef
  481. % Execute a file.
  482. % Level 2 uses 2 .stop to clear the e-stack for a successful startjob:
  483. % we detect that here, since we need to handle this even if we start out
  484. % without job control in effect.
  485. %
  486. % What we push on the e-stack is the following to be executed in this order:
  487. %    <lit-file|fileproc> .runexec1 <lit-file|fileproc> .runexec2
  488. /.runexec1 {        % <file|fileproc> .runexec1 -
  489.   dup type /filetype ne { cvx exec } if
  490.   cvx //null 2 .stopped
  491.     % If we got back here from a startjob, just keep going.
  492.     % startjob replaces the null on the o-stack with a procedure
  493.     % to be executed when we get back here.
  494.   dup //null ne { exec true } { pop false } ifelse
  495. } bind def
  496. /.runexec2 {        % <continue> <file|fileproc> .runexec2 -
  497.   exch {
  498.     .runexec
  499.   } {
  500.     dup type /filetype ne { cvx exec } if
  501.     closefile
  502.   } ifelse
  503. } bind def
  504. /.runexec {        % <file|fileproc> .runexec -
  505.   cvlit /.runexec1 cvx 1 index /.runexec2 cvx 4 .execn
  506. } bind def
  507. % The following is only for compatibility with Adobe interpreters.
  508. /setdash {
  509.     0 .argindex type dup /integertype eq exch /realtype eq or not {
  510.       /setdash .systemvar /typecheck signalerror
  511.     } if
  512.     1 .argindex length 11 gt { /setdash .systemvar /limitcheck signalerror } if
  513.     //setdash
  514. } odef
  515. /setdevice
  516.   {
  517.     .setdevice
  518.       {
  519.         mark
  520.           {         % Reset the halftone since the device may differ
  521.             currenthalftone
  522.             dup type /dicttype eq
  523.               { sethalftone }
  524.               { pop }
  525.             ifelse
  526.           }
  527.         stopped
  528.         cleartomark
  529.         erasepage
  530.       }
  531.     if
  532.   }
  533. odef
  534. /setlinecap {
  535.     dup 2 gt { /setlinecap .systemvar /rangecheck signalerror } if
  536.     .setlinecap
  537. } odef
  538. /setlinejoin {
  539.     dup 2 gt { /setlinejoin .systemvar /rangecheck signalerror } if
  540.     .setlinejoin
  541. } odef
  542. /setmatrix {
  543.     dup type /arraytype ne {
  544.       dup type /packedarraytype ne {
  545.         /setmatrix load  /typecheck signalerror
  546.       } if
  547.     } if
  548.     dup length 6 ne { /setmatrix load  /rangecheck signalerror } if
  549.     dup aload pop .setmatrix pop
  550. } odef
  551. /showpage {
  552.     0 .endpage .doneshowpage {
  553.       .currentnumcopies true .outputpage
  554.       (>>showpage, press <return> to continue<<\n) .confirm
  555.       initgraphics
  556.           currentoverprint false setoverprint 1 setcolor
  557.           .fillpage
  558.           setoverprint 0 setcolor
  559.     }
  560.     { initgraphics } ifelse
  561.     systemdict /..page_default_spaces .knownget { //.PurgeDict exec } if
  562.     .beginpage
  563. } odef
  564. % Code output by Adobe Illustrator relies on the fact that
  565. % `stack' is a procedure, not an operator!!!
  566. /stack    { 0 1 count 3 sub { index = } for } bind def
  567. /start    { BATCH { //null 0 .quit } { executive } ifelse } def
  568. % Internal uses of stopped that aren't going to do a stop if an error occurs
  569. % should use .internalstopped to avoid setting newerror et al.
  570. /.internalstopped { //null 1 .stopped //null ne } bind def
  571. /store {    % Don't alter operands before completing.
  572.     1 .argindex where { 2 index 2 index put pop pop } { def } ifelse
  573. } odef
  574. /.typenames mark .typenames counttomark packedarray exch pop def
  575. /type {
  576.     //.typenames .type
  577. } odef
  578. currentdict /.typenames .undef
  579. % When running in Level 1 mode, this interpreter is supposed to be
  580. % compatible with PostScript "version" 54.0 (I think).
  581. /version (54.0) readonly def
  582. /.wheredict 10 dict def
  583. /.where /where load def
  584. /where {
  585.     //.wheredict 1 .argindex .knownget { exec } { .where } ifelse
  586. } odef
  587.  
  588. % internaldict is defined in systemdict, but the dictionary is allocated
  589. % in local VM.  However, the procedure must be global, since it is an
  590. % "operator" and must be bind-able into global procedures.
  591. % We make a procedure for creating it, since we must create a new one
  592. % for each context with private local VM.
  593. /.makeinternaldict {
  594.   .currentglobal true .setglobal
  595.     [ /dup .systemvar 1183615869 /eq .systemvar
  596.     [ /pop .systemvar //null ] cvx
  597.     false .setglobal
  598.     dup 1 10 dict .forceput    % proc is global, dict is local
  599.     true .setglobal
  600.     [ /internaldict /cvx .systemvar /invalidaccess /signalerror cvx ] cvx
  601.       /ifelse .systemvar
  602.     ] cvx executeonly
  603.   exch .setglobal
  604. } odef
  605. systemdict /internaldict dup .makeinternaldict .makeoperator
  606. .forceput        % proc is local, systemdict is global
  607.  
  608. % Define some additional built-in procedures (beyond the ones defined by
  609. % the PostScript Language Reference Manual).
  610. % Warning: these are not guaranteed to stay the same from one release
  611. % to the next!
  612. /concatstrings    %    (str1) (str2) concatstrings (str1str2)
  613.     { exch dup length 2 index length add string    % str2 str1 new
  614.       dup dup 4 2 roll copy        % str2 new new new1
  615.       length 4 -1 roll putinterval
  616.     } bind def
  617. /copyarray
  618.     { dup length array copy } bind def
  619. % Copy a dictionary per the Level 2 spec even in Level 1.
  620. /.copydict        % <fromdict> <todict> .copydict <todict>
  621.     { dup 3 -1 roll { put dup } forall pop } bind def
  622. /copystring
  623.     { dup length string copy } bind def
  624. /findlibfile {
  625.   .systemvmlibfile { dup .filename pop exch true } { false } ifelse
  626. } odef
  627. /.growdictlength    % get size for growing a dictionary
  628.     { length 3 mul 2 idiv 1 add
  629.     } bind def
  630. /.growdict        % grow a dictionary
  631.     { dup .growdictlength .setmaxlength
  632.     } bind def
  633. /.growput        % put, grow the dictionary if needed
  634.     { 2 index length 3 index maxlength eq
  635.        { 3 copy pop known not { 2 index .growdict } if
  636.        } if
  637.       put
  638.     } bind def
  639. % .localvmarray may be an operator: see zsysvm.c.
  640. /.localvmarray where {
  641.   pop
  642. } {
  643.   /.localvmarray {
  644.     .currentglobal false .setglobal
  645.     exch array exch .setglobal
  646.   } bind def
  647. } ifelse
  648. /.localvmdict where {
  649.   pop
  650. } {
  651.   /.localvmdict {
  652.     .currentglobal false .setglobal
  653.     exch dict exch .setglobal
  654.   } bind def
  655. } ifelse
  656. /.packtomark
  657.     { counttomark packedarray exch pop } bind def
  658. /ppstack
  659.     { 0 1 count 3 sub { index === } for } bind def
  660. /runlibfile
  661.     {        % We don't want to bind 'run' into this procedure,
  662.             % since run may get redefined.
  663.       findlibfile
  664.        { exch pop /run .systemvar exec }
  665.        { /undefinedfilename signalerror }
  666.       ifelse
  667.     } bind def
  668. /selectdevice
  669.     { finddevice setdevice .setdefaultscreen } bind def
  670. /signalerror        % <object> <errorname> signalerror -
  671.     { /errordict .systemvar exch get exec } bind def
  672. /signaloperror {    % <object> <errorname> signaloperror -
  673.     % Same as signalerror, except that if we are inside a pseudo-operator
  674.     % or .errorexec, we use its error object, just as errors generated by
  675.     % real operators do.
  676.     /errordict .systemvar exch get
  677.     .finderrorobject { 3 -1 roll pop exch } if
  678.     exec
  679. } bind def
  680.  
  681. % Define the =[only] procedures.  Also define =print,
  682. % which is used by some PostScript programs even though
  683. % it isn't documented anywhere.
  684. /write=only {
  685.     .writecvs
  686. } bind def
  687. /write= {
  688.     1 index exch write=only (\n) writestring
  689. } bind def
  690. /=only    { (%stdout) (w) file exch write=only } bind def
  691. /=    { =only (\n) print } bind def
  692. /=print    /=only load def
  693. % Temporarily define == as = for the sake of runlibfile0.
  694. /== /= load def
  695.  
  696. % The following procedures are documented.
  697. /copydevice {        % <device> copydevice <newdevice>
  698.   false .copydevice2
  699. } odef
  700. /finddevice {        % <devicename> finddevice <device>
  701.   /devicedict .systemvar exch get
  702.   dup 1 get //null eq {
  703.         % This is the first request for this type of device.
  704.         % Create a default instance now.
  705.         % Stack: [proto null]
  706.     .currentglobal true .setglobal exch
  707.     dup dup 0 get copydevice 1 exch put
  708.     exch .setglobal
  709.   } if 1 get
  710. } bind def
  711. /findprotodevice {    % <devicename> findprotodevice <protodevice>
  712.   /devicedict .systemvar exch get 0 get
  713. } bind def
  714.  
  715. % Run a resource file.  This allows us to distinguish resource objects
  716. % from objects coming from input files.
  717. userdict /.currentresourcefile //null put
  718. /.execasresource {    % <file> <proc|runfile> .execasresource -
  719.   /stopped .systemvar
  720.   /.currentresourcefile .uservar
  721.         % Stack: file proc -stopped- currfile
  722.   .userdict /.currentresourcefile 5 index cvlit put
  723.   2 .execn        % stopped <file>
  724.   .userdict /.currentresourcefile 3 -1 roll put
  725.   { stop } if
  726. } bind def
  727. /.runresource {        % <file> .runresource -
  728.   { /run .systemvar exec } .execasresource
  729. } bind def
  730.  
  731. % Define procedures for getting and setting the current device resolution.
  732.  
  733. /gsgetdeviceprop    % <device> <propname> gsgetdeviceprop <value>
  734.  { 2 copy mark exch //null .dicttomark .getdeviceparams
  735.    dup mark eq        % if true, not found
  736.     { pop dup /undefined signalerror }
  737.     { 5 1 roll pop pop pop pop }
  738.    ifelse
  739.  } bind def
  740. /gscurrentresolution    % - gscurrentresolution <[xres yres]>
  741.  { currentdevice /HWResolution gsgetdeviceprop
  742.  } bind def
  743. /gssetresolution    % <[xres yres]> gssetresolution -
  744.  { 2 array astore mark exch /HWResolution exch
  745.    currentdevice copydevice putdeviceprops setdevice
  746.  } bind def
  747.  
  748. % Define auxiliary procedures needed for the above.
  749. /shellarguments        % -> shell_arguments true (or) false
  750.     { /ARGUMENTS where
  751.        { /ARGUMENTS get dup type /arraytype eq
  752.           { aload pop /ARGUMENTS //null store true }
  753.           { pop false }
  754.          ifelse }
  755.        { false } ifelse
  756.     } bind def
  757. /.confirm {
  758.   DISPLAYING NOPAUSE not TTYPAUSE or and {
  759.     % Print a message (unless NOPAGEPROMPT or NOPROMPT is true)
  760.     % and wait for the user to type something.
  761.     % If the user just types a newline, flush it.
  762.     NOPAGEPROMPT NOPROMPT or { pop } { print flush } ifelse
  763.     .confirmread
  764.   } {
  765.     pop
  766.   } ifelse
  767. } bind def
  768. /.confirmread {
  769.   TTYPAUSE {
  770.     (/dev/tty) (r) file dup read pop pop closefile
  771.   } {
  772.     .echo.mode false echo
  773.     (%stdin) (r) file dup read {
  774.       dup (\n) 0 get eq { pop pop } { unread } ifelse
  775.     } {
  776.       pop
  777.     } ifelse echo
  778.   } ifelse
  779. } bind def
  780.  
  781. % Define the procedure used by .runfile, .runstdin and .runstring
  782. % for executing user input.
  783. % This is called with a procedure or executable file on the operand stack.
  784. /.execute {        % <obj> .execute <stopped>
  785.   stopped $error /newerror get and
  786.    { /handleerror .systemvar exec flush true } { false } ifelse
  787. } bind def
  788. /execute {        % <obj> execute -
  789.   .execute pop
  790. } odef
  791. % Define an execute analogue of runlibfile0.
  792. /execute0 {        % <obj> execute0 -
  793.   .execute { /execute0 cvx 1 .quit } if
  794. } bind def
  795. % Define the procedure that the C code uses for running files
  796. % named on the command line.
  797. /.runfile {
  798.   { runlibfile } execute0
  799. } def
  800. % Define the procedure that the C code uses for running piped input.
  801. % We don't use the obvious { (%stdin) run }, because we want the file to be
  802. % reopened if a startjob does a restore.
  803. /.runstdin {
  804.   { { (%stdin) (r) file cvx } .runexec } execute0
  805. } bind def
  806. % Define the procedure that the C code uses for running commands
  807. % given on the command line with -c.  We turn the string into a file so that
  808. % .runexec can do the right thing with a startjob.
  809. /.runstring {
  810.   0 0 .systemvmstring .systemvmSFD cvx { .runexec } execute0
  811. } bind def
  812. % Define the procedure that the C code uses to set up for executing
  813. % a string that may be received in pieces.
  814. /.runstringbegin {
  815.   1 .systemvmarray dup 0 /.needinput load put cvx    % { .needinput } in systemvm
  816.   0 0 .systemvmstring .systemvmSFD cvx .runexec
  817. } bind def
  818.  
  819. % Define a special version of runlibfile that aborts on errors.
  820. /runlibfile0
  821.     { cvlit dup dup /.currentfilename exch def
  822.        { findlibfile not { stop } if }
  823.       stopped
  824.        { (Can't find \(or open\) initialization file ) print
  825.          .currentfilename == flush /runlibfile0 cvx 1 .quit
  826.        } if
  827.       exch pop cvx 
  828.       { stopped } 0 get 3 -1 roll 2 array astore cvx exec
  829.       /.currentfilename exch store
  830.        { (While reading ) print .currentfilename print (:\n) print flush
  831.          /handleerror .systemvar exec /runlibfile0 1 .quit
  832.        } if
  833.     } bind def
  834. % Temporarily substitute it for the real runlibfile.
  835. /.runlibfile /runlibfile load def
  836. /runlibfile /runlibfile0 load def
  837.  
  838. % Create the error handling machinery.
  839. % Define the standard error handlers.
  840. % The interpreter has created the ErrorNames array.
  841. /.unstoppederrorhandler    % <command> <errorname> .unstoppederrorhandler -
  842.  {    % This is the handler that gets used for recursive errors,
  843.     % or errors outside the scope of a 'stopped'.
  844.    2 copy SHORTERRORS
  845.     { (%%[ Error: ) print =only flush
  846.       (; OffendingCommand: ) print =only ( ]%%) =
  847.     }
  848.     { (Unrecoverable error: ) print =only flush
  849.       ( in ) print = flush
  850.       count 2 gt
  851.        { (Operand stack:\n  ) print
  852.          count 1 sub -1 2 { (  ) print index =only flush } for
  853.      () = flush
  854.        } if
  855.     }
  856.    ifelse
  857.    -1 0 1 //ErrorNames length 1 sub
  858.     { dup //ErrorNames exch get 3 index eq
  859.        { not exch pop exit } { pop } ifelse
  860.     }
  861.    for exch pop .quit
  862.  } bind def
  863. /.errorhandler        % <command> <errorname> .errorhandler -
  864.   {        % Detect an internal 'stopped'.
  865.     1 .instopped { //null eq { pop pop stop } if } if
  866.     (I) false .setdebug
  867.     $error /.inerror get 1 .instopped { pop } { pop true } ifelse
  868.      { .unstoppederrorhandler
  869.      } if    % detect error recursion
  870.     $error /globalmode .currentglobal false .setglobal put
  871.     $error /.inerror true put
  872.     $error /newerror true put
  873.     $error exch /errorname exch put
  874.     $error exch /command exch put
  875.     $error /errorinfo known not { $error /errorinfo //null put } if
  876.     $error /recordstacks get $error /errorname get /VMerror ne and
  877.      {        % Attempt to store the stack contents atomically.
  878.        count array astore dup $error /ostack 4 -1 roll
  879.        % Grab the execstack, then remove to two elements that are from
  880.        % this error handler (not interesting).
  881.        countexecstack array execstack dup length 2 sub 0 exch getinterval
  882.        $error /estack 3 -1 roll
  883.        countdictstack array dictstack $error /dstack 3 -1 roll
  884.        put put put aload pop
  885.      }
  886.      { $error /dstack .undef
  887.        $error /estack .undef
  888.        $error /ostack .undef
  889.      }
  890.     ifelse
  891.     $error /position currentfile status
  892.      { currentfile { fileposition } .internalstopped { pop //null } if
  893.      }
  894.      {        % If this was a scanner error, the file is no longer current,
  895.         % but the command holds the file, which may still be open.
  896.        $error /command get dup type /filetype eq
  897.         { { fileposition } .internalstopped { pop //null } if }
  898.         { pop //null }
  899.        ifelse
  900.      }
  901.     ifelse put
  902.         % During initialization, we don't reset the allocation
  903.         % mode on errors.
  904.     $error /globalmode get $error /.nosetlocal get and .setglobal
  905.     $error /.inerror false put
  906.     stop
  907.   } bind def
  908. % Define the standard handleerror.  We break out the printing procedure
  909. % (.printerror) so that it can be extended for binary output
  910. % if the Level 2 facilities are present.
  911.   /.printerror
  912.    { $error begin newerror
  913.      {
  914.        /command load errorname SHORTERRORS
  915.     { (%%[ Error: ) print =only flush
  916.       (; OffendingCommand: ) print =only
  917.       errorinfo dup //null eq {
  918.         pop
  919.       } {
  920.         (;\nErrorInfo:) print
  921.         dup type /arraytype eq
  922.           { { ( ) print =only } forall }
  923.           { ( ) print =only }
  924.         ifelse
  925.       } ifelse
  926.           ( ]%%) = flush
  927.     }
  928.     { (Error: ) print ==only flush
  929.       ( in ) print ==only flush
  930.       errorinfo dup //null eq {
  931.         pop
  932.       } {
  933.         (\nAdditional information: ) print ==only flush
  934.       } ifelse
  935.       .printerror_long
  936.     }
  937.        ifelse
  938.        .clearerror flush
  939.      }
  940.      { % newerror is false, test to see if user has set handleerror to a different
  941.        % routine, if so execute it, otherwise, just return.  This code deals with the
  942.        % Genoa issue of setting /handleerror, and then calling it, without an error
  943.        % being set.  We were erroring in this case, due to /command load failing.
  944.  
  945.         //JOBSERVER {
  946.         /errordict .systemvar /handleerror get /.GShandleerror .systemvar ne
  947.     } {
  948.         false
  949.     } ifelse
  950.          { /errordict .systemvar begin /handleerror load .internalstopped pop end
  951.          }
  952.          if
  953.      }
  954.      ifelse    % newerror 
  955.      end
  956.      flush
  957.     } bind def     
  958.   /.printerror_long            % long error printout,
  959.                     % $error is on the dict stack
  960.    {    % Push the (anonymous) stack printing procedure.
  961.     %  <heading> <==flag> <override-name> <stackname> proc
  962.        {
  963.      currentdict exch .knownget    % stackname defined in $error?
  964.      {
  965.        4 1 roll            % stack: <stack> <head> <==flag> <over>
  966.        /errordict .systemvar exch .knownget    % overridename defined?
  967.        { 
  968.          exch pop exch pop exec    % call override with <stack>
  969.        }
  970.        { 
  971.          exch print exch        % print heading. stack <==flag> <stack>
  972.          1 index not { () = } if
  973.          { 1 index { (\n    ) } { (   ) } ifelse print
  974.            dup type /dicttype eq
  975.            {
  976.          (--dict:) print
  977.          dup rcheck {
  978.            dup length =only (/) print dup maxlength =only
  979.            dup wcheck not { ((ro)) print } if
  980.          } if
  981.          /gcheck where {
  982.            pop gcheck { ((G)) } { ((L)) } ifelse print
  983.          } {
  984.            pop
  985.          } ifelse (--) print
  986.            }
  987.            {
  988.          dup type /stringtype eq 2 index or
  989.          { ==only } { =only } ifelse
  990.            } ifelse
  991.          } forall
  992.          pop
  993.        }
  994.        ifelse            % overridden
  995.      }
  996.      { pop pop pop
  997.      }
  998.      ifelse                % stack known
  999.        }
  1000.  
  1001.        (\nOperand stack:) OSTACKPRINT /.printostack /ostack 4 index exec
  1002.        (\nExecution stack:) ESTACKPRINT /.printestack /estack 4 index exec
  1003.        (\nBacktrace:) true /.printbacktrace /backtrace 4 index exec
  1004.        (\nDictionary stack:) false /.printdstack /dstack 4 index exec
  1005.        () =
  1006.        pop    % printing procedure
  1007.  
  1008.        errorname /VMerror eq
  1009.     { (VM status:) print mark vmstatus
  1010.       counttomark { ( ) print counttomark -1 roll dup =only } repeat
  1011.       cleartomark () =
  1012.     } if
  1013.  
  1014.        .languagelevel 2 ge
  1015.     { (Current allocation mode is ) print
  1016.       globalmode { (global\n) } { (local\n) } ifelse print
  1017.     } if
  1018.  
  1019.        .oserrno dup 0 ne
  1020.     { (Last OS error: ) print
  1021.       errorname /VMerror ne
  1022.        { dup .oserrorstring { = pop } { = } ifelse }
  1023.        { = }
  1024.       ifelse
  1025.     }
  1026.     { pop
  1027.     }
  1028.        ifelse
  1029.  
  1030.        position //null ne
  1031.     { (Current file position is ) print position = }
  1032.        if
  1033.  
  1034.    } bind def
  1035. % Define a procedure for clearing the error indication.
  1036. /.clearerror
  1037.  { $error /newerror false put
  1038.    $error /errorname //null put
  1039.    $error /errorinfo //null put
  1040.    0 .setoserrno
  1041.  } bind def
  1042.  
  1043. % Define $error.  This must be in local VM.
  1044. .currentglobal false .setglobal
  1045. /$error 40 dict .forcedef    % $error is local, systemdict is global
  1046.         % newerror, errorname, command, errorinfo,
  1047.         % ostack, estack, dstack, recordstacks,
  1048.         % binary, globalmode,
  1049.         % .inerror, .nosetlocal, position,
  1050.         % plus extra space for badly designed error handers.
  1051. $error begin
  1052.   /newerror false def
  1053.   /recordstacks true def
  1054.   /binary false def
  1055.   /globalmode .currentglobal def
  1056.   /.inerror false def
  1057.   /.nosetlocal true def
  1058.   /position //null def
  1059.   /errorinfo //null def
  1060. end
  1061. % Define errordict similarly.  It has one entry per error name,
  1062. %   plus handleerror.  However, some astonishingly badly written PostScript
  1063. %   files require it to have at least one empty slot.
  1064. /errordict ErrorNames length 3 add dict
  1065. .forcedef        % errordict is local, systemdict is global
  1066. .setglobal        % back to global VM
  1067. % For greater Adobe compatibility, we put all non-standard errors in a
  1068. %   separate dictionary, gserrordict.  It does not need to be in local VM,
  1069. %   because PostScript programs do not access it.
  1070. %   NOTE: the name gserrordict is known to the interpreter.
  1071. /gserrordict 5 dict def
  1072. % Register an error in errordict.  We make this a procedure because we only
  1073. % register the Level 1 errors here: the rest are registered by "feature"
  1074. % files.  However, ErrorNames contains all of the error names regardless of
  1075. % what features are included, so we have to "know" that VMerror is the last
  1076. % Level 1 error.
  1077. /.registererror        % <name> .registererror -
  1078.  { errordict exch .registererror2
  1079.  } bind def
  1080. /.registererror2    % <dict> <name> .registererror -
  1081.  { .currentglobal true .setglobal    % create procs in global VM
  1082.    3 1 roll
  1083.    mark 1 index systemdict /.errorhandler get /exec load .packtomark cvx put
  1084.    .setglobal
  1085.  } bind def
  1086. ErrorNames
  1087.  { dup .registererror /VMerror eq {exit} if
  1088.  } forall
  1089. errordict begin
  1090. % The handlers for interrupt and timeout are special; there is no
  1091. % 'current object', so they push their own name.
  1092.    { /interrupt /timeout }
  1093.    { mark 1 index dup systemdict /.errorhandler get /exec load .packtomark cvx def
  1094.    } forall
  1095. /handleerror    % this key is 'well known' and some PS may redefine it
  1096.  { /.printerror .systemvar exec
  1097.  } bind def
  1098. end        % errordict
  1099.  
  1100. % Put non-standard errors in gserrordict.
  1101. gserrordict /unknownerror errordict /unknownerror get put
  1102. errordict /unknownerror .undef
  1103. % Define a stable private copy of handleerror that we will always use under
  1104. % JOBSERVER mode.
  1105. /.GShandleerror errordict /handleerror get def
  1106.  
  1107. % Define the [write]==[only] procedures.
  1108. /.dict 8 dict dup
  1109. begin def
  1110.   /.cvp {1 index exch 1 .writecvp} bind def
  1111.   /.p {1 index exch writestring} bind def
  1112.   /.p1 {2 index exch writestring} bind def
  1113.   /.p2 {3 index exch writestring} bind def
  1114.   /.print
  1115.     { dup type .dict exch .knownget { exec } { .cvp } ifelse
  1116.     } bind def
  1117.   /arraytype
  1118.     {dup rcheck
  1119.       {() exch dup xcheck
  1120.         {({) .p2
  1121.          {exch .p1
  1122.           1 index exch .print pop ( )} forall
  1123.          (})}
  1124.         {([) .p2
  1125.          {exch .p1
  1126.           1 index exch .print pop ( )} forall
  1127.          (])}
  1128.        ifelse exch pop .p}
  1129.       {.cvp}
  1130.      ifelse} bind def
  1131.   /packedarraytype /arraytype load def
  1132. {//.dict begin .print pop end}
  1133.   bind
  1134. end
  1135.  
  1136. /write==only exch def
  1137. /write== {1 index exch write==only (\n) writestring} bind def
  1138. /==only { (%stdout) (w) file exch write==only } bind def
  1139. /== {==only (\n) print} bind def
  1140.  
  1141. % Define [write]===[only], an extension that prints dictionaries
  1142. % in readable form and doesn't truncate strings.
  1143. /.dict /write==only load 0 get dup length 2 add dict .copydict dup
  1144. begin def
  1145.   /dicttype
  1146.     { dup rcheck
  1147.        { (<< ) .p1
  1148.           { 2 index 3 -1 roll .print pop ( ) .p1
  1149.         1 index exch .print pop ( ) .p
  1150.           }
  1151.          forall (>>) .p
  1152.        }
  1153.        { .cvp
  1154.        }
  1155.       ifelse
  1156.     } bind def
  1157.   /stringtype
  1158.     { 1 index exch 2 .writecvp
  1159.     } bind def
  1160.  
  1161. {//.dict begin .print pop end}
  1162.   bind
  1163. end
  1164.  
  1165. /write===only exch def
  1166. /write=== {1 index exch write===only (\n) writestring} bind def
  1167. /===only { (%stdout) (w) file exch write===only } bind def
  1168. /=== { ===only (\n) print } bind def
  1169.  
  1170. % Create the initialization queue.
  1171.  
  1172. /.delayed_init_queue 10 dict def
  1173.  
  1174. /.schedule_init   %   <priority> <proc> .schedule_init -
  1175. {
  1176.   //.delayed_init_queue 2 index known {
  1177.     (.delayed_init_queue priority conflict with ) print 1 index =
  1178.     /.schedule_init cvx /configurationerror signalerror
  1179.   } if
  1180.   //.delayed_init_queue 3 1 roll .growput
  1181. } bind def
  1182.  
  1183. /.execute_scheduled_inits %   - .execute_scheduled_inits -
  1184. {
  1185.   { 0 //null //.delayed_init_queue {     % maxp {} p {}
  1186.       3 index 2 index lt {
  1187.         4 2 roll
  1188.       } if
  1189.       pop pop
  1190.     } forall
  1191.     exch //.delayed_init_queue exch undef
  1192.     dup //null eq {
  1193.       pop exit
  1194.     } if
  1195.     exec
  1196.   } loop
  1197. } bind def
  1198.  
  1199. (END PROCS) VMDEBUG
  1200.  
  1201. % Define the font directory.
  1202. /FontDirectory false .setglobal 100 dict true .setglobal
  1203. .forcedef        % FontDirectory is local, systemdict is global
  1204.  
  1205. % Define the encoding dictionary.
  1206. /EncodingDirectory 16 dict def    % enough for Level 2 + PDF standard encodings
  1207.  
  1208. % Define .findencoding.  (This is redefined in Level 2.)
  1209. /.findencoding
  1210.  { //EncodingDirectory exch get exec
  1211.  } bind def
  1212. /.defineencoding
  1213.  { //EncodingDirectory 3 1 roll put
  1214.  } bind def
  1215. % If we've got the composite font extensions, define findencoding.
  1216. % To satisfy the Genoa FTS, findencoding must be a procedure, not an operator.
  1217. /rootfont where { pop /findencoding { .findencoding } def } if
  1218.  
  1219. % Define .registerencoding.
  1220. % NOTE: This procedure no longer does anything, but it must continue to
  1221. % exist for the sake of toolbin/encs2c.ps.
  1222. /.registerencoding {    % <index> <array> .registerencoding -
  1223.   pop pop
  1224. } bind odef
  1225.  
  1226. % Load StandardEncoding.
  1227. %% Replace 1 (gs_std_e.ps)
  1228. (gs_std_e.ps) dup runlibfile VMDEBUG
  1229.  
  1230. % Load ISOLatin1Encoding.
  1231. %% Replace 1 (gs_il1_e.ps)
  1232. (gs_il1_e.ps) dup runlibfile VMDEBUG
  1233.  
  1234. % Define stubs for the Symbol and Dingbats encodings.
  1235. % Note that the first element of the procedure must be the file name,
  1236. % since gs_lev2.ps extracts it to set up the Encoding resource category.
  1237.  
  1238.   /SymbolEncoding { /SymbolEncoding .findencoding } bind def
  1239. %% Replace 3 (gs_sym_e.ps)
  1240.   EncodingDirectory /SymbolEncoding
  1241.    { (gs_sym_e.ps) //systemdict begin runlibfile SymbolEncoding end }
  1242.   bind put
  1243.  
  1244.   /DingbatsEncoding { /DingbatsEncoding .findencoding } bind def
  1245. %% Replace 3 (gs_dbt_e.ps)
  1246.   EncodingDirectory /DingbatsEncoding
  1247.    { (gs_dbt_e.ps) //systemdict begin runlibfile DingbatsEncoding end }
  1248.   bind put
  1249.  
  1250. (END FONTDIR/ENCS) VMDEBUG
  1251.  
  1252. % Construct a dictionary of all available devices.
  1253. % These are (read-only) device prototypes that can't be
  1254. % installed or have their parameters changed.  For this reason,
  1255. % the value in the dictionary is actually a 2-element writable array,
  1256. % to allow us to create a default instance of the prototype on demand.
  1257.  
  1258.     % Loop until the .getdevice gets a rangecheck.
  1259. errordict /rangecheck 2 copy get
  1260. errordict /rangecheck { pop stop } put    % pop the command
  1261.   0 { {dup .getdevice exch 1 add} loop} .internalstopped pop
  1262.   1 add dict  /devicedict 1 index def
  1263.   begin            % 2nd copy of count is on stack
  1264.    { dup .devicename exch
  1265.      dup wcheck { dup } { //null } ifelse 2 array astore def
  1266.    } repeat
  1267.   end
  1268. put        % errordict /rangecheck
  1269. .clearerror
  1270. /devicenames devicedict { pop } forall devicedict length packedarray def
  1271.  
  1272. % Determine the default device.
  1273. /defaultdevice DISPLAYING
  1274.  { systemdict /DEVICE .knownget
  1275.     { devicedict 1 index known not
  1276.        { (Unknown device: ) print =
  1277.      flush /defaultdevice cvx 1 .quit
  1278.        }
  1279.       if
  1280.     }
  1281.     { 0 .getdevice .devicename
  1282.     }
  1283.    ifelse
  1284.  }
  1285.  { /nullpage
  1286.  }
  1287. ifelse
  1288. /.defaultdevicename 1 index def
  1289. finddevice    % make a copy
  1290. def
  1291. devicedict /Default devicedict .defaultdevicename get put
  1292.  
  1293. (END DEVS) VMDEBUG
  1294.  
  1295. % Define statusdict, for the benefit of programs
  1296. % that think they are running on a LaserWriter or similar printer.
  1297. %% Replace 1 (gs_statd.ps)
  1298. (gs_statd.ps) runlibfile
  1299.  
  1300. (END STATD) VMDEBUG
  1301.  
  1302. % Load the standard font environment.
  1303. %% Replace 1 (gs_fonts.ps)
  1304. (gs_fonts.ps) runlibfile
  1305.  
  1306. (END GS_FONTS) VMDEBUG
  1307.  
  1308. % Define the default halftone screen and BG/UCR functions now, so that
  1309. % it will bind in the original definitions of set[color]screen.
  1310. % We make this a procedure so we can call it again when switching devices.
  1311.  
  1312. % Use an ordered dither for low-resolution devices.
  1313. /.setloreshalftone {    % <dpi> .setloreshalftone -
  1314.     % The following 'ordered dither' spot function was contributed by
  1315.     % Gregg Townsend.  Thanks, Gregg!
  1316.    16.001 div 0            % not 16: avoids rounding problems
  1317.     { 1 add 7.9999 mul cvi exch 1 add 7.9999 mul cvi 16 mul add <
  1318.     0E 8E 2E AE 06 86 26 A6 0C 8C 2C AC 04 84 24 A4
  1319.     CE 4E EE 6E C6 46 E6 66 CC 4C EC 6C C4 44 E4 64
  1320.     3E BE 1E 9E 36 B6 16 96 3C BC 1C 9C 34 B4 14 94
  1321.     FE 7E DE 5E F6 76 D6 56 FC 7C DC 5C F4 74 D4 54
  1322.     01 81 21 A1 09 89 29 A9 03 83 23 A3 0B 8B 2B AB
  1323.     C1 41 E1 61 C9 49 E9 69 C3 43 E3 63 CB 4B EB 6B
  1324.     31 B1 11 91 39 B9 19 99 33 B3 13 93 3B BB 1B 9B
  1325.     F1 71 D1 51 F9 79 D9 59 F3 73 D3 53 FB 7B DB 5B
  1326.     0D 8D 2D AD 05 85 25 A5 0F 8F 2F AF 07 87 27 A7
  1327.     CD 4D ED 6D C5 45 E5 65 CF 4F EF 6F C7 47 E7 67
  1328.     3D BD 1D 9D 35 B5 15 95 3F BF 1F 9F 37 B7 17 97
  1329.     FD 7D DD 5D F5 75 D5 55 FF 7F DF 5F F7 77 D7 57
  1330.     02 82 22 A2 0A 8A 2A AA 00 80 20 A0 08 88 28 A8
  1331.     C2 42 E2 62 CA 4A EA 6A C0 40 E0 60 C8 48 E8 68
  1332.     32 B2 12 92 3A BA 1A 9A 30 B0 10 90 38 B8 18 98
  1333.     F2 72 D2 52 FA 7A DA 5A F0 70 D0 50 F8 78 D8 58
  1334.      > exch get 256 div
  1335.     }
  1336.    bind
  1337.         % Use correct, per-plane screens for CMYK devices only.
  1338.    //systemdict /setcolorscreen known processcolors 4 eq and
  1339.     { 3 copy 6 copy //setcolorscreen }
  1340.     { //setscreen }
  1341.    ifelse
  1342. } bind def
  1343. /.setloresscreen {    % <dpi> .setloresscreen -
  1344.   .setloreshalftone
  1345.   0 array cvx settransfer    % Genoa CET won't accept a packed array!
  1346.   /setstrokeadjust where { pop true setstrokeadjust } if
  1347. } bind def
  1348. % Use a 45-degree spot screen for high-resolution devices.
  1349. % The PS3 CET insists that the screen be an array and not a packedarray (!).
  1350. currentpacking false setpacking
  1351. /.linescreen
  1352. % The following screen algorithm is used by permission of the author.
  1353.     { ((C) 1989 Berthold K.P. Horn) pop
  1354.       1 add 180 mul cos 1 0.08 add mul exch 2 add 180 mul cos 
  1355.       1 0.08 sub mul add 2 div
  1356.     }
  1357. bind readonly def
  1358. setpacking
  1359. /.sethireshalftone {    % <dpi> .sethireshalftone <doscreen>
  1360.     % According to information published by Hewlett-Packard,
  1361.     % they use a 60 line screen on 300 DPI printers and
  1362.     % an 85 line screen on 600 DPI printers.
  1363.     % However, we use a 106 line screen, which produces smoother-
  1364.     % looking shades but fewer of them (32 vs. 50).
  1365.     % 46 was suggested as a good frequency value for printers
  1366.     % between 200 and 400 DPI, so we use it for lower resolutions.
  1367.     % Imagesetters need even higher frequency screens.
  1368.    //systemdict /DITHERPPI known
  1369.     { DITHERPPI
  1370.     }
  1371.     { dup cvi 100 idiv 15 .min
  1372.        {//null 46 46 60 60 60 106 106 106 106 133 133 133 133 133 150}
  1373.       exch get
  1374.      }
  1375.    ifelse
  1376.    1 index 4.01 div .min    % at least a 4x4 cell
  1377.    45
  1378.    //.linescreen
  1379.     % Determine whether we have lots of process colors.
  1380.     % If so, don't bother with color screening or gamma correction.
  1381.     % Also don't do gamma correction on very high-resolution devices.
  1382.     % (This should depend on dot gain, not resolution, but we don't
  1383.     % currently have a way to determine this.) Ignore missing components
  1384.         % (*Values = 1).
  1385.    currentdevice mark
  1386.      /RedValues 0 /GreenValues 0 /BlueValues 0 /GrayValues 0
  1387.    .dicttomark .getdeviceparams
  1388.    counttomark 2 idiv 1 sub
  1389.     { exch pop dup 1 le
  1390.        { pop }
  1391.        { exch dup 1 le
  1392.           { pop }
  1393.           { .min }
  1394.         ifelse
  1395.        }
  1396.       ifelse
  1397.     }
  1398.    repeat
  1399.    exch pop exch pop 32 lt 4 index 800 lt and 5 1 roll
  1400.     % Stack: doscreen dpi freq angle proc
  1401.     % Ghostscript currently doesn't use correct, per-plane halftones
  1402.     % unless setcolorscreen has been executed.  Since these are
  1403.     % computationally much more expensive than binary halftones,
  1404.     % we check to make sure they are really warranted, i.e., we have
  1405.     % a high-resolution CMYK device (i.e., not a display) with
  1406.     % fewer than 5 bits per plane (i.e., not a true-color device).
  1407.    4 -1 roll 150 ge
  1408.     { /setcolorscreen where
  1409.        { pop //systemdict /COLORSCREEN known
  1410.       { COLORSCREEN }
  1411.       { 3 index }
  1412.      ifelse
  1413.      dup false ne
  1414.       { 4 1 roll 3 copy 6 copy 13 -1 roll
  1415.     % For really high-quality screening on printers, we need to
  1416.     % give each plane its own screen angle.  Unfortunately,
  1417.     % this currently has very large space and time costs.
  1418.         true eq        % true => different angles,
  1419.                 % 0 => same angles
  1420.          { { 45 90 15 75 } { 3 1 roll exch pop 12 3 roll } forall
  1421.          }
  1422.         if //setcolorscreen
  1423.       }
  1424.       { pop //setscreen    % false => single binary screen
  1425.       }
  1426.      ifelse
  1427.        }
  1428.        { //setscreen        % setcolorscreen not known
  1429.        }
  1430.       ifelse
  1431.     }
  1432.     { //setscreen            % not high resolution
  1433.     }
  1434.    ifelse
  1435. } bind def
  1436. /.sethiresscreen {    % <dpi> .sethiresscreen 
  1437.   .sethireshalftone     % pushes true if a screen halftone used
  1438.             % Stack: doscree
  1439.   {
  1440.     % Set the transfer function to lighten up the grays.
  1441.     % Parameter values closer to 1 are better for devices with
  1442.     % less dot spreading; lower values are better with more spreading.
  1443.     % The value 0.8 is a compromise that will probably please no one!
  1444.     %
  1445.     % Because of a bug in FrameMaker, we have to accept operands
  1446.     % outside the valid range of [0..1].
  1447.     {
  1448.       dup dup 0.0 gt exch 1.0 lt and
  1449.       {
  1450.         0.8 exp
  1451.       }
  1452.       if
  1453.     }
  1454.   }
  1455.   {
  1456.      % Set the transfer function to the identity.
  1457.      0 array cvx     % Genoa CET won't accept a packed array!
  1458.   }
  1459.   ifelse
  1460.   settransfer
  1461.   /setstrokeadjust where
  1462.   { pop false setstrokeadjust }
  1463.   if
  1464.  
  1465.   % Increase fill adjustment so that we effectively use Adobe's
  1466.   % any-part-of-pixel rule.
  1467.   0.5 .setfilladjust
  1468. } bind def
  1469. % Set the default screen and BG/UCR.
  1470. /.setdefaultbgucr {
  1471.   systemdict /setblackgeneration known {
  1472.     { pop 0 } dup setblackgeneration setundercolorremoval
  1473.   } if
  1474. } bind def
  1475. /.useloresscreen {    % - .useloresscreen <bool>
  1476.     % Compute min(|dpi x|,|dpi y|) as the definition of the resolution.
  1477.   72 72 matrix defaultmatrix dtransform abs exch abs .min
  1478.   dup 150 lt //systemdict /DITHERPPI known not and
  1479. } bind def
  1480.  
  1481. % The following implementation uses LL2 extensions, but only in stopped
  1482. % contexts so that with LL1, the .set??reshalftone will be used.
  1483. %
  1484. %    - .getdefaulthalftone <halftonedict> true    if default found
  1485. %                  false            
  1486. /.getdefaulthalftone {
  1487.   % try the device to see if it has a default halftone
  1488.   { currentdevice /HalftoneDefault gsgetdeviceprop } .internalstopped
  1489.   { pop pop false }        % no device property
  1490.   { dup type /dicttype eq { true } { pop false } ifelse }
  1491.   ifelse
  1492.   % stack: <halftonedict> true    if default found
  1493.   %         false          not found
  1494.   dup not
  1495.   { % device did not provide a default, try Resource
  1496.     pop { /Default /Halftone /findresource .systemvar exec } .internalstopped 
  1497.     { pop pop false } { true } ifelse
  1498.   }
  1499.   if
  1500. } bind def
  1501.  
  1502. /.setdefaulthalftone {
  1503.   .getdefaulthalftone 
  1504.   { sethalftone }
  1505.   { % default not found
  1506.     .useloresscreen { .setloreshalftone } { .sethireshalftone pop } ifelse
  1507.   }
  1508.   ifelse
  1509. } bind def
  1510.  
  1511. /.setdefaultscreen {
  1512.   .useloresscreen { .setloresscreen } { .sethiresscreen } ifelse
  1513.   .setdefaultbgucr
  1514. } bind def
  1515.  
  1516. % Load basic color support
  1517. %% Replace 1 (gs_cspace.ps)
  1518. (gs_cspace.ps) runlibfile
  1519.  
  1520. (END BASIC COLOR) VMDEBUG
  1521.  
  1522. %% Replace 1 (gs_devcs.ps)
  1523. (gs_devcs.ps) runlibfile
  1524.  
  1525. (END LEVEL 1 COLOR) VMDEBUG
  1526.  
  1527. % Load image support
  1528. %% Replace 1 (gs_img.ps)
  1529. (gs_img.ps) runlibfile
  1530.  
  1531. (END IMAGE) VMDEBUG
  1532.  
  1533. % Auxiliary procedures for generating file name templates.
  1534.  
  1535. % Convert a path name into a string suitable for filenameforall
  1536. % For example: (a\\b*?c) to (a\\\\b\\*\\?c)
  1537. /.makepathtemplate {    % str1 -- str2
  1538.    dup length dup add string 0    % result string up to twice the size
  1539.    0 1 4 index length 1 sub {
  1540.      3 index exch get
  1541.      dup 92 eq {        % \ -> \\
  1542.         2 index 2 index 92
  1543.         put
  1544.         exch 1 add exch
  1545.      } 
  1546.      if
  1547.      dup 42 eq {        % * -> \*
  1548.         2 index 2 index 92
  1549.         put
  1550.         exch 1 add exch
  1551.      } 
  1552.      if
  1553.      dup 63 eq {        % ? -> \?
  1554.         2 index 2 index 92
  1555.         put
  1556.         exch 1 add exch
  1557.      } 
  1558.      if
  1559.      2 index 2 index 3 -1 roll put 1 add
  1560.    } for
  1561.    0 exch getinterval exch pop
  1562. } bind def
  1563.  
  1564. %   false <dir_list> <template> .generate_dir_list_templates_with_length <t1> ... <tN>
  1565. %   true  <dir_list> <template> .generate_dir_list_templates_with_length <t1> <l1> ... <tN> <ln>
  1566. %
  1567. % Generates various valid templates combining a directory list with a given template.
  1568. % With 'true' operand it also returns lengths of directory pathes.
  1569. %
  1570. % Example1 (DOS, Windows) :
  1571. %       false [(/gs/lib) (/gs/Resource/) (\gs8.00\Resource)] (*/*) -->
  1572. %       (/gs/lib/*/*) (/gs/Resource/*/*) (\\gs8.00\\Resource/*/*)
  1573. %
  1574. % Example2 (OpenVMS) :
  1575. %       false [(gs:[lib]) (gs:[Resource]) (gs800:[Resource)] (*]*) -->
  1576. %       ((gs:[lib.*]*) [gs:[Resource.*]*) ([gs800:[Resource.*]*)
  1577. %
  1578. /.generate_dir_list_templates_with_length
  1579. {                                                  % [dl] (templ)
  1580.   % We need to convert paths into templates,
  1581.   % because it can include '\' on DOS.
  1582.   % In same time, the <template> must not convert,
  1583.   % because it is already a template.
  1584.   % Besides that, we cannot combine template using .file_name_combine,
  1585.   % because template syntax breaks the platform path syntax.
  1586.   % To resolve this, we first convert the <template> into 
  1587.   % a fake filename, and combine it with path,
  1588.   % obtaining a correct separator. Then we replace
  1589.   % the fake file name with the given template.
  1590.   %
  1591.  
  1592.   % Create the fake file name :
  1593.   dup dup length string copy                       % b [dl] (templ) (ffn)
  1594.   (*) 0 get (?) 0 get (\\) 0 get (x) 0 get 0 0     % b [dl] (templ) (ffn) * ? \ x i j
  1595.   { 1 index 7 index length ge { exit } if
  1596.     6 index 2 index get                            % b [dl] (templ) (ffn) * ? \ x i j c
  1597.     dup 7 index eq                                 % b [dl] (templ) (ffn) * ? \ x i j c bool
  1598.     1 index 7 index eq or { % *?
  1599.       pop 2 index
  1600.     } if                                           % b [dl] (templ) (ffn) * ? \ x i j C
  1601.     dup 5 index eq {        % \
  1602.       3 2 roll 1 add 3 1 roll                      % b [dl] (templ) (ffn) * ? \ x i' j C
  1603.       2 index 8 index length ge { pop exit } if
  1604.       pop 6 index 2 index get                      % b [dl] (templ) (ffn) * ? \ x i' j C'
  1605.     } if
  1606.     7 index 2 index 3 2 roll put                   % b [dl] (templ) (ffn) * ? \ x i' j
  1607.     1 add exch 1 add exch                          % b [dl] (templ) (ffn) * ? \ x i'' j'
  1608.   } loop                                           % b [dl] (templ) (ffn) * ? \ x i j
  1609.   6 1 roll pop                                     % b [dl] (templ) (ffn) j * ? \ x
  1610.   exch pop exch pop exch pop exch                  % b [dl] (templ) (ffn) x j
  1611.   { dup 3 index length ge { exit } if
  1612.     3 copy exch put
  1613.     1 add
  1614.   } loop
  1615.   pop pop                                          % b [dl] (templ) (ffn)
  1616.  
  1617.   % An internal procedure : 
  1618.   {                                 % {} b [dl] (templ) (ffn) (dffn)
  1619.     dup length 
  1620.     1 sub % drop 'x', which was added above.
  1621.     exch                            % {} b [dl] (templ) (ffn) ldffn (dffn)
  1622.     .makepathtemplate               % {} b [dl] (templ) (ffn) ldffn (Dffn)
  1623.     dup                             % {} b [dl] (templ) (ffn) ldffn (Dffn) (Dffn)
  1624.     4 index length dup              % {} b [dl] (templ) (ffn) ldffn (Dffn) (Dffn) templL templL
  1625.     2 index length                  % {} b [dl] (templ) (ffn) ldffn (Dffn) (Dffn) templL templL DffnL
  1626.     exch sub                        % {} b [dl] (templ) (ffn) ldffn (Dffn) (Dffn) templL i
  1627.     exch getinterval                % {} b [dl] (templ) (ffn) ldffn (Dffn) (suffix)
  1628.     4 index exch copy pop           % {} b [dl] (templ) (ffn) ldffn (dt)
  1629.     5 index {
  1630.       exch                          % {} b [dl] (templ) (ffn) (dt) ldffn
  1631.       7 2 roll                      % (dt) ldffn {} b [dl] (templ) (ffn)
  1632.     } {
  1633.       exch pop                      % {} b [dl] (templ) (ffn) (dt)
  1634.       6 1 roll                      % (dt) {} b [dl] (templ) (ffn)
  1635.     } ifelse
  1636.   }
  1637.   5 1 roll                                         % {} b [dl] (templ) (ffn)
  1638.  
  1639.   % Generate templates :
  1640.   dup .file_name_is_absolute {
  1641.     dup                                            % {} b [dl] (templ) (ffn) (ffn)
  1642.     5 index exec                                   % (t1) {} b [dl] (templ) (ffn)
  1643.   } {
  1644.     2 index {                                      % ... {} b [dl] (templ) (ffn) (d)
  1645.       1 index                                      % ... {} b [dl] (templ) (ffn) (d) (ffn)
  1646.       false .file_name_combine {                   % ... {} b [dl] (templ) (ffn) (dffn)
  1647.         5 index exec                               % ... (t1) ?l1 {} b [dl] (templ) (ffn)
  1648.       } {                                          % ... {} b [dl] (templ) (ffn) (d) (ffn)
  1649.         pop pop                                    % ... {} b [dl] (templ) (ffn)
  1650.       } ifelse
  1651.     } forall
  1652.   } ifelse                                         % (t1) ?l1 (t2) ?l2 ... (tN) ?ln {} b [dl] (templ) (ffn)
  1653.   pop pop pop pop pop                              % (t1) ?l1 (t2) ?l2 ... (tN) ?ln
  1654. } bind def
  1655.  
  1656. %   <dir_list> <template> .generate_dir_list_templates <t1> ... <tN>
  1657. %
  1658. % Generates various valid templates combining a directory list with a given template.
  1659. % It's the 'false' case of the function above.
  1660. %
  1661. /.generate_dir_list_templates
  1662. { //false 3 1 roll //.generate_dir_list_templates_with_length exec
  1663. } bind def
  1664.  
  1665. % Load the initialization files for optional features.
  1666. %% Replace 4 INITFILES
  1667. systemdict /INITFILES known
  1668.  { INITFILES { dup runlibfile VMDEBUG } forall
  1669.  }
  1670. if
  1671.  
  1672. % If Level 2 (or higher) functionality is implemented, enable it now.
  1673. /.setlanguagelevel where {
  1674.   pop 2 .setlanguagelevel
  1675.     % If the resource machinery is loaded, fix up some things now.
  1676.   /.fixresources where { pop .fixresources } if
  1677. } if
  1678. /ll3dict where {
  1679.   pop 3 .setlanguagelevel
  1680. } if
  1681.  
  1682. (END INITFILES) VMDEBUG
  1683.  
  1684. % Create a null font.  This is the initial font.
  1685. 8 dict dup begin
  1686.   /FontMatrix [ 1 0 0 1 0 0 ] readonly def
  1687.   /FontType 3 def
  1688.   /FontName () def
  1689.   /Encoding StandardEncoding def
  1690.   /FontBBox { 0 0 0 0 } readonly def % executable is bogus, but customary ...
  1691.   /BuildChar { pop pop 0 0 setcharwidth } bind def
  1692.   /PaintType 0 def        % shouldn't be needed!
  1693. end
  1694. /NullFont exch definefont setfont
  1695.  
  1696. % Define NullFont as the font.
  1697. /NullFont currentfont def
  1698.  
  1699. % Load initial fonts from FONTPATH directories, Fontmap file,
  1700. % and/or .getccfont as appropriate.
  1701. .loadinitialfonts
  1702.  
  1703. % Remove NullFont from FontDirectory, so it can't be accessed by mistake.
  1704. /undefinefont where {
  1705.   pop /NullFont undefinefont
  1706. } {
  1707.   FontDirectory /NullFont .undef
  1708. } ifelse
  1709.  
  1710. (END FONTS) VMDEBUG
  1711.  
  1712. % Restore the real definition of runlibfile.
  1713. /runlibfile /.runlibfile load def
  1714. currentdict /.runlibfile .undef
  1715.  
  1716. % Bind all the operators defined as procedures.
  1717. /.bindoperators        % binds operators in currentdict
  1718.  { % Temporarily disable the typecheck error.
  1719.    errordict /typecheck 2 copy get
  1720.    errordict /typecheck { pop } put    % pop the command
  1721.    currentdict
  1722.     { dup type /operatortype eq
  1723.        { % This might be a real operator, so bind might cause a typecheck,
  1724.      % but we've made the error a no-op temporarily.
  1725.      .bind        % do a real bind even if NOBIND is set
  1726.        }
  1727.       if pop pop
  1728.     } forall
  1729.    put
  1730.  } def
  1731. NOBIND DELAYBIND or not { .bindoperators } if
  1732.  
  1733. % Establish a default environment.
  1734.  
  1735. defaultdevice
  1736. % The following line used to skip setting of page size and resolution if
  1737. % NODISPLAY was selected.  We think this was only to save time and memory,
  1738. % and it is a bad idea because it prevents setting the resolution in this
  1739. % situation, which pstoedit (among other programs) relies on.
  1740. %DISPLAYING not { setdevice (%END DISPLAYING) .skipeof } if
  1741.  
  1742. % If the paper size is not specifed and the device defaults to 
  1743. % letter or A4 paper, select the DEFAULTPAPERSIZE.
  1744. systemdict /DEFAULTPAPERSIZE known
  1745. systemdict /PAPERSIZE known not and
  1746. systemdict /DEVICEWIDTH known not and
  1747. systemdict /DEVICEHEIGHT known not and
  1748. systemdict /DEVICEWIDTHPOINTS known not and
  1749. systemdict /DEVICEHEIGHTPOINTS known not and
  1750.  {
  1751.    defaultdevice mark /PageSize //null .dicttomark .getdeviceparams 
  1752.    .dicttomark /PageSize get
  1753.    dup 0 get 0.5 add cvi 612 eq 1 index 1 get 0.5 add cvi 792 eq and
  1754.    1 index 0 get 0.5 add cvi 595 eq 2 index 1 get 0.5 add cvi 842 eq and
  1755.    or exch pop
  1756.    {
  1757.      % the default paper size was letter, so replace it with DEFAULTPAPERSIZE
  1758.      /PAPERSIZE DEFAULTPAPERSIZE def
  1759.    } if
  1760.  }
  1761. if
  1762.  
  1763. systemdict /DEVICEWIDTH known
  1764. systemdict /DEVICEHEIGHT known or
  1765. systemdict /DEVICEWIDTHPOINTS known or
  1766. systemdict /DEVICEHEIGHTPOINTS known or
  1767. systemdict /DEVICEXRESOLUTION known or
  1768. systemdict /DEVICEYRESOLUTION known or
  1769. systemdict /PAPERSIZE known or
  1770. not { (%END DEVICE) .skipeof } if
  1771. % Let DEVICE{WIDTH,HEIGHT}[POINTS] override PAPERSIZE.
  1772. systemdict /PAPERSIZE known
  1773. systemdict /DEVICEWIDTH known not and
  1774. systemdict /DEVICEHEIGHT known not and
  1775. systemdict /DEVICEWIDTHPOINTS known not and
  1776. systemdict /DEVICEHEIGHTPOINTS known not and
  1777.  {    % Convert the paper size to device dimensions.
  1778.    true statusdict /.pagetypenames get
  1779.     { PAPERSIZE eq
  1780.        { PAPERSIZE load
  1781.          dup 0 get /DEVICEWIDTHPOINTS exch def
  1782.          1 get /DEVICEHEIGHTPOINTS exch def
  1783.          pop false exit
  1784.        }
  1785.       if
  1786.     }
  1787.    forall
  1788.     { (Unknown paper size: ) print PAPERSIZE ==only (.) =
  1789.     }
  1790.    if
  1791.  }
  1792. if
  1793. % Adjust the device parameters per the command line.
  1794. % It is possible to specify resolution, pixel size, and page size;
  1795. % since any two of these determine the third, conflicts are possible.
  1796. % We simply pass them to .setdeviceparams and let it sort things out.
  1797.    mark /HWResolution //null /HWSize //null /PageSize //null .dicttomark
  1798.    .getdeviceparams .dicttomark begin
  1799.    mark
  1800.     % Check for resolution.
  1801.    /DEVICEXRESOLUTION where dup
  1802.     { exch pop HWResolution 0 DEVICEXRESOLUTION put }
  1803.    if
  1804.    /DEVICEYRESOLUTION where dup
  1805.     { exch pop HWResolution 1 DEVICEYRESOLUTION put }
  1806.    if
  1807.    or { /HWResolution HWResolution } if
  1808.     % Check for device sizes specified in pixels.
  1809.    /DEVICEWIDTH where dup
  1810.     { exch pop HWSize 0 DEVICEWIDTH put }
  1811.    if
  1812.    /DEVICEHEIGHT where dup
  1813.     { exch pop HWSize 1 DEVICEHEIGHT put }
  1814.    if
  1815.    or { /HWSize HWSize } if
  1816.     % Check for device sizes specified in points.
  1817.    /DEVICEWIDTHPOINTS where dup
  1818.     { exch pop PageSize 0 DEVICEWIDTHPOINTS put }
  1819.    if
  1820.    /DEVICEHEIGHTPOINTS where dup
  1821.     { exch pop PageSize 1 DEVICEHEIGHTPOINTS put }
  1822.    if
  1823.    or { /PageSize PageSize } if
  1824.     % Check whether any parameters were set.
  1825.    dup mark eq { pop } { defaultdevice putdeviceprops } ifelse
  1826.    end
  1827. %END DEVICE
  1828. % Set any device properties defined on the command line.
  1829. % If BufferSpace is defined but not MaxBitmap, set MaxBitmap to BufferSpace.
  1830. systemdict /BufferSpace known
  1831. systemdict /MaxBitmap known not and
  1832.  { systemdict /MaxBitmap BufferSpace put
  1833.  } if
  1834. dup getdeviceprops
  1835. counttomark 2 idiv
  1836.  { systemdict 2 index known
  1837.     { pop dup load counttomark 2 roll }
  1838.     { pop pop }
  1839.    ifelse
  1840.  } repeat
  1841. counttomark dup 0 ne
  1842.  { 2 add -1 roll putdeviceprops }
  1843.  { pop pop }
  1844. ifelse
  1845. % If the initial device parameters are invalid, the setdevice may fail.
  1846. % Trap this and produce a reasonable error message.
  1847. { setdevice }        % does an erasepage
  1848. INITDEBUG { exec false } { .internalstopped } ifelse {
  1849.   (**** Unable to open the initial device, quitting.) = flush 1 .quit
  1850. } if
  1851.  
  1852. % If the media size is fixed, update the current page device dictionary.
  1853. FIXEDMEDIA
  1854. dup { pop systemdict /.currentpagedevice known } if
  1855. dup { pop .currentpagedevice exch pop } if
  1856. not { (%END MEDIA) .skipeof } if
  1857. currentpagedevice dup length dict .copydict
  1858. dup /Policies
  1859.     % Stack: <pagedevice> <pagedevice> /Policies
  1860. 1 index /InputAttributes
  1861. 2 copy get dup length dict .copydict
  1862.     % Stack: <pagedevice> <pagedevice> /Policies <pagedevice>
  1863.     %   /InputAttributes <inputattrs'>
  1864. dup 0 2 copy get dup length dict .copydict
  1865.     % Stack: <pagedevice> <pagedevice> /Policies <pagedevice>
  1866.     %   /InputAttributes <inputattrs'> <inputattrs'> 0 <attrs0'>
  1867. dup /PageSize 7 index /PageSize get
  1868. put                % PageSize in 0
  1869. put                % 0 in InputAttributes
  1870. put                % InputAttributes in pagedevice
  1871. % Also change the page size policy so we don't get an error.
  1872.     % Stack: <pagedevice> <pagedevice> /Policies
  1873. 2 copy get dup length dict .copydict
  1874.     % Stack: <pagedevice> <pagedevice> /Policies <policies'>
  1875. dup /PageSize 7 put        % PageSize in Policies
  1876. put                % Policies in pagedevice
  1877. .setpagedevice
  1878. %END MEDIA
  1879.  
  1880. % Set up the interpreter context version of -dUSeCIEColor option
  1881. % so that .getuseciecolor has the correct value (see gs_setpd.ps)
  1882. /setpagedevice where {
  1883.   pop systemdict /UseCIEColor known {
  1884.     mark /UseCIEColor UseCIEColor .dicttomark setpagedevice
  1885.   } if
  1886. } if
  1887.  
  1888. %END DISPLAYING
  1889.  
  1890. (END DEVICE) VMDEBUG
  1891.  
  1892. % Establish a default upper limit in the character cache,
  1893. % namely, enough room for a 18-point character at the resolution
  1894. % of the default device, or for a character consuming 1% of the
  1895. % maximum cache size, whichever is larger.
  1896. mark
  1897.     % Compute limit based on character size.
  1898.   18 dup dtransform
  1899.   exch abs cvi 31 add 32 idiv 4 mul    % X raster
  1900.   exch abs cvi mul        % Y
  1901.     % Compute limit based on allocated space.
  1902.   cachestatus pop pop pop pop pop exch pop 0.01 mul cvi
  1903.   .max dup 10 idiv exch
  1904. setcacheparams
  1905. % Conditionally disable the character cache.
  1906. NOCACHE { 0 setcachelimit } if
  1907.  
  1908. (END CONFIG) VMDEBUG
  1909.  
  1910. % Initialize graphics.
  1911.  
  1912. .setdefaultscreen
  1913. initgraphics
  1914.  
  1915. % The interpreter relies on there being at least 2 entries
  1916. % on the graphics stack.  Establish the second one now.
  1917. gsave
  1918.  
  1919. % Define some control sequences as no-ops.
  1920. % This is a hack to get around problems
  1921. % in some common PostScript-generating applications.
  1922. <04> cvn JOBSERVER {
  1923.     { { clear cleardictstack //false 0 .startnewjob } 2 .stop } bind
  1924.   } {
  1925.     { }
  1926.   } ifelse def
  1927. <1b> cvn {             % UEL is <esc>%-12345X and acts the same as ^D
  1928.   currentfile (%-12345X) .peekstring pop (%-12345X) eq <04> cvn load if
  1929. } bind def
  1930. <1b45> cvn { } def        % PJL reset prologue (ESC E)
  1931. <1b451b> cvn <1b> cvn load def    % PJL reset epilogue (ESC E + UEL)
  1932. (\001M) cvn            % TBCP initiator
  1933.  { currentfile /TBCPDecode filter cvx exec
  1934.  } bind def
  1935. /@PJL                % H-P job control
  1936.  {
  1937.    % Windows 2000 driver includes PJL into %%BeginFeature block.
  1938.    % Identify this from the pattern on the stack: countdictstack lucas mark
  1939.    % and fail the feature request.
  1940.  
  1941.    count 3 ge {
  1942.      dup mark eq {
  1943.        2 index countdictstack eq {
  1944.           1 index /lucas where { /lucas get eq } { pop false } ifelse {
  1945.             stop
  1946.          } if
  1947.        } if
  1948.      } if
  1949.    } if
  1950.    currentfile //=string readline pop pop
  1951.  } bind def
  1952.  
  1953. % Install the EPS handler if needed
  1954. systemdict /EPSBoundingBoxInit known { EPSBoundingBoxInit } if
  1955.  
  1956. % If we want a "safer" system, disable some obvious ways to cause havoc.
  1957. .currentglobal true .setglobal
  1958. /SAFETY 2 dict
  1959.   dup /safe false put
  1960.   dup /tempfiles 10 dict readonly put
  1961. readonly def
  1962. .setglobal
  1963.  
  1964. /.locksafe {
  1965.   SAFETY /safe get not {
  1966.     <<
  1967.       /PermitFileReading [
  1968.         currentuserparams /PermitFileReading get aload pop
  1969.         /FONTPATH .systemvar (*) .generate_dir_list_templates
  1970.           % Library files : 
  1971.         /LIBPATH  .systemvar (*) .generate_dir_list_templates       
  1972.           % Resource files on OpenVMS requires a separate template (gs:[dir.*]*)
  1973.           % because the (gs:[dir]*) doesn't cover them.
  1974.         /LIBPATH  .systemvar (*) .file_name_separator (*)
  1975.           concatstrings concatstrings .generate_dir_list_templates
  1976.         .languagelevel 2 ge {
  1977.             % Default resources :
  1978.           [ currentsystemparams /GenericResourceDir get] (*) .generate_dir_list_templates
  1979.             % Default resources (OpenVMS, see comment above.) :
  1980.           [ currentsystemparams /GenericResourceDir get] (*) .file_name_separator (*)
  1981.             concatstrings concatstrings .generate_dir_list_templates
  1982.         } if
  1983.       ]
  1984.       /LockFilePermissions true
  1985.     >> setuserparams
  1986.   }
  1987.   if
  1988.   % setpagedevice has the side effect of clearing the page, but
  1989.   % we will just document that. Using setpagedevice keeps the device
  1990.   % properties and pagedevice .LockSafetyParams in agreement even
  1991.   % after a restore that changes the value to false.
  1992.   currentglobal currentpagedevice gcheck setglobal % use correct VM space
  1993.   << /.LockSafetyParams true >> setpagedevice
  1994.   setglobal
  1995.   //SAFETY /safe //true .forceput % overrides readonly
  1996. } .bind executeonly odef
  1997.  
  1998. /.setsafe
  1999. {
  2000.   SAFETY /safe get not {
  2001.     <<
  2002.       /PermitFileReading [ ]
  2003.       /PermitFileWriting [ ]
  2004.       /PermitFileControl [ ]
  2005.     >> setuserparams
  2006.   }
  2007.   if
  2008.   .locksafe
  2009. } .bind executeonly odef
  2010.  
  2011. /deletefile {
  2012.   dup { deletefile } stopped {
  2013.     pop //deletefile $error /errorname get signalerror
  2014.   } {
  2015.     % deletefile succeeded. Remove from tempfile list if present
  2016.     //SAFETY /tempfiles get exch cvn 2 copy known {
  2017.       .forceundef
  2018.     } {
  2019.       pop pop
  2020.     }
  2021.     ifelse
  2022.   }
  2023.   ifelse
  2024. } .bind executeonly odef
  2025.  
  2026. % If a file is opened with .tempfile with SAFER not (yet) set,
  2027. % the file can be deleted later, even if SAFER is set.
  2028. /.tempfile {
  2029.   .tempfile    % filename file
  2030.   //SAFETY /tempfiles get 2 .argindex true .forceput
  2031. } .bind executeonly odef
  2032.  
  2033. % If we are running in SAFER mode, lock things down
  2034. SAFER { .setsafe } if
  2035.  
  2036. % If we delayed binding, make it possible to do it later.
  2037. /.bindnow {
  2038.   currentuserparams /IdiomRecognition .knownget {
  2039.     1 dict dup /IdiomRecognition //false put setuserparams
  2040.   } if
  2041.   //systemdict begin .bindoperators end
  2042.   % Temporarily disable the typecheck error.
  2043.   errordict /typecheck 2 copy get
  2044.   errordict /typecheck { pop } put    % pop the command
  2045.   0 1 .delaycount 1 sub { .delaybind exch get .bind pop } for
  2046.   //systemdict /.delaybind {} .forceput    % reclaim the space
  2047.   //systemdict /.bindnow .forceundef    % ditto
  2048.   put
  2049.   //systemdict /.forcecopynew .forceundef    % remove temptation
  2050.   //systemdict /.forcedef .forceundef        % ditto
  2051.   //systemdict /.forceput .forceundef        % ditto
  2052.   //systemdict /.forceundef .forceundef        % ditto
  2053.   currentuserparams /IdiomRecognition known {
  2054.     1 dict dup /IdiomRecognition 4 -1 roll put setuserparams
  2055.   } if
  2056. } .bind odef
  2057.  
  2058. % Turn off array packing, since some PostScript code assumes that
  2059. % procedures are writable.
  2060. false setpacking
  2061.  
  2062. (END INIT) VMDEBUG
  2063.  
  2064. /.currentuserparams where {
  2065.   pop
  2066.     % Remove real user params from psuserparams.
  2067.   mark .currentuserparams counttomark 2 idiv {
  2068.     pop psuserparams exch undef
  2069.   } repeat pop
  2070.     % Update the copy of the user parameters.
  2071.   mark .currentuserparams counttomark 2 idiv {
  2072.     userparams 3 1 roll .forceput    % userparams is read-only
  2073.   } repeat pop
  2074.     % Turn on idiom recognition, if available.
  2075.   currentuserparams /IdiomRecognition known {
  2076.     /IdiomRecognition true .definepsuserparam
  2077.   } if
  2078.   psuserparams readonly pop
  2079.   systemdict /.definepsuserparam undef
  2080.     % Save a copy of userparams for use with save/restore
  2081.     % (and, if implemented, context switching).
  2082.   .currentglobal false .setglobal
  2083.      mark userparams { } forall .dicttomark readonly
  2084.      /userparams exch .forcedef        % systemdict is read-only
  2085.   .setglobal
  2086. } if
  2087. /.currentsystemparams where {
  2088.   pop
  2089.     % Remove real system params from pssystemparams.
  2090.   mark .currentsystemparams counttomark 2 idiv {
  2091.     pop pssystemparams exch .forceundef
  2092.   } repeat pop
  2093. } if
  2094.  
  2095. % Set up AlignToPixels :
  2096.  
  2097. /AlignToPixels where {
  2098.   mark /AlignToPixels 2 index /AlignToPixels get .dicttomark setuserparams
  2099.   /AlignToPixels undef
  2100. } if
  2101.  
  2102. % Set up GridFitTT :
  2103.  
  2104. /GridFitTT where {
  2105.   mark /GridFitTT 2 index /GridFitTT get .dicttomark setuserparams
  2106.   /GridFitTT undef
  2107. } if
  2108.  
  2109. % Establish local VM as the default.
  2110. false /setglobal where { pop setglobal } { .setglobal } ifelse
  2111. $error /.nosetlocal false put
  2112.  
  2113. (END GLOBAL) VMDEBUG
  2114.  
  2115. /.savelocalstate where {
  2116.     % If we might create new contexts, save away copies of all dictionaries
  2117.     % referenced from systemdict that are stored in local VM,
  2118.     % and also save a copy of the initial gstate.
  2119.   pop .savelocalstate
  2120. } {
  2121.     % If we're *not* running in a multi-context system and FAKEFONTS is
  2122.     % defined, add the fake fonts to LocalFontDirectory.
  2123.   .definefakefonts    % current VM is local
  2124. } ifelse
  2125.  
  2126. % Execute scheduled inits :
  2127. //.execute_scheduled_inits exec
  2128. currentdict /.execute_scheduled_inits undef
  2129. currentdict /.delayed_init_queue undef
  2130.  
  2131. % Make global and local FontDirectory read-only.
  2132. FontDirectory readonly pop
  2133. /GlobalFontDirectory where { pop GlobalFontDirectory readonly pop } if
  2134.  
  2135. % Remove systemdict entries for things that have been bound in where used
  2136. % and that shouldn't be accessible by name, and close up systemdict.
  2137. currentdict /filterdict .undef
  2138. currentdict /.cidfonttypes .undef
  2139. currentdict /.colorrenderingtypes .undef
  2140. currentdict /.formtypes .undef
  2141. currentdict /.halftonetypes .undef
  2142. currentdict /.imagetypes .undef
  2143. currentdict /.imagemasktypes .undef
  2144. currentdict /.patterntypes .undef
  2145. currentdict /.shadingtypes .undef
  2146. currentdict /.wheredict .undef
  2147. end
  2148.  
  2149. % Clean up VM, and enable GC.
  2150. /vmreclaim where
  2151.  { pop NOGC not { 2 vmreclaim 0 vmreclaim } if
  2152.  } if
  2153. DELAYBIND not {
  2154.   systemdict /.forcecopynew .undef    % remove temptation
  2155.   systemdict /.forcedef .undef        % ditto
  2156.   systemdict /.forceput .undef        % ditto
  2157.   systemdict /.forceundef .undef    % ditto
  2158. } if
  2159. % Move superexec to internaldict if superexec is defined.
  2160. currentdict /superexec .knownget {
  2161.   1183615869 internaldict /superexec 3 -1 roll put
  2162.   currentdict /superexec .undef
  2163. } if
  2164. WRITESYSTEMDICT not { systemdict readonly pop } if
  2165. (END GC) VMDEBUG
  2166.  
  2167. % The Adobe AGM_Core used by Illustrator 9 has some code that breaks
  2168. % if the 'product' is not (Adobe PostScript Parser). A bug has been
  2169. % submitted to Adobe since this also fails with Acrobat Distiller.
  2170. % As a temporary work around, the following HACK will work for
  2171. % devices without spot color support. Once Ghostscript can
  2172. % support DeviceN and spot color separations this will need to
  2173. % be 'true' in some cases.
  2174. userdict /AGM_preserve_spots false put
  2175.  
  2176. % The interpreter will run the initial procedure (start).
  2177.