]> git.donarmstrong.com Git - lilypond.git/blob - lily/key-item.cc
46ad565f5044ef075a3e8623470e1f0e835f1fde
[lilypond.git] / lily / key-item.cc
1 /*
2   key-item.cc -- implement Key_item
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1996--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7
8   keyplacement by Mats Bengtsson
9 */
10
11 #include "group-interface.hh" 
12 #include "key-item.hh"
13 #include "molecule.hh"
14 #include "paper-def.hh"
15 #include "lookup.hh"
16 #include "staff-symbol-referencer.hh"
17
18 Key_item::Key_item (SCM s)
19   : Item (s)
20 {
21   set_elt_property ("c0-position", gh_int2scm (0));
22 }
23
24
25 /*
26   FIXME: too much hardcoding here.
27  */
28 const int FLAT_TOP_PITCH=2; /* fes,ges,as and bes typeset in lower octave */
29 const int SHARP_TOP_PITCH=4; /*  ais and bis typeset in lower octave */
30
31
32 /*
33   FIXME: key-item should just get a list of (position, acc), and leave
34   the thinking to other parties.
35  */
36 int
37 Key_item::calculate_position(SCM pair) const
38 {
39   int p = gh_scm2int (gh_car (pair));
40   int a = gh_scm2int (gh_cdr (pair));  
41   
42   if (to_boolean (get_elt_property ("multi-octave")))
43     {
44       return p + gh_scm2int (get_elt_property ("c0-position"));
45     }
46   else {
47     // Find the c in the range -4 through 2
48     int from_bottom_pos = gh_scm2int (get_elt_property ("c0-position")) + 4;
49     from_bottom_pos = from_bottom_pos%7;
50     from_bottom_pos = (from_bottom_pos + 7)%7; // Precaution to get positive.
51     int c0 = from_bottom_pos - 4;
52
53     
54     if ((a<0 && ((p>FLAT_TOP_PITCH) || (p+c0>4)) && (p+c0>1)) 
55         ||
56         (a>0 && ((p>SHARP_TOP_PITCH) || (p+c0>5)) && (p+c0>2))) 
57       {
58         p -= 7; /* Typeset below c_position */
59       }
60     /* Provide for the four cases in which there's a glitch 
61        it's a hack, but probably not worth  
62        the effort of finding a nicer solution.
63        --dl. */
64     if (c0==2 && a>0 && p==3)
65       p -= 7;
66     if (c0==-3 && a>0 && p==-1)
67       p += 7;
68     if (c0==-4 && a<0 && p==-1)
69       p += 7;
70     if (c0==-2 && a<0 && p==-3)
71       p += 7;
72     
73     return p + c0;
74   }
75 }
76
77 MAKE_SCHEME_SCORE_ELEMENT_CALLBACKS(Key_item)
78
79 /*
80   TODO
81   - space the `natural' signs wider
82  */
83 Molecule 
84 Key_item::do_brew_molecule () const
85 {
86   Molecule mol;
87
88   Staff_symbol_referencer_interface si (this);
89   Real inter = si.staff_space ()/2.0;
90   
91   SCM newas = get_elt_property ("new-accidentals");  
92
93   /*
94     SCM lists are stacks, so we work from right to left, ending with
95     the cancellation signature.
96   */
97   for (SCM s = newas; gh_pair_p (s); s = gh_cdr (s))
98     {
99       int a = gh_scm2int (gh_cdar (s));
100       Molecule m = lookup_l ()->afm_find ("accidentals-" + to_str (a));
101       m.translate_axis (calculate_position(gh_car (s)) * inter, Y_AXIS);
102       mol.add_at_edge (X_AXIS, LEFT, m, 0);
103     }
104   
105   if (break_status_dir () != RIGHT)
106     {
107       SCM old = get_elt_property ("old-accidentals");
108       /*
109         Add half a space between  cancellation and key sig.
110
111         As suggested by [Ross], p.148.
112        */
113       Interval x(0, inter);
114       Interval y(0,0);
115
116       mol.add_at_edge (X_AXIS, LEFT, lookup_l()->blank (Box(x,y)),0);
117       
118       for (; gh_pair_p (old); old = gh_cdr (old))
119         {
120           SCM found = SCM_EOL;
121
122           /*
123             find correspondences in pitches 
124            */
125           for (SCM s = newas; gh_pair_p (s); s = gh_cdr (s))
126             if (gh_caar(s) == gh_caar (old))
127               found  = gh_car (s);
128                 
129           if (found == SCM_EOL || gh_cdr (found) != gh_cdar (old))
130             {
131               Molecule m =lookup_l ()->afm_find ("accidentals-0");
132
133               m.translate_axis (calculate_position(gh_car(old)) * inter, Y_AXIS);
134               mol.add_at_edge (X_AXIS, LEFT, m,0);      
135             }
136         }
137
138
139     }
140  
141
142   return mol;
143 }
144
145
146
147