japanese-drum-game/public/src/js/keyboard.js

138 lines
3.2 KiB
JavaScript
Raw Normal View History

2018-09-18 06:37:59 +08:00
class Keyboard{
constructor(controller){
this.controller = controller
2018-09-22 04:31:35 +08:00
this.game = this.controller.game
2018-09-18 06:37:59 +08:00
this.kbd = {
"don_l": 86, // V
"don_r": 66, // B
"ka_l": 67, // C
"ka_r": 78, // N
"pause": 81, // Q
"back": 8 // Backspace
}
this.keys = {}
this.waitKeyupScore = {}
this.waitKeyupSound = {}
this.waitKeyupMenu = {}
this.keyTime = {
"don": -Infinity,
"ka": -Infinity
}
this.gamepad = new Gamepad(this)
pageEvents.keyAdd(this, "all", "both", event => {
2018-09-22 04:31:35 +08:00
if(event.keyCode === 8){
2018-09-18 06:37:59 +08:00
// Disable back navigation when pressing backspace
event.preventDefault()
}
2018-09-22 04:31:35 +08:00
if(!event.repeat && this.buttonEnabled(event.keyCode)){
var ms = this.game.getAccurateTime()
this.setKey(event.keyCode, event.type === "keydown", ms)
2018-09-18 06:37:59 +08:00
}
})
}
getBindings(){
return this.kbd
}
buttonEnabled(keyCode){
if(this.controller.autoPlayEnabled){
switch(keyCode){
case this.kbd["don_l"]:
case this.kbd["don_r"]:
case this.kbd["ka_l"]:
case this.kbd["ka_r"]:
return false
}
}
return true
}
checkGameKeys(){
if(!this.controller.autoPlayEnabled){
this.gamepad.play()
}
this.checkKeySound(this.kbd["don_l"], "don")
this.checkKeySound(this.kbd["don_r"], "don")
this.checkKeySound(this.kbd["ka_l"], "ka")
this.checkKeySound(this.kbd["ka_r"], "ka")
}
checkMenuKeys(){
if(!this.controller.multiplayer){
this.gamepad.play(true)
this.checkKey(this.kbd["pause"], "menu", () => {
this.controller.togglePauseMenu()
})
}
if(this.controller.multiplayer !== 2){
this.checkKey(this.kbd["back"], "menu", () => {
if(this.controller.multiplayer === 1){
p2.send("gameend")
}
this.controller.togglePause()
this.controller.songSelection()
})
}
}
2018-09-22 04:31:35 +08:00
checkKey(keyCode, type, callback){
if(this.keys[keyCode] && !this.isWaiting(keyCode, type)){
this.waitForKeyup(keyCode, type)
2018-09-18 06:37:59 +08:00
callback()
}
}
checkKeySound(keyCode, sound){
this.checkKey(keyCode, "sound", () => {
2018-09-22 04:31:35 +08:00
var circles = this.controller.getCircles()
var circle = circles[this.controller.getCurrentCircle()]
2018-09-18 06:37:59 +08:00
if(
(keyCode === this.kbd["don_l"] || keyCode === this.kbd["don_r"])
&& circle
&& !circle.getPlayed()
&& circle.getType() === "balloon"
&& circle.requiredHits - circle.timesHit <= 1
){
assets.sounds["balloon"].play()
}else{
assets.sounds["note_" + sound].play()
}
2018-09-22 04:31:35 +08:00
this.keyTime[sound] = this.keyTime[keyCode]
2018-09-18 06:37:59 +08:00
})
}
getKeys(){
return this.keys
}
2018-09-22 04:31:35 +08:00
setKey(keyCode, down, ms){
2018-09-18 06:37:59 +08:00
if(down){
this.keys[keyCode] = true
2018-09-22 04:31:35 +08:00
this.keyTime[keyCode] = ms
2018-09-18 06:37:59 +08:00
}else{
2018-09-22 04:31:35 +08:00
this.keys[keyCode] = false
this.waitKeyupScore[keyCode] = false
this.waitKeyupSound[keyCode] = false
this.waitKeyupMenu[keyCode] = false
2018-09-18 06:37:59 +08:00
}
}
2018-09-22 04:31:35 +08:00
isWaiting(keyCode, type){
2018-09-18 06:37:59 +08:00
if(type === "score"){
2018-09-22 04:31:35 +08:00
return this.waitKeyupScore[keyCode]
2018-09-18 06:37:59 +08:00
}else if(type === "sound"){
2018-09-22 04:31:35 +08:00
return this.waitKeyupSound[keyCode]
2018-09-18 06:37:59 +08:00
}else if(type === "menu"){
2018-09-22 04:31:35 +08:00
return this.waitKeyupMenu[keyCode]
2018-09-18 06:37:59 +08:00
}
}
2018-09-22 04:31:35 +08:00
waitForKeyup(keyCode, type){
2018-09-18 06:37:59 +08:00
if(type === "score"){
2018-09-22 04:31:35 +08:00
this.waitKeyupScore[keyCode] = true
2018-09-18 06:37:59 +08:00
}else if(type === "sound"){
2018-09-22 04:31:35 +08:00
this.waitKeyupSound[keyCode] = true
2018-09-18 06:37:59 +08:00
}else if(type === "menu"){
2018-09-22 04:31:35 +08:00
this.waitKeyupMenu[keyCode] = true
2018-09-18 06:37:59 +08:00
}
}
getKeyTime(){
return this.keyTime
}
clean(){
pageEvents.keyRemove(this, "all")
}
}