You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

172 lines
5.0 KiB

use std::ops::RangeInclusive;
4 years ago
/// All valid kana for the digest
4 years ago
pub const KANA: &[char; 92] = &[
'あ', 'い', 'う', 'え', 'お',
'か', 'き', 'く', 'け', 'こ',
'さ', 'し', 'す', 'せ', 'そ',
'た', 'ち', 'つ', 'て', 'と',
'な', 'に', 'ぬ', 'ね', 'の',
'は', 'ひ', 'ふ', 'へ', 'ほ',
'ま', 'み', 'む', 'め', 'も',
'ら', 'り', 'る', 'れ', 'ろ',
'や', 'ゆ', 'よ', 'わ', 'ん',
'を', //45
'ア', 'イ', 'ウ', 'エ', 'オ',
'カ', 'キ', 'ク', 'ケ', 'コ',
'サ', 'シ', 'ス', 'セ', 'ソ',
'タ', 'チ', 'ツ', 'テ', 'ト',
'ナ', 'ニ', 'ヌ', 'ネ', '',
'ハ', 'ヒ', 'フ', 'ヘ', 'ホ',
'マ', 'ミ', 'ム', 'メ', 'モ',
'ラ', 'リ', 'ル', 'レ', 'ロ',
4 years ago
'ヤ', 'ユ', 'ヨ', 'ワ', 'ン',
'ヲ', //91
4 years ago
];
4 years ago
/// Valid kana for the first swap table
4 years ago
pub const KANA_SWAP: &[Option<char>; 92] = &[
None, None, None, None, None, //a
Some('が'), Some('ぎ'), Some('ぐ'), Some('げ'), Some('ご'), //ka
None, None, None, None, None, //sa
Some('だ'), Some('ぢ'), Some('づ'), Some('で'), Some('ど'), //ta
None, None, None, None, None, //na
Some('ば'), Some('び'), Some('ぶ'), Some('べ'), Some('ぼ'), // ha
None, None, None, None, None, //ma
None, None, None, None, None, //ra
None, None, None, None, None, //ya
None, //wo (45)
None, None, None, None, None, //a
Some('ガ'), Some('ギ'), Some('グ'), Some('ゲ'), Some('ゴ'), //ka
None, None, None, None, None, //sa
Some('ダ'), Some('ヂ'), Some('ヅ'), Some('デ'), Some('ド'), //ta
None, None, None, None, None, //na
Some('バ'), Some('ビ'), Some('ブ'), Some('ベ'), Some('ボ'), // ha
None, None, None, None, None, //ma
None, None, None, None, None, //ra
None, None, None, None, None, //ya
None, //wo (91)
];
4 years ago
/// Valid kana for the 2nd swap table
4 years ago
pub const KANA_SWAP2: &[Option<char>; 92] = &[
None, None, None, None, None, //a
None, None, None, None, None, //ka
None, None, None, None, None, //sa
None, None, None, None, None, //ta
None, None, None, None, None, //na
Some('ぱ'), Some('ぴ'), Some('ぽ'), Some('ぺ'), Some('ぽ'), //ha
None, None, None, None, None, //ma
None, None, None, None, None, //ra
None, None, None, None, None, //ya
None, //wo (45)
None, None, None, None, None, //a
None, None, None, None, None, //ka
None, None, None, None, None, //sa
None, None, None, None, None, //ta
None, None, None, None, None, //na
Some('パ'), Some('ピ'), Some('プ'), Some('ペ'), Some('ポ'), //ha
None, None, None, None, None, //ma
None, None, None, None, None, //ra
None, None, None, None, None, //ya
None, //wo (91)
];
4 years ago
/// Ranges for the sign0 test
pub const KANA_SIGN: &[RangeInclusive<usize>; 2] = &[
0..=45,
46..=91,
];
4 years ago
/// Valid kana for the subscript
4 years ago
pub const KANA_SUB: &[char; 18] = &[
'ゃ',
'ゅ',
'ょ',
'ャ',
'ュ',
'ョ',
'っ',
'ッ',
'ぁ','ぃ','ぅ','ぇ','ぉ',
'ァ','ィ','ゥ','ェ','ォ',
];
use crate::def::Definition;
4 years ago
/// Valid ranges for the subscript from the kana table
4 years ago
pub const KANA_SUB_VALID_FOR: &[Definition; 18] = &[ // Should we properly restrict these to only ones that make sense? (i.e. KI SHI HI etc..)
Definition::single(5..=39),
Definition::single(5..=39),
Definition::single(5..=39),
Definition::single(51..=85),
Definition::single(51..=85),
Definition::single(51..=85),
Definition::single(0..=45),
Definition::single(46..=91),
4 years ago
Definition::single(5..=39),
Definition::single(5..=39),
Definition::single(5..=39),
Definition::single(5..=39),
Definition::single(5..=39),
Definition::single(51..=85),
Definition::single(51..=85),
Definition::single(51..=85),
Definition::single(51..=85),
Definition::single(51..=85),
];
/// Find all subs that are okay for this kana. If `kana` is not in `KANA`, return None.
pub fn find_sub(kana: char) -> Option<Vec<char>>
{
for (i,x) in (0..(KANA.len())).zip(KANA.iter()) {
if *x == kana {
let mut output = Vec::with_capacity(KANA_SUB.len());
for (def,sub) in KANA_SUB_VALID_FOR.iter().zip(KANA_SUB.iter())
{
if def.contains(i) {
output.push(sub.clone());
}
}
return Some(output);
}
}
None
}
/// Find subs by index.
pub fn sub(i: usize) -> Option<[Option<char>; KANA_SUB.len()]>
{
if i < KANA.len() {
let mut output = [None; KANA_SUB.len()];
for (j, (def,sub)) in (0..).zip(KANA_SUB_VALID_FOR.iter().zip(KANA_SUB.iter()))
{
if def.contains(i) {
output[j] = Some(sub.clone());
}
}
Some(output)
} else {
None
}
}
4 years ago
/// Get all valid subs for kana at index `i`.
pub fn sub_all(i: usize) -> Option<Vec<char>>
4 years ago
{
if i < KANA.len() {
let mut output = Vec::with_capacity(KANA_SUB.len());
for (def,sub) in KANA_SUB_VALID_FOR.iter().zip(KANA_SUB.iter())
{
if def.contains(i) {
output.push(sub.clone());
}
}
Some(output)
} else {
None
}
}