]> git.donarmstrong.com Git - lilypond.git/commitdiff
* scm/framework-texstr.scm (header): change extension to .textmetrics
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Wed, 29 Dec 2004 11:30:26 +0000 (11:30 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Wed, 29 Dec 2004 11:30:26 +0000 (11:30 +0000)
* lily/lily-parser.cc (parse_file): do try_load_text_metrics for
-f tex.

* lily/text-metrics.cc: new file.
(try_load_text_metrics): new function

* lily/include/text-metrics.hh: new file.

lily/include/dimensions.hh
lily/include/lily-proto.hh
lily/include/main.hh
lily/include/text-metrics.hh [new file with mode: 0644]
lily/lily-parser.cc
lily/modified-font-metric.cc
lily/open-type-font.cc
lily/text-metrics.cc [new file with mode: 0644]
lily/tfm.cc
scm/framework-texstr.scm
scm/output-texstr.scm

index 13eab8db9fa13db7ff881889a2d1ff3160f626b9..e50c40f46b4a79f9fc370e0123481d05c38a5a75 100644 (file)
@@ -39,6 +39,7 @@ const Real PT_TO_MM = (1.0 / MM_TO_PT);
 #endif
 
 String print_dimen (Real);
+const Real point_constant = 1 PT;
 
 #endif /* DIMENSIONS_HH */
 
index f9cb426eba1926f9a472f43525070742d9181435..c04221407b81b50f8f1d0d386d51790e6e0c43a7 100644 (file)
@@ -37,6 +37,7 @@ class Beaming_info_list;
 class Bezier;
 class Bezier_bow;
 class Book;
+class Box;
 class Break_algorithm;
 class Change_iterator;
 class Change_translator;
index bd71147357061c070f5c3ab7e80d3656544c9b55..02d8e1fa396cb2c0b8d6aa58109586cd1b9e27f1 100644 (file)
@@ -19,7 +19,6 @@ void add_score (Score* s);
 void set_default_output (String s);
 String find_file (String);
 void call_constructors ();
-
 Array<String> get_inclusion_names ();
 void set_inclusion_names (Array<String>);
 
diff --git a/lily/include/text-metrics.hh b/lily/include/text-metrics.hh
new file mode 100644 (file)
index 0000000..8cf6371
--- /dev/null
@@ -0,0 +1,22 @@
+/*
+  text-metrics.hh -- declare text metric lookup functions
+
+  source file of the GNU LilyPond music typesetter
+
+  (c) 2004 Han-Wen Nienhuys <hanwen@xs4all.nl>
+
+*/
+
+#ifndef TEXT_METRICS_HH
+#define TEXT_METRICS_HH
+
+#include "lily-guile.hh"
+#include "box.hh"
+
+void try_load_text_metrics (String);
+SCM ly_load_text_dimensions (SCM);
+Box lookup_tex_text_dimension (Font_metric *font,
+                          SCM text);
+
+#endif /* TEXT_METRICS_HH */
+
index fb09a41e5290f3356b5d99eeae0e425fc444694d..feb9943a7c26c6e305751bf6045635276b9fb820 100644 (file)
@@ -8,7 +8,7 @@
 */
 
 #include "lily-parser.hh"
-
+#include "text-metrics.hh"
 #include "book.hh"
 #include "lilypond-key.hh"
 #include "file-name.hh"
@@ -86,6 +86,11 @@ Lily_parser::print_smob (SCM s, SCM port, scm_print_state*)
 void
 Lily_parser::parse_file (String init, String name, String out_name)
 {
+  if (output_format_global == "tex")
+    {
+      try_load_text_metrics (out_name); 
+    }
+  
   lexer_ = new Lily_lexer (sources_);
   scm_gc_unprotect_object (lexer_->self_scm ());
   // TODO: use $parser 
index de1b23e834de93c71e3e6cf4252fd82d60e14074..b424590e54a21b4b318e14f84dfc76d57fc2ae12 100644 (file)
@@ -5,12 +5,11 @@
   
   (c) 1999--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
+#include <cctype>
 
 #include "modified-font-metric.hh"
 #include "pango-font.hh"
-
-#include <cctype>
-
+#include "text-metrics.hh"
 #include "warn.hh"
 #include "stencil.hh"
 
@@ -265,8 +264,6 @@ Modified_font_metric::text_dimension (String text) const
       b.scale (magnification_); 
       return b;
     }
-
-
   
   if (input_encoding_ == "TeX")
     b = tex_kludge (text);
@@ -311,7 +308,6 @@ Modified_font_metric::text_dimension (String text) const
          if (idx >= 0)
            char_box = orig_->get_indexed_char (idx);
          
-         char_box.scale (magnification_);
          if (!char_box[X_AXIS].is_empty ())
            /* length ? */
            w += char_box[X_AXIS][RIGHT];
@@ -323,6 +319,7 @@ Modified_font_metric::text_dimension (String text) const
        ydims = Interval (0, 0);
 
       b = Box (Interval (0, w), ydims);
+      b.scale (magnification_);
     }
   
   return b;
index da29e1884ac28b0846c76e264d34710dff9712a4..9664dd43ba779d0f2e72dc0f681ae44d2c391126 100644 (file)
@@ -16,8 +16,6 @@
 #include "dimensions.hh"
 #include "modified-font-metric.hh"
 
-const Real point_constant = 1 PT;
-
 FT_Byte *
 load_table (char const *tag_str, FT_Face face, FT_ULong *length)
 {
diff --git a/lily/text-metrics.cc b/lily/text-metrics.cc
new file mode 100644 (file)
index 0000000..919401f
--- /dev/null
@@ -0,0 +1,89 @@
+/*
+  text-metrics.cc -- implement text metric lookup functions
+
+  source file of the GNU LilyPond music typesetter
+
+  (c) 2004 Han-Wen Nienhuys <hanwen@xs4all.nl>
+*/
+
+#include "dimensions.hh"
+#include "font-metric.hh"
+#include "main.hh"
+
+static SCM text_dimension_hash_tab;
+
+
+Box
+lookup_tex_text_dimension (Font_metric *font,
+                          SCM text)
+{
+  Box b;
+
+  SCM limit = ly_lily_module_constant ("TEX_STRING_HASHLIMIT");
+  String key_str = ly_scm2string (font->font_file_name());
+  int hash_code = scm_to_int (scm_hash (text, limit));
+  key_str = to_string (hash_code)  + key_str;
+  
+  SCM val = SCM_BOOL_F;
+  if (text_dimension_hash_tab)
+    {
+      scm_hash_ref (text_dimension_hash_tab,
+                   scm_makfrom0str (key_str.to_str0 ()),
+                   SCM_BOOL_F);
+    }
+  if (scm_is_pair (val))
+    {
+      b[X_AXIS][LEFT] = 0.0;
+      b[X_AXIS][RIGHT] = scm_to_double (scm_car (val)) * point_constant;
+      val = scm_cdr (val);
+      b[Y_AXIS][UP] = scm_to_double (scm_car (val)) * point_constant;
+      val = scm_cdr (val);
+      b[Y_AXIS][DOWN] = scm_to_double (scm_car (val)) * point_constant; 
+    }
+  
+  return b; 
+}
+
+
+
+LY_DEFINE(ly_load_text_dimensions, "ly:load-text-dimensions",
+         1, 0, 0,
+         (SCM dimension_alist),
+         "Load dimensions from TeX in a (KEY . (W H D)) format alist")
+{
+  if (!text_dimension_hash_tab)
+    {
+      text_dimension_hash_tab =
+       scm_gc_protect_object (scm_make_hash_table (scm_from_int (113)));
+    }
+
+  for (SCM s = dimension_alist;
+       scm_is_pair (s);
+       s = scm_cdr (s))
+    {
+      SCM key = scm_caar (s);
+      SCM val = scm_cdar (s);
+      
+      if (scm_hash_ref (text_dimension_hash_tab, key, SCM_BOOL_F)
+         == SCM_BOOL_F)
+       {
+         scm_hash_set_x (text_dimension_hash_tab, key, val);
+       }
+    }
+
+  return SCM_UNSPECIFIED;
+}
+
+void
+try_load_text_metrics (String basename)
+{
+  String path =  global_path.find_file (basename +  ".textmetrics");
+  if (path != "")
+    {
+      String contents (gulp_file_to_string (path));
+      contents = "(quote (" +  contents + "))";
+
+      SCM lst = scm_c_eval_string (contents.to_str0 ());
+      ly_load_text_dimensions (lst);
+    }
+}
index ed97e417b17d75819a5cc47d9554840a8af83fbc..6770486f881ae7ff92a4347176851733a52a5200 100644 (file)
 #include "warn.hh"
 #include "dimensions.hh"
 
-static SCM tex_dimension_hash_tab;
 static Tex_font_char_metric dummy_static_char_metric;
 
 
-         
-Box
-lookup_tex_text_dimension (Font_metric *font,
-                          SCM text)
-{
-  Box b;
-
-  SCM limit = ly_lily_module_constant ("TEX_STRING_HASHLIMIT");
-  String key_str = ly_scm2string (font->font_file_name());
-  int hash_code = scm_to_int (scm_hash (text, limit));
-  key_str = to_string (hash_code)  + key_str;
-  
-  SCM val = scm_hash_ref (tex_dimension_hash_tab,
-                         scm_makfrom0str (key_str.to_str0 ()),
-                         SCM_BOOL_F);
-
-  if (scm_is_pair (val))
-    {
-      b[X_AXIS][LEFT] = 0.0 PT;
-      b[X_AXIS][RIGHT] = scm_to_double (scm_car (val)) PT;
-      val = scm_cdr (val);
-      b[Y_AXIS][UP] = scm_to_double (scm_car (val)) PT;
-      val = scm_cdr (val);
-      b[Y_AXIS][DOWN] = scm_to_double (scm_car (val)) PT; 
-    }
-  
-  return b; 
-}
-
 
 Tex_font_char_metric::Tex_font_char_metric ()
 {
@@ -77,9 +47,9 @@ Tex_font_char_metric::dimensions () const
 
   Real point_constant = 1 PT;
   
-  return Box (Interval (0, width_*point_constant ),
-             Interval ((d <? height_)*point_constant,
-                       (d >? height_)*point_constant));
+  return Box (Interval (0, width_* point_constant ),
+             Interval ((d <? height_) * point_constant,
+                       (d >? height_) * point_constant));
 }
 
 Tex_font_metric::Tex_font_metric ()
@@ -169,32 +139,3 @@ Tex_font_metric::name_to_index (String s) const
   else
     return -1;  
 }
-
-
-LY_DEFINE(ly_load_text_dimensions, "ly:load-text-dimensions",
-         1, 0, 0,
-         (SCM dimension_alist),
-         "Load dimensions from TeX in a (KEY . (W H D)) format alist")
-{
-  if (!tex_dimension_hash_tab)
-    {
-      tex_dimension_hash_tab =
-       scm_gc_protect_object (scm_make_hash_table (scm_from_int (113)));
-    }
-
-  for (SCM s = dimension_alist;
-       scm_is_pair (s);
-       s = scm_cdr (s))
-    {
-      SCM key = scm_caar (s);
-      SCM val = scm_cdar (s);
-      
-      if (scm_hash_ref (tex_dimension_hash_tab, key, SCM_BOOL_F)
-         == SCM_BOOL_F)
-       {
-         scm_hash_set_x (tex_dimension_hash_tab, key, val);
-       }
-    }
-
-  return SCM_UNSPECIFIED;
-}
index 1b6f4c14d77025baebe6a25397ad7a2ed2ec08cd..9931a81c45692e9cee493449c834c36fba967ffc 100644 (file)
             (srfi srfi-13)
             (lily))
 
-
 (define (header filename)
   (format  "% header
 \\input{lilypond-tex-metrics}
 \\documentclass{article}
 \\lilyglobalscale{1.0}
-\\lilymetricsfile{~a.lpm}
+\\lilymetricsfile{~a.textmetrics}
 \\begin{document}
 " filename))
 
@@ -43,8 +42,6 @@
      pages)
     (ly:outputter-dump-string outputter (footer))))
 
-
-
 (define-public (convert-to-ps . args) #t)
 (define-public (convert-to-pdf . args) #t)
 (define-public (convert-to-png . args) #t)
index c10d9bf97f1a44c4332726221d71044a3169278b..d9cc2e3b77dca548308b98b35414c6a15e1e2af6 100644 (file)
@@ -11,6 +11,7 @@
  (guile)
  (ice-9 regex)
  (srfi srfi-13)
+ (lily output-tex)
  (lily))
 
 (define (dummy . foo) #f)
@@ -33,5 +34,6 @@
                      (hash str TEX_STRING_HASHLIMIT)
                    (ly:font-file-name font)
                    (ly:font-file-name font)
-                   str) port)
+                   (sanitize-tex-string str))
+             port)
      )))