diff --git a/Musicreater.py b/Musicreater.py index 4c4399d..ee3a073 100644 --- a/Musicreater.py +++ b/Musicreater.py @@ -623,52 +623,67 @@ def __main__(): del midfile def midiSPT(th_): - for i in th_.getResult(): - datas = DMM() - datas['notes'] = i - dataset[0]['musics'].append(datas) - del th_ - global is_save - is_save = False - global NowMusic - RefreshMain() - RefreshMusic(NowMusic) + try: + try: + for i in th_.getResult(): + datas = DMM() + datas['notes'] = i + dataset[0]['musics'].append(datas) + del th_ + global is_save + is_save = False + global NowMusic + RefreshMain() + RefreshMusic(NowMusic) + except OSError: + tkinter.messagebox.showerror(READABLETEXT[0], READABLETEXT[167]) + except AttributeError: + try: + tkinter.messagebox.showerror(READABLETEXT[0], READABLETEXT[167]) + except OSError: + tkinter.messagebox.showerror(READABLETEXT[0], READABLETEXT[167]) threading.Thread(target=midiSPT, args=(th,)).start() del th def FromNewMidi(): - try: - tkinter.messagebox.showinfo("开发提示", "因为一些原因这个功能暂时取消") - except tkinter.TclError: - log('从midi导入音乐并采用新读取方式') - midfile = tkinter.filedialog.askopenfilename(title=READABLETEXT[21], initialdir=r'./', - filetypes=[(READABLETEXT[114], '.mid .midi'), - (READABLETEXT[112], '*')], multiple=True) - if midfile is None or midfile == '': - log('取消') - return - else: - midfile = midfile[0] - th = NewThread(LoadMidi, (midfile,)) - th.start() - del midfile + log('从midi导入音乐并采用新读取方式') + midfile = tkinter.filedialog.askopenfilename(title=READABLETEXT[21], initialdir=r'./', + filetypes=[(READABLETEXT[114], '.mid .midi'), + (READABLETEXT[112], '*')], multiple=True) + if midfile is None or midfile == '': + log('取消') + return + else: + midfile = midfile[0] + th = NewThread(LoadMidi, (midfile,)) + th.start() + del midfile - def midiSPT(th_): - for i in th_.getResult(): - datas = DMM() - datas['notes'] = i - dataset[0]['musics'].append(datas) - del th_ - global is_save - is_save = False - global NowMusic - RefreshMain() - RefreshMusic(NowMusic) + def midiSPT(th_): + try: + try: + for i in th_.getResult(): + datas = DMM() + datas['notes'] = i + dataset[0]['musics'].append(datas) + del th_ + global is_save + is_save = False + global NowMusic + RefreshMain() + RefreshMusic(NowMusic) + except OSError: + tkinter.messagebox.showerror(READABLETEXT[0], READABLETEXT[167]) + except AttributeError: + try: + tkinter.messagebox.showerror(READABLETEXT[0], READABLETEXT[167]) + except OSError: + tkinter.messagebox.showerror(READABLETEXT[0], READABLETEXT[167]) - threading.Thread(target=midiSPT, args=(th,)).start() - del th - dataset[0]['mainset']['ReadMethod'] = "new" + threading.Thread(target=midiSPT, args=(th,)).start() + del th + dataset[0]['mainset']['ReadMethod'] = "new" def FromClassMidi(): log('从midi导入音乐并采用类读取方式') @@ -685,17 +700,25 @@ def __main__(): del midfile def midiSPT(th_): - for i in th_.getResult(): - datas = DMM() - datas['notes'] = i - dataset[0]['musics'].append(datas) - del th_ - global is_save - is_save = False - global NowMusic - RefreshMain() - RefreshMusic(NowMusic) - + try: + try: + for i in th_.getResult(): + datas = DMM() + datas['notes'] = i + dataset[0]['musics'].append(datas) + del th_ + global is_save + is_save = False + global NowMusic + RefreshMain() + RefreshMusic(NowMusic) + except OSError: + tkinter.messagebox.showerror(READABLETEXT[0], READABLETEXT[167]) + except AttributeError: + try: + tkinter.messagebox.showerror(READABLETEXT[0], READABLETEXT[167]) + except OSError: + tkinter.messagebox.showerror(READABLETEXT[0], READABLETEXT[167]) threading.Thread(target=midiSPT, args=(th,)).start() del th dataset[0]['mainset']['ReadMethod'] = "class" @@ -865,37 +888,38 @@ def __main__(): log('取消') return from bgArrayLib.sy_resourcesPacker import resources_pathSetting - result = resources_pathSetting(file) + result = resources_pathSetting() print(result) if result[0] is False: if result[1] == 1: tkinter.messagebox.showerror(title=READABLETEXT[0], message=READABLETEXT[157]) if result[1] == 2: tkinter.messagebox.showerror(title=READABLETEXT[0], message=READABLETEXT[158]) + return else: - from bgArrayLib.sy_resourcesPacker import scatteredPack - scatteredPack(file) - import zipfile + import zipfile - from msctspt.funcOpera import makeNewFunDir - log('生成附加包文件') - if not os.path.exists('./temp/'): - os.makedirs('./temp/') - makeNewFunDir(dataset[0], './temp/') + from msctspt.funcOpera import makeNewFunDir + log('生成附加包文件') + if not os.path.exists('./temp/'): + os.makedirs('./temp/') + makeNewFunDir(dataset[0], './temp/') - shutil.move('./temp/{}Pack/behavior_packs/{}/functions'.format(dataset[0]['mainset']['PackName'], - dataset[0]['mainset']['PackName']), './') - - shutil.move('./temp/{}Pack/behavior_packs/{}/manifest.json'.format(dataset[0]['mainset']['PackName'], + shutil.move('./temp/{}Pack/behavior_packs/{}/functions'.format(dataset[0]['mainset']['PackName'], dataset[0]['mainset']['PackName']), './') - with zipfile.ZipFile('{}/{}.mcpack'.format(file, dataset[0]['mainset']['PackName']), 'w') as zipobj: - for i in os.listdir('./functions/'): - zipobj.write('./functions/{}'.format(i)) - zipobj.write('./manifest.json') - shutil.move('./functions', './temp/') - shutil.move('./manifest.json', './temp/') - shutil.rmtree('./temp/') + shutil.move('./temp/{}Pack/behavior_packs/{}/manifest.json'.format(dataset[0]['mainset']['PackName'], + dataset[0]['mainset']['PackName']), './') + + with zipfile.ZipFile('{}/{}.mcpack'.format(file, dataset[0]['mainset']['PackName']), 'w') as zipobj: + for i in os.listdir('./functions/'): + zipobj.write('./functions/{}'.format(i)) + zipobj.write('./manifest.json') + shutil.move('./functions', './temp/') + shutil.move('./manifest.json', './temp/') + shutil.rmtree('./temp/') + from bgArrayLib.sy_resourcesPacker import scatteredPack + scatteredPack(file) print('完成加载乐器类生成函数函数。') print('开始加载乐器音色资源绑定函数。') diff --git a/T1.mcpack b/T1.mcpack new file mode 100644 index 0000000..7dae9b8 Binary files /dev/null and b/T1.mcpack differ diff --git a/T2.mcpack b/T2.mcpack new file mode 100644 index 0000000..b4139e9 Binary files /dev/null and b/T2.mcpack differ diff --git a/bgArrayLib/__pycache__/__init__.cpython-39.pyc b/bgArrayLib/__pycache__/__init__.cpython-39.pyc index 33ba708..6924caa 100644 Binary files a/bgArrayLib/__pycache__/__init__.cpython-39.pyc and b/bgArrayLib/__pycache__/__init__.cpython-39.pyc differ diff --git a/bgArrayLib/__pycache__/bpm.cpython-39.pyc b/bgArrayLib/__pycache__/bpm.cpython-39.pyc index 433a7f9..41edf6b 100644 Binary files a/bgArrayLib/__pycache__/bpm.cpython-39.pyc and b/bgArrayLib/__pycache__/bpm.cpython-39.pyc differ diff --git a/bgArrayLib/__pycache__/compute.cpython-39.pyc b/bgArrayLib/__pycache__/compute.cpython-39.pyc index 511aa40..4f4ed67 100644 Binary files a/bgArrayLib/__pycache__/compute.cpython-39.pyc and b/bgArrayLib/__pycache__/compute.cpython-39.pyc differ diff --git a/bgArrayLib/__pycache__/namesConstant.cpython-39.pyc b/bgArrayLib/__pycache__/namesConstant.cpython-39.pyc index 32d3520..05e1498 100644 Binary files a/bgArrayLib/__pycache__/namesConstant.cpython-39.pyc and b/bgArrayLib/__pycache__/namesConstant.cpython-39.pyc differ diff --git a/bgArrayLib/__pycache__/pitchStrConstant.cpython-39.pyc b/bgArrayLib/__pycache__/pitchStrConstant.cpython-39.pyc new file mode 100644 index 0000000..44745f8 Binary files /dev/null and b/bgArrayLib/__pycache__/pitchStrConstant.cpython-39.pyc differ diff --git a/bgArrayLib/__pycache__/reader.cpython-39.pyc b/bgArrayLib/__pycache__/reader.cpython-39.pyc new file mode 100644 index 0000000..2960de2 Binary files /dev/null and b/bgArrayLib/__pycache__/reader.cpython-39.pyc differ diff --git a/bgArrayLib/__pycache__/sy_resourcesPacker.cpython-39.pyc b/bgArrayLib/__pycache__/sy_resourcesPacker.cpython-39.pyc index 05517b7..399eeb7 100644 Binary files a/bgArrayLib/__pycache__/sy_resourcesPacker.cpython-39.pyc and b/bgArrayLib/__pycache__/sy_resourcesPacker.cpython-39.pyc differ diff --git a/bgArrayLib/pitchStrConstant.py b/bgArrayLib/pitchStrConstant.py new file mode 100644 index 0000000..701da2a --- /dev/null +++ b/bgArrayLib/pitchStrConstant.py @@ -0,0 +1,133 @@ +pitch = { + '0': '0.0220970869120796', + '1': '0.0234110480761981', + '2': '0.0248031414370031', + '3': '0.0262780129766786', + '4': '0.0278405849418856', + '5': '0.0294960722713029', + '6': '0.03125', + '7': '0.033108221698728', + '8': '0.0350769390096679', + '9': '0.037162722343835', + '10': '0.0393725328092148', + '11': '0.0417137454428136', + '12': '0.0441941738241592', + '13': '0.0468220961523963', + '14': '0.0496062828740062', + '15': '0.0525560259533572', + '16': '0.0556811698837712', + '17': '0.0589921445426059', + '18': '0.0625', + '19': '0.066216443397456', + '20': '0.0701538780193358', + '21': '0.0743254446876701', + '22': '0.0787450656184296', + '23': '0.0834274908856271', + '24': '0.0883883476483184', + '25': '0.0936441923047926', + '26': '0.0992125657480125', + '27': '0.105112051906714', + '28': '0.111362339767542', + '29': '0.117984289085212', + '30': '0.125', + '31': '0.132432886794912', + '32': '0.140307756038672', + '33': '0.14865088937534', + '34': '0.157490131236859', + '35': '0.166854981771254', + '36': '0.176776695296637', + '37': '0.187288384609585', + '38': '0.198425131496025', + '39': '0.210224103813429', + '40': '0.222724679535085', + '41': '0.235968578170423', + '42': '0.25', + '43': '0.264865773589824', + '44': '0.280615512077343', + '45': '0.29730177875068', + '46': '0.314980262473718', + '47': '0.333709963542509', + '48': '0.353553390593274', + '49': '0.37457676921917', + '50': '0.39685026299205', + '51': '0.420448207626857', + '52': '0.44544935907017', + '53': '0.471937156340847', + '54': '0.5', + '55': '0.529731547179648', + '56': '0.561231024154687', + '57': '0.594603557501361', + '58': '0.629960524947437', + '59': '0.667419927085017', + '60': '0.707106781186548', + '61': '0.749153538438341', + '62': '0.7937005259841', + '63': '0.840896415253715', + '64': '0.890898718140339', + '65': '0.943874312681694', + '66': '1', + '67': '1.0594630943593', + '68': '1.12246204830937', + '69': '1.18920711500272', + '70': '1.25992104989487', + '71': '1.33483985417003', + '72': '1.4142135623731', + '73': '1.49830707687668', + '74': '1.5874010519682', + '75': '1.68179283050743', + '76': '1.78179743628068', + '77': '1.88774862536339', + '78': '2', + '79': '2.11892618871859', + '80': '2.24492409661875', + '81': '2.37841423000544', + '82': '2.51984209978975', + '83': '2.66967970834007', + '84': '2.82842712474619', + '85': '2.99661415375336', + '86': '3.1748021039364', + '87': '3.36358566101486', + '88': '3.56359487256136', + '89': '3.77549725072677', + '90': '4', + '91': '4.23785237743718', + '92': '4.48984819323749', + '93': '4.75682846001088', + '94': '5.03968419957949', + '95': '5.33935941668014', + '96': '5.65685424949238', + '97': '5.99322830750673', + '98': '6.3496042078728', + '99': '6.72717132202972', + '100': '7.12718974512272', + '101': '7.55099450145355', + '102': '8', + '103': '8.47570475487436', + '104': '8.97969638647498', + '105': '9.51365692002177', + '106': '10.079368399159', + '107': '10.6787188333603', + '108': '11.3137084989848', + '109': '11.9864566150135', + '110': '12.6992084157456', + '111': '13.4543426440594', + '112': '14.2543794902454', + '113': '15.1019890029071', + '114': '16', + '115': '16.9514095097487', + '116': '17.95939277295', + '117': '19.0273138400435', + '118': '20.158736798318', + '119': '21.3574376667206', + '120': '22.6274169979695', + '121': '23.9729132300269', + '122': '25.3984168314912', + '123': '26.9086852881189', + '124': '28.5087589804909', + '125': '30.2039780058142', + '126': '32', + '127': '33.9028190194974', + '128': '35.9187855458999', + '129': '38.0546276800871', + '130': '40.3174735966359', + '131': '42.7148753334411'} diff --git a/bgArrayLib/resourcesPath.rpposi b/bgArrayLib/resourcesPath.rpposi new file mode 100644 index 0000000..0830f11 --- /dev/null +++ b/bgArrayLib/resourcesPath.rpposi @@ -0,0 +1 @@ +L:/shenyu/ԴԴ/-midiout_25.0 \ No newline at end of file diff --git a/bgArrayLib/sy_resourcesPacker.py b/bgArrayLib/sy_resourcesPacker.py index 5e9d646..0feb22c 100644 --- a/bgArrayLib/sy_resourcesPacker.py +++ b/bgArrayLib/sy_resourcesPacker.py @@ -43,7 +43,7 @@ def resources_pathSetting(newPath: str = ""): return [True, path, 3] # 3:有zip else: return [False, 2] # 2:路径文件指示错误 - if os.path.isfile("./bgArrayLib/resourcesPath.rpposi" and newPath == ""): + if os.path.isfile("./bgArrayLib/resourcesPath.rpposi") and newPath == "": with open("./bgArrayLib/resourcesPath.rpposi", 'r') as f: path = f.read() if "mcpack(国际版推荐)格式_25.0" in os.listdir(path) and "zip格式_25.0" in os.listdir(path): @@ -61,12 +61,12 @@ def choose_resources(): global mpN back_list = [] try: - with open(r"L:\0WorldMusicCreater-MFMS new edition\框架\v0.3.2\Musicreater\1.pkl", 'rb') as rb: + with open(r"1.pkl", 'rb') as rb: instrument = list(pickle.load(rb)) print(instrument) except FileNotFoundError: try: - with open(r"L:\0WorldMusicCreater-MFMS new edition\框架\v0.3.2\Musicreater\nmcsup\1.pkl", 'rb') as rb: + with open(r"./nmcsup/1.pkl", 'rb') as rb: instrument = list(pickle.load(rb)) print(instrument) except FileNotFoundError: diff --git a/languages/__pycache__/__init__.cpython-39.pyc b/languages/__pycache__/__init__.cpython-39.pyc index ff82f62..8dd1ba5 100644 Binary files a/languages/__pycache__/__init__.cpython-39.pyc and b/languages/__pycache__/__init__.cpython-39.pyc differ diff --git a/languages/__pycache__/lang.cpython-39.pyc b/languages/__pycache__/lang.cpython-39.pyc index c688acb..decf559 100644 Binary files a/languages/__pycache__/lang.cpython-39.pyc and b/languages/__pycache__/lang.cpython-39.pyc differ diff --git a/languages/__pycache__/zhCN.cpython-39.pyc b/languages/__pycache__/zhCN.cpython-39.pyc index 139c05f..d334df4 100644 Binary files a/languages/__pycache__/zhCN.cpython-39.pyc and b/languages/__pycache__/zhCN.cpython-39.pyc differ diff --git a/languages/zhCN.py b/languages/zhCN.py index 7debaf8..8fdbec4 100644 --- a/languages/zhCN.py +++ b/languages/zhCN.py @@ -180,5 +180,6 @@ READABLETEXT = { 164: "生成新文件至...", 165: "生成新函数包至...", 166: "生成新函数附加包文件至...", + 167: "!!!这个midi文件读取不了,mido解析报错!!!" } diff --git a/log/2022-02-01 12_42_28.logger b/log/2022-02-01 12_42_28.logger new file mode 100644 index 0000000..e8ae4f5 --- /dev/null +++ b/log/2022-02-01 12_42_28.logger @@ -0,0 +1,3 @@ +2022-02-01 12:42:28,065 - nmcsup.log - INFO - ִλãǰļλ L:\0WorldMusicCreater-MFMS new edition\\v0.7.2\Musicreater\Musicreater.py +2022-02-01 12:42:28,143 - nmcsup.log - INFO - root.mainloopڣ +2022-02-01 12:42:37,206 - nmcsup.log - INFO - midi diff --git a/log/2022-02-01 12_42_28.msct.log b/log/2022-02-01 12_42_28.msct.log new file mode 100644 index 0000000..b8282e7 --- /dev/null +++ b/log/2022-02-01 12_42_28.msct.log @@ -0,0 +1,3 @@ +12:42:28 更新执行位置,当前文件位置 L:\0WorldMusicCreater-MFMS new edition\功能\v0.7.2\Musicreater\Musicreater.py +12:42:28 启动root.mainloop(窗口) +12:42:37 从midi导入音乐 diff --git a/log/2022-02-01 12_45_21.logger b/log/2022-02-01 12_45_21.logger new file mode 100644 index 0000000..b15d999 --- /dev/null +++ b/log/2022-02-01 12_45_21.logger @@ -0,0 +1,3 @@ +2022-02-01 12:45:21,318 - nmcsup.log - INFO - ִλãǰļλ L:\0WorldMusicCreater-MFMS new edition\\v0.7.2\Musicreater\Musicreater.py +2022-02-01 12:45:21,424 - nmcsup.log - INFO - root.mainloopڣ +2022-02-01 12:45:26,250 - nmcsup.log - INFO - midiֲ¶ȡʽ diff --git a/log/2022-02-01 12_45_21.msct.log b/log/2022-02-01 12_45_21.msct.log new file mode 100644 index 0000000..d5384a6 --- /dev/null +++ b/log/2022-02-01 12_45_21.msct.log @@ -0,0 +1,3 @@ +12:45:21 更新执行位置,当前文件位置 L:\0WorldMusicCreater-MFMS new edition\功能\v0.7.2\Musicreater\Musicreater.py +12:45:21 启动root.mainloop(窗口) +12:45:26 从midi导入音乐并采用新读取方式 diff --git a/log/2022-02-01 13_22_30.logger b/log/2022-02-01 13_22_30.logger new file mode 100644 index 0000000..1a7fcf5 --- /dev/null +++ b/log/2022-02-01 13_22_30.logger @@ -0,0 +1,3 @@ +2022-02-01 13:22:30,129 - nmcsup.log - INFO - ִλãǰļλ L:\0WorldMusicCreater-MFMS new edition\\v0.7.2\Musicreater\Musicreater.py +2022-02-01 13:22:30,412 - nmcsup.log - INFO - root.mainloopڣ +2022-02-01 13:22:38,251 - nmcsup.log - INFO - midiֲ¶ȡʽ diff --git a/log/2022-02-01 13_22_30.msct.log b/log/2022-02-01 13_22_30.msct.log new file mode 100644 index 0000000..6473d39 --- /dev/null +++ b/log/2022-02-01 13_22_30.msct.log @@ -0,0 +1,3 @@ +13:22:30 更新执行位置,当前文件位置 L:\0WorldMusicCreater-MFMS new edition\功能\v0.7.2\Musicreater\Musicreater.py +13:22:30 启动root.mainloop(窗口) +13:22:38 从midi导入音乐并采用新读取方式 diff --git a/log/2022-02-01 13_27_35.logger b/log/2022-02-01 13_27_35.logger new file mode 100644 index 0000000..7260f45 --- /dev/null +++ b/log/2022-02-01 13_27_35.logger @@ -0,0 +1,3 @@ +2022-02-01 13:27:35,188 - nmcsup.log - INFO - ִλãǰļλ L:\0WorldMusicCreater-MFMS new edition\\v0.7.2\Musicreater\Musicreater.py +2022-02-01 13:27:35,433 - nmcsup.log - INFO - root.mainloopڣ +2022-02-01 13:27:42,958 - nmcsup.log - INFO - midiֲ¶ȡʽ diff --git a/log/2022-02-01 13_27_35.msct.log b/log/2022-02-01 13_27_35.msct.log new file mode 100644 index 0000000..9200b2e --- /dev/null +++ b/log/2022-02-01 13_27_35.msct.log @@ -0,0 +1,3 @@ +13:27:35 更新执行位置,当前文件位置 L:\0WorldMusicCreater-MFMS new edition\功能\v0.7.2\Musicreater\Musicreater.py +13:27:35 启动root.mainloop(窗口) +13:27:42 从midi导入音乐并采用新读取方式 diff --git a/log/2022-02-01 13_29_14.logger b/log/2022-02-01 13_29_14.logger new file mode 100644 index 0000000..bb43cd5 --- /dev/null +++ b/log/2022-02-01 13_29_14.logger @@ -0,0 +1,6 @@ +2022-02-01 13:29:14,972 - nmcsup.log - INFO - ִλãǰļλ L:\0WorldMusicCreater-MFMS new edition\\v0.7.2\Musicreater\Musicreater.py +2022-02-01 13:29:15,027 - nmcsup.log - INFO - root.mainloopڣ +2022-02-01 13:29:19,609 - nmcsup.log - INFO - midiֲ¶ȡʽ +2022-02-01 13:30:10,035 - nmcsup.log - INFO - midiֲ¶ȡʽ +2022-02-01 13:31:36,075 - nmcsup.log - INFO - ˳ +2022-02-01 13:31:36,077 - nmcsup.log - INFO - ˳ diff --git a/log/2022-02-01 13_29_14.msct.log b/log/2022-02-01 13_29_14.msct.log new file mode 100644 index 0000000..25ae314 --- /dev/null +++ b/log/2022-02-01 13_29_14.msct.log @@ -0,0 +1,6 @@ +13:29:14 更新执行位置,当前文件位置 L:\0WorldMusicCreater-MFMS new edition\功能\v0.7.2\Musicreater\Musicreater.py +13:29:15 启动root.mainloop(窗口) +13:29:19 从midi导入音乐并采用新读取方式 +13:30:10 从midi导入音乐并采用新读取方式 +13:31:36 退出 +13:31:36 程序正常退出 diff --git a/log/2022-02-01 13_34_41.logger b/log/2022-02-01 13_34_41.logger new file mode 100644 index 0000000..1403f4b --- /dev/null +++ b/log/2022-02-01 13_34_41.logger @@ -0,0 +1,3 @@ +2022-02-01 13:34:41,601 - nmcsup.log - INFO - ִλãǰļλ L:\0WorldMusicCreater-MFMS new edition\\v0.7.2\Musicreater\Musicreater.py +2022-02-01 13:34:41,690 - nmcsup.log - INFO - root.mainloopڣ +2022-02-01 13:34:51,148 - nmcsup.log - INFO - midiֲ¶ȡʽ diff --git a/log/2022-02-01 13_34_41.msct.log b/log/2022-02-01 13_34_41.msct.log new file mode 100644 index 0000000..25d7561 --- /dev/null +++ b/log/2022-02-01 13_34_41.msct.log @@ -0,0 +1,3 @@ +13:34:41 更新执行位置,当前文件位置 L:\0WorldMusicCreater-MFMS new edition\功能\v0.7.2\Musicreater\Musicreater.py +13:34:41 启动root.mainloop(窗口) +13:34:51 从midi导入音乐并采用新读取方式 diff --git a/log/2022-02-01 13_35_25.logger b/log/2022-02-01 13_35_25.logger new file mode 100644 index 0000000..dda0fcb --- /dev/null +++ b/log/2022-02-01 13_35_25.logger @@ -0,0 +1,3 @@ +2022-02-01 13:35:25,231 - nmcsup.log - INFO - ִλãǰļλ L:\0WorldMusicCreater-MFMS new edition\\v0.7.2\Musicreater\Musicreater.py +2022-02-01 13:35:25,309 - nmcsup.log - INFO - root.mainloopڣ +2022-02-01 13:35:35,276 - nmcsup.log - INFO - midiֲ¶ȡʽ diff --git a/log/2022-02-01 13_35_25.msct.log b/log/2022-02-01 13_35_25.msct.log new file mode 100644 index 0000000..e0692d8 --- /dev/null +++ b/log/2022-02-01 13_35_25.msct.log @@ -0,0 +1,3 @@ +13:35:25 更新执行位置,当前文件位置 L:\0WorldMusicCreater-MFMS new edition\功能\v0.7.2\Musicreater\Musicreater.py +13:35:25 启动root.mainloop(窗口) +13:35:35 从midi导入音乐并采用新读取方式 diff --git a/log/2022-02-01 13_36_34.logger b/log/2022-02-01 13_36_34.logger new file mode 100644 index 0000000..8c46d6a --- /dev/null +++ b/log/2022-02-01 13_36_34.logger @@ -0,0 +1,5 @@ +2022-02-01 13:36:34,854 - nmcsup.log - INFO - ִλãǰļλ L:\0WorldMusicCreater-MFMS new edition\\v0.7.2\Musicreater\Musicreater.py +2022-02-01 13:36:34,968 - nmcsup.log - INFO - root.mainloopڣ +2022-02-01 13:36:37,430 - nmcsup.log - INFO - midiֲ¶ȡʽ +2022-02-01 13:36:44,196 - nmcsup.log - INFO - ˳ +2022-02-01 13:36:44,198 - nmcsup.log - INFO - ˳ diff --git a/log/2022-02-01 13_36_34.msct.log b/log/2022-02-01 13_36_34.msct.log new file mode 100644 index 0000000..56b0646 --- /dev/null +++ b/log/2022-02-01 13_36_34.msct.log @@ -0,0 +1,5 @@ +13:36:34 更新执行位置,当前文件位置 L:\0WorldMusicCreater-MFMS new edition\功能\v0.7.2\Musicreater\Musicreater.py +13:36:34 启动root.mainloop(窗口) +13:36:37 从midi导入音乐并采用新读取方式 +13:36:44 退出 +13:36:44 程序正常退出 diff --git a/log/2022-02-01 13_43_54.logger b/log/2022-02-01 13_43_54.logger new file mode 100644 index 0000000..81eed97 --- /dev/null +++ b/log/2022-02-01 13_43_54.logger @@ -0,0 +1,41 @@ +2022-02-01 13:43:54,340 - nmcsup.log - INFO - ִλãǰļλ L:\0WorldMusicCreater-MFMS new edition\\v0.7.2\Musicreater\Musicreater.py +2022-02-01 13:43:54,367 - nmcsup.log - INFO - root.mainloopڣ +2022-02-01 13:44:09,784 - nmcsup.log - INFO - midiֲ¶ȡʽ +2022-02-01 13:44:29,516 - nmcsup.log - INFO - ɸӰļ +2022-02-01 13:44:29,518 - nmcsup.log - INFO - =============================ɺļ +2022-02-01 13:44:29,518 - nmcsup.log - INFO - Ŀ¼贴 +2022-02-01 13:44:29,702 - nmcsup.log - INFO - =========================ڴ˴ļ:./temp/RyounPack/behavior_packs/Ryoun/functions/ +2022-02-01 13:44:29,714 - nmcsup.log - INFO - д0 +2022-02-01 13:44:29,716 - nmcsup.log - INFO - д1 +2022-02-01 13:44:29,896 - nmcsup.log - INFO - д2 +2022-02-01 13:44:30,116 - nmcsup.log - INFO - ӰȨ +2022-02-01 13:44:30,117 - nmcsup.log - INFO - д֧ļ +2022-02-01 13:44:30,118 - nmcsup.log - INFO - д뿪ʼļ +2022-02-01 13:44:30,118 - nmcsup.log - INFO - ============================ +2022-02-01 13:44:30,119 - nmcsup.log - INFO - ============================ +2022-02-01 13:45:15,816 - nmcsup.log - INFO - ɸӰļ +2022-02-01 13:45:15,817 - nmcsup.log - INFO - =============================ɺļ +2022-02-01 13:45:15,819 - nmcsup.log - INFO - ѴĿ¼./temp/RyounPack/behavior_packs/Ryoun/functions +2022-02-01 13:45:15,819 - nmcsup.log - INFO - manifest.jsonԼworld_behavior_packs.json +2022-02-01 13:45:15,820 - nmcsup.log - INFO - =========================ڴ˴ļ:./temp/RyounPack/behavior_packs/Ryoun/functions/ +2022-02-01 13:45:15,821 - nmcsup.log - INFO - д0 +2022-02-01 13:45:15,821 - nmcsup.log - INFO - д1 +2022-02-01 13:45:16,064 - nmcsup.log - INFO - д2 +2022-02-01 13:45:16,271 - nmcsup.log - INFO - ӰȨ +2022-02-01 13:45:16,271 - nmcsup.log - INFO - д֧ļ +2022-02-01 13:45:16,272 - nmcsup.log - INFO - д뿪ʼļ +2022-02-01 13:45:16,273 - nmcsup.log - INFO - ============================ +2022-02-01 13:45:16,273 - nmcsup.log - INFO - ============================ +2022-02-01 13:46:57,976 - nmcsup.log - INFO - ɸӰļ +2022-02-01 13:46:57,977 - nmcsup.log - INFO - =============================ɺļ +2022-02-01 13:46:57,979 - nmcsup.log - INFO - ѴĿ¼./temp/RyounPack/behavior_packs/Ryoun/functions +2022-02-01 13:46:57,979 - nmcsup.log - INFO - manifest.jsonԼworld_behavior_packs.json +2022-02-01 13:46:57,981 - nmcsup.log - INFO - =========================ڴ˴ļ:./temp/RyounPack/behavior_packs/Ryoun/functions/ +2022-02-01 13:46:57,982 - nmcsup.log - INFO - д0 +2022-02-01 13:46:57,982 - nmcsup.log - INFO - д1 +2022-02-01 13:46:58,123 - nmcsup.log - INFO - д2 +2022-02-01 13:46:58,296 - nmcsup.log - INFO - ӰȨ +2022-02-01 13:46:58,297 - nmcsup.log - INFO - д֧ļ +2022-02-01 13:46:58,297 - nmcsup.log - INFO - д뿪ʼļ +2022-02-01 13:46:58,298 - nmcsup.log - INFO - ============================ +2022-02-01 13:46:58,299 - nmcsup.log - INFO - ============================ diff --git a/log/2022-02-01 13_43_54.msct.log b/log/2022-02-01 13_43_54.msct.log new file mode 100644 index 0000000..60b280f --- /dev/null +++ b/log/2022-02-01 13_43_54.msct.log @@ -0,0 +1,41 @@ +13:43:54 更新执行位置,当前文件位置 L:\0WorldMusicCreater-MFMS new edition\功能\v0.7.2\Musicreater\Musicreater.py +13:43:54 启动root.mainloop(窗口) +13:44:09 从midi导入音乐并采用新读取方式 +13:44:29 生成附加包文件 +13:44:29 =============================生成函数包文件夹 +13:44:29 目录已有无需创建 +13:44:29 =========================正在在此处生成文件:./temp/RyounPack/behavior_packs/Ryoun/functions/ +13:44:29 写入第0个数据 +13:44:29 写入第1个数据 +13:44:29 写入第2个数据 +13:44:30 增加版权语句 +13:44:30 写入支持文件 +13:44:30 写入开始文件 +13:44:30 完成============================ +13:44:30 完成============================ +13:45:15 生成附加包文件 +13:45:15 =============================生成函数包文件夹 +13:45:15 已创建目录./temp/RyounPack/behavior_packs/Ryoun/functions +13:45:15 创建manifest.json以及world_behavior_packs.json +13:45:15 =========================正在在此处生成文件:./temp/RyounPack/behavior_packs/Ryoun/functions/ +13:45:15 写入第0个数据 +13:45:15 写入第1个数据 +13:45:16 写入第2个数据 +13:45:16 增加版权语句 +13:45:16 写入支持文件 +13:45:16 写入开始文件 +13:45:16 完成============================ +13:45:16 完成============================ +13:46:57 生成附加包文件 +13:46:57 =============================生成函数包文件夹 +13:46:57 已创建目录./temp/RyounPack/behavior_packs/Ryoun/functions +13:46:57 创建manifest.json以及world_behavior_packs.json +13:46:57 =========================正在在此处生成文件:./temp/RyounPack/behavior_packs/Ryoun/functions/ +13:46:57 写入第0个数据 +13:46:57 写入第1个数据 +13:46:58 写入第2个数据 +13:46:58 增加版权语句 +13:46:58 写入支持文件 +13:46:58 写入开始文件 +13:46:58 完成============================ +13:46:58 完成============================ diff --git a/log/2022-02-01 13_49_21.logger b/log/2022-02-01 13_49_21.logger new file mode 100644 index 0000000..d5f6a1c --- /dev/null +++ b/log/2022-02-01 13_49_21.logger @@ -0,0 +1,16 @@ +2022-02-01 13:49:21,728 - nmcsup.log - INFO - ִλãǰļλ L:\0WorldMusicCreater-MFMS new edition\\v0.7.2\Musicreater\Musicreater.py +2022-02-01 13:49:21,777 - nmcsup.log - INFO - root.mainloopڣ +2022-02-01 13:49:42,345 - nmcsup.log - INFO - midiֲ¶ȡʽ +2022-02-01 13:50:02,296 - nmcsup.log - INFO - ɸӰļ +2022-02-01 13:50:02,298 - nmcsup.log - INFO - =============================ɺļ +2022-02-01 13:50:02,300 - nmcsup.log - INFO - ѴĿ¼./temp/RyounPack/behavior_packs/Ryoun/functions +2022-02-01 13:50:02,300 - nmcsup.log - INFO - manifest.jsonԼworld_behavior_packs.json +2022-02-01 13:50:02,470 - nmcsup.log - INFO - =========================ڴ˴ļ:./temp/RyounPack/behavior_packs/Ryoun/functions/ +2022-02-01 13:50:02,471 - nmcsup.log - INFO - д0 +2022-02-01 13:50:02,472 - nmcsup.log - INFO - д1 +2022-02-01 13:50:02,596 - nmcsup.log - INFO - д2 +2022-02-01 13:50:02,796 - nmcsup.log - INFO - ӰȨ +2022-02-01 13:50:02,797 - nmcsup.log - INFO - д֧ļ +2022-02-01 13:50:02,798 - nmcsup.log - INFO - д뿪ʼļ +2022-02-01 13:50:02,799 - nmcsup.log - INFO - ============================ +2022-02-01 13:50:02,799 - nmcsup.log - INFO - ============================ diff --git a/log/2022-02-01 13_49_21.msct.log b/log/2022-02-01 13_49_21.msct.log new file mode 100644 index 0000000..4d4dc71 --- /dev/null +++ b/log/2022-02-01 13_49_21.msct.log @@ -0,0 +1,16 @@ +13:49:21 更新执行位置,当前文件位置 L:\0WorldMusicCreater-MFMS new edition\功能\v0.7.2\Musicreater\Musicreater.py +13:49:21 启动root.mainloop(窗口) +13:49:42 从midi导入音乐并采用新读取方式 +13:50:02 生成附加包文件 +13:50:02 =============================生成函数包文件夹 +13:50:02 已创建目录./temp/RyounPack/behavior_packs/Ryoun/functions +13:50:02 创建manifest.json以及world_behavior_packs.json +13:50:02 =========================正在在此处生成文件:./temp/RyounPack/behavior_packs/Ryoun/functions/ +13:50:02 写入第0个数据 +13:50:02 写入第1个数据 +13:50:02 写入第2个数据 +13:50:02 增加版权语句 +13:50:02 写入支持文件 +13:50:02 写入开始文件 +13:50:02 完成============================ +13:50:02 完成============================ diff --git a/log/2022-02-01 13_51_42.logger b/log/2022-02-01 13_51_42.logger new file mode 100644 index 0000000..fbd3c3d --- /dev/null +++ b/log/2022-02-01 13_51_42.logger @@ -0,0 +1,3 @@ +2022-02-01 13:51:42,581 - nmcsup.log - INFO - ִλãǰļλ L:\0WorldMusicCreater-MFMS new edition\\v0.7.2\Musicreater\Musicreater.py +2022-02-01 13:51:42,661 - nmcsup.log - INFO - root.mainloopڣ +2022-02-01 13:52:06,730 - nmcsup.log - INFO - midiֲ¶ȡʽ diff --git a/log/2022-02-01 13_51_42.msct.log b/log/2022-02-01 13_51_42.msct.log new file mode 100644 index 0000000..1e82629 --- /dev/null +++ b/log/2022-02-01 13_51_42.msct.log @@ -0,0 +1,3 @@ +13:51:42 更新执行位置,当前文件位置 L:\0WorldMusicCreater-MFMS new edition\功能\v0.7.2\Musicreater\Musicreater.py +13:51:42 启动root.mainloop(窗口) +13:52:06 从midi导入音乐并采用新读取方式 diff --git a/log/2022-02-01 13_55_21.logger b/log/2022-02-01 13_55_21.logger new file mode 100644 index 0000000..7ec125b --- /dev/null +++ b/log/2022-02-01 13_55_21.logger @@ -0,0 +1,16 @@ +2022-02-01 13:55:21,654 - nmcsup.log - INFO - ִλãǰļλ L:\0WorldMusicCreater-MFMS new edition\\v0.7.2\Musicreater\Musicreater.py +2022-02-01 13:55:21,708 - nmcsup.log - INFO - root.mainloopڣ +2022-02-01 13:55:25,879 - nmcsup.log - INFO - midiֲ¶ȡʽ +2022-02-01 13:55:49,382 - nmcsup.log - INFO - ɸӰļ +2022-02-01 13:55:49,394 - nmcsup.log - INFO - =============================ɺļ +2022-02-01 13:55:49,396 - nmcsup.log - INFO - ѴĿ¼./temp/RyounPack/behavior_packs/Ryoun/functions +2022-02-01 13:55:49,397 - nmcsup.log - INFO - manifest.jsonԼworld_behavior_packs.json +2022-02-01 13:55:49,692 - nmcsup.log - INFO - =========================ڴ˴ļ:./temp/RyounPack/behavior_packs/Ryoun/functions/ +2022-02-01 13:55:49,704 - nmcsup.log - INFO - д0 +2022-02-01 13:55:49,706 - nmcsup.log - INFO - д1 +2022-02-01 13:55:49,821 - nmcsup.log - INFO - д2 +2022-02-01 13:55:49,932 - nmcsup.log - INFO - ӰȨ +2022-02-01 13:55:49,932 - nmcsup.log - INFO - д֧ļ +2022-02-01 13:55:49,933 - nmcsup.log - INFO - д뿪ʼļ +2022-02-01 13:55:49,934 - nmcsup.log - INFO - ============================ +2022-02-01 13:55:49,934 - nmcsup.log - INFO - ============================ diff --git a/log/2022-02-01 13_55_21.msct.log b/log/2022-02-01 13_55_21.msct.log new file mode 100644 index 0000000..1d5514e --- /dev/null +++ b/log/2022-02-01 13_55_21.msct.log @@ -0,0 +1,16 @@ +13:55:21 更新执行位置,当前文件位置 L:\0WorldMusicCreater-MFMS new edition\功能\v0.7.2\Musicreater\Musicreater.py +13:55:21 启动root.mainloop(窗口) +13:55:25 从midi导入音乐并采用新读取方式 +13:55:49 生成附加包文件 +13:55:49 =============================生成函数包文件夹 +13:55:49 已创建目录./temp/RyounPack/behavior_packs/Ryoun/functions +13:55:49 创建manifest.json以及world_behavior_packs.json +13:55:49 =========================正在在此处生成文件:./temp/RyounPack/behavior_packs/Ryoun/functions/ +13:55:49 写入第0个数据 +13:55:49 写入第1个数据 +13:55:49 写入第2个数据 +13:55:49 增加版权语句 +13:55:49 写入支持文件 +13:55:49 写入开始文件 +13:55:49 完成============================ +13:55:49 完成============================ diff --git a/log/2022-02-01 13_56_45.logger b/log/2022-02-01 13_56_45.logger new file mode 100644 index 0000000..2aba770 --- /dev/null +++ b/log/2022-02-01 13_56_45.logger @@ -0,0 +1,16 @@ +2022-02-01 13:56:45,824 - nmcsup.log - INFO - ִλãǰļλ L:\0WorldMusicCreater-MFMS new edition\\v0.7.2\Musicreater\Musicreater.py +2022-02-01 13:56:45,924 - nmcsup.log - INFO - root.mainloopڣ +2022-02-01 13:56:50,758 - nmcsup.log - INFO - midiֲ¶ȡʽ +2022-02-01 13:57:25,480 - nmcsup.log - INFO - ɸӰļ +2022-02-01 13:57:25,483 - nmcsup.log - INFO - =============================ɺļ +2022-02-01 13:57:25,484 - nmcsup.log - INFO - ѴĿ¼./temp/RyounPack/behavior_packs/Ryoun/functions +2022-02-01 13:57:25,485 - nmcsup.log - INFO - manifest.jsonԼworld_behavior_packs.json +2022-02-01 13:57:25,782 - nmcsup.log - INFO - =========================ڴ˴ļ:./temp/RyounPack/behavior_packs/Ryoun/functions/ +2022-02-01 13:57:25,793 - nmcsup.log - INFO - д0 +2022-02-01 13:57:25,794 - nmcsup.log - INFO - д1 +2022-02-01 13:57:25,926 - nmcsup.log - INFO - д2 +2022-02-01 13:57:26,081 - nmcsup.log - INFO - ӰȨ +2022-02-01 13:57:26,082 - nmcsup.log - INFO - д֧ļ +2022-02-01 13:57:26,083 - nmcsup.log - INFO - д뿪ʼļ +2022-02-01 13:57:26,084 - nmcsup.log - INFO - ============================ +2022-02-01 13:57:26,085 - nmcsup.log - INFO - ============================ diff --git a/log/2022-02-01 13_56_45.msct.log b/log/2022-02-01 13_56_45.msct.log new file mode 100644 index 0000000..ee29761 --- /dev/null +++ b/log/2022-02-01 13_56_45.msct.log @@ -0,0 +1,16 @@ +13:56:45 更新执行位置,当前文件位置 L:\0WorldMusicCreater-MFMS new edition\功能\v0.7.2\Musicreater\Musicreater.py +13:56:45 启动root.mainloop(窗口) +13:56:50 从midi导入音乐并采用新读取方式 +13:57:25 生成附加包文件 +13:57:25 =============================生成函数包文件夹 +13:57:25 已创建目录./temp/RyounPack/behavior_packs/Ryoun/functions +13:57:25 创建manifest.json以及world_behavior_packs.json +13:57:25 =========================正在在此处生成文件:./temp/RyounPack/behavior_packs/Ryoun/functions/ +13:57:25 写入第0个数据 +13:57:25 写入第1个数据 +13:57:25 写入第2个数据 +13:57:26 增加版权语句 +13:57:26 写入支持文件 +13:57:26 写入开始文件 +13:57:26 完成============================ +13:57:26 完成============================ diff --git a/log/2022-02-01 13_59_49.logger b/log/2022-02-01 13_59_49.logger new file mode 100644 index 0000000..26b5d88 --- /dev/null +++ b/log/2022-02-01 13_59_49.logger @@ -0,0 +1,16 @@ +2022-02-01 13:59:49,339 - nmcsup.log - INFO - ִλãǰļλ L:\0WorldMusicCreater-MFMS new edition\\v0.7.2\Musicreater\Musicreater.py +2022-02-01 13:59:49,410 - nmcsup.log - INFO - root.mainloopڣ +2022-02-01 14:00:37,654 - nmcsup.log - INFO - midiֲ¶ȡʽ +2022-02-01 14:00:45,806 - nmcsup.log - INFO - ɸӰļ +2022-02-01 14:00:45,809 - nmcsup.log - INFO - =============================ɺļ +2022-02-01 14:00:45,810 - nmcsup.log - INFO - ѴĿ¼./temp/RyounPack/behavior_packs/Ryoun/functions +2022-02-01 14:00:45,811 - nmcsup.log - INFO - manifest.jsonԼworld_behavior_packs.json +2022-02-01 14:00:45,986 - nmcsup.log - INFO - =========================ڴ˴ļ:./temp/RyounPack/behavior_packs/Ryoun/functions/ +2022-02-01 14:00:45,987 - nmcsup.log - INFO - д0 +2022-02-01 14:00:45,988 - nmcsup.log - INFO - д1 +2022-02-01 14:00:46,097 - nmcsup.log - INFO - д2 +2022-02-01 14:00:46,297 - nmcsup.log - INFO - ӰȨ +2022-02-01 14:00:46,298 - nmcsup.log - INFO - д֧ļ +2022-02-01 14:00:46,299 - nmcsup.log - INFO - д뿪ʼļ +2022-02-01 14:00:46,300 - nmcsup.log - INFO - ============================ +2022-02-01 14:00:46,301 - nmcsup.log - INFO - ============================ diff --git a/log/2022-02-01 13_59_49.msct.log b/log/2022-02-01 13_59_49.msct.log new file mode 100644 index 0000000..cc8a6d0 --- /dev/null +++ b/log/2022-02-01 13_59_49.msct.log @@ -0,0 +1,16 @@ +13:59:49 更新执行位置,当前文件位置 L:\0WorldMusicCreater-MFMS new edition\功能\v0.7.2\Musicreater\Musicreater.py +13:59:49 启动root.mainloop(窗口) +14:00:37 从midi导入音乐并采用新读取方式 +14:00:45 生成附加包文件 +14:00:45 =============================生成函数包文件夹 +14:00:45 已创建目录./temp/RyounPack/behavior_packs/Ryoun/functions +14:00:45 创建manifest.json以及world_behavior_packs.json +14:00:45 =========================正在在此处生成文件:./temp/RyounPack/behavior_packs/Ryoun/functions/ +14:00:45 写入第0个数据 +14:00:45 写入第1个数据 +14:00:46 写入第2个数据 +14:00:46 增加版权语句 +14:00:46 写入支持文件 +14:00:46 写入开始文件 +14:00:46 完成============================ +14:00:46 完成============================ diff --git a/log/2022-02-01 14_02_14.logger b/log/2022-02-01 14_02_14.logger new file mode 100644 index 0000000..9a30ea2 --- /dev/null +++ b/log/2022-02-01 14_02_14.logger @@ -0,0 +1,6 @@ +2022-02-01 14:02:14,998 - nmcsup.log - INFO - ִλãǰļλ L:\0WorldMusicCreater-MFMS new edition\\v0.7.2\Musicreater\Musicreater.py +2022-02-01 14:02:15,056 - nmcsup.log - INFO - root.mainloopڣ +2022-02-01 14:02:25,339 - nmcsup.log - INFO - midiֲ¶ȡʽ +2022-02-01 14:02:39,217 - nmcsup.log - INFO - ˢ1 +2022-02-01 14:03:04,029 - nmcsup.log - INFO - ˳ +2022-02-01 14:03:06,084 - nmcsup.log - INFO - ˳ diff --git a/log/2022-02-01 14_02_14.msct.log b/log/2022-02-01 14_02_14.msct.log new file mode 100644 index 0000000..64ff905 --- /dev/null +++ b/log/2022-02-01 14_02_14.msct.log @@ -0,0 +1,6 @@ +14:02:14 更新执行位置,当前文件位置 L:\0WorldMusicCreater-MFMS new edition\功能\v0.7.2\Musicreater\Musicreater.py +14:02:15 启动root.mainloop(窗口) +14:02:25 从midi导入音乐并采用新读取方式 +14:02:39 刷新音轨1 +14:03:04 退出 +14:03:06 程序正常退出 diff --git a/log/2022-02-01 14_03_10.logger b/log/2022-02-01 14_03_10.logger new file mode 100644 index 0000000..72356ba --- /dev/null +++ b/log/2022-02-01 14_03_10.logger @@ -0,0 +1,20 @@ +2022-02-01 14:03:10,083 - nmcsup.log - INFO - ִλãǰļλ L:\0WorldMusicCreater-MFMS new edition\\v0.7.2\Musicreater\Musicreater.py +2022-02-01 14:03:10,123 - nmcsup.log - INFO - root.mainloopڣ +2022-02-01 14:03:12,987 - nmcsup.log - INFO - midiֲȡʽ +2022-02-01 14:03:14,680 - nmcsup.log - INFO - ȡ +2022-02-01 14:03:16,296 - nmcsup.log - INFO - midiֲ¶ȡʽ +2022-02-01 14:03:33,761 - nmcsup.log - INFO - ɸӰļ +2022-02-01 14:03:33,764 - nmcsup.log - INFO - =============================ɺļ +2022-02-01 14:03:33,776 - nmcsup.log - INFO - ѴĿ¼./temp/RyounPack/behavior_packs/Ryoun/functions +2022-02-01 14:03:33,777 - nmcsup.log - INFO - manifest.jsonԼworld_behavior_packs.json +2022-02-01 14:03:33,937 - nmcsup.log - INFO - =========================ڴ˴ļ:./temp/RyounPack/behavior_packs/Ryoun/functions/ +2022-02-01 14:03:33,937 - nmcsup.log - INFO - д0 +2022-02-01 14:03:33,939 - nmcsup.log - INFO - д1 +2022-02-01 14:03:34,118 - nmcsup.log - INFO - д2 +2022-02-01 14:03:34,257 - nmcsup.log - INFO - ӰȨ +2022-02-01 14:03:34,257 - nmcsup.log - INFO - д֧ļ +2022-02-01 14:03:34,258 - nmcsup.log - INFO - д뿪ʼļ +2022-02-01 14:03:34,259 - nmcsup.log - INFO - ============================ +2022-02-01 14:03:34,260 - nmcsup.log - INFO - ============================ +2022-02-01 14:04:07,051 - nmcsup.log - INFO - ˳ +2022-02-01 14:04:08,138 - nmcsup.log - INFO - ˳ diff --git a/log/2022-02-01 14_03_10.msct.log b/log/2022-02-01 14_03_10.msct.log new file mode 100644 index 0000000..49d04d0 --- /dev/null +++ b/log/2022-02-01 14_03_10.msct.log @@ -0,0 +1,20 @@ +14:03:10 更新执行位置,当前文件位置 L:\0WorldMusicCreater-MFMS new edition\功能\v0.7.2\Musicreater\Musicreater.py +14:03:10 启动root.mainloop(窗口) +14:03:12 从midi导入音乐并采用类读取方式 +14:03:14 取消 +14:03:16 从midi导入音乐并采用新读取方式 +14:03:33 生成附加包文件 +14:03:33 =============================生成函数包文件夹 +14:03:33 已创建目录./temp/RyounPack/behavior_packs/Ryoun/functions +14:03:33 创建manifest.json以及world_behavior_packs.json +14:03:33 =========================正在在此处生成文件:./temp/RyounPack/behavior_packs/Ryoun/functions/ +14:03:33 写入第0个数据 +14:03:33 写入第1个数据 +14:03:34 写入第2个数据 +14:03:34 增加版权语句 +14:03:34 写入支持文件 +14:03:34 写入开始文件 +14:03:34 完成============================ +14:03:34 完成============================ +14:04:07 退出 +14:04:08 程序正常退出 diff --git a/log/2022-02-01 14_04_28.logger b/log/2022-02-01 14_04_28.logger new file mode 100644 index 0000000..b77c4fe --- /dev/null +++ b/log/2022-02-01 14_04_28.logger @@ -0,0 +1,17 @@ +2022-02-01 14:04:28,558 - nmcsup.log - INFO - ִλãǰļλ L:\0WorldMusicCreater-MFMS new edition\\v0.7.2\Musicreater\Musicreater.py +2022-02-01 14:04:28,600 - nmcsup.log - INFO - root.mainloopڣ +2022-02-01 14:04:30,599 - nmcsup.log - INFO - midiֲȡʽ +2022-02-01 14:04:42,399 - nmcsup.log - INFO - ȡ +2022-02-01 14:04:55,899 - nmcsup.log - INFO - ɸӰļ +2022-02-01 14:04:55,902 - nmcsup.log - INFO - =============================ɺļ +2022-02-01 14:04:55,903 - nmcsup.log - INFO - ѴĿ¼./temp/T1Pack/behavior_packs/T1/functions +2022-02-01 14:04:55,912 - nmcsup.log - INFO - manifest.jsonԼworld_behavior_packs.json +2022-02-01 14:04:56,079 - nmcsup.log - INFO - =========================ڴ˴ļ:./temp/T1Pack/behavior_packs/T1/functions/ +2022-02-01 14:04:56,080 - nmcsup.log - INFO - д0 +2022-02-01 14:04:56,081 - nmcsup.log - INFO - д1 +2022-02-01 14:04:56,606 - nmcsup.log - INFO - д2 +2022-02-01 14:04:57,192 - nmcsup.log - INFO - ӰȨ +2022-02-01 14:04:57,193 - nmcsup.log - INFO - д֧ļ +2022-02-01 14:04:57,194 - nmcsup.log - INFO - д뿪ʼļ +2022-02-01 14:04:57,195 - nmcsup.log - INFO - ============================ +2022-02-01 14:04:57,195 - nmcsup.log - INFO - ============================ diff --git a/log/2022-02-01 14_04_28.msct.log b/log/2022-02-01 14_04_28.msct.log new file mode 100644 index 0000000..d67ae0e --- /dev/null +++ b/log/2022-02-01 14_04_28.msct.log @@ -0,0 +1,17 @@ +14:04:28 更新执行位置,当前文件位置 L:\0WorldMusicCreater-MFMS new edition\功能\v0.7.2\Musicreater\Musicreater.py +14:04:28 启动root.mainloop(窗口) +14:04:30 从midi导入音乐并采用类读取方式 +14:04:42 取消 +14:04:55 生成附加包文件 +14:04:55 =============================生成函数包文件夹 +14:04:55 已创建目录./temp/T1Pack/behavior_packs/T1/functions +14:04:55 创建manifest.json以及world_behavior_packs.json +14:04:56 =========================正在在此处生成文件:./temp/T1Pack/behavior_packs/T1/functions/ +14:04:56 写入第0个数据 +14:04:56 写入第1个数据 +14:04:56 写入第2个数据 +14:04:57 增加版权语句 +14:04:57 写入支持文件 +14:04:57 写入开始文件 +14:04:57 完成============================ +14:04:57 完成============================ diff --git a/log/2022-02-01 14_15_09.logger b/log/2022-02-01 14_15_09.logger new file mode 100644 index 0000000..233ad38 --- /dev/null +++ b/log/2022-02-01 14_15_09.logger @@ -0,0 +1,19 @@ +2022-02-01 14:15:09,509 - nmcsup.log - INFO - ִλãǰļλ L:\0WorldMusicCreater-MFMS new edition\\v0.7.2\Musicreater\Musicreater.py +2022-02-01 14:15:09,805 - nmcsup.log - INFO - root.mainloopڣ +2022-02-01 14:15:13,695 - nmcsup.log - INFO - midiֲȡʽ +2022-02-01 14:15:23,118 - nmcsup.log - INFO - ȡ +2022-02-01 14:15:26,493 - nmcsup.log - INFO - ɸӰļ +2022-02-01 14:15:26,496 - nmcsup.log - INFO - =============================ɺļ +2022-02-01 14:15:26,508 - nmcsup.log - INFO - ѴĿ¼./temp/RyounPack/behavior_packs/Ryoun/functions +2022-02-01 14:15:26,509 - nmcsup.log - INFO - manifest.jsonԼworld_behavior_packs.json +2022-02-01 14:15:26,700 - nmcsup.log - INFO - =========================ڴ˴ļ:./temp/RyounPack/behavior_packs/Ryoun/functions/ +2022-02-01 14:15:26,700 - nmcsup.log - INFO - д0 +2022-02-01 14:15:26,703 - nmcsup.log - INFO - д1 +2022-02-01 14:15:27,395 - nmcsup.log - INFO - д2 +2022-02-01 14:15:28,252 - nmcsup.log - INFO - ӰȨ +2022-02-01 14:15:28,253 - nmcsup.log - INFO - д֧ļ +2022-02-01 14:15:28,254 - nmcsup.log - INFO - д뿪ʼļ +2022-02-01 14:15:28,255 - nmcsup.log - INFO - ============================ +2022-02-01 14:15:28,255 - nmcsup.log - INFO - ============================ +2022-02-01 14:26:14,567 - nmcsup.log - INFO - ˳ +2022-02-01 14:26:16,039 - nmcsup.log - INFO - ˳ diff --git a/log/2022-02-01 14_15_09.msct.log b/log/2022-02-01 14_15_09.msct.log new file mode 100644 index 0000000..3e593c1 --- /dev/null +++ b/log/2022-02-01 14_15_09.msct.log @@ -0,0 +1,19 @@ +14:15:09 更新执行位置,当前文件位置 L:\0WorldMusicCreater-MFMS new edition\功能\v0.7.2\Musicreater\Musicreater.py +14:15:09 启动root.mainloop(窗口) +14:15:13 从midi导入音乐并采用类读取方式 +14:15:23 取消 +14:15:26 生成附加包文件 +14:15:26 =============================生成函数包文件夹 +14:15:26 已创建目录./temp/RyounPack/behavior_packs/Ryoun/functions +14:15:26 创建manifest.json以及world_behavior_packs.json +14:15:26 =========================正在在此处生成文件:./temp/RyounPack/behavior_packs/Ryoun/functions/ +14:15:26 写入第0个数据 +14:15:26 写入第1个数据 +14:15:27 写入第2个数据 +14:15:28 增加版权语句 +14:15:28 写入支持文件 +14:15:28 写入开始文件 +14:15:28 完成============================ +14:15:28 完成============================ +14:26:14 退出 +14:26:16 程序正常退出 diff --git a/log/2022-02-01 14_28_30.logger b/log/2022-02-01 14_28_30.logger new file mode 100644 index 0000000..7f65e9f --- /dev/null +++ b/log/2022-02-01 14_28_30.logger @@ -0,0 +1,6 @@ +2022-02-01 14:28:30,193 - nmcsup.log - INFO - ִλãǰļλ L:\0WorldMusicCreater-MFMS new edition\\v0.7.2\Musicreater\Musicreater.py +2022-02-01 14:28:30,432 - nmcsup.log - INFO - root.mainloopڣ +2022-02-01 14:28:34,371 - nmcsup.log - INFO - midiֲȡʽ +2022-02-01 14:28:53,647 - nmcsup.log - INFO - midiֲȡʽ +2022-02-01 14:30:00,787 - nmcsup.log - INFO - ˳ +2022-02-01 14:30:00,788 - nmcsup.log - INFO - ˳ diff --git a/log/2022-02-01 14_28_30.msct.log b/log/2022-02-01 14_28_30.msct.log new file mode 100644 index 0000000..86cb4e5 --- /dev/null +++ b/log/2022-02-01 14_28_30.msct.log @@ -0,0 +1,6 @@ +14:28:30 更新执行位置,当前文件位置 L:\0WorldMusicCreater-MFMS new edition\功能\v0.7.2\Musicreater\Musicreater.py +14:28:30 启动root.mainloop(窗口) +14:28:34 从midi导入音乐并采用类读取方式 +14:28:53 从midi导入音乐并采用类读取方式 +14:30:00 退出 +14:30:00 程序正常退出 diff --git a/logs/amulet_core.log b/logs/amulet_core.log new file mode 100644 index 0000000..e69de29 diff --git a/logs/pymctranslate.log b/logs/pymctranslate.log new file mode 100644 index 0000000..3ad9798 --- /dev/null +++ b/logs/pymctranslate.log @@ -0,0 +1 @@ +2022-02-01 14:15:26,631 - pymctranslate - INFO - PyMCTranslate Version 139 diff --git a/msctspt/__pycache__/__init__.cpython-39.pyc b/msctspt/__pycache__/__init__.cpython-39.pyc index 24dd694..fa7cd6a 100644 Binary files a/msctspt/__pycache__/__init__.cpython-39.pyc and b/msctspt/__pycache__/__init__.cpython-39.pyc differ diff --git a/msctspt/__pycache__/bdxOpera_CP.cpython-39.pyc b/msctspt/__pycache__/bdxOpera_CP.cpython-39.pyc new file mode 100644 index 0000000..20a1808 Binary files /dev/null and b/msctspt/__pycache__/bdxOpera_CP.cpython-39.pyc differ diff --git a/msctspt/__pycache__/bugReporter.cpython-39.pyc b/msctspt/__pycache__/bugReporter.cpython-39.pyc index 5e56a52..b1b0d2e 100644 Binary files a/msctspt/__pycache__/bugReporter.cpython-39.pyc and b/msctspt/__pycache__/bugReporter.cpython-39.pyc differ diff --git a/msctspt/__pycache__/funcOpera.cpython-39.pyc b/msctspt/__pycache__/funcOpera.cpython-39.pyc index f286fbb..6f4caf2 100644 Binary files a/msctspt/__pycache__/funcOpera.cpython-39.pyc and b/msctspt/__pycache__/funcOpera.cpython-39.pyc differ diff --git a/msctspt/__pycache__/threadOpera.cpython-39.pyc b/msctspt/__pycache__/threadOpera.cpython-39.pyc index cea8210..809bb9f 100644 Binary files a/msctspt/__pycache__/threadOpera.cpython-39.pyc and b/msctspt/__pycache__/threadOpera.cpython-39.pyc differ diff --git a/msctspt/__pycache__/transfer.cpython-39.pyc b/msctspt/__pycache__/transfer.cpython-39.pyc new file mode 100644 index 0000000..42bea61 Binary files /dev/null and b/msctspt/__pycache__/transfer.cpython-39.pyc differ diff --git a/msctspt/threadOpera.py b/msctspt/threadOpera.py index 1e1e74e..9a12f20 100644 --- a/msctspt/threadOpera.py +++ b/msctspt/threadOpera.py @@ -14,12 +14,21 @@ class NewThread(threading.Thread): self.args = args def run(self): - self.result = self.func(*self.args) + try: + self.result = self.func(*self.args) + except OSError: + pass def getResult(self): threading.Thread.join(self) # 等待线程执行完毕 try: - return self.result + try: + try: + return self.result + except OSError: + return None + except IOError: + return None except ValueError: return None diff --git a/msctspt/transfer.py b/msctspt/transfer.py index f9bf7f0..37e179e 100644 --- a/msctspt/transfer.py +++ b/msctspt/transfer.py @@ -25,9 +25,10 @@ def hans2pinyin(hans, style=3): return final -def classList_conversion_SinglePlayer(List: list, ScoreboardName: str, playerSelection: str = '', +def classList_conversion_SinglePlayer(List: list, ScoreboardName: str, Instrument: str, playerSelection: str = '', isProsess: bool = False) -> list: from bgArrayLib.compute import round_up + from bgArrayLib.pitchStrConstant import pitch commands = [] length = len(List) j = 1 @@ -43,7 +44,7 @@ def classList_conversion_SinglePlayer(List: list, ScoreboardName: str, playerSel commands.append( f"execute @a{playerSelection} ~ ~ ~ execute @s[scores={{{ScoreboardName}=" f"{str(round_up(i.time_position)).replace('.0', '')}}}] ~ ~{127 - i.velocity} " - f"~ playsound {i.instrument} @s ~ ~ ~ 1000 {i.pitch} 1000\n") + f"~ playsound {Instrument} @s ~ ~ ~ 1000 {pitch.get(str(i.pitch))} 1000\n") if isProsess: commands.append( f"execute @a{playerSelection} ~ ~ ~ execute @s[scores={{{ScoreboardName}=" @@ -282,6 +283,10 @@ def music2BDX(filePath: str, direction: Iterable, music: dict, isProsess: bool = for track in music['musics']: cmdList = classList_conversion_SinglePlayer(track['notes'], track['set']['ScoreboardName'], music['mainset']['PlayerSelect'], isProsess) + if len(cmdList) == 0: + continue + elif cmdList is []: + continue dire = direction down = False '''当前是否为向下的阶段?''' diff --git a/nmcsup/__pycache__/__init__.cpython-39.pyc b/nmcsup/__pycache__/__init__.cpython-39.pyc index 80b787b..5cbf01d 100644 Binary files a/nmcsup/__pycache__/__init__.cpython-39.pyc and b/nmcsup/__pycache__/__init__.cpython-39.pyc differ diff --git a/nmcsup/__pycache__/const.cpython-39.pyc b/nmcsup/__pycache__/const.cpython-39.pyc index 04e9454..afdce5e 100644 Binary files a/nmcsup/__pycache__/const.cpython-39.pyc and b/nmcsup/__pycache__/const.cpython-39.pyc differ diff --git a/nmcsup/__pycache__/log.cpython-39.pyc b/nmcsup/__pycache__/log.cpython-39.pyc index 8f96189..982af98 100644 Binary files a/nmcsup/__pycache__/log.cpython-39.pyc and b/nmcsup/__pycache__/log.cpython-39.pyc differ diff --git a/nmcsup/__pycache__/nmcreader.cpython-39.pyc b/nmcsup/__pycache__/nmcreader.cpython-39.pyc index 550246a..4b9ea62 100644 Binary files a/nmcsup/__pycache__/nmcreader.cpython-39.pyc and b/nmcsup/__pycache__/nmcreader.cpython-39.pyc differ diff --git a/nmcsup/__pycache__/vers.cpython-39.pyc b/nmcsup/__pycache__/vers.cpython-39.pyc index 3cf290a..c73361a 100644 Binary files a/nmcsup/__pycache__/vers.cpython-39.pyc and b/nmcsup/__pycache__/vers.cpython-39.pyc differ diff --git a/nmcsup/const.py b/nmcsup/const.py index 46b9eba..817047e 100644 --- a/nmcsup/const.py +++ b/nmcsup/const.py @@ -310,137 +310,3 @@ Instuments = { '''乐器对照表\n 乐器英文:中文 翻译:雪莹工坊Fun-Fer''' -pitch = { - '0': '0.0220970869120796', - '1': '0.0234110480761981', - '2': '0.0248031414370031', - '3': '0.0262780129766786', - '4': '0.0278405849418856', - '5': '0.0294960722713029', - '6': '0.03125', - '7': '0.033108221698728', - '8': '0.0350769390096679', - '9': '0.037162722343835', - '10': '0.0393725328092148', - '11': '0.0417137454428136', - '12': '0.0441941738241592', - '13': '0.0468220961523963', - '14': '0.0496062828740062', - '15': '0.0525560259533572', - '16': '0.0556811698837712', - '17': '0.0589921445426059', - '18': '0.0625', - '19': '0.066216443397456', - '20': '0.0701538780193358', - '21': '0.0743254446876701', - '22': '0.0787450656184296', - '23': '0.0834274908856271', - '24': '0.0883883476483184', - '25': '0.0936441923047926', - '26': '0.0992125657480125', - '27': '0.105112051906714', - '28': '0.111362339767542', - '29': '0.117984289085212', - '30': '0.125', - '31': '0.132432886794912', - '32': '0.140307756038672', - '33': '0.14865088937534', - '34': '0.157490131236859', - '35': '0.166854981771254', - '36': '0.176776695296637', - '37': '0.187288384609585', - '38': '0.198425131496025', - '39': '0.210224103813429', - '40': '0.222724679535085', - '41': '0.235968578170423', - '42': '0.25', - '43': '0.264865773589824', - '44': '0.280615512077343', - '45': '0.29730177875068', - '46': '0.314980262473718', - '47': '0.333709963542509', - '48': '0.353553390593274', - '49': '0.37457676921917', - '50': '0.39685026299205', - '51': '0.420448207626857', - '52': '0.44544935907017', - '53': '0.471937156340847', - '54': '0.5', - '55': '0.529731547179648', - '56': '0.561231024154687', - '57': '0.594603557501361', - '58': '0.629960524947437', - '59': '0.667419927085017', - '60': '0.707106781186548', - '61': '0.749153538438341', - '62': '0.7937005259841', - '63': '0.840896415253715', - '64': '0.890898718140339', - '65': '0.943874312681694', - '66': '1', - '67': '1.0594630943593', - '68': '1.12246204830937', - '69': '1.18920711500272', - '70': '1.25992104989487', - '71': '1.33483985417003', - '72': '1.4142135623731', - '73': '1.49830707687668', - '74': '1.5874010519682', - '75': '1.68179283050743', - '76': '1.78179743628068', - '77': '1.88774862536339', - '78': '2', - '79': '2.11892618871859', - '80': '2.24492409661875', - '81': '2.37841423000544', - '82': '2.51984209978975', - '83': '2.66967970834007', - '84': '2.82842712474619', - '85': '2.99661415375336', - '86': '3.1748021039364', - '87': '3.36358566101486', - '88': '3.56359487256136', - '89': '3.77549725072677', - '90': '4', - '91': '4.23785237743718', - '92': '4.48984819323749', - '93': '4.75682846001088', - '94': '5.03968419957949', - '95': '5.33935941668014', - '96': '5.65685424949238', - '97': '5.99322830750673', - '98': '6.3496042078728', - '99': '6.72717132202972', - '100': '7.12718974512272', - '101': '7.55099450145355', - '102': '8', - '103': '8.47570475487436', - '104': '8.97969638647498', - '105': '9.51365692002177', - '106': '10.079368399159', - '107': '10.6787188333603', - '108': '11.3137084989848', - '109': '11.9864566150135', - '110': '12.6992084157456', - '111': '13.4543426440594', - '112': '14.2543794902454', - '113': '15.1019890029071', - '114': '16', - '115': '16.9514095097487', - '116': '17.95939277295', - '117': '19.0273138400435', - '118': '20.158736798318', - '119': '21.3574376667206', - '120': '22.6274169979695', - '121': '23.9729132300269', - '122': '25.3984168314912', - '123': '26.9086852881189', - '124': '28.5087589804909', - '125': '30.2039780058142', - '126': '32', - '127': '33.9028190194974', - '128': '35.9187855458999', - '129': '38.0546276800871', - '130': '40.3174735966359', - '131': '42.7148753334411' - } diff --git a/测试用/最后-林肯公园(In The End - Linkin Pa_爱给网_aigei_com.mid b/测试用/最后-林肯公园(In The End - Linkin Pa_爱给网_aigei_com.mid new file mode 100644 index 0000000..38403d7 Binary files /dev/null and b/测试用/最后-林肯公园(In The End - Linkin Pa_爱给网_aigei_com.mid differ