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 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
|
# -*- coding: utf-8 -*-
# vim:set et sts=4 sw=4:
#
# libpinyin - Library to deal with pinyin.
#
# Copyright (C) 2011 Peng Wu <alexepico@gmail.com>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2, or (at your option)
# any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
CHEWING_INITIAL_LIST = [
'CHEWING_ZERO_INITIAL', #Zero Initial
'CHEWING_B', #"ㄅ"
'CHEWING_C', #"ㄘ"
'CHEWING_CH', #"ㄔ"
'CHEWING_D', #"ㄉ"
'CHEWING_F', #"ㄈ"
'CHEWING_H', #"ㄏ"
'CHEWING_G', #"ㄍ"
'CHEWING_K', #"ㄎ"
'CHEWING_J', #"ㄐ"
'CHEWING_M', #"ㄇ"
'CHEWING_N', #"ㄋ"
'CHEWING_L', #"ㄌ"
'CHEWING_R', #"ㄖ"
'CHEWING_P', #"ㄆ"
'CHEWING_Q', #"ㄑ"
'CHEWING_S', #"ㄙ"
'CHEWING_SH', #"ㄕ"
'CHEWING_T', #"ㄊ"
'PINYIN_W', #Invalid Chewing
'CHEWING_X', #"ㄒ"
'PINYIN_Y', #Invalid Chewing
'CHEWING_Z', #"ㄗ"
'CHEWING_ZH' #"ㄓ"
]
CHEWING_MIDDLE_LIST = [
'CHEWING_ZERO_MIDDLE', #Zero Middle
'CHEWING_I', #"ㄧ"
'CHEWING_U', #"ㄨ"
'CHEWING_V' #"ㄩ"
]
CHEWING_FINAL_LIST = [
'CHEWING_ZERO_FINAL', #Zero Final
'CHEWING_A', #"ㄚ"
'CHEWING_AI', #"ㄞ"
'CHEWING_AN', #"ㄢ"
'CHEWING_ANG', #"ㄤ"
'CHEWING_AO', #"ㄠ"
'CHEWING_E', #"ㄝ" and "ㄜ"
'INVALID_EA', #Invalid Pinyin/Chewing
'CHEWING_EI', #"ㄟ"
'CHEWING_EN', #"ㄣ"
'CHEWING_ENG', #"ㄥ"
'CHEWING_ER', #"ㄦ"
'CHEWING_NG', #"ㄫ"
'CHEWING_O', #"ㄛ"
'PINYIN_ONG', #"ueng"
'CHEWING_OU', #"ㄡ"
'PINYIN_IN', #"ien"
'PINYIN_ING' #"ieng"
]
CHEWING_TONE_LIST = [
'CHEWING_ZERO_TONE', #Zero Tone
'CHEWING_1', #" "
'CHEWING_2', #'ˊ'
'CHEWING_3', #'ˇ'
'CHEWING_4', #'ˋ'
'CHEWING_5' #'˙'
]
def gen_entries(items, last_enum, num_enum):
entries = []
for enum, item in enumerate(items, start=0):
entry = '{0} = {1}'.format(item, enum)
entries.append(entry)
#last enum
entry = last_enum + ' = ' + items[-1]
entries.append(entry)
#num enum
entry = num_enum
entries.append(entry)
return ",\n".join(entries)
def gen_initials():
return gen_entries(CHEWING_INITIAL_LIST, 'CHEWING_LAST_INITIAL',
'CHEWING_NUMBER_OF_INITIALS = CHEWING_LAST_INITIAL + 1')
def gen_middles():
return gen_entries(CHEWING_MIDDLE_LIST, 'CHEWING_LAST_MIDDLE',
'CHEWING_NUMBER_OF_MIDDLES = CHEWING_LAST_MIDDLE + 1')
def gen_finals():
return gen_entries(CHEWING_FINAL_LIST, 'CHEWING_LAST_FINAL',
'CHEWING_NUMBER_OF_FINALS = CHEWING_LAST_FINAL + 1')
def gen_tones():
return gen_entries(CHEWING_TONE_LIST, 'CHEWING_LAST_TONE',
'CHEWING_NUMBER_OF_TONES = CHEWING_LAST_TONE + 1')
def gen_table_index(content_table):
entries = []
for i in range(0, len(CHEWING_INITIAL_LIST)):
initial = CHEWING_INITIAL_LIST[i]
for m in range(0, len(CHEWING_MIDDLE_LIST)):
middle = CHEWING_MIDDLE_LIST[m]
for f in range(0, len(CHEWING_FINAL_LIST)):
final = CHEWING_FINAL_LIST[f]
chewingkey = 'ChewingKey({0}, {1}, {2})'.format(initial, middle, final)
index = -1
try:
index = [x[2] for x in content_table].index(chewingkey)
except ValueError:
pass
entry = '{0:<7} /* {1} */'.format(index, chewingkey)
entries.append(entry)
return ",\n".join(entries)
### main function ###
if __name__ == "__main__":
print(gen_initials() + gen_middles() + gen_finals() + gen_tones())
|