summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorPeng Wu <alexepico@gmail.com>2013-08-13 13:35:11 +0800
committerPeng Wu <alexepico@gmail.com>2013-08-13 13:35:11 +0800
commitc3d0a2d6e4283b6ce18eb37557c8220df29caaad (patch)
tree40b8b853f0295d2340d4f1976c2047ff9b649b93 /scripts
parent62ba27023933285f50406d5e22e042785ff1e1dd (diff)
downloadlibzhuyin-c3d0a2d6e4283b6ce18eb37557c8220df29caaad.tar.gz
libzhuyin-c3d0a2d6e4283b6ce18eb37557c8220df29caaad.tar.xz
libzhuyin-c3d0a2d6e4283b6ce18eb37557c8220df29caaad.zip
rename pinyin to hanyu pinyin
Diffstat (limited to 'scripts')
-rw-r--r--scripts/genpinyinheader.py4
-rw-r--r--scripts/genpinyintable.py36
2 files changed, 25 insertions, 15 deletions
diff --git a/scripts/genpinyinheader.py b/scripts/genpinyinheader.py
index 99048aa..8d6ec64 100644
--- a/scripts/genpinyinheader.py
+++ b/scripts/genpinyinheader.py
@@ -22,14 +22,14 @@
from utils import expand_file
from genpinyintable import gen_content_table, \
- gen_pinyin_index, gen_bopomofo_index, \
+ gen_hanyu_pinyin_index, gen_bopomofo_index, \
gen_chewing_key_table
def get_table_content(tablename):
if tablename == 'CONTENT_TABLE':
return gen_content_table()
if tablename == 'PINYIN_INDEX':
- return gen_pinyin_index()
+ return gen_hanyu_pinyin_index()
if tablename == 'BOPOMOFO_INDEX':
return gen_bopomofo_index()
if tablename == 'DIVIDED_TABLE':
diff --git a/scripts/genpinyintable.py b/scripts/genpinyintable.py
index 1c7cf49..777e161 100644
--- a/scripts/genpinyintable.py
+++ b/scripts/genpinyintable.py
@@ -20,13 +20,13 @@
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
import operator
-import bopomofo
+from bopomofo import BOPOMOFO_HANYU_PINYIN_MAP, BOPOMOFO_LUOMA_PINYIN_MAP, BOPOMOFO_SECOND_BOPOMOFO_MAP
from pinyintable import *
from chewingkey import gen_table_index
content_table = []
-pinyin_index = []
+hanyu_pinyin_index = []
bopomofo_index = []
#pinyin table
@@ -35,18 +35,28 @@ def filter_pinyin_list():
flags = '|'.join(flags)
chewing = "ChewingKey({0})".format(', '.join(chewing))
#correct = correct.replace("v", "ΓΌ")
+
+ (luoma, second) = ("" , "")
+
+ if bopomofo in BOPOMOFO_LUOMA_PINYIN_MAP:
+ luoma = BOPOMOFO_LUOMA_PINYIN_MAP[bopomofo]
+
+ if bopomofo in BOPOMOFO_SECOND_BOPOMOFO_MAP:
+ second = BOPOMOFO_SECOND_BOPOMOFO_MAP[bopomofo]
+
content_table.append((pinyin, bopomofo, chewing))
+
if "IS_PINYIN" in flags:
- pinyin_index.append((pinyin, flags))
+ hanyu_pinyin_index.append((pinyin, flags))
if "IS_CHEWING" in flags:
bopomofo_index.append((bopomofo, flags))
def sort_all():
- global content_table, pinyin_index, bopomofo_index
+ global content_table, hanyu_pinyin_index, bopomofo_index
#remove duplicates
content_table = list(set(content_table))
- pinyin_index = list(set(pinyin_index))
+ hanyu_pinyin_index = list(set(hanyu_pinyin_index))
bopomofo_index = list(set(bopomofo_index))
#define sort function
sortfunc = operator.itemgetter(0)
@@ -55,7 +65,7 @@ def sort_all():
#prepend zero item to reserve the invalid item
content_table.insert(0, ("", "", "ChewingKey()"))
#sort index
- pinyin_index = sorted(pinyin_index, key=sortfunc)
+ hanyu_pinyin_index = sorted(hanyu_pinyin_index, key=sortfunc)
bopomofo_index = sorted(bopomofo_index, key=sortfunc)
'''
@@ -81,9 +91,9 @@ def gen_content_table():
return ',\n'.join(entries)
-def gen_pinyin_index():
+def gen_hanyu_pinyin_index():
entries = []
- for (pinyin, flags) in pinyin_index:
+ for (pinyin, flags) in hanyu_pinyin_index:
index = [x[0] for x in content_table].index(pinyin)
entry = '{{"{0}", {1}, {2}}}'.format(pinyin, flags, index)
entries.append(entry)
@@ -92,10 +102,10 @@ def gen_pinyin_index():
def gen_bopomofo_index():
entries = []
- for (bopomofo_str, flags) in bopomofo_index:
- pinyin_str = bopomofo.BOPOMOFO_HANYU_PINYIN_MAP[bopomofo_str]
- index = [x[0] for x in content_table].index(pinyin_str)
- entry = '{{"{0}", {1}, {2}}}'.format(bopomofo_str, flags, index)
+ for (bopomofo, flags) in bopomofo_index:
+ pinyin = BOPOMOFO_HANYU_PINYIN_MAP[bopomofo]
+ index = [x[0] for x in content_table].index(pinyin)
+ entry = '{{"{0}", {1}, {2}}}'.format(bopomofo, flags, index)
entries.append(entry)
return ',\n'.join(entries)
@@ -111,6 +121,6 @@ sort_all()
### main function ###
if __name__ == "__main__":
- #s = gen_content_table() + gen_pinyin_index() + gen_bopomofo_index()
+ #s = gen_content_table() + gen_hanyu_pinyin_index() + gen_bopomofo_index()
s = gen_chewing_key_table()
print(s)