Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
T
Taiko Web
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nanahira
Taiko Web
Commits
8226123c
Commit
8226123c
authored
Sep 21, 2018
by
Bui
Committed by
GitHub
Sep 21, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #32 from LoveEevee/better-timing
Change note timing
parents
cd694b39
01d0a810
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
161 additions
and
120 deletions
+161
-120
public/index.html
public/index.html
+3
-1
public/src/js/circle.js
public/src/js/circle.js
+2
-9
public/src/js/controller.js
public/src/js/controller.js
+5
-3
public/src/js/game.js
public/src/js/game.js
+54
-40
public/src/js/gamepad.js
public/src/js/gamepad.js
+15
-6
public/src/js/gamerules.js
public/src/js/gamerules.js
+23
-0
public/src/js/keyboard.js
public/src/js/keyboard.js
+26
-25
public/src/js/mekadon.js
public/src/js/mekadon.js
+22
-32
public/src/js/p2.js
public/src/js/p2.js
+8
-1
public/src/js/view.js
public/src/js/view.js
+2
-2
public/src/views/titlescreen.html
public/src/views/titlescreen.html
+1
-1
No files found.
public/index.html
View file @
8226123c
...
@@ -10,10 +10,11 @@
...
@@ -10,10 +10,11 @@
<!DOCTYPE html>
<!DOCTYPE html>
<html>
<html>
<meta
charset=
"UTF-8"
>
<head>
<head>
<meta
charset=
"utf-8"
>
<title>
太鼓の達人ウェブ - Taiko no Tatsujin Web
</title>
<title>
太鼓の達人ウェブ - Taiko no Tatsujin Web
</title>
<link
rel=
"icon"
href=
"/assets/img/favicon.png"
type=
"image/png"
>
<link
rel=
"icon"
href=
"/assets/img/favicon.png"
type=
"image/png"
>
<meta
name=
"viewport"
content=
"width=device-width,initial-scale=1"
>
<link
rel=
"stylesheet"
href=
"/src/css/main.css"
/>
<link
rel=
"stylesheet"
href=
"/src/css/main.css"
/>
<link
rel=
"stylesheet"
href=
"/src/css/loader.css"
>
<link
rel=
"stylesheet"
href=
"/src/css/loader.css"
>
...
@@ -46,6 +47,7 @@
...
@@ -46,6 +47,7 @@
<script
src=
"/src/js/canvasasset.js"
></script>
<script
src=
"/src/js/canvasasset.js"
></script>
<script
src=
"/src/js/pageevents.js"
></script>
<script
src=
"/src/js/pageevents.js"
></script>
<script
src=
"/src/js/viewassets.js"
></script>
<script
src=
"/src/js/viewassets.js"
></script>
<script
src=
"/src/js/gamerules.js"
></script>
</head>
</head>
<body>
<body>
...
...
public/src/js/circle.js
View file @
8226123c
...
@@ -6,14 +6,13 @@ class Circle{
...
@@ -6,14 +6,13 @@ class Circle{
this
.
type
=
config
.
type
this
.
type
=
config
.
type
this
.
text
=
config
.
txt
this
.
text
=
config
.
txt
this
.
speed
=
config
.
speed
this
.
speed
=
config
.
speed
this
.
endTime
=
config
.
endTime
||
this
.
ms
+
150
this
.
endTime
=
config
.
endTime
||
this
.
ms
this
.
isPlayed
=
0
this
.
isPlayed
=
0
this
.
animating
=
false
this
.
animating
=
false
this
.
animT
=
0
this
.
animT
=
0
this
.
score
=
0
this
.
score
=
0
this
.
lastFrame
=
this
.
ms
+
100
this
.
lastFrame
=
this
.
ms
+
100
this
.
animationEnded
=
false
this
.
animationEnded
=
false
this
.
status
=
-
1
this
.
timesHit
=
0
this
.
timesHit
=
0
this
.
requiredHits
=
config
.
requiredHits
||
0
this
.
requiredHits
=
config
.
requiredHits
||
0
this
.
rendaPlayed
=
false
this
.
rendaPlayed
=
false
...
@@ -47,12 +46,6 @@ class Circle{
...
@@ -47,12 +46,6 @@ class Circle{
incAnimT
(){
incAnimT
(){
this
.
animT
+=
0.05
this
.
animT
+=
0.05
}
}
updateStatus
(
status
){
this
.
status
=
status
}
getStatus
(){
return
this
.
status
}
getPlayed
(){
getPlayed
(){
return
this
.
isPlayed
return
this
.
isPlayed
}
}
...
@@ -64,7 +57,7 @@ class Circle{
...
@@ -64,7 +57,7 @@ class Circle{
}
}
played
(
score
,
big
){
played
(
score
,
big
){
this
.
score
=
score
this
.
score
=
score
this
.
isPlayed
=
big
?
2
:
1
this
.
isPlayed
=
score
<=
0
?
score
-
1
:
(
big
?
2
:
1
)
}
}
hit
(){
hit
(){
this
.
timesHit
++
this
.
timesHit
++
...
...
public/src/js/controller.js
View file @
8226123c
...
@@ -80,7 +80,10 @@ class Controller{
...
@@ -80,7 +80,10 @@ class Controller{
})
})
}
}
var
ms
=
this
.
game
.
getElapsedTime
().
ms
var
ms
=
this
.
game
.
getElapsedTime
().
ms
if
(
!
this
.
game
.
isPaused
()){
if
(
!
this
.
game
.
isPaused
()){
this
.
keyboard
.
checkGameKeys
()
if
(
ms
>=
0
&&
!
this
.
mainLoopStarted
){
if
(
ms
>=
0
&&
!
this
.
mainLoopStarted
){
this
.
mainLoopStarted
=
true
this
.
mainLoopStarted
=
true
}
}
...
@@ -95,7 +98,6 @@ class Controller{
...
@@ -95,7 +98,6 @@ class Controller{
this
.
game
.
playMainMusic
()
this
.
game
.
playMainMusic
()
}
}
this
.
view
.
refresh
()
this
.
view
.
refresh
()
this
.
keyboard
.
checkGameKeys
()
}
}
this
.
keyboard
.
checkMenuKeys
()
this
.
keyboard
.
checkMenuKeys
()
}
}
...
@@ -156,8 +158,8 @@ class Controller{
...
@@ -156,8 +158,8 @@ class Controller{
getKeys
(){
getKeys
(){
return
this
.
keyboard
.
getKeys
()
return
this
.
keyboard
.
getKeys
()
}
}
setKey
(
keyCode
,
down
){
setKey
(
keyCode
,
down
,
ms
){
return
this
.
keyboard
.
setKey
(
keyCode
,
down
)
return
this
.
keyboard
.
setKey
(
keyCode
,
down
,
ms
)
}
}
getBindings
(){
getBindings
(){
return
this
.
keyboard
.
getBindings
()
return
this
.
keyboard
.
getBindings
()
...
...
public/src/js/game.js
View file @
8226123c
...
@@ -28,6 +28,8 @@ class Game{
...
@@ -28,6 +28,8 @@ class Game{
this
.
fadeOutStarted
=
false
this
.
fadeOutStarted
=
false
this
.
currentTimingPoint
=
0
this
.
currentTimingPoint
=
0
this
.
offsetTime
=
0
this
.
offsetTime
=
0
this
.
rules
=
new
GameRules
(
this
)
assets
.
songs
.
forEach
(
song
=>
{
assets
.
songs
.
forEach
(
song
=>
{
if
(
song
.
id
==
selectedSong
.
folder
){
if
(
song
.
id
==
selectedSong
.
folder
){
this
.
mainAsset
=
song
.
sound
this
.
mainAsset
=
song
.
sound
...
@@ -64,45 +66,33 @@ class Game{
...
@@ -64,45 +66,33 @@ class Game{
var
circles
=
this
.
songData
.
circles
var
circles
=
this
.
songData
.
circles
circles
.
forEach
(
circle
=>
{
circles
.
forEach
(
circle
=>
{
if
(
!
circle
.
getPlayed
()){
if
(
!
circle
.
getPlayed
()){
var
currentTime
=
this
.
getElapsedTime
().
ms
var
ms
=
this
.
getElapsedTime
().
ms
var
startingTime
=
circle
.
getMS
()
-
this
.
timeForDistanceCircle
// At circle.getMS(), the circle fits the slot
var
hitTime
=
circle
.
getMS
()
var
endTime
=
circle
.
getEndTime
()
var
type
=
circle
.
getType
()
var
type
=
circle
.
getType
()
var
drumrollNotes
=
type
===
"
balloon
"
||
type
===
"
drumroll
"
||
type
===
"
daiDrumroll
"
var
drumrollNotes
=
type
===
"
balloon
"
||
type
===
"
drumroll
"
||
type
===
"
daiDrumroll
"
var
endTime
=
circle
.
getEndTime
()
+
(
drumrollNotes
?
0
:
this
.
rules
.
bad
)
if
(
currentTime
>=
startingTime
&&
currentTime
<=
endTime
){
if
(
ms
>=
circle
.
getMS
()){
if
(
drumrollNotes
&&
!
circle
.
rendaPlayed
){
if
(
currentTime
>=
hitTime
-
50
&&
currentTime
<
hitTime
-
30
){
circle
.
rendaPlayed
=
true
circle
.
updateStatus
(
0
)
if
(
this
.
rules
.
difficulty
===
"
easy
"
){
}
else
if
(
currentTime
>=
hitTime
-
30
&&
currentTime
<
hitTime
){
assets
.
sounds
[
"
renda
"
].
stop
()
circle
.
updateStatus
(
230
)
assets
.
sounds
[
"
renda
"
].
play
()
}
else
if
(
currentTime
>=
hitTime
&&
currentTime
<
endTime
){
circle
.
updateStatus
(
450
)
if
(
drumrollNotes
&&
!
circle
.
rendaPlayed
){
circle
.
rendaPlayed
=
true
if
(
this
.
controller
.
selectedSong
.
difficulty
===
"
easy
"
){
assets
.
sounds
[
"
renda
"
].
stop
()
assets
.
sounds
[
"
renda
"
].
play
()
}
}
}
}
}
}
else
if
(
currentTime
>
endTime
){
}
if
(
ms
>
endTime
){
if
(
!
this
.
controller
.
autoPlayEnabled
){
if
(
!
this
.
controller
.
autoPlayEnabled
){
if
(
drumrollNotes
){
if
(
drumrollNotes
){
circle
.
updateStatus
(
-
1
)
circle
.
played
(
-
1
,
false
)
circle
.
played
(
0
,
false
)
this
.
updateCurrentCircle
()
this
.
updateCurrentCircle
()
if
(
this
.
controller
.
multiplayer
===
1
){
if
(
this
.
controller
.
multiplayer
===
1
){
p2
.
send
(
"
drumroll
"
,
{
p2
.
send
(
"
drumroll
"
,
{
pace
:
(
this
.
getElapsedTime
().
ms
-
circle
.
getMS
())
/
circle
.
timesHit
pace
:
(
ms
-
circle
.
getMS
())
/
circle
.
timesHit
})
})
}
}
}
else
{
}
else
{
circle
.
updateStatus
(
-
1
)
var
currentScore
=
0
var
currentScore
=
0
circle
.
played
(
currentScore
,
type
===
"
daiDon
"
||
type
===
"
daiKa
"
)
circle
.
played
(
-
1
,
type
===
"
daiDon
"
||
type
===
"
daiKa
"
)
this
.
controller
.
displayScore
(
currentScore
,
true
)
this
.
controller
.
displayScore
(
currentScore
,
true
)
this
.
updateCurrentCircle
()
this
.
updateCurrentCircle
()
this
.
updateCombo
(
currentScore
)
this
.
updateCombo
(
currentScore
)
...
@@ -152,7 +142,7 @@ class Game{
...
@@ -152,7 +142,7 @@ class Game{
}
}
}
}
checkKey
(
keyCodes
,
circle
,
check
){
checkKey
(
keyCodes
,
circle
,
check
){
if
(
circle
&&
!
circle
.
getPlayed
()
&&
circle
.
getStatus
()
!=
-
1
){
if
(
circle
&&
!
circle
.
getPlayed
()){
if
(
!
this
.
checkScore
(
circle
,
check
)){
if
(
!
this
.
checkScore
(
circle
,
check
)){
return
return
}
}
...
@@ -172,18 +162,33 @@ class Game{
...
@@ -172,18 +162,33 @@ class Game{
var
typeKa
=
type
===
"
ka
"
||
type
===
"
daiKa
"
var
typeKa
=
type
===
"
ka
"
||
type
===
"
daiKa
"
var
typeDai
=
type
===
"
daiDon
"
||
type
===
"
daiKa
"
var
typeDai
=
type
===
"
daiDon
"
||
type
===
"
daiKa
"
var
keyTime
=
this
.
controller
.
getKeyTime
()
var
currentTime
=
keysDon
?
keyTime
[
"
don
"
]
:
keyTime
[
"
ka
"
]
var
relative
=
currentTime
-
circle
.
getMS
()
if
(
typeDon
||
typeKa
){
if
(
typeDon
||
typeKa
){
if
(
-
this
.
rules
.
bad
>=
relative
||
relative
>=
this
.
rules
.
bad
){
return
true
}
var
score
=
0
var
score
=
0
if
(
keysDon
&&
typeDon
||
keysKa
&&
typeKa
){
if
(
keysDon
&&
typeDon
||
keysKa
&&
typeKa
){
if
(
typeDai
&&
!
keyDai
){
if
(
typeDai
&&
!
keyDai
){
if
(
!
circle
.
daiFailed
){
if
(
!
circle
.
daiFailed
){
circle
.
daiFailed
=
ms
circle
.
daiFailed
=
ms
return
false
return
false
}
else
if
(
ms
<
circle
.
daiFailed
+
2000
/
60
){
}
else
if
(
ms
<
circle
.
daiFailed
+
this
.
rules
.
daiLeniency
){
return
false
return
false
}
}
}
}
var
circleStatus
=
circle
.
getStatus
()
var
circleStatus
=
-
1
relative
=
Math
.
abs
(
relative
)
if
(
relative
<
this
.
rules
.
good
){
circleStatus
=
450
}
else
if
(
relative
<
this
.
rules
.
ok
){
circleStatus
=
230
}
else
if
(
relative
<
this
.
rules
.
bad
){
circleStatus
=
0
}
if
(
circleStatus
===
230
||
circleStatus
===
450
){
if
(
circleStatus
===
230
||
circleStatus
===
450
){
score
=
circleStatus
score
=
circleStatus
}
}
...
@@ -198,19 +203,24 @@ class Game{
...
@@ -198,19 +203,24 @@ class Game{
if
(
this
.
controller
.
multiplayer
==
1
){
if
(
this
.
controller
.
multiplayer
==
1
){
p2
.
send
(
"
note
"
,
{
p2
.
send
(
"
note
"
,
{
score
:
score
,
score
:
score
,
ms
:
circle
.
getMS
()
-
ms
,
ms
:
circle
.
getMS
()
-
currentTime
,
dai
:
typeDai
?
keyDai
?
2
:
1
:
0
dai
:
typeDai
?
keyDai
?
2
:
1
:
0
})
})
}
}
}
else
if
(
keysDon
&&
type
==
"
balloon
"
){
}
else
{
this
.
checkBalloon
(
circle
)
if
(
circle
.
getMS
()
>
currentTime
||
currentTime
>
circle
.
getEndTime
()){
if
(
check
===
"
daiDon
"
&&
!
circle
.
getPlayed
()){
return
true
this
.
checkBalloon
(
circle
)
}
}
}
else
if
((
keysDon
||
keysKa
)
&&
(
type
===
"
drumroll
"
||
type
===
"
daiDrumroll
"
)){
if
(
keysDon
&&
type
===
"
balloon
"
){
this
.
checkDrumroll
(
circle
)
this
.
checkBalloon
(
circle
)
if
(
keyDai
){
if
(
check
===
"
daiDon
"
&&
!
circle
.
getPlayed
()){
this
.
checkBalloon
(
circle
)
}
}
else
if
((
keysDon
||
keysKa
)
&&
(
type
===
"
drumroll
"
||
type
===
"
daiDrumroll
"
)){
this
.
checkDrumroll
(
circle
)
this
.
checkDrumroll
(
circle
)
if
(
keyDai
){
this
.
checkDrumroll
(
circle
)
}
}
}
}
}
return
true
return
true
...
@@ -261,7 +271,7 @@ class Game{
...
@@ -261,7 +271,7 @@ class Game{
var
circles
=
this
.
songData
.
circles
var
circles
=
this
.
songData
.
circles
var
lastCircle
=
circles
[
circles
.
length
-
1
]
var
lastCircle
=
circles
[
circles
.
length
-
1
]
var
ms
=
this
.
getElapsedTime
().
ms
var
ms
=
this
.
getElapsedTime
().
ms
if
(
!
this
.
fadeOutStarted
&&
ms
>=
lastCircle
.
getEndTime
()
+
19
00
){
if
(
!
this
.
fadeOutStarted
&&
ms
>=
lastCircle
.
getEndTime
()
+
20
00
){
this
.
fadeOutStarted
=
ms
this
.
fadeOutStarted
=
ms
}
}
}
}
...
@@ -329,17 +339,21 @@ class Game{
...
@@ -329,17 +339,21 @@ class Game{
}
}
updateTime
(){
updateTime
(){
// Refreshed date
// Refreshed date
this
.
currentDate
=
new
Date
()
var
currentDate
=
new
Date
()
var
ms
=
this
.
getElapsedTime
().
ms
var
ms
=
this
.
getElapsedTime
().
ms
if
(
ms
>=
0
&&
!
this
.
started
){
if
(
ms
>=
0
&&
!
this
.
started
){
this
.
startDate
=
new
Date
()
this
.
startDate
=
new
Date
()
this
.
elapsedTimeSincePause
=
0
this
.
elapsedTimeSincePause
=
0
this
.
setElapsedTime
(
this
.
currentDate
.
getTime
()
-
this
.
startDate
.
get
Time
())
this
.
setElapsedTime
(
this
.
getAccurate
Time
())
this
.
started
=
true
this
.
started
=
true
}
else
if
(
ms
<
0
||
ms
>=
0
&&
this
.
started
){
}
else
if
(
ms
<
0
||
ms
>=
0
&&
this
.
started
){
this
.
setElapsedTime
(
this
.
currentDate
.
getTime
()
-
this
.
startDate
.
getTime
()
-
this
.
elapsedTimeSincePause
)
this
.
setElapsedTime
(
this
.
getAccurateTime
()
)
}
}
}
}
getAccurateTime
(){
var
currentDate
=
new
Date
()
return
currentDate
.
getTime
()
-
this
.
startDate
.
getTime
()
-
this
.
elapsedTimeSincePause
}
getCircles
(){
getCircles
(){
return
this
.
songData
.
circles
return
this
.
songData
.
circles
}
}
...
...
public/src/js/gamepad.js
View file @
8226123c
class
Gamepad
{
class
Gamepad
{
constructor
(
keyboard
){
constructor
(
keyboard
){
this
.
keyboard
=
keyboard
this
.
game
=
this
.
keyboard
.
controller
.
game
var
kbd
=
keyboard
.
getBindings
()
var
kbd
=
keyboard
.
getBindings
()
this
.
gameBtn
=
{}
this
.
gameBtn
=
{}
this
.
gameBtn
[
kbd
[
"
don_l
"
]]
=
[
"
u
"
,
"
d
"
,
"
l
"
,
"
r
"
]
this
.
gameBtn
[
kbd
[
"
don_l
"
]]
=
[
"
u
"
,
"
d
"
,
"
l
"
,
"
r
"
]
...
@@ -28,9 +31,9 @@ class Gamepad{
...
@@ -28,9 +31,9 @@ class Gamepad{
"
guide
"
:
16
"
guide
"
:
16
}
}
this
.
btn
=
{}
this
.
btn
=
{}
this
.
keyboard
=
keyboard
}
}
play
(
menuPlay
){
play
(
menuPlay
){
var
ms
=
this
.
game
.
getAccurateTime
()
if
(
"
getGamepads
"
in
navigator
){
if
(
"
getGamepads
"
in
navigator
){
var
gamepads
=
navigator
.
getGamepads
()
var
gamepads
=
navigator
.
getGamepads
()
}
else
{
}
else
{
...
@@ -48,7 +51,7 @@ class Gamepad{
...
@@ -48,7 +51,7 @@ class Gamepad{
for
(
var
bind
in
bindings
){
for
(
var
bind
in
bindings
){
for
(
var
name
in
bindings
[
bind
]){
for
(
var
name
in
bindings
[
bind
]){
if
(
btnName
===
this
.
b
[
bindings
[
bind
][
name
]]){
if
(
btnName
===
this
.
b
[
bindings
[
bind
][
name
]]){
this
.
checkButton
(
gamepads
,
btnName
,
bind
)
this
.
checkButton
(
gamepads
,
btnName
,
bind
,
ms
)
break
buttonSearch
break
buttonSearch
}
}
}
}
...
@@ -59,8 +62,9 @@ class Gamepad{
...
@@ -59,8 +62,9 @@ class Gamepad{
}
}
}
}
}
}
checkButton
(
gamepads
,
btnName
,
keyCode
){
checkButton
(
gamepads
,
btnName
,
keyCode
,
ms
){
var
button
=
false
var
button
=
false
for
(
var
i
=
0
;
i
<
gamepads
.
length
;
i
++
){
for
(
var
i
=
0
;
i
<
gamepads
.
length
;
i
++
){
if
(
gamepads
[
i
]){
if
(
gamepads
[
i
]){
var
btn
=
gamepads
[
i
].
buttons
[
btnName
]
var
btn
=
gamepads
[
i
].
buttons
[
btnName
]
...
@@ -72,19 +76,24 @@ class Gamepad{
...
@@ -72,19 +76,24 @@ class Gamepad{
}
}
}
}
}
}
var
keys
=
this
.
keyboard
.
getKeys
()
var
pressed
=
!
this
.
btn
[
btnName
]
&&
button
var
pressed
=
!
this
.
btn
[
btnName
]
&&
button
var
released
=
this
.
btn
[
btnName
]
&&
!
button
var
released
=
this
.
btn
[
btnName
]
&&
!
button
if
(
pressed
){
if
(
pressed
){
this
.
btn
[
btnName
]
=
true
this
.
btn
[
btnName
]
=
true
}
else
if
(
released
){
}
else
if
(
released
){
delete
this
.
btn
[
btnName
]
delete
this
.
btn
[
btnName
]
}
}
if
(
pressed
){
if
(
pressed
){
if
(
this
.
keyboard
.
getKeys
()
[
keyCode
]){
if
(
keys
[
keyCode
]){
this
.
keyboard
.
setKey
(
keyCode
,
false
)
this
.
keyboard
.
setKey
(
keyCode
,
false
)
}
}
this
.
keyboard
.
setKey
(
keyCode
,
true
)
this
.
keyboard
.
setKey
(
keyCode
,
true
,
ms
)
}
else
if
(
!
button
&&
this
.
keyboard
.
getKeys
()[
keyCode
]){
}
else
if
(
!
button
&&
keys
[
keyCode
]){
if
(
released
){
if
(
released
){
this
.
toRelease
[
keyCode
+
"
released
"
]
=
true
this
.
toRelease
[
keyCode
+
"
released
"
]
=
true
}
}
...
...
public/src/js/gamerules.js
0 → 100644
View file @
8226123c
class
GameRules
{
constructor
(
game
){
this
.
difficulty
=
game
.
controller
.
selectedSong
.
difficulty
var
frame
=
1000
/
60
switch
(
this
.
difficulty
){
case
"
easy
"
:
case
"
normal
"
:
this
.
good
=
5
/
2
*
frame
this
.
ok
=
13
/
2
*
frame
this
.
bad
=
15
/
2
*
frame
break
case
"
hard
"
:
case
"
oni
"
:
this
.
good
=
3
/
2
*
frame
this
.
ok
=
9
/
2
*
frame
this
.
bad
=
13
/
2
*
frame
break
}
this
.
daiLeniency
=
2
*
frame
}
}
public/src/js/keyboard.js
View file @
8226123c
class
Keyboard
{
class
Keyboard
{
constructor
(
controller
){
constructor
(
controller
){
this
.
controller
=
controller
this
.
controller
=
controller
this
.
game
=
this
.
controller
.
game
this
.
kbd
=
{
this
.
kbd
=
{
"
don_l
"
:
86
,
// V
"
don_l
"
:
86
,
// V
"
don_r
"
:
66
,
// B
"
don_r
"
:
66
,
// B
...
@@ -19,12 +21,13 @@ class Keyboard{
...
@@ -19,12 +21,13 @@ class Keyboard{
}
}
this
.
gamepad
=
new
Gamepad
(
this
)
this
.
gamepad
=
new
Gamepad
(
this
)
pageEvents
.
keyAdd
(
this
,
"
all
"
,
"
both
"
,
event
=>
{
pageEvents
.
keyAdd
(
this
,
"
all
"
,
"
both
"
,
event
=>
{
if
(
event
.
keyCode
===
8
){
if
(
event
.
keyCode
===
8
){
// Disable back navigation when pressing backspace
// Disable back navigation when pressing backspace
event
.
preventDefault
()
event
.
preventDefault
()
}
}
if
(
this
.
buttonEnabled
(
event
.
keyCode
)){
if
(
!
event
.
repeat
&&
this
.
buttonEnabled
(
event
.
keyCode
)){
this
.
setKey
(
event
.
keyCode
,
event
.
type
===
"
keydown
"
)
var
ms
=
this
.
game
.
getAccurateTime
()
this
.
setKey
(
event
.
keyCode
,
event
.
type
===
"
keydown
"
,
ms
)
}
}
})
})
}
}
...
@@ -69,21 +72,20 @@ class Keyboard{
...
@@ -69,21 +72,20 @@ class Keyboard{
})
})
}
}
}
}
checkKey
(
keyCode
,
keyup
,
callback
){
checkKey
(
keyCode
,
type
,
callback
){
if
(
this
.
keys
[
keyCode
]
&&
!
this
.
isWaiting
(
keyCode
,
keyup
)){
if
(
this
.
keys
[
keyCode
]
&&
!
this
.
isWaiting
(
keyCode
,
type
)){
this
.
waitForKeyup
(
keyCode
,
keyup
)
this
.
waitForKeyup
(
keyCode
,
type
)
callback
()
callback
()
}
}
}
}
checkKeySound
(
keyCode
,
sound
){
checkKeySound
(
keyCode
,
sound
){
this
.
checkKey
(
keyCode
,
"
sound
"
,
()
=>
{
this
.
checkKey
(
keyCode
,
"
sound
"
,
()
=>
{
var
circles
=
this
.
controller
.
parsedSongData
.
circles
var
circles
=
this
.
controller
.
getCircles
()
var
circle
=
circles
[
this
.
controller
.
g
ame
.
g
etCurrentCircle
()]
var
circle
=
circles
[
this
.
controller
.
getCurrentCircle
()]
if
(
if
(
(
keyCode
===
this
.
kbd
[
"
don_l
"
]
||
keyCode
===
this
.
kbd
[
"
don_r
"
])
(
keyCode
===
this
.
kbd
[
"
don_l
"
]
||
keyCode
===
this
.
kbd
[
"
don_r
"
])
&&
circle
&&
circle
&&
!
circle
.
getPlayed
()
&&
!
circle
.
getPlayed
()
&&
circle
.
getStatus
()
!==
-
1
&&
circle
.
getType
()
===
"
balloon
"
&&
circle
.
getType
()
===
"
balloon
"
&&
circle
.
requiredHits
-
circle
.
timesHit
<=
1
&&
circle
.
requiredHits
-
circle
.
timesHit
<=
1
){
){
...
@@ -91,40 +93,39 @@ class Keyboard{
...
@@ -91,40 +93,39 @@ class Keyboard{
}
else
{
}
else
{
assets
.
sounds
[
"
note_
"
+
sound
].
play
()
assets
.
sounds
[
"
note_
"
+
sound
].
play
()
}
}
var
ms
=
this
.
controller
.
getElapsedTime
().
ms
this
.
keyTime
[
sound
]
=
this
.
keyTime
[
keyCode
]
this
.
keyTime
[
keyCode
]
=
ms
this
.
keyTime
[
sound
]
=
ms
})
})
}
}
getKeys
(){
getKeys
(){
return
this
.
keys
return
this
.
keys
}
}
setKey
(
keyCode
,
down
){
setKey
(
keyCode
,
down
,
ms
){
if
(
down
){
if
(
down
){
this
.
keys
[
keyCode
]
=
true
this
.
keys
[
keyCode
]
=
true
this
.
keyTime
[
keyCode
]
=
ms
}
else
{
}
else
{
delete
this
.
keys
[
keyCode
]
this
.
keys
[
keyCode
]
=
false
delete
this
.
waitKeyupScore
[
keyCode
]
this
.
waitKeyupScore
[
keyCode
]
=
false
delete
this
.
waitKeyupSound
[
keyCode
]
this
.
waitKeyupSound
[
keyCode
]
=
false
delete
this
.
waitKeyupMenu
[
keyCode
]
this
.
waitKeyupMenu
[
keyCode
]
=
false
}
}
}
}
isWaiting
(
key
,
type
){
isWaiting
(
key
Code
,
type
){
if
(
type
===
"
score
"
){
if
(
type
===
"
score
"
){
return
this
.
waitKeyupScore
[
key
]
return
this
.
waitKeyupScore
[
key
Code
]
}
else
if
(
type
===
"
sound
"
){
}
else
if
(
type
===
"
sound
"
){
return
this
.
waitKeyupSound
[
key
]
return
this
.
waitKeyupSound
[
key
Code
]
}
else
if
(
type
===
"
menu
"
){
}
else
if
(
type
===
"
menu
"
){
return
this
.
waitKeyupMenu
[
key
]
return
this
.
waitKeyupMenu
[
key
Code
]
}
}
}
}
waitForKeyup
(
key
,
type
){
waitForKeyup
(
key
Code
,
type
){
if
(
type
===
"
score
"
){
if
(
type
===
"
score
"
){
this
.
waitKeyupScore
[
key
]
=
true
this
.
waitKeyupScore
[
key
Code
]
=
true
}
else
if
(
type
===
"
sound
"
){
}
else
if
(
type
===
"
sound
"
){
this
.
waitKeyupSound
[
key
]
=
true
this
.
waitKeyupSound
[
key
Code
]
=
true
}
else
if
(
type
===
"
menu
"
){
}
else
if
(
type
===
"
menu
"
){
this
.
waitKeyupMenu
[
key
]
=
true
this
.
waitKeyupMenu
[
key
Code
]
=
true
}
}
}
}
getKeyTime
(){
getKeyTime
(){
...
...
public/src/js/mekadon.js
View file @
8226123c
...
@@ -3,13 +3,11 @@ class Mekadon{
...
@@ -3,13 +3,11 @@ class Mekadon{
this
.
controller
=
controller
this
.
controller
=
controller
this
.
game
=
game
this
.
game
=
game
this
.
lr
=
false
this
.
lr
=
false
this
.
keys
=
{}
this
.
lastHit
=
-
Infinity
this
.
lastHit
=
-
Infinity
}
}
play
(
circle
){
play
(
circle
){
var
type
=
circle
.
getType
()
var
type
=
circle
.
getType
()
if
((
type
===
"
balloon
"
||
type
===
"
drumroll
"
||
type
===
"
daiDrumroll
"
)
&&
this
.
getMS
()
>
circle
.
getEndTime
()){
if
((
type
===
"
balloon
"
||
type
===
"
drumroll
"
||
type
===
"
daiDrumroll
"
)
&&
this
.
getMS
()
>
circle
.
getEndTime
()){
circle
.
updateStatus
(
-
1
)
circle
.
played
(
0
,
false
)
circle
.
played
(
0
,
false
)
this
.
game
.
updateCurrentCircle
()
this
.
game
.
updateCurrentCircle
()
}
}
...
@@ -48,21 +46,29 @@ class Mekadon{
...
@@ -48,21 +46,29 @@ class Mekadon{
var
type
=
circle
.
getType
()
var
type
=
circle
.
getType
()
var
keyDai
=
false
var
keyDai
=
false
var
playDai
=
!
dai
||
dai
===
2
var
playDai
=
!
dai
||
dai
===
2
var
drumrollNotes
=
type
===
"
balloon
"
||
type
===
"
drumroll
"
||
type
===
"
daiDrumroll
"
if
(
drumrollNotes
){
var
ms
=
this
.
getMS
()
}
else
{
var
ms
=
circle
.
getMS
()
}
if
(
type
==
"
daiDon
"
&&
playDai
){
if
(
type
==
"
daiDon
"
&&
playDai
){
this
.
setKey
(
kbd
[
"
don_l
"
])
this
.
setKey
(
kbd
[
"
don_l
"
]
,
ms
)
this
.
setKey
(
kbd
[
"
don_r
"
])
this
.
setKey
(
kbd
[
"
don_r
"
]
,
ms
)
this
.
lr
=
false
this
.
lr
=
false
keyDai
=
true
keyDai
=
true
}
else
if
(
type
==
"
don
"
||
type
==
"
daiDon
"
||
type
==
"
balloon
"
||
type
==
"
drumroll
"
||
type
==
"
daiDrumroll
"
){
}
else
if
(
type
==
"
don
"
||
type
==
"
daiDon
"
||
drumrollNotes
){
this
.
setKey
(
this
.
lr
?
kbd
[
"
don_l
"
]
:
kbd
[
"
don_r
"
])
this
.
setKey
(
this
.
lr
?
kbd
[
"
don_l
"
]
:
kbd
[
"
don_r
"
]
,
ms
)
this
.
lr
=
!
this
.
lr
this
.
lr
=
!
this
.
lr
}
else
if
(
type
==
"
daiKa
"
&&
playDai
){
}
else
if
(
type
==
"
daiKa
"
&&
playDai
){
this
.
setKey
(
kbd
[
"
ka_l
"
])
this
.
setKey
(
kbd
[
"
ka_l
"
]
,
ms
)
this
.
setKey
(
kbd
[
"
ka_r
"
])
this
.
setKey
(
kbd
[
"
ka_r
"
]
,
ms
)
this
.
lr
=
false
this
.
lr
=
false
keyDai
=
true
keyDai
=
true
}
else
if
(
type
==
"
ka
"
||
type
==
"
daiKa
"
){
}
else
if
(
type
==
"
ka
"
||
type
==
"
daiKa
"
){
this
.
setKey
(
this
.
lr
?
kbd
[
"
ka_l
"
]
:
kbd
[
"
ka_r
"
])
this
.
setKey
(
this
.
lr
?
kbd
[
"
ka_l
"
]
:
kbd
[
"
ka_r
"
]
,
ms
)
this
.
lr
=
!
this
.
lr
this
.
lr
=
!
this
.
lr
}
}
if
(
type
===
"
balloon
"
){
if
(
type
===
"
balloon
"
){
...
@@ -73,36 +79,20 @@ class Mekadon{
...
@@ -73,36 +79,20 @@ class Mekadon{
}
else
if
(
type
===
"
drumroll
"
||
type
===
"
daiDrumroll
"
){
}
else
if
(
type
===
"
drumroll
"
||
type
===
"
daiDrumroll
"
){
this
.
game
.
checkDrumroll
(
circle
)
this
.
game
.
checkDrumroll
(
circle
)
}
else
{
}
else
{
if
(
typeof
score
==
"
undefined
"
){
this
.
controller
.
displayScore
(
score
)
score
=
this
.
game
.
checkScore
(
circle
)
this
.
game
.
updateCombo
(
score
)
}
else
{
this
.
game
.
updateGlobalScore
(
score
,
keyDai
?
2
:
1
,
circle
.
gogoTime
)
this
.
controller
.
displayScore
(
score
)
this
.
game
.
updateCurrentCircle
()
this
.
game
.
updateCombo
(
score
)
this
.
game
.
updateGlobalScore
(
score
,
keyDai
?
2
:
1
,
circle
.
gogoTime
)
this
.
game
.
updateCurrentCircle
()
}
circle
.
updateStatus
(
score
)
circle
.
played
(
score
,
keyDai
)
circle
.
played
(
score
,
keyDai
)
}
}
this
.
lastHit
=
this
.
getMS
()
this
.
lastHit
=
ms
return
true
return
true
}
}
getMS
(){
getMS
(){
return
this
.
controller
.
getElapsedTime
().
ms
return
this
.
controller
.
getElapsedTime
().
ms
}
}
setKey
(
keyCode
){
setKey
(
keyCode
,
ms
){
var
self
=
this
if
(
this
.
keys
[
keyCode
]){
clearTimeout
(
this
.
keys
[
keyCode
])
self
.
clearKey
(
keyCode
)
}
this
.
controller
.
setKey
(
keyCode
,
true
)
this
.
keys
[
keyCode
]
=
setTimeout
(
function
(){
self
.
clearKey
(
keyCode
)
},
100
)
}
clearKey
(
keyCode
){
this
.
controller
.
setKey
(
keyCode
,
false
)
this
.
controller
.
setKey
(
keyCode
,
false
)
delete
this
.
keys
[
keyCode
]
this
.
controller
.
setKey
(
keyCode
,
true
,
ms
)
}
}
}
}
public/src/js/p2.js
View file @
8226123c
...
@@ -116,7 +116,14 @@ class P2Connection{
...
@@ -116,7 +116,14 @@ class P2Connection{
play
(
circle
,
mekadon
){
play
(
circle
,
mekadon
){
if
(
this
.
otherConnected
||
this
.
notes
.
length
>
0
){
if
(
this
.
otherConnected
||
this
.
notes
.
length
>
0
){
var
type
=
circle
.
getType
()
var
type
=
circle
.
getType
()
if
(
type
===
"
balloon
"
||
type
===
"
drumroll
"
||
type
===
"
daiDrumroll
"
){
var
drumrollNotes
=
type
===
"
balloon
"
||
type
===
"
drumroll
"
||
type
===
"
daiDrumroll
"
if
(
drumrollNotes
&&
mekadon
.
getMS
()
>
circle
.
getEndTime
()){
circle
.
played
(
-
1
,
false
)
mekadon
.
game
.
updateCurrentCircle
()
}
if
(
drumrollNotes
){
mekadon
.
playDrumrollAt
(
circle
,
0
,
this
.
drumrollPace
)
mekadon
.
playDrumrollAt
(
circle
,
0
,
this
.
drumrollPace
)
}
else
if
(
this
.
notes
.
length
===
0
){
}
else
if
(
this
.
notes
.
length
===
0
){
mekadon
.
play
(
circle
)
mekadon
.
play
(
circle
)
...
...
public/src/js/view.js
View file @
8226123c
...
@@ -420,8 +420,8 @@ class View{
...
@@ -420,8 +420,8 @@ class View{
var
startingTime
=
circle
.
getMS
()
-
timeForDistance
var
startingTime
=
circle
.
getMS
()
-
timeForDistance
var
finishTime
=
circle
.
getEndTime
()
+
this
.
posToMs
(
this
.
slotX
-
this
.
taikoSquareW
+
this
.
bigCircleSize
*
3
,
speed
)
var
finishTime
=
circle
.
getEndTime
()
+
this
.
posToMs
(
this
.
slotX
-
this
.
taikoSquareW
+
this
.
bigCircleSize
*
3
,
speed
)
if
(
!
circle
.
getPlayed
()
||
circle
.
getScore
()
===
0
){
if
(
circle
.
getPlayed
()
<=
0
||
circle
.
getScore
()
===
0
){
if
(
ms
>=
startingTime
&&
ms
<=
finishTime
){
if
(
ms
>=
startingTime
&&
ms
<=
finishTime
&&
circle
.
getPlayed
()
!==
-
1
){
this
.
drawCircle
(
circle
)
this
.
drawCircle
(
circle
)
}
}
}
else
if
(
!
circle
.
isAnimated
()){
}
else
if
(
!
circle
.
isAnimated
()){
...
...
public/src/views/titlescreen.html
View file @
8226123c
<div
id=
"title-screen"
>
<div
id=
"title-screen"
>
<img
class=
"logo-big"
src=
"/assets/img/logo-big.png"
alt=
"太鼓の達人ウェブ"
>
<img
class=
"logo-big"
src=
"/assets/img/logo-big.png"
alt=
"太鼓の達人ウェブ"
>
<div
class=
"click-to-continue stroke-sub"
alt=
"Click or Press Enter!"
>
Click or Press Enter!
</
h2
>
<div
class=
"click-to-continue stroke-sub"
alt=
"Click or Press Enter!"
>
Click or Press Enter!
</
div
>
</div>
</div>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment