]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/translator-group.hh
Release: bump Welcome versions.
[lilypond.git] / lily / include / translator-group.hh
index 74a3490d3cf4840ac0e780f13da219094d2d5ac1..d4500ef2b4e170a4312b35746fc01a47d4d8429f 100644 (file)
@@ -1,82 +1,80 @@
 /*
-  translator-group.hh -- declare Translator_group
+  This file is part of LilyPond, the GNU music typesetter.
 
-  source file of the GNU LilyPond music typesetter
+  Copyright (C) 1997--2015 Han-Wen Nienhuys <hanwen@xs4all.nl>
 
-  (c)  1997--2002 Han-Wen Nienhuys <hanwen@cs.uu.nl>
-*/
+  LilyPond is free software: you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation, either version 3 of the License, or
+  (at your option) any later version.
+
+  LilyPond is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
 
+  You should have received a copy of the GNU General Public License
+  along with LilyPond.  If not, see <http://www.gnu.org/licenses/>.
+*/
 
 #ifndef TRANSLATOR_GROUP_HH
 #define TRANSLATOR_GROUP_HH
 
-#include "string.hh"
-#include "lily-proto.hh"
-#include "virtual-methods.hh"
+#include "callback.hh"
+#include "listener.hh"
 #include "translator.hh"
-#include "parray.hh"
-#include "smobs.hh"
 
-// egcs
-typedef void (Translator::*Method_pointer) (void);
-#define set_property(x,y) internal_set_property(ly_symbol2scm(x),y)
+class Translator_group : public Smob<Translator_group>
+{
+public:
+  SCM mark_smob () const;
+  int print_smob (SCM, scm_print_state *) const;
+  static const char * const type_p_name_;
+  virtual ~Translator_group ();
+private:
+  void precompute_method_bindings ();
+  vector<Method_instance>
+  precomputed_method_bindings_[TRANSLATOR_METHOD_PRECOMPUTE_COUNT];
 
-class Scheme_hash_table;
+  SCM protected_events_;
 
+  void create_child_translator (SCM);
 
-/** Make some kind of Elements from Requests. Elements are made by
-  hierarchically grouped Translators
-  */
-class Translator_group : public virtual Translator {
+public:
+  DECLARE_CLASSNAME (Translator_group);
 
-  Scheme_hash_table *properties_dict () const;
-  int iterator_count_;
+  virtual void connect_to_context (Context *c);
+  virtual void disconnect_from_context ();
+  virtual SCM get_simple_trans_list ();
+  virtual void initialize ();
+  virtual void finalize ();
 
-  friend class Interpretation_context_handle;
-  SCM add_translator (SCM, Translator*);
+  void protect_event (SCM ev);
 
-protected:
-  ~Translator_group ();
-public:
-  void execute_single_pushpop_property (SCM prop, SCM sym, SCM val);
-  SCM internal_get_property (SCM name_sym) const;
+  void stop_translation_timestep ();
+  void start_translation_timestep ();
 
-  void unset_property (SCM var_sym);
-  void internal_set_property (SCM var_sym, SCM value);  
-  Translator_group *where_defined (SCM name_sym) const;
+  Translator_group ();
 
-  String id_str_;
+  void precomputed_translator_foreach (Translator_precompute_index);
 
-  VIRTUAL_COPY_CONS (Translator);
-  Translator_group (Translator_group const &);
-  Translator_group ();
-  void add_fresh_group_translator (Translator *trans_p);
-  void add_used_group_translator (Translator *trans_p);
-  
-  /// Score_register = 0, Staff_registers = 1, etc)
-  Translator_group* ancestor_l (int l=1);
-  int depth_i () const;
-  bool is_bottom_translator_b () const;
-  bool removable_b () const;
-  void terminate_translator (Translator*r_l);
-  Translator *remove_translator_p (Translator*trans_l);
-  void check_removal ();
-  // Translator *get_simple_translator (String) const;
-  Translator_group *find_existing_translator_l (String n, String id);
-  Translator_group *find_create_translator_l (String n, String id);
-  Link_array<Translator_group> path_to_acceptable_translator (String alias, Music_output_def*) const;
-  Translator_group*get_default_interpreter ();
+  Context *context () const { return context_; }
+protected:
+  SCM simple_trans_list_;
+  Context *context_;
 
-public:
-  bool try_music_on_nongroup_children (Music *m);
-  
-  virtual void do_announces ();
-  virtual bool try_music (Music* req_l);       
-  virtual void stop_translation_timestep ();
-  virtual void start_translation_timestep ();   
-  virtual void initialize ();
-  virtual void finalize ();
-  virtual void each (Method_pointer);
+  friend class Context_def;
+  virtual void derived_mark () const;
 };
 
+SCM names_to_translators (SCM namelist, Context *tg);
+void recurse_over_translators (Context *c, SCM tr_method,
+                               SCM tr_group_method, Direction);
+void precomputed_recurse_over_translators (Context *c, Translator_precompute_index idx, Direction dir);
+Translator_group *get_translator_group (SCM sym);
+
+#define foobar
+#define ADD_TRANSLATOR_GROUP(classname, desc, grobs, read, write) foobar
+
+
 #endif // TRANSLATOR_GROUP_HH