From 3c100dc644580f7a6da3f3f027ec5da907851e3c Mon Sep 17 00:00:00 2001 From: fred Date: Sun, 24 Mar 2002 19:35:41 +0000 Subject: [PATCH] lilypond-0.0.43 --- Documentation/language.pod | 89 ++++++++++++++++++++++++++++++++++++++ lib/duration.cc | 5 --- lib/include/duration.hh | 7 +-- 3 files changed, 91 insertions(+), 10 deletions(-) diff --git a/Documentation/language.pod b/Documentation/language.pod index 4b74742642..181c4dea1f 100644 --- a/Documentation/language.pod +++ b/Documentation/language.pod @@ -133,6 +133,95 @@ it will make things easier. =head1 CONCRETE PROPOSALS +=head1 Decisions (Sat 1997-3-15, dommelpijpje no21) + +=over 4 + +=item * + +\keyword, bo difference notes vs. notenames, + +=item * + +{} hierachical, nest., + +=item * + +<> chords, + +=item * + +drop staff (NOT)?, + +=item * + +melody = \melodic{ } vs. \melodic melody = { } + +=item * + +lexer mode switch by types: \lyric{ }, \melodic{ }, etc., + +=item * + +octaves: low 'C C c c' c'' high; 'c' == c === "c-klein", comment: a ' +' a . Which ' for which a? Now using a!'`. + +=over 4 + +=item * + +\meter{ 2/4 }, + +=item * + +\grouping{ 2*8 3*8 }, + +=item * + +\skip{ 2: 2*8 3*32 }, + +=item * + +abbrev: [c2 c2]\noplet{1/2} (wat bout [c2 c2]1/2\noplet?), + +=item * + +abbrev: c4=16 (heu, =?), + +=item * + +plet === midi-note: c4*2/3; c4*385/384, + +=back + +=item * + +drop \music, + +=item * + +\meter compulsory in Simple mudela, + +=item * + +++ concat + +=item * + +C<+> is merge + +=item * + + \transpose{ \from c \to g \melodic{ c d e } } + \transpose{ \from c \to g melody } %!? + +=item * + + \extract{ \from 2:3*4 \to 5 oboe } + +=back + + =head1 THOUGHTS diff --git a/lib/duration.cc b/lib/duration.cc index f737d660d1..5504ed6e35 100644 --- a/lib/duration.cc +++ b/lib/duration.cc @@ -78,11 +78,6 @@ Plet::Plet( int iso_i, int type_i ) type_i_ = type_i; } -Plet::Plet( Plet const& plet_c_r ) -{ - iso_i_ = plet_c_r.iso_i_; - type_i_ = plet_c_r.type_i_; -} // statics Duration_convert bool Duration_convert::be_blonde_b_s = false; diff --git a/lib/include/duration.hh b/lib/include/duration.hh index c642ce6eda..5c56285954 100644 --- a/lib/include/duration.hh +++ b/lib/include/duration.hh @@ -27,7 +27,6 @@ struct Duration { void set_ticks( int ticks_i ); static int division_1_i_s; -// int i_; // balltype -> type! int type_i_; int dots_i_; Plet* plet_p_; @@ -37,10 +36,8 @@ struct Duration { /// (plet) struct Plet { Plet( int replace_i, int type_i ); - Plet( Plet const& plet_c_r ); - -// int i_; - int iso_i_; // 2/3; 2 is not duration, maar of count! + + int iso_i_; // 2/3; 2 is not duration, maar of count! int type_i_; }; -- 2.39.5