]> git.donarmstrong.com Git - lilypond.git/blob - lily/context-scheme.cc
8ff668eadac2403b0a3fdde3b647cc09853226e2
[lilypond.git] / lily / context-scheme.cc
1 /*
2   This file is part of LilyPond, the GNU music typesetter.
3
4   Copyright (C) 1998--2014 Jan Nieuwenhuizen <janneke@gnu.org>
5   Han-Wen Nienhuys <hanwen@xs4all.nl>
6
7   LilyPond is free software: you can redistribute it and/or modify
8   it under the terms of the GNU General Public License as published by
9   the Free Software Foundation, either version 3 of the License, or
10   (at your option) any later version.
11
12   LilyPond is distributed in the hope that it will be useful,
13   but WITHOUT ANY WARRANTY; without even the implied warranty of
14   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15   GNU General Public License for more details.
16
17   You should have received a copy of the GNU General Public License
18   along with LilyPond.  If not, see <http://www.gnu.org/licenses/>.
19 */
20
21 #include "context.hh"
22 #include "context-def.hh"
23 #include "dispatcher.hh"
24 #include "grob-properties.hh"
25
26 LY_DEFINE (ly_context_current_moment,
27            "ly:context-current-moment",
28            1, 0, 0, (SCM context),
29            "Return the current moment of @var{context}.")
30 {
31   Context *tr = Context::unsmob (context);
32
33   LY_ASSERT_SMOB (Context, context, 1);
34
35   return tr->now_mom ().smobbed_copy ();
36 }
37
38 LY_DEFINE (ly_context_id, "ly:context-id",
39            1, 0, 0, (SCM context),
40            "Return the ID string of @var{context},"
41            " i.e., for @code{\\context Voice = \"one\" @dots{}}"
42            " return the string @code{one}.")
43 {
44   Context *tr = Context::unsmob (context);
45
46   LY_ASSERT_SMOB (Context, context, 1);
47
48   return ly_string2scm (tr->id_string ());
49 }
50
51 LY_DEFINE (ly_context_name, "ly:context-name",
52            1, 0, 0, (SCM context),
53            "Return the name of @var{context},"
54            " i.e., for @code{\\context Voice = \"one\" @dots{}}"
55            " return the symbol @code{Voice}.")
56 {
57   LY_ASSERT_SMOB (Context, context, 1);
58
59   Context *tr = Context::unsmob (context);
60
61   return ly_symbol2scm (tr->context_name ().c_str ());
62 }
63
64 LY_DEFINE (ly_context_grob_definition, "ly:context-grob-definition",
65            2, 0, 0, (SCM context, SCM name),
66            "Return the definition of @var{name} (a symbol) within"
67            " @var{context} as an alist.")
68 {
69   Context *tr = Context::unsmob (context);
70
71   LY_ASSERT_SMOB (Context, context, 1);
72   LY_ASSERT_TYPE (ly_is_symbol, name, 2);
73
74   return Grob_property_info (tr, name).updated ();
75 }
76
77 LY_DEFINE (ly_context_pushpop_property, "ly:context-pushpop-property",
78            3, 1, 0, (SCM context, SCM grob, SCM eltprop, SCM val),
79            "Do a single @code{\\override} or @code{\\revert} operation"
80            " in @var{context}.  The grob definition @var{grob} is extended"
81            " with @var{eltprop} (if @var{val} is specified) or reverted"
82            " (if unspecified).")
83 {
84   Context *tg = Context::unsmob (context);
85
86   LY_ASSERT_SMOB (Context, context, 1);
87   LY_ASSERT_TYPE (ly_is_symbol, grob, 2);
88   LY_ASSERT_TYPE (ly_is_symbol, eltprop, 3);
89
90   execute_pushpop_property (tg, grob, eltprop, val);
91
92   return SCM_UNSPECIFIED;
93 }
94
95 LY_DEFINE (ly_context_property, "ly:context-property",
96            2, 1, 0, (SCM context, SCM sym, SCM def),
97            "Return the value for property @var{sym} in @var{context}."
98            " If @var{def} is given, and property value is @code{'()},"
99            " return @var{def}.")
100 {
101   LY_ASSERT_SMOB (Context, context, 1);
102   LY_ASSERT_TYPE (ly_is_symbol, sym, 2);
103
104   Context *t = Context::unsmob (context);
105   SCM result = t->get_property (sym);
106   return def != SCM_UNDEFINED && scm_is_null (result) ? def : result;
107 }
108
109 LY_DEFINE (ly_context_set_property_x, "ly:context-set-property!",
110            3, 0, 0, (SCM context, SCM name, SCM val),
111            "Set value of property @var{name} in context @var{context}"
112            " to @var{val}.")
113 {
114   LY_ASSERT_SMOB (Context, context, 1);
115   LY_ASSERT_TYPE (ly_is_symbol, name, 2);
116
117   Context *tr = Context::unsmob (context);
118
119   tr->set_property (name, val);
120
121   return SCM_UNSPECIFIED;
122 }
123
124 LY_DEFINE (ly_context_property_where_defined, "ly:context-property-where-defined",
125            2, 0, 0, (SCM context, SCM name),
126            "Return the context above @var{context}"
127            " where @var{name} is defined.")
128 {
129   LY_ASSERT_SMOB (Context, context, 1);
130   LY_ASSERT_TYPE (ly_is_symbol, name, 2);
131
132   Context *tr = Context::unsmob (context);
133
134   SCM val;
135   tr = tr->where_defined (name, &val);
136   if (tr)
137     return tr->self_scm ();
138
139   return SCM_EOL;
140 }
141
142 LY_DEFINE (ly_context_unset_property, "ly:context-unset-property", 2, 0, 0,
143            (SCM context, SCM name),
144            "Unset value of property @var{name} in context @var{context}.")
145 {
146   LY_ASSERT_SMOB (Context, context, 1);
147   LY_ASSERT_TYPE (ly_is_symbol, name, 2);
148   Context *tr = Context::unsmob (context);
149
150   tr->unset_property (name);
151   return SCM_UNSPECIFIED;
152 }
153
154 LY_DEFINE (ly_context_parent, "ly:context-parent",
155            1, 0, 0, (SCM context),
156            "Return the parent of @var{context}, @code{#f} if none.")
157 {
158   LY_ASSERT_SMOB (Context, context, 1);
159   Context *tr = Context::unsmob (context);
160
161   tr = tr->get_parent_context ();
162   if (tr)
163     return tr->self_scm ();
164   else
165     return SCM_BOOL_F;
166 }
167
168 /* FIXME: todo: should support translator IDs, and creation? */
169 LY_DEFINE (ly_context_find, "ly:context-find",
170            2, 0, 0, (SCM context, SCM name),
171            "Find a parent of @var{context} that has name or alias @var{name}."
172            "  Return @code{#f} if not found.")
173 {
174   LY_ASSERT_SMOB (Context, context, 1);
175   LY_ASSERT_TYPE (ly_is_symbol, name, 2);
176   Context *tr = Context::unsmob (context);
177
178   while (tr)
179     {
180       if (tr->is_alias (name))
181         return tr->self_scm ();
182       tr = tr->get_parent_context ();
183     }
184
185   return SCM_BOOL_F;
186 }
187
188 LY_DEFINE (ly_context_now, "ly:context-now",
189            1, 0, 0, (SCM context),
190            "Return @code{now-moment} of context @var{context}.")
191 {
192   LY_ASSERT_SMOB (Context, context, 1);
193   Context *ctx = Context::unsmob (context);
194   return ctx->now_mom ().smobbed_copy ();
195 }
196
197 LY_DEFINE (ly_context_event_source, "ly:context-event-source",
198            1, 0, 0, (SCM context),
199            "Return @code{event-source} of context @var{context}.")
200 {
201   LY_ASSERT_SMOB (Context, context, 1);
202   Context *ctx = Context::unsmob (context);
203   return ctx->event_source ()->self_scm ();
204 }
205
206 LY_DEFINE (ly_context_events_below, "ly:context-events-below",
207            1, 0, 0, (SCM context),
208            "Return a @code{stream-distributor} that distributes all events"
209            " from @var{context} and all its subcontexts.")
210 {
211   LY_ASSERT_SMOB (Context, context, 1);
212   Context *ctx = Context::unsmob (context);
213   return ctx->events_below ()->self_scm ();
214 }