mirror of
https://github.com/TriM-Organization/Linglun-Converter.git
synced 2024-11-11 01:27:28 +08:00
完整的1.0.0更新,完美兼容音·创1.7,支持多种参数设定
This commit is contained in:
parent
cb3c84d4ef
commit
81b824feed
3
.gitignore
vendored
3
.gitignore
vendored
@ -13,6 +13,9 @@ __pycache__/
|
||||
/Musicreater
|
||||
/TrimLog
|
||||
/logs
|
||||
*.llc.config
|
||||
|
||||
salt.py
|
||||
|
||||
# C extensions
|
||||
*.so
|
||||
|
@ -27,7 +27,7 @@ if sys.argv:
|
||||
exit()
|
||||
|
||||
import Musicreater
|
||||
from Musicreater.constants import DEFAULT_PROGRESSBAR_STYLE
|
||||
import Musicreater.experiment
|
||||
from Musicreater.plugin import ConvertConfig
|
||||
from Musicreater.plugin.addonpack import (
|
||||
to_addon_pack_in_delay,
|
||||
@ -42,6 +42,9 @@ import wx.propgrid as pg
|
||||
|
||||
from utils.io import myWords, logger, object_constants # , TrimLog, is_logging
|
||||
from utils.update_check import check_update
|
||||
from utils.packdata import enpack_llc_pack, unpack_llc_pack
|
||||
|
||||
logger.info("注册全局变量……")
|
||||
|
||||
|
||||
WHITE = (242, 244, 246) # F2F4F6
|
||||
@ -53,16 +56,60 @@ __version__ = "WXGUI 1.0.0"
|
||||
__zhver__ = "WX图形界面 初代预版第〇次修订"
|
||||
|
||||
|
||||
yanlun_length = len(myWords)
|
||||
|
||||
|
||||
# global pgb_style
|
||||
# global on_exit_saving
|
||||
# global ignore_midi_mismatch_error
|
||||
# global convert_tables
|
||||
# global convert_table_selection
|
||||
# global ConvertClass
|
||||
|
||||
pgb_style: Musicreater.ProgressBarStyle = Musicreater.DEFAULT_PROGRESSBAR_STYLE.copy()
|
||||
on_exit_saving: bool = True
|
||||
ignore_midi_mismatch_error: bool = True
|
||||
convert_tables = {
|
||||
"PITCHED": {
|
||||
"“偷吃”的对照表": Musicreater.MM_TOUCH_PITCHED_INSTRUMENT_TABLE,
|
||||
"“经典”对照表": Musicreater.MM_CLASSIC_PITCHED_INSTRUMENT_TABLE,
|
||||
},
|
||||
"PERCUSSION": {
|
||||
"“偷吃”的对照表": Musicreater.MM_TOUCH_PERCUSSION_INSTRUMENT_TABLE,
|
||||
"“经典”对照表": Musicreater.MM_CLASSIC_PERCUSSION_INSTRUMENT_TABLE,
|
||||
},
|
||||
}
|
||||
convert_table_selection = {
|
||||
"PITCHED": "“偷吃”的对照表",
|
||||
"PERCUSSION": "“偷吃”的对照表",
|
||||
}
|
||||
ConvertClass = (Musicreater.MidiConvert, "常规转换")
|
||||
|
||||
if os.path.isfile("save.llc.config"):
|
||||
unpacked_data = unpack_llc_pack("save.llc.config", False)
|
||||
if isinstance(unpacked_data, Exception):
|
||||
logger.warning("读取设置文件失败:{};使用默认设置信息。")
|
||||
else:
|
||||
(
|
||||
pgb_style,
|
||||
on_exit_saving,
|
||||
ignore_midi_mismatch_error,
|
||||
convert_tables,
|
||||
convert_table_selection,
|
||||
ConvertClass,
|
||||
) = unpacked_data
|
||||
|
||||
|
||||
osc = object_constants.ObjectStateConstant(
|
||||
logging_project_name=__appname__,
|
||||
logging_project_version=__version__,
|
||||
logging_exit_exec=lambda x: None,
|
||||
logging_exit_exec=lambda sth: wx.MessageDialog(
|
||||
None, sth, "崩溃", wx.YES_DEFAULT | wx.ICON_STOP
|
||||
).ShowModal(),
|
||||
)
|
||||
logger.printing = not osc.is_release
|
||||
|
||||
|
||||
yanlun_length = len(myWords)
|
||||
|
||||
logger.info("加载窗口布局……")
|
||||
|
||||
|
||||
@ -132,6 +179,11 @@ class LingLunMainFrame(wx.Frame):
|
||||
)
|
||||
|
||||
self.FileMenu = wx.Menu()
|
||||
self.m_ClearSetting_menuItem2 = wx.MenuItem(
|
||||
self.FileMenu, wx.ID_ANY, "重置设置", "将全部数据设置重置为默认值(下次启动时生效)", wx.ITEM_CHECK
|
||||
)
|
||||
self.FileMenu.Append(self.m_ClearSetting_menuItem2)
|
||||
|
||||
self.m_Exit_menuItem1 = wx.MenuItem(
|
||||
self.FileMenu, wx.ID_ANY, "退出", "这是退出按钮", wx.ITEM_NORMAL
|
||||
)
|
||||
@ -222,17 +274,28 @@ class LingLunMainFrame(wx.Frame):
|
||||
self.Centre(wx.BOTH)
|
||||
|
||||
# Connect Events
|
||||
self.Bind(
|
||||
wx.EVT_MENU,
|
||||
self.onResetSettingButtonSelection,
|
||||
id=self.m_ClearSetting_menuItem2.GetId(),
|
||||
)
|
||||
self.Bind(
|
||||
wx.EVT_MENU, self.onExitButtonPressed, id=self.m_Exit_menuItem1.GetId()
|
||||
)
|
||||
self.m_LinglunWords_staticText1.Bind(wx.EVT_LEFT_DCLICK, self.onYanlunDClicked)
|
||||
self.m_LinglunWords_staticText1.Bind(wx.EVT_MOUSEWHEEL, self.onYanlunWheeled)
|
||||
|
||||
|
||||
def __del__(self):
|
||||
pass
|
||||
|
||||
# Virtual event handlers, override them in your derived class
|
||||
def onResetSettingButtonSelection(self, event):
|
||||
global on_exit_saving
|
||||
if self.m_ClearSetting_menuItem2.IsChecked():
|
||||
on_exit_saving = False
|
||||
else:
|
||||
on_exit_saving = True
|
||||
|
||||
def onExitButtonPressed(self, event):
|
||||
self.Destroy()
|
||||
|
||||
@ -253,7 +316,6 @@ class LingLunMainFrame(wx.Frame):
|
||||
self.m_LinglunWords_staticText1.SetLabelText(myWords[self.yanlun_now] + "\r")
|
||||
|
||||
|
||||
|
||||
logger.info("加载分页……")
|
||||
|
||||
###########################################################################
|
||||
@ -348,7 +410,7 @@ class ConvertPagePanel(wx.Panel):
|
||||
m_playerChoice_choice2Choices,
|
||||
0,
|
||||
)
|
||||
self.m_playerChoice_choice2.SetSelection(2)
|
||||
self.m_playerChoice_choice2.SetSelection(0)
|
||||
ss_playerChooseSizer.Add(self.m_playerChoice_choice2, 0, wx.ALL | wx.EXPAND, 5)
|
||||
|
||||
s_formatChooseSizer.Add(ss_playerChooseSizer, 1, wx.ALL | wx.EXPAND, 5)
|
||||
@ -747,7 +809,6 @@ class ConvertPagePanel(wx.Panel):
|
||||
)
|
||||
self.m_start_button2.Bind(wx.EVT_BUTTON, self.onStartButtonPressed)
|
||||
|
||||
|
||||
self.m_EnteringBDXfileSignName_textCtrl12.Enable(False)
|
||||
|
||||
self.m_PlayerSelectorEntering_comboBox1.Enable(False)
|
||||
@ -811,13 +872,20 @@ class ConvertPagePanel(wx.Panel):
|
||||
if self.m_playerChoice_choice2.GetSelection() == 0:
|
||||
self.m_PlayerSelectorEntering_comboBox1.Enable(False)
|
||||
self.m_StructureHeight_slider7.Enable(False)
|
||||
self.m_enteringStructureMaxHeight_spinCtrl1.Enable(False)
|
||||
|
||||
if self.m_outformatChoice_choice1.GetSelection() == 0:
|
||||
self.m_enteringStructureMaxHeight_spinCtrl1.Enable(False)
|
||||
elif self.m_outformatChoice_choice1.GetSelection() == 1:
|
||||
self.m_enteringStructureMaxHeight_spinCtrl1.Enable(True)
|
||||
|
||||
self.m_ScoreboardNameEntering_textCtrl9.Enable(True)
|
||||
self.m_IsAutoResetScoreboard_checkBox2.Enable(True)
|
||||
else:
|
||||
self.m_PlayerSelectorEntering_comboBox1.Enable(True)
|
||||
self.m_StructureHeight_slider7.Enable(True)
|
||||
|
||||
self.m_enteringStructureMaxHeight_spinCtrl1.Enable(True)
|
||||
|
||||
self.m_ScoreboardNameEntering_textCtrl9.Enable(False)
|
||||
self.m_IsAutoResetScoreboard_checkBox2.Enable(False)
|
||||
|
||||
@ -884,28 +952,29 @@ class ConvertPagePanel(wx.Panel):
|
||||
event.Skip()
|
||||
|
||||
def onStartButtonPressed(self, event):
|
||||
global pgb_style
|
||||
for file_name in self.m_midiFilesList_listBox2.GetStrings():
|
||||
if file_name == "诸葛亮与八卦阵-山水千年":
|
||||
mid_cvt = Musicreater.MidiConvert(
|
||||
None, "山水千年", self.m_oldExeFormatChecker_checkBox3.GetValue()
|
||||
mid_cvt = ConvertClass[0](
|
||||
None,
|
||||
"山水千年",
|
||||
self.m_oldExeFormatChecker_checkBox3.GetValue(),
|
||||
convert_tables["PITCHED"][convert_table_selection["PITCHED"]],
|
||||
convert_tables["PERCUSSION"][convert_table_selection["PERCUSSION"]],
|
||||
)
|
||||
else:
|
||||
mid_cvt = Musicreater.MidiConvert.from_midi_file(
|
||||
mid_cvt = ConvertClass[0].from_midi_file(
|
||||
file_name,
|
||||
self.m_oldExeFormatChecker_checkBox3.GetValue(),
|
||||
convert_tables["PITCHED"][convert_table_selection["PITCHED"]],
|
||||
convert_tables["PERCUSSION"][convert_table_selection["PERCUSSION"]],
|
||||
)
|
||||
|
||||
cvt_cfg = ConvertConfig(
|
||||
os.path.split(file_name)[0],
|
||||
self.m_volumn_spinCtrlDouble1.GetValue() / 100,
|
||||
self.m_speed_spinCtrlDouble.GetValue(),
|
||||
progressbar=(
|
||||
self.m_BasicProgressBarStyleEntering_textCtrl4.GetValue(),
|
||||
(
|
||||
self.m_playedProgressbarStyleEntering_textCtrl5.GetValue(),
|
||||
self.m_unplayedProgressbarStyleEntering_textCtrl5.GetValue(),
|
||||
),
|
||||
),
|
||||
progressbar=pgb_style,
|
||||
)
|
||||
|
||||
# 0: 附加包
|
||||
@ -976,7 +1045,11 @@ class ConvertPagePanel(wx.Panel):
|
||||
"转换成功",
|
||||
wx.YES_DEFAULT | wx.ICON_INFORMATION,
|
||||
).ShowModal()
|
||||
|
||||
else:
|
||||
wx.MessageDialog(
|
||||
None, "你输入的输出格式有误!", "错误", wx.YES_DEFAULT | wx.ICON_ERROR
|
||||
).ShowModal()
|
||||
return
|
||||
|
||||
|
||||
###########################################################################
|
||||
@ -1059,7 +1132,7 @@ class SettingPagePannel(wx.Panel):
|
||||
self.m_BasicProgressBarStyleEntering_textCtrl4 = wx.TextCtrl(
|
||||
ssss_basicProgressStylePattle_sbSizer9.GetStaticBox(),
|
||||
wx.ID_ANY,
|
||||
"▶ %%N [ %%s/%^s %%% __________ %%t|%^t ]",
|
||||
pgb_style.base_style,
|
||||
wx.DefaultPosition,
|
||||
wx.DefaultSize,
|
||||
wx.TE_LEFT | wx.TE_NO_VSCROLL,
|
||||
@ -1082,7 +1155,7 @@ class SettingPagePannel(wx.Panel):
|
||||
self.m_unplayedProgressbarStyleEntering_textCtrl5 = wx.TextCtrl(
|
||||
ssss_UnplayedPartProgressbarPattle_sbSizer10.GetStaticBox(),
|
||||
wx.ID_ANY,
|
||||
"§7=§r",
|
||||
pgb_style.to_play_style,
|
||||
wx.DefaultPosition,
|
||||
wx.DefaultSize,
|
||||
wx.TE_LEFT | wx.TE_NO_VSCROLL,
|
||||
@ -1105,7 +1178,7 @@ class SettingPagePannel(wx.Panel):
|
||||
self.m_playedProgressbarStyleEntering_textCtrl5 = wx.TextCtrl(
|
||||
ssss_PlayedPartProgressbarPattle_sbSizer11.GetStaticBox(),
|
||||
wx.ID_ANY,
|
||||
"§e=§r",
|
||||
pgb_style.played_style,
|
||||
wx.DefaultPosition,
|
||||
wx.DefaultSize,
|
||||
wx.TE_LEFT | wx.TE_NO_VSCROLL,
|
||||
@ -1150,7 +1223,9 @@ class SettingPagePannel(wx.Panel):
|
||||
experiment_type_choiceChoices,
|
||||
0,
|
||||
)
|
||||
self.experiment_type_choice.SetSelection(0)
|
||||
self.experiment_type_choice.SetSelection(
|
||||
experiment_type_choiceChoices.index(ConvertClass[1])
|
||||
)
|
||||
setting_page1_experiment_style.Add(
|
||||
self.experiment_type_choice,
|
||||
2,
|
||||
@ -1166,7 +1241,7 @@ class SettingPagePannel(wx.Panel):
|
||||
wx.DefaultSize,
|
||||
0,
|
||||
)
|
||||
self.m_ignore_midi_error_checkBox.SetValue(True)
|
||||
self.m_ignore_midi_error_checkBox.SetValue(ignore_midi_mismatch_error)
|
||||
setting_page1_experiment_style.Add(
|
||||
self.m_ignore_midi_error_checkBox, 1, wx.ALL, 5
|
||||
)
|
||||
@ -1203,16 +1278,20 @@ class SettingPagePannel(wx.Panel):
|
||||
|
||||
setting_page2_box_sizer = wx.BoxSizer(wx.VERTICAL)
|
||||
|
||||
m_pitched_instrument_table_choiceChoices = ["“偷吃”的对照表", "“经典”对照表"]
|
||||
self.m_pitched_instrument_table_choice = wx.Choice(
|
||||
self.setting_page2,
|
||||
wx.ID_ANY,
|
||||
wx.DefaultPosition,
|
||||
wx.DefaultSize,
|
||||
m_pitched_instrument_table_choiceChoices,
|
||||
list(convert_tables["PITCHED"].keys()),
|
||||
0,
|
||||
)
|
||||
self.m_pitched_instrument_table_choice.SetSelection(0)
|
||||
self.m_pitched_instrument_table_choice.SetSelection(
|
||||
list(convert_tables["PITCHED"].keys()).index(
|
||||
convert_table_selection["PITCHED"]
|
||||
)
|
||||
)
|
||||
|
||||
self.m_pitched_instrument_table_choice.SetFont(
|
||||
wx.Font(
|
||||
wx.NORMAL_FONT.GetPointSize(),
|
||||
@ -1249,12 +1328,17 @@ class SettingPagePannel(wx.Panel):
|
||||
)
|
||||
)
|
||||
|
||||
self.m_propertyGridItem1 = self.m_pitched_notes_table_propertyGrid1.Append(
|
||||
pg.StringProperty("乐音乐器1", "乐音乐器1")
|
||||
)
|
||||
self.m_propertyGridItem2 = self.m_pitched_notes_table_propertyGrid1.Append(
|
||||
pg.StringProperty("乐音乐器2", "乐音乐器2")
|
||||
)
|
||||
for midi_inst, mc_inst_patern in convert_tables["PITCHED"][
|
||||
convert_table_selection["PITCHED"]
|
||||
].items():
|
||||
self.m_pitched_notes_table_propertyGrid1.Append(
|
||||
pg.StringProperty(
|
||||
Musicreater.MIDI_PITCHED_NOTE_NAME_TABLE[midi_inst + 1][0],
|
||||
"pitched_inst_{}".format(midi_inst),
|
||||
mc_inst_patern[0],
|
||||
)
|
||||
)
|
||||
|
||||
setting_page2_box_sizer.Add(
|
||||
self.m_pitched_notes_table_propertyGrid1,
|
||||
1,
|
||||
@ -1275,16 +1359,19 @@ class SettingPagePannel(wx.Panel):
|
||||
)
|
||||
setting_page3_box_sizer = wx.BoxSizer(wx.VERTICAL)
|
||||
|
||||
m_percussion_instrument_table_choice1Choices = ["“偷吃”的对照表", "“经典”对照表"]
|
||||
self.m_percussion_instrument_table_choice1 = wx.Choice(
|
||||
self.setting_page3,
|
||||
wx.ID_ANY,
|
||||
wx.DefaultPosition,
|
||||
wx.DefaultSize,
|
||||
m_percussion_instrument_table_choice1Choices,
|
||||
list(convert_tables["PERCUSSION"].keys()),
|
||||
0,
|
||||
)
|
||||
self.m_percussion_instrument_table_choice1.SetSelection(0)
|
||||
self.m_percussion_instrument_table_choice1.SetSelection(
|
||||
list(convert_tables["PERCUSSION"].keys()).index(
|
||||
convert_table_selection["PERCUSSION"]
|
||||
)
|
||||
)
|
||||
self.m_percussion_instrument_table_choice1.SetFont(
|
||||
wx.Font(
|
||||
wx.NORMAL_FONT.GetPointSize(),
|
||||
@ -1321,12 +1408,17 @@ class SettingPagePannel(wx.Panel):
|
||||
)
|
||||
)
|
||||
|
||||
self.m_propertyGridItem11 = self.m_percussion_notes_table_propertyGrid11.Append(
|
||||
pg.StringProperty("打击乐器1", "打击乐器1")
|
||||
)
|
||||
self.m_propertyGridItem21 = self.m_percussion_notes_table_propertyGrid11.Append(
|
||||
pg.StringProperty("打击乐器2", "打击乐器2")
|
||||
)
|
||||
for midi_inst, mc_inst_patern in convert_tables["PERCUSSION"][
|
||||
convert_table_selection["PERCUSSION"]
|
||||
].items():
|
||||
self.m_percussion_notes_table_propertyGrid11.Append(
|
||||
pg.StringProperty(
|
||||
Musicreater.MIDI_PERCUSSION_NOTE_NAME_TABLE[midi_inst + 1][0],
|
||||
"percussion_inst_{}".format(midi_inst),
|
||||
mc_inst_patern[0],
|
||||
)
|
||||
)
|
||||
|
||||
setting_page3_box_sizer.Add(
|
||||
self.m_percussion_notes_table_propertyGrid11,
|
||||
1,
|
||||
@ -1345,6 +1437,7 @@ class SettingPagePannel(wx.Panel):
|
||||
self.Layout()
|
||||
|
||||
# Connect Events
|
||||
|
||||
self.m_BasicProgressBarStyleEntering_textCtrl4.Bind(
|
||||
wx.EVT_TEXT, self.onProgressbarBasicStyleUpdating
|
||||
)
|
||||
@ -1354,20 +1447,166 @@ class SettingPagePannel(wx.Panel):
|
||||
self.m_playedProgressbarStyleEntering_textCtrl5.Bind(
|
||||
wx.EVT_TEXT, self.onProgressbarPlayedStyleUpdating
|
||||
)
|
||||
self.m_enable_experiment_checkBox.Bind(
|
||||
wx.EVT_CHECKBOX, self.onExperimentEnableUpdating
|
||||
)
|
||||
self.experiment_type_choice.Bind(wx.EVT_CHOICE, self.onConvertMethodUpdating)
|
||||
self.m_ignore_midi_error_checkBox.Bind(
|
||||
wx.EVT_CHECKBOX, self.onMidiFaultIgnoranceChecking
|
||||
)
|
||||
self.m_pitched_instrument_table_choice.Bind(
|
||||
wx.EVT_CHOICE, self.onPitchedInstListChanging
|
||||
)
|
||||
self.m_pitched_notes_table_propertyGrid1.Bind(
|
||||
pg.EVT_PG_CHANGED, self.onPitchedInstTableChanged
|
||||
)
|
||||
self.m_pitched_notes_table_propertyGrid1.Bind(
|
||||
pg.EVT_PG_CHANGING, self.onPitchedInstTableChanging
|
||||
)
|
||||
self.m_percussion_instrument_table_choice1.Bind(
|
||||
wx.EVT_CHOICE, self.onPercussionInstListChanging
|
||||
)
|
||||
self.m_percussion_notes_table_propertyGrid11.Bind(
|
||||
pg.EVT_PG_CHANGED, self.onPercussionInstTableChanged
|
||||
)
|
||||
self.m_percussion_notes_table_propertyGrid11.Bind(
|
||||
pg.EVT_PG_CHANGING, self.onPercussionInstTableChanging
|
||||
)
|
||||
|
||||
# 设置初始状态
|
||||
|
||||
self.m_ignore_midi_error_checkBox.Enable(False)
|
||||
self.experiment_type_choice.Enable(False)
|
||||
|
||||
def __del__(self):
|
||||
pass
|
||||
|
||||
# Virtual event handlers, override them in your derived class
|
||||
|
||||
|
||||
def onProgressbarBasicStyleUpdating(self, event):
|
||||
event.Skip()
|
||||
pgb_style.set_base_style(
|
||||
self.m_BasicProgressBarStyleEntering_textCtrl4.GetValue()
|
||||
)
|
||||
|
||||
def onProgressbarUnplayedStyleUpdating(self, event):
|
||||
event.Skip()
|
||||
pgb_style.set_to_play_style(
|
||||
self.m_unplayedProgressbarStyleEntering_textCtrl5.GetValue()
|
||||
)
|
||||
|
||||
def onProgressbarPlayedStyleUpdating(self, event):
|
||||
pgb_style.set_played_style(
|
||||
self.m_playedProgressbarStyleEntering_textCtrl5.GetValue()
|
||||
)
|
||||
|
||||
def onExperimentEnableUpdating(self, event):
|
||||
if self.m_enable_experiment_checkBox.GetValue():
|
||||
self.m_ignore_midi_error_checkBox.Enable(True)
|
||||
self.experiment_type_choice.Enable(True)
|
||||
else:
|
||||
self.m_ignore_midi_error_checkBox.Enable(False)
|
||||
self.experiment_type_choice.Enable(False)
|
||||
|
||||
def onConvertMethodUpdating(self, event):
|
||||
global ConvertClass
|
||||
# 0 "常规转换", 1 "长音插值", 2 "同刻偏移"
|
||||
match self.experiment_type_choice.GetSelection():
|
||||
case 0:
|
||||
ConvertClass = (Musicreater.MidiConvert, "常规转换")
|
||||
case 1:
|
||||
ConvertClass = (Musicreater.experiment.FutureMidiConvertM4, "长音插值")
|
||||
case 2:
|
||||
ConvertClass = (Musicreater.experiment.FutureMidiConvertM5, "同刻偏移")
|
||||
|
||||
def onMidiFaultIgnoranceChecking(self, event):
|
||||
global ignore_midi_mismatch_error
|
||||
ignore_midi_mismatch_error = self.m_ignore_midi_error_checkBox.GetValue()
|
||||
|
||||
def onPitchedInstListChanging(self, event):
|
||||
global convert_table_selection
|
||||
convert_table_selection[
|
||||
"PITCHED"
|
||||
] = self.m_pitched_instrument_table_choice.GetStringSelection()
|
||||
self.m_pitched_notes_table_propertyGrid1.SetPropertyValues(
|
||||
dict(
|
||||
[
|
||||
("pitched_inst_{}".format(midi_inst), mc_inst_patern[0])
|
||||
for midi_inst, mc_inst_patern in convert_tables["PITCHED"][
|
||||
convert_table_selection["PITCHED"]
|
||||
].items()
|
||||
]
|
||||
)
|
||||
)
|
||||
# logger.info()
|
||||
|
||||
def onPitchedInstTableChanged(self, event):
|
||||
global convert_table_selection, convert_tables
|
||||
convert_tables["PITCHED"]["自定义对照表"] = dict(
|
||||
[
|
||||
(i, j)
|
||||
for i, j in convert_tables["PITCHED"][
|
||||
convert_table_selection["PITCHED"]
|
||||
].items()
|
||||
]
|
||||
)
|
||||
convert_table_selection["PITCHED"] = "自定义对照表"
|
||||
to_change_id = int(event.GetProperty().GetName().split("_")[-1])
|
||||
to_change_value = (
|
||||
event.GetProperty().GetValue(),
|
||||
Musicreater.MM_INSTRUMENT_DEVIATION_TABLE.get(
|
||||
event.GetProperty().GetValue(), -1
|
||||
),
|
||||
)
|
||||
convert_tables["PITCHED"]["自定义对照表"][to_change_id] = to_change_value
|
||||
logger.info("自定义乐音乐器对照表第 {} 项已更新为:{}".format(to_change_id, to_change_value))
|
||||
if "自定义对照表" not in self.m_pitched_instrument_table_choice.Items:
|
||||
self.m_pitched_instrument_table_choice.Append("自定义对照表")
|
||||
self.m_pitched_instrument_table_choice.SetSelection(2)
|
||||
|
||||
def onPitchedInstTableChanging(self, event):
|
||||
event.Skip()
|
||||
# event.GetPropertyName()
|
||||
# self.m_pitched_notes_table_propertyGrid1
|
||||
|
||||
def onPercussionInstListChanging(self, event):
|
||||
global convert_table_selection
|
||||
convert_table_selection[
|
||||
"PERCUSSION"
|
||||
] = self.m_percussion_instrument_table_choice1.GetStringSelection()
|
||||
self.m_percussion_notes_table_propertyGrid11.SetPropertyValues(
|
||||
dict(
|
||||
[
|
||||
("percussion_inst_{}".format(midi_inst), mc_inst_patern[0])
|
||||
for midi_inst, mc_inst_patern in convert_tables["PERCUSSION"][
|
||||
convert_table_selection["PERCUSSION"]
|
||||
].items()
|
||||
]
|
||||
)
|
||||
)
|
||||
|
||||
def onPercussionInstTableChanged(self, event):
|
||||
global convert_table_selection, convert_tables
|
||||
convert_tables["PERCUSSION"]["自定义对照表"] = dict(
|
||||
[
|
||||
(i, j)
|
||||
for i, j in convert_tables["PERCUSSION"][
|
||||
convert_table_selection["PERCUSSION"]
|
||||
].items()
|
||||
]
|
||||
)
|
||||
convert_table_selection["PERCUSSION"] = "自定义对照表"
|
||||
to_change_id = int(event.GetProperty().GetName().split("_")[-1])
|
||||
to_change_value = (
|
||||
event.GetProperty().GetValue(),
|
||||
Musicreater.MM_INSTRUMENT_DEVIATION_TABLE.get(
|
||||
event.GetProperty().GetValue(), -1
|
||||
),
|
||||
)
|
||||
convert_tables["PERCUSSION"]["自定义对照表"][to_change_id] = to_change_value
|
||||
logger.info("自定义打击乐器对照表第 {} 项已更新为:{}".format(to_change_id, to_change_value))
|
||||
if "自定义对照表" not in self.m_percussion_instrument_table_choice1.Items:
|
||||
self.m_percussion_instrument_table_choice1.Append("自定义对照表")
|
||||
self.m_percussion_instrument_table_choice1.SetSelection(2)
|
||||
|
||||
def onPercussionInstTableChanging(self, event):
|
||||
event.Skip()
|
||||
|
||||
|
||||
@ -1375,7 +1614,7 @@ logger.info("执行应用。")
|
||||
|
||||
# 启动应用程序
|
||||
if __name__ == "__main__":
|
||||
app = LinglunConverterApp()
|
||||
logger.info("检查更新:")
|
||||
|
||||
check_update(
|
||||
__appname__,
|
||||
@ -1391,6 +1630,29 @@ if __name__ == "__main__":
|
||||
__zhver__,
|
||||
)
|
||||
|
||||
logger.info("开启窗口")
|
||||
|
||||
app = LinglunConverterApp()
|
||||
|
||||
app.MainLoop()
|
||||
|
||||
if on_exit_saving:
|
||||
enpack_llc_pack(
|
||||
(
|
||||
pgb_style,
|
||||
on_exit_saving,
|
||||
ignore_midi_mismatch_error,
|
||||
convert_tables,
|
||||
convert_table_selection,
|
||||
ConvertClass,
|
||||
),
|
||||
"save.llc.config",
|
||||
)
|
||||
else:
|
||||
for path, dir_list, file_list in os.walk(r"./"):
|
||||
for file_name in file_list:
|
||||
if file_name.endswith(".llc.config"):
|
||||
os.remove(
|
||||
os.path.join(path, file_name),
|
||||
)
|
||||
# input("按下回车退出……")
|
||||
|
@ -11,13 +11,11 @@ Copyright © 2023 EillesWan & TriM Org.
|
||||
Terms & Conditions: ./Lisense.md
|
||||
"""
|
||||
|
||||
from .io import TrimLog, urllib, Sequence, Iterable, Callable, Optional
|
||||
|
||||
def unpack_language_pack():
|
||||
pass
|
||||
|
||||
def enpack_language_pack():
|
||||
pass
|
||||
from .io import logger, Any
|
||||
|
||||
|
||||
|
||||
def _() -> str:
|
||||
return ""
|
||||
|
64
utils/packdata.py
Normal file
64
utils/packdata.py
Normal file
@ -0,0 +1,64 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
"""
|
||||
伶伦转换器 打包存档组件
|
||||
Linglun Converter Language Localization Component
|
||||
|
||||
版权所有 © 2023 金羿 & 睿穆开发组
|
||||
Copyright © 2023 EillesWan & TriM Org.
|
||||
|
||||
开源相关声明请见 ./License.md
|
||||
Terms & Conditions: ./Lisense.md
|
||||
"""
|
||||
|
||||
|
||||
|
||||
import hashlib
|
||||
|
||||
import dill
|
||||
import brotli
|
||||
|
||||
from .salt import salt
|
||||
from .io import Any
|
||||
|
||||
|
||||
def unpack_llc_pack(from_dist: str, raise_error: bool = True):
|
||||
with open(from_dist, "rb") as f:
|
||||
salty_sha256_value, md5_value, packed_bytes = f.read().split(b" | \n", 2)
|
||||
|
||||
if (md5_value == hashlib.md5(packed_bytes).digest()) and (
|
||||
salty_sha256_value
|
||||
== hashlib.pbkdf2_hmac("sha256", md5_value + packed_bytes, salt, 16)
|
||||
):
|
||||
return dill.loads(
|
||||
brotli.decompress(packed_bytes),
|
||||
)
|
||||
else:
|
||||
if raise_error:
|
||||
raise ValueError("文件读取失败:签名不一致,可能存在注入风险。")
|
||||
else:
|
||||
return ValueError("文件读取失败:签名不一致,可能存在注入风险。")
|
||||
|
||||
|
||||
def enpack_llc_pack(sth: Any, to_dist: str):
|
||||
packing_bytes = brotli.compress(
|
||||
dill.dumps(
|
||||
sth,
|
||||
)
|
||||
)
|
||||
|
||||
md5_value = hashlib.md5(packing_bytes).digest() # 长度 16
|
||||
|
||||
salty_sha256_value = hashlib.pbkdf2_hmac(
|
||||
"sha256", md5_value + packing_bytes, salt, 16
|
||||
) # 长度 32
|
||||
|
||||
with open(
|
||||
to_dist,
|
||||
"wb",
|
||||
) as f:
|
||||
f.write(salty_sha256_value)
|
||||
f.write(b" | \n")
|
||||
f.write(md5_value)
|
||||
f.write(b" | \n")
|
||||
f.write(packing_bytes)
|
@ -80,7 +80,7 @@
|
||||
<property name="window_name"></property>
|
||||
<property name="window_style"></property>
|
||||
</object>
|
||||
<object class="wxMenuBar" expanded="0">
|
||||
<object class="wxMenuBar" expanded="1">
|
||||
<property name="bg"></property>
|
||||
<property name="context_help"></property>
|
||||
<property name="context_menu">1</property>
|
||||
@ -101,10 +101,24 @@
|
||||
<property name="window_extra_style"></property>
|
||||
<property name="window_name"></property>
|
||||
<property name="window_style"></property>
|
||||
<object class="wxMenu" expanded="0">
|
||||
<object class="wxMenu" expanded="1">
|
||||
<property name="label">文件</property>
|
||||
<property name="name">FileMenu</property>
|
||||
<property name="permission">protected</property>
|
||||
<object class="wxMenuItem" expanded="1">
|
||||
<property name="bitmap"></property>
|
||||
<property name="checked">0</property>
|
||||
<property name="enabled">1</property>
|
||||
<property name="help">将全部数据设置重置为默认值(下次启动时生效)</property>
|
||||
<property name="id">wxID_ANY</property>
|
||||
<property name="kind">wxITEM_CHECK</property>
|
||||
<property name="label">重置设置</property>
|
||||
<property name="name">m_ClearSetting_menuItem2</property>
|
||||
<property name="permission">none</property>
|
||||
<property name="shortcut"></property>
|
||||
<property name="unchecked_bitmap"></property>
|
||||
<event name="OnMenuSelection">onResetSettingButtonSelection</event>
|
||||
</object>
|
||||
<object class="wxMenuItem" expanded="0">
|
||||
<property name="bitmap"></property>
|
||||
<property name="checked">0</property>
|
||||
@ -263,7 +277,7 @@
|
||||
<object class="notebookpage" expanded="1">
|
||||
<property name="bitmap"></property>
|
||||
<property name="label">开始转换</property>
|
||||
<property name="select">0</property>
|
||||
<property name="select">1</property>
|
||||
<object class="wxPanel" expanded="1">
|
||||
<property name="BottomDockable">1</property>
|
||||
<property name="LeftDockable">1</property>
|
||||
@ -320,7 +334,7 @@
|
||||
<object class="notebookpage" expanded="1">
|
||||
<property name="bitmap"></property>
|
||||
<property name="label">数据设置</property>
|
||||
<property name="select">1</property>
|
||||
<property name="select">0</property>
|
||||
<object class="wxPanel" expanded="1">
|
||||
<property name="BottomDockable">1</property>
|
||||
<property name="LeftDockable">1</property>
|
||||
@ -2630,6 +2644,7 @@
|
||||
<property name="window_extra_style"></property>
|
||||
<property name="window_name"></property>
|
||||
<property name="window_style"></property>
|
||||
<event name="OnCheckBox">onExperimentEnableUpdating</event>
|
||||
</object>
|
||||
</object>
|
||||
<object class="sizeritem" expanded="0">
|
||||
@ -2694,6 +2709,7 @@
|
||||
<property name="window_extra_style"></property>
|
||||
<property name="window_name"></property>
|
||||
<property name="window_style"></property>
|
||||
<event name="OnChoice">onConvertMethodUpdating</event>
|
||||
</object>
|
||||
</object>
|
||||
<object class="sizeritem" expanded="0">
|
||||
@ -2758,6 +2774,7 @@
|
||||
<property name="window_extra_style"></property>
|
||||
<property name="window_name"></property>
|
||||
<property name="window_style"></property>
|
||||
<event name="OnCheckBox">onMidiFaultIgnoranceChecking</event>
|
||||
</object>
|
||||
</object>
|
||||
</object>
|
||||
@ -2889,6 +2906,7 @@
|
||||
<property name="window_extra_style"></property>
|
||||
<property name="window_name"></property>
|
||||
<property name="window_style"></property>
|
||||
<event name="OnChoice">onPitchedInstListChanging</event>
|
||||
</object>
|
||||
</object>
|
||||
<object class="sizeritem" expanded="1">
|
||||
@ -2950,6 +2968,8 @@
|
||||
<property name="window_extra_style"></property>
|
||||
<property name="window_name"></property>
|
||||
<property name="window_style"></property>
|
||||
<event name="OnPropertyGridChanged">onPitchedInstTableChanged</event>
|
||||
<event name="OnPropertyGridChanging">onPitchedInstTableChanging</event>
|
||||
<object class="propGridItem" expanded="0">
|
||||
<property name="help"></property>
|
||||
<property name="label">乐音乐器1</property>
|
||||
@ -3091,6 +3111,7 @@
|
||||
<property name="window_extra_style"></property>
|
||||
<property name="window_name"></property>
|
||||
<property name="window_style"></property>
|
||||
<event name="OnChoice">onPercussionInstListChanging</event>
|
||||
</object>
|
||||
</object>
|
||||
<object class="sizeritem" expanded="0">
|
||||
@ -3152,6 +3173,8 @@
|
||||
<property name="window_extra_style"></property>
|
||||
<property name="window_name"></property>
|
||||
<property name="window_style"></property>
|
||||
<event name="OnPropertyGridChanged">onPercussionInstTableChanged</event>
|
||||
<event name="OnPropertyGridChanging">onPercussionInstTableChanging</event>
|
||||
<object class="propGridItem" expanded="0">
|
||||
<property name="help"></property>
|
||||
<property name="label">打击乐器1</property>
|
||||
|
Loading…
Reference in New Issue
Block a user