]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/translator.hh
patch::: 1.1.27.jcn3: geen genade
[lilypond.git] / lily / include / translator.hh
index bfcf734e307007a63cf610844bc29637e9048edb..997735483ad6a0826cccc3b3ecaf5c96cf9309c4 100644 (file)
@@ -3,7 +3,7 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
+  (c)  1997--1998 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
 
 #include "string.hh"
 #include "lily-proto.hh"
 #include "virtual-methods.hh"
+#include "scalar.hh"
+#include "dictionary.hh"
+#include "parray.hh"
+#include "input.hh"
+
 
 /** Make some kind of #Element#s from Requests. Elements are made by
   hierarchically grouped #Translator#s
   */
-class Translator {
+class Translator : public Input {
 public:
-  String id_str_;
-    
-  int iterator_count_;
-    
-  virtual Global_translator *global_l() { return 0; }
+  Music_output_def * output_def_l_;
+  String  type_str_;
+
+  bool is_alias_b (String) const;
+  
 
-  virtual void print() const;
     
-  /// Score_register = 0, Staff_registers = 1, etc)
-  virtual int depth_i() const=0;
-  virtual bool is_bottom_engraver_b() const { return false; }
-  virtual bool try_request (Request*);
-  virtual Translator *find_get_translator_l (String name, String id)=0;
-  virtual Translator *ancestor_l (int l=1)=0;
-  virtual ~Translator(){}
-  DECLARE_MY_RUNTIME_TYPEINFO;
-  Translator();
-  virtual Translator *get_default_interpreter()=0;
+  VIRTUAL_COPY_CONS(Translator);
+  Translator (Translator const &);
+  Translator ();
+  virtual ~Translator ();
+  
+  Translator_group * daddy_trans_l_ ;
+  void print () const;
+  
+  /**
+    try to fit the request in this engraver
+
+    @return
+    false: not noted,  not taken.
+
+    true: request swallowed. Don't try to put the request elsewhere.
+
+    */
+  bool try_music (Music*);
+  void pre_move_processing();
+  void add_processing ();
+  void creation_processing ();
+  void process_requests();
+  void post_move_processing();
+  void removal_processing();
+  /**
+    ask daddy for a feature
+    */
+  Music_output_def *output_def_l () const;
+  Scalar get_property (String, Translator_group **) const;
+  virtual Moment now_mom () const;  
+
+protected:
+   enum { 
+    ORPHAN,
+    VIRGIN,
+    CREATION_INITED,
+    MOVE_INITED,
+    ACCEPTED_REQS,
+    PROCESSED_REQS,
+    ACKED_REQS,
+    MOVE_DONE
+  } status;
+
+  /*    
+       @see{try_request}
+       Default: always return false
+       */
+  virtual void do_add_processing ();
+  virtual bool do_try_music (Music *req_l);
+  virtual void do_print () const;
+  virtual void do_pre_move_processing(){}
+  virtual void do_post_move_processing(){}
+  virtual void do_process_requests () {}
+  virtual void do_creation_processing() {}
+  virtual void do_removal_processing() {}
 };
 
+
+template<class T>
+class Translator_adder
+{
+public:
+  static Translator *ctor ()
+    {
+      T *t = new T;
+      t->type_str_ = classname (t);
+      return t;
+    }
+  Translator_adder () {        
+    add_constructor (ctor);
+  }                            
+};
+
+/**
+  A macro to automate administration of translators.
+ */
+#define ADD_THIS_TRANSLATOR(c)                         \
+  Translator_adder<c> _ ## c ## init;
+
+typedef Translator *(*Translator_ctor) ();
+
+extern Dictionary<Translator*> *global_translator_dict_p;
+void add_translator (Translator*trans_p);
+void add_constructor (Translator_ctor ctor);
+
+Translator*get_translator_l (String s);
+
 #endif // TRANSLATOR_HH