]> git.donarmstrong.com Git - lilypond.git/blobdiff - ps/lilyponddefs.ps
* lily/font-select.cc (properties_to_font_size_family): Fix
[lilypond.git] / ps / lilyponddefs.ps
index ebde4b6a1b1e76fed1866c606bd296a7618494a0..ff80432b9f8697e6b6d73acfa2ca6f6d8b12c1db 100644 (file)
@@ -1,11 +1,14 @@
-%!PS-Adobe-1.0: lilyponddefs
+%!PS-Adobe-1.0: lilyponddefs.ps
 %
 % Functions for direct PostScript output
 
 % hmm
 % /setgray { 1 add } bind def
 
-/staff-line-thickness lilypondpaperstafflinethickness def
+% To let gs load fonts from builddir, do:
+% export GS_LIB=$(pwd)/mf/out:/usr/share/texmf/fonts/type1/bluesky/cm
+
+/staff-line-thickness lilypondpaperlinethickness def
 /staff-height lilypondpaperstaffheight def
 /line-width lilypondpaperlinewidth def
 
@@ -26,10 +29,9 @@ output-scale output-scale scale
 
 /paper-size { lilypondpaperpapersize } bind def
 
-% FIXME
-% urg, read from paper block
-% fixed base line skip value, for single line staves
-/base-line-skip lilypondpaperlineheight def
+%% FIXME: base-line-skip is too big, is this RIGHT?
+%% /base-line-skip lilypondpaperlineheight def
+/base-line-skip lilypondpaperlineheight lilypondpaperoutputscale div def
 
 /init-paper {
        gsave
@@ -40,7 +42,8 @@ output-scale output-scale scale
 
        %FIXME:
        %vsize text-height sub 2 div /top-margin exch def
-       144 2 div /top-margin exch def
+       % 144 2 div /top-margin exch def
+       /top-margin 100 def
        hsize line-width sub 2 div /left-margin exch def
        grestore
 } bind def
@@ -56,7 +59,33 @@ output-scale output-scale scale
        grestore
 } bind def
 
-/start-line % height
+%% http://bibliofile.mc.duke.edu/gww/fonts/postscript-utilities/encoding-vectors.html
+
+%/FONTLENGTH 256 bind def
+
+%<font> <encoding> <name> reencode-font
+/reencode-dict 5 dict def
+/reencode-font
+{
+    reencode-dict
+    begin
+    /name exch def
+    /encoding exch def
+    /base-font exch def
+    % note: Needs ps level 2
+    /font base-font maxlength dict def
+    base-font {
+        exch dup dup /FID ne exch /Encoding ne and
+        { exch font 3 1 roll put }
+        { pop pop } ifelse
+    } forall
+    font /FontName name put
+    font /Encoding encoding put
+    name font definefont pop
+    end
+} bind def
+
+/start-system % height
 {
        dup base-line-skip gt {
                /line-height exch def
@@ -72,7 +101,7 @@ output-scale output-scale scale
        line-x line-y translate
 } bind def
 
-/stop-line
+/stop-system
 { 
        /the-line exch def
        the-line
@@ -217,7 +246,10 @@ staff-height init-paper
 /line-x left-margin output-scale div def
 /line-y vsize top-margin sub def
 
-make-lilypond-title
+% FIXME: testing \markup titles
+% make-lilypond-title
 
 % see if we're there...
 % 10 setlinewidth 0 0 moveto 400 800 lineto stroke
+
+% end lilyponddefs.ps