├── .gitignore ├── .vscode └── settings.json ├── Collaboration.MD ├── README.MD ├── app.py ├── asset ├── Haruhi.gif ├── background.gif └── sos.ico ├── config.json ├── const ├── __init__.py ├── converter_setting.py ├── parser_setting.py ├── render_setting.py └── tts_setting.py ├── corelib ├── __init__.py └── exception.py ├── handler ├── __init__.py ├── converter.py ├── parser.py ├── tts.py └── writer.py ├── model ├── __init__.py ├── element.py └── process.py ├── predef_ref └── 01_有希_平静.wav ├── requirements.txt ├── test ├── 剧本示例表格.xlsx └── 剧本空表格.xlsx └── tools ├── __init__.py ├── excel.py ├── image_data.py └── img.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaruhiFanClub/Excel2RpyScript/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaruhiFanClub/Excel2RpyScript/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Collaboration.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaruhiFanClub/Excel2RpyScript/HEAD/Collaboration.MD -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaruhiFanClub/Excel2RpyScript/HEAD/README.MD -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaruhiFanClub/Excel2RpyScript/HEAD/app.py -------------------------------------------------------------------------------- /asset/Haruhi.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaruhiFanClub/Excel2RpyScript/HEAD/asset/Haruhi.gif -------------------------------------------------------------------------------- /asset/background.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaruhiFanClub/Excel2RpyScript/HEAD/asset/background.gif -------------------------------------------------------------------------------- /asset/sos.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaruhiFanClub/Excel2RpyScript/HEAD/asset/sos.ico -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaruhiFanClub/Excel2RpyScript/HEAD/config.json -------------------------------------------------------------------------------- /const/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | CURRENT_VERSION = "v0.2.4" 3 | -------------------------------------------------------------------------------- /const/converter_setting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaruhiFanClub/Excel2RpyScript/HEAD/const/converter_setting.py -------------------------------------------------------------------------------- /const/parser_setting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaruhiFanClub/Excel2RpyScript/HEAD/const/parser_setting.py -------------------------------------------------------------------------------- /const/render_setting.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /const/tts_setting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaruhiFanClub/Excel2RpyScript/HEAD/const/tts_setting.py -------------------------------------------------------------------------------- /corelib/__init__.py: -------------------------------------------------------------------------------- 1 | # encoding: utf-8 -------------------------------------------------------------------------------- /corelib/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaruhiFanClub/Excel2RpyScript/HEAD/corelib/exception.py -------------------------------------------------------------------------------- /handler/__init__.py: -------------------------------------------------------------------------------- 1 | # encoding: utf-8 2 | -------------------------------------------------------------------------------- /handler/converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaruhiFanClub/Excel2RpyScript/HEAD/handler/converter.py -------------------------------------------------------------------------------- /handler/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaruhiFanClub/Excel2RpyScript/HEAD/handler/parser.py -------------------------------------------------------------------------------- /handler/tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaruhiFanClub/Excel2RpyScript/HEAD/handler/tts.py -------------------------------------------------------------------------------- /handler/writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaruhiFanClub/Excel2RpyScript/HEAD/handler/writer.py -------------------------------------------------------------------------------- /model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaruhiFanClub/Excel2RpyScript/HEAD/model/__init__.py -------------------------------------------------------------------------------- /model/element.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaruhiFanClub/Excel2RpyScript/HEAD/model/element.py -------------------------------------------------------------------------------- /model/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaruhiFanClub/Excel2RpyScript/HEAD/model/process.py -------------------------------------------------------------------------------- /predef_ref/01_有希_平静.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaruhiFanClub/Excel2RpyScript/HEAD/predef_ref/01_有希_平静.wav -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Requests==2.32.4 2 | xlrd==1.2.0 3 | -------------------------------------------------------------------------------- /test/剧本示例表格.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaruhiFanClub/Excel2RpyScript/HEAD/test/剧本示例表格.xlsx -------------------------------------------------------------------------------- /test/剧本空表格.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaruhiFanClub/Excel2RpyScript/HEAD/test/剧本空表格.xlsx -------------------------------------------------------------------------------- /tools/__init__.py: -------------------------------------------------------------------------------- 1 | # encoding: utf-8 2 | -------------------------------------------------------------------------------- /tools/excel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaruhiFanClub/Excel2RpyScript/HEAD/tools/excel.py -------------------------------------------------------------------------------- /tools/image_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaruhiFanClub/Excel2RpyScript/HEAD/tools/image_data.py -------------------------------------------------------------------------------- /tools/img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaruhiFanClub/Excel2RpyScript/HEAD/tools/img.py --------------------------------------------------------------------------------