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

120 lines
3.2 KiB
JavaScript
Raw Normal View History

2018-08-28 01:56:31 +02:00
class Mekadon{
constructor(...args){
this.init(...args)
}
init(controller, game){
2018-09-15 16:34:53 +02:00
this.controller = controller
this.game = game
this.lr = false
this.lastHit = -Infinity
this.delay = controller.audioLatency
2018-09-15 16:34:53 +02:00
}
play(circle){
var type = circle.type
if((type === "balloon" || type === "drumroll" || type === "daiDrumroll") && this.getMS() > circle.endTime){
2019-02-20 21:48:21 +01:00
if(circle.section && circle.timesHit === 0){
this.game.resetSection()
}
2018-09-27 17:31:57 +02:00
circle.played(-1, false)
this.game.updateCurrentCircle()
}
type = circle.type
if(type === "balloon"){
return this.playDrumrollAt(circle, 0, 30)
}else if(type === "drumroll" || type === "daiDrumroll"){
return this.playDrumrollAt(circle, 0, 60)
2018-09-15 16:34:53 +02:00
}else{
return this.playAt(circle, 0, 450)
2018-09-15 16:34:53 +02:00
}
}
2018-11-13 05:36:15 +01:00
playAt(circle, ms, score, dai, reverse){
var currentMs = circle.ms - this.getMS() + this.delay
2018-09-15 16:34:53 +02:00
if(ms > currentMs - 10){
2018-11-13 05:36:15 +01:00
return this.playNow(circle, score, dai, reverse)
2018-09-15 16:34:53 +02:00
}
}
2018-11-13 05:36:15 +01:00
playDrumrollAt(circle, ms, pace, kaAmount){
2018-09-15 16:34:53 +02:00
if(pace && this.getMS() >= this.lastHit + pace){
2018-11-13 05:36:15 +01:00
var score = 1
if(kaAmount > 0){
score = Math.random() > kaAmount ? 1 : 2
}
return this.playAt(circle, ms, score)
2018-09-15 16:34:53 +02:00
}
}
miss(circle){
var currentMs = circle.ms - this.getMS()
2018-09-15 16:34:53 +02:00
if(0 >= currentMs - 10){
this.controller.displayScore(0, true)
this.game.updateCurrentCircle()
this.game.updateCombo(0)
2018-09-20 01:20:26 +02:00
this.game.updateGlobalScore(0, 1, circle.gogoTime)
this.game.sectionNotes.push(0)
2018-09-15 16:34:53 +02:00
return true
}
}
2018-11-13 05:36:15 +01:00
playNow(circle, score, dai, reverse){
var type = circle.type
var keyDai = false
var playDai = !dai || dai === 2
2018-09-21 22:31:35 +02:00
var drumrollNotes = type === "balloon" || type === "drumroll" || type === "daiDrumroll"
if(drumrollNotes){
var ms = this.getMS()
}else{
var ms = circle.ms
2018-09-21 22:31:35 +02:00
}
2018-11-13 05:36:15 +01:00
if(reverse){
if(type === "don" || type === "daiDon"){
type = "ka"
}else if(type === "ka" || type === "daiKa"){
type = "don"
}
}
if(type === "daiDon" && playDai){
this.setKey("don_l", ms)
this.setKey("don_r", ms)
2018-09-15 16:34:53 +02:00
this.lr = false
keyDai = true
}else if(type === "don" || type === "daiDon" || drumrollNotes && score !== 2){
this.setKey(this.lr ? "don_l" : "don_r", ms)
2018-09-15 16:34:53 +02:00
this.lr = !this.lr
}else if(type === "daiKa" && playDai){
this.setKey("ka_l", ms)
this.setKey("ka_r", ms)
2018-09-15 16:34:53 +02:00
this.lr = false
keyDai = true
}else if(type === "ka" || type === "daiKa" || drumrollNotes){
this.setKey(this.lr ? "ka_l" : "ka_r", ms)
this.lr = !this.lr
2018-09-15 16:34:53 +02:00
}
if(type === "balloon"){
if(circle.requiredHits === 1){
2019-02-04 10:14:42 +01:00
assets.sounds["se_balloon"].play()
2018-09-15 16:34:53 +02:00
}
this.game.checkBalloon(circle)
}else if(type === "drumroll" || type === "daiDrumroll"){
2018-11-13 05:36:15 +01:00
this.game.checkDrumroll(circle, score === 2)
2018-09-15 16:34:53 +02:00
}else{
2018-11-15 09:42:22 +01:00
this.controller.displayScore(score, false, keyDai)
2018-09-21 22:31:35 +02:00
this.game.updateCombo(score)
this.game.updateGlobalScore(score, keyDai ? 2 : 1, circle.gogoTime)
this.game.updateCurrentCircle()
circle.played(score, keyDai)
2019-02-20 21:48:21 +01:00
if(circle.section){
this.game.resetSection()
}
this.game.sectionNotes.push(score === 450 ? 1 : (score === 230 ? 0.5 : 0))
2018-09-15 16:34:53 +02:00
}
2018-09-21 22:31:35 +02:00
this.lastHit = ms
2018-09-15 16:34:53 +02:00
return true
}
getMS(){
2018-10-03 11:48:18 +02:00
return this.controller.getElapsedTime()
2018-09-15 16:34:53 +02:00
}
setKey(name, ms){
this.controller.setKey(true, name, ms)
2018-09-15 16:34:53 +02:00
}
2018-08-28 01:56:31 +02:00
}