Fixes Issue 1504, allowing feather beam line breaking.
[lilypond/patrick.git] / lily / music-function.cc
blob85eecb7c33eb371216781cc7e3dedca0f48de4a8
1 /*
2 This file is part of LilyPond, the GNU music typesetter.
4 Copyright (C) 2004--2011 Han-Wen Nienhuys <hanwen@xs4all.nl>
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.
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.
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/>.
20 #include "music-function.hh"
22 #include "music.hh"
24 static scm_t_bits music_function_tag;
26 /* Print a textual represenation of the smob to a given port. */
27 static int
28 print_music_function (SCM b, SCM port, scm_print_state *)
30 SCM value = SCM_CELL_OBJECT_1 (b);
32 scm_puts ("#<Music function ", port);
33 scm_write (value, port);
34 scm_puts (">", port);
36 /* Non-zero means success. */
37 return 1;
40 bool
41 is_music_function (SCM music_function)
43 return (SCM_NIMP (music_function) && SCM_CELL_TYPE (music_function) == music_function_tag);
46 SCM
47 get_music_function_transform (SCM music_function)
49 if (!is_music_function (music_function))
50 return SCM_UNDEFINED;
52 return SCM_CELL_OBJECT_1 (music_function);
55 static void
56 init_music_function (void)
58 music_function_tag = scm_make_smob_type ("music-function", 0);
59 scm_set_smob_mark (music_function_tag, scm_markcdr);
60 scm_set_smob_print (music_function_tag, print_music_function);
63 SCM
64 make_music_function (SCM signature, SCM func)
66 scm_set_object_property_x (func, ly_symbol2scm ("music-function-signature"),
67 signature);
69 SCM_RETURN_NEWSMOB (music_function_tag, func);
72 ADD_SCM_INIT_FUNC (music_function_tag, init_music_function);