]> git.donarmstrong.com Git - lilypond.git/blob - ly/declarations-init.ly
Use call-after-session to clear out hashes per session at an obvious place.
[lilypond.git] / ly / declarations-init.ly
1 %%%% This file is part of LilyPond, the GNU music typesetter.
2 %%%%
3 %%%% Copyright (C) 1996--2012 Han-Wen Nienhuys <hanwen@xs4all.nl>
4 %%%%                          Jan Nieuwenhuizen <janneke@gnu.org>
5 %%%%
6 %%%% LilyPond is free software: you can redistribute it and/or modify
7 %%%% it under the terms of the GNU General Public License as published by
8 %%%% the Free Software Foundation, either version 3 of the License, or
9 %%%% (at your option) any later version.
10 %%%%
11 %%%% LilyPond is distributed in the hope that it will be useful,
12 %%%% but WITHOUT ANY WARRANTY; without even the implied warranty of
13 %%%% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 %%%% GNU General Public License for more details.
15 %%%%
16 %%%% You should have received a copy of the GNU General Public License
17 %%%% along with LilyPond.  If not, see <http://www.gnu.org/licenses/>.
18
19 \version "2.17.6"
20
21 %% named durations
22 breve = #(ly:make-duration -1 0)
23 longa = #(ly:make-duration -2 0)
24 maxima = #(ly:make-duration -3 0)
25
26 \include "music-functions-init.ly"
27 \include "toc-init.ly"
28
29 %% default note names are dutch
30 #(set! default-language "nederlands")
31 #(note-names-language parser default-language)
32
33 \include "drumpitch-init.ly"
34 \include "chord-modifiers-init.ly"
35 \include "script-init.ly"
36
37 \include "chord-repetition-init.ly"
38
39 #(define default-fret-table (make-hash-table 101))
40 #(define chord-shape-table (make-hash-table 29))
41 #(call-after-session
42   (lambda ()
43    (hash-clear! default-fret-table)
44    (hash-clear! chord-shape-table)))
45
46 % declarations for standard directions
47 left = #-1
48 right = #1
49 up = #1
50 down = #-1
51 start = #-1
52 stop = #1
53 smaller = #-1
54 bigger = #1
55 center = #0
56
57 %% FIXME
58 %% should also set \override Beam.breakable, but how to do it "portably"? (ie. also
59 %% working with lyric sections)
60 %%
61 %% try \once \override Score.Beam.breakable = ##t
62
63 %% rather name \newline, \pageBreak ?
64 break = #(make-music 'LineBreakEvent 'break-permission 'force)
65 noBreak = #(make-music 'LineBreakEvent 'break-permission '())
66 %% \pageBreak, \noPageBreak, \pageTurn, \noPageTurn, \allowPageTurn are defined
67 %% as music functions
68
69 stopStaff = #(make-span-event 'StaffSpanEvent STOP)
70 startStaff = #(make-span-event 'StaffSpanEvent START)
71
72
73 %
74 % Code articulation definitions
75 %
76 noBeam = #(make-music 'BeamForbidEvent)
77 pipeSymbol = #(make-music 'BarCheck)
78 bracketOpenSymbol = #(make-span-event 'BeamEvent START)
79 bracketCloseSymbol = #(make-span-event 'BeamEvent STOP)
80 tildeSymbol = #(make-music 'TieEvent)
81 parenthesisOpenSymbol =  #(make-span-event 'SlurEvent START)
82 parenthesisCloseSymbol = #(make-span-event 'SlurEvent STOP)
83 escapedExclamationSymbol = #(make-span-event 'CrescendoEvent STOP)
84 escapedParenthesisOpenSymbol = #(make-span-event 'PhrasingSlurEvent START)
85 escapedParenthesisCloseSymbol = #(make-span-event 'PhrasingSlurEvent STOP)
86 escapedBiggerSymbol = #(make-span-event 'DecrescendoEvent START)
87 escapedSmallerSymbol = #(make-span-event 'CrescendoEvent START)
88
89
90 \include "scale-definitions-init.ly"
91
92 melisma = #(context-spec-music (make-property-set 'melismaBusy #t) 'Bottom)
93 melismaEnd = #(context-spec-music (make-property-unset 'melismaBusy) 'Bottom)
94
95 laissezVibrer = #(make-music 'LaissezVibrerEvent)
96 repeatTie = #(make-music 'RepeatTieEvent)
97
98 \include "dynamic-scripts-init.ly"
99 \include "spanners-init.ly"
100
101 %% MAKE-HASH-TABLE in GUILE 1.6 takes mandatory size parameter.
102 #(define musicQuotes (make-hash-table 29))
103 #(call-after-session
104   (lambda ()
105    (hash-clear! musicQuotes)))
106
107 #(define toplevel-book-handler print-book-with-defaults)
108 #(define toplevel-bookpart-handler collect-bookpart-for-book)
109 #(define toplevel-music-handler collect-music-for-book)
110 #(define toplevel-score-handler collect-scores-for-book)
111 #(define toplevel-text-handler collect-scores-for-book)
112
113 #(define book-bookpart-handler ly:book-add-bookpart!)
114 #(define book-music-handler collect-book-music-for-book)
115 #(define book-score-handler ly:book-add-score!)
116 #(define book-text-handler ly:book-add-score!)
117
118 #(define bookpart-score-handler ly:book-add-score!)
119 #(define bookpart-text-handler ly:book-add-score!)
120 #(define bookpart-music-handler collect-book-music-for-book)
121 #(define output-def-music-handler context-defs-from-music)
122 #(define context-mod-music-handler context-mod-from-music)
123
124 \include "predefined-fretboards-init.ly"
125 \include "string-tunings-init.ly"
126 \include "property-init.ly"
127
128 \include "grace-init.ly"
129 \include "midi-init.ly"
130 \include "paper-defaults-init.ly"
131 \include "context-mods-init.ly"
132
133 \layout {
134   mm = #(ly:output-def-lookup $defaultpaper 'mm)
135   unit = #(ly:output-def-lookup $defaultpaper 'unit)
136
137   in = #(* 25.4 mm)
138   pt = #(/ in 72.27)
139   cm = #(* 10 mm)
140
141   \include "engraver-init.ly"
142
143   #(set-paper-dimension-variables (current-module))
144 }
145
146 #(set-default-paper-size (ly:get-option 'paper-size))
147 partCombineListener = \layout {
148   \context {
149     \Score
150     skipTypesetting = ##t
151     ignoreBarChecks = ##t
152     \alias "Timing"
153   }
154 }
155
156 setDefaultDurationToQuarter = { c4 }