/* This file is part of LilyPond, the GNU music typesetter. Copyright (C) 2005--2015 Han-Wen Nienhuys 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 . */ #include "engraver.hh" #include "output-def.hh" #include "paper-column.hh" #include "pointer-group-interface.hh" #include "side-position-interface.hh" #include "spanner.hh" #include "staff-symbol.hh" #include "system-start-delimiter.hh" #include "translator.icc" struct Bracket_nesting_node { public: virtual ~Bracket_nesting_node () {} virtual bool add_staff (Grob *) { return false; } virtual void add_support (Grob *) {} virtual void set_bound (Direction, Grob *) {} virtual void set_nesting_support (Grob *) {} virtual void create_grobs (Engraver *, SCM) {} }; struct Bracket_nesting_group : public Bracket_nesting_node { Spanner *delimiter_; vector children_; SCM symbol_; void from_list (SCM); virtual void add_support (Grob *grob); virtual bool add_staff (Grob *grob); virtual void set_nesting_support (Grob *); virtual void set_bound (Direction, Grob *grob); virtual void create_grobs (Engraver *, SCM); ~Bracket_nesting_group (); Bracket_nesting_group (); }; struct Bracket_nesting_staff : public Bracket_nesting_node { Grob *staff_; Bracket_nesting_staff (Grob *s) { staff_ = s; } virtual bool add_staff (Grob *); }; Bracket_nesting_group::Bracket_nesting_group () { symbol_ = SCM_EOL; delimiter_ = 0; } bool Bracket_nesting_staff::add_staff (Grob *g) { if (!staff_) { staff_ = g; return true; } return false; } void Bracket_nesting_group::create_grobs (Engraver *engraver, SCM default_type) { SCM type = scm_is_symbol (symbol_) ? symbol_ : default_type; delimiter_ = engraver->make_spanner (ly_symbol2string (type).c_str (), SCM_EOL); for (vsize i = 0; i < children_.size (); i++) children_[i]->create_grobs (engraver, default_type); } void Bracket_nesting_group::add_support (Grob *g) { Side_position_interface::add_support (g, delimiter_); for (vsize i = 0; i < children_.size (); i++) children_[i]->add_support (g); } Bracket_nesting_group::~Bracket_nesting_group () { junk_pointers (children_); } void Bracket_nesting_group::set_bound (Direction d, Grob *g) { delimiter_->set_bound (d, g); for (vsize i = 0; i < children_.size (); i++) children_[i]->set_bound (d, g); } void Bracket_nesting_group::set_nesting_support (Grob *parent) { if (parent) Side_position_interface::add_support (delimiter_, parent); for (vsize i = 0; i < children_.size (); i++) children_[i]->set_nesting_support (delimiter_); } void Bracket_nesting_group::from_list (SCM x) { for (SCM s = x; scm_is_pair (s); s = scm_cdr (s)) { SCM entry = scm_car (s); if (scm_is_pair (entry)) { Bracket_nesting_group *node = new Bracket_nesting_group; node->from_list (entry); children_.push_back (node); } else if (scm_is_eq (entry, ly_symbol2scm ("SystemStartBrace")) || scm_is_eq (entry, ly_symbol2scm ("SystemStartBracket")) || scm_is_eq (entry, ly_symbol2scm ("SystemStartBar")) || scm_is_eq (entry, ly_symbol2scm ("SystemStartSquare"))) symbol_ = entry; else children_.push_back (new Bracket_nesting_staff (0)); } } bool Bracket_nesting_group::add_staff (Grob *grob) { for (vsize i = 0; i < children_.size (); i++) { if (children_[i]->add_staff (grob)) { Pointer_group_interface::add_grob (delimiter_, ly_symbol2scm ("elements"), grob); return true; } } return false; } /****************/ class System_start_delimiter_engraver : public Engraver { public: TRANSLATOR_DECLARATIONS (System_start_delimiter_engraver); protected: Bracket_nesting_group *nesting_; void acknowledge_system_start_delimiter (Grob_info); void acknowledge_staff_symbol (Grob_info); void process_music (); virtual void finalize (); }; System_start_delimiter_engraver::System_start_delimiter_engraver () { nesting_ = 0; } void System_start_delimiter_engraver::process_music () { if (!nesting_) { nesting_ = new Bracket_nesting_group (); SCM hierarchy = get_property ("systemStartDelimiterHierarchy"); SCM delimiter_name = get_property ("systemStartDelimiter"); nesting_->from_list (hierarchy); nesting_->create_grobs (this, delimiter_name); nesting_->set_bound (LEFT, unsmob (get_property ("currentCommandColumn"))); } } void System_start_delimiter_engraver::finalize () { if (nesting_) { nesting_->set_bound (RIGHT, unsmob (get_property ("currentCommandColumn"))); nesting_->set_nesting_support (0); delete nesting_; } } void System_start_delimiter_engraver::acknowledge_staff_symbol (Grob_info inf) { Grob *staff = inf.grob (); bool succ = nesting_->add_staff (staff); if (!succ) { nesting_->children_.push_back (new Bracket_nesting_staff (0)); nesting_->add_staff (staff); } } void System_start_delimiter_engraver::acknowledge_system_start_delimiter (Grob_info inf) { nesting_->add_support (inf.grob ()); } void System_start_delimiter_engraver::boot () { ADD_ACKNOWLEDGER (System_start_delimiter_engraver, staff_symbol); ADD_ACKNOWLEDGER (System_start_delimiter_engraver, system_start_delimiter); } ADD_TRANSLATOR (System_start_delimiter_engraver, /* doc */ "Create a system start delimiter (i.e., a" " @code{SystemStartBar}, @code{SystemStartBrace}," " @code{SystemStartBracket} or @code{SystemStartSquare}" " spanner).", /* create */ "SystemStartSquare " "SystemStartBrace " "SystemStartBracket " "SystemStartBar ", /* read */ "systemStartDelimiter " "systemStartDelimiterHierarchy " "currentCommandColumn ", /* write */ "" );