Exemplo n.º 1
0
        public void ApplyZones(ProjectLine projectLine)
        {
            var completed = true;

            completed &= ApplyZonesAndReturnCompleted(projectLine, PhonemeType.Vowel);
            completed &= ApplyZonesAndReturnCompleted(projectLine, PhonemeType.Consonant);
            completed &= ApplyZonesAndReturnCompleted(projectLine, PhonemeType.Rest);
            projectLine.IsCompleted = completed;
        }
Exemplo n.º 2
0
        public static ProjectLine CreateNewFromRecline(Recline recline)
        {
            var projectLine = new ProjectLine()
            {
                RestPoints      = new List <int>(),
                VowelPoints     = new List <int>(),
                ConsonantPoints = new List <int>(),
                Recline         = recline
            };

            return(projectLine);
        }
Exemplo n.º 3
0
        public static ProjectLine Read(Recline recline, string pds, string pvs, string pcs)
        {
            var projectLine = new ProjectLine();

            projectLine.SetRecline(recline);
            if (pds.Length > 0)
            {
                projectLine.RestPoints = pds.Split(' ').Select(n => int.Parse(n)).ToList();
            }
            if (pvs.Length > 0)
            {
                projectLine.VowelPoints = pvs.Split(' ').Select(n => int.Parse(n)).ToList();
            }
            if (pcs.Length > 0)
            {
                projectLine.ConsonantPoints = pcs.Split(' ').Select(n => int.Parse(n)).ToList();
            }

            return(projectLine);
        }
Exemplo n.º 4
0
        public void GenerateFromProjectLine(ProjectLine projectLine)
        {
            var recline         = projectLine.Recline;
            var position        = 0;
            var reclinePhonemes = recline.GetPhonemesForGeneration();

            var phonemesOfType = new Dictionary <PhonemeType, List <Phoneme> >
            {
                [PhonemeType.Vowel]     = new List <Phoneme>(),
                [PhonemeType.Consonant] = new List <Phoneme>(),
                [PhonemeType.Rest]      = new List <Phoneme>()
            };

            foreach (var phoneme in reclinePhonemes)
            {
                phonemesOfType[phoneme.Type].Add(phoneme);
            }

            for (int i = 1; i < reclinePhonemes.Count - 1; i++)
            {
                for (int count = 1; count < 6 && i + count - 1 < reclinePhonemes.Count; count++)
                {
                    var phonemes = reclinePhonemes.GetRange(i, count);
                    var next     = i + count < reclinePhonemes.Count ? reclinePhonemes[i + count] : null;
                    var otoRaw   = GenerateSingleOto(projectLine, position, phonemes.ToArray(), phonemesOfType, next);
                    if (otoRaw != null)
                    {
                        (var alias, var oto) = Project.AddOto(otoRaw);
                        if (oto != null)
                        {
                            recline.AddOto(alias, oto);
                        }
                    }
                }

                if (reclinePhonemes[i].Type != PhonemeType.Consonant)
                {
                    position++;
                }
            }
        }
Exemplo n.º 5
0
        public bool CanAddPoint(PhonemeType phonemeType, ProjectLine projectLine)
        {
            if (projectLine.Recline == null)
            {
                return(false);
            }
            var phonemes     = projectLine.Recline.PhonemesOfType(phonemeType);
            var neededCount  = phonemes.Count * 2;
            var realPhonemes = projectLine.PointsOfType(phonemeType, virtuals: false).Count;
            var canIfNoSkip  = realPhonemes < neededCount;

            if (!IsConfigured())
            {
                return(canIfNoSkip);
            }

            var filename = projectLine.Recline.Name;

            if (!wavGroupsByFilename.ContainsKey(filename))
            {
                return(canIfNoSkip);
            }

            var wavGroup      = wavGroupsByFilename[filename][0];
            var skips         = wavGroup.GetSkippedPhonemesOfType(phonemeType);
            var neededByGroup = 0;

            for (var i = 0; i < phonemes.Count; i++)
            {
                if (!skips.Contains(i))
                {
                    neededByGroup += 2;
                }
            }
            return(realPhonemes < neededByGroup);
        }
Exemplo n.º 6
0
        private Oto GenerateSingleOto(ProjectLine projectLine, int position, Phoneme[] phonemes, Dictionary <PhonemeType, List <Phoneme> > phonemesOfType, Phoneme next)
        {
            var recline = projectLine.Recline;

            Phoneme   p1 = phonemes.First();
            Phoneme   p2 = phonemes.Last();
            double    offset = 0, consonant = 0, cutoff = 0, preutterance = 0, overlap = 0;
            bool      hasZones  = p1.HasZone && p2.HasZone;
            AliasType aliasType = AliasTypeResolver.Current.GetAliasType(GetAliasType(phonemes));
            bool      masked    = aliasType != AliasType.undefined && Project.Reclist.WavMask.CanGenerateOnPosition(projectLine.Recline.Name, aliasType, position);
            var       p1Attack  = Project.AttackOfType(p1.Type);
            var       p2Attack  = Project.AttackOfType(p2.Type);

            if (!masked)
            {
                return(null);
            }

            string alias = Project.Replacer.MakeAlias(phonemes, aliasType);

            if (alias == null)
            {
                return(null);
            }

            bool hasAliasType = true;

            switch (aliasType)
            {
            // Absolute values, relative ones are made in Oto on write (!)
            case AliasType.V:
                offset       = p1.Zone.In + Project.DecayV;
                overlap      = p1.Zone.In + Project.DecayV + Project.DecayV;
                preutterance = overlap - 5;
                consonant    = overlap;
                cutoff       = p1.Zone.Out - p1Attack;
                break;

            // Ends with vowel
            case AliasType.VV:
            case AliasType.CV:
            case AliasType.CmV:
            case AliasType.VCV:
            case AliasType.VCmV:
                offset       = p1.Zone.Out - p1Attack < p1.Zone.In ? p1.Zone.In : p1.Zone.Out - p1Attack;
                overlap      = p1.Zone.Out;
                preutterance = p2.Zone.In;
                consonant    = p2.Zone.In + Project.DecayV;
                cutoff       = p2.Zone.Out - p2Attack;
                break;

            case AliasType.RV:
                offset       = p1.Zone.Out;
                overlap      = p1.Zone.Out + p1Attack;
                preutterance = p2.Zone.In;
                consonant    = p2.Zone.In + Project.DecayV;
                cutoff       = p2.Zone.Out - p2Attack;
                break;

            case AliasType.RCV:
            case AliasType.RCmV:
                offset       = p1.Zone.Out;
                overlap      = p1.Zone.Out + p1Attack;
                preutterance = p2.Zone.In;
                consonant    = p2.Zone.In + Project.DecayV;
                cutoff       = p2.Zone.Out - p2Attack;
                break;

            case AliasType.RC:
            case AliasType.RCm:
                var nextP  = next != null ? next.Zone.In : p2.Zone.Out;
                var firstC = phonemes[1];
                offset       = firstC.Zone.In - p1Attack;
                overlap      = firstC.Zone.In;
                preutterance = p2.Zone.In;
                consonant    = nextP + Project.DecayC;
                cutoff       = nextP + Project.DecayC + Project.AttackC;
                break;

            // Ends with Rest

            case AliasType.VR:
            case AliasType.VCR:
            case AliasType.VCmR:
                offset       = p1.Zone.Out - p1Attack;
                overlap      = p1.Zone.Out;
                preutterance = p2.Zone.In;
                consonant    = p2.Zone.Out + Project.DecayR;
                cutoff       = next == null || IsNextLast(next) ? 0 : next.Zone.In - Project.AttackR;
                break;

            case AliasType.CR:
            case AliasType.CmR:
                offset       = p1.Zone.In;
                overlap      = p1.Zone.Out;
                preutterance = p2.Zone.In;
                consonant    = p2.Zone.Out + Project.DecayR;
                cutoff       = next == null || IsNextLast(next) ? 0 : next.Zone.In - Project.AttackR;
                break;

            // Ends with Consonant
            case AliasType.VC:
            case AliasType.VCm:
            case AliasType.Cm:
                offset       = p1.Zone.Out - p1Attack;
                overlap      = p1.Zone.Out;
                preutterance = p2.Zone.In;
                consonant    = p2.Zone.Out - p2Attack;
                cutoff       = p2.Zone.Out;
                break;

            default:
                hasAliasType = false;
                break;
            }
            if (hasAliasType)
            {
                if (hasZones)
                {
                    var oto = new Oto(recline.Name, alias, offset, consonant, cutoff, preutterance, overlap);
                    oto.Smarty();
                    return(oto);
                }
                else if (MustGeneratePreoto)
                {
                    return(new Oto(recline.Name, alias, 10, 100, 150, 60, 40));
                }
            }
            return(null);
        }
Exemplo n.º 7
0
        private bool ApplyZonesAndReturnCompleted(ProjectLine projectLine, PhonemeType type)
        {
            var points   = projectLine.PointsOfType(type, false);
            var zones    = projectLine.ZonesOfType(type);
            var phonemes = projectLine.Recline.PhonemesOfType(type);
            var filename = projectLine.Recline.Name;

            zones.Clear();
            var completed = true;

            int pointI = 0;

            if (type == PhonemeType.Rest)
            {
                for (int i = 0; i < phonemes.Count; i++)
                {
                    while (WavMask.MustSkipPhoneme(filename, type, i) && i < phonemes.Count)
                    {
                        phonemes[i].IsSkipped = true;
                        i++;
                    }
                    if (i >= phonemes.Count)
                    {
                        return(completed);
                    }
                    var phoneme = phonemes[i];
                    phoneme.IsSkipped = false;

                    if ((i == 0 || i == phonemes.Count - 1) && pointI < points.Count)
                    {
                        var pointIn  = points[pointI];
                        var pointOut = points[pointI];
                        pointI++;
                        phoneme.Zone    = new Zone(pointIn, pointOut);
                        phoneme.HasZone = true;
                        zones.Add(phoneme.Zone);
                    }
                    else if (pointI + 1 >= points.Count)
                    {
                        completed       = false;
                        phoneme.Zone    = new Zone();
                        phoneme.HasZone = false;
                    }
                    else
                    {
                        var pointIn = points[pointI];
                        pointI++;
                        var pointOut = points[pointI];
                        pointI++;
                        phoneme.Zone    = new Zone(pointIn, pointOut);
                        phoneme.HasZone = true;
                        zones.Add(phoneme.Zone);
                    }
                }
            }
            else
            {
                for (int i = 0; i < phonemes.Count; i++)
                {
                    while (WavMask.MustSkipPhoneme(filename, type, i) && i < phonemes.Count)
                    {
                        phonemes[i].IsSkipped = true;
                        i++;
                    }
                    if (i >= phonemes.Count)
                    {
                        return(completed);
                    }
                    var phoneme = phonemes[i];
                    phoneme.IsSkipped = false;

                    if (pointI + 1 >= points.Count)
                    {
                        completed       = false;
                        phoneme.Zone    = new Zone();
                        phoneme.HasZone = false;
                    }
                    else
                    {
                        var pointIn = points[pointI];
                        pointI++;
                        var pointOut = points[pointI];
                        pointI++;
                        phoneme.Zone    = new Zone(pointIn, pointOut);
                        phoneme.HasZone = true;
                        zones.Add(phoneme.Zone);
                    }
                }
            }
            return(completed);
        }