]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/translator.cc
patch::: 1.5.26.jcn1
[lilypond.git] / lily / translator.cc
index b902387529c5c0bd43db60d284304f3a3e580967..fc4009633122d5c5845f381cc97c5c24def1b267 100644 (file)
 /*
-  Translator.cc -- implement Translator
+  translator.cc -- implement Translator
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
+  (c)  1997--2001 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
+
 #include "translator.hh"
+#include "debug.hh"
+#include "translator-group.hh"
+#include "translator-def.hh"
+
+#include "moment.hh"
+#include "ly-smobs.icc"
+
+
+Translator::~Translator ()
+{
+}
 
-Translator::Translator()
+void
+Translator::init ()
 {
-  iterator_count_  = 0;
+  simple_trans_list_ = SCM_EOL;
+  trans_group_list_ = SCM_EOL;
+  properties_scm_ = SCM_EOL;
+  definition_ = SCM_EOL;
+  daddy_trans_l_ =0;
 }
 
+Translator::Translator ()
+{
+  init ();
+  output_def_l_ = 0;
+  smobify_self ();
+
+}
 
-IMPLEMENT_IS_TYPE_B(Translator);
+Translator::Translator (Translator const &s)
+  : Input (s)
+{
+  init ();
+  output_def_l_ = s.output_def_l_;
+  type_str_ = s.type_str_;
+
+  smobify_self ();
+}
+
+bool
+Translator::is_alias_b (String s) const
+{
+  bool b  = s == type_str_;
+
+  for (SCM a = unsmob_translator_def (definition_)->type_aliases_;
+       !b && gh_pair_p (a); a = ly_cdr (a))
+    b = b || s == ly_scm2string (ly_car (a));
+
+  return b;
+}
 
 bool
-Translator::try_request (Request*)
+Translator::try_music (Music *)
 {
   return false;
 }
+                           
+
+Moment
+Translator::now_mom () const
+{
+  return daddy_trans_l_->now_mom ();
+}
+
+void
+Translator::removal_processing ()
+{
+  finalize ();
+}
+
+void
+Translator::announces ()
+{
+  do_announces ();
+}
+
+Music_output_def *
+Translator::output_def_l () const
+{
+  return output_def_l_;
+}
+
+SCM
+Translator::internal_get_property (SCM sym) const
+{
+  return daddy_trans_l_->internal_get_property (sym);
+}
+
+void
+Translator:: stop_translation_timestep ()
+{
+}
+
+void
+Translator::start_translation_timestep ()
+{
+}
 
+void
+Translator::do_announces ()
+{
+}
 
 void
-Translator::print()const
+Translator::initialize ()
+{
+}
+
+void
+Translator::finalize ()
+{
+}
+
+
+/*
+
+  SMOBS
+
+*/
+SCM
+Translator::mark_smob (SCM sm)
+{
+  Translator * me = (Translator*) SCM_CELL_WORD_1 (sm);
+  scm_gc_mark (me->simple_trans_list_);
+  scm_gc_mark (me->trans_group_list_);
+  scm_gc_mark (me->definition_);  
+  scm_gc_mark (me->properties_scm_);  
+
+  return me->properties_scm_;
+}
+
+MAKE_SCHEME_CALLBACK(Translator,name,1);
+SCM
+Translator::name (SCM trans) 
 {
+  if (unsmob_translator (trans))
+    {
+      char const* nm = classname (unsmob_translator (trans));
+      return ly_str02scm (nm);
+    }
+  return
+    SCM_EOL;
+}
 
+MAKE_SCHEME_CALLBACK(Translator,description,1)
+SCM
+Translator::description (SCM me) 
+{
+  if (unsmob_translator (me))
+    return unsmob_translator(me)->translator_description ();
+  else
+    {
+      programming_error ("Translator::description ()");  
+      return SCM_EOL;
+    }
 }
+
+SCM
+Translator::translator_description () const
+{
+  return SCM_EOL;
+}
+
+int
+Translator::print_smob (SCM s, SCM port, scm_print_state *)
+{
+  Translator *sc = (Translator *) ly_cdr (s);
+     
+  scm_puts ("#<Translator ", port);
+  scm_display (name (s), port);
+  scm_display (sc->simple_trans_list_, port);
+  /*
+    don't try to print properties, that is too much hassle.
+   */
+  scm_puts (" >", port);
+  
+  return 1;
+}
+
+SCM
+Translator::static_translator_description ()const
+{
+  return SCM_EOL;
+}
+
+
+IMPLEMENT_SMOBS (Translator);
+IMPLEMENT_DEFAULT_EQUAL_P (Translator);