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
79d8170b
Commit
79d8170b
authored
Feb 09, 2018
by
16이상민
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Working..
parent
7473ef61
Changes
20
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
240 additions
and
179 deletions
+240
-179
JudgeModule.meta
Assets/JudgeModule.meta
+10
-0
MotionGageManager.cs
Assets/JudgeModule/MotionGageManager.cs
+44
-0
MotionGageManager.cs.meta
Assets/JudgeModule/MotionGageManager.cs.meta
+13
-0
NoteCondition.cs
Assets/JudgeModule/NoteCondition.cs
+97
-0
NoteCondition.cs.meta
Assets/JudgeModule/NoteCondition.cs.meta
+13
-0
Clap.cs
Assets/MotionNotes/Clap.cs
+0
-2
Guard.cs
Assets/MotionNotes/Guard.cs
+0
-2
HandDown.cs
Assets/MotionNotes/HandDown.cs
+1
-3
HandUp.cs
Assets/MotionNotes/HandUp.cs
+1
-3
Headphone.cs
Assets/MotionNotes/Headphone.cs
+1
-3
Jesus.cs
Assets/MotionNotes/Jesus.cs
+1
-3
Jump.cs
Assets/MotionNotes/Jump.cs
+0
-2
OnTheTable.cs
Assets/MotionNotes/OnTheTable.cs
+1
-3
PushUp.cs
Assets/MotionNotes/PushUp.cs
+0
-2
Judge.cs
Assets/Script/Judge.cs
+6
-0
JudgeManager.cs
Assets/Script/JudgeManager.cs
+32
-145
ButtonNoteMaker.cs
Assets/TrackAnalysis/ButtonNoteMaker.cs
+3
-2
MotionNoteMaker.cs
Assets/TrackAnalysis/MotionNoteMaker.cs
+4
-4
NoteMakerBase.cs
Assets/TrackAnalysis/NoteMakerBase.cs
+3
-2
NoteSignGenerator.cs
Assets/TrackAnalysis/NoteSignGenerator.cs
+10
-3
No files found.
Assets/JudgeModule.meta
0 → 100644
View file @
79d8170b
fileFormatVersion: 2
guid: b8f0efef942ecaa4caff7cc221a81b9a
folderAsset: yes
timeCreated: 1518174436
licenseType: Free
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
Assets/JudgeModule/MotionGageManager.cs
0 → 100644
View file @
79d8170b
using
UnityEngine
;
using
UnityEngine.UI
;
namespace
JudgeModule
{
class
MotionGageManager
{
public
GameObject
motionGuage
;
private
float
elapsedMotion
;
private
float
motionTimeout
;
private
float
elapsedTime
=
0
;
public
void
ResetGuage
(
float
timeout
=
0f
)
{
if
(
timeout
<=
0f
)
{
elapsedMotion
=
0f
;
motionGuage
.
transform
.
parent
.
gameObject
.
SetActive
(
false
);
return
;
}
motionTimeout
=
timeout
;
motionGuage
.
transform
.
parent
.
gameObject
.
SetActive
(
true
);
motionGuage
.
SetActive
(
true
);
}
public
void
UpdateGuage
()
{
if
(
motionGuage
.
transform
.
parent
.
gameObject
.
activeInHierarchy
)
UpdateTime
();
if
(
elapsedMotion
>=
motionTimeout
)
ResetGuage
();
else
motionGuage
.
GetComponent
<
Image
>().
fillAmount
=
elapsedMotion
/
motionTimeout
;
}
public
float
UpdateTime
()
{
elapsedTime
+=
(
Time
.
deltaTime
*
1000
);
return
elapsedTime
;
}
}
}
Assets/JudgeModule/MotionGageManager.cs.meta
0 → 100644
View file @
79d8170b
fileFormatVersion: 2
guid: e8c5bce833e52b54c87644b6993c484c
timeCreated: 1518174436
licenseType: Free
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
Assets/JudgeModule/NoteCondition.cs
0 → 100644
View file @
79d8170b
using
StatusConvert
;
using
System.Collections.Generic
;
namespace
JudgeModule
{
public
class
NoteCondition
{
private
InputManager
manager
;
public
NoteCondition
(
InputManager
inputManager
)
{
manager
=
inputManager
;
}
public
Dictionary
<
string
,
InputStatus
>
WrongInput
(
Note
note
)
{
if
(
note
is
MotionNote
)
return
new
Dictionary
<
string
,
InputStatus
>
{
{
"short"
,
manager
.
ShortButtonStat
},
{
"long"
,
manager
.
LongButtonStat
}
};
return
new
Dictionary
<
string
,
InputStatus
>
{
{
"short"
,
manager
.
ShortMotionStat
},
{
"long"
,
manager
.
LongMotionStat
}
};
}
public
Dictionary
<
string
,
InputStatus
>
JudgeInput
(
Note
note
)
{
if
(
note
is
MotionNote
)
return
new
Dictionary
<
string
,
InputStatus
>
{
{
"short"
,
manager
.
MotionToInput
((
note
as
MotionNote
).
MotionName
,
"short"
)
},
{
"long"
,
manager
.
MotionToInput
((
note
as
MotionNote
).
MotionName
,
"long"
)
}
};
return
new
Dictionary
<
string
,
InputStatus
>
{
{
"short"
,
manager
.
ShortButtonStat
},
{
"long"
,
manager
.
LongButtonStat
}
};
}
public
bool
IsShortNoteEntered
(
Note
note
)
{
return
JudgeInput
(
note
)[
"short"
]
==
InputStatus
.
Entered
;
}
public
bool
IsLongNoteStartCorrectly
(
Note
note
)
{
return
JudgeInput
(
note
)[
"long"
]
==
InputStatus
.
Entered
&&
!
note
.
Activated
;
}
public
bool
IsLongNoteHoldCorrectly
(
Note
note
)
{
var
stat
=
JudgeInput
(
note
);
return
(
stat
[
"long"
]
==
InputStatus
.
Entered
||
stat
[
"long"
]
==
InputStatus
.
Continuing
)
&&
note
.
Activated
;
}
public
bool
IsLongNoteFinishCorrectly
(
Note
note
,
float
timing
)
{
return
JudgeInput
(
note
)[
"long"
]
==
InputStatus
.
Stopped
&&
note
.
Activated
&&
Judge
.
IsNoteEnd
(
note
,
timing
);
}
public
bool
IsLongNoteFinishIncorrectly
(
Note
note
,
float
timing
)
{
var
stat
=
JudgeInput
(
note
);
return
stat
[
"long"
]
==
InputStatus
.
Stopped
&&
(
!
note
.
Activated
||
!
Judge
.
IsNoteEnd
(
note
,
timing
)
);
}
public
bool
IsWrongInput
(
Note
note
)
{
var
stat
=
WrongInput
(
note
);
return
stat
[
"short"
]
==
InputStatus
.
Entered
||
stat
[
"long"
]
==
InputStatus
.
Entered
||
stat
[
"long"
]
==
InputStatus
.
Continuing
;
}
public
bool
IsNoteBroken
(
Note
note
,
float
timing
,
Judge
judge
)
{
return
note
.
IsLong
&&
!
Judge
.
IsNoteEnd
(
note
,
timing
)
&&
(
judge
==
Judge
.
BAD
||
judge
==
Judge
.
MISS
);
}
}
}
\ No newline at end of file
Assets/JudgeModule/NoteCondition.cs.meta
0 → 100644
View file @
79d8170b
fileFormatVersion: 2
guid: 7a1cd9d6ab06da646b5a4d1ad104a036
timeCreated: 1518174436
licenseType: Free
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
Assets/MotionNotes/Clap.cs
View file @
79d8170b
using
System
;
using
System.Collections
;
using
UnityEngine
;
public
class
Clap
:
MotionNote
...
...
Assets/MotionNotes/Guard.cs
View file @
79d8170b
using
System
;
using
System.Collections
;
using
UnityEngine
;
public
class
Guard
:
MotionNote
...
...
Assets/MotionNotes/HandDown.cs
View file @
79d8170b
using
System
;
using
System.Collections
;
using
UnityEngine
;
using
UnityEngine
;
public
class
HandDown
:
MotionNote
{
...
...
Assets/MotionNotes/HandUp.cs
View file @
79d8170b
using
System
;
using
System.Collections
;
using
UnityEngine
;
using
UnityEngine
;
public
class
HandUp
:
MotionNote
{
...
...
Assets/MotionNotes/Headphone.cs
View file @
79d8170b
using
System
;
using
System.Collections
;
using
UnityEngine
;
using
UnityEngine
;
public
class
Headphone
:
MotionNote
{
...
...
Assets/MotionNotes/Jesus.cs
View file @
79d8170b
using
System
;
using
System.Collections
;
using
UnityEngine
;
using
UnityEngine
;
public
class
Jesus
:
MotionNote
{
...
...
Assets/MotionNotes/Jump.cs
View file @
79d8170b
using
System
;
using
System.Collections
;
using
UnityEngine
;
public
class
Jump
:
MotionNote
...
...
Assets/MotionNotes/OnTheTable.cs
View file @
79d8170b
using
System
;
using
System.Collections
;
using
UnityEngine
;
using
UnityEngine
;
public
class
OnTheTable
:
MotionNote
{
...
...
Assets/MotionNotes/PushUp.cs
View file @
79d8170b
using
System
;
using
System.Collections
;
using
UnityEngine
;
public
class
PushUp
:
MotionNote
...
...
Assets/Script/Judge.cs
View file @
79d8170b
...
...
@@ -57,6 +57,12 @@ public class Judge
return
elapsedTime
-
timing
>
BadTime
;
}
public
static
bool
IsNoteStart
(
Note
note
,
float
elapsedTime
)
{
return
note
is
MotionNote
&&
!
note
.
Activated
;
}
public
static
bool
IsNoteEnd
(
Note
note
,
float
elapsedTime
)
{
return
elapsedTime
-
note
.
EndTiming
<=
BadTime
;
...
...
Assets/Script/JudgeManager.cs
View file @
79d8170b
using
StatusConvert
;
using
JudgeModule
;
using
System.Collections.Generic
;
using
System.Linq
;
using
UnityEngine
;
...
...
@@ -41,6 +41,7 @@ public class JudgeManager : MonoBehaviour
private
InputManager
input
;
private
NoteCondition
condition
;
private
List
<
Note
>
notes
;
void
SetObjectRef
()
{
...
...
@@ -66,9 +67,9 @@ public class JudgeManager : MonoBehaviour
void
LoadGameObjects
()
{
motionSampleDisplayPrefab
=
Resources
.
Load
(
"Motion Sample Display"
)
as
GameObject
;
GameManager
.
Instance
.
CurrentTrack
.
Notes
.
ForEach
(
LoadNote
);
//if (GameManager.Instance.defaultSound != null)
// Instantiate(GameManager.Instance.defaultSound);
notes
=
GameManager
.
Instance
.
CurrentTrack
.
Notes
.
ToList
(
);
notes
.
ForEach
(
LoadNote
);
var
sounds
=
GameObject
.
Find
(
"Sounds"
);
sounds
.
transform
.
Cast
<
Transform
>()
.
ToList
()
...
...
@@ -115,6 +116,15 @@ public class JudgeManager : MonoBehaviour
if
(
note
==
null
)
return
;
if
(
condition
.
IsWrongInput
(
note
))
{
WrongNoteProc
(
note
);
return
;
}
if
(
Judge
.
IsNoteStart
(
note
,
timing
))
PlaySampleMotion
(
note
as
MotionNote
);
if
(
note
.
IsLong
)
JudgeLongNote
(
note
,
timing
);
else
...
...
@@ -136,25 +146,31 @@ public class JudgeManager : MonoBehaviour
return
null
;
}
void
PlaySampleMotion
(
MotionNote
note
)
{
GameObject
motionSample
=
Instantiate
(
motionSampleDisplayPrefab
);
MotionSampleDisplay
msd
=
motionSample
.
GetComponent
<
MotionSampleDisplay
>();
msd
.
sprite
=
note
.
Image
;
msd
.
timeout
=
MsPerBeat
;
note
.
Activated
=
true
;
note
.
MotionSampleDisplay
=
msd
;
}
void
JudgeShortNote
(
Note
note
,
float
timing
)
{
if
(
condition
.
IsWrongInput
(
note
))
WrongNoteProc
(
note
);
else
if
(
condition
.
IsShortNoteEntered
(
note
))
if
(
condition
.
IsShortNoteEntered
(
note
))
EnteredNoteProc
(
note
,
timing
);
}
void
JudgeLongNote
(
Note
note
,
float
timing
)
{
if
(
condition
.
IsWrongInput
(
note
))
WrongNoteProc
(
note
);
else
if
(
condition
.
IsLongNoteStartCorrectly
(
note
))
if
(
condition
.
IsLongNoteStartCorrectly
(
note
))
EnteredNoteProc
(
note
,
timing
);
else
if
(
condition
.
IsLongNoteHoldCorrectly
(
note
))
if
(
condition
.
IsLongNoteHoldCorrectly
(
note
))
ContinuingNoteProc
(
note
,
timing
);
else
if
(
condition
.
IsLongNoteFinishCorrectly
(
note
,
timing
))
if
(
condition
.
IsLongNoteFinishCorrectly
(
note
,
timing
))
CorrectlyStoppedNoteProc
(
note
,
timing
);
else
if
(
condition
.
IsLongNoteFinishIncorrectly
(
note
,
timing
))
if
(
condition
.
IsLongNoteFinishIncorrectly
(
note
,
timing
))
IncorrectlyStoppedNoteProc
(
note
,
timing
);
}
...
...
@@ -174,7 +190,9 @@ public class JudgeManager : MonoBehaviour
{
SetJudge
(
Judge
.
TestJudge
(
note
,
timing
));
if
(!
note
.
IsLong
)
if
(
note
.
IsLong
)
note
.
Activated
=
true
;
else
DeactivateNote
(
note
);
}
...
...
@@ -274,135 +292,4 @@ public class JudgeManager : MonoBehaviour
onResult
=
true
;
}
}
private
class
NoteCondition
{
private
InputManager
manager
;
public
NoteCondition
(
InputManager
inputManager
)
{
manager
=
inputManager
;
}
public
Dictionary
<
string
,
InputStatus
>
WrongInput
(
Note
note
)
{
if
(
note
is
MotionNote
)
return
new
Dictionary
<
string
,
InputStatus
>
{
{
"short"
,
manager
.
ShortButtonStat
},
{
"long"
,
manager
.
LongButtonStat
}
};
return
new
Dictionary
<
string
,
InputStatus
>
{
{
"short"
,
manager
.
ShortMotionStat
},
{
"long"
,
manager
.
LongMotionStat
}
};
}
public
Dictionary
<
string
,
InputStatus
>
JudgeInput
(
Note
note
)
{
if
(
note
is
MotionNote
)
return
new
Dictionary
<
string
,
InputStatus
>
{
{
"short"
,
manager
.
MotionToInput
((
note
as
MotionNote
).
MotionName
,
"short"
)
},
{
"long"
,
manager
.
MotionToInput
((
note
as
MotionNote
).
MotionName
,
"long"
)
}
};
return
new
Dictionary
<
string
,
InputStatus
>
{
{
"short"
,
manager
.
ShortButtonStat
},
{
"long"
,
manager
.
LongButtonStat
}
};
}
public
bool
IsShortNoteEntered
(
Note
note
)
{
return
JudgeInput
(
note
)[
"short"
]
==
InputStatus
.
Entered
;
}
public
bool
IsLongNoteStartCorrectly
(
Note
note
)
{
return
JudgeInput
(
note
)[
"long"
]
==
InputStatus
.
Entered
&&
!
note
.
Activated
;
}
public
bool
IsLongNoteHoldCorrectly
(
Note
note
)
{
var
stat
=
JudgeInput
(
note
);
return
(
stat
[
"long"
]
==
InputStatus
.
Entered
||
stat
[
"long"
]
==
InputStatus
.
Continuing
)
&&
note
.
Activated
;
}
public
bool
IsLongNoteFinishCorrectly
(
Note
note
,
float
timing
)
{
return
JudgeInput
(
note
)[
"long"
]
==
InputStatus
.
Stopped
&&
note
.
Activated
&&
Judge
.
IsNoteEnd
(
note
,
timing
);
}
public
bool
IsLongNoteFinishIncorrectly
(
Note
note
,
float
timing
)
{
var
stat
=
JudgeInput
(
note
);
return
stat
[
"long"
]
==
InputStatus
.
Stopped
&&
(
!
note
.
Activated
||
!
Judge
.
IsNoteEnd
(
note
,
timing
)
);
}
public
bool
IsWrongInput
(
Note
note
)
{
var
stat
=
WrongInput
(
note
);
return
stat
[
"short"
]
==
InputStatus
.
Entered
||
stat
[
"long"
]
==
InputStatus
.
Entered
||
stat
[
"long"
]
==
InputStatus
.
Continuing
;
}
public
bool
IsNoteBroken
(
Note
note
,
float
timing
,
Judge
judge
)
{
return
note
.
IsLong
&&
!
Judge
.
IsNoteEnd
(
note
,
timing
)
&&
(
judge
==
Judge
.
BAD
||
judge
==
Judge
.
MISS
);
}
}
}
class
MotionGageManager
{
public
GameObject
motionGuage
;
private
float
elapsedMotion
;
private
float
motionTimeout
;
private
float
elapsedTime
=
0
;
public
void
ResetGuage
(
float
timeout
=
0f
)
{
if
(
timeout
<=
0f
)
{
elapsedMotion
=
0f
;
motionGuage
.
transform
.
parent
.
gameObject
.
SetActive
(
false
);
return
;
}
motionTimeout
=
timeout
;
motionGuage
.
transform
.
parent
.
gameObject
.
SetActive
(
true
);
motionGuage
.
SetActive
(
true
);
}
public
void
UpdateGuage
()
{
if
(
motionGuage
.
transform
.
parent
.
gameObject
.
activeInHierarchy
)
UpdateTime
();
if
(
elapsedMotion
>=
motionTimeout
)
ResetGuage
();
else
motionGuage
.
GetComponent
<
Image
>().
fillAmount
=
elapsedMotion
/
motionTimeout
;
}
public
float
UpdateTime
()
{
elapsedTime
+=
(
Time
.
deltaTime
*
1000
);
return
elapsedTime
;
}
}
\ No newline at end of file
Assets/TrackAnalysis/ButtonNoteMaker.cs
View file @
79d8170b
...
...
@@ -5,7 +5,8 @@
override
protected
bool
NotValidType
(
string
type
)
string
type
,
string
code
)
{
return
type
.
Substring
(
1
)
!=
"BT"
;
}
...
...
@@ -17,7 +18,7 @@
string
type
,
float
timing
)
{
return
new
Note
(
code
,
type
,
timing
);
return
new
Note
(
code
,
type
,
timing
,
0
);
}
override
protected
...
...
Assets/TrackAnalysis/MotionNoteMaker.cs
View file @
79d8170b
...
...
@@ -7,11 +7,11 @@ namespace TrackAnalysis
override
protected
bool
NotValidType
(
string
type
)
string
type
,
string
code
)
{
Type
motionType
;
return
type
.
Substring
(
1
)
!=
"MO"
||
!
MotionNote
.
keymap
.
TryGetValue
(
type
,
out
motionTyp
e
);
!
MotionNote
.
keymap
.
ContainsKey
(
cod
e
);
}
override
protected
...
...
@@ -22,7 +22,7 @@ namespace TrackAnalysis
float
timing
)
{
return
(
MotionNote
)
Activator
.
CreateInstance
(
MotionNote
.
keymap
[
type
],
code
,
timing
);
(
MotionNote
.
keymap
[
code
],
code
,
timing
,
0
);
}
override
protected
...
...
Assets/TrackAnalysis/NoteMakerBase.cs
View file @
79d8170b
...
...
@@ -11,7 +11,7 @@
string
type
,
float
timing
)
{
if
(
NotValidType
(
type
))
if
(
NotValidType
(
type
,
code
))
return
null
;
if
(
IsShort
(
type
))
return
MakeShort
(
code
,
type
,
timing
);
...
...
@@ -50,7 +50,8 @@
abstract
protected
bool
NotValidType
(
string
type
);
string
type
,
string
code
);
abstract
protected
Note
MakeShort
(
...
...
Assets/TrackAnalysis/NoteSignGenerator.cs
View file @
79d8170b
...
...
@@ -59,9 +59,16 @@ namespace TrackAnalysis
Func
<
int
,
float
>
calcTiming
,
Func
<
string
,
float
,
Note
>
concreteNote
)
{
return
DiscreteRange
(
range
,
x
=>
currentCode
(
x
))
var
disrange
=
DiscreteRange
(
range
,
x
=>
currentCode
(
x
));
var
disRange
=
disrange
.
ToList
();
var
notes
=
disrange
.
Select
(
x
=>
concreteNote
(
currentCode
(
x
),
calcTiming
(
x
)));
var
Notes
=
notes
.
ToList
();
return
notes
.
Where
(
x
=>
x
!=
null
);
/*return disrange
.Select(x => concreteNote(currentCode(x), calcTiming(x)))
.
Where
(
x
=>
x
!=
null
);
.Where(x => x != null);
*/
}
private
static
...
...
@@ -70,7 +77,7 @@ namespace TrackAnalysis
IEnumerable
<
int
>
range
,
Func
<
int
,
string
>
currentCode
)
{
return
range
.
Where
(
x
=>
currentCode
(
x
).
Equals
(
"00"
));
return
range
.
Where
(
x
=>
!
currentCode
(
x
).
Equals
(
"00"
));
}
}
}
\ No newline at end of file
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