]> git.donarmstrong.com Git - lilypond.git/blob - lily/paper-def.cc
*** empty log message ***
[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--2003 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);
107     }
108   else
109     {
110       SCM scale_var = ly_module_lookup (scope_, ly_symbol2scm ("outputscale"));
111
112       m /= gh_scm2double (scm_variable_ref (scale_var));
113
114       f = all_fonts_global->find_font (ly_scm2string (fn));
115       SCM val = Scaled_font_metric::make_scaled_font_metric (f, m);
116       scaled_fonts_ = scm_acons (key, val, scaled_fonts_);
117       f = unsmob_metrics (val);
118       scm_gc_unprotect_object (val);
119     }
120
121   return f;
122 }
123
124
125 /*
126   Return alist to translate internally used fonts back to real-world
127   coordinates.  */
128 SCM
129 Paper_def::font_descriptions ()const
130 {
131   SCM l = SCM_EOL;
132   for (SCM s = scaled_fonts_; gh_pair_p (s); s = ly_cdr (s))
133     {
134       SCM desc = ly_caar (s);
135       SCM mdesc = unsmob_metrics (ly_cdar (s))->description_;
136
137       l = gh_cons (gh_cons (mdesc, desc), l);
138     }
139   return l;
140 }
141
142 Paper_def* 
143 unsmob_paper (SCM x)
144 {
145   return dynamic_cast<Paper_def*> (unsmob_music_output_def (x));
146 }
147
148