mirror of
https://github.com/TriM-Organization/Musicreater.git
synced 2024-11-11 01:27:35 +08:00
格式化
This commit is contained in:
parent
3b53846ade
commit
2e11a9949b
@ -223,21 +223,22 @@ class midiConvert:
|
||||
126: ("note.basedrum", 7), # 打击乐器无音域
|
||||
127: ("note.snare", 7), # 打击乐器无音域
|
||||
}[instrumentID]
|
||||
except:
|
||||
except BaseException:
|
||||
a = ("note.harp", 6)
|
||||
return a
|
||||
|
||||
def __score2time(self, score: int):
|
||||
return str(int(int(score / 20) / 60)) + ":" + str(int(int(score / 20) % 60))
|
||||
return str(int(int(score / 20) / 60)) + ":" + \
|
||||
str(int(int(score / 20) % 60))
|
||||
|
||||
def __formProgressBar(
|
||||
self,
|
||||
maxscore: int,
|
||||
scoreboardname: str,
|
||||
progressbar: tuple = (
|
||||
r"▶ %%N [ %%s/%^s %%% __________ %%t|%^t ]",
|
||||
("§e=§r", "§7=§r"),
|
||||
),
|
||||
self,
|
||||
maxscore: int,
|
||||
scoreboardname: str,
|
||||
progressbar: tuple = (
|
||||
r"▶ %%N [ %%s/%^s %%% __________ %%t|%^t ]",
|
||||
("§e=§r", "§7=§r"),
|
||||
),
|
||||
) -> list:
|
||||
|
||||
pgsstyle = progressbar[0]
|
||||
@ -256,8 +257,11 @@ class midiConvert:
|
||||
"""
|
||||
|
||||
def __replace(
|
||||
s: str, tobeReplaced: str, replaceWith: str, times: int, other: str
|
||||
):
|
||||
s: str,
|
||||
tobeReplaced: str,
|
||||
replaceWith: str,
|
||||
times: int,
|
||||
other: str):
|
||||
if times == 0:
|
||||
return s.replace(tobeReplaced, other)
|
||||
if times == s.count(tobeReplaced):
|
||||
@ -306,11 +310,11 @@ class midiConvert:
|
||||
|
||||
for i in range(maxscore):
|
||||
nowstr = pgsstyle
|
||||
if ids[r"%%s"] == True:
|
||||
if ids[r"%%s"]:
|
||||
nowstr = nowstr.replace(r"%%s", str(i + 1))
|
||||
if ids[r"%%t"] == True:
|
||||
if ids[r"%%t"]:
|
||||
nowstr = nowstr.replace(r"%%t", self.__score2time(i + 1))
|
||||
if ids[r"%%%"] == True:
|
||||
if ids[r"%%%"]:
|
||||
nowstr = nowstr.replace(
|
||||
r"%%%", str(int((i + 1) / maxscore * 10000) / 100) + "%"
|
||||
)
|
||||
@ -318,29 +322,33 @@ class midiConvert:
|
||||
countof_s = int((i + 1) / maxscore * pgblength)
|
||||
|
||||
finalprgsbar.append(
|
||||
"title @a[scores={"
|
||||
+ scoreboardname
|
||||
+ "="
|
||||
+ str(i + 1)
|
||||
+ "}] actionbar "
|
||||
+ __replace(
|
||||
nowstr, "_", progressbar[1][0], countof_s, progressbar[1][1]
|
||||
)
|
||||
)
|
||||
"title @a[scores={" +
|
||||
scoreboardname +
|
||||
"=" +
|
||||
str(
|
||||
i +
|
||||
1) +
|
||||
"}] actionbar " +
|
||||
__replace(
|
||||
nowstr,
|
||||
"_",
|
||||
progressbar[1][0],
|
||||
countof_s,
|
||||
progressbar[1][1]))
|
||||
|
||||
return finalprgsbar
|
||||
|
||||
def __formCMDblk(
|
||||
self,
|
||||
command: str,
|
||||
particularValue: int,
|
||||
impluse: int = 0,
|
||||
condition: bool = False,
|
||||
needRedstone: bool = True,
|
||||
tickDelay: int = 0,
|
||||
customName: str = "",
|
||||
executeOnFirstTick: bool = False,
|
||||
trackOutput: bool = True,
|
||||
self,
|
||||
command: str,
|
||||
particularValue: int,
|
||||
impluse: int = 0,
|
||||
condition: bool = False,
|
||||
needRedstone: bool = True,
|
||||
tickDelay: int = 0,
|
||||
customName: str = "",
|
||||
executeOnFirstTick: bool = False,
|
||||
trackOutput: bool = True,
|
||||
):
|
||||
"""
|
||||
使用指定项目返回指定的指令方块放置指令项
|
||||
@ -386,7 +394,8 @@ class midiConvert:
|
||||
|
||||
:return:str
|
||||
"""
|
||||
block = b"\x24" + particularValue.to_bytes(2, byteorder="big", signed=False)
|
||||
block = b"\x24" + \
|
||||
particularValue.to_bytes(2, byteorder="big", signed=False)
|
||||
|
||||
for i in [
|
||||
impluse.to_bytes(4, byteorder="big", signed=False),
|
||||
@ -403,8 +412,10 @@ class midiConvert:
|
||||
return block
|
||||
|
||||
def _toCmdList_m1(
|
||||
self, scoreboardname: str = "mscplay", volume: float = 1.0, speed: float = 1.0
|
||||
) -> list:
|
||||
self,
|
||||
scoreboardname: str = "mscplay",
|
||||
volume: float = 1.0,
|
||||
speed: float = 1.0) -> list:
|
||||
"""
|
||||
使用Dislink Sforza的转换思路,将midi转换为我的世界命令列表
|
||||
:param scoreboardname: 我的世界的计分板名称
|
||||
@ -445,23 +456,24 @@ class midiConvert:
|
||||
maxscore = max(maxscore, nowscore)
|
||||
soundID, _X = self.__Inst2soundIDwithX(instrumentID)
|
||||
singleTrack.append(
|
||||
"execute @a[scores={"
|
||||
+ str(scoreboardname)
|
||||
+ "="
|
||||
+ str(nowscore)
|
||||
+ "}"
|
||||
+ f"] ~ ~ ~ playsound {soundID} @s ~ ~{1 / volume - 1} ~ {msg.velocity * (0.7 if msg.channel == 0 else 0.9)} {2 ** ((msg.note - 60 - _X) / 12)}"
|
||||
)
|
||||
"execute @a[scores={" +
|
||||
str(scoreboardname) +
|
||||
"=" +
|
||||
str(nowscore) +
|
||||
"}" +
|
||||
f"] ~ ~ ~ playsound {soundID} @s ~ ~{1 / volume - 1} ~ {msg.velocity * (0.7 if msg.channel == 0 else 0.9)} {2 ** ((msg.note - 60 - _X) / 12)}")
|
||||
commands += 1
|
||||
if len(singleTrack) != 0:
|
||||
tracks.append(singleTrack)
|
||||
|
||||
return tracks, commands, maxscore
|
||||
return [tracks, commands, maxscore]
|
||||
|
||||
# 值得注意的是,我这里没有修改
|
||||
def _toCmdList_m2(
|
||||
self, scoreboardname: str = "mscplay", volume: float = 1.0, speed: float = 1.0
|
||||
) -> list:
|
||||
self,
|
||||
scoreboardname: str = "mscplay",
|
||||
volume: float = 1.0,
|
||||
speed: float = 1.0) -> list:
|
||||
"""
|
||||
使用金羿的转换思路,将midi转换为我的世界命令列表
|
||||
:param scoreboardname: 我的世界的计分板名称
|
||||
@ -502,26 +514,24 @@ class midiConvert:
|
||||
maxscore = max(maxscore, nowscore)
|
||||
soundID, _X = self.__Inst2soundIDwithX(instrumentID)
|
||||
singleTrack.append(
|
||||
"execute @a[scores={"
|
||||
+ str(scoreboardname)
|
||||
+ "="
|
||||
+ str(nowscore)
|
||||
+ "}"
|
||||
+ f"] ~ ~ ~ playsound {soundID} @s ~ ~{1 / volume - 1} ~ {msg.velocity * (0.7 if msg.channel == 0 else 0.9)} {2 ** ((msg.note - 60 - _X) / 12)}"
|
||||
)
|
||||
"execute @a[scores={" +
|
||||
str(scoreboardname) +
|
||||
"=" +
|
||||
str(nowscore) +
|
||||
"}" +
|
||||
f"] ~ ~ ~ playsound {soundID} @s ~ ~{1 / volume - 1} ~ {msg.velocity * (0.7 if msg.channel == 0 else 0.9)} {2 ** ((msg.note - 60 - _X) / 12)}")
|
||||
commands += 1
|
||||
if len(singleTrack) != 0:
|
||||
tracks.append(singleTrack)
|
||||
|
||||
return tracks, commands, maxscore
|
||||
|
||||
return [tracks, commands, maxscore]
|
||||
|
||||
def _toCmdList_withDelay_m1(
|
||||
self,
|
||||
volume: float = 1.0,
|
||||
speed: float = 1.0,
|
||||
player: str = "@a",
|
||||
isMixedWithPrograssBar=False,
|
||||
self,
|
||||
volume: float = 1.0,
|
||||
speed: float = 1.0,
|
||||
player: str = "@a",
|
||||
isMixedWithPrograssBar=False,
|
||||
) -> list:
|
||||
"""
|
||||
使用Dislink Sforza的转换思路,将midi转换为我的世界命令列表,并输出每个音符之后的延迟
|
||||
@ -538,7 +548,7 @@ class midiConvert:
|
||||
if volume <= 0:
|
||||
volume = 0.001
|
||||
|
||||
if isMixedWithPrograssBar == True:
|
||||
if isMixedWithPrograssBar:
|
||||
isMixedWithPrograssBar = (
|
||||
r"▶ %%N [ %%s/%^s %%% __________ %%t|%^t ]",
|
||||
("§e=§r", "§7=§r"),
|
||||
@ -567,10 +577,9 @@ class midiConvert:
|
||||
tracks[nowtick].append(
|
||||
f"execute {player} ~ ~ ~ playsound {soundID} @s ~ ~{1 / volume - 1} ~ {msg.velocity * (0.7 if msg.channel == 0 else 0.9)} {2 ** ((msg.note - 60 - _X) / 12)}"
|
||||
)
|
||||
except:
|
||||
except BaseException:
|
||||
tracks[nowtick] = [
|
||||
f"execute {player} ~ ~ ~ playsound {soundID} @s ~ ~{1 / volume - 1} ~ {msg.velocity * (0.7 if msg.channel == 0 else 0.9)} {2 ** ((msg.note - 60 - _X) / 12)}",
|
||||
]
|
||||
f"execute {player} ~ ~ ~ playsound {soundID} @s ~ ~{1 / volume - 1} ~ {msg.velocity * (0.7 if msg.channel == 0 else 0.9)} {2 ** ((msg.note - 60 - _X) / 12)}", ]
|
||||
|
||||
allticks = list(tracks.keys())
|
||||
|
||||
@ -592,8 +601,11 @@ class midiConvert:
|
||||
"""
|
||||
|
||||
def __replace(
|
||||
s: str, tobeReplaced: str, replaceWith: str, times: int, other: str
|
||||
):
|
||||
s: str,
|
||||
tobeReplaced: str,
|
||||
replaceWith: str,
|
||||
times: int,
|
||||
other: str):
|
||||
if times == 0:
|
||||
return s.replace(tobeReplaced, other)
|
||||
if times == s.count(tobeReplaced):
|
||||
@ -656,15 +668,15 @@ class midiConvert:
|
||||
if isMixedWithPrograssBar:
|
||||
|
||||
nowstr = pgsstyle
|
||||
if ids[r"%%s"] == True:
|
||||
if ids[r"%%s"]:
|
||||
nowstr = nowstr.replace(r"%%s", str(allticks[i] + 1))
|
||||
if ids[r"%%t"] == True:
|
||||
nowstr = nowstr.replace(r"%%t", self.__score2time(allticks[i] + 1))
|
||||
if ids[r"%%%"] == True:
|
||||
if ids[r"%%t"]:
|
||||
nowstr = nowstr.replace(
|
||||
r"%%%",
|
||||
str(int((allticks[i] + 1) / allticks[-1] * 10000) / 100) + "%",
|
||||
)
|
||||
r"%%t", self.__score2time(
|
||||
allticks[i] + 1))
|
||||
if ids[r"%%%"]:
|
||||
nowstr = nowstr.replace(r"%%%", str(
|
||||
int((allticks[i] + 1) / allticks[-1] * 10000) / 100) + "%", )
|
||||
|
||||
countof_s = int((allticks[i] + 1) / allticks[-1] * pgblength)
|
||||
|
||||
@ -693,13 +705,13 @@ class midiConvert:
|
||||
return math.ceil(math.sqrt(math.ceil(total / maxHeight)))
|
||||
|
||||
def tomcpack(
|
||||
self,
|
||||
method: int = 1,
|
||||
isAutoReset: bool = False,
|
||||
progressbar=None,
|
||||
scoreboardname: str = "mscplay",
|
||||
volume: float = 1.0,
|
||||
speed: float = 1.0,
|
||||
self,
|
||||
method: int = 1,
|
||||
isAutoReset: bool = False,
|
||||
progressbar=None,
|
||||
scoreboardname: str = "mscplay",
|
||||
volume: float = 1.0,
|
||||
speed: float = 1.0,
|
||||
) -> bool:
|
||||
"""
|
||||
使用method指定的转换算法,将midi转换为我的世界mcpack格式的包
|
||||
@ -712,7 +724,8 @@ class midiConvert:
|
||||
:return 成功与否,成功返回(True,True),失败返回(False,str失败原因)
|
||||
"""
|
||||
if method == 1:
|
||||
cmdlist, _a, maxscore = self._toCmdList_m1(scoreboardname, volume, speed)
|
||||
cmdlist, _a, maxscore = self._toCmdList_m1(
|
||||
scoreboardname, volume, speed)
|
||||
else:
|
||||
return (False, f"无法找到算法ID{method}对应的转换算法")
|
||||
del _a
|
||||
@ -725,24 +738,22 @@ class midiConvert:
|
||||
# 写入manifest.json
|
||||
if not os.path.exists(f"{self.outputPath}/temp/manifest.json"):
|
||||
with open(
|
||||
f"{self.outputPath}/temp/manifest.json", "w", encoding="utf-8"
|
||||
f"{self.outputPath}/temp/manifest.json", "w", encoding="utf-8"
|
||||
) as f:
|
||||
f.write(
|
||||
'{\n "format_version": 1,\n "header": {\n "description": "'
|
||||
+ self.midFileName
|
||||
+ ' Pack : behavior pack",\n "version": [ 0, 0, 1 ],\n "name": "'
|
||||
+ self.midFileName
|
||||
+ 'Pack",\n "uuid": "'
|
||||
+ str(uuid.uuid4())
|
||||
+ '"\n },\n "modules": [\n {\n "description": "'
|
||||
+ f"the Player of the Music {self.midFileName}"
|
||||
+ '",\n "type": "data",\n "version": [ 0, 0, 1 ],\n "uuid": "'
|
||||
+ str(uuid.uuid4())
|
||||
+ '"\n }\n ]\n}'
|
||||
)
|
||||
f.write('{\n "format_version": 1,\n "header": {\n "description": "' +
|
||||
self.midFileName +
|
||||
' Pack : behavior pack",\n "version": [ 0, 0, 1 ],\n "name": "' +
|
||||
self.midFileName +
|
||||
'Pack",\n "uuid": "' +
|
||||
str(uuid.uuid4()) +
|
||||
'"\n },\n "modules": [\n {\n "description": "' +
|
||||
f"the Player of the Music {self.midFileName}" +
|
||||
'",\n "type": "data",\n "version": [ 0, 0, 1 ],\n "uuid": "' +
|
||||
str(uuid.uuid4()) +
|
||||
'"\n }\n ]\n}')
|
||||
else:
|
||||
with open(
|
||||
f"{self.outputPath}/temp/manifest.json", "r", encoding="utf-8"
|
||||
f"{self.outputPath}/temp/manifest.json", "r", encoding="utf-8"
|
||||
) as manifest:
|
||||
data = json.loads(manifest.read())
|
||||
data["header"][
|
||||
@ -753,22 +764,22 @@ class midiConvert:
|
||||
data["modules"][0]["description"] = "None"
|
||||
data["modules"][0]["uuid"] = str(uuid.uuid4())
|
||||
manifest.close()
|
||||
open(f"{self.outputPath}/temp/manifest.json", "w", encoding="utf-8").write(
|
||||
json.dumps(data)
|
||||
)
|
||||
open(f"{self.outputPath}/temp/manifest.json", "w",
|
||||
encoding="utf-8").write(json.dumps(data))
|
||||
|
||||
# 将命令列表写入文件
|
||||
indexfile = open(
|
||||
f"{self.outputPath}/temp/functions/index.mcfunction", "w", encoding="utf-8"
|
||||
)
|
||||
f"{self.outputPath}/temp/functions/index.mcfunction",
|
||||
"w",
|
||||
encoding="utf-8")
|
||||
for track in cmdlist:
|
||||
indexfile.write(
|
||||
"function mscplay/track" + str(cmdlist.index(track) + 1) + "\n"
|
||||
)
|
||||
with open(
|
||||
f"{self.outputPath}/temp/functions/mscplay/track{cmdlist.index(track) + 1}.mcfunction",
|
||||
"w",
|
||||
encoding="utf-8",
|
||||
f"{self.outputPath}/temp/functions/mscplay/track{cmdlist.index(track) + 1}.mcfunction",
|
||||
"w",
|
||||
encoding="utf-8",
|
||||
) as f:
|
||||
f.write("\n".join(track))
|
||||
indexfile.writelines(
|
||||
@ -793,20 +804,22 @@ class midiConvert:
|
||||
)
|
||||
|
||||
if progressbar:
|
||||
if progressbar == True:
|
||||
if progressbar:
|
||||
with open(
|
||||
f"{self.outputPath}/temp/functions/mscplay/progressShow.mcfunction",
|
||||
"w",
|
||||
encoding="utf-8",
|
||||
f"{self.outputPath}/temp/functions/mscplay/progressShow.mcfunction",
|
||||
"w",
|
||||
encoding="utf-8",
|
||||
) as f:
|
||||
f.writelines(
|
||||
"\n".join(self.__formProgressBar(maxscore, scoreboardname))
|
||||
)
|
||||
"\n".join(
|
||||
self.__formProgressBar(
|
||||
maxscore,
|
||||
scoreboardname)))
|
||||
else:
|
||||
with open(
|
||||
f"{self.outputPath}/temp/functions/mscplay/progressShow.mcfunction",
|
||||
"w",
|
||||
encoding="utf-8",
|
||||
f"{self.outputPath}/temp/functions/mscplay/progressShow.mcfunction",
|
||||
"w",
|
||||
encoding="utf-8",
|
||||
) as f:
|
||||
f.writelines(
|
||||
"\n".join(
|
||||
@ -819,21 +832,22 @@ class midiConvert:
|
||||
indexfile.close()
|
||||
|
||||
makeZip(
|
||||
f"{self.outputPath}/temp/", self.outputPath + f"/{self.midFileName}.mcpack"
|
||||
)
|
||||
f"{self.outputPath}/temp/",
|
||||
self.outputPath +
|
||||
f"/{self.midFileName}.mcpack")
|
||||
|
||||
shutil.rmtree(f"{self.outputPath}/temp/")
|
||||
|
||||
def toBDXfile(
|
||||
self,
|
||||
method: int = 1,
|
||||
author: str = "Eilles",
|
||||
progressbar=False,
|
||||
maxheight: int = 64,
|
||||
scoreboardname: str = "mscplay",
|
||||
volume: float = 1.0,
|
||||
speed: float = 1.0,
|
||||
isAutoReset: bool = False,
|
||||
self,
|
||||
method: int = 1,
|
||||
author: str = "Eilles",
|
||||
progressbar=False,
|
||||
maxheight: int = 64,
|
||||
scoreboardname: str = "mscplay",
|
||||
volume: float = 1.0,
|
||||
speed: float = 1.0,
|
||||
isAutoReset: bool = False,
|
||||
):
|
||||
"""
|
||||
使用method指定的转换算法,将midi转换为BDX结构文件
|
||||
@ -902,7 +916,7 @@ class midiConvert:
|
||||
)
|
||||
|
||||
if progressbar:
|
||||
if progressbar == True:
|
||||
if progressbar:
|
||||
commands += self.__formProgressBar(maxScore, scoreboardname)
|
||||
else:
|
||||
commands += self.__formProgressBar(
|
||||
@ -934,7 +948,8 @@ class midiConvert:
|
||||
|
||||
nowy += 1 if yforward else -1
|
||||
|
||||
if ((nowy > maxheight) and (yforward)) or ((nowy < 0) and (not yforward)):
|
||||
if ((nowy > maxheight) and (yforward)) or (
|
||||
(nowy < 0) and (not yforward)):
|
||||
nowy -= 1 if yforward else -1
|
||||
|
||||
yforward = not yforward
|
||||
@ -942,7 +957,7 @@ class midiConvert:
|
||||
nowz += 1 if zforward else -1
|
||||
|
||||
if ((nowz > _sideLength) and (zforward)) or (
|
||||
(nowz < 0) and (not zforward)
|
||||
(nowz < 0) and (not zforward)
|
||||
):
|
||||
nowz -= 1 if zforward else -1
|
||||
zforward = not zforward
|
||||
@ -962,14 +977,14 @@ class midiConvert:
|
||||
return (True, _bytes, (nowx, maxheight, _sideLength))
|
||||
|
||||
def toBDXfile_withDelay(
|
||||
self,
|
||||
method: int = 1,
|
||||
author: str = "Eilles",
|
||||
progressbar=False,
|
||||
maxheight: int = 64,
|
||||
volume: float = 1.0,
|
||||
speed: float = 1.0,
|
||||
player: str = "@a",
|
||||
self,
|
||||
method: int = 1,
|
||||
author: str = "Eilles",
|
||||
progressbar=False,
|
||||
maxheight: int = 64,
|
||||
volume: float = 1.0,
|
||||
speed: float = 1.0,
|
||||
player: str = "@a",
|
||||
):
|
||||
"""
|
||||
使用method指定的转换算法,将midi转换为BDX结构文件
|
||||
@ -984,7 +999,8 @@ class midiConvert:
|
||||
"""
|
||||
|
||||
if method == 1:
|
||||
cmdlist = self._toCmdList_withDelay_m1(volume, speed, player, progressbar)
|
||||
cmdlist = self._toCmdList_withDelay_m1(
|
||||
volume, speed, player, progressbar)
|
||||
else:
|
||||
return (False, f"无法找到算法ID {method} 对应的转换算法")
|
||||
|
||||
@ -1044,7 +1060,8 @@ class midiConvert:
|
||||
|
||||
nowy += 1 if yforward else -1
|
||||
|
||||
if ((nowy > maxheight) and (yforward)) or ((nowy < 0) and (not yforward)):
|
||||
if ((nowy > maxheight) and (yforward)) or (
|
||||
(nowy < 0) and (not yforward)):
|
||||
nowy -= 1 if yforward else -1
|
||||
|
||||
yforward = not yforward
|
||||
@ -1052,7 +1069,7 @@ class midiConvert:
|
||||
nowz += 1 if zforward else -1
|
||||
|
||||
if ((nowz > _sideLength) and (zforward)) or (
|
||||
(nowz < 0) and (not zforward)
|
||||
(nowz < 0) and (not zforward)
|
||||
):
|
||||
nowz -= 1 if zforward else -1
|
||||
zforward = not zforward
|
||||
|
Loading…
Reference in New Issue
Block a user