/** handy interface to symbol table
*/
struct Lookup {
- Paper_def * paper_l_;
- Symtables *symtables_;
- String texsetting;
- /* *************** */
- void add (String, Symtable*);
- void print() const;
-
- Atom linestaff (int n, Real ss, Real w) const;
- Atom fill (Box b) const;
- Atom beam_element (int,int,Real=0) const;
-
- /// round slope to closest TeXslope
- Atom beam (Real&,Real) const;
-
- Atom streepje (int type) const;
-
- Atom vbrace (Real &dy) const;
- Atom meter (Array<Scalar>) const;
- Atom stem (Real y1_pos, Real y2_pos) const;
- Atom rule_symbol (Real height, Real width) const;
- Atom accidental (int) const;
- Atom ball (int) const;
- Atom flag (int, Direction) const;
- Atom rest (int, bool outside) const;
- Atom clef (String) const;
- Atom bar (String, Real height) const;
+ Paper_def * paper_l_;
+ Symtables *symtables_p_;
+ String texsetting;
+
+ Lookup();
+ Lookup (Lookup const &);
+ ~Lookup();
+
+ void add (String, Symtable*);
+ void print() const;
+
+ Atom fill (Box b) const;
+ Atom beam_element (int,int,Real=0) const;
+
+ /// round slope to closest TeXslope
+ Atom beam (Real&,Real) const;
+
+ Atom streepje (int type) const;
+
+ Atom vbrace (Real &dy) const;
+ Atom meter (Array<Scalar>) const;
+ Atom stem (Real y1_pos, Real y2_pos) const;
+ Atom rule_symbol (Real height, Real width) const;
+ Atom accidental (int) const;
+ Atom ball (int) const;
+ Atom flag (int, Direction) const;
+ Atom rest (int, bool outside) const;
+ Atom clef (String) const;
+ Atom bar (String, Real height) const;
- Atom dots () const;
- Atom slur (int dy, Real &dx, Direction dir) const;
- Atom half_slur (int dy, Real &dx, Direction dir, int xpart) const;
- Atom half_slur_middlepart (Real &dx, Direction dir) const;
- Atom big_slur (int dy, Real &dx, Direction dir) const;
- Atom text (String style, String text, int align = 1) const;
- Atom script (String idx) const;
- Atom hairpin (Real & width, bool decresc) const;
- Atom dynamic (String) const;
- Lookup();
- Lookup (Lookup const &);
- ~Lookup();
+ Atom dots () const;
+ Atom slur (int dy, Real &dx, Direction dir) const;
+ Atom half_slur (int dy, Real &dx, Direction dir, int xpart) const;
+ Atom half_slur_middlepart (Real &dx, Direction dir) const;
+ Atom big_slur (int dy, Real &dx, Direction dir) const;
+ Atom text (String style, String text, int align = 1) const;
+ Atom script (String idx) const;
+ Atom hairpin (Real & width, bool decresc) const;
+ Atom dynamic (String) const;
};
#endif
virtual ~Paper_def();
DECLARE_MY_RUNTIME_TYPEINFO;
+ /**
+ Set or overwrite a variable
+ */
void set_var (String, Real);
+ /**
+ Read a variable. Crash if it doesn't exist.
+ */
Real get_var (String) const;
void reinit();
Paper_def();
{
paper_l_ = 0;
texsetting = "\\unknowntexsetting";
- symtables_ = new Symtables;
+ symtables_p_ = new Symtables;
}
Lookup::Lookup (Lookup const &s)
{
paper_l_ = s.paper_l_;
texsetting = s.texsetting;
- symtables_ = new Symtables (*s.symtables_);
+ symtables_p_ = new Symtables (*s.symtables_p_);
}
Lookup::~Lookup()
{
- delete symtables_;
+ delete symtables_p_;
}
void
Lookup::add (String s, Symtable*p)
{
- symtables_->add (s, p);
+ symtables_p_->add (s, p);
}
void
{
#ifndef NPRINT
DOUT << "Lookup: " << texsetting << " {\n";
- symtables_->print();
+ symtables_p_->print();
DOUT << "}\n";
#endif
}
Array<String> a;
a.push (text);
- Atom tsym = (*symtables_)("style")->lookup (style);
+ Atom tsym = (*symtables_p_)("style")->lookup (style);
a[0] = substitute_args (tsym.tex_,a);
- Atom s = (*symtables_)("align")->lookup (dir);
+ Atom s = (*symtables_p_)("align")->lookup (dir);
s.tex_ = substitute_args (s.tex_,a);
s.dim_ = tsym.dim_;
return s;
if (j > 2)
j = 2;
- Symtable * st = (*symtables_)("balls");
+ Symtable * st = (*symtables_p_)("balls");
return st->lookup (String (j));
}
Atom
Lookup::rest (int j, bool o) const
{
- return (*symtables_)("rests")->lookup (String (j) + (o ? "o" : ""));
+ return (*symtables_p_)("rests")->lookup (String (j) + (o ? "o" : ""));
}
Atom
Lookup::fill (Box b) const
{
- Atom s ((*symtables_)("param")->lookup ("fill"));
+ Atom s ((*symtables_p_)("param")->lookup ("fill"));
s.dim_ = b;
return s;
}
Atom
Lookup::accidental (int j) const
{
- return (*symtables_)("accidentals")->lookup (String (j));
+ return (*symtables_p_)("accidentals")->lookup (String (j));
}
{
Array<String> a;
a.push (print_dimen (h));
- Atom ret=(*symtables_)("bars")->lookup (s);;
+ Atom ret=(*symtables_p_)("bars")->lookup (s);;
ret.tex_ = substitute_args (ret.tex_, a);
ret.dim_.y() = Interval (0, h);
return ret;
Atom
Lookup::script (String s) const
{
- return (*symtables_)("scripts")->lookup (s);
+ return (*symtables_p_)("scripts")->lookup (s);
}
Atom
Lookup::dynamic (String s) const
{
- return (*symtables_)("dynamics")->lookup (s);
+ return (*symtables_p_)("dynamics")->lookup (s);
}
Atom
Lookup::clef (String s) const
{
- return (*symtables_)("clefs")->lookup (s);
+ return (*symtables_p_)("clefs")->lookup (s);
}
Atom
Lookup::dots () const
{
- return (*symtables_)("dots")->lookup ("dot");
+ return (*symtables_p_)("dots")->lookup ("dot");
}
Atom
Lookup::flag (int j, Direction d) const
{
char c = (d == UP) ? 'u' : 'd';
- return (*symtables_)("flags")->lookup (c + String (j));
+ return (*symtables_p_)("flags")->lookup (c + String (j));
}
Atom
if (type > 2)
type = 2;
- Symtable * st = (*symtables_)("balls");
+ Symtable * st = (*symtables_p_)("balls");
return st->lookup (String (type) + 'l');
}
if (!idx) idx ++;
wid = idx*6 PT;
String idxstr = (decresc)? "decrescendosym" : "crescendosym";
- Atom ret=(*symtables_)("param")->lookup (idxstr);
+ Atom ret=(*symtables_p_)("param")->lookup (idxstr);
Array<String> a;
a.push (idx);
return ret;
}
-Atom
-Lookup::linestaff (int lines, Real interline_f, Real wid) const
-{
- Atom s;
- Real dy = (lines >0) ? (lines-1)*interline_f : 0;
- s.dim_ = Box (Interval (0,wid), Interval (0,dy));
-
- Array<String> a;
- a.push (lines);
- a.push (print_dimen (wid));
-
- s.tex_ = (*symtables_)("param")->lookup ("linestaf").tex_;
- s.tex_ = substitute_args (s.tex_, a);
-
-
- s.translate_axis (-s.extent ()[Y_AXIS].center (), Y_AXIS);
-
- return s;
-}
-
-
Atom
Lookup::meter (Array<Scalar> a) const
{
- Atom s((*symtables_)("param")->lookup ("meter"));
+ Atom s((*symtables_p_)("param")->lookup ("meter"));
s.tex_ = substitute_args (s.tex_,a);
return s;
}
a.push (print_dimen (y1));
a.push (print_dimen (y2));
- String src = (*symtables_)("param")->lookup ("stem").tex_;
+ String src = (*symtables_p_)("param")->lookup ("stem").tex_;
s.tex_ = substitute_args (src,a);
return s;
}
int idx = int (rint ((y/2.0 - 20) + 148));
- Atom s = (*symtables_)("param")->lookup ("brace");
+ Atom s = (*symtables_p_)("param")->lookup ("brace");
{
Array<String> a;
a.push (idx);
Molecule*
Staff_symbol::brew_molecule_p() const
{
- Atom a = paper()->lookup_l ()->linestaff (no_lines_i_, paper ()->interline_f(), width ().length ());
- return new Molecule (a);
+ Paper_def * p = paper();
+ Atom rule = p->lookup_l ()->rule_symbol (p->get_var ("rule_thickness"),
+ width ().length ());
+ Real inter = p->interline_f ();
+ Real height = (no_lines_i_-1) * inter/2;
+ Molecule * m = new Molecule;
+ for (int i=0; i < no_lines_i_; i++)
+ {
+ Atom a (rule);
+ a.translate_axis (height - i * inter, Y_AXIS);
+ m->add (a);
+ }
+
+ return m;
}
Real