2019-04-04 22:40:11 +02:00
|
|
|
class Settings{
|
|
|
|
constructor(){
|
|
|
|
var ios = /iPhone|iPad/.test(navigator.userAgent)
|
|
|
|
var phone = /Android|iPhone|iPad/.test(navigator.userAgent)
|
|
|
|
|
|
|
|
this.items = {
|
|
|
|
resolution: {
|
|
|
|
type: "select",
|
|
|
|
options: ["high", "medium", "low", "lowest"],
|
|
|
|
default: phone ? "medium" : "high"
|
|
|
|
},
|
|
|
|
touchAnimation: {
|
|
|
|
type: "toggle",
|
|
|
|
default: !ios,
|
|
|
|
touch: true
|
2019-04-05 21:53:51 +02:00
|
|
|
},
|
|
|
|
keyboardSettings: {
|
|
|
|
type: "keyboard",
|
|
|
|
default: {
|
|
|
|
ka_l: ["d"],
|
|
|
|
don_l: ["f"],
|
|
|
|
don_r: ["j"],
|
|
|
|
ka_r: ["k"]
|
|
|
|
},
|
|
|
|
touch: false
|
|
|
|
},
|
|
|
|
gamepadLayout: {
|
|
|
|
type: "select",
|
|
|
|
options: ["a", "b", "c"],
|
|
|
|
default: "a",
|
|
|
|
gamepad: true
|
2019-04-04 22:40:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
this.storage = {}
|
|
|
|
try{
|
|
|
|
var storage = JSON.parse(localStorage.getItem("settings") || "{}")
|
|
|
|
for(var i in this.items){
|
|
|
|
var current = this.items[i]
|
|
|
|
if(i in storage){
|
|
|
|
if(current.type === "select" && current.options.indexOf(storage[i]) === -1){
|
|
|
|
this.storage[i] = null
|
2019-04-05 21:53:51 +02:00
|
|
|
}else if(current.type === "keyboard"){
|
|
|
|
var obj = {}
|
|
|
|
for(var j in current.default){
|
|
|
|
if(storage[i][j] && storage[i][j][0]){
|
|
|
|
obj[j] = storage[i][j]
|
|
|
|
}else{
|
|
|
|
obj = null
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
this.storage[i] = obj
|
2019-04-04 22:40:11 +02:00
|
|
|
}else{
|
|
|
|
this.storage[i] = storage[i]
|
|
|
|
}
|
|
|
|
}else{
|
|
|
|
this.storage[i] = null
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}catch(e){
|
|
|
|
for(var i in this.items){
|
|
|
|
this.storage[i] = null
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
getItem(name){
|
|
|
|
var value = this.storage[name]
|
|
|
|
return value === null ? this.items[name].default : value
|
|
|
|
}
|
|
|
|
setItem(name, value){
|
|
|
|
this.storage[name] = value
|
|
|
|
try{
|
|
|
|
localStorage.setItem("settings", JSON.stringify(this.storage))
|
|
|
|
}catch(e){}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class SettingsView{
|
|
|
|
constructor(touchEnabled){
|
|
|
|
this.touchEnabled = touchEnabled
|
2019-04-05 21:53:51 +02:00
|
|
|
loader.changePage("settings", false)
|
2019-04-05 11:36:14 +02:00
|
|
|
assets.sounds["bgm_settings"].playLoop(0.1, false, 0, 1.392, 26.992)
|
|
|
|
|
2019-04-04 22:40:11 +02:00
|
|
|
this.endButton = document.getElementById("tutorial-end-button")
|
|
|
|
if(touchEnabled){
|
|
|
|
document.getElementById("tutorial-outer").classList.add("touch-enabled")
|
|
|
|
}
|
2019-04-05 21:53:51 +02:00
|
|
|
var gamepadEnabled = false
|
|
|
|
if("getGamepads" in navigator){
|
|
|
|
var gamepads = navigator.getGamepads()
|
|
|
|
for(var i = 0; i < gamepads.length; i++){
|
|
|
|
if(gamepads[i]){
|
|
|
|
gamepadEnabled = true
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
this.mode = "settings"
|
2019-04-04 22:40:11 +02:00
|
|
|
|
|
|
|
var tutorialTitle = document.getElementById("tutorial-title")
|
|
|
|
tutorialTitle.innerText = strings.gameSettings
|
|
|
|
tutorialTitle.setAttribute("alt", strings.gameSettings)
|
|
|
|
this.endButton.innerText = strings.settings.ok
|
|
|
|
this.endButton.setAttribute("alt", strings.settings.ok)
|
|
|
|
this.resolution = settings.getItem("resolution")
|
|
|
|
|
|
|
|
var content = document.getElementById("tutorial-content")
|
|
|
|
this.items = []
|
|
|
|
this.selected = 0
|
|
|
|
for(let i in settings.items){
|
2019-04-05 21:53:51 +02:00
|
|
|
var current = settings.items[i]
|
|
|
|
if(
|
|
|
|
!touchEnabled && current.touch === true ||
|
|
|
|
touchEnabled && current.touch === false ||
|
|
|
|
!gamepadEnabled && current.gamepad === true
|
|
|
|
){
|
2019-04-04 22:40:11 +02:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
var settingBox = document.createElement("div")
|
|
|
|
settingBox.classList.add("setting-box")
|
|
|
|
var nameDiv = document.createElement("div")
|
|
|
|
nameDiv.classList.add("setting-name", "stroke-sub")
|
|
|
|
var name = strings.settings[i].name
|
|
|
|
nameDiv.innerText = name
|
|
|
|
nameDiv.setAttribute("alt", name)
|
|
|
|
settingBox.appendChild(nameDiv)
|
|
|
|
var valueDiv = document.createElement("div")
|
|
|
|
valueDiv.classList.add("setting-value")
|
2019-04-05 21:53:51 +02:00
|
|
|
this.getValue(i, valueDiv)
|
2019-04-04 22:40:11 +02:00
|
|
|
settingBox.appendChild(valueDiv)
|
|
|
|
content.appendChild(settingBox)
|
|
|
|
if(this.items.length === this.selected){
|
|
|
|
settingBox.classList.add("selected")
|
|
|
|
}
|
|
|
|
pageEvents.add(settingBox, ["mousedown", "touchstart"], event => {
|
2019-04-05 22:21:22 +02:00
|
|
|
if(event.type !== "mousedown" || event.which === 1){
|
2019-04-05 21:53:51 +02:00
|
|
|
event.preventDefault()
|
|
|
|
this.setValue(i)
|
|
|
|
}
|
2019-04-04 22:40:11 +02:00
|
|
|
})
|
|
|
|
this.items.push({
|
|
|
|
id: i,
|
|
|
|
settingBox: settingBox,
|
|
|
|
valueDiv: valueDiv
|
|
|
|
})
|
|
|
|
}
|
|
|
|
this.items.push({
|
|
|
|
id: "back",
|
|
|
|
settingBox: this.endButton
|
|
|
|
})
|
|
|
|
|
2019-04-05 21:53:51 +02:00
|
|
|
this.setKbd()
|
|
|
|
pageEvents.add(this.endButton, ["mousedown", "touchstart"], this.onEnd.bind(this))
|
2019-04-04 22:40:11 +02:00
|
|
|
pageEvents.keyAdd(this, "all", "down", this.keyEvent.bind(this))
|
|
|
|
this.gamepad = new Gamepad({
|
|
|
|
"confirm": ["b", "ls", "rs"],
|
|
|
|
"previous": ["u", "l", "lb", "lt", "lsu", "lsl"],
|
|
|
|
"next": ["d", "r", "rb", "rt", "lsd", "lsr"],
|
|
|
|
"back": ["start", "a"]
|
|
|
|
}, this.keyPressed.bind(this))
|
|
|
|
|
|
|
|
pageEvents.send("settings")
|
|
|
|
}
|
2019-04-05 21:53:51 +02:00
|
|
|
setKbd(){
|
|
|
|
var kbdSettings = settings.getItem("keyboardSettings")
|
|
|
|
this.kbd = {
|
|
|
|
"confirm": ["enter", " ", kbdSettings.don_l[0], kbdSettings.don_r[0]],
|
|
|
|
"previous": ["arrowleft", "arrowup", kbdSettings.ka_l[0]],
|
|
|
|
"next": ["arrowright", "arrowdown", kbdSettings.ka_r[0]],
|
|
|
|
"back": ["backspace", "escape"]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
getValue(name, valueDiv){
|
2019-04-04 22:40:11 +02:00
|
|
|
var current = settings.items[name]
|
|
|
|
var value = settings.getItem(name)
|
|
|
|
if(current.type === "select"){
|
|
|
|
value = strings.settings[name][value]
|
|
|
|
}else if(current.type === "toggle"){
|
|
|
|
value = value ? strings.settings.on : strings.settings.off
|
2019-04-05 21:53:51 +02:00
|
|
|
}else if(current.type === "keyboard"){
|
|
|
|
valueDiv.innerHTML = ""
|
|
|
|
for(var i in value){
|
|
|
|
var key = document.createElement("div")
|
|
|
|
key.style.color = i === "ka_l" || i === "ka_r" ? "#009aa5" : "#ef2c10"
|
|
|
|
key.innerText = value[i][0].toUpperCase()
|
|
|
|
valueDiv.appendChild(key)
|
|
|
|
}
|
|
|
|
return
|
2019-04-04 22:40:11 +02:00
|
|
|
}
|
2019-04-05 21:53:51 +02:00
|
|
|
valueDiv.innerText = value
|
2019-04-04 22:40:11 +02:00
|
|
|
}
|
|
|
|
setValue(name){
|
|
|
|
var current = settings.items[name]
|
|
|
|
var value = settings.getItem(name)
|
2019-04-05 21:53:51 +02:00
|
|
|
var selectedIndex = this.items.findIndex(item => item.id === name)
|
|
|
|
var selected = this.items[selectedIndex]
|
|
|
|
if(this.mode !== "settings"){
|
|
|
|
if(this.selected === selectedIndex){
|
|
|
|
this.keyboardBack(selected)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if(this.selected !== selectedIndex){
|
|
|
|
this.items[this.selected].settingBox.classList.remove("selected")
|
|
|
|
this.selected = selectedIndex
|
|
|
|
selected.settingBox.classList.add("selected")
|
|
|
|
}
|
2019-04-04 22:40:11 +02:00
|
|
|
if(current.type === "select"){
|
|
|
|
value = current.options[this.mod(current.options.length, current.options.indexOf(value) + 1)]
|
|
|
|
}else if(current.type === "toggle"){
|
|
|
|
value = !value
|
2019-04-05 21:53:51 +02:00
|
|
|
}else if(current.type === "keyboard"){
|
|
|
|
this.mode = "keyboard"
|
|
|
|
selected.settingBox.style.animation = "none"
|
|
|
|
selected.valueDiv.classList.add("selected")
|
|
|
|
this.keyboardKeys = {}
|
|
|
|
this.keyboardSet()
|
|
|
|
assets.sounds["se_don"].play()
|
|
|
|
return
|
2019-04-04 22:40:11 +02:00
|
|
|
}
|
|
|
|
settings.setItem(name, value)
|
2019-04-05 21:53:51 +02:00
|
|
|
this.getValue(name, this.items[this.selected].valueDiv)
|
2019-04-05 11:36:14 +02:00
|
|
|
assets.sounds["se_ka"].play()
|
2019-04-04 22:40:11 +02:00
|
|
|
}
|
|
|
|
keyEvent(event){
|
|
|
|
if(event.keyCode === 27 || event.keyCode === 8 || event.keyCode === 9){
|
|
|
|
// Escape, Backspace, Tab
|
|
|
|
event.preventDefault()
|
|
|
|
}
|
|
|
|
if(!event.repeat){
|
|
|
|
for(var i in this.kbd){
|
2019-04-05 21:53:51 +02:00
|
|
|
if(this.kbd[i].indexOf(event.key.toLowerCase()) !== -1){
|
|
|
|
if(this.mode !== "keyboard" || i === "back"){
|
|
|
|
this.keyPressed(true, i)
|
|
|
|
return
|
|
|
|
}
|
2019-04-04 22:40:11 +02:00
|
|
|
}
|
|
|
|
}
|
2019-04-05 21:53:51 +02:00
|
|
|
if(this.mode === "keyboard"){
|
|
|
|
var currentKey = event.key.toLowerCase()
|
|
|
|
for(var i in this.keyboardKeys){
|
|
|
|
if(this.keyboardKeys[i][0] === currentKey || !currentKey){
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
this.keyboardKeys[this.keyboardCurrent] = [currentKey]
|
|
|
|
this.keyboardSet()
|
|
|
|
}
|
2019-04-04 22:40:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
keyPressed(pressed, name){
|
|
|
|
if(!pressed){
|
|
|
|
return
|
|
|
|
}
|
|
|
|
var selected = this.items[this.selected]
|
2019-04-05 21:53:51 +02:00
|
|
|
if(this.mode === "settings"){
|
|
|
|
if(name === "confirm"){
|
|
|
|
if(selected.id === "back"){
|
|
|
|
this.onEnd()
|
|
|
|
}else{
|
|
|
|
this.setValue(selected.id)
|
|
|
|
}
|
|
|
|
}else if(name === "previous" || name === "next"){
|
|
|
|
selected.settingBox.classList.remove("selected")
|
|
|
|
this.selected = this.mod(this.items.length, this.selected + (name === "next" ? 1 : -1))
|
|
|
|
this.items[this.selected].settingBox.classList.add("selected")
|
|
|
|
assets.sounds["se_ka"].play()
|
|
|
|
}else if(name === "back"){
|
2019-04-04 22:40:11 +02:00
|
|
|
this.onEnd()
|
2019-04-05 21:53:51 +02:00
|
|
|
}
|
|
|
|
}else if(this.mode === "keyboard"){
|
|
|
|
if(name === "back"){
|
|
|
|
this.keyboardBack(selected)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
keyboardSet(){
|
|
|
|
var selected = this.items[this.selected]
|
|
|
|
var current = settings.items[selected.id]
|
|
|
|
selected.valueDiv.innerHTML = ""
|
|
|
|
for(var i in current.default){
|
|
|
|
var key = document.createElement("div")
|
|
|
|
key.style.color = i === "ka_l" || i === "ka_r" ? "#009aa5" : "#ef2c10"
|
|
|
|
if(this.keyboardKeys[i]){
|
|
|
|
key.innerText = this.keyboardKeys[i][0].toUpperCase()
|
|
|
|
selected.valueDiv.appendChild(key)
|
2019-04-04 22:40:11 +02:00
|
|
|
}else{
|
2019-04-05 21:53:51 +02:00
|
|
|
key.innerText = "[" + strings.settings[selected.id][i] + "]"
|
|
|
|
selected.valueDiv.appendChild(key)
|
|
|
|
this.keyboardCurrent = i
|
|
|
|
return
|
2019-04-04 22:40:11 +02:00
|
|
|
}
|
|
|
|
}
|
2019-04-05 21:53:51 +02:00
|
|
|
settings.setItem(selected.id, this.keyboardKeys)
|
|
|
|
this.keyboardBack(selected)
|
|
|
|
this.setKbd()
|
|
|
|
pageEvents.setKbd()
|
|
|
|
}
|
|
|
|
keyboardBack(selected){
|
|
|
|
this.mode = "settings"
|
|
|
|
selected.settingBox.style.animation = ""
|
|
|
|
selected.valueDiv.classList.remove("selected")
|
|
|
|
this.getValue(selected.id, selected.valueDiv)
|
2019-04-04 22:40:11 +02:00
|
|
|
}
|
|
|
|
onEnd(event){
|
|
|
|
var touched = false
|
2019-04-05 21:53:51 +02:00
|
|
|
if(event){
|
|
|
|
if(event.type === "touchstart"){
|
|
|
|
event.preventDefault()
|
|
|
|
touched = true
|
|
|
|
}else if(event.which !== 1){
|
|
|
|
return
|
|
|
|
}
|
2019-04-04 22:40:11 +02:00
|
|
|
}
|
|
|
|
this.clean()
|
|
|
|
assets.sounds["se_don"].play()
|
|
|
|
setTimeout(() => {
|
|
|
|
new SongSelect("settings", false, touched)
|
|
|
|
}, 500)
|
|
|
|
}
|
|
|
|
mod(length, index){
|
|
|
|
return ((index % length) + length) % length
|
|
|
|
}
|
|
|
|
clean(){
|
|
|
|
this.gamepad.clean()
|
2019-04-05 11:36:14 +02:00
|
|
|
assets.sounds["bgm_settings"].stop()
|
2019-04-04 22:40:11 +02:00
|
|
|
pageEvents.keyRemove(this, "all")
|
|
|
|
for(var i in this.items){
|
|
|
|
pageEvents.remove(this.items[i].settingBox, ["mousedown", "touchstart"])
|
|
|
|
}
|
|
|
|
delete this.endButton
|
|
|
|
delete this.items
|
|
|
|
if(this.resolution !== settings.getItem("resolution")){
|
|
|
|
for(var i in assets.image){
|
2019-04-04 23:21:08 +02:00
|
|
|
if(i === "touch_drum" || i.startsWith("bg_song_") || i.startsWith("bg_stage_") || i.startsWith("bg_don_")){
|
2019-04-04 22:40:11 +02:00
|
|
|
URL.revokeObjectURL(assets.image[i].src)
|
|
|
|
delete assets.image[i]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|