]> git.donarmstrong.com Git - lilypond.git/blob - lily/paper-def.cc
* input/test/piano-staff-distance.ly: new file.
[lilypond.git] / lily / paper-def.cc
1 /*
2   paper-def.cc -- implement Paper_def
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1997--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9
10 #include <math.h>
11
12 #include "virtual-font-metric.hh"
13 #include "all-font-metrics.hh"
14 #include "string.hh"
15 #include "misc.hh"
16 #include "paper-def.hh"
17 #include "warn.hh"
18 #include "scaled-font-metric.hh"
19 #include "main.hh"
20 #include "scm-hash.hh"
21 #include "input-file-results.hh" // urg? header_global
22 #include "paper-outputter.hh"
23 #include "ly-modules.hh"
24
25 /*
26   This is an almost empty thing. The only substantial thing this class
27   handles, is scaling up and down to real-world dimensions (internally
28   dimensions are against global staff-space.)
29   
30  */
31 Paper_def::Paper_def ()
32 {
33 }
34
35 Paper_def::~Paper_def ()
36 {
37 }
38
39 Paper_def::Paper_def (Paper_def const&src)
40   : Music_output_def (src)
41 {
42 }
43
44
45
46 Real
47 Paper_def::get_realvar (SCM s) const
48 {
49   SCM val = lookup_variable (s);
50   SCM scale = lookup_variable (ly_symbol2scm ("outputscale"));
51   
52   Real sc = gh_scm2double (scale);
53   return gh_scm2double (val) / sc;
54 }
55
56 /*
57   FIXME. This is broken until we have a generic way of
58   putting lists inside the \paper block.
59  */
60 Interval
61 Paper_def::line_dimensions_int (int n) const
62 {
63   Real lw =  get_realvar (ly_symbol2scm ("linewidth"));
64   Real ind = n? 0.0:get_realvar (ly_symbol2scm ("indent"));
65
66   return Interval (ind, lw);
67 }
68
69
70
71
72 Paper_outputter*
73 Paper_def::get_paper_outputter (String outname)  const
74 {
75   progress_indication (_f ("paper output to `%s'...",
76                            outname == "-" ? String ("<stdout>") : outname));
77
78   global_input_file->target_strings_.push (outname);
79   Paper_outputter * po = new Paper_outputter (outname);
80   Path p = split_path (outname);
81   p.ext = "";
82   po->basename_ = p.to_string ();
83   return po;
84 }
85
86
87 /*
88   Todo: use symbols and hashtable idx?
89 */
90 Font_metric *
91 Paper_def::find_font (SCM fn, Real m)
92 {
93   SCM key = gh_cons (fn, gh_double2scm (m));
94   SCM met = scm_assoc (key, scaled_fonts_);
95
96   if (gh_pair_p (met))
97     return unsmob_metrics (ly_cdr (met));
98
99   /*
100     Hmm. We're chaining font - metrics. Should consider wether to merge
101     virtual-font and scaled_font.
102    */
103   Font_metric*  f=0;
104   if (gh_list_p (fn))
105     {
106       f = new Virtual_font_metric (fn, m, this); // TODO: GC protection.
107       
108       scaled_fonts_ = scm_acons (key, f->self_scm (), scaled_fonts_);
109       scm_gc_unprotect_object (f->self_scm ());
110     }
111   else
112     {
113       SCM scale_var = ly_module_lookup (scope_, ly_symbol2scm ("outputscale"));
114
115       m /= gh_scm2double (scm_variable_ref (scale_var));
116
117       f = all_fonts_global->find_font (ly_scm2string (fn));
118       SCM val = Scaled_font_metric::make_scaled_font_metric (f, m);
119       scaled_fonts_ = scm_acons (key, val, scaled_fonts_);
120       scm_gc_unprotect_object (val);
121       
122       f = unsmob_metrics (val);
123     }
124
125   return f;
126 }
127
128
129 /*
130   Return alist to translate internally used fonts back to real-world
131   coordinates.  */
132 SCM
133 Paper_def::font_descriptions ()const
134 {
135   SCM l = SCM_EOL;
136   for (SCM s = scaled_fonts_; gh_pair_p (s); s = ly_cdr (s))
137     {
138       SCM desc = ly_caar (s);
139       if (!gh_string_p (gh_car (desc)))
140         continue ;
141
142       SCM mdesc = unsmob_metrics (ly_cdar (s))->description_;
143
144       l = gh_cons (gh_cons (mdesc, desc), l);
145     }
146   return l;
147 }
148
149 Paper_def* 
150 unsmob_paper (SCM x)
151 {
152   return dynamic_cast<Paper_def*> (unsmob_music_output_def (x));
153 }
154
155