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

144 lines
3.8 KiB
JavaScript
Raw Normal View History

2018-09-18 00:37:59 +02:00
class Titlescreen{
constructor(){
loader.changePage("titlescreen", false)
2018-09-18 00:37:59 +02:00
this.titleScreen = document.getElementById("title-screen")
this.proceed = document.getElementById("title-proceed")
this.langDropdown = document.getElementById("lang-dropdown")
this.langId = document.getElementById("lang-id")
2019-01-28 12:43:18 +01:00
this.disclaimerText = document.getElementById("title-disclaimer-text")
this.disclaimerCopyright = document.getElementById("title-disclaimer-copyright")
2019-01-28 02:57:18 +01:00
this.logo = new Logo()
this.lang = this.getLang()
this.setLang(allStrings[this.lang])
this.addLangs()
2019-01-05 08:44:28 +01:00
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))
pageEvents.add(this.langDropdown, "change", this.langChange.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(event && event.target === this.langDropdown){
return
}
2018-10-09 08:59:36 +02:00
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()
}
}
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-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)
}else{
2018-11-01 23:05:18 +01:00
setTimeout(() => {
new Tutorial()
}, 500)
2018-09-18 00:37:59 +02:00
}
}
getLang(){
if(localStorage.lang && localStorage.lang in allStrings){
return localStorage.lang
}
if("languages" in navigator){
var userLang = navigator.languages.slice()
userLang.unshift(navigator.language)
for(var i in userLang){
for(var j in allStrings){
if(allStrings[j].regex.test(userLang[i])){
return j
}
}
}
}
return "ja"
}
setLang(lang){
strings = lang
this.proceed.innerText = strings.titleProceed
this.proceed.setAttribute("alt", strings.titleProceed)
this.langId.innerText = strings.id.toUpperCase()
this.langId.setAttribute("alt", strings.id.toUpperCase())
2019-01-28 12:43:18 +01:00
this.disclaimerText.innerText = strings.titleDisclaimer
this.disclaimerText.setAttribute("alt", strings.titleDisclaimer)
this.disclaimerCopyright.innerText = strings.titleCopyright
this.disclaimerCopyright.setAttribute("alt", strings.titleCopyright)
loader.screen.style.fontFamily = strings.font
loader.screen.style.fontWeight = strings.font === "Microsoft YaHei, sans-serif" ? "bold" : ""
2019-01-26 19:29:13 +01:00
if(failedTests.length !== 0){
showUnsupported(strings)
}
2019-01-28 02:57:18 +01:00
this.logo.updateSubtitle()
}
addLangs(){
for(var i in allStrings){
var option = document.createElement("option")
option.value = i
if(i === this.lang){
option.selected = true
}
option.appendChild(document.createTextNode(allStrings[i].name))
this.langDropdown.appendChild(option)
}
}
langChange(){
this.lang = this.langDropdown.value
localStorage.lang = this.lang
this.setLang(allStrings[this.lang])
}
2018-09-18 00:37:59 +02:00
clean(){
2018-09-26 20:30:57 +02:00
this.gamepad.clean()
2019-01-28 02:57:18 +01:00
this.logo.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"])
pageEvents.remove(this.langDropdown, "change")
2018-09-18 00:37:59 +02:00
delete this.titleScreen
delete this.proceed
delete this.langDropdown
2018-09-18 00:37:59 +02:00
}
}