FFPM140: B dans U / z-z / -.-,
This commit is contained in:
parent
12ffacc1f7
commit
fdfadc6644
3 changed files with 8 additions and 1 deletions
|
|
@ -91,6 +91,11 @@ class ParseULine (var line: String, var measure: Int) {
|
|||
'K' -> repeat(5) { parseUStage2('4')}
|
||||
'G' -> repeat(4) { parseUStage2('4') }
|
||||
'C' -> repeat(3) { parseUStage2('4') }
|
||||
'B' -> run {
|
||||
parseUStage2('4')
|
||||
parseUStage2('4')
|
||||
parseUStage2('3')
|
||||
}
|
||||
'8' -> repeat(2) { parseUStage2('4') }
|
||||
'4', '3', '2', '1', 't' -> parseUStage2(it)
|
||||
'6' -> repeat(2) { parseUStage2('3')}
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ import kotlinx.coroutines.launch
|
|||
import kotlinx.coroutines.withContext
|
||||
import mg.dot.feufaro.FileRepository
|
||||
|
||||
//todo: split voices (ffpm19) ${S:mfs} in N4:
|
||||
//todo: split voices (ffpm19/ews22) ${S:mfs} in N4:
|
||||
|
||||
class Solfa(val sharedScreenModel: SharedScreenModel, private val fileRepository: FileRepository) {
|
||||
private val T: MutableList<PTemplate> = mutableListOf()
|
||||
|
|
|
|||
|
|
@ -55,6 +55,8 @@ class TUNote (private val detailNote: MutableList<Note> = mutableListOf()){
|
|||
.replace("'", "¹")
|
||||
.replace(Regex("[zZ][zZ\\.,]+(?![drmfslt])"), "")
|
||||
.replace(Regex("^-\\.,"), "")
|
||||
.replace(" ,z", "")
|
||||
.replace(Regex("^-.- *,"), "-. ,")
|
||||
.replace(Regex("\\.-\\s*$"), "")
|
||||
.replace(Regex(" ,-\\s*$"), "")
|
||||
.replace(Regex("\\((-[\\.,;][a-zA-Z][ia]*[¹²³₁₂₃]?)\\)"), "$1")
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue