2018-09-18 00:37:59 +02:00
|
|
|
class Titlescreen{
|
|
|
|
constructor(){
|
|
|
|
loader.changePage("titlescreen")
|
|
|
|
this.titleScreen = document.getElementById("title-screen")
|
2019-01-05 08:44:28 +01:00
|
|
|
var proceed = document.getElementById("tilte-proceed")
|
|
|
|
proceed.appendChild(document.createTextNode(strings.tilteProceed))
|
|
|
|
proceed.setAttribute("alt", strings.tilteProceed)
|
|
|
|
|
2018-10-09 08:59:36 +02:00
|
|
|
pageEvents.keyAdd(this, "all", "down", this.keyDown.bind(this))
|
2018-10-12 20:04:28 +02:00
|
|
|
pageEvents.add(this.titleScreen, ["mousedown", "touchstart"], this.onPressed.bind(this))
|
2018-09-18 00:37:59 +02:00
|
|
|
assets.sounds["title"].play()
|
2018-09-26 20:30:57 +02:00
|
|
|
this.gamepad = new Gamepad({
|
2018-10-09 08:59:36 +02:00
|
|
|
"13": ["a", "b", "x", "y", "start", "ls", "rs"]
|
2018-10-08 22:32:25 +02:00
|
|
|
}, pressed => {
|
2018-09-26 20:30:57 +02:00
|
|
|
if(pressed){
|
|
|
|
this.onPressed()
|
|
|
|
}
|
|
|
|
})
|
2018-11-01 23:05:18 +01:00
|
|
|
if(p2.session){
|
|
|
|
pageEvents.add(p2, "message", response => {
|
|
|
|
if(response.type === "songsel"){
|
|
|
|
this.goNext(true)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
2015-07-17 10:22:46 +02:00
|
|
|
}
|
2018-10-09 08:59:36 +02:00
|
|
|
keyDown(event, code){
|
|
|
|
if(!code){
|
|
|
|
code = event.keyCode
|
|
|
|
}
|
2018-10-23 16:51:55 +02:00
|
|
|
if(code == 13 || code == 32 || code == 70 || code == 74){
|
|
|
|
// Enter, Space, F, J
|
2018-10-09 08:59:36 +02:00
|
|
|
this.onPressed()
|
|
|
|
}
|
|
|
|
}
|
2018-10-06 15:24:23 +02:00
|
|
|
onPressed(event){
|
2018-10-09 08:59:36 +02:00
|
|
|
if(event){
|
|
|
|
if(event.type === "touchstart"){
|
|
|
|
event.preventDefault()
|
|
|
|
this.touched = true
|
|
|
|
}else if(event.type === "mousedown" && event.which !== 1){
|
|
|
|
return
|
|
|
|
}
|
2018-10-06 15:24:23 +02:00
|
|
|
}
|
2018-10-05 19:03:59 +02:00
|
|
|
this.titleScreen.style.cursor = "auto"
|
2018-09-18 00:37:59 +02:00
|
|
|
this.clean()
|
|
|
|
assets.sounds["don"].play()
|
2018-11-01 23:05:18 +01:00
|
|
|
this.goNext()
|
2018-09-26 20:30:57 +02:00
|
|
|
}
|
2018-11-01 23:05:18 +01:00
|
|
|
goNext(fromP2){
|
|
|
|
if(p2.session && !fromP2){
|
|
|
|
p2.send("songsel")
|
|
|
|
}else if(fromP2 || this.touched || localStorage.getItem("tutorial") === "true"){
|
|
|
|
pageEvents.remove(p2, "message")
|
|
|
|
setTimeout(() => {
|
|
|
|
new SongSelect(false, false, this.touched)
|
|
|
|
}, 500)
|
2018-10-06 17:09:57 +02:00
|
|
|
}else{
|
2018-11-01 23:05:18 +01:00
|
|
|
setTimeout(() => {
|
|
|
|
new Tutorial()
|
|
|
|
}, 500)
|
2018-09-18 00:37:59 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
clean(){
|
2018-09-26 20:30:57 +02:00
|
|
|
this.gamepad.clean()
|
2018-09-18 00:37:59 +02:00
|
|
|
assets.sounds["title"].stop()
|
2018-10-09 08:59:36 +02:00
|
|
|
pageEvents.keyRemove(this, "all")
|
2018-10-12 20:04:28 +02:00
|
|
|
pageEvents.remove(this.titleScreen, ["mousedown", "touchstart"])
|
2018-09-18 00:37:59 +02:00
|
|
|
delete this.titleScreen
|
|
|
|
}
|
|
|
|
}
|