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
2329a6e1
Commit
2329a6e1
authored
Feb 18, 2018
by
16이상민
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Write Tests for class "TrackInfo"
parent
25a3d60c
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
167 additions
and
68 deletions
+167
-68
MultiDictionary.cs
Assets/CustomStructure/MultiDictionary.cs
+16
-1
TrackInfoTests.cs
Assets/Editor/TrackInfoTests.cs
+18
-0
TrackInfoTests.cs.meta
Assets/Editor/TrackInfoTests.cs.meta
+13
-0
JudgeManager.cs
Assets/JudgeModule/JudgeManager.cs
+57
-57
JudgeManager.cs.meta
Assets/JudgeModule/JudgeManager.cs.meta
+0
-0
TrackInfo.cs
Assets/TrackAnalysis/TrackInfo.cs
+56
-3
test.bpe
Assets/Tracks/Tutorial/test.bpe
+3
-3
test2.bpe
Assets/Tracks/Tutorial/test2.bpe
+4
-4
No files found.
Assets/CustomStructure/MultiDictionary.cs
View file @
2329a6e1
...
...
@@ -60,6 +60,21 @@ namespace CustomStructure
{
return
dictionary
.
Remove
(
key
);
}
}
public
List
<
TKey
>
Keys
{
get
{
return
dictionary
.
Keys
.
ToList
();
}
}
public
List
<
List
<
TValue
>>
Values
{
get
{
return
dictionary
.
Values
.
ToList
();
}
}
}
}
\ No newline at end of file
Assets/Editor/TrackInfoTests.cs
0 → 100644
View file @
2329a6e1
using
NUnit.Framework
;
using
TrackAnalysis
;
class
TrackInfoTests
{
[
Test
]
public
void
EmptyTest
()
{
Note
note
;
TrackInfo
info
=
new
TrackInfo
(
"Assets\\Tracks\\Tutorial\\test2.bpe"
);
while
(
true
)
{
note
=
info
.
LastNote
();
if
(
note
==
null
)
break
;
}
}
}
Assets/Editor/TrackInfoTests.cs.meta
0 → 100644
View file @
2329a6e1
fileFormatVersion: 2
guid: 160c596db586cb047a71be1bd43b3cf3
timeCreated: 1518960865
licenseType: Free
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
Assets/
Script
/JudgeManager.cs
→
Assets/
JudgeModule
/JudgeManager.cs
View file @
2329a6e1
using
System
;
using
System.Collections.Generic
;
using
UnityEngine
;
namespace
JudgeModule
{
public
class
JudgeManager
{
private
NoteCondition
condition
;
private
List
<
Note
>
notes
;
private
NoteJudger
judger
;
private
float
interval
;
public
JudgeManager
(
InputManager
input
,
Action
endgame
,
Dictionary
<
string
,
GameObject
>
objects
,
float
bpm
)
{
condition
=
new
NoteCondition
(
input
);
judger
=
new
NoteJudger
(
objects
,
endgame
);
interval
=
60
*
1000f
/
bpm
;
}
public
void
JudgeNote
(
Note
note
,
float
timing
)
{
if
(
condition
.
IsWrongInput
(
note
))
{
judger
.
WrongNoteProc
(
note
);
return
;
}
if
(
note
.
IsLong
)
JudgeLongNote
(
note
,
timing
);
else
JudgeShortNote
(
note
,
timing
);
}
void
JudgeShortNote
(
Note
note
,
float
timing
)
{
if
(
condition
.
IsShortNoteEntered
(
note
))
judger
.
EnteredNoteProc
(
note
,
timing
);
}
void
JudgeLongNote
(
Note
note
,
float
timing
)
{
if
(
condition
.
IsLongNoteStartCorrectly
(
note
))
judger
.
EnteredNoteProc
(
note
,
timing
);
else
if
(
condition
.
IsLongNoteFinishCorrectly
(
note
,
timing
))
judger
.
CorrectlyStoppedNoteProc
(
note
,
timing
);
else
if
(
condition
.
IsLongNoteFinishIncorrectly
(
note
,
timing
))
judger
.
IncorrectlyStoppedNoteProc
(
note
,
timing
);
else
if
(
condition
.
IsLongNoteHoldCorrectly
(
note
))
judger
.
ContinuingNoteProc
(
note
,
timing
,
interval
);
}
}
}
using
System
;
using
System.Collections.Generic
;
using
UnityEngine
;
namespace
JudgeModule
{
public
class
JudgeManager
{
private
NoteCondition
condition
;
private
List
<
Note
>
notes
;
private
NoteJudger
judger
;
private
float
interval
;
public
JudgeManager
(
InputManager
input
,
Action
endgame
,
Dictionary
<
string
,
GameObject
>
objects
,
float
bpm
)
{
condition
=
new
NoteCondition
(
input
);
judger
=
new
NoteJudger
(
objects
,
endgame
);
interval
=
60
*
1000f
/
bpm
;
}
public
void
JudgeNote
(
Note
note
,
float
timing
)
{
if
(
condition
.
IsWrongInput
(
note
))
{
judger
.
WrongNoteProc
(
note
);
return
;
}
if
(
note
.
IsLong
)
JudgeLongNote
(
note
,
timing
);
else
JudgeShortNote
(
note
,
timing
);
}
void
JudgeShortNote
(
Note
note
,
float
timing
)
{
if
(
condition
.
IsShortNoteEntered
(
note
))
judger
.
EnteredNoteProc
(
note
,
timing
);
}
void
JudgeLongNote
(
Note
note
,
float
timing
)
{
if
(
condition
.
IsLongNoteStartCorrectly
(
note
))
judger
.
EnteredNoteProc
(
note
,
timing
);
else
if
(
condition
.
IsLongNoteFinishCorrectly
(
note
,
timing
))
judger
.
CorrectlyStoppedNoteProc
(
note
,
timing
);
else
if
(
condition
.
IsLongNoteFinishIncorrectly
(
note
,
timing
))
judger
.
IncorrectlyStoppedNoteProc
(
note
,
timing
);
else
if
(
condition
.
IsLongNoteHoldCorrectly
(
note
))
judger
.
ContinuingNoteProc
(
note
,
timing
,
interval
);
}
}
}
Assets/
Script
/JudgeManager.cs.meta
→
Assets/
JudgeModule
/JudgeManager.cs.meta
View file @
2329a6e1
File moved
Assets/TrackAnalysis/TrackInfo.cs
View file @
2329a6e1
...
...
@@ -24,13 +24,15 @@ namespace TrackAnalysis
{
get
{
TrackNotes
notes
=
new
TrackNotes
();
notes
.
ExtractNotes
(
NoteData
,
BeatInterval
);
return
notes
.
Notes
.
ToList
();
return
null
;
}
}
private
int
locDic
,
locKey
,
locList
;
private
List
<
KeyValuePair
<
string
,
List
<
string
>>>
NoteDatas
;
private
MultiDictionary
<
string
,
string
>
NoteData
;
private
NoteMaker
maker
=
new
NoteMaker
();
private
bool
isExtracted
;
public
TrackInfo
(
...
...
@@ -92,5 +94,56 @@ namespace TrackAnalysis
TrackList
=
header
.
TrackList
;
BGM
=
header
.
BGM
;
}
public
Note
LastNote
()
{
for
(
MoveNextLocation
();
locDic
!=
NoteDatas
.
Count
;
MoveNextLocation
())
{
var
code
=
NoteDatas
[
locDic
].
Value
[
locKey
].
Substring
(
locList
*
2
,
2
);
if
(
code
==
"00"
)
continue
;
var
type
=
NoteDatas
[
locDic
].
Key
.
Substring
(
4
,
3
);
var
timing
=
(
int
.
Parse
(
NoteDatas
[
locDic
].
Key
.
Substring
(
1
,
3
))
+
(
float
)
locList
/
(
NoteDatas
[
locDic
].
Value
[
locKey
].
Length
/
2
))
*
BeatInterval
;
var
note
=
maker
.
Make
(
code
,
type
,
timing
);
if
(
type
[
0
]
==
'L'
&&
note
==
null
)
continue
;
return
note
;
}
return
null
;
}
private
void
MoveNextLocation
()
{
if
(!
isExtracted
)
{
isExtracted
=
true
;
NoteDatas
=
NoteData
.
ToList
();
}
else
{
if
(
locDic
==
NoteDatas
.
Count
)
return
;
++
locList
;
if
(
locList
*
2
==
NoteDatas
[
locDic
].
Value
[
locKey
].
Length
)
{
++
locKey
;
locList
=
0
;
if
(
locKey
==
NoteDatas
[
locDic
].
Value
.
Count
)
{
++
locDic
;
locKey
=
0
;
}
}
}
}
}
}
Assets/Tracks/Tutorial/test.bpe
View file @
2329a6e1
...
...
@@ -5,11 +5,11 @@
#PLAYLEVEL 0
#000LBT 000000000000AA00000000000000000000AA000000000000
#000LMO 00000000000000000000
H
U00000000000000000000000000
#000LMO 00000000000000000000
B
U00000000000000000000000000
#001LBT 0000000000000000000000000000AA0000000000000000AA
#001SMO 00000000000000000000000000000000000000JP00000000
#001LMO 0000000000000000000000
HUH
D0000000000000000000000
#001LMO 0000000000000000000000
BUB
D0000000000000000000000
#002LBT 0000000000000000000000000000000000000000000000AA
#002SMO 00000000000000JP
#002LMO 0000000000000000000000000000000000000000
H
D000000
#002LMO 0000000000000000000000000000000000000000
B
D000000
#003LBT 0000AA000000000000000000000000000000000000000000
Assets/Tracks/Tutorial/test2.bpe
View file @
2329a6e1
...
...
@@ -6,11 +6,11 @@
#000SBT 00000000AA00000000000000000000000000000000000000
#000LBT AA0000AA000000AA00000000000000000000000000000000
#000LMO 00000000000000
H
U00000000000000000000000000000000
#000LMO 00000000000000
B
U00000000000000000000000000000000
#001LBT 000000000000AA000000000000000000AA00000000000000
#001LMO 00
H
U000000000000
#001LMO 00
B
U000000000000
#002LBT 00000000000000AA
#002SMO 00000000000000JP0000000000000000000000000000JP00
#002LMO 0000000000
H
D0000
#002LMO 0000000000
B
D0000
00
#002LMO 0000000000
HDJS00
#002LMO 0000000000
BDJSJS
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