]> git.donarmstrong.com Git - lilypond.git/blob - lily/stencil-scheme.cc
Imported Upstream version 2.16.0
[lilypond.git] / lily / stencil-scheme.cc
1 /*
2   This file is part of LilyPond, the GNU music typesetter.
3
4   Copyright (C) 1997--2012 Han-Wen Nienhuys <hanwen@xs4all.nl>
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
20 #include "font-metric.hh"
21 #include "libc-extension.hh"
22 #include "lookup.hh"
23 #include "stencil.hh"
24
25 /*
26   TODO: naming add/combine.
27 */
28
29 LY_DEFINE (ly_stencil_translate_axis, "ly:stencil-translate-axis",
30            3, 0, 0, (SCM stil, SCM amount, SCM axis),
31            "Return a copy of @var{stil} but translated by @var{amount}"
32            " in @var{axis} direction.")
33 {
34   Stencil *s = unsmob_stencil (stil);
35   LY_ASSERT_SMOB (Stencil, stil, 1);
36   LY_ASSERT_TYPE (scm_is_number, amount, 2);
37   LY_ASSERT_TYPE (is_axis, axis, 3);
38
39   Real real_amount = scm_to_double (amount);
40
41   SCM new_s = s->smobbed_copy ();
42   Stencil *q = unsmob_stencil (new_s);
43   q->translate_axis (real_amount, Axis (scm_to_int (axis)));
44   return new_s;
45 }
46
47 LY_DEFINE (ly_stencil_translate, "ly:stencil-translate",
48            2, 0, 0, (SCM stil, SCM offset),
49            "Return a @var{stil}, but translated by @var{offset}"
50            " (a pair of numbers).")
51 {
52   Stencil *s = unsmob_stencil (stil);
53   LY_ASSERT_SMOB (Stencil, stil, 1);
54   LY_ASSERT_TYPE (is_number_pair, offset, 2);
55   Offset o = ly_scm2offset (offset);
56
57   SCM new_s = s->smobbed_copy ();
58   Stencil *q = unsmob_stencil (new_s);
59   q->translate (o);
60   return new_s;
61 }
62
63 LY_DEFINE (ly_stencil_expr, "ly:stencil-expr",
64            1, 0, 0, (SCM stil),
65            "Return the expression of @var{stil}.")
66 {
67   Stencil *s = unsmob_stencil (stil);
68   LY_ASSERT_SMOB (Stencil, stil, 1);
69   return s->expr ();
70 }
71
72 LY_DEFINE (ly_stencil_extent, "ly:stencil-extent",
73            2, 0, 0, (SCM stil, SCM axis),
74            "Return a pair of numbers signifying the extent of @var{stil} in"
75            " @var{axis} direction (@code{0} or @code{1} for x and"
76            " y@tie{}axis, respectively).")
77 {
78   Stencil *s = unsmob_stencil (stil);
79   LY_ASSERT_SMOB (Stencil, stil, 1);
80   LY_ASSERT_TYPE (is_axis, axis, 2);
81
82   return ly_interval2scm (s->extent (Axis (scm_to_int (axis))));
83 }
84
85 LY_DEFINE (ly_stencil_empty_p, "ly:stencil-empty?",
86            1, 0, 0, (SCM stil),
87            "Return whether @var{stil} is empty.")
88 {
89   Stencil *s = unsmob_stencil (stil);
90   LY_ASSERT_SMOB (Stencil, stil, 1);
91   return scm_from_bool (s->is_empty ());
92 }
93
94 LY_DEFINE (ly_stencil_combine_at_edge, "ly:stencil-combine-at-edge",
95            4, 1, 0, (SCM first, SCM axis, SCM direction,
96                      SCM second,
97                      SCM padding),
98            "Construct a stencil by putting @var{second} next to @var{first}."
99            "  @var{axis} can be 0 (x-axis) or@tie{}1 (y-axis)."
100            "  @var{direction} can be -1 (left or down) or@tie{}1 (right or"
101            " up).  The stencils are juxtaposed with @var{padding} as extra"
102            " space.  @var{first} and @var{second} may also be @code{'()} or"
103            " @code{#f}.")
104 {
105   Stencil *s1 = unsmob_stencil (first);
106   Stencil *s2 = unsmob_stencil (second);
107   Stencil result;
108
109   SCM_ASSERT_TYPE (s1 || first == SCM_BOOL_F || first == SCM_EOL,
110                    first, SCM_ARG1, __FUNCTION__, "Stencil, #f or ()");
111   SCM_ASSERT_TYPE (s2 || second == SCM_BOOL_F || second == SCM_EOL,
112                    second, SCM_ARG4, __FUNCTION__, "Stencil, #f or ()");
113   LY_ASSERT_TYPE (is_axis, axis, 2);
114   LY_ASSERT_TYPE (is_direction, direction, 3);
115
116   Real p = 0.0;
117   if (padding != SCM_UNDEFINED)
118     {
119       LY_ASSERT_TYPE (scm_is_number, padding, 5);
120       p = scm_to_double (padding);
121     }
122
123   if (s1)
124     result = *s1;
125
126   if (s2)
127     result.add_at_edge (Axis (scm_to_int (axis)),
128                         Direction (scm_to_int (direction)), *s2, p);
129
130   return result.smobbed_copy ();
131 }
132
133 LY_DEFINE (ly_stencil_add, "ly:stencil-add",
134            0, 0, 1, (SCM args),
135            "Combine stencils.  Takes any number of arguments.")
136 {
137 #define FUNC_NAME __FUNCTION__
138   SCM_VALIDATE_REST_ARGUMENT (args);
139
140   SCM expr = SCM_EOL;
141   SCM *tail = &expr;
142   Box extent;
143   extent.set_empty ();
144
145   while (!SCM_NULLP (args))
146     {
147       Stencil *s = unsmob_stencil (scm_car (args));
148       if (!s)
149         SCM_ASSERT_TYPE (s, scm_car (args), SCM_ARGn, __FUNCTION__, "Stencil");
150
151       extent.unite (s->extent_box ());
152       *tail = scm_cons (s->expr (), SCM_EOL);
153       tail = SCM_CDRLOC (*tail);
154       args = scm_cdr (args);
155     }
156
157   expr = scm_cons (ly_symbol2scm ("combine-stencil"), expr);
158   return Stencil (extent, expr).smobbed_copy ();
159 }
160
161 LY_DEFINE (ly_make_stencil, "ly:make-stencil",
162            1, 2, 0, (SCM expr, SCM xext, SCM yext),
163            "Stencils are device independent output expressions."
164            "  They carry two pieces of information:\n"
165            "\n"
166            "@enumerate\n"
167            "@item\n"
168            "A specification of how to print this object."
169            "  This specification is processed by the output backends,"
170            " for example @file{scm/output-ps.scm}.\n"
171            "\n"
172            "@item\n"
173            "The vertical and horizontal extents of the object, given as"
174            " pairs.  If an extent is unspecified (or if you use"
175            " @code{(1000 . -1000)} as its value), it is taken to be empty.\n"
176            "@end enumerate\n")
177 {
178   SCM_ASSERT_TYPE (!scm_is_pair (expr)
179                    || is_stencil_head (scm_car (expr)),
180                    expr, SCM_ARG1, __FUNCTION__, "registered stencil expression");
181
182   Interval x;
183   if (xext != SCM_UNDEFINED)
184     {
185       LY_ASSERT_TYPE (is_number_pair, xext, 2);
186       x = ly_scm2interval (xext);
187     }
188
189   Interval y;
190   if (yext != SCM_UNDEFINED)
191     {
192       LY_ASSERT_TYPE (is_number_pair, yext, 3);
193       y = ly_scm2interval (yext);
194     }
195
196   Box b (x, y);
197   Stencil s (b, expr);
198   return s.smobbed_copy ();
199 }
200
201 LY_DEFINE (ly_stencil_aligned_to, "ly:stencil-aligned-to",
202            3, 0, 0, (SCM stil, SCM axis, SCM dir),
203            "Align @var{stil} using its own extents.  @var{dir} is a number."
204            "  @w{@code{-1}} and @code{1} are left and right, respectively."
205            "  Other values are interpolated (so @code{0} means the center).")
206 {
207   LY_ASSERT_SMOB (Stencil, stil, 1);
208   LY_ASSERT_TYPE (is_axis, axis, 2);
209   LY_ASSERT_TYPE (scm_is_number, dir, 3);
210
211   Stencil target = *unsmob_stencil (stil);
212
213   target.align_to ((Axis)scm_to_int (axis),
214                    scm_to_double (dir));
215   return target.smobbed_copy ();
216 }
217
218 LY_DEFINE (ly_stencil_fonts, "ly:stencil-fonts",
219            1, 0, 0, (SCM s),
220            "Analyze @var{s}, and return a list of fonts used"
221            " in@tie{}@var{s}.")
222 {
223   LY_ASSERT_SMOB (Stencil, s, 1);
224   Stencil *stil = unsmob_stencil (s);
225   return find_expression_fonts (stil->expr ());
226 }
227
228 LY_DEFINE (ly_stencil_in_color, "ly:stencil-in-color",
229            4, 0, 0, (SCM stc, SCM r, SCM g, SCM b),
230            "Put @var{stc} in a different color.")
231 {
232   LY_ASSERT_SMOB (Stencil, stc, 1);
233   Stencil *stil = unsmob_stencil (stc);
234   return Stencil (stil->extent_box (),
235                   scm_list_3 (ly_symbol2scm ("color"),
236                               scm_list_3 (r, g, b),
237                               stil->expr ())).smobbed_copy ();
238 }
239
240 struct Stencil_interpret_arguments
241 {
242   SCM func;
243   SCM arg1;
244 };
245
246 void stencil_interpret_in_scm (void *p, SCM expr)
247 {
248   Stencil_interpret_arguments *ap = (Stencil_interpret_arguments *) p;
249   scm_call_2 (ap->func, ap->arg1, expr);
250 }
251
252 LY_DEFINE (ly_interpret_stencil_expression, "ly:interpret-stencil-expression",
253            4, 0, 0, (SCM expr, SCM func, SCM arg1, SCM offset),
254            "Parse @var{expr}, feed bits to @var{func} with first arg"
255            " @var{arg1} having offset @var{offset}.")
256 {
257   LY_ASSERT_TYPE (ly_is_procedure, func, 2);
258
259   Stencil_interpret_arguments a;
260   a.func = func;
261   a.arg1 = arg1;
262   Offset o = ly_scm2offset (offset);
263
264   interpret_stencil_expression (expr, stencil_interpret_in_scm, (void *) & a, o);
265
266   return SCM_UNSPECIFIED;
267 }
268
269 LY_DEFINE (ly_bracket, "ly:bracket",
270            4, 0, 0,
271            (SCM a, SCM iv, SCM t, SCM p),
272            "Make a bracket in direction@tie{}@var{a}.  The extent of the"
273            " bracket is given by @var{iv}.  The wings protrude by an amount"
274            " of@tie{}@var{p}, which may be negative.  The thickness is given"
275            " by@tie{}@var{t}.")
276 {
277   LY_ASSERT_TYPE (is_axis, a, 1);
278   LY_ASSERT_TYPE (is_number_pair, iv, 2);
279   LY_ASSERT_TYPE (scm_is_number, t, 3);
280   LY_ASSERT_TYPE (scm_is_number, p, 4);
281
282   return Lookup::bracket ((Axis)scm_to_int (a), ly_scm2interval (iv),
283                           scm_to_double (t),
284                           scm_to_double (p),
285                           0.95 * scm_to_double (t)).smobbed_copy ();
286 }
287
288 LY_DEFINE (ly_stencil_rotate, "ly:stencil-rotate",
289            4, 0, 0, (SCM stil, SCM angle, SCM x, SCM y),
290            "Return a stencil @var{stil} rotated @var{angle} degrees around"
291            " the relative offset (@var{x}, @var{y}).  E.g., an offset of"
292            " (-1, 1) will rotate the stencil around the left upper corner.")
293 {
294   Stencil *s = unsmob_stencil (stil);
295   LY_ASSERT_SMOB (Stencil, stil, 1);
296   LY_ASSERT_TYPE (scm_is_number, angle, 2);
297   LY_ASSERT_TYPE (scm_is_number, x, 3);
298   LY_ASSERT_TYPE (scm_is_number, y, 4);
299   Real a = scm_to_double (angle);
300   Real x_off = scm_to_double (x);
301   Real y_off = scm_to_double (y);
302
303   SCM new_s = s->smobbed_copy ();
304   Stencil *q = unsmob_stencil (new_s);
305   q->rotate_degrees (a, Offset (x_off, y_off));
306   return new_s;
307 }
308
309 LY_DEFINE (ly_stencil_rotate_absolute, "ly:stencil-rotate-absolute",
310            4, 0, 0, (SCM stil, SCM angle, SCM x, SCM y),
311            "Return a stencil @var{stil} rotated @var{angle} degrees around"
312            " point (@var{x}, @var{y}), given in absolute coordinates.")
313 {
314   Stencil *s = unsmob_stencil (stil);
315   LY_ASSERT_SMOB (Stencil, stil, 1);
316   LY_ASSERT_TYPE (scm_is_number, angle, 2);
317   LY_ASSERT_TYPE (scm_is_number, x, 3);
318   LY_ASSERT_TYPE (scm_is_number, y, 4);
319   Real a = scm_to_double (angle);
320   Real x_off = scm_to_double (x);
321   Real y_off = scm_to_double (y);
322
323   SCM new_s = s->smobbed_copy ();
324   Stencil *q = unsmob_stencil (new_s);
325   q->rotate_degrees_absolute (a, Offset (x_off, y_off));
326   return new_s;
327 }
328
329 LY_DEFINE (ly_round_filled_box, "ly:round-filled-box",
330            3, 0, 0,
331            (SCM xext, SCM yext, SCM blot),
332            "Make a @code{Stencil} object that prints a black box of"
333            " dimensions @var{xext}, @var{yext} and roundness @var{blot}.")
334 {
335   LY_ASSERT_TYPE (is_number_pair, xext, 1);
336   LY_ASSERT_TYPE (is_number_pair, yext, 2);
337   LY_ASSERT_TYPE (scm_is_number, blot, 3);
338
339   return Lookup::round_filled_box (Box (ly_scm2interval (xext), ly_scm2interval (yext)),
340                                    scm_to_double (blot)).smobbed_copy ();
341 }
342
343 LY_DEFINE (ly_round_filled_polygon, "ly:round-filled-polygon",
344            2, 0, 0,
345            (SCM points, SCM blot),
346            "Make a @code{Stencil} object that prints a black polygon with"
347            " corners at the points defined by @var{points} (list of coordinate"
348            " pairs) and roundness @var{blot}.")
349 {
350   SCM_ASSERT_TYPE (scm_ilength (points) > 0, points, SCM_ARG1, __FUNCTION__, "list of coordinate pairs");
351   LY_ASSERT_TYPE (scm_is_number, blot, 2);
352   vector<Offset> pts;
353   for (SCM p = points; scm_is_pair (p); p = scm_cdr (p))
354     {
355       SCM scm_pt = scm_car (p);
356       if (scm_is_pair (scm_pt))
357         {
358           pts.push_back (ly_scm2offset (scm_pt));
359         }
360       else
361         {
362           // TODO: Print out warning
363         }
364     }
365   return Lookup::round_filled_polygon (pts, scm_to_double (blot)).smobbed_copy ();
366 }
367
368 LY_DEFINE (ly_register_stencil_expression, "ly:register-stencil-expression",
369            1, 0, 0,
370            (SCM symbol),
371            "Add @var{symbol} as head of a stencil expression.")
372 {
373   LY_ASSERT_TYPE (ly_is_symbol, symbol, 1);
374   register_stencil_head (symbol);
375   return SCM_UNSPECIFIED;
376 }
377
378 LY_DEFINE (ly_all_stencil_expressions, "ly:all-stencil-expressions",
379            0, 0, 0,
380            (),
381            "Return all symbols recognized as stencil expressions.")
382 {
383   return all_stencil_heads ();
384 }
385
386 LY_DEFINE (ly_stencil_scale, "ly:stencil-scale",
387            3, 0, 0, (SCM stil, SCM x, SCM y),
388            "Scale @var{stil} using the horizontal and vertical scaling"
389            " factors @var{x} and @var{y}.")
390 {
391   Stencil *s = unsmob_stencil (stil);
392   LY_ASSERT_SMOB (Stencil, stil, 1);
393   LY_ASSERT_TYPE (scm_is_number, x, 2);
394   LY_ASSERT_TYPE (scm_is_number, y, 3);
395
396   SCM new_s = s->smobbed_copy ();
397   Stencil *q = unsmob_stencil (new_s);
398
399   q->scale (scm_to_double (x), scm_to_double (y));
400   return new_s;
401 }