-
Notifications
You must be signed in to change notification settings - Fork 4
/
TCV.py
79 lines (69 loc) · 2.45 KB
/
TCV.py
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
# -*- coding: utf-8 -*-
#Application startup file
import sys
import winsound
import requests.exceptions
import simpleDialog
import traceback
import globalVars
from twitcasting.twitcasting import DataIsNotJsonException
def exchandler(type, exc, tb):
msg=traceback.format_exception(type, exc, tb)
try:
for i in globalVars.app.Manager.timers:
i.Stop()
globalVars.app.Manager.livePlayer.exit()
except:
pass
if type == requests.exceptions.ConnectionError:
simpleDialog.errorDialog(_("通信に失敗しました。インターネット接続を確認してください。プログラムを終了します。"))
elif type == requests.exceptions.ProxyError:
simpleDialog.errorDialog(_("通信に失敗しました。プロキシサーバーの設定を確認してください。プログラムを終了します。"))
elif type == DataIsNotJsonException:
simpleDialog.errorDialog(_("ツイキャスから不正な応答がありました。しばらくたってから再度お試しください。24時間以上たっても解決しない場合には開発者までお問い合わせください。"))
else:
if not hasattr(sys, "frozen"):
print("".join(msg))
winsound.Beep(1000, 1000)
try:
globalVars.app.say(str(msg[-1]))
except:
pass
else:
simpleDialog.winDialog("error", "An error has occurred. Contact to the developer for further assistance. Detail:" + "\n".join(msg[-2:]))
try:
f=open("errorLog.txt", "a")
f.writelines(msg)
f.close()
except:
pass
os._exit(1)
#global schope
sys.excepthook=exchandler
import os
#カレントディレクトリを設定
if hasattr(sys,"frozen"): os.chdir(os.path.dirname(sys.executable))
else: os.chdir(os.path.abspath(os.path.dirname(__file__)))
import win32timezone#ダミー
#dllを相対パスで指定した時のため、カレントディレクトリを変更
os.chdir(os.path.dirname(os.path.abspath(__file__)))
#Python3.8対応
#dllやモジュールをカレントディレクトリから読み込むように設定
if sys.version_info.major>=3 and sys.version_info.minor>=8:
os.add_dll_directory(os.path.dirname(os.path.abspath(__file__)))
sys.path.append(os.path.dirname(os.path.abspath(__file__)))
import app as application
import constants
import pathlib
def main():
if os.path.exists("errorLog.txt"):
try:
os.remove("errorLog.txt")
except:
pass
app=application.Main()
globalVars.app=app
app.initialize()
app.MainLoop()
app.config.write()
if __name__ == "__main__": main()