taiko-web/public/src/js/songselect.js

1371 lines
36 KiB
JavaScript
Raw Normal View History

2018-09-18 00:37:59 +02:00
class SongSelect{
constructor(fromTutorial, fadeIn, touchEnabled){
this.touchEnabled = touchEnabled
2018-09-26 20:30:57 +02:00
loader.changePage("songselect")
this.canvas = document.getElementById("song-sel-canvas")
this.ctx = this.canvas.getContext("2d")
this.songSkin = {
"selected": {
background: "#ffdb2c",
border: ["#fff4b5", "#ffa600"],
outline: "#000"
},
"back": {
background: "#efb058",
border: ["#ffe7bd", "#c68229"],
outline: "#ad7723"
},
"random": {
2018-09-27 03:04:01 +02:00
sort: 7,
2018-09-26 20:30:57 +02:00
background: "#fa91ff",
border: ["#ffdfff", "#b068b2"],
outline: "#b221bb"
},
"tutorial": {
2018-09-27 03:04:01 +02:00
sort: 7,
2018-09-26 20:30:57 +02:00
background: "#9afbe1",
border: ["#d6ffff", "#6bae9c"],
outline: "#31ae94"
},
2018-10-14 10:04:31 +02:00
"about": {
sort: 7,
background: "#91cfff",
border: ["#dff0ff", "#6890b2"],
outline: "#217abb"
},
2018-09-26 20:30:57 +02:00
"J-POP": {
sort: 0,
background: "#219fbb",
border: ["#7ec3d3", "#0b6773"],
outline: "#005058"
},
"アニメ": {
sort: 1,
background: "#ff9700",
border: ["#ffdb8c", "#e75500"],
outline: "#9c4100"
},
2018-09-27 03:04:01 +02:00
"ボーカロイド™曲": {
2018-09-26 20:30:57 +02:00
sort: 2,
background: "#def2ef",
border: ["#f7fbff", "#79919f"],
outline: "#5a6584"
},
"バラエティ": {
sort: 3,
background: "#8fd321",
border: ["#f7fbff", "#587d0b"],
outline: "#374c00"
},
"クラシック": {
sort: 4,
background: "#d1a016",
border: ["#e7cf6b", "#9a6b00"],
outline: "#734d00"
},
"ゲームミュージック": {
sort: 5,
background: "#9c72c0",
border: ["#bda2ce", "#63407e"],
outline: "#4b1c74"
},
"ナムコオリジナル": {
sort: 6,
background: "#ff5716",
border: ["#ffa66b", "#b53000"],
outline: "#9c2000"
},
"default": {
sort: 7,
background: "#ececec",
border: ["#fbfbfb", "#8b8b8b"],
outline: "#656565"
}
}
2018-10-12 20:21:21 +02:00
this.font = "TnT, Meiryo, sans-serif"
2018-09-26 20:30:57 +02:00
this.songs = []
for(let song of assets.songs){
this.songs.push({
id: song.id,
title: song.title,
2018-09-27 20:39:25 +02:00
skin: song.category in this.songSkin ? this.songSkin[song.category] : this.songSkin.default,
2018-09-26 20:30:57 +02:00
stars: song.stars,
category: song.category,
2018-10-11 00:13:24 +02:00
preview: song.preview || 0,
type: song.type,
offset: song.offset
2018-09-26 20:30:57 +02:00
})
}
this.songs.sort((a, b) => {
2018-09-27 20:39:25 +02:00
var catA = a.category in this.songSkin ? this.songSkin[a.category] : this.songSkin.default
var catB = b.category in this.songSkin ? this.songSkin[b.category] : this.songSkin.default
if(catA.sort === catB.sort){
2018-09-26 20:30:57 +02:00
return a.id > b.id ? 1 : -1
}else{
2018-09-27 20:39:25 +02:00
return catA.sort > catB.sort ? 1 : -1
2018-09-26 20:30:57 +02:00
}
})
this.songs.push({
title: "もどる",
skin: this.songSkin.back,
action: "back"
})
this.songs.push({
title: "ランダムに曲をえらぶ",
skin: this.songSkin.random,
2018-09-27 03:04:01 +02:00
action: "random",
category: "ランダム"
2018-09-26 20:30:57 +02:00
})
if(touchEnabled){
2018-10-14 10:04:31 +02:00
if(fromTutorial === "tutorial"){
fromTutorial = false
}
}else{
this.songs.push({
title: "あそびかた説明",
skin: this.songSkin.tutorial,
action: "tutorial",
category: "ランダム"
})
}
2018-10-14 10:04:31 +02:00
this.songs.push({
title: "について",
skin: this.songSkin.about,
action: "about",
category: "ランダム"
})
2018-09-26 20:30:57 +02:00
this.songs.push({
title: "もどる",
skin: this.songSkin.back,
action: "back"
})
this.songAsset = {
marginTop: 90,
marginLeft: 18,
width: 82,
selectedWidth: 382,
2018-10-09 15:07:53 +02:00
fullWidth: 912,
2018-09-26 20:30:57 +02:00
height: 452,
2018-10-09 15:07:53 +02:00
fullHeight: 502,
2018-09-26 20:30:57 +02:00
border: 6,
innerBorder: 8,
letterBorder: 12
}
2018-10-01 09:33:43 +02:00
this.draw = new CanvasDraw()
2018-10-09 15:07:53 +02:00
this.songTitleCache = new CanvasCache()
this.selectTextCache = new CanvasCache()
this.categoryCache = new CanvasCache()
this.difficultyCache = new CanvasCache()
2018-09-26 20:30:57 +02:00
this.difficulty = ["かんたん", "ふつう", "むずかしい", "おに"]
2018-10-12 20:04:28 +02:00
this.difficultyId = ["easy", "normal", "hard", "oni", "ura"]
2018-09-26 20:30:57 +02:00
this.selectedSong = 0
this.selectedDiff = 0
2018-09-26 23:12:50 +02:00
assets.sounds["bgm_songsel"].playLoop(0.1, false, 0, 1.442, 3.506)
2018-10-14 13:02:50 +02:00
if(!fromTutorial && !("selectedSong" in localStorage)){
fromTutorial = touchEnabled ? "about" : "tutorial"
2018-10-14 10:04:31 +02:00
}
if(fromTutorial){
this.selectedSong = this.songs.findIndex(song => song.action === fromTutorial)
this.playBgm(true)
}else{
2018-09-26 20:30:57 +02:00
if("selectedSong" in localStorage){
this.selectedSong = Math.min(Math.max(0, localStorage["selectedSong"] |0), this.songs.length)
}
assets.sounds["song-select"].play()
snd.musicGain.fadeOut()
this.playBgm(false)
2018-09-26 20:30:57 +02:00
}
if("selectedDiff" in localStorage){
this.selectedDiff = Math.min(Math.max(0, localStorage["selectedDiff"] |0), 4)
2018-09-18 00:37:59 +02:00
}
2018-09-26 20:30:57 +02:00
2018-09-27 03:04:01 +02:00
this.songSelect = document.getElementById("song-select")
var cat = this.songs[this.selectedSong].category
var sort = cat in this.songSkin ? this.songSkin[cat].sort : 7
this.songSelect.style.backgroundImage = "url('" + assets.image["bg_genre_" + sort].src + "')"
2018-09-18 00:37:59 +02:00
this.previewId = 0
2018-09-26 20:30:57 +02:00
this.state = {
2018-10-01 09:33:43 +02:00
screen: fromTutorial ? "song" : (fadeIn ? "titleFadeIn" : "title"),
2018-09-26 20:30:57 +02:00
screenMS: this.getMS(),
move: 0,
moveMS: 0,
2018-10-12 20:04:28 +02:00
ura: 0,
2018-09-26 20:30:57 +02:00
moveHover: null,
locked: true,
hasPointer: false
2018-09-18 00:37:59 +02:00
}
2018-09-26 20:30:57 +02:00
this.songSelecting = {
speed: 800,
resize: 0.3,
scrollDelay: 0.1
}
this.startPreview(true)
this.pressedKeys = {}
this.gamepad = new Gamepad({
2018-10-08 22:32:25 +02:00
"13": ["b", "start", "ls", "rs"],
2018-09-26 20:30:57 +02:00
"8": ["a"],
"37": ["l", "lb", "lt", "lsl"],
"39": ["r", "rb", "rt", "lsr"],
"ctrl": ["y"],
"shift": ["x"]
2018-09-26 20:30:57 +02:00
})
this.startP2()
2018-09-27 03:04:01 +02:00
2018-09-26 20:30:57 +02:00
this.redrawRunning = true
this.redrawBind = this.redraw.bind(this)
this.redraw()
pageEvents.keyAdd(this, "all", "down", this.keyDown.bind(this))
pageEvents.add(this.canvas, "mousemove", this.mouseMove.bind(this))
2018-10-12 20:04:28 +02:00
pageEvents.add(this.canvas, ["mousedown", "touchstart"], this.mouseDown.bind(this))
if(touchEnabled && fullScreenSupported){
this.touchFullBtn = document.getElementById("touch-full-btn")
this.touchFullBtn.style.display = "block"
2018-10-12 20:04:28 +02:00
pageEvents.add(this.touchFullBtn, "touchend", toggleFullscreen)
}
2018-09-05 18:46:26 +02:00
}
2018-09-26 20:30:57 +02:00
keyDown(event, code){
if(code){
var modifiers = {
shift: this.pressedKeys["shift"],
ctrl: this.pressedKeys["ctrl"]
}
}else{
2018-09-26 20:30:57 +02:00
code = event.keyCode
var modifiers = {
shift: event.shiftKey,
ctrl: event.ctrlKey
}
}
2018-10-01 09:33:43 +02:00
if(code === "ctrl" || code === "shift"){
return
2018-09-26 20:30:57 +02:00
}
var key = {
confirm: code == 13 || code == 32 || code == 86 || code == 66,
// Enter, Space, V, B
cancel: code == 27 || code == 8,
// Esc, Backspace
left: code == 37 || code == 67,
// Left, C
right: code == 39 || code == 78
// Right, N
}
if(key.cancel && event){
event.preventDefault()
}
if(this.state.screen === "song"){
if(key.confirm){
this.toSelectDifficulty()
}else if(key.cancel){
this.toTitleScreen()
}else if(key.left){
this.moveToSong(-1)
}else if(key.right){
this.moveToSong(1)
}
}else if(this.state.screen === "difficulty"){
if(key.confirm){
if(this.selectedDiff === 0){
this.toSongSelect()
}else{
this.toLoadSong(this.selectedDiff - 1, modifiers.shift, modifiers.ctrl)
2018-09-26 20:30:57 +02:00
}
}else if(key.cancel){
this.toSongSelect()
}else if(key.left){
this.moveToDiff(-1)
}else if(key.right){
this.moveToDiff(1)
}
}
}
mouseDown(event){
2018-10-05 19:03:59 +02:00
if(event.type === "mousedown"){
if(event.which !== 1){
return
}
var mouse = this.mouseOffset(event.offsetX, event.offsetY)
var shift = event.shiftKey
var ctrl = event.ctrlKey
var touch = false
}else{
event.preventDefault()
var mouse = this.mouseOffset(event.touches[0].pageX, event.touches[0].pageY)
var shift = false
var ctrl = false
var touch = true
2018-09-26 20:30:57 +02:00
}
if(this.state.screen === "song"){
var moveBy = this.songSelMouse(mouse.x, mouse.y)
if(moveBy === 0){
this.toSelectDifficulty()
}else if(moveBy !== null){
this.moveToSong(moveBy)
}
}else if(this.state.screen === "difficulty"){
var moveBy = this.diffSelMouse(mouse.x, mouse.y)
if(
moveBy === 0
|| mouse.x < 55 || mouse.x > 967
|| mouse.y < 40 || mouse.y > 540
){
this.toSongSelect()
2018-10-12 20:04:28 +02:00
}else if(moveBy === 5){
this.state.ura = !this.state.ura
assets.sounds["ka"].play()
if(this.selectedDiff === 5 && !this.state.ura){
this.state.move = -1
}
2018-09-26 20:30:57 +02:00
}else if(moveBy !== null){
2018-10-05 19:03:59 +02:00
this.toLoadSong(moveBy - 1, shift, ctrl, touch)
2018-09-26 20:30:57 +02:00
}
}
}
mouseMove(event){
2018-10-05 19:03:59 +02:00
var mouse = this.mouseOffset(event.offsetX, event.offsetY)
var moveTo = null
2018-09-26 20:30:57 +02:00
if(this.state.screen === "song"){
var moveTo = this.songSelMouse(mouse.x, mouse.y)
if(moveTo === null && this.state.moveHover === 0 && !this.songs[this.selectedSong].stars){
this.state.moveMS = this.getMS() - this.songSelecting.speed
}
this.state.moveHover = moveTo
}else if(this.state.screen === "difficulty"){
var moveTo = this.diffSelMouse(mouse.x, mouse.y)
if(moveTo === null && this.state.moveHover === this.selectedDiff){
this.state.moveMS = this.getMS() - 1000
}
this.state.moveHover = moveTo
}
this.pointer(moveTo !== null)
2018-09-26 20:30:57 +02:00
}
2018-10-05 19:03:59 +02:00
mouseOffset(offsetX, offsetY){
2018-09-26 20:30:57 +02:00
return {
2018-10-05 19:03:59 +02:00
x: (offsetX * this.pixelRatio - this.winW / 2) / this.ratio + 1024 / 2,
y: (offsetY * this.pixelRatio - this.winH / 2) / this.ratio + 720 / 2
2018-09-26 20:30:57 +02:00
}
}
pointer(enabled){
if(!this.canvas){
return
}
if(enabled && this.state.hasPointer === false){
this.canvas.style.cursor = "pointer"
this.state.hasPointer = true
}else if(!enabled && this.state.hasPointer === true){
this.canvas.style.cursor = ""
this.state.hasPointer = false
}
}
2018-09-26 20:30:57 +02:00
songSelMouse(x, y){
if(this.state.locked === 0 && this.songAsset.marginTop <= y && y <= this.songAsset.marginTop + this.songAsset.height){
x -= 1024 / 2
var dir = x > 0 ? 1 : -1
x = Math.abs(x)
var selectedWidth = this.songAsset.selectedWidth
if(!this.songs[this.selectedSong].stars){
selectedWidth = this.songAsset.width
}
var moveBy = Math.ceil((x - selectedWidth / 2 - this.songAsset.marginLeft / 2) / (this.songAsset.width + this.songAsset.marginLeft)) * dir
if(moveBy / dir > 0){
return moveBy
}else{
return 0
}
}
return null
}
diffSelMouse(x, y){
if(this.state.locked === 0){
if(100 < x && x < 160 && 120 < y && y < 420){
return 0
2018-10-12 20:04:28 +02:00
}else if(422 < x && x < 922 && 95 < y && y < 524){
var moveBy = Math.floor((x - 422) / ((922 - 422) / 5)) + 1
2018-09-26 20:30:57 +02:00
var currentSong = this.songs[this.selectedSong]
2018-10-12 20:04:28 +02:00
if(this.state.ura && moveBy === 4 || currentSong.stars[moveBy - 1]){
2018-09-26 20:30:57 +02:00
return moveBy
}
}
}
return null
}
moveToSong(moveBy){
if(this.state.locked !== 1){
var ms = this.getMS()
if(this.songs[this.selectedSong].stars && this.state.locked === 0){
this.state.moveMS = ms
}else{
this.state.moveMS = ms - this.songSelecting.speed * this.songSelecting.resize
}
this.state.move = moveBy
this.state.lastMove = moveBy
this.state.locked = 1
this.state.moveHover = null
var lastMoveMul = Math.pow(Math.abs(moveBy), 1 / 4)
var changeSpeed = this.songSelecting.speed * lastMoveMul
var resize = changeSpeed * this.songSelecting.resize / lastMoveMul
var scrollDelay = changeSpeed * this.songSelecting.scrollDelay
var resize2 = changeSpeed - resize
var scroll = resize2 - resize - scrollDelay * 2
var soundsDelay = Math.abs((scroll + resize) / moveBy)
for(var i = 0; i < Math.abs(moveBy) - 1; i++){
assets.sounds["ka"].play((resize + i * soundsDelay) / 1000)
}
this.pointer(false)
2018-09-26 20:30:57 +02:00
}
}
moveToDiff(moveBy){
if(this.state.locked !== 1){
this.state.move = moveBy
this.state.moveMS = this.getMS() - 500
this.state.locked = 1
assets.sounds["ka"].play()
}
}
toSelectDifficulty(){
if(this.state.locked === 0){
var currentSong = this.songs[this.selectedSong]
if(currentSong.stars){
this.state.screen = "difficulty"
this.state.screenMS = this.getMS()
this.state.locked = true
this.state.moveHover = null
2018-10-12 20:04:28 +02:00
this.state.ura = 0
2018-10-12 20:21:21 +02:00
if(this.selectedDiff === 5){
this.selectedDiff = 4
}
2018-09-26 20:30:57 +02:00
assets.sounds["don"].play()
assets.sounds["song-select"].stop()
assets.sounds["diffsel"].play(0.3)
}else if(currentSong.action === "back"){
this.clean()
this.toTitleScreen()
}else if(currentSong.action === "random"){
assets.sounds["don"].play()
this.state.locked = true
do{
var i = Math.floor(Math.random() * this.songs.length)
}while(!this.songs[i].stars)
var moveBy = i - this.selectedSong
setTimeout(() => {
this.moveToSong(moveBy)
}, 200)
}else if(currentSong.action === "tutorial"){
this.toTutorial()
2018-10-14 10:04:31 +02:00
}else if(currentSong.action === "about"){
this.toAbout()
2018-09-26 20:30:57 +02:00
}
this.pointer(false)
2018-09-26 20:30:57 +02:00
}
}
toSongSelect(){
if(this.state.locked !== 1){
this.state.screen = "song"
this.state.screenMS = this.getMS()
this.state.locked = true
this.state.moveHover = null
assets.sounds["diffsel"].stop()
assets.sounds["cancel"].play()
}
}
2018-10-05 19:03:59 +02:00
toLoadSong(difficulty, shift, ctrl, touch){
2018-09-26 20:30:57 +02:00
this.clean()
var selectedSong = this.songs[this.selectedSong]
assets.sounds["diffsel"].stop()
assets.sounds["don"].play()
localStorage["selectedSong"] = this.selectedSong
localStorage["selectedDiff"] = difficulty + 1
2018-09-26 20:30:57 +02:00
2018-10-12 20:04:28 +02:00
if(difficulty === 3 && this.state.ura){
difficulty = 4
}
2018-09-26 20:30:57 +02:00
new loadSong({
"title": selectedSong.title,
"folder": selectedSong.id,
2018-09-27 03:04:01 +02:00
"difficulty": this.difficultyId[difficulty],
2018-10-11 00:13:24 +02:00
"category": selectedSong.category,
"type": selectedSong.type,
"offset": selectedSong.offset
2018-10-05 19:03:59 +02:00
}, shift, ctrl, touch)
2018-09-26 20:30:57 +02:00
}
toTitleScreen(){
assets.sounds["cancel"].play()
this.clean()
setTimeout(() => {
new Titlescreen()
}, 500)
}
toTutorial(){
assets.sounds["don"].play()
this.clean()
setTimeout(() => {
new Tutorial(true)
}, 500)
}
2018-10-14 10:04:31 +02:00
toAbout(){
assets.sounds["don"].play()
this.clean()
setTimeout(() => {
new About(this.touchEnabled)
}, 500)
}
2018-09-26 20:30:57 +02:00
redraw(){
if(!this.redrawRunning){
return
}
requestAnimationFrame(this.redrawBind)
var ms = this.getMS()
this.gamepad.play((pressed, keyCode) => {
if(pressed){
if(!this.pressedKeys[keyCode]){
this.pressedKeys[keyCode] = ms + 300
this.keyDown(false, keyCode)
}
}else{
this.pressedKeys[keyCode] = 0
}
})
for(var key in this.pressedKeys){
if(this.pressedKeys[key]){
if(ms >= this.pressedKeys[key] + 50){
2018-09-26 20:30:57 +02:00
this.keyDown(false, key)
this.pressedKeys[key] = ms
}
}
}
if(!this.redrawRunning){
return
}
var ctx = this.ctx
var winW = innerWidth
var winH = lastHeight
2018-09-26 20:30:57 +02:00
if(winW / 32 > winH / 9){
winW = winH / 9 * 32
}
this.pixelRatio = window.devicePixelRatio || 1
winW *= this.pixelRatio
winH *= this.pixelRatio
var ratioX = winW / 1280
var ratioY = winH / 720
var ratio = (ratioX < ratioY ? ratioX : ratioY)
if(this.winW !== winW || this.winH !== winH){
this.canvas.width = winW
this.canvas.height = winH
ctx.scale(ratio, ratio)
this.canvas.style.width = (winW / this.pixelRatio) + "px"
this.canvas.style.height = (winH / this.pixelRatio) + "px"
2018-10-09 15:07:53 +02:00
var borders = (this.songAsset.border + this.songAsset.innerBorder) * 2
this.songTitleCache.resize((this.songAsset.width - borders + 1) * this.songs.length, (this.songAsset.height - borders + 1) * 2, ratio + 0.5)
this.selectTextCache.resize((280 + 53 + 60 + 1) * 2, this.songAsset.marginTop + 15, ratio + 0.5)
var categories = 0
var lastCategory
this.songs.forEach(song => {
var cat = (song.category || "") + song.skin.outline
if(lastCategory !== cat){
lastCategory = cat
categories++
}
})
this.categoryCache.resize(280, (this.songAsset.marginTop + 1) * categories , ratio + 0.5)
this.difficultyCache.resize((44 + 56 + 2) * 5, 135 + 10, ratio + 0.5)
2018-09-26 20:30:57 +02:00
}else if(!document.hasFocus()){
this.pointer(false)
2018-09-26 20:30:57 +02:00
return
2018-09-11 00:17:13 +02:00
}else{
2018-09-26 20:30:57 +02:00
ctx.clearRect(0, 0, winW / ratio, winH / ratio)
}
this.winW = winW
this.winH = winH
this.ratio = ratio
winW /= ratio
winH /= ratio
var frameTop = winH / 2 - 720 / 2
var frameLeft = winW / 2 - 1280 / 2
var songTop = frameTop + this.songAsset.marginTop
var xOffset = 0
var songSelMoving = false
var screen = this.state.screen
var selectedWidth = this.songAsset.width
2018-10-01 09:33:43 +02:00
if(screen === "title" || screen === "titleFadeIn"){
2018-09-26 20:30:57 +02:00
if(ms > this.state.screenMS + 1000){
this.state.screen = "song"
this.state.screenMS = ms + (ms - this.state.screenMS - 1000)
this.state.moveMS = ms - this.songSelecting.speed * this.songSelecting.resize + (ms - this.state.screenMS)
this.state.locked = 3
this.state.lastMove = 1
}else{
this.state.moveMS = ms - this.songSelecting.speed * this.songSelecting.resize + (ms - this.state.screenMS - 1000)
}
2018-10-01 09:33:43 +02:00
if(ms > this.state.screenMS + 500){
this.state.screen = "title"
screen = "title"
}
2018-09-26 20:30:57 +02:00
}
2018-10-01 09:33:43 +02:00
if(screen === "title" || screen === "titleFadeIn" || screen === "song"){
2018-10-09 15:07:53 +02:00
this.selectTextCache.get({
2018-10-01 09:33:43 +02:00
ctx: ctx,
2018-10-09 15:07:53 +02:00
x: frameLeft,
y: frameTop,
w: 280 + 53 + 60,
h: this.songAsset.marginTop + 15,
id: "song"
}, ctx => {
2018-10-01 09:33:43 +02:00
this.draw.layeredText({
ctx: ctx,
2018-10-09 15:07:53 +02:00
text: "曲をえらぶ",
fontSize: 48,
2018-09-26 20:30:57 +02:00
fontFamily: this.font,
2018-10-09 15:07:53 +02:00
x: 53,
y: 30,
letterSpacing: 2,
forceShadow: true
2018-09-26 20:30:57 +02:00
}, [
2018-10-09 15:07:53 +02:00
{x: -2, y: -2, outline: "#000", letterBorder: 22},
{},
{x: 2, y: 2, shadow: [3, 3, 3]},
{x: 2, y: 2, outline: "#ad1516", letterBorder: 10},
{x: -2, y: -2, outline: "#ff797b"},
{outline: "#f70808"},
{fill: "#fff", shadow: [-1, 1, 3, 1.5]}
2018-09-26 20:30:57 +02:00
])
2018-10-09 15:07:53 +02:00
})
var category = this.songs[this.selectedSong].category
if(category){
var selectedSong = this.songs[this.selectedSong]
this.categoryCache.get({
ctx: ctx,
x: winW / 2 - 280 / 2,
y: frameTop,
w: 280,
h: this.songAsset.marginTop,
id: category + selectedSong.skin.outline
}, ctx => {
this.draw.layeredText({
ctx: ctx,
text: category,
fontSize: 40,
fontFamily: this.font,
x: 280 / 2,
y: 38,
width: 255,
align: "center",
forceShadow: true
}, [
{outline: selectedSong.skin.outline, letterBorder: 12, shadow: [3, 3, 3]},
{fill: "#fff"}
])
})
2018-09-26 20:30:57 +02:00
}
}
if(screen === "song"){
if(this.songs[this.selectedSong].stars){
selectedWidth = this.songAsset.selectedWidth
}
var lastMoveMul = Math.pow(Math.abs(this.state.lastMove), 1 / 4)
var changeSpeed = this.songSelecting.speed * lastMoveMul
var resize = changeSpeed * this.songSelecting.resize / lastMoveMul
var scrollDelay = changeSpeed * this.songSelecting.scrollDelay
var resize2 = changeSpeed - resize
var scroll = resize2 - resize - scrollDelay * 2
var elapsed = ms - this.state.moveMS
if(this.state.move && ms > this.state.moveMS + resize2 - scrollDelay){
assets.sounds["ka"].play()
this.selectedSong = this.mod(this.songs.length, this.selectedSong + this.state.move)
this.state.move = 0
this.state.locked = 2
2018-09-27 03:04:01 +02:00
if(this.songs[this.selectedSong].action !== "back"){
var cat = this.songs[this.selectedSong].category
var sort = cat in this.songSkin ? this.songSkin[cat].sort : 7
this.songSelect.style.backgroundImage = "url('" + assets.image["bg_genre_" + sort].src + "')"
}
2018-09-26 20:30:57 +02:00
}
if(this.state.moveMS && ms < this.state.moveMS + changeSpeed){
xOffset = Math.min(scroll, Math.max(0, elapsed - resize - scrollDelay)) / scroll * (this.songAsset.width + this.songAsset.marginLeft)
xOffset *= -this.state.move
if(elapsed < resize){
selectedWidth = this.songAsset.width + (((resize - elapsed) / resize) * (selectedWidth - this.songAsset.width))
}else if(elapsed > resize2){
this.playBgm(!this.songs[this.selectedSong].stars)
2018-09-26 20:30:57 +02:00
this.state.locked = 1
selectedWidth = this.songAsset.width + ((elapsed - resize2) / resize * (selectedWidth - this.songAsset.width))
}else{
songSelMoving = true
selectedWidth = this.songAsset.width
}
}else{
this.state.locked = 0
}
}else if(screen === "difficulty"){
var currentSong = this.songs[this.selectedSong]
if(this.state.locked){
this.state.locked = 0
}
if(this.state.move){
2018-10-12 20:04:28 +02:00
var hasUra = currentSong.stars[4]
var previousSelection = this.selectedDiff
2018-09-26 20:30:57 +02:00
do{
2018-10-12 20:04:28 +02:00
if(hasUra && this.state.move > 0){
this.selectedDiff += this.state.move
if(this.selectedDiff > 5){
this.state.ura = !this.state.ura
if(this.state.ura){
this.selectedDiff = previousSelection === 4 ? 5 : previousSelection
break
}else{
this.state.move = -1
}
}
}else{
this.selectedDiff = this.mod(6, this.selectedDiff + this.state.move)
}
}while(
this.selectedDiff !== 0 && !currentSong.stars[this.selectedDiff - 1]
|| this.selectedDiff === 4 && this.state.ura
|| this.selectedDiff === 5 && !this.state.ura
)
2018-09-26 20:30:57 +02:00
this.state.move = 0
}else if(!currentSong.stars[this.selectedDiff - 1]){
this.selectedDiff = 0
}
}
if(songSelMoving){
if(this.previewing !== null){
2018-09-26 20:30:57 +02:00
this.endPreview()
}
2018-10-01 09:33:43 +02:00
}else if(screen !== "title" && screen !== "titleFadeIn" && ms > this.state.moveMS + 100){
2018-09-26 23:12:50 +02:00
if(this.previewing !== this.selectedSong && "id" in this.songs[this.selectedSong]){
2018-09-26 20:30:57 +02:00
this.startPreview()
}
}
2018-10-09 15:07:53 +02:00
this.songFrameCache = {
w: this.songAsset.width + this.songAsset.selectedWidth + this.songAsset.fullWidth + (15 + 1) * 3,
h: this.songAsset.fullHeight + 16,
ratio: ratio
}
2018-10-01 09:33:43 +02:00
if(screen === "title" || screen === "titleFadeIn" || screen === "song"){
2018-09-26 20:30:57 +02:00
for(var i = this.selectedSong - 1; ; i--){
var highlight = 0
if(i - this.selectedSong === this.state.moveHover){
highlight = 1
}
var index = this.mod(this.songs.length, i)
var _x = winW / 2 - (this.selectedSong - i) * (this.songAsset.width + this.songAsset.marginLeft) - selectedWidth / 2 + xOffset
if(_x + this.songAsset.width + this.songAsset.marginLeft < 0){
break
}
this.drawClosedSong({
2018-10-01 09:33:43 +02:00
ctx: ctx,
2018-09-26 20:30:57 +02:00
x: _x,
y: songTop,
song: this.songs[index],
highlight: highlight
})
}
for(var i = this.selectedSong + 1; ; i++){
var highlight = 0
if(i - this.selectedSong === this.state.moveHover){
highlight = 1
}
var index = this.mod(this.songs.length, i)
var currentSong = this.songs[index]
var _x = winW / 2 + (i - this.selectedSong - 1) * (this.songAsset.width + this.songAsset.marginLeft) + this.songAsset.marginLeft + selectedWidth / 2 + xOffset
if(_x > winW){
break
}
this.drawClosedSong({
2018-10-01 09:33:43 +02:00
ctx: ctx,
2018-09-26 20:30:57 +02:00
x: _x,
y: songTop,
song: this.songs[index],
highlight: highlight
})
}
}
var currentSong = this.songs[this.selectedSong]
var highlight = 0
if(!currentSong.stars){
highlight = 2
}
if(this.state.moveHover === 0){
highlight = 1
}
var selectedSkin = this.songSkin.selected
2018-10-01 09:33:43 +02:00
if(screen === "title" || screen === "titleFadeIn" || this.state.locked === 3){
2018-09-26 20:30:57 +02:00
selectedSkin = currentSong.skin
highlight = 2
}else if(songSelMoving){
selectedSkin = currentSong.skin
highlight = 0
}
var selectedHeight = this.songAsset.height
if(screen === "difficulty"){
2018-10-09 15:07:53 +02:00
selectedWidth = this.songAsset.fullWidth
selectedHeight = this.songAsset.fullHeight
2018-09-26 20:30:57 +02:00
highlight = 0
}
2018-10-01 09:33:43 +02:00
this.draw.songFrame({
ctx: ctx,
2018-09-26 20:30:57 +02:00
x: winW / 2 - selectedWidth / 2 + xOffset,
y: songTop + this.songAsset.height - selectedHeight,
width: selectedWidth,
height: selectedHeight,
2018-10-01 09:33:43 +02:00
border: this.songAsset.border,
innerBorder: this.songAsset.innerBorder,
2018-09-26 20:30:57 +02:00
background: selectedSkin.background,
2018-10-01 09:33:43 +02:00
borderStyle: selectedSkin.border,
2018-09-26 20:30:57 +02:00
highlight: highlight,
noCrop: screen === "difficulty",
2018-10-01 09:33:43 +02:00
animateMS: this.state.moveMS,
2018-10-09 15:07:53 +02:00
cached: selectedWidth === this.songAsset.fullWidth ? 3 : (selectedWidth === this.songAsset.selectedWidth ? 2 : (selectedWidth === this.songAsset.width ? 1 : 0)),
frameCache: this.songFrameCache,
2018-09-26 20:30:57 +02:00
innerContent: (x, y, w, h) => {
ctx.strokeStyle = "#000"
2018-10-01 09:33:43 +02:00
if(screen === "title" || screen === "titleFadeIn" || screen === "song"){
2018-09-26 20:30:57 +02:00
var opened = ((selectedWidth - this.songAsset.width) / (this.songAsset.selectedWidth - this.songAsset.width))
var songSel = true
}else{
2018-10-09 15:07:53 +02:00
this.selectTextCache.get({
2018-10-01 09:33:43 +02:00
ctx: ctx,
2018-10-09 15:07:53 +02:00
x: x - 144 - 53,
y: y - 24 - 30,
w: 280 + 53 + 60,
h: this.songAsset.marginTop + 15,
id: "difficulty"
}, ctx => {
this.draw.layeredText({
ctx: ctx,
text: "むずかしさをえらぶ",
fontSize: 46,
fontFamily: this.font,
x: 53,
y: 30,
width: 280,
forceShadow: true
}, [
{x: -2, y: -2, outline: "#000", letterBorder: 23},
{},
{x: 2, y: 2, shadow: [3, 3, 3]},
{x: 2, y: 2, outline: "#ad1516", letterBorder: 10},
{x: -2, y: -2, outline: "#ff797b"},
{outline: "#f70808"},
{fill: "#fff", shadow: [-1, 1, 3, 1.5]}
])
})
2018-09-26 20:30:57 +02:00
var opened = 1
var songSel = false
var _x = x + 62
var _y = y + 67
ctx.fillStyle = "#efb058"
ctx.lineWidth = 5
2018-10-01 09:33:43 +02:00
this.draw.roundedRect({
ctx: ctx,
2018-09-26 20:30:57 +02:00
x: _x - 28,
y: _y,
w: 56,
h: 298,
radius: 24
})
ctx.fill()
ctx.stroke()
ctx.fillStyle = "#f7d39c"
ctx.beginPath()
ctx.arc(_x, _y + 28, 20, 0, Math.PI * 2)
ctx.fill()
2018-10-01 09:33:43 +02:00
this.draw.diffOptionsIcon({
ctx: ctx,
x: _x,
y: _y + 28
})
2018-09-26 20:30:57 +02:00
2018-10-01 09:33:43 +02:00
this.draw.verticalText({
ctx: ctx,
2018-09-26 20:30:57 +02:00
text: "もどる",
x: _x,
y: _y + 57,
width: 56,
height: 220,
fill: "#fff",
outline: "#000",
2018-10-01 09:33:43 +02:00
outlineSize: this.songAsset.letterBorder,
2018-09-26 20:30:57 +02:00
letterBorder: 4,
fontSize: 28,
fontFamily: this.font,
letterSpacing: 4
})
var highlight = 0
if(this.state.moveHover === 0){
highlight = 2
}else if(this.selectedDiff === 0){
highlight = 1
}
if(highlight){
2018-10-01 09:33:43 +02:00
this.draw.highlight({
ctx: ctx,
2018-09-26 20:30:57 +02:00
x: _x - 32,
y: _y - 3,
w: 64,
h: 304,
animate: highlight === 1,
2018-10-01 09:33:43 +02:00
animateMS: this.state.moveMS,
2018-09-26 20:30:57 +02:00
opacity: highlight === 2 ? 0.8 : 1,
radius: 24
})
if(this.selectedDiff === 0){
2018-10-01 09:33:43 +02:00
this.draw.diffCursor({
ctx: ctx,
font: this.font,
x: _x,
y: _y - 45
})
}
2018-09-26 20:30:57 +02:00
}
2018-09-11 00:17:13 +02:00
}
var drawDifficulty = (ctx, i, currentUra) => {
2018-10-12 20:04:28 +02:00
if(currentSong.stars[i] || currentUra){
2018-09-26 20:30:57 +02:00
if(songSel){
var _x = x + 33 + i * 60
var _y = y + 120
ctx.fillStyle = currentUra ? "#006279" : "#ff9f18"
2018-09-26 20:30:57 +02:00
ctx.beginPath()
ctx.arc(_x, _y + 22, 22, -Math.PI, 0)
ctx.arc(_x, _y + 266, 22, 0, Math.PI)
ctx.fill()
2018-10-01 09:33:43 +02:00
this.draw.diffIcon({
ctx: ctx,
diff: currentUra ? 4 : i,
2018-09-26 20:30:57 +02:00
x: _x,
y: _y - 8,
scale: 1,
border: 6
})
}else{
var _x = x + 402 + i * 100
var _y = y + 87
2018-10-01 09:33:43 +02:00
this.draw.diffIcon({
ctx: ctx,
2018-09-26 20:30:57 +02:00
diff: i,
x: _x,
y: _y - 12,
scale: 1.4,
border: 6.5,
noFill: true
})
ctx.fillStyle = "#aa7023"
ctx.lineWidth = 4.5
ctx.fillRect(_x - 35.5, _y + 2, 71, 380)
ctx.strokeRect(_x - 35.5, _y + 2, 71, 380)
ctx.fillStyle = currentUra ? "#006279" : "#fff"
2018-09-26 20:30:57 +02:00
ctx.lineWidth = 2.5
ctx.fillRect(_x - 28, _y + 19, 56, 351)
ctx.strokeRect(_x - 28, _y + 19, 56, 351)
2018-10-01 09:33:43 +02:00
this.draw.diffIcon({
ctx: ctx,
2018-10-12 20:04:28 +02:00
diff: currentUra ? 4 : i,
2018-09-26 20:30:57 +02:00
x: _x,
y: _y - 12,
scale: 1.4,
border: 4.5
})
}
2018-10-09 15:07:53 +02:00
var offset = (songSel ? 44 : 56) / 2
this.difficultyCache.get({
2018-10-01 09:33:43 +02:00
ctx: ctx,
2018-10-09 15:07:53 +02:00
x: _x - offset,
2018-09-26 20:30:57 +02:00
y: songSel ? _y + 10 : _y + 23,
2018-10-09 15:07:53 +02:00
w: songSel ? 44 : 56,
h: (songSel ? 88 : 135) + 10,
id: this.difficulty[currentUra ? 4 : i] + (songSel ? "1" : "0")
2018-10-09 15:07:53 +02:00
}, ctx => {
this.draw.verticalText({
ctx: ctx,
text: this.difficulty[i],
x: offset,
y: 0,
width: songSel ? 44 : 56,
height: songSel ? (i === 1 ? 66 : 88) : (i === 0 ? 130 : (i === 1 ? 110 : 135)),
fill: currentUra ? "#fff" : "#000",
2018-10-09 15:07:53 +02:00
fontSize: songSel ? 25 : (i === 2 ? 45 : 40),
fontFamily: this.font,
outline: currentUra ? "#003C52" : false,
outlineSize: currentUra ? this.songAsset.letterBorder : 0
2018-10-09 15:07:53 +02:00
})
2018-09-26 20:30:57 +02:00
})
2018-10-12 20:04:28 +02:00
var songStars = currentUra ? currentSong.stars[4] : currentSong.stars[i]
2018-09-26 20:30:57 +02:00
for(var j = 0; j < 10; j++){
if(songSel){
var yPos = _y + 113 + j * 17
}else{
var yPos = _y + 178 + j * 19.5
}
2018-10-12 20:04:28 +02:00
if(10 - j > songStars){
ctx.fillStyle = currentUra ? "#187085" : (songSel ? "#e97526" : "#e7e7e7")
2018-09-26 20:30:57 +02:00
ctx.beginPath()
ctx.arc(_x, yPos, songSel ? 4.5 : 5, 0, Math.PI * 2)
ctx.fill()
}else{
2018-10-01 09:33:43 +02:00
this.draw.diffStar({
ctx: ctx,
songSel: songSel,
ura: currentUra,
2018-10-01 09:33:43 +02:00
x: _x,
2018-10-09 15:07:53 +02:00
y: yPos,
ratio: ratio
2018-10-01 09:33:43 +02:00
})
2018-09-26 20:30:57 +02:00
}
}
2018-10-12 20:04:28 +02:00
var currentDiff = this.selectedDiff - 1
if(this.selectedDiff === 5){
currentDiff = 3
}
2018-09-26 20:30:57 +02:00
if(i === currentSong.p2Cursor){
2018-10-01 09:33:43 +02:00
this.draw.diffCursor({
ctx: ctx,
font: this.font,
2018-09-26 20:30:57 +02:00
x: _x,
y: _y - (songSel ? 45 : 65),
two: true,
2018-10-12 20:04:28 +02:00
side: songSel ? false : (currentSong.p2Cursor === currentDiff),
2018-09-26 20:30:57 +02:00
scale: songSel ? 0.7 : 1
})
}
if(!songSel){
var highlight = 0
if(this.state.moveHover - 1 === i){
highlight = 2
}else if(currentDiff === i){
highlight = 1
}
if(currentDiff === i){
2018-10-01 09:33:43 +02:00
this.draw.diffCursor({
ctx: ctx,
font: this.font,
2018-09-26 20:30:57 +02:00
x: _x,
y: _y - 65,
side: currentSong.p2Cursor === currentDiff
})
}
if(highlight){
2018-10-01 09:33:43 +02:00
this.draw.highlight({
ctx: ctx,
2018-09-26 20:30:57 +02:00
x: _x - 32,
y: _y + 14,
w: 64,
h: 362,
animate: highlight === 1,
2018-10-01 09:33:43 +02:00
animateMS: this.state.moveMS,
2018-09-26 20:30:57 +02:00
opacity: highlight === 2 ? 0.8 : 1
})
}
}
}
}
for(var i = 0; currentSong.stars && i < 4; i++){
var currentUra = i === 3 && (this.state.ura && !songSel || currentSong.stars[4] && songSel)
if(songSel && currentUra){
drawDifficulty(ctx, i, false)
var elapsedMS = this.state.screenMS > this.state.moveMS ? this.state.screenMS : this.state.moveMS
var fade = ((ms - elapsedMS) % 4000) / 4000
var alphaFade = 0
if(fade > 0.95){
alphaFade = this.draw.easeOut(1 - (fade - 0.95) * 20)
}else if(fade > 0.5){
alphaFade = 1
}else if(fade > 0.45){
alphaFade = this.draw.easeIn((fade - 0.45) * 20)
}
this.draw.alpha(alphaFade, ctx, ctx => {
drawDifficulty(ctx, i, true)
})
}else{
drawDifficulty(ctx, i, currentUra)
}
}
2018-10-12 20:04:28 +02:00
if(!songSel && currentSong.stars[4]){
var fade = ((ms - this.state.screenMS) % 1200) / 1200
var _x = x + 402 + 4 * 100 + fade * 25
2018-10-12 20:04:28 +02:00
var _y = y + 258
ctx.save()
ctx.globalAlpha = this.draw.easeInOut(1 - fade)
2018-10-12 20:04:28 +02:00
ctx.fillStyle = "#e0be28"
ctx.beginPath()
ctx.moveTo(_x - 35, _y - 25)
ctx.lineTo(_x - 10, _y)
ctx.lineTo(_x - 35, _y + 25)
ctx.fill()
ctx.restore()
2018-10-12 20:04:28 +02:00
}
2018-09-26 20:30:57 +02:00
ctx.globalAlpha = 1 - Math.max(0, opened - 0.5) * 2
ctx.fillStyle = selectedSkin.background
2018-10-09 15:07:53 +02:00
ctx.fillRect(x, y, w, h)
2018-09-26 20:30:57 +02:00
ctx.globalAlpha = 1
2018-10-09 15:07:53 +02:00
var borders = (this.songAsset.border + this.songAsset.innerBorder) * 2
var textW = this.songAsset.width - borders
var textH = this.songAsset.height - borders
var textX = Math.max(w - 37 - textW / 2, w / 2 - textW / 2)
2018-09-26 20:30:57 +02:00
var textY = opened * 12 + (1 - opened) * 7
2018-10-09 15:07:53 +02:00
this.songTitleCache.get({
2018-10-01 09:33:43 +02:00
ctx: ctx,
2018-09-26 20:30:57 +02:00
x: x + textX,
2018-10-09 15:07:53 +02:00
y: y + textY - 7,
w: textW,
h: textH,
id: currentSong.title + selectedSkin.outline,
}, ctx => {
this.draw.verticalText({
ctx: ctx,
text: currentSong.title,
x: textW / 2,
y: 7,
width: textW,
height: textH - 35,
fill: "#fff",
outline: selectedSkin.outline,
outlineSize: this.songAsset.letterBorder,
fontSize: 40,
fontFamily: this.font
})
2018-09-26 20:30:57 +02:00
})
}
})
if(songSelMoving){
2018-10-01 09:33:43 +02:00
this.draw.highlight({
ctx: ctx,
2018-09-26 20:30:57 +02:00
x: winW / 2 - selectedWidth / 2,
y: songTop,
w: selectedWidth,
h: selectedHeight,
opacity: 0.8
2018-09-11 00:17:13 +02:00
})
2018-08-26 18:14:56 +02:00
}
2018-10-01 09:33:43 +02:00
if(screen === "titleFadeIn"){
ctx.save()
var elapsed = ms - this.state.screenMS
ctx.globalAlpha = Math.max(0, 1 - elapsed / 500)
ctx.fillStyle = "#000"
ctx.fillRect(0, 0, winW, winH)
ctx.restore()
}
2018-09-11 00:17:13 +02:00
}
2018-09-26 20:30:57 +02:00
drawClosedSong(config){
2018-10-01 09:33:43 +02:00
var ctx = config.ctx
2018-09-26 20:30:57 +02:00
config.width = this.songAsset.width
config.height = this.songAsset.height
2018-10-01 09:33:43 +02:00
config.border = this.songAsset.border
config.innerBorder = this.songAsset.innerBorder
2018-09-26 20:30:57 +02:00
config.background = config.song.skin.background
2018-10-01 09:33:43 +02:00
config.borderStyle = config.song.skin.border
2018-09-26 20:30:57 +02:00
config.outline = config.song.skin.outline
config.text = config.song.title
2018-10-01 09:33:43 +02:00
config.animateMS = this.state.moveMS
2018-10-09 15:07:53 +02:00
config.cached = 1
config.frameCache = this.songFrameCache
2018-09-26 20:30:57 +02:00
config.innerContent = (x, y, w, h) => {
2018-10-09 15:07:53 +02:00
this.songTitleCache.get({
2018-10-01 09:33:43 +02:00
ctx: ctx,
2018-10-09 15:07:53 +02:00
x: x,
y: y,
w: w,
h: h,
id: config.text + config.outline,
}, ctx => {
this.draw.verticalText({
ctx: ctx,
text: config.text,
x: w / 2,
y: 7,
width: w,
height: h - 35,
fill: "#fff",
outline: config.outline,
outlineSize: this.songAsset.letterBorder,
fontSize: 40,
fontFamily: this.font
})
2018-09-26 20:30:57 +02:00
})
}
2018-10-01 09:33:43 +02:00
this.draw.songFrame(config)
2018-09-26 20:30:57 +02:00
if(config.song.p2Cursor){
2018-10-01 09:33:43 +02:00
this.draw.diffCursor({
ctx: ctx,
font: this.font,
2018-09-26 20:30:57 +02:00
x: config.x + 48,
y: config.y - 27,
two: true,
scale: 1,
side: true
})
2018-09-18 00:37:59 +02:00
}
}
2018-09-26 20:30:57 +02:00
startPreview(loadOnly){
var currentSong = this.songs[this.selectedSong]
var id = currentSong.id
var prvTime = currentSong.preview
2018-09-26 23:12:50 +02:00
this.endPreview(true)
2018-09-09 06:11:05 +02:00
2018-09-26 20:30:57 +02:00
if("id" in currentSong){
var startLoad = this.getMS()
if(loadOnly){
var currentId = null
}else{
var currentId = this.previewId
this.previewing = this.selectedSong
}
var songObj = assets.songs.find(song => song.id == id)
2015-07-17 10:22:46 +02:00
2018-09-26 20:30:57 +02:00
if(songObj.sound){
if(!loadOnly){
this.preview = songObj.sound
this.preview.gain = snd.previewGain
this.previewLoaded(startLoad, prvTime)
}
}else{
snd.previewGain.load("/songs/" + id + "/main.mp3").then(sound => {
if(currentId === this.previewId){
songObj.sound = sound
this.preview = sound
this.previewLoaded(startLoad, prvTime)
}
})
}
}
2015-07-17 10:22:46 +02:00
}
2018-09-26 20:30:57 +02:00
previewLoaded(startLoad, prvtime){
var endLoad = this.getMS()
var difference = endLoad - startLoad
var minDelay = 300
var delay = minDelay - Math.min(minDelay, difference)
this.preview.playLoop(delay / 1000, false, prvtime / 1000)
}
endPreview(){
2018-09-26 20:30:57 +02:00
this.previewId++
this.previewing = null
if(this.preview){
this.preview.stop()
2018-09-12 19:10:00 +02:00
}
2018-09-26 20:30:57 +02:00
}
playBgm(enabled){
if(enabled && !this.bgmEnabled){
this.bgmEnabled = true
snd.musicGain.fadeIn(0.4)
}else if(!enabled && this.bgmEnabled){
this.bgmEnabled = false
snd.musicGain.fadeOut(0.4)
}
}
2018-09-26 20:30:57 +02:00
onusers(response){
this.songs.forEach(song => {
song.p2Cursor = null
})
2018-09-12 19:10:00 +02:00
if(response){
response.forEach(idDiff => {
2018-09-18 00:37:59 +02:00
var id = idDiff.id |0
var diff = idDiff.diff
2018-09-26 20:30:57 +02:00
var diffId = this.difficultyId.indexOf(diff)
2018-10-12 20:04:28 +02:00
if(diffId > 3){
diffId = 3
}
2018-09-26 20:30:57 +02:00
if(diffId >= 0){
var currentSong = this.songs.find(song => song.id === id)
currentSong.p2Cursor = diffId
2018-09-12 19:10:00 +02:00
}
})
}
}
2018-09-18 00:37:59 +02:00
startP2(){
this.onusers(p2.getMessage("users"))
pageEvents.add(p2, "message", response => {
if(response.type == "users"){
this.onusers(response.value)
}
2018-09-12 19:10:00 +02:00
})
if(p2.closed){
p2.open()
}
}
2018-09-26 20:30:57 +02:00
mod(length, index){
return ((index % length) + length) % length
}
getMS(){
return +new Date
}
2018-09-18 00:37:59 +02:00
clean(){
2018-10-09 15:07:53 +02:00
this.draw.clean()
this.songTitleCache.clean()
this.selectTextCache.clean()
this.categoryCache.clean()
this.difficultyCache.clean()
2018-09-26 23:12:50 +02:00
assets.sounds["bgm_songsel"].stop()
if(!this.bgmEnabled){
2018-09-26 23:12:50 +02:00
snd.musicGain.fadeIn()
setTimeout(() => {
snd.musicGain.fadeIn()
}, 500)
}
2018-09-26 20:30:57 +02:00
this.redrawRunning = false
2018-09-18 00:37:59 +02:00
this.endPreview()
2018-09-26 20:30:57 +02:00
pageEvents.keyRemove(this, "all")
2018-10-12 20:04:28 +02:00
pageEvents.remove(this.canvas, ["mousemove", "mousedown", "touchstart"])
if(this.touchEnabled && fullScreenSupported){
pageEvents.remove(this.touchFullBtn, "click")
delete this.touchFullBtn
}
2018-09-26 20:30:57 +02:00
delete this.ctx
delete this.canvas
2018-09-18 00:37:59 +02:00
}
}