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