Closed suntong closed 1 year ago
Hi, yes it's doable but there are two problems:
1
always means a crotchet (quarter note), and if we change that to meaning "the same length as before", then we will have to look out for all the places where we really do want a quarter note, and put in whatever code we need to to say "yes I really do want this to be a quarter note and not the same length as the previous note". So it's not entirely backwards compatible. We could introduce some kind of "switch to the other way of doing it" option, but that might make jianpu-ly input more complicated than it needs to be.Yes, indeed, I've foresee those two problems.
For #1, no, it's not my intention to break any backward compatibility. I think this is the key to answer both questions. I.e., the old way still works (and would still be prefered), and the "current note length" might need a new directive. IE provide people a choice, but not forcing them into anything.
For the 2nd point, the Lilypond's built-in limitation, and "1 always means a crotchet (quarter note)" my view on this is that, tools are there to assist people, but not to limit/restrict people. Just like in programming language, in C/C++, people need to be very aware of the differences between v.name
vs v->name
, whereas in moden Golang, both cases are specified as v.name
and the interpreter will make the determination. IE, if a program/tool can bring simplicity for human being while it does a bit of extra work, it is worthwhile. For me, looking at 1 q1 q1 s1 s1 s1 s1 d1 d1 d1 d1 d1 d1 d1 d1
and 1 q1 1 s1 1 1 1 d1 1 1 1 1 1 1 1
, I will find the latter more clearer and more easy to write.
Please consider, please, the changes to the source code is minimum.
Thanks
It'll make children songs like this to be very clean in the notes:
It'll make children songs like this to be very clean in the notes:
Thanks for the fix. I've prepared a demo for showing the differences -- add two ways to do demo-ssg
Trying to make the jianpu notation to be "aesthetics, flexibility and ease of use", I think the following is a good idea:
IE, there are two things we can borrow from the above.
So, the jianpu-ly notation of
1 q1 q1 s1 s1 s1 s1 d1 d1 d1 d1 d1 d1 d1 d1
can be simplified as
1 q1 1 s1 1 1 1 d1 1 1 1 1 1 1 1
I believe the above two are easily to adopt, do not conflict with existing jianpu-ly notation, and when introduced, will improve the usability with just minor changes.
What do you say?