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