Commit 4a5f7306 authored by Tachibana's avatar Tachibana

sign out

parent 98a43f09
{
"id": "extraBGMs_ripples",
"version": "1.0.0",
"name": "IIDX 13 DistorteD",
"author": "Tachibana",
"description": "jubeat ripples BGM",
"dir": "assets",
"preview": "preview.jpg",
"resourcepack": [
"audio/music/lobby.mp3",
"audio/music/title.mp3",
"audio/my_music/0.mp3",
"audio/my_music/1.mp3",
"audio/my_music/2.mp3",
"audio/my_music/3.mp3",
"audio/my_music/4.mp3",
"audio/my_music/5.mp3",
"audio/my_music/6.mp3",
"audio/my_music/7.mp3",
"audio/my_music/e1.mp3",
"audio/my_music/e2.mp3",
"audio/my_music/e3.mp3",
"audio/my_music/h1.mp3",
"audio/my_music/h2.mp3",
"audio/my_music/h3.mp3",
"audio/my_music/p.mp3",
"audio/my_music/r1.mp3",
"audio/my_music/r2.mp3",
"audio/my_music/r3.mp3"
],
"dependencies": {},
"entry": "script.js"
}
\ No newline at end of file
// 增强型BGM,作者 rin93 改造 青龙圣者 ,bin
if (!!view && !!uiscript) {
const musicDir = 'music/'
//h1为终局精算点正分,h2为Top,h3为精算点负分;r1为他家立直,r2为自家立直,r3为追立;连庄BGM不变,e1-e3未使用。
const _showBackup = uiscript.UI_GameEnd.prototype.show
uiscript.UI_GameEnd.prototype.show = function () {
var musicPlayerFlag = false
view.DesktopMgr.Inst.gameEndResult.players.forEach((player, index) => {
if (player.seat == view.DesktopMgr.Inst.seat) {
if (index == 0) {
view.AudioMgr.PlayMusic('my_music/h2.mp3', 1, false, true)
musicPlayerFlag = true
} else if (player.total_point >= 0) {
view.AudioMgr.PlayMusic('my_music/h1.mp3', 1, false, true)
musicPlayerFlag = true
} else {
view.AudioMgr.PlayMusic('my_music/h3.mp3', 1, false, true)
musicPlayerFlag = true
}
}
})
if (!musicPlayerFlag) {
view.AudioMgr.PlayMusic('my_music/h1.mp3', 1, false, true)
}
_showBackup.apply(this, arguments)
}
// 不同 UI 注入不同音乐
const lobbyMusic = musicDir + 'lobby.mp3'
const executeUIs = [
['UI_Remind', 'onCreate', 'title.mp3'],
['UI_Lobby', 'onEnable', 'lobby.mp3']
]
executeUIs.forEach(([scriptKey, funName, fileName]) => {
uiscript[scriptKey].prototype[funName] = (() => {
const functionBackup = uiscript[scriptKey].prototype[funName]
return function () {
view.AudioMgr.PlayMusic(musicDir + fileName, 1, false, true)
return functionBackup.apply(this, arguments)
}
})()
})
!(function (e = view, u = uiscript, i = view.DesktopMgr, am = view.AudioMgr) {
var _cy_riched,
_cy_myrich,
_cy_cur_bgm,
_cy_fc,
_cy_bgmidx,
_cy_tk,
tmp;
(am.PlayMusic = (() => {
const functionBackup = am.PlayMusic
let lastTimeMusic = ''
return function (audioDir, ...args) {
console.log(args)
console.warn('Playing: ' + audioDir)
if (args[2] !== true) {
if (view.BgmListMgr.bgm_lobby_list.includes(audioDir)) {
lastTimeMusic = lobbyMusic
}
return functionBackup.apply(this, [lastTimeMusic, ...args])
} else {
lastTimeMusic = audioDir
}
return functionBackup.apply(this, [audioDir, ...args])
}
})()),
(paiRemain = () => {
return i.Inst.left_tile_count <= 20
}),
(playMusic = () => {
var t = ''
if (_cy_riched) {
t = _cy_riched > 1 ? 'r' + 3 : _cy_myrich ? 'r' + 2 : 'r' + 1
} else {
t = paiRemain() ? 'p' : (_cy_bgmidx % 8) + ''
}
_cy_cur_bgm = !t ? _cy_cur_bgm : 'my_music/' + t + '.mp3';
!_cy_fc && _cy_cur_bgm && i.Inst.gameing && am.PlayMusic(_cy_cur_bgm, 0, false, true)
}),
(e.ViewPlayer.prototype.AddQiPai = (function () {
var o = e.ViewPlayer.prototype.AddQiPai
return function (r, x, y, z) {
return (
x &&
(++_cy_riched,
(_cy_myrich = this.container_qipai.player.seat == i.Inst.seat),
playMusic()),
o.apply(this, arguments)
)
}
})()),
(newRound = function (t) {
if (!_cy_tk && i.Inst) {
_cy_tk = 1
i.Inst.RefreshPaiLeft = (() => {
var o = i.Inst.RefreshPaiLeft
return function (a, b) {
return paiRemain() && playMusic(), o.apply(this, arguments)
}
})()
}
_cy_cur_bgm = ''
//t.ju为局数
_cy_bgmidx = t.chang * 4 + t.ju
_cy_riched = 0
new Error().stack.split('\n')[2].match(/fastrecord/) && (_cy_fc = 1)
playMusic()
}),
['play', 'fastplay', 'record', 'fastrecord'].forEach(i => {
e.ActionNewRound[i] = (() => {
var o = e.ActionNewRound[i]
return function (t) {
return (tmp = o.apply(this, arguments)), newRound(t), tmp
}
})()
}),
Object.entries({
Replay: '_refreshBarshow',
Live_Broadcast: '_fastSync'
}).forEach(([k, v]) => {
u['UI_' + k]['prototype'][v] = (() => {
var o = u['UI_' + k]['prototype'][v]
return function () {
return (
(tmp = o.apply(this, arguments)),
_cy_fc && ((_cy_fc = 0), playMusic()),
tmp
)
}
})()
})
})(view, uiscript, view.DesktopMgr, view.AudioMgr)
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment