Skip to content

Commit f440eab

Browse files
committedNov 26, 2024·
ending fixes
1 parent d52c236 commit f440eab

File tree

1 file changed

+3
-8
lines changed

1 file changed

+3
-8
lines changed
 

‎OpenUtau.Plugin.Builtin/ArpasingPlusPhonemizer.cs

+3-8
Original file line numberDiff line numberDiff line change
@@ -90,10 +90,6 @@ public class ArpasingPlusPhonemizer : SyllableBasedPhonemizer {
9090

9191
private readonly Dictionary<string, string> vvExceptions =
9292
new Dictionary<string, string>() {
93-
{"e","y"},
94-
{"i","y"},
95-
{"o","w"},
96-
{"u","w"},
9793
{"aw","w"},
9894
{"ow","w"},
9995
{"uw","w"},
@@ -619,7 +615,6 @@ protected override List<string> ProcessEnding(Ending ending) {
619615
firstC = 1;
620616
break;
621617
} else if ((HasOto(vcc2, ending.tone) || HasOto(ValidateAlias(vcc2), ending.tone)) && lastC == 1 && !ccvException.Contains(cc[0])) {
622-
623618
phonemes.Add(vcc2);
624619
firstC = 1;
625620
break;
@@ -809,16 +804,16 @@ private string AliasFormat(string alias, string type, int tone, string prevV) {
809804
// If the alias contains a space, split it into consonant and vowel
810805
if (alias.Contains(" ")) {
811806
var parts = alias.Split(' ');
812-
consonant = parts[0];
813-
vowel = parts[1];
807+
consonant = parts[1];
808+
vowel = parts[0];
814809
} else {
815810
consonant = alias;
816811
}
817812
var dynamicVariations1 = new List<string> {
813+
$"{vowel}{consonant} -", // "VC -"
818814
$"{vowel} {consonant}-", // "V C-"
819815
$"{vowel}{consonant}-", // "VC-"
820816
$"{vowel} {consonant} -", // "V C -"
821-
$"{vowel}{consonant} -", // "VC -"
822817
};
823818
// Check each dynamically generated format
824819
foreach (var variation1 in dynamicVariations1) {

0 commit comments

Comments
 (0)
Please sign in to comment.