Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
ButtonPusher
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Button Pusher
ButtonPusher
Commits
79dd6896
Commit
79dd6896
authored
Feb 27, 2018
by
16이상민
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed a problem where hold judgment is not correct in long motion note judgment
parent
c11facf8
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
106 additions
and
45 deletions
+106
-45
Judge.cs
Assets/JudgeModule/Judge.cs
+2
-1
JudgeManager.cs
Assets/JudgeModule/JudgeManager.cs
+3
-4
NoteCondition.cs
Assets/JudgeModule/NoteCondition.cs
+12
-5
NoteJudger.cs
Assets/JudgeModule/NoteJudger.cs
+18
-3
NoteManager.cs
Assets/JudgeModule/NoteManager.cs
+7
-1
InGame.unity
Assets/Scene/InGame.unity
+12
-0
Controller.cs
Assets/Script/Controller.cs
+5
-5
GameManager.cs
Assets/Script/GameManager.cs
+1
-1
JudgeTextManager.cs
Assets/Script/JudgeTextManager.cs
+41
-20
NoteConditionTests.cs
Assets/Script/Tests/NoteConditionTests.cs
+5
-5
No files found.
Assets/JudgeModule/Judge.cs
View file @
79dd6896
...
...
@@ -78,7 +78,8 @@ namespace JudgeModule
public
static
bool
IsNoteEnd
(
Note
note
,
float
elapsedTime
)
{
return
Mathf
.
Abs
(
elapsedTime
-
note
.
EndTiming
)
<=
BAD
.
TimingRange
(
note
);
return
elapsedTime
-
note
.
EndTiming
<=
BAD
.
TimingRange
(
note
)
&&
elapsedTime
-
note
.
EndTiming
>=
0
;
}
public
static
bool
IsNoteProgress
(
Note
note
,
float
elapsedTime
,
float
interval
)
...
...
Assets/JudgeModule/JudgeManager.cs
View file @
79dd6896
...
...
@@ -7,7 +7,6 @@ namespace JudgeModule
public
class
JudgeManager
{
private
NoteCondition
condition
;
private
List
<
Note
>
notes
;
private
NoteJudger
judger
;
private
float
interval
;
...
...
@@ -30,7 +29,7 @@ namespace JudgeModule
public
void
JudgeNote
(
Note
note
,
float
timing
)
{
if
(
Judge
.
IsPastNote
(
note
,
timing
)
||
if
(
Judge
.
IsPastNote
(
note
,
timing
)
||
note
.
Component
.
transform
.
position
.
x
>
appear
.
transform
.
position
.
x
)
return
;
...
...
@@ -57,13 +56,13 @@ namespace JudgeModule
void
JudgeLongNote
(
Note
note
,
float
timing
)
{
if
(
condition
.
IsLongNoteStartCorrectly
(
note
))
if
(
condition
.
IsLongNoteStartCorrectly
(
note
,
timing
))
judger
.
EnteredNoteProc
(
note
,
timing
);
else
if
(
condition
.
IsLongNoteFinishCorrectly
(
note
,
timing
))
judger
.
CorrectlyStoppedNoteProc
(
note
,
timing
);
else
if
(
condition
.
IsLongNoteFinishIncorrectly
(
note
,
timing
))
judger
.
IncorrectlyStoppedNoteProc
(
note
);
else
if
(
condition
.
IsLongNoteHoldCorrectly
(
note
))
else
if
(
condition
.
IsLongNoteHoldCorrectly
(
note
,
timing
))
judger
.
ContinuingNoteProc
(
note
,
timing
,
interval
);
}
...
...
Assets/JudgeModule/NoteCondition.cs
View file @
79dd6896
using
StatusConvert
;
using
System.Collections.Generic
;
using
UnityEngine
;
namespace
JudgeModule
{
...
...
@@ -46,29 +47,35 @@ namespace JudgeModule
return
JudgeInput
(
note
)[
"short"
]
==
InputStatus
.
Entered
;
}
public
bool
IsLongNoteStartCorrectly
(
Note
note
)
public
bool
IsLongNoteStartCorrectly
(
Note
note
,
float
timing
)
{
var
stat
=
JudgeInput
(
note
);
return
(
stat
[
"long"
]
==
InputStatus
.
Entered
||
stat
[
"long"
]
==
InputStatus
.
Continuing
)
&&
!
note
.
Activated
;
!
note
.
Activated
&&
!
Judge
.
IsNoteEnd
(
note
,
timing
);
}
public
bool
IsLongNoteHoldCorrectly
(
Note
note
)
public
bool
IsLongNoteHoldCorrectly
(
Note
note
,
float
timing
)
{
var
stat
=
JudgeInput
(
note
);
return
(
stat
[
"long"
]
==
InputStatus
.
Entered
||
stat
[
"long"
]
==
InputStatus
.
Continuing
)
&&
note
.
Activated
;
note
.
Activated
&&
!
Judge
.
IsNoteEnd
(
note
,
timing
);
}
public
bool
IsLongNoteFinishCorrectly
(
Note
note
,
float
timing
)
{
return
JudgeInput
(
note
)[
"long"
]
==
InputStatus
.
Stopped
&&
var
stat
=
JudgeInput
(
note
);
return
(
stat
[
"long"
]
==
InputStatus
.
Stopped
||
stat
[
"long"
]
==
InputStatus
.
Continuing
)
&&
note
.
Activated
&&
Judge
.
IsNoteEnd
(
note
,
timing
);
}
...
...
Assets/JudgeModule/NoteJudger.cs
View file @
79dd6896
...
...
@@ -10,12 +10,15 @@ namespace JudgeModule
private
Transform
deactives
;
private
Action
EndGame
;
private
GameObject
judgeText
;
private
JudgeTextManager
judgetextmanager
;
public
NoteJudger
(
Dictionary
<
string
,
GameObject
>
obj
,
Action
endgame
)
{
deactives
=
obj
[
"deactives"
].
transform
;
judgeText
=
obj
[
"judgetext"
];
EndGame
=
endgame
;
judgetextmanager
=
judgeText
.
GetComponent
<
JudgeTextManager
>();
}
public
void
WrongNoteProc
(
Note
note
)
...
...
@@ -32,18 +35,26 @@ namespace JudgeModule
var
judge
=
Judge
.
TestJudge
(
note
,
timing
);
SetJudge
(
judge
,
judgeText
);
judgetextmanager
.
Register
(
note
);
Debug
.
Log
(
"Entered: "
+
timing
+
", Judge: "
+
judge
.
Name
);
if
(
note
.
IsLong
&&
!
judge
.
IsBreak
)
note
.
Activated
=
true
;
else
note
.
Component
.
Deactivate
(
deactives
.
transform
);
{
note
.
Component
.
Deactivate
(
deactives
.
transform
,
!
note
.
IsLong
);
judgetextmanager
.
UnRegister
();
}
}
public
void
ContinuingNoteProc
(
Note
note
,
float
timing
,
float
interval
)
{
if
(
Judge
.
IsNoteProgress
(
note
,
timing
,
interval
))
{
Debug
.
Log
(
"Continuing: "
+
timing
);
SetJudge
(
Judge
.
Perfect
,
judgeText
);
judgetextmanager
.
Register
(
note
);
++
note
.
JudgeCount
;
}
}
...
...
@@ -51,13 +62,17 @@ namespace JudgeModule
public
void
CorrectlyStoppedNoteProc
(
Note
note
,
float
timing
)
{
SetJudge
(
Judge
.
TestJudge
(
note
,
timing
,
true
),
judgeText
);
judgetextmanager
.
Register
(
note
);
note
.
Component
.
Deactivate
(
deactives
.
transform
);
judgetextmanager
.
UnRegister
();
}
public
void
IncorrectlyStoppedNoteProc
(
Note
note
)
{
SetJudge
(
Judge
.
MISS
,
judgeText
);
note
.
Component
.
Deactivate
(
deactives
.
transform
);
judgetextmanager
.
Register
(
note
);
note
.
Component
.
Deactivate
(
deactives
.
transform
,
false
);
judgetextmanager
.
UnRegister
();
}
public
static
void
SetJudge
(
Judge
judge
,
GameObject
judgeText
)
...
...
@@ -71,7 +86,7 @@ namespace JudgeModule
judgeText
.
GetComponent
<
Text
>().
text
=
judge
.
Name
;
judgeText
.
GetComponent
<
Text
>().
color
=
judge
.
Color
;
Debug
.
Log
(
"SetJudge: "
+
AllSceneManager
.
TotalJudge
);
Debug
.
Log
(
"SetJudge: "
+
AllSceneManager
.
TotalJudge
+
"("
+
judge
.
Name
+
")"
);
}
}
}
\ No newline at end of file
Assets/JudgeModule/NoteManager.cs
View file @
79dd6896
...
...
@@ -13,6 +13,8 @@ namespace JudgeModule
appear
,
disappear
,
judgetext
;
private
JudgeTextManager
judgetextmanager
;
private
Vector3
initialPos
;
private
float
BPM
;
...
...
@@ -101,6 +103,8 @@ namespace JudgeModule
disappear
=
gameObjects
[
"disappear"
];
judgetext
=
gameObjects
[
"judgetext"
];
judgetextmanager
=
judgetext
.
GetComponent
<
JudgeTextManager
>();
initialPos
=
offset
.
transform
.
position
;
BPM
=
bpm
;
GetLastNote
=
getlastnote
;
...
...
@@ -147,10 +151,12 @@ namespace JudgeModule
var
controllers
=
enables
[
name
].
ToArray
();
foreach
(
var
c
in
controllers
)
if
(!
c
.
Instance
.
Activated
&&
!
judgetextmanager
.
IsRegistered
(
c
.
Instance
)
&&
initialPos
.
x
-
c
.
StartPosition
()
>
Judge
.
BAD
.
TimingRange
(
c
.
Instance
))
{
NoteJudger
.
SetJudge
(
Judge
.
MISS
,
judgetext
);
c
.
Deactivate
(
deactives
.
transform
);
judgetextmanager
.
Register
(
c
.
Instance
);
c
.
Deactivate
(
deactives
.
transform
,
!
c
.
Instance
.
IsLong
);
}
}
}
...
...
Assets/Scene/InGame.unity
View file @
79dd6896
...
...
@@ -2134,6 +2134,7 @@ GameObject:
-
component
:
{
fileID
:
1152155867
}
-
component
:
{
fileID
:
1152155869
}
-
component
:
{
fileID
:
1152155868
}
-
component
:
{
fileID
:
1152155870
}
m_Layer
:
5
m_Name
:
Judge
m_TagString
:
Untagged
...
...
@@ -2198,6 +2199,17 @@ CanvasRenderer:
m_PrefabParentObject
:
{
fileID
:
0
}
m_PrefabInternal
:
{
fileID
:
0
}
m_GameObject
:
{
fileID
:
1152155866
}
---
!u!114
&1152155870
MonoBehaviour
:
m_ObjectHideFlags
:
0
m_PrefabParentObject
:
{
fileID
:
0
}
m_PrefabInternal
:
{
fileID
:
0
}
m_GameObject
:
{
fileID
:
1152155866
}
m_Enabled
:
1
m_EditorHideFlags
:
0
m_Script
:
{
fileID
:
11500000
,
guid
:
aa358e5c99472914fa28fbbc482a704b
,
type
:
3
}
m_Name
:
m_EditorClassIdentifier
:
---
!u!4
&1165916158
Transform
:
m_ObjectHideFlags
:
0
...
...
Assets/Script/Controller.cs
View file @
79dd6896
...
...
@@ -13,7 +13,7 @@ public class Controller : MonoBehaviour
private
readonly
float
minAlpha
=
0.3f
;
private
readonly
float
maxAlpha
=
0.7f
;
public
void
Deactivate
(
Transform
deactives
)
public
void
Deactivate
(
Transform
deactives
,
bool
isCorrectlyFinish
=
true
)
{
Instance
.
Activated
=
false
;
...
...
@@ -25,15 +25,15 @@ public class Controller : MonoBehaviour
}
transform
.
SetParent
(
deactives
);
disables
.
Add
(
this
);
enables
.
Remove
(
this
);
disables
.
Add
(
enables
[
0
]
);
enables
.
Remove
At
(
0
);
AllSceneManager
.
JudgeCount
[
Judge
.
MISS
]
+=
(
Instance
.
TotalCount
-
Instance
.
JudgeCount
);
if
(
Instance
.
IsLong
)
if
(
Instance
.
IsLong
&&
!
isCorrectlyFinish
)
++
AllSceneManager
.
JudgeCount
[
Judge
.
MISS
];
Debug
.
Log
(
"Deactivate: "
+
AllSceneManager
.
TotalJudge
);
//
Debug.Log("Deactivate: " + AllSceneManager.TotalJudge);
}
public
float
EndPosition
(
float
ScrollSpeed
)
...
...
Assets/Script/GameManager.cs
View file @
79dd6896
...
...
@@ -16,7 +16,7 @@ public class GameManager : MonoBehaviour {
instance
=
new
GameObject
().
AddComponent
<
GameManager
>();
instance
.
CurrentTrack
=
new
TrackInfo
(
"Assets/Tracks/Tutorial/temp.bpe"
);
=
new
TrackInfo
(
"Assets/Tracks/Tutorial/temp
2
.bpe"
);
}
return
instance
;
...
...
Assets/Script/JudgeTextManager.cs
View file @
79dd6896
...
...
@@ -3,24 +3,45 @@ using UnityEngine.UI;
public
class
JudgeTextManager
:
MonoBehaviour
{
private
float
start
;
private
Text
text
;
private
void
Start
()
{
text
=
gameObject
.
GetComponent
<
Text
>();
}
private
void
OnEnable
()
{
start
=
Time
.
time
;
Debug
.
Log
(
"Judge: "
+
text
.
text
+
"("
+
start
*
1000
+
"ms)"
);
}
// Update is called once per frame
private
void
Update
()
{
if
(
Time
.
time
-
start
>
0.5
)
gameObject
.
SetActive
(
false
);
}
private
float
start
;
private
Text
text
;
private
NoteType
type
;
private
float
startTiming
,
endTiming
;
private
void
Start
()
{
text
=
gameObject
.
GetComponent
<
Text
>();
}
private
void
OnEnable
()
{
start
=
Time
.
time
;
}
// Update is called once per frame
private
void
Update
()
{
if
(
Time
.
time
-
start
>
0.5
)
gameObject
.
SetActive
(
false
);
}
public
void
Register
(
Note
note
)
{
type
=
note
.
Type
;
startTiming
=
note
.
StartTiming
;
endTiming
=
note
.
EndTiming
;
}
public
bool
IsRegistered
(
Note
note
)
{
return
type
==
note
.
Type
&&
startTiming
==
note
.
StartTiming
&&
endTiming
==
note
.
EndTiming
;
}
public
void
UnRegister
()
{
type
=
NoteType
.
BeatLine
;
}
}
Assets/Script/Tests/NoteConditionTests.cs
View file @
79dd6896
...
...
@@ -103,7 +103,7 @@ class NoteConditionTests
input
.
IsButtonDown
=
true
;
var
expected
=
true
;
var
actual
=
condition
.
IsLongNoteStartCorrectly
(
note
);
var
actual
=
condition
.
IsLongNoteStartCorrectly
(
note
,
0
);
Assert
.
AreEqual
(
expected
,
actual
,
"condition should be long note start correctly when button note and short button input entered"
);
}
...
...
@@ -128,7 +128,7 @@ class NoteConditionTests
input
.
CurrentMotionState
=
MotionState
.
JESUS
;
var
expected
=
true
;
var
actual
=
condition
.
IsLongNoteStartCorrectly
(
note
);
var
actual
=
condition
.
IsLongNoteStartCorrectly
(
note
,
0
);
Assert
.
AreEqual
(
expected
,
actual
,
"condition should be long note start correctly when motion note and long motion input entered"
);
}
...
...
@@ -154,7 +154,7 @@ class NoteConditionTests
input
.
IsButtonDown
=
true
;
var
expected
=
true
;
var
actual
=
condition
.
IsLongNoteHoldCorrectly
(
note
);
var
actual
=
condition
.
IsLongNoteHoldCorrectly
(
note
,
0
);
Assert
.
AreEqual
(
expected
,
actual
,
"condition should be long note hold correctly when button note and short button input holding"
);
}
...
...
@@ -180,7 +180,7 @@ class NoteConditionTests
input
.
CurrentMotionState
=
MotionState
.
JESUS
;
var
expected
=
true
;
var
actual
=
condition
.
IsLongNoteHoldCorrectly
(
note
);
var
actual
=
condition
.
IsLongNoteHoldCorrectly
(
note
,
0
);
Assert
.
AreEqual
(
expected
,
actual
,
"condition should be long note hold correctly when motion note and long motion input holding"
);
}
...
...
@@ -232,7 +232,7 @@ class NoteConditionTests
input
.
CurrentMotionState
=
MotionState
.
JESUS
;
var
expected
=
true
;
var
actual
=
condition
.
IsLongNoteHoldCorrectly
(
note
);
var
actual
=
condition
.
IsLongNoteHoldCorrectly
(
note
,
0
);
Assert
.
AreEqual
(
expected
,
actual
,
"condition should be long note hold correctly when short motion note and long motion input holding"
);
}
...
...
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