3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

絶頂度の計算方法についてそれなりに真剣に考えた

Posted at

少し前にバズっていた以下の記事があまりに面白かったので

この絶頂度計算なるものを誰か編み出してくれないかなーと思っていたのですが誰もやってくれないので自分で考えてみました。

結論としてあまり良い結果は得られませんでしたが、firebaseで公開しましたのでよかったら遊んでみてください。

記事内容からの仕様読み取り

「あえぎエディタ.xls」と題されたエクセルファイルは、前任者が残したあえぎ声専用のマクロ

Excelのマクロ(VBA)で作成されている。この場合、分かち書きなどはできないはずなので、特定の発言をしていればポイントを高くするなどの文章解析処理にあたるものは行なっていない可能性が高い。

縦に並んだセルにセリフを一つずつ入力していくと、各セリフに含まれる母音・子音等の音声的要素が自動で数値化される。
さらに、その数値を足し引き計算することで、「絶頂度」と呼ばれる値が算出される仕組み

母音・子音に分解し、数値を足し引き計算しているだけで算出している。

あえぎ声を入力するセルには、理論上どんな文章も入れることができる。
つまり、あえぎ声以外のテキストでも、その「絶頂度」を算出できるのだ。

この絶頂度計算の仕組みは本来あえぎ声を計算することだけを想定したものであり、作者は通常の文章までカバーすることまでは想定していなかったはず。

さらに、テキストの長さを調整することも重要だ。
短すぎると気持ちいい感じが伝わらないのだが、かといって長すぎるとボイスが冗長になる。

文章の長さが重要。短すぎるのも長すぎるのもダメ。

「私はその人を常に先生と呼んでいた。」は12、「親譲りの無鉄砲で小供の時から損ばかりしている。」は30という具合だ。

とくに顕著なのは芥川で、「下人の行方は、誰も知らない。」など絶頂度367だ。

薬漬けになった人妻が白目を剥いて失神するシーンでもせいぜい330程度

大学名によっても異なるが、概して「卒業」よりも「中退」のほうが絶頂度は高くなる。

計算結果の大小は上記を満たしているべき。

↑この一文の絶頂度は290だ。
かなり高まってきているので、この辺りで文章を終わりにしたい。
んほぉぉぉぉ! あああぁぁん!!

最後の一文「んほぉぉぉぉ! あああぁぁん!!」の絶頂度は290よりも高いはず。

ここまでの話でそれが出ている例は「下人の行方は、誰も知らない。」以外には"薬漬けになった人妻が白目を剥いて失神するシーン"のあえぎ声。
「んほぉぉぉぉ! あああぁぁん!!」="薬漬けになった人妻が白目を剥いて失神するシーン"のあえぎ声、か? 
その場合「んほぉぉぉぉ! あああぁぁん!!」の絶頂度はかなり高いが「下人の行方は、誰も知らない。」よりは低いものと推察される。

読み取った内容からの考察と実装内容

  • 文章の各文字の音声要素(母音・子音)ごとに「恍惚ポイント」というものを設定し、その四則演算から値を算出した。
    • 恍惚ポイントはその発音をするために「口元にどれだけ複雑な操作が必要か」「全身が緊張状態の時に発音しやすいか」という2つの基準から、主観的に判断して決定。なお、口元の操作が複雑であるほど恍惚ポイントは低く、緊張状態のときに発音しやすいほど恍惚ポイントは高い。
  • 母音の恍惚ポイント×子音の恍惚ポイントを、文章中でその文字が持つ恍惚ポイントと定義。その文字ごとの恍惚ポイントおよび前の文字からの恍惚の変化量(※1)を合算した値を基本の値とした。
    • ※1:つまり、恍惚ポイントが高い発音から低い発音への移行が多い場合は全体としての恍惚ポイントは低めになる補正がかかり、低い恍惚ポイントから高い恍惚ポイントへ移行する発音が多い場合は高めになる補正がかかる
  • 読点や感嘆符など、実際に発声する際には息継ぎが発声すると思われる文字が現れた場合、そこで息継ぎが発声したものとみなし、そこまでの文章を「単呼吸内の発声」として扱う。
    • 恍惚ポイントの移行計算は息継ぎが発生した時点でリセットする
    • 単呼吸内で発声した文字数が適切であるほど絶頂度が高いとみなし、その基準を8文字と設定した。8文字ちょうどの場合にもっとも評価が高く、8文字から乖離するほど評価が低くなる。
  • 読点や感嘆符も込みで1つの文章(あえぎ声)全体の長さが16文字以内であることを制限とした。制限文字数内では文字数が多いほどエロさが高いとして絶頂度が高くなる。いっぽう制限文字数を超えたものは冗長であるとしてとたんに評価が下がる。
  • なお、「音声的要素」と言っているので、前の文字による発音の変化も考慮に入れたが、音素ごとのポイント評価が途中で面倒くさくなって似たような発音をするものには結局同じポイントを振っていったので、あまり意味はなかったかもしれない
  • 計算結果として記事に記載されている絶頂度の値そのものを目指すのは困難であることが予想されたため、例にあげられている文章と相対的な高低関係がある程度あっていればよいものとした。
  • 漢字込みの文章がコピペで入力された場合に、その読み方を正確に特定できる機能を実装することは難しかったため、漢字込みの文章は対応せず、ひらがなもしくはカタカナのみの入力を許容することとした。
  • Excelの場合は、Excel上で入力した文章であれば読み仮名を特定してくれる機能があるらしい。(参考: https://getnavi.jp/business/64775/

そしてできたものがこれ

URL

画面

画面

絶頂度算出のコード

const pronunciateVariationN = (prevPronunciation, nextPronunciation) => {
    // 語末では通常は口蓋垂鼻音 [ɴ]、たまに軟口蓋鼻音 [ŋ] になる。歌手の多くは両唇鼻音 [m]を語末の「ん」として使う。
    if (nextPronunciation == null) return "ɴ";

    if (nextPronunciation["consonant"].length == 0) {
        const firstConsonant = nextPronunciation["consonant"].slice(0, 1);

        // [n]・[t]・[d] の前では歯茎鼻音 [n] になる。
        if (["n", "t", "d"].includes(firstConsonant)) return "n";

        // [m]・[p]・[b] の前では両唇鼻音 [m] になる。
        if (["m", "p", "b"].includes(firstConsonant)) return "m";

        // [k]・[g] の前では軟口蓋鼻音 [ŋ] になる。
        if (["k", "g"].includes(firstConsonant)) return "ŋ";

        // 母音、半母音、摩擦音または、はじき音の前のときは鼻母音になる。
        if (["s", "h"].includes(firstConsonant)) return " ̃";

        // 撥音 /N/ は、後ろが子音が続くときはその子音と同じ調音位置になる。
        return "ɴ";
    }

    // 母音、半母音、摩擦音または、はじき音の前のときは鼻母音になる。
    return " ̃";
};

const pronunciateVariationQ = (prevPronunciation, nextPronunciation) => {
    /**
     * 語末では声門閉鎖音 [ʔ] になる
     */
    if (nextPronunciation == null) return "ʔ";

    if (nextPronunciation["consonant"].length > 0) {

        const firstConsonant = nextPronunciation["consonant"].slice(0, 1);

        /**
         * 破裂音の前ではその破裂音の内破音である。
            /p/ の前では [p̚] になる。
            例 葉っぱ [hap̚pa]
            /t/ の前では [t̚] になる。
            例 打った [ut̚ta]
            /k/ の前では [k̚] になる。
            例 作家 [sak̚ka]
         */
        if (["p"].includes(firstConsonant)) return "";
        if (["t"].includes(firstConsonant) && nextPronunciation["vowel"] != "a") return "";
        if (["k"].includes(firstConsonant)) return "";

        /**
         * 破擦音の前では内破音の[t]になる。
            例 一致 [it̚tɕi]
            例 ブリッジ [buɽit̚dʑi]
            例 グッズ [gut̚dzu]
            例 三つ [mit̚tsu]
         */
        if (["t", "d", "z"].includes(firstConsonant)) return "";

        /**
         * 摩擦音の前ではその摩擦音を伸ばす。
            例 あっさり [assaɾʲi]
            例 一緒 [iɕɕo]
            例 バッハ [bahha]
            例 ビュッフェ [bjuɸɸe]
            例 ワッフル [waɸɸuɽu]
         */
        if (["s", "h"].includes(firstConsonant)) return firstConsonant;
        if (firstConsonant in ["s", "h"]) return firstConsonant;
    }

    return "";
}

const pronunciateVariationR = (prevPronunciation, nextPronunciation) => {

    if (prevPronunciation["vowel"].length > 0) {
        return prevPronunciation["vowel"];
    }

    return "";
}


const pronunciations = {
    "": {"full": "a", "consonant": "", "vowel": "a"},
    "": {"full": "a", "consonant": "", "vowel": "a"},
    "": {"full": "i", "consonant": "", "vowel": "i"},
    "": {"full": "i", "consonant": "", "vowel": "i"},
    "": {"full": "u", "consonant": "", "vowel": "u"},
    "": {"full": "ɯ", "consonant": "", "vowel": "ɯ"},
    "": {"full": "e", "consonant": "", "vowel": "e"},
    "": {"full": "e", "consonant": "", "vowel": "e"},
    "": {"full": "o", "consonant": "", "vowel": "o"},
    "": {"full": "o", "consonant": "", "vowel": "o"},
    "": {"full": "ka", "consonant": "k", "vowel": "a"},
    "": {"full": "ka", "consonant": "k", "vowel": "a"},
    "": {"full": "ga", "consonant": "g", "vowel": "a"},
    "": {"full": "ɡa", "consonant": "ɡ", "vowel": "a"},
    "": {"full": "ki", "consonant": "k", "vowel": "i"},
    "": {"full": "kʲi", "consonant": "", "vowel": "i"},
    "": {"full": "gi", "consonant": "g", "vowel": "i"},
    "": {"full": "ɡʲi", "consonant": "ɡʲ", "vowel": "i"},
    "きゃ": {"full": "kya", "consonant": "ky", "vowel": "a"},
    "キャ": {"full": "kʲa", "consonant": "", "vowel": "a"},
    "ぎゃ": {"full": "gya", "consonant": "gy", "vowel": "a"},
    "ギャ": {"full": "ɡʲa", "consonant": "ɡʲ", "vowel": "a"},
    "きゅ": {"full": "kyu", "consonant": "ky", "vowel": "u"},
    "キュ": {"full": "kʲɯ", "consonant": "", "vowel": "ɯ"},
    "ぎゅ": {"full": "gyu", "consonant": "gy", "vowel": "u"},
    "ギュ": {"full": "ɡʲɯ", "consonant": "ɡʲ", "vowel": "ɯ"},
    "きょ": {"full": "kyo", "consonant": "ky", "vowel": "o"},
    "キョ": {"full": "kʲo", "consonant": "", "vowel": "o"},
    "ぎょ": {"full": "gyo", "consonant": "gy", "vowel": "o"},
    "ギョ": {"full": "ɡʲo", "consonant": "ɡʲ", "vowel": "o"},
    "": {"full": "ku", "consonant": "k", "vowel": "u"},
    "": {"full": "", "consonant": "k", "vowel": "ɯ"},
    "": {"full": "gu", "consonant": "g", "vowel": "u"},
    "": {"full": "ɡɯ", "consonant": "ɡ", "vowel": "ɯ"},
    "": {"full": "ke", "consonant": "k", "vowel": "e"},
    "": {"full": "ke", "consonant": "k", "vowel": "e"},
    "": {"full": "ge", "consonant": "g", "vowel": "e"},
    "": {"full": "ɡe", "consonant": "ɡ", "vowel": "e"},
    "": {"full": "ko", "consonant": "k", "vowel": "o"},
    "": {"full": "ko", "consonant": "k", "vowel": "o"},
    "": {"full": "go", "consonant": "g", "vowel": "o"},
    "": {"full": "ɡo", "consonant": "ɡ", "vowel": "o"},
    "": {"full": "sa", "consonant": "s", "vowel": "a"},
    "": {"full": "sa", "consonant": "s", "vowel": "a"},
    "": {"full": "za", "consonant": "z", "vowel": "a"},
    "": {"full": "dza", "consonant": "dz", "vowel": "a"},
    "": {"full": "si", "consonant": "s", "vowel": "i"},
    "": {"full": "ʃi", "consonant": "ʃ", "vowel": "i"},
    "": {"full": "zi", "consonant": "z", "vowel": "i"},
    "": {"full": "ʤi", "consonant": "ʤ", "vowel": "i"},
    "しゃ": {"full": "sya", "consonant": "sy", "vowel": "a"},
    "シャ": {"full": "ʃa", "consonant": "ʃ", "vowel": "a"},
    "じゃ": {"full": "zya", "consonant": "zy", "vowel": "a"},
    "ジャ": {"full": "ʤa", "consonant": "ʤ", "vowel": "a"},
    "しゅ": {"full": "syu", "consonant": "sy", "vowel": "u"},
    "シュ": {"full": "ʃɯ", "consonant": "ʃ", "vowel": "ɯ"},
    "じゅ": {"full": "zyu", "consonant": "zy", "vowel": "u"},
    "ジュ": {"full": "ʤɯ", "consonant": "ʤ", "vowel": "ɯ"},
    "しょ": {"full": "syo", "consonant": "sy", "vowel": "o"},
    "ショ": {"full": "ʃo", "consonant": "ʃ", "vowel": "o"},
    "じょ": {"full": "zyo", "consonant": "zy", "vowel": "o"},
    "ジョ": {"full": "ʤo", "consonant": "ʤ", "vowel": "o"},
    "": {"full": "su", "consonant": "s", "vowel": "u"},
    "": {"full": "", "consonant": "s", "vowel": "ɯ"},
    "": {"full": "zu", "consonant": "z", "vowel": "u"},
    "": {"full": "dzɯ", "consonant": "dz", "vowel": "ɯ"},
    "": {"full": "se", "consonant": "s", "vowel": "e"},
    "": {"full": "se", "consonant": "s", "vowel": "e"},
    "": {"full": "ze", "consonant": "z", "vowel": "e"},
    "": {"full": "dze", "consonant": "dz", "vowel": "e"},
    "": {"full": "so", "consonant": "s", "vowel": "o"},
    "": {"full": "so", "consonant": "s", "vowel": "o"},
    "": {"full": "zo", "consonant": "z", "vowel": "o"},
    "": {"full": "dzo", "consonant": "dz", "vowel": "o"},
    "": {"full": "ta", "consonant": "t", "vowel": "a"},
    "": {"full": "ta", "consonant": "t", "vowel": "a"},
    "": {"full": "da", "consonant": "d", "vowel": "a"},
    "": {"full": "da", "consonant": "d", "vowel": "a"},
    "": {"full": "ti", "consonant": "t", "vowel": "i"},
    "": {"full": "tʃi", "consonant": "", "vowel": "i"},
    "": {"full": "di", "consonant": "d", "vowel": "i"},
    "": {"full": "ʤi", "consonant": "ʤ", "vowel": "i"},
    "ちゃ": {"full": "tya", "consonant": "ty", "vowel": "a"},
    "チャ": {"full": "tʃa", "consonant": "", "vowel": "a"},
    "ぢゃ": {"full": "dya", "consonant": "dy", "vowel": "a"},
    "ヂャ": {"full": "ʤa", "consonant": "ʤ", "vowel": "a"},
    "ちゅ": {"full": "tyu", "consonant": "ty", "vowel": "u"},
    "チュ": {"full": "tʃɯ", "consonant": "", "vowel": "ɯ"},
    "ぢゅ": {"full": "dyu", "consonant": "dy", "vowel": "u"},
    "ヂュ": {"full": "ʤɯ", "consonant": "ʤ", "vowel": "ɯ"},
    "ちょ": {"full": "tyo", "consonant": "ty", "vowel": "o"},
    "チョ": {"full": "tʃo", "consonant": "", "vowel": "o"},
    "ぢょ": {"full": "dyo", "consonant": "dy", "vowel": "o"},
    "ヂョ": {"full": "ʤo", "consonant": "ʤ", "vowel": "o"},
    "": {"full": "tu", "consonant": "t", "vowel": "u"},
    "": {"full": "tsɯ", "consonant": "ts", "vowel": "ɯ"},
    "": {"full": "du", "consonant": "d", "vowel": "u"},
    "": {"full": "dzɯ", "consonant": "dz", "vowel": "ɯ"},
    "": {"full": "te", "consonant": "t", "vowel": "e"},
    "": {"full": "te", "consonant": "t", "vowel": "e"},
    "": {"full": "de", "consonant": "d", "vowel": "e"},
    "": {"full": "de", "consonant": "d", "vowel": "e"},
    "": {"full": "to", "consonant": "t", "vowel": "o"},
    "": {"full": "to", "consonant": "t", "vowel": "o"},
    "": {"full": "do", "consonant": "d", "vowel": "o"},
    "": {"full": "do", "consonant": "d", "vowel": "o"},
    "": {"full": "na", "consonant": "n", "vowel": "a"},
    "": {"full": "na", "consonant": "n", "vowel": "a"},
    "": {"full": "ni", "consonant": "n", "vowel": "i"},
    "": {"full": "ɲi", "consonant": "ɲ", "vowel": "i"},
    "にゃ": {"full": "nya", "consonant": "ny", "vowel": "a"},
    "ニャ": {"full": "ɲa", "consonant": "ɲ", "vowel": "a"},
    "にゅ": {"full": "nyu", "consonant": "ny", "vowel": "u"},
    "ニュ": {"full": "ɲɯ", "consonant": "ɲ", "vowel": "ɯ"},
    "にょ": {"full": "nyo", "consonant": "ny", "vowel": "o"},
    "ニョ": {"full": "ɲo", "consonant": "ɲ", "vowel": "o"},
    "": {"full": "nu", "consonant": "n", "vowel": "u"},
    "": {"full": "", "consonant": "n", "vowel": "ɯ"},
    "": {"full": "ne", "consonant": "n", "vowel": "e"},
    "": {"full": "ne", "consonant": "n", "vowel": "e"},
    "": {"full": "no", "consonant": "n", "vowel": "o"},
    "": {"full": "no", "consonant": "n", "vowel": "o"},
    "": {"full": "ha", "consonant": "h", "vowel": "a"},
    "": {"full": "ha", "consonant": "h", "vowel": "a"},
    "": {"full": "ba", "consonant": "b", "vowel": "a"},
    "": {"full": "ba", "consonant": "b", "vowel": "a"},
    "": {"full": "pa", "consonant": "p", "vowel": "a"},
    "": {"full": "pa", "consonant": "p", "vowel": "a"},
    "": {"full": "hi", "consonant": "h", "vowel": "i"},
    "": {"full": "çʲi", "consonant": "çʲ", "vowel": "i"},
    "": {"full": "bi", "consonant": "b", "vowel": "i"},
    "": {"full": "bʲi", "consonant": "", "vowel": "i"},
    "": {"full": "pi", "consonant": "p", "vowel": "i"},
    "": {"full": "pʲi", "consonant": "", "vowel": "i"},
    "ひゃ": {"full": "hya", "consonant": "hy", "vowel": "a"},
    "ヒャ": {"full": "ça", "consonant": "ç", "vowel": "a"},
    "びゃ": {"full": "bya", "consonant": "by", "vowel": "a"},
    "ビャ": {"full": "bʲa", "consonant": "", "vowel": "a"},
    "ぴゃ": {"full": "pya", "consonant": "py", "vowel": "a"},
    "ピャ": {"full": "pʲa", "consonant": "", "vowel": "a"},
    "ひゅ": {"full": "hyu", "consonant": "hy", "vowel": "u"},
    "ヒュ": {"full": "çɯ", "consonant": "ç", "vowel": "ɯ"},
    "びゅ": {"full": "byu", "consonant": "by", "vowel": "u"},
    "ビュ": {"full": "bʲɯ", "consonant": "", "vowel": "ɯ"},
    "ぴゅ": {"full": "pyu", "consonant": "py", "vowel": "u"},
    "ピュ": {"full": "pʲɯ", "consonant": "", "vowel": "ɯ"},
    "ひょ": {"full": "hyo", "consonant": "hy", "vowel": "o"},
    "ヒョ": {"full": "ço", "consonant": "ç", "vowel": "o"},
    "びょ": {"full": "byo", "consonant": "by", "vowel": "o"},
    "ビョ": {"full": "bʲo", "consonant": "", "vowel": "o"},
    "ぴょ": {"full": "pyo", "consonant": "py", "vowel": "o"},
    "ピョ": {"full": "pʲo", "consonant": "", "vowel": "o"},
    "": {"full": "hu", "consonant": "h", "vowel": "u"},
    "": {"full": "ɸɯ", "consonant": "ɸ", "vowel": "ɯ"},
    "": {"full": "bu", "consonant": "b", "vowel": "u"},
    "": {"full": "", "consonant": "b", "vowel": "ɯ"},
    "": {"full": "pu", "consonant": "p", "vowel": "u"},
    "": {"full": "", "consonant": "p", "vowel": "ɯ"},
    "": {"full": "he", "consonant": "h", "vowel": "e"},
    "": {"full": "he", "consonant": "h", "vowel": "e"},
    "": {"full": "be", "consonant": "b", "vowel": "e"},
    "": {"full": "be", "consonant": "b", "vowel": "e"},
    "": {"full": "pe", "consonant": "p", "vowel": "e"},
    "": {"full": "pe", "consonant": "p", "vowel": "e"},
    "": {"full": "ho", "consonant": "h", "vowel": "o"},
    "": {"full": "ho", "consonant": "h", "vowel": "o"},
    "": {"full": "bo", "consonant": "b", "vowel": "o"},
    "": {"full": "bo", "consonant": "b", "vowel": "o"},
    "": {"full": "po", "consonant": "p", "vowel": "o"},
    "": {"full": "po", "consonant": "p", "vowel": "o"},
    "": {"full": "ma", "consonant": "m", "vowel": "a"},
    "": {"full": "ma", "consonant": "m", "vowel": "a"},
    "": {"full": "mi", "consonant": "m", "vowel": "i"},
    "": {"full": "mʲi", "consonant": "", "vowel": "i"},
    "みゃ": {"full": "mya", "consonant": "my", "vowel": "a"},
    "ミャ": {"full": "mʲa", "consonant": "", "vowel": "a"},
    "みゅ": {"full": "myu", "consonant": "my", "vowel": "u"},
    "ミュ": {"full": "mʲɯ", "consonant": "", "vowel": "ɯ"},
    "みょ": {"full": "myo", "consonant": "my", "vowel": "o"},
    "ミョ": {"full": "mʲo", "consonant": "", "vowel": "o"},
    "": {"full": "mu", "consonant": "m", "vowel": "u"},
    "": {"full": "", "consonant": "m", "vowel": "ɯ"},
    "": {"full": "me", "consonant": "m", "vowel": "e"},
    "": {"full": "me", "consonant": "m", "vowel": "e"},
    "": {"full": "mo", "consonant": "m", "vowel": "o"},
    "": {"full": "mo", "consonant": "m", "vowel": "o"},
    "": {"full": "ya", "consonant": "y", "vowel": "a"},
    "": {"full": "ja", "consonant": "j", "vowel": "a"},
    "": {"full": "ya", "consonant": "y", "vowel": "a"},
    "": {"full": "ja", "consonant": "j", "vowel": "a"},
    "": {"full": "yu", "consonant": "y", "vowel": "u"},
    "": {"full": "", "consonant": "j", "vowel": "ɯ"},
    "": {"full": "yu", "consonant": "y", "vowel": "u"},
    "": {"full": "", "consonant": "j", "vowel": "ɯ"},
    "": {"full": "yo", "consonant": "y", "vowel": "o"},
    "": {"full": "jo", "consonant": "j", "vowel": "o"},
    "": {"full": "yo", "consonant": "y", "vowel": "o"},
    "": {"full": "jo", "consonant": "j", "vowel": "o"},
    "": {"full": "ra", "consonant": "r", "vowel": "a"},
    "": {"full": "ɾa", "consonant": "ɾ", "vowel": "a"},
    "": {"full": "ri", "consonant": "r", "vowel": "i"},
    "": {"full": "ɾʲi", "consonant": "ɾʲ", "vowel": "i"},
    "りゃ": {"full": "rya", "consonant": "ry", "vowel": "a"},
    "リャ": {"full": "ɾʲa", "consonant": "ɾʲ", "vowel": "a"},
    "りゅ": {"full": "ryu", "consonant": "ry", "vowel": "u"},
    "リュ": {"full": "ɾʲɯ", "consonant": "ɾʲ", "vowel": "ɯ"},
    "りょ": {"full": "ryo", "consonant": "ry", "vowel": "o"},
    "リョ": {"full": "ɾʲo", "consonant": "ɾʲ", "vowel": "o"},
    "": {"full": "ru", "consonant": "r", "vowel": "u"},
    "": {"full": "ɾɯ", "consonant": "ɾ", "vowel": "ɯ"},
    "": {"full": "re", "consonant": "r", "vowel": "e"},
    "": {"full": "ɾe", "consonant": "ɾ", "vowel": "e"},
    "": {"full": "ro", "consonant": "r", "vowel": "o"},
    "": {"full": "ɾo", "consonant": "ɾ", "vowel": "o"},
    "": {"full": "wa", "consonant": "w", "vowel": "a"},
    "": {"full": "ɰa", "consonant": "ɰ", "vowel": "a"},
    "": {"full": "i", "consonant": "", "vowel": "i"},
    "": {"full": "i", "consonant": "", "vowel": "i"},
    "": {"full": "e", "consonant": "", "vowel": "e"},
    "": {"full": "e", "consonant": "", "vowel": "e"},
    "": {"full": "o", "consonant": "", "vowel": "o"},
    "": {"full": "o", "consonant": "", "vowel": "o"},
    "": {"full": "n", "consonant": "", "vowel": "n"},
    "": { "full": "/N/", "consonant": "", "vowel": pronunciateVariationN},
    "": {"full": "/Q/", "consonant": "", "vowel": pronunciateVariationQ},
    "": {"full": "/R/", "consonant": "", "vowel": pronunciateVariationR},
    "": {"full": "a", "consonant": "", "vowel": "a"},
    "": {"full": "i", "consonant": "", "vowel": "i"},
    "": {"full": "u", "consonant": "", "vowel": "u"},
    "": {"full": "e", "consonant": "", "vowel": "e"},
    "": { "full": "o", "consonant": "", "vowel": "o" },
    "": {"full": "a", "consonant": "", "vowel": "a"},
    "": {"full": "i", "consonant": "", "vowel": "i"},
    "": {"full": "u", "consonant": "", "vowel": "u"},
    "": {"full": "e", "consonant": "", "vowel": "e"},
    "": { "full": "o", "consonant": "", "vowel": "o" },
};

const vowelPointMapping = {
    "": 0,
    "n": 1,
    "m": 2,
    "ɴ": 1,
    "ŋ": 1,
    " ̃": 1,
    "": 2,
    "": 2,
    "": 2,
    "s": 2,
    "h": 2,
    "ʔ": 10,
    "i": 5,
    "u": 5,
    "ɯ": 5,
    "e": 4,
    "o": 8,
    "a": 10,
};
const consonantPointMapping = {
    "": 10,
    "k": 1,
    "g": 7,
    "ɡ": 7,
    "": 1,
    "ɡʲ": 7,
    "ky": 1,
    "gy": 7,
    "s": 1,
    "z": 7,
    "dz": 7,
    "ʃ": 4,
    "ʤ": 7,
    "sy": 2,
    "zy": 7,
    "t": 1,
    "d": 4,
    "": 1,
    "ty": 2,
    "dy": 4,
    "ts": 1,
    "n": 3,
    "ɲ": 3,
    "ny": 4,
    "h": 1,
    "b": 6,
    "p": 6,
    "çʲ": 7,
    "": 7,
    "": 8,
    "hy": 3,
    "ç": 2,
    "by": 7,
    "py": 7,
    "ɸ": 3,
    "m": 4,
    "": 4,
    "my": 3,
    "y": 2,
    "j": 7,
    "r": 3,
    "ɾ": 3,
    "ɾʲ": 3,
    "ry": 2,
    "w": 2,
    "ɰ": 2,
};
const stopLetterMappings = {
    "": 1,
    "": 2,
    "": 1,
    "": 1,
    " ": 1,
};

const BREATHING_BEST_LENGTH = 8;
const TEXT_BEST_LENGTH = 16;

const calcurate = (texts) => {
    const textArray = texts.split(/[\n|。]/).reverse();
    const ret = [];
    for (const text of textArray) {
        if (text.length == 0) continue;
        let point = null;
        try {
            point = _calcurate(text);
            ret.push([text, point]);
        } catch (error) {
            console.log(error);
            ret.push([text, null]);
        }
    }
    return ret;
}

const _getBestLengthCorrectionValue = (val, best) => {
    const tmpVal = Math.abs(best - val);
    return ((tmpVal > best ? best : tmpVal) + 1)
}

const _evalSentenceCrimaxPoint = (breathingCrimaxPoint, breathingLength) => {
    breathingCrimaxPoint /= _getBestLengthCorrectionValue(breathingLength, BREATHING_BEST_LENGTH);
    return breathingCrimaxPoint;
}

const _calcurate = (text) => {
    const splited = text.split("");
    const textArray = [];
    for (const letter of splited) {
        if (["", "", ""].includes(letter)) {
            textArray[textArray.length - 1] += letter;
        } else {
            textArray.push(letter);           
        }
    }

    const extacyDegreeArray = [];
    for (let i = 0; i < textArray.length; i++) {
        const letter = textArray[i];
        let extacyPoint = null;
        if (!Object.keys(stopLetterMappings).includes(letter)) {
            const pronunciation = pronunciations[letter];
            const prevPronunciation = i == 0 ? null : pronunciations[textArray[i - 1]];
            const nextPronunciation = i + 1 == textArray.length ? null : pronunciations[textArray[i + 1]];
            const consonantPoint = consonantPointMapping[pronunciation["consonant"]];
            const vowel = typeof pronunciation["vowel"] == "function" ?
                pronunciation["vowel"](prevPronunciation, nextPronunciation)
                : pronunciation["vowel"];
            const vowelPoint = vowelPointMapping[vowel];            
            extacyPoint = consonantPoint * vowelPoint;
        }
        extacyDegreeArray.push({ "letter": letter, "point": extacyPoint });
    }

    let preExtacyDegree = null;
    let crimaxPoint = 0;
    let breathingCrimaxPoint = 0;
    let breathingLength = 0;
    for (let i = 0; i < extacyDegreeArray.length; i++) {
        const extacyDegree = extacyDegreeArray[i];

        if (preExtacyDegree == null) {
            preExtacyDegree = extacyDegree;
            breathingCrimaxPoint += extacyDegree["point"];
            continue;
        }

        if (Object.keys(stopLetterMappings).includes(extacyDegree["letter"])) {
            if (preExtacyDegree != null) {
                breathingCrimaxPoint += preExtacyDegree["point"] * stopLetterMappings[extacyDegree["letter"]];
            }
            crimaxPoint += _evalSentenceCrimaxPoint(breathingCrimaxPoint, breathingLength)
            preExtacyDegree = null;
            breathingCrimaxPoint = 0
            breathingLength = 0
        } else {
            breathingCrimaxPoint +=
                (extacyDegree["point"] - preExtacyDegree["point"]) +
                + ((extacyDegree["point"]) * (i + 1) / extacyDegreeArray.length);
            preExtacyDegree = extacyDegree;
            breathingLength += 1;
        }

    }
    if (breathingLength > 0) {
        crimaxPoint += _evalSentenceCrimaxPoint(breathingCrimaxPoint, BREATHING_BEST_LENGTH)
    }

    if (text.length <= TEXT_BEST_LENGTH) {
        crimaxPoint /= TEXT_BEST_LENGTH - text.length + 1
    } else {
        crimaxPoint /= TEXT_BEST_LENGTH
    }
    
    return Math.round(crimaxPoint);
};

反省および所感

  • すでに書いたが、発音の変化をできる限り実装したり、五十音の発音を単純なローマ字表記の母音子音よりも細かく分けた割には使いこなせなかった。
  • 「下人の行方は、誰も知らない」のポイントが非常に高いが、そうなるようにルールを定めていったのだから当然の結果である。それ以外はまあまあ微妙な数値になった。
    • お気づきの方もいるかもしれないが、元記事ではかなり高スコアであるとされている「さて、お気づきの方もいるかもしれないが、この文章もここまで少しずつ絶頂度を高めるように書いてきた」の値が、実はめちゃくちゃ低く出てしまう。(もう見なかったことにした)
  • とはいえ、ルールとして定めたように、適度な長さに区切られていて発音しやすい音韻で組まれた文章が、人を心地よくさせる、というのは、実際ない話ではなさそう、と思った。
  • んほぉぉぉぉ! あああぁぁん!!
3
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?