home *** CD-ROM | disk | FTP | other *** search
/ PC World 2001 April / PCWorld_2001-04_cd.bin / Software / Vyzkuste / gs / gs650w32.exe / gs6.50 / lib / gs_init.ps < prev    next >
Text File  |  2000-12-05  |  55KB  |  1,713 lines

  1. %    Copyright (C) 1989, 2000 Aladdin Enterprises.  All rights reserved.
  2. % This file is part of AFPL Ghostscript.
  3. % AFPL Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author or
  4. % distributor accepts any responsibility for the consequences of using it, or
  5. % for whether it serves any particular purpose or works at all, unless he or
  6. % she says so in writing.  Refer to the Aladdin Free Public License (the
  7. % "License") for full details.
  8. % Every copy of AFPL Ghostscript must include a copy of the License, normally
  9. % in a plain ASCII text file named PUBLIC.  The License grants you the right
  10. % to copy, modify and redistribute AFPL Ghostscript, but only under certain
  11. % conditions described in the License.  Among other things, the License
  12. % requires that the copyright notice and this notice be preserved on all
  13. % copies.
  14.  
  15. % $Id: gs_init.ps,v 1.25.2.3 2000/12/02 22:15:11 raph Exp $
  16. % Initialization file for the interpreter.
  17. % When this is run, systemdict is still writable.
  18.  
  19. % Comment lines of the form
  20. %    %% Replace <n> <file(s)>
  21. % indicate places where the next <n> lines should be replaced by
  22. % the contents of <file(s)>, when creating a single merged init file.
  23.  
  24. % The interpreter can call out to PostScript code.  All procedures
  25. % called in this way, and no other procedures defined in these
  26. % initialization files, have names that begin with %, e.g.,
  27. % (%Type1BuildChar) cvn.
  28.  
  29. % Check the interpreter revision.  NOTE: the interpreter code requires
  30. % that the first non-comment token in this file be an integer.
  31. 650
  32. dup revision ne
  33.  { (gs: Interpreter revision \() print revision 10 string cvs print
  34.    (\) does not match gs_init.ps revision \() print 10 string cvs print
  35.    (\).\n) print flush null 1 .quit
  36.  }
  37. if pop
  38.  
  39. % Acquire userdict, and set its length if necessary.
  40. /userdict where
  41.  { pop userdict maxlength 0 eq }
  42.  { true }
  43. ifelse
  44. systemdict exch
  45.  {        % userdict wasn't already set up by iinit.c.
  46.    dup /userdict
  47.    currentdict dup 200 .setmaxlength        % userdict
  48.    .forceput            % userdict is local, systemdict is global
  49.  }
  50. if begin
  51.  
  52. % Define dummy local/global operators if needed.
  53. systemdict /.setglobal known
  54.  { true .setglobal
  55.  }
  56.  { /.setglobal { pop } bind def
  57.    /.currentglobal { false } bind def
  58.    /.gcheck { pop false } bind def
  59.  }
  60. ifelse
  61.  
  62. % Define .languagelevel if needed.
  63. systemdict /.languagelevel known not { /.languagelevel 1 def } if
  64.  
  65. % Optionally choose a default paper size other than U.S. letter.
  66. % (a4) /PAPERSIZE where { pop pop } { /PAPERSIZE exch def } ifelse
  67.  
  68. % Turn on array packing for the rest of initialization.
  69. true setpacking
  70.  
  71. % Define the old MS-DOS EOF character as a no-op.
  72. % This is a hack to get around the absurd habit of MS-DOS editors
  73. % of adding an EOF character at the end of the file.
  74. <1a> cvn { } def
  75.  
  76. % Acquire the debugging flags.
  77. currentdict /DEBUG known   /DEBUG exch def
  78.   /VMDEBUG
  79.     DEBUG {{print mark
  80.             systemdict /level2dict known
  81.          { .currentglobal dup false .setglobal vmstatus
  82.            true .setglobal vmstatus 3 -1 roll pop
  83.            6 -2 roll pop .setglobal
  84.          }
  85.          { vmstatus 3 -1 roll pop
  86.          }
  87.         ifelse usertime 16#fffff and counttomark
  88.           { ( ) print (           ) cvs print }
  89.         repeat pop
  90.         ( ) print systemdict length (    ) cvs print
  91.         ( ) print countdictstack (  ) cvs print
  92.         ( <) print count (    ) cvs print (>\n) print flush
  93.       }}
  94.       {{pop
  95.       }}
  96.      ifelse
  97.   def
  98.  
  99. currentdict /BATCH known   /BATCH exch def
  100. currentdict /DELAYBIND known   /DELAYBIND exch def
  101. currentdict /DISKFONTS known   /DISKFONTS exch def
  102. currentdict /DOINTERPOLATE .knownget { /INTERPOLATE exch def } if
  103. currentdict /ESTACKPRINT known   /ESTACKPRINT exch def
  104. currentdict /FAKEFONTS known   /FAKEFONTS exch def
  105. currentdict /FIXEDMEDIA known   /FIXEDMEDIA exch def
  106. currentdict /FIXEDRESOLUTION known   /FIXEDRESOLUTION exch def
  107. currentdict /LOCALFONTS known   /LOCALFONTS exch def
  108. currentdict /NOBIND known   /NOBIND exch def
  109. /.bind /bind load def
  110. NOBIND { /bind { } def } if
  111. currentdict /NOCACHE known   /NOCACHE exch def
  112. currentdict /NOCIE known   /NOCIE exch def
  113. currentdict /NODISPLAY known   not /DISPLAYING exch def
  114. currentdict /NOFONTMAP known   /NOFONTMAP exch def
  115. currentdict /NOFONTPATH known   /NOFONTPATH exch def
  116. currentdict /NOGC known   /NOGC exch def
  117. currentdict /NOINTERPOLATE .knownget { /INTERPOLATE exch not def } if
  118. currentdict /NOPAGEPROMPT known   /NOPAGEPROMPT exch def
  119. currentdict /NOPAUSE known   /NOPAUSE exch def
  120. currentdict /NOPLATFONTS known   /NOPLATFONTS exch def
  121. currentdict /NOPROMPT known   /NOPROMPT exch def
  122. % The default value of ORIENT1 is true, not false.
  123. currentdict /ORIENT1 known not { /ORIENT1 true def } if
  124. currentdict /OSTACKPRINT known   /OSTACKPRINT exch def
  125. currentdict /OUTPUTFILE known    % obsolete
  126.  { /OutputFile /OUTPUTFILE load def
  127.    currentdict /OUTPUTFILE .undef
  128.  } if
  129. currentdict /QUIET known   /QUIET exch def
  130. currentdict /SAFER known   /SAFER exch def
  131. currentdict /SHORTERRORS known   /SHORTERRORS exch def
  132. currentdict /STRICT known   /STRICT exch def
  133. currentdict /TTYPAUSE known   /TTYPAUSE exch def
  134. currentdict /WRITESYSTEMDICT known   /WRITESYSTEMDICT exch def
  135.  
  136. % Acquire environment variables.
  137. currentdict /DEVICE known not
  138.  { (GS_DEVICE) getenv { /DEVICE exch def } if } if
  139.  
  140. (START) VMDEBUG
  141.  
  142. % Open the standard files, so they will be open at the outermost save level.
  143. (%stdin) (r) file pop
  144. (%stdout) (w) file pop
  145. (%stderr) (w) file pop
  146.  
  147. /.currentuserparams where {
  148.   pop mark
  149.     % The Adobe implementations appear to have very large maximum
  150.     % stack sizes.  This turns out to actually make a difference,
  151.     % since some badly-behaved files include extremely long procedures,
  152.     % or construct huge arrays on the operand stack.
  153.     % We reset the stack sizes now so that we don't have to worry
  154.     % about overflowing the (rather small) built-in stack sizes
  155.     % during initialization.
  156.   /MaxDictStack 500
  157.   /MaxExecStack 5000
  158.   /MaxOpStack 50000
  159.   .dicttomark .setuserparams
  160. } if
  161.  
  162. % Define a procedure for skipping over an unneeded section of code.
  163. % This avoids allocating space for the skipped procedures.
  164. % We can't use readline, because that imposes a line length limit.
  165. /.skipeof    % <string> .skipeof -
  166.  { currentfile exch 1 exch .subfiledecode flushfile
  167.  } .bind def
  168.  
  169. % Define procedures to assist users who don't read the documentation.
  170. userdict begin
  171. /help
  172.  { (Enter PostScript commands.  '(filename) run' runs a file, 'quit' exits.\n)
  173.    print flush
  174.  } .bind def
  175. end
  176.  
  177. % Define =string, which is used by some PostScript programs even though
  178. % it isn't documented anywhere.
  179. % Put it in userdict so that each context can have its own copy.
  180. userdict /=string 256 string put
  181.  
  182. % Print the greeting.
  183.  
  184. /printgreeting
  185.  { mark
  186.    product (Ghostscript) search
  187.     { pop pop pop
  188.       (This software comes with NO WARRANTY: see the file PUBLIC for details.\n)
  189.     }
  190.     { pop
  191.     }
  192.    ifelse
  193.    (\n) copyright
  194.    (\)\n) revisiondate 10 mod revisiondate 10 idiv 10 mod (-)
  195.    revisiondate 100 idiv 10 mod revisiondate 1000 idiv 10 mod (-)
  196.    revisiondate 10000 idiv ( \()
  197.    revision 10 mod
  198.    revision 100 mod dup 0 ne { 10 idiv } { pop } ifelse (.)
  199.    revision 100 idiv ( )
  200.    product
  201.    counttomark
  202.     { (%stdout) (w) file exch 0 .writecvp
  203.     } repeat pop
  204.  } .bind def
  205.  
  206. QUIET not { printgreeting flush } if
  207.  
  208. % Define a special version of def for making operator procedures.
  209. /obind {    % <name> <proc> obind <name> <oper>
  210.   1 index exch .makeoperator
  211. } .bind def
  212. /odef {        % <name> <proc> odef -
  213.   1 index exch .makeoperator def
  214. } .bind def
  215.  
  216. % Define a special version of def for storing local objects into global
  217. % dictionaries.  Like .forceput, this exists only during initialization.
  218. /.forcedef {        % <key> <value> .forcedef -
  219.   currentdict 3 1 roll .forceput
  220. } .bind odef
  221.  
  222. % Define procedures for accessing variables in systemdict and userdict
  223. % regardless of the contents of the dictionary stack.
  224. /.systemvar {        % <name> .systemvar <value>
  225.   //systemdict exch get
  226. } .bind odef
  227. /.userdict {        % - .userdict <dict>
  228.   /userdict .systemvar
  229. } .bind odef
  230. /.uservar {        % <name> .uservar <value>
  231.   .userdict exch get
  232. } .bind odef
  233.  
  234. % If we're delaying binding, remember everything that needs to be bound later.
  235. DELAYBIND NOBIND not and
  236.  { .currentglobal false .setglobal
  237.    systemdict /.delaybind 1500 array .forceput
  238.    .setglobal
  239.    userdict /.delaycount 0 put
  240.     % When we've done the delayed bind, we want to stop saving.
  241.     % Detect this by the disappearance of .delaybind.
  242.    /bind
  243.     { /.delaybind .systemvar dup length 0 ne
  244.        { .delaycount 2 index put
  245.          .userdict /.delaycount .delaycount 1 add put
  246.        }
  247.        { pop .bind
  248.        }
  249.       ifelse
  250.     } .bind def
  251.  } if
  252.  
  253. %**************** BACKWARD COMPATIBILITY
  254. /hwsizedict mark /HWSize null .dicttomark readonly def
  255. /copyscanlines {        % <device> <y> <string> copyscanlines <substr>
  256.   0 3 1 roll 3 index //hwsizedict .getdeviceparams
  257.   exch pop exch pop aload pop 3 2 roll
  258.   0 exch null exch .getbitsrect exch pop
  259. } bind odef
  260. currentdict /hwsizedict .undef
  261. /getdeviceprops
  262.  { null .getdeviceparams
  263.  } bind odef
  264. /.putdeviceprops
  265.  { null true counttomark 1 add 3 roll .putdeviceparams
  266.    dup type /booleantype ne
  267.     { dup mark eq { /unknown /rangecheck } if
  268.       counttomark 4 add 1 roll cleartomark pop pop pop
  269.       /.putdeviceprops load exch signalerror
  270.     }
  271.    if
  272.  } bind odef
  273. /max { .max } bind def
  274. /min { .min } bind def
  275. /.currentfilladjust { .currentfilladjust2 pop } bind odef
  276. /.setfilladjust { dup .setfilladjust2 } bind odef
  277. /unread /.unread load def
  278. /.writecvs { 0 .writecvp } bind odef
  279.  
  280. % Define predefined procedures substituting for operators,
  281. % in alphabetical order.
  282.  
  283. userdict /#copies 1 put
  284. % Adobe implementations don't accept /[ or /], so we don't either.
  285. ([) cvn
  286.     /mark load def
  287. (]) cvn
  288.     {counttomark array astore exch pop} odef
  289. % .beginpage is redefined if setpagedevice is present.
  290. /.beginpage { } odef
  291. % In LanguageLevel 3, copypage erases the page.
  292. /copypage {
  293.     .languagelevel 3 ge
  294.     dup { 0 } { 1 } ifelse .endpage {
  295.       .currentnumcopies 1 index .outputpage
  296.       (>>copypage, press <return> to continue<<\n) .confirm
  297.       dup { erasepage } if
  298.     } if pop .beginpage
  299. } odef
  300. /currentmatrix {
  301.     .currentmatrix 6 index astore pop
  302. } odef
  303. % .currentnumcopies is redefined in Level 2.
  304. /.currentnumcopies { #copies } odef
  305. /setcolorscreen where { pop        % not in all Level 1 configurations
  306.    /currentcolorscreen
  307.     { .currenthalftone
  308.        { { 60 exch 0 exch 3 copy 6 copy }    % halftone - not possible
  309.          { 3 copy 6 copy }            % screen
  310.          { }                % colorscreen
  311.        }
  312.       exch get exec
  313.     } odef
  314. } if
  315. /currentscreen
  316.     { .currenthalftone
  317.        { { 60 exch 0 exch }            % halftone - not possible
  318.          { }                % screen
  319.          { 12 3 roll 9 { pop } repeat }    % colorscreen
  320.        }
  321.       exch get exec
  322.     } odef
  323. /.echo /echo load def
  324. userdict /.echo.mode true put
  325. /echo    {dup /.echo.mode exch store .echo} odef
  326. /eexec {
  327.     % Rebind .currentresourcefile if it is the source for the eexec.
  328.   dup 55665 //filterdict /eexecDecode get exec
  329.   cvx exch .currentresourcefile eq
  330.   //systemdict begin { {exec} .execasresource } { exec } ifelse
  331.     % Only pop systemdict if it is still the top element,
  332.     % because this is apparently what Adobe interpreters do.
  333.   currentdict //systemdict eq { end } if
  334. } odef
  335. % .endpage is redefined if setpagedevice is present.
  336. /.endpage { 2 ne } odef
  337. % erasepage mustn't use gsave/grestore, because we call it before
  338. % the graphics state stack has been fully initialized.
  339. /erasepage
  340.     { /currentcolor where
  341.        { pop currentcolor currentcolorspace { setcolorspace setcolor } }
  342.        { /currentcmykcolor where
  343.           { pop currentcmykcolor { setcmykcolor } }
  344.           { currentrgbcolor { setrgbcolor } }
  345.          ifelse
  346.        }
  347.       ifelse 1 setgray .fillpage exec
  348.     } odef
  349. % To satisfy the Genoa FTS, executive must be a procedure, not an operator.
  350. /executive
  351.     { { prompt
  352.          { (%statementedit) (r) file } stopped
  353.          { pop pop $error /errorname get /undefinedfilename eq
  354.         { .clearerror exit } if        % EOF
  355.            handleerror null        % ioerror??
  356.          }
  357.         if
  358.         cvx { .runexec } execute
  359.       } loop
  360.     } bind def
  361. /filter
  362.     { //filterdict 1 index .knownget
  363.        { exch pop exec }
  364.        { /filter load /undefined signalerror }
  365.       ifelse
  366.     } odef
  367. /handleerror
  368.     { /errordict .systemvar /handleerror get exec } bind def
  369. /identmatrix [1.0 0.0 0.0 1.0 0.0 0.0] readonly def
  370. /identmatrix
  371.     { dup 0 //identmatrix putinterval } odef
  372. /languagelevel 1 def        % gs_lev2.ps may change this
  373. /makeimagedevice { false makewordimagedevice } odef
  374. /matrix    { 6 array identmatrix } odef
  375. /pathbbox
  376.     { false .pathbbox
  377.     } odef
  378. % .promptmsg is redefined if the interpreter includes readline support.
  379. /.promptmsg {
  380.     (GS) print
  381.     count 0 ne { (<) print count =only } if
  382.     (>) print flush
  383. } bind def
  384. /prompt    { flush flushpage NOPROMPT not { .promptmsg } if } bind def
  385. /pstack    { 0 1 count 3 sub { index == } for } bind def
  386. /putdeviceprops
  387.     { .putdeviceprops { erasepage } if } odef
  388. /quit    { /quit load 0 .quit } odef
  389. /run    { dup type /filetype ne { (r) file } if
  390.         % We must close the file when execution terminates,
  391.         % regardless of the state of the stack,
  392.         % and then propagate an error, if any.
  393.       cvx .runexec
  394.     } odef
  395. % Execute a file.
  396. % Level 2 uses 2 .stop to clear the e-stack for a successful startjob:
  397. % we detect that here, since we need to handle this even if we start out
  398. % without job control in effect.
  399. %
  400. % What we push on the e-stack is the following to be executed in this order:
  401. %    <lit-file|fileproc> .runexec1 <lit-file|fileproc> .runexec2
  402. /.runexec1 {        % <file|fileproc> .runexec1 -
  403.   dup type /filetype ne { cvx exec } if
  404.   cvx null 2 .stopped
  405.     % If we got back here from a startjob, just keep going.
  406.     % startjob replaces the null on the o-stack with a procedure
  407.     % to be executed when we get back here.
  408.   dup null ne { exec true } { pop false } ifelse
  409. } bind def
  410. /.runexec2 {        % <continue> <file|fileproc> .runexec2 -
  411.   exch {
  412.     .runexec
  413.   } {
  414.     dup type /filetype ne { cvx exec } if
  415.     closefile
  416.   } ifelse
  417. } bind def
  418. /.runexec {        % <file|fileproc> .runexec -
  419.   cvlit /.runexec1 cvx 1 index /.runexec2 cvx 4 .execn
  420. } bind def
  421. % The following is only for compatibility with Adobe interpreters.
  422. /setdash {
  423.     1 index length 11 gt { /setdash load /limitcheck signalerror } if
  424.     //setdash
  425. } odef
  426. /setdevice
  427.     { .setdevice { erasepage } if } odef
  428. /setlinecap {
  429.     dup 2 gt { /setlinecap load /rangecheck signalerror } if
  430.     .setlinecap
  431. } odef
  432. /setlinejoin {
  433.     dup 2 gt { /setlinejoin load /rangecheck signalerror } if
  434.     .setlinejoin
  435. } odef
  436. /setmatrix {
  437.     dup aload pop .setmatrix pop
  438. } odef
  439. /showpage {
  440.     0 .endpage .doneshowpage {
  441.       .currentnumcopies true .outputpage
  442.       (>>showpage, press <return> to continue<<\n) .confirm
  443.       erasepage
  444.     } if initgraphics .beginpage
  445. } odef
  446. % Code output by Adobe Illustrator relies on the fact that
  447. % `stack' is a procedure, not an operator!!!
  448. /stack    { 0 1 count 3 sub { index = } for } bind def
  449. /start    { BATCH { null 0 .quit } { executive } ifelse } def
  450. % Internal uses of stopped that aren't going to do a stop if an error occurs
  451. % should use .internalstopped to avoid setting newerror et al.
  452. /.internalstopped { null 1 .stopped null ne } bind def
  453. /store {    % Don't alter operands before completing.
  454.     1 index where { 2 index 2 index put pop pop } { def } ifelse
  455. } odef
  456. /.typenames mark .typenames counttomark packedarray exch pop def
  457. /type {
  458.     //.typenames .type
  459. } odef
  460. currentdict /.typenames .undef
  461. % When running in Level 1 mode, this interpreter is supposed to be
  462. % compatible with PostScript "version" 54.0 (I think).
  463. /version (54.0) readonly def
  464. /.wheredict 10 dict def
  465. /.where /where load def
  466. /where {
  467.     //.wheredict 1 index .knownget { exec } { .where } ifelse
  468. } odef
  469.  
  470. % internaldict is defined in systemdict, but the dictionary is allocated
  471. % in local VM.  However, the procedure must be global, since it is an
  472. % "operator" and must be bind-able into global procedures.
  473. % We make a procedure for creating it, since we must create a new one
  474. % for each context with private local VM.
  475. /.makeinternaldict {
  476.   .currentglobal true .setglobal
  477.     [ /dup .systemvar 1183615869 /eq .systemvar
  478.     [ /pop .systemvar null ] cvx
  479.     false .setglobal
  480.     dup 1 10 dict .forceput    % proc is global, dict is local
  481.     true .setglobal
  482.     [ /internaldict /cvx .systemvar /invalidaccess /signalerror cvx ] cvx
  483.       /ifelse .systemvar
  484.     ] cvx executeonly
  485.   exch .setglobal
  486. } odef
  487. systemdict /internaldict dup .makeinternaldict .makeoperator
  488. .forceput        % proc is local, systemdict is global
  489. % Move superexec to internaldict if superexec is defined.
  490. currentdict /superexec .knownget {
  491.   1183615869 internaldict /superexec 3 -1 roll put
  492.   currentdict /superexec .undef
  493. } if
  494.  
  495. % Define some additional built-in procedures (beyond the ones defined by
  496. % the PostScript Language Reference Manual).
  497. % Warning: these are not guaranteed to stay the same from one release
  498. % to the next!
  499. /concatstrings
  500.     { exch dup length 2 index length add string    % str2 str1 new
  501.       dup dup 4 2 roll copy        % str2 new new new1
  502.       length 4 -1 roll putinterval
  503.     } bind def
  504. /copyarray
  505.     { dup length array copy } bind def
  506. % Copy a dictionary per the Level 2 spec even in Level 1.
  507. /.copydict        % <fromdict> <todict> .copydict <todict>
  508.     { dup 3 -1 roll { put dup } forall pop } bind def
  509. /copystring
  510.     { dup length string copy } bind def
  511. /findlibfile {
  512.     .libfile { dup .filename pop exch true } { false } ifelse
  513. } odef
  514. /.growdictlength    % get size for growing a dictionary
  515.     { length 3 mul 2 idiv 1 add
  516.     } bind def
  517. /.growdict        % grow a dictionary
  518.     { dup .growdictlength .setmaxlength
  519.     } bind def
  520. /.growput        % put, grow the dictionary if needed
  521.     { 2 index length 3 index maxlength eq
  522.        { 3 copy pop known not { 2 index .growdict } if
  523.        } if
  524.       put
  525.     } bind def
  526. /.packtomark
  527.     { counttomark packedarray exch pop } bind def
  528. /ppstack
  529.     { 0 1 count 3 sub { index === } for } bind def
  530. /runlibfile
  531.     {        % We don't want to bind 'run' into this procedure,
  532.             % since run may get redefined.
  533.       findlibfile
  534.        { exch pop /run .systemvar exec }
  535.        { /undefinedfilename signalerror }
  536.       ifelse
  537.     } bind def
  538. /selectdevice
  539.     { finddevice setdevice .setdefaultscreen } bind def
  540. /signalerror        % <object> <errorname> signalerror -
  541.     { /errordict .systemvar exch get exec } bind def
  542.  
  543. % Define the =[only] procedures.  Also define =print,
  544. % which is used by some PostScript programs even though
  545. % it isn't documented anywhere.
  546. /write=only {
  547.     .writecvs
  548. } bind def
  549. /write= {
  550.     1 index exch write=only (\n) writestring
  551. } bind def
  552. /=only    { (%stdout) (w) file exch write=only } bind def
  553. /=    { =only (\n) print } bind def
  554. /=print    /=only load def
  555. % Temporarily define == as = for the sake of runlibfile0.
  556. /== /= load def
  557.  
  558. % The following procedures are documented.
  559. /copydevice {        % <device> copydevice <newdevice>
  560.   false .copydevice2
  561. } odef
  562. /finddevice {        % <devicename> finddevice <device>
  563.   /devicedict .systemvar exch get
  564.   dup 1 get null eq {
  565.         % This is the first request for this type of device.
  566.         % Create a default instance now.
  567.         % Stack: [proto null]
  568.     .currentglobal true .setglobal exch
  569.     dup dup 0 get copydevice 1 exch put
  570.     exch .setglobal
  571.   } if 1 get
  572. } bind def
  573. /findprotodevice {    % <devicename> findprotodevice <protodevice>
  574.   /devicedict .systemvar exch get 0 get
  575. } bind def
  576.  
  577. % Run a resource file.  This allows us to distinguish resource objects
  578. % from objects coming from input files.
  579. userdict /.currentresourcefile null put
  580. /.execasresource {    % <file> <proc|runfile> .execasresource -
  581.   /stopped .systemvar
  582.   /.currentresourcefile .uservar
  583.         % Stack: file proc -stopped- currfile
  584.   .userdict /.currentresourcefile 5 index cvlit put
  585.   2 .execn        % stopped <file>
  586.   .userdict /.currentresourcefile 3 -1 roll put
  587.   { stop } if
  588. } bind def
  589. /.runresource {        % <file> .runresource -
  590.   { /run .systemvar exec } .execasresource
  591. } bind def
  592.  
  593. % Define procedures for getting and setting the current device resolution.
  594.  
  595. /gsgetdeviceprop    % <device> <propname> gsgetdeviceprop <value>
  596.  { 2 copy mark exch null .dicttomark .getdeviceparams
  597.    dup mark eq        % if true, not found
  598.     { pop dup /undefined signalerror }
  599.     { 5 1 roll pop pop pop pop }
  600.    ifelse
  601.  } bind def
  602. /gscurrentresolution    % - gscurrentresolution <[xres yres]>
  603.  { currentdevice /HWResolution gsgetdeviceprop
  604.  } bind def
  605. /gssetresolution    % <[xres yres]> gssetresolution -
  606.  { 2 array astore mark exch /HWResolution exch
  607.    currentdevice copydevice putdeviceprops setdevice
  608.  } bind def
  609.  
  610. % Define auxiliary procedures needed for the above.
  611. /shellarguments        % -> shell_arguments true (or) false
  612.     { /ARGUMENTS where
  613.        { /ARGUMENTS get dup type /arraytype eq
  614.           { aload pop /ARGUMENTS null store true }
  615.           { pop false }
  616.          ifelse }
  617.        { false } ifelse
  618.     } bind def
  619. /.confirm {
  620.   DISPLAYING NOPAUSE not TTYPAUSE or and {
  621.     % Print a message (unless NOPAGEPROMPT or NOPROMPT is true)
  622.     % and wait for the user to type something.
  623.     % If the user just types a newline, flush it.
  624.     NOPAGEPROMPT NOPROMPT or { pop } { print flush } ifelse
  625.     .confirmread
  626.   } {
  627.     pop
  628.   } ifelse
  629. } bind def
  630. /.confirmread {
  631.   TTYPAUSE {
  632.     (/dev/tty) (r) file dup read pop pop closefile
  633.   } {
  634.     .echo.mode false echo
  635.     (%stdin) (r) file dup read {
  636.       dup (\n) 0 get eq { pop pop } { unread } ifelse
  637.     } {
  638.       pop
  639.     } ifelse echo
  640.   } ifelse
  641. } bind def
  642.  
  643. % Define the procedure used by .runfile, .runstdin and .runstring
  644. % for executing user input.
  645. % This is called with a procedure or executable file on the operand stack.
  646. /.execute {        % <obj> .execute <stopped>
  647.   stopped $error /newerror get and
  648.    { handleerror flush true } { false } ifelse
  649. } bind def
  650. /execute {        % <obj> execute -
  651.   .execute pop
  652. } odef
  653. % Define an execute analogue of runlibfile0.
  654. /execute0 {        % <obj> execute0 -
  655.   .execute { /execute0 cvx 1 .quit } if
  656. } bind def
  657. % Define the procedure that the C code uses for running files
  658. % named on the command line.
  659. /.runfile {
  660.   { runlibfile } execute0
  661. } def
  662. % Define the procedure that the C code uses for running piped input.
  663. % We don't use the obvious { (%stdin) run }, because we want the file to be
  664. % reopened if a startjob does a restore.
  665. /.runstdin {
  666.   { { (%stdin) (r) file cvx } .runexec } execute0
  667. } bind def
  668. % Define the procedure that the C code uses for running commands
  669. % given on the command line with -c.  We turn the string into a file so that
  670. % .runexec can do the right thing with a startjob.
  671. /.runstring {
  672.   .currentglobal exch true .setglobal
  673.   0 () .subfiledecode
  674.   exch .setglobal cvx { .runexec } execute0
  675. } bind def
  676. % Define the procedure that the C code uses to set up for executing
  677. % a string that may be received in pieces.
  678. /.runstringbegin {
  679.   .currentglobal true .setglobal
  680.   { .needinput } bind 0 () .subfiledecode
  681.   exch .setglobal cvx .runexec
  682. } bind def
  683.  
  684. % Define a special version of runlibfile that aborts on errors.
  685. /runlibfile0
  686.     { cvlit dup /.currentfilename exch def
  687.        { findlibfile not { stop } if }
  688.       stopped
  689.        { (Can't find \(or open\) initialization file ) print
  690.          .currentfilename == flush /runlibfile0 cvx 1 .quit
  691.        } if
  692.       exch pop cvx stopped
  693.        { (While reading ) print .currentfilename print (:\n) print flush
  694.          handleerror /runlibfile0 1 .quit
  695.        } if
  696.     } bind def
  697. % Temporarily substitute it for the real runlibfile.
  698. /.runlibfile /runlibfile load def
  699. /runlibfile /runlibfile0 load def
  700.  
  701. % Create the error handling machinery.
  702. % Define the standard error handlers.
  703. % The interpreter has created the ErrorNames array.
  704. /.unstoppederrorhandler    % <command> <errorname> .unstoppederrorhandler -
  705.  {    % This is the handler that gets used for recursive errors,
  706.     % or errors outside the scope of a 'stopped'.
  707.    2 copy SHORTERRORS
  708.     { (%%[ Error: ) print =only flush
  709.       (; OffendingCommand: ) print =only ( ]%%) =
  710.     }
  711.     { (Unrecoverable error: ) print =only flush
  712.       ( in ) print = flush
  713.       count 2 gt
  714.        { (Operand stack:\n  ) print
  715.      2 1 count 3 sub { (  ) print index =only flush } for
  716.      () = flush
  717.        } if
  718.     }
  719.    ifelse
  720.    -1 0 1 //ErrorNames length 1 sub
  721.     { dup //ErrorNames exch get 3 index eq
  722.        { not exch pop exit } { pop } ifelse
  723.     }
  724.    for exch pop .quit
  725.  } bind def
  726. /.errorhandler        % <command> <errorname> .errorhandler -
  727.   {        % Detect an internal 'stopped'.
  728.     1 .instopped { null eq { pop pop stop } if } if
  729.     $error /.inerror get 1 .instopped { pop } { pop true } ifelse
  730.      { .unstoppederrorhandler
  731.      } if    % detect error recursion
  732.     $error /globalmode .currentglobal false .setglobal put
  733.     $error /.inerror true put
  734.     $error /newerror true put
  735.     $error exch /errorname exch put
  736.     $error exch /command exch put
  737.     $error /recordstacks get $error /errorname get /VMerror ne and
  738.      {        % Attempt to store the stack contents atomically.
  739.        count array astore dup $error /ostack 4 -1 roll
  740.        countexecstack array execstack $error /estack 3 -1 roll
  741.        countdictstack array dictstack $error /dstack 3 -1 roll
  742.        put put put aload pop
  743.      }
  744.      { $error /dstack .undef
  745.        $error /estack .undef
  746.        $error /ostack .undef
  747.      }
  748.     ifelse
  749.     $error /position currentfile status
  750.      { currentfile { fileposition } .internalstopped { pop null } if
  751.      }
  752.      {        % If this was a scanner error, the file is no longer current,
  753.         % but the command holds the file, which may still be open.
  754.        $error /command get dup type /filetype eq
  755.         { { fileposition } .internalstopped { pop null } if }
  756.         { pop null }
  757.        ifelse
  758.      }
  759.     ifelse put
  760.         % During initialization, we don't reset the allocation
  761.         % mode on errors.
  762.     $error /globalmode get $error /.nosetlocal get and .setglobal
  763.     $error /.inerror false put
  764.     stop
  765.   } bind def
  766. % Define the standard handleerror.  We break out the printing procedure
  767. % (.printerror) so that it can be extended for binary output
  768. % if the Level 2 facilities are present.
  769.   /.printerror
  770.    { $error begin
  771.        /command load errorname SHORTERRORS
  772.     { (%%[ Error: ) print =only flush
  773.       (; OffendingCommand: ) print =only
  774.       errorinfo dup null eq {
  775.         pop
  776.       } {
  777.         (;\nErrorInfo:) print
  778.         dup type /arraytype eq
  779.           { { ( ) print =only } forall }
  780.           { ( ) print =only }
  781.         ifelse
  782.       } ifelse
  783.           ( ]%%) = flush
  784.     }
  785.     { (Error: ) print ==only flush
  786.       ( in ) print ==only flush
  787.       errorinfo dup null eq {
  788.         pop
  789.       } {
  790.         (\nAdditional information: ) print ==only flush
  791.       } ifelse
  792.       .printerror_long
  793.     }
  794.        ifelse
  795.        .clearerror
  796.      end
  797.      flush
  798.     } bind def     
  799.   /.printerror_long            % long error printout,
  800.                     % $error is on the dict stack
  801.    {    % Push the (anonymous) stack printing procedure.
  802.     %  <heading> <==flag> <override-name> <stackname> proc
  803.        {
  804.      currentdict exch .knownget    % stackname defined in $error?
  805.      {
  806.        4 1 roll            % stack: <stack> <head> <==flag> <over>
  807.        errordict exch .knownget    % overridename defined?
  808.        { 
  809.          exch pop exch pop exec    % call override with <stack>
  810.        }
  811.        { 
  812.          exch print exch        % print heading. stack <==flag> <stack>
  813.          1 index not { () = } if
  814.          { 1 index { (\n    ) } { (   ) } ifelse print
  815.            dup type /dicttype eq
  816.            {
  817.          (--dict:) print
  818.          dup rcheck {
  819.            dup length =only (/) print dup maxlength =only
  820.            dup wcheck not { ((ro)) print } if
  821.          } if
  822.          /gcheck where {
  823.            pop gcheck { ((G)) } { ((L)) } ifelse print
  824.          } {
  825.            pop
  826.          } ifelse (--) print
  827.            }
  828.            {
  829.          dup type /stringtype eq 2 index or
  830.          { ==only } { =only } ifelse
  831.            } ifelse
  832.          } forall
  833.          pop
  834.        }
  835.        ifelse            % overridden
  836.      }
  837.      { pop pop pop
  838.      }
  839.      ifelse                % stack known
  840.        }
  841.  
  842.        (\nOperand stack:) OSTACKPRINT /.printostack /ostack 4 index exec
  843.        (\nExecution stack:) ESTACKPRINT /.printestack /estack 4 index exec
  844.        (\nBacktrace:) true /.printbacktrace /backtrace 4 index exec
  845.        (\nDictionary stack:) false /.printdstack /dstack 4 index exec
  846.        () =
  847.        pop    % printing procedure
  848.  
  849.        errorname /VMerror eq
  850.     { (VM status:) print mark vmstatus
  851.       counttomark { ( ) print counttomark -1 roll dup =only } repeat
  852.       cleartomark () =
  853.     } if
  854.  
  855.        .languagelevel 2 ge
  856.     { (Current allocation mode is ) print
  857.       globalmode { (global\n) } { (local\n) } ifelse print
  858.     } if
  859.  
  860.        .oserrno dup 0 ne
  861.     { (Last OS error: ) print
  862.       errorname /VMerror ne
  863.        { dup .oserrorstring { = pop } { = } ifelse }
  864.        { = }
  865.       ifelse
  866.     }
  867.     { pop
  868.     }
  869.        ifelse
  870.  
  871.        position null ne
  872.     { (Current file position is ) print position = }
  873.        if
  874.  
  875.    } bind def
  876. % Define a procedure for clearing the error indication.
  877. /.clearerror
  878.  { $error /newerror false put
  879.    $error /errorname null put
  880.    $error /errorinfo null put
  881.    0 .setoserrno
  882.  } bind def
  883.  
  884. % Define $error.  This must be in local VM.
  885. .currentglobal false .setglobal
  886. /$error 40 dict .forcedef    % $error is local, systemdict is global
  887.         % newerror, errorname, command, errorinfo,
  888.         % ostack, estack, dstack, recordstacks,
  889.         % binary, globalmode,
  890.         % .inerror, .nosetlocal, position,
  891.         % plus extra space for badly designed error handers.
  892. $error begin
  893.   /newerror false def
  894.   /recordstacks true def
  895.   /binary false def
  896.   /globalmode .currentglobal def
  897.   /.inerror false def
  898.   /.nosetlocal true def
  899.   /position null def
  900. end
  901. % Define errordict similarly.  It has one entry per error name,
  902. %   plus handleerror.  However, some astonishingly badly written PostScript
  903. %   files require it to have at least one empty slot.
  904. /errordict ErrorNames length 2 add dict
  905. .forcedef        % errordict is local, systemdict is global
  906. .setglobal        % contents of errordict are global
  907. errordict begin
  908.   ErrorNames
  909.    { mark 1 index systemdict /.errorhandler get /exec load .packtomark cvx def
  910.    } forall
  911. % The handlers for interrupt and timeout are special; there is no
  912. % 'current object', so they push their own name.
  913.    { /interrupt /timeout }
  914.    { mark 1 index dup systemdict /.errorhandler get /exec load .packtomark cvx def
  915.    } forall
  916. /handleerror
  917.  { /.printerror .systemvar exec
  918.  } bind def
  919. end
  920.  
  921. % Define the [write]==[only] procedures.
  922. /.dict 8 dict dup
  923. begin def
  924.   /.cvp {1 index exch 1 .writecvp} bind def
  925.   /.p {1 index exch writestring} bind def
  926.   /.p1 {2 index exch writestring} bind def
  927.   /.p2 {3 index exch writestring} bind def
  928.   /.print
  929.     { dup type .dict exch .knownget { exec } { .cvp } ifelse
  930.     } bind def
  931.   /arraytype
  932.     {dup rcheck
  933.       {() exch dup xcheck
  934.         {({) .p2
  935.          {exch .p1
  936.           1 index exch .print pop ( )} forall
  937.          (})}
  938.         {([) .p2
  939.          {exch .p1
  940.           1 index exch .print pop ( )} forall
  941.          (])}
  942.        ifelse exch pop .p}
  943.       {.cvp}
  944.      ifelse} bind def
  945.   /packedarraytype /arraytype load def
  946. {//.dict begin .print pop end}
  947.   bind
  948. end
  949.  
  950. /write==only exch def
  951. /write== {1 index exch write==only (\n) writestring} bind def
  952. /==only { (%stdout) (w) file exch write==only } bind def
  953. /== {==only (\n) print} bind def
  954.  
  955. % Define [write]===[only], an extension that prints dictionaries
  956. % in readable form and doesn't truncate strings.
  957. /.dict /write==only load 0 get dup length 2 add dict .copydict dup
  958. begin def
  959.   /dicttype
  960.     { dup rcheck
  961.        { (<< ) .p1
  962.           { 2 index 3 -1 roll .print pop ( ) .p1
  963.         1 index exch .print pop ( ) .p
  964.           }
  965.          forall (>>) .p
  966.        }
  967.        { .cvp
  968.        }
  969.       ifelse
  970.     } bind def
  971.   /stringtype
  972.     { 1 index exch 2 .writecvp
  973.     } bind def
  974.  
  975. {//.dict begin .print pop end}
  976.   bind
  977. end
  978.  
  979. /write===only exch def
  980. /write=== {1 index exch write===only (\n) writestring} bind def
  981. /===only { (%stdout) (w) file exch write===only } bind def
  982. /=== { ===only (\n) print } bind def
  983.  
  984. (END PROCS) VMDEBUG
  985.  
  986. % Define the font directory.
  987. /FontDirectory false .setglobal 100 dict true .setglobal
  988. .forcedef        % FontDirectory is local, systemdict is global
  989.  
  990. % Define the encoding dictionary.
  991. /EncodingDirectory 16 dict def    % enough for Level 2 + PDF standard encodings
  992.  
  993. % Define .findencoding.  (This is redefined in Level 2.)
  994. /.findencoding
  995.  { //EncodingDirectory exch get exec
  996.  } bind def
  997. /.defineencoding
  998.  { //EncodingDirectory 3 1 roll put
  999.  } bind def
  1000. % If we've got the composite font extensions, define findencoding.
  1001. % To satisfy the Genoa FTS, findencoding must be a procedure, not an operator.
  1002. /rootfont where { pop /findencoding { .findencoding } def } if
  1003.  
  1004. % Define .registerencoding.
  1005. % NOTE: the name registeredencodings is known to (initialized by and shared
  1006. % with) the interpreter.
  1007. /.registerencoding {    % <index> <array> .registerencoding -
  1008.     % Check that the array is indexable.
  1009.     % (It might still be a string, but then the .namestring will fail.)
  1010.   dup 0 0 getinterval pop
  1011.     % Check that all the elements of the array are names.
  1012.   dup { .namestring pop } forall
  1013.     % Do the store.
  1014.   //registeredencodings 2 index 2 index readonly put pop pop
  1015. } bind odef
  1016. systemdict /registeredencodings .undef
  1017.  
  1018. % Load StandardEncoding.
  1019. %% Replace 1 (gs_std_e.ps)
  1020. (gs_std_e.ps) dup runlibfile VMDEBUG
  1021.  
  1022. % Load ISOLatin1Encoding.
  1023. %% Replace 1 (gs_il1_e.ps)
  1024. (gs_il1_e.ps) dup runlibfile VMDEBUG
  1025.  
  1026. % Define stubs for the Symbol and Dingbats encodings.
  1027. % Note that the first element of the procedure must be the file name,
  1028. % since gs_lev2.ps extracts it to set up the Encoding resource category.
  1029.  
  1030.   /SymbolEncoding { /SymbolEncoding .findencoding } bind def
  1031. %% Replace 3 (gs_sym_e.ps)
  1032.   EncodingDirectory /SymbolEncoding
  1033.    { (gs_sym_e.ps) //systemdict begin runlibfile SymbolEncoding end }
  1034.   bind put
  1035.  
  1036.   /DingbatsEncoding { /DingbatsEncoding .findencoding } bind def
  1037. %% Replace 3 (gs_dbt_e.ps)
  1038.   EncodingDirectory /DingbatsEncoding
  1039.    { (gs_dbt_e.ps) //systemdict begin runlibfile DingbatsEncoding end }
  1040.   bind put
  1041.  
  1042. (END FONTDIR/ENCS) VMDEBUG
  1043.  
  1044. % Construct a dictionary of all available devices.
  1045. % These are (read-only) device prototypes that can't be
  1046. % installed or have their parameters changed.  For this reason,
  1047. % the value in the dictionary is actually a 2-element writable array,
  1048. % to allow us to create a default instance of the prototype on demand.
  1049.  
  1050.     % Loop until the .getdevice gets a rangecheck.
  1051. errordict /rangecheck 2 copy get
  1052. errordict /rangecheck { pop stop } put    % pop the command
  1053.   0 { {dup .getdevice exch 1 add} loop} .internalstopped pop
  1054.   1 add dict  /devicedict 1 index def
  1055.   begin            % 2nd copy of count is on stack
  1056.    { dup .devicename exch
  1057.      dup wcheck { dup } { null } ifelse 2 array astore def
  1058.    } repeat
  1059.   end
  1060. put        % errordict /rangecheck
  1061. .clearerror
  1062. /devicenames devicedict { pop } forall devicedict length packedarray def
  1063.  
  1064. % Determine the default device.
  1065. /defaultdevice DISPLAYING
  1066.  { systemdict /DEVICE .knownget
  1067.     { devicedict 1 index known not
  1068.        { (Unknown device: ) print =
  1069.      flush /defaultdevice cvx 1 .quit
  1070.        }
  1071.       if
  1072.     }
  1073.     { 0 .getdevice .devicename
  1074.     }
  1075.    ifelse
  1076.  }
  1077.  { /nullpage
  1078.  }
  1079. ifelse
  1080. /.defaultdevicename 1 index def
  1081. finddevice    % make a copy
  1082. def
  1083. devicedict /Default devicedict .defaultdevicename get put
  1084.  
  1085. (END DEVS) VMDEBUG
  1086.  
  1087. % Define statusdict, for the benefit of programs
  1088. % that think they are running on a LaserWriter or similar printer.
  1089. %% Replace 1 (gs_statd.ps)
  1090. (gs_statd.ps) runlibfile
  1091.  
  1092. (END STATD) VMDEBUG
  1093.  
  1094. % Load the standard font environment.
  1095. %% Replace 1 (gs_fonts.ps)
  1096. (gs_fonts.ps) runlibfile
  1097.  
  1098. (END GS_FONTS) VMDEBUG
  1099.  
  1100. % Define the default halftone screen and BG/UCR functions now, so that
  1101. % it will bind in the original definitions of set[color]screen.
  1102. % We make this a procedure so we can call it again when switching devices.
  1103.  
  1104. % Use an ordered dither for low-resolution devices.
  1105. /.setloreshalftone {    % <dpi> .setloreshalftone -
  1106.     % The following 'ordered dither' spot function was contributed by
  1107.     % Gregg Townsend.  Thanks, Gregg!
  1108.    16.001 div 0            % not 16: avoids rounding problems
  1109.     { 1 add 7.9999 mul cvi exch 1 add 7.9999 mul cvi 16 mul add <
  1110.     0E 8E 2E AE 06 86 26 A6 0C 8C 2C AC 04 84 24 A4
  1111.     CE 4E EE 6E C6 46 E6 66 CC 4C EC 6C C4 44 E4 64
  1112.     3E BE 1E 9E 36 B6 16 96 3C BC 1C 9C 34 B4 14 94
  1113.     FE 7E DE 5E F6 76 D6 56 FC 7C DC 5C F4 74 D4 54
  1114.     01 81 21 A1 09 89 29 A9 03 83 23 A3 0B 8B 2B AB
  1115.     C1 41 E1 61 C9 49 E9 69 C3 43 E3 63 CB 4B EB 6B
  1116.     31 B1 11 91 39 B9 19 99 33 B3 13 93 3B BB 1B 9B
  1117.     F1 71 D1 51 F9 79 D9 59 F3 73 D3 53 FB 7B DB 5B
  1118.     0D 8D 2D AD 05 85 25 A5 0F 8F 2F AF 07 87 27 A7
  1119.     CD 4D ED 6D C5 45 E5 65 CF 4F EF 6F C7 47 E7 67
  1120.     3D BD 1D 9D 35 B5 15 95 3F BF 1F 9F 37 B7 17 97
  1121.     FD 7D DD 5D F5 75 D5 55 FF 7F DF 5F F7 77 D7 57
  1122.     02 82 22 A2 0A 8A 2A AA 00 80 20 A0 08 88 28 A8
  1123.     C2 42 E2 62 CA 4A EA 6A C0 40 E0 60 C8 48 E8 68
  1124.     32 B2 12 92 3A BA 1A 9A 30 B0 10 90 38 B8 18 98
  1125.     F2 72 D2 52 FA 7A DA 5A F0 70 D0 50 F8 78 D8 58
  1126.      > exch get 256 div
  1127.     }
  1128.    bind
  1129.         % Use correct, per-plane screens for CMYK devices only.
  1130.    //systemdict /setcolorscreen known processcolors 4 eq and
  1131.     { 3 copy 6 copy //setcolorscreen }
  1132.     { //setscreen }
  1133.    ifelse
  1134. } bind def
  1135. /.setloresscreen {    % <dpi> .setloresscreen -
  1136.   .setloreshalftone
  1137.   0 array cvx settransfer    % Genoa CET won't accept a packed array!
  1138.   /setstrokeadjust where { pop true setstrokeadjust } if
  1139. } bind def
  1140. % Use a 45-degree spot screen for high-resolution devices.
  1141. /.sethireshalftone {    % <dpi> .sethireshalftone <doscreen>
  1142.     % According to information published by Hewlett-Packard,
  1143.     % they use a 60 line screen on 300 DPI printers and
  1144.     % an 85 line screen on 600 DPI printers.
  1145.     % However, we use a 106 line screen, which produces smoother-
  1146.     % looking shades but fewer of them (32 vs. 50).
  1147.     % 46 was suggested as a good frequency value for printers
  1148.     % between 200 and 400 DPI, so we use it for lower resolutions.
  1149.     % Imagesetters need even higher frequency screens.
  1150.    //systemdict /DITHERPPI known
  1151.     { DITHERPPI
  1152.     }
  1153.     { dup cvi 100 idiv 15 .min
  1154.        {null 46 46 60 60 60 106 106 106 106 133 133 133 133 133 150}
  1155.       exch get
  1156.      }
  1157.    ifelse
  1158.    1 index 4.01 div .min    % at least a 4x4 cell
  1159.    45
  1160.     % The following screen algorithm is used by permission of the author.
  1161.     { 1 add 180 mul cos 1 0.08 add mul exch 2 add 180 mul cos 
  1162.       1 0.08 sub mul add 2 div % (C) 1989 Berthold K.P. Horn
  1163.     }
  1164.    bind
  1165.     % Determine whether we have lots of process colors.
  1166.     % If so, don't bother with color screening or gamma correction.
  1167.     % Also don't do gamma correction on very high-resolution devices.
  1168.     % (This should depend on dot gain, not resolution, but we don't
  1169.     % currently have a way to determine this.)
  1170.    currentdevice mark
  1171.      /RedValues 0 /GreenValues 0 /BlueValues 0 /GrayValues 0
  1172.    .dicttomark .getdeviceparams
  1173.    counttomark 2 idiv 1 sub { exch pop min } repeat
  1174.    exch pop exch pop 32 lt 4 index 800 lt and 5 1 roll
  1175.     % Stack: doscreen dpi freq angle proc
  1176.     % Ghostscript currently doesn't use correct, per-plane halftones
  1177.     % unless setcolorscreen has been executed.  Since these are
  1178.     % computationally much more expensive than binary halftones,
  1179.     % we check to make sure they are really warranted, i.e., we have
  1180.     % a high-resolution CMYK device (i.e., not a display) with
  1181.     % fewer than 5 bits per plane (i.e., not a true-color device).
  1182.    4 -1 roll 150 ge
  1183.     { /setcolorscreen where
  1184.        { pop //systemdict /COLORSCREEN known
  1185.       { COLORSCREEN }
  1186.       { 3 index }
  1187.      ifelse
  1188.      dup false ne
  1189.       { 4 1 roll 3 copy 6 copy 13 -1 roll
  1190.     % For really high-quality screening on printers, we need to
  1191.     % give each plane its own screen angle.  Unfortunately,
  1192.     % this currently has very large space and time costs.
  1193.         true eq        % true => different angles,
  1194.                 % 0 => same angles
  1195.          { { 45 90 15 75 } { 3 1 roll exch pop 12 3 roll } forall
  1196.          }
  1197.         if //setcolorscreen
  1198.       }
  1199.       { pop //setscreen    % false => single binary screen
  1200.       }
  1201.      ifelse
  1202.        }
  1203.        { //setscreen        % setcolorscreen not known
  1204.        }
  1205.       ifelse
  1206.     }
  1207.     { //setscreen            % not high resolution
  1208.     }
  1209.    ifelse
  1210. } bind def
  1211. /.sethiresscreen {    % <dpi> .sethiresscreen -
  1212.   .sethireshalftone
  1213.             % Stack: doscreen
  1214.     {    % Set the transfer function to lighten up the grays.
  1215.     % We correct at the high end so that very light grays
  1216.     % don't disappear completely if they darken <1 screen pixel.
  1217.     % Parameter values closer to 1 are better for devices with
  1218.     % less dot spreading; lower values are better with more spreading.
  1219.     % The value 0.8 is a compromise that will probably please no one!
  1220.     %
  1221.     % Because of a bug in FrameMaker, we have to accept operands
  1222.     % outside the valid range of [0..1].
  1223.       { dup dup 0.0 gt exch 1.0 lt and
  1224.      { 0.8 exp dup dup 0.9375 gt exch 0.999 lt and    % > 15/16
  1225.         { .currentscreenlevels 1 sub    % tweak to avoid boundary
  1226.           1 exch div 1 exch sub .min
  1227.         }
  1228.        if
  1229.      }
  1230.     if
  1231.       }
  1232.     }
  1233.     {    % Set the transfer function to the identity.
  1234.       0 array cvx        % Genoa CET won't accept a packed array!
  1235.     }
  1236.    ifelse settransfer
  1237.    /setstrokeadjust where { pop false setstrokeadjust } if
  1238.     % Increase fill adjustment so that we effectively use Adobe's
  1239.     % any-part-of-pixel rule.
  1240.    0.5 .setfilladjust
  1241. } bind def
  1242. % Set the default screen and BG/UCR.
  1243. /.setdefaultbgucr {
  1244.   systemdict /setblackgeneration known {
  1245.     { pop 0 } dup setblackgeneration setundercolorremoval
  1246.   } if
  1247. } bind def
  1248. /.useloresscreen {    % - .useloresscreen <bool>
  1249.     % Compute min(|dpi x|,|dpi y|) as the definition of the resolution.
  1250.   72 72 matrix defaultmatrix dtransform abs exch abs .min
  1251.   dup 150 lt //systemdict /DITHERPPI known not and
  1252. } bind def
  1253.  
  1254. % The following implementation uses LL2 extensions, but only in stopped
  1255. % contexts so that with LL1, the .set??reshalftone will be used.
  1256. %
  1257. %    - .getdefaulthalftone <halftonedict> true    if default found
  1258. %                  false            
  1259. /.getdefaulthalftone {
  1260.   % try the device to see if it has a default halftone
  1261.   { currentdevice /HalftoneDefault gsgetdeviceprop } stopped
  1262.   { pop pop false }        % no device property
  1263.   { dup type /dicttype eq { true } { pop false } ifelse }
  1264.   ifelse
  1265.   % stack: <halftonedict> true    if default found
  1266.   %         false          not found
  1267.   dup not
  1268.   { % device did not provide a default, try Resource
  1269.     pop { /Default /Halftone /findresource .systemvar exec } stopped 
  1270.     { pop pop false } { true } ifelse
  1271.   }
  1272.   if
  1273. } bind def
  1274.  
  1275. /.setdefaulthalftone {
  1276.   .getdefaulthalftone 
  1277.   { sethalftone }
  1278.   { % default not found
  1279.     .useloresscreen { .setloreshalftone } { .sethireshalftone pop } ifelse
  1280.   }
  1281.   ifelse
  1282. } bind def
  1283.  
  1284. /.setdefaultscreen {
  1285.   .useloresscreen { .setloresscreen } { .sethiresscreen } ifelse
  1286.   .setdefaultbgucr
  1287. } bind def
  1288.  
  1289. % Load the initialization files for optional features.
  1290. %% Replace 4 INITFILES
  1291. systemdict /INITFILES known
  1292.  { INITFILES { dup runlibfile VMDEBUG } forall
  1293.  }
  1294. if
  1295.  
  1296. % If Level 2 (or higher) functionality is implemented, enable it now.
  1297. /.setlanguagelevel where {
  1298.   pop 2 .setlanguagelevel
  1299.     % If the resource machinery is loaded, fix up some things now.
  1300.   /.fixresources where { pop .fixresources } if
  1301. } if
  1302. /ll3dict where {
  1303.   pop 3 .setlanguagelevel
  1304. } if
  1305.  
  1306. (END INITFILES) VMDEBUG
  1307.  
  1308. % Create a null font.  This is the initial font.
  1309. 8 dict dup begin
  1310.   /FontMatrix [ 1 0 0 1 0 0 ] readonly def
  1311.   /FontType 3 def
  1312.   /FontName () def
  1313.   /Encoding StandardEncoding def
  1314.   /FontBBox { 0 0 0 0 } readonly def % executable is bogus, but customary ...
  1315.   /BuildChar { pop pop 0 0 setcharwidth } bind def
  1316.   /PaintType 0 def        % shouldn't be needed!
  1317. end
  1318. /NullFont exch definefont setfont
  1319.  
  1320. % Define NullFont as the font.
  1321. /NullFont currentfont def
  1322.  
  1323. % Load initial fonts from FONTPATH directories, Fontmap file,
  1324. % and/or .getccfont as appropriate.
  1325. .loadinitialfonts
  1326.  
  1327. % Remove NullFont from FontDirectory, so it can't be accessed by mistake.
  1328. /undefinefont where {
  1329.   pop /NullFont undefinefont
  1330. } {
  1331.   FontDirectory /NullFont .undef
  1332. } ifelse
  1333.  
  1334. (END FONTS) VMDEBUG
  1335.  
  1336. % Restore the real definition of runlibfile.
  1337. /runlibfile /.runlibfile load def
  1338. currentdict /.runlibfile .undef
  1339.  
  1340. % Bind all the operators defined as procedures.
  1341. /.bindoperators        % binds operators in currentdict
  1342.  { % Temporarily disable the typecheck error.
  1343.    errordict /typecheck 2 copy get
  1344.    errordict /typecheck { pop } put    % pop the command
  1345.    currentdict
  1346.     { dup type /operatortype eq
  1347.        { % This might be a real operator, so bind might cause a typecheck,
  1348.      % but we've made the error a no-op temporarily.
  1349.      .bind        % do a real bind even if NOBIND is set
  1350.        }
  1351.       if pop pop
  1352.     } forall
  1353.    put
  1354.  } def
  1355. NOBIND DELAYBIND or not { .bindoperators } if
  1356.  
  1357. % Establish a default environment.
  1358.  
  1359. defaultdevice
  1360. % The following line used to skip setting of page size and resolution if
  1361. % NODISPLAY was selected.  We think this was only to save time and memory,
  1362. % and it is a bad idea because it prevents setting the resolution in this
  1363. % situation, which pstoedit (among other programs) relies on.
  1364. %DISPLAYING not { setdevice (%END DISPLAYING) .skipeof } if
  1365. systemdict /DEVICEWIDTH known
  1366. systemdict /DEVICEHEIGHT known or
  1367. systemdict /DEVICEWIDTHPOINTS known or
  1368. systemdict /DEVICEHEIGHTPOINTS known or
  1369. systemdict /DEVICEXRESOLUTION known or
  1370. systemdict /DEVICEYRESOLUTION known or
  1371. systemdict /PAPERSIZE known or
  1372. not { (%END DEVICE) .skipeof } if
  1373. % Let DEVICE{WIDTH,HEIGHT}[POINTS] override PAPERSIZE.
  1374. systemdict /PAPERSIZE known
  1375. systemdict /DEVICEWIDTH known not and
  1376. systemdict /DEVICEHEIGHT known not and
  1377. systemdict /DEVICEWIDTHPOINTS known not and
  1378. systemdict /DEVICEHEIGHTPOINTS known not and
  1379.  {    % Convert the paper size to device dimensions.
  1380.    true statusdict /.pagetypenames get
  1381.     { PAPERSIZE eq
  1382.        { PAPERSIZE load
  1383.          dup 0 get /DEVICEWIDTHPOINTS exch def
  1384.          1 get /DEVICEHEIGHTPOINTS exch def
  1385.          pop false exit
  1386.        }
  1387.       if
  1388.     }
  1389.    forall
  1390.     { (Unknown paper size: ) print PAPERSIZE ==only (.) =
  1391.     }
  1392.    if
  1393.  }
  1394. if
  1395. % Adjust the device parameters per the command line.
  1396. % It is possible to specify resolution, pixel size, and page size;
  1397. % since any two of these determine the third, conflicts are possible.
  1398. % We simply pass them to .setdeviceparams and let it sort things out.
  1399.    mark /HWResolution null /HWSize null /PageSize null .dicttomark
  1400.    .getdeviceparams .dicttomark begin
  1401.    mark
  1402.     % Check for resolution.
  1403.    /DEVICEXRESOLUTION where dup
  1404.     { exch pop HWResolution 0 DEVICEXRESOLUTION put }
  1405.    if
  1406.    /DEVICEYRESOLUTION where dup
  1407.     { exch pop HWResolution 1 DEVICEYRESOLUTION put }
  1408.    if
  1409.    or { /HWResolution HWResolution } if
  1410.     % Check for device sizes specified in pixels.
  1411.    /DEVICEWIDTH where dup
  1412.     { exch pop HWSize 0 DEVICEWIDTH put }
  1413.    if
  1414.    /DEVICEHEIGHT where dup
  1415.     { exch pop HWSize 1 DEVICEHEIGHT put }
  1416.    if
  1417.    or { /HWSize HWSize } if
  1418.     % Check for device sizes specified in points.
  1419.    /DEVICEWIDTHPOINTS where dup
  1420.     { exch pop PageSize 0 DEVICEWIDTHPOINTS put }
  1421.    if
  1422.    /DEVICEHEIGHTPOINTS where dup
  1423.     { exch pop PageSize 1 DEVICEHEIGHTPOINTS put }
  1424.    if
  1425.    or { /PageSize PageSize } if
  1426.     % Check whether any parameters were set.
  1427.    dup mark eq { pop } { defaultdevice putdeviceprops } ifelse
  1428.    end
  1429. %END DEVICE
  1430. % Set any device properties defined on the command line.
  1431. % If BufferSpace is defined but not MaxBitmap, set MaxBitmap to BufferSpace.
  1432. systemdict /BufferSpace known
  1433. systemdict /MaxBitmap known not and
  1434.  { systemdict /MaxBitmap BufferSpace put
  1435.  } if
  1436. dup getdeviceprops
  1437. counttomark 2 idiv
  1438.  { systemdict 2 index known
  1439.     { pop dup load counttomark 2 roll }
  1440.     { pop pop }
  1441.    ifelse
  1442.  } repeat
  1443. counttomark dup 0 ne
  1444.  { 2 add -1 roll putdeviceprops }
  1445.  { pop pop }
  1446. ifelse
  1447. % If the initial device parameters are invalid, the setdevice may fail.
  1448. % Trap this and produce a reasonable error message.
  1449. { setdevice }        % does an erasepage
  1450. DEBUG { exec false } { .internalstopped } ifelse {
  1451.   (**** Unable to open the initial device, quitting.) = 1 .quit
  1452. } if
  1453.  
  1454. % If the media size is fixed, update the current page device dictionary.
  1455. FIXEDMEDIA
  1456. dup { pop systemdict /.currentpagedevice known } if
  1457. dup { pop .currentpagedevice exch pop } if
  1458. not { (%END MEDIA) .skipeof } if
  1459. currentpagedevice dup length dict .copydict
  1460. dup /Policies
  1461.     % Stack: <pagedevice> <pagedevice> /Policies
  1462. 1 index /InputAttributes
  1463. 2 copy get dup length dict .copydict
  1464.     % Stack: <pagedevice> <pagedevice> /Policies <pagedevice>
  1465.     %   /InputAttributes <inputattrs'>
  1466. dup 0 2 copy get dup length dict .copydict
  1467.     % Stack: <pagedevice> <pagedevice> /Policies <pagedevice>
  1468.     %   /InputAttributes <inputattrs'> <inputattrs'> 0 <attrs0'>
  1469. dup /PageSize 7 index /PageSize get
  1470. put                % PageSize in 0
  1471. put                % 0 in InputAttributes
  1472. put                % InputAttributes in pagedevice
  1473. % Also change the page size policy so we don't get an error.
  1474.     % Stack: <pagedevice> <pagedevice> /Policies
  1475. 2 copy get dup length dict .copydict
  1476.     % Stack: <pagedevice> <pagedevice> /Policies <policies'>
  1477. dup /PageSize 7 put        % PageSize in Policies
  1478. put                % Policies in pagedevice
  1479. .setpagedevice
  1480. %END MEDIA
  1481. %END DISPLAYING
  1482.  
  1483. (END DEVICE) VMDEBUG
  1484.  
  1485. % Establish a default upper limit in the character cache,
  1486. % namely, enough room for a 18-point character at the resolution
  1487. % of the default device, or for a character consuming 1% of the
  1488. % maximum cache size, whichever is larger.
  1489. mark
  1490.     % Compute limit based on character size.
  1491.   18 dup dtransform
  1492.   exch abs cvi 31 add 32 idiv 4 mul    % X raster
  1493.   exch abs cvi mul        % Y
  1494.     % Compute limit based on allocated space.
  1495.   cachestatus pop pop pop pop pop exch pop 0.01 mul cvi
  1496.   .max dup 10 idiv exch
  1497. setcacheparams
  1498. % Conditionally disable the character cache.
  1499. NOCACHE { 0 setcachelimit } if
  1500.  
  1501. (END CONFIG) VMDEBUG
  1502.  
  1503. % Initialize graphics.
  1504.  
  1505. .setdefaultscreen
  1506. initgraphics
  1507.  
  1508. % The interpreter relies on there being at least 2 entries
  1509. % on the graphics stack.  Establish the second one now.
  1510. gsave
  1511.  
  1512. % Define some control sequences as no-ops.
  1513. % This is a hack to get around problems
  1514. % in some common PostScript-generating applications.
  1515. <04> cvn { } def        % Apple job separator
  1516. <0404> cvn { } def        % two of the same
  1517. <1b> cvn { } def        % MS Windows LaserJet 4 prologue
  1518.                 % (UEL = ESC %-12345X)
  1519. <1b45> cvn { } def        % PJL reset prologue (ESC E)
  1520. <1b451b> cvn { } def        % PJL reset epilogue (ESC E + UEL)
  1521. <041b> cvn { } def        % MS Windows LaserJet 4 epilogue (^D + UEL)
  1522. (\001M) cvn            % TBCP initiator
  1523.  { currentfile /TBCPDecode filter cvx exec
  1524.  } bind def
  1525. /@PJL                % H-P job control
  1526.  { currentfile //=string readline { pop } if
  1527.  } bind def
  1528.  
  1529. % If we want a "safer" system, disable some obvious ways to cause havoc.
  1530. SAFER not { (%END SAFER) .skipeof } if
  1531. /file
  1532.  { dup (r) eq 2 index (%pipe*) .stringmatch not and
  1533.    2 index (%std*) .stringmatch or
  1534.     { file }
  1535.     { /invalidfileaccess signalerror }
  1536.    ifelse
  1537.  } .bind odef
  1538. /renamefile { /invalidfileaccess signalerror } odef
  1539. /deletefile { /invalidfileaccess signalerror } odef
  1540. /putdeviceprops
  1541.  { counttomark
  1542.    dup 2 mod 0 eq { pop /rangecheck signalerror } if
  1543.    3 2 3 2 roll
  1544.     { dup index /OutputFile eq  
  1545.        { -2 roll 
  1546.          dup () ne { /putdeviceprops load /invalidfileaccess signalerror } if
  1547.          3 -1 roll
  1548.        }
  1549.        { pop
  1550.        }
  1551.       ifelse
  1552.     } for
  1553.    putdeviceprops
  1554.  } .bind odef
  1555.  
  1556. %END SAFER
  1557.  
  1558. % If we delayed binding, make it possible to do it later.
  1559. /.bindnow {
  1560.   //systemdict begin .bindoperators end
  1561.   % Temporarily disable the typecheck error.
  1562.   errordict /typecheck 2 copy get
  1563.   errordict /typecheck { pop } put    % pop the command
  1564.   0 1 .delaycount 1 sub { .delaybind exch get .bind pop } for
  1565.   //systemdict /.delaybind {} .forceput    % reclaim the space
  1566.   //systemdict /.bindnow .forceundef    % ditto
  1567.   put
  1568.   //systemdict /.forcedef .forceundef        % remove temptation
  1569.   //systemdict /.forceput .forceundef        % ditto
  1570.   //systemdict /.forceundef .forceundef        % ditto
  1571. } .bind odef
  1572.  
  1573. % Turn off array packing, since some PostScript code assumes that
  1574. % procedures are writable.
  1575. false setpacking
  1576.  
  1577. (END INIT) VMDEBUG
  1578.  
  1579. /.currentuserparams where {
  1580.   pop
  1581.     % Remove real user params from psuserparams.
  1582.   mark .currentuserparams counttomark 2 idiv {
  1583.     pop psuserparams exch undef
  1584.   } repeat pop
  1585.     % Update the copy of the user parameters.
  1586.   mark .currentuserparams counttomark 2 idiv {
  1587.     userparams 3 1 roll .forceput    % userparams is read-only
  1588.   } repeat pop
  1589.     % Turn on idiom recognition, if available.
  1590.   currentuserparams /IdiomRecognition known {
  1591.     /IdiomRecognition true .definepsuserparam
  1592.   } if
  1593.   psuserparams readonly pop
  1594.   systemdict /.definepsuserparam undef
  1595.     % Save a copy of userparams for use with save/restore
  1596.     % (and, if implemented, context switching).
  1597.   .currentglobal false .setglobal
  1598.      mark userparams { } forall .dicttomark readonly
  1599.      /userparams exch .forcedef        % systemdict is read-only
  1600.   .setglobal
  1601. } if
  1602. /.currentsystemparams where {
  1603.   pop
  1604.     % Remove real system params from pssystemparams.
  1605.   mark .currentsystemparams counttomark 2 idiv {
  1606.     pop pssystemparams exch .forceundef
  1607.   } repeat pop
  1608. } if
  1609.  
  1610. % Conditionally turn image interpolation on or off.
  1611. currentdict /INTERPOLATE known not { (%END INTERPOLATE) .skipeof } if
  1612. /.interpolate {
  1613.   dup /Interpolate .knownget not { false } if
  1614.   /INTERPOLATE .systemvar ne {
  1615.     dup gcheck .currentglobal exch .setglobal
  1616.     exch dup length dict copy
  1617.     dup /Interpolate /INTERPOLATE .systemvar put
  1618.     exch .setglobal
  1619.   } if
  1620. } bind odef
  1621. /image {
  1622.   dup type /dicttype eq {
  1623.     .interpolate image
  1624.   } {
  1625.     /INTERPOLATE .systemvar {
  1626.       8 dict begin
  1627.       /ImageType 1 def
  1628.       /DataSource 1 index def
  1629.       /ImageMatrix 2 index def
  1630.       /BitsPerComponent 3 index def
  1631.       /Decode {0 1} def
  1632.       /Height 4 index def
  1633.       /Width 5 index def
  1634.       /Interpolate true def
  1635.       currentdict end
  1636.       gsave /DeviceGray setcolorspace image grestore
  1637.       5 { pop } repeat
  1638.     } {
  1639.       image
  1640.     } ifelse
  1641.   } ifelse
  1642. } bind odef
  1643. /imagemask {
  1644.   dup type /dicttype eq {
  1645.     .interpolate imagemask
  1646.   } {
  1647.     /INTERPOLATE .systemvar {
  1648.       8 dict begin
  1649.       /ImageType 1 def
  1650.       /DataSource 1 index def
  1651.       /ImageMatrix 2 index def
  1652.       /BitsPerComponent 1 def
  1653.       2 index { {1 0} } { {0 1} } ifelse /Decode exch def
  1654.       /Height 4 index def
  1655.       /Width 5 index def
  1656.       /Interpolate true def
  1657.       currentdict end imagemask 5 { pop } repeat
  1658.     } {
  1659.       imagemask
  1660.     } ifelse
  1661.   } ifelse
  1662. } bind odef
  1663. %END INTERPOLATE
  1664.  
  1665. % Establish local VM as the default.
  1666. false /setglobal where { pop setglobal } { .setglobal } ifelse
  1667. $error /.nosetlocal false put
  1668.  
  1669. (END GLOBAL) VMDEBUG
  1670.  
  1671. /.savelocalstate where {
  1672.     % If we might create new contexts, save away copies of all dictionaries
  1673.     % referenced from systemdict that are stored in local VM,
  1674.     % and also save a copy of the initial gstate.
  1675.   pop .savelocalstate
  1676. } {
  1677.     % If we're *not* running in a multi-context system and FAKEFONTS is
  1678.     % defined, add the fake fonts to LocalFontDirectory.
  1679.   .definefakefonts    % current VM is local
  1680. } ifelse
  1681.  
  1682. % Remove systemdict entries for things that have been bound in where used
  1683. % and that shouldn't be accessible by name, and close up systemdict.
  1684. currentdict /filterdict .undef
  1685. currentdict /.cidfonttypes .undef
  1686. currentdict /.colorrenderingtypes .undef
  1687. currentdict /.formtypes .undef
  1688. currentdict /.halftonetypes .undef
  1689. currentdict /.imagetypes .undef
  1690. currentdict /.imagemasktypes .undef
  1691. currentdict /.patterntypes .undef
  1692. currentdict /.shadingtypes .undef
  1693. currentdict /.wheredict .undef
  1694. end
  1695.  
  1696. % Clean up VM, and enable GC.
  1697. /vmreclaim where
  1698.  { pop NOGC not { 2 vmreclaim 0 vmreclaim } if
  1699.  } if
  1700. DELAYBIND not {
  1701.   systemdict /.forcedef .undef        % remove temptation
  1702.   systemdict /.forceput .undef        % ditto
  1703.   systemdict /.forceundef .undef    % ditto
  1704. } if
  1705. WRITESYSTEMDICT not { systemdict readonly pop } if
  1706.  
  1707. (END GC) VMDEBUG
  1708.  
  1709. % The interpreter will run the initial procedure (start).
  1710.