summary refs log tree commit diff stats
path: root/generator/pronunciation.cpp
blob: 3075d42b57e7cb4dcfdb7d9e0332f43f317e7a75 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
#include "pronunciation.h"
#include <list>
#include <algorithm>
#include <cctype>
#include <iterator>
#include <hkutil/string.h>

namespace verbly {
  namespace generator {

    int pronunciation::nextId_ = 0;

    pronunciation::pronunciation(std::string phonemes) :
      id_(nextId_++),
      phonemes_(phonemes)
    {
      auto phonemeList =
        hatkirby::split<std::list<std::string>>(phonemes, " ");

      std::list<std::string>::iterator rhymeStart =
        std::find_if(
          std::begin(phonemeList),
          std::end(phonemeList),
          [] (std::string phoneme) {
            return phoneme.find("1") != std::string::npos;
          });

      // Rhyme detection
      if (rhymeStart != std::end(phonemeList))
      {
        std::list<std::string> rhymePhonemes;

        std::transform(
          rhymeStart,
          std::end(phonemeList),
          std::back_inserter(rhymePhonemes),
          [] (std::string phoneme) {
            std::string naked;

            std::remove_copy_if(
              std::begin(phoneme),
              std::end(phoneme),
              std::back_inserter(naked),
              [] (char ch) {
                return std::isdigit(ch);
              });

            return naked;
          });

        rhyme_ =
          hatkirby::implode(
            std::begin(rhymePhonemes),
            std::end(rhymePhonemes),
            " ");

        if (rhymeStart != std::begin(phonemeList))
        {
          prerhyme_ = *std::prev(rhymeStart);
        }
      }

      // Syllable/stress
      for (std::string phoneme : phonemeList)
      {
        if (std::isdigit(phoneme.back()))
        {
          // It's a vowel!
          syllables_++;

          if (phoneme.back() == '1')
          {
            stress_.push_back('1');
          } else {
            stress_.push_back('0');
          }
        }
      }
    }

    hatkirby::database& operator<<(
      hatkirby::database& db,
      const pronunciation& arg)
    {
      std::list<hatkirby::column> fields;

      fields.emplace_back("pronunciation_id", arg.getId());
      fields.emplace_back("phonemes", arg.getPhonemes());
      fields.emplace_back("syllables", arg.getSyllables());
      fields.emplace_back("stress", arg.getStress());

      if (arg.hasRhyme())
      {
        fields.emplace_back("rhyme", arg.getRhymePhonemes());
        fields.emplace_back("prerhyme", arg.getPrerhyme());
      }

      db.insertIntoTable("pronunciations", std::move(fields));

      return db;
    }

  };
};