Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
curvedflats
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
6
Issues
6
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
Flatland
curvedflats
Commits
96abdbcc
Commit
96abdbcc
authored
Aug 13, 2019
by
16이진형
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
flatland movement
parent
46410cc4
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
74 additions
and
27 deletions
+74
-27
FlatlandMovement.cs
Assets/Scripts/FlatlandMovement.cs
+36
-24
PathRenderer.cs
Assets/Scripts/PathRenderer.cs
+22
-2
Planemovement.cs
Assets/Scripts/Planemovement.cs
+2
-0
PlayerMovement.cs
Assets/Scripts/PlayerMovement.cs
+2
-0
UIManager.cs
Assets/Scripts/UIManager.cs
+12
-1
No files found.
Assets/Scripts/FlatlandMovement.cs
View file @
96abdbcc
...
...
@@ -40,25 +40,31 @@ public class FlatlandMovement : MonoBehaviour
/// </summary>
List
<
float
>
pathVelocitys
=
new
List
<
float
>();
protected
void
Update
()
protected
void
Fixed
Update
()
{
if
(
isAutoMove
)
{
Vector3
tmp
=
new
Vector3
(
transform
.
position
.
x
,
0
,
transform
.
position
.
z
);
if
(
SpaceLength
(
nowDest
,
transform
.
position
)
<
0.1f
||
SpaceInnerPorduct
(
nowDest
-
tmp
,
v
)
<
0
)
Vector3
tmp
=
new
Vector3
(
transform
.
position
.
x
,
0
,
transform
.
position
.
z
);
if
(
SpaceLength
(
nowDest
,
transform
.
position
)
<
0.1f
||
SpaceInnerPorduct
(
nowDest
-
tmp
,
v
)
<
0
)
{
//목적지 근접 or 넘어가면
Debug
.
Log
(
"dest"
+
nowDest
);
Debug
.
Log
(
"position"
+
transform
.
position
);
//넘어간만큼 보정.
//TODO : 좀더 엄밀하게 수정 필요.
Vector3
nowpos
=
transform
.
position
;
nowpos
.
x
=
nowDest
.
x
;
nowpos
.
z
=
nowDest
.
z
;
transform
.
position
=
nowpos
;
if
(
dests
.
Count
>=
1
)
{
// 다음 목적지가 있을떄.
MoveTo
(
dests
[
0
],
pathVelocitys
[
0
]);
//이동한다.
dests
.
RemoveAt
(
0
);
pathVelocitys
.
RemoveAt
(
0
);
NextMove
();
//이동한다.
}
else
{
...
...
@@ -71,6 +77,11 @@ public class FlatlandMovement : MonoBehaviour
}
}
}
protected
void
Update
()
{
}
/// <summary>
/// 시간축 y을 무시한
/// 거리
...
...
@@ -97,40 +108,32 @@ public class FlatlandMovement : MonoBehaviour
/// <summary>
/// 여러 위치를 거쳐서 이동합니다.
/// </summary>
/// <param name="path">
목적지 리스트 0 번은 현재 위치 x y
가 공간</param>
/// <param name="path">
상대좌표 x z
가 공간</param>
/// <param name="v"> 경로별 속력 0번은 0.0f </param>
public
bool
MoveTo
(
List
<
Vector3
>
path
,
List
<
float
>
v
)
public
bool
MoveTo
RetivePosition
(
List
<
Vector3
>
path
,
List
<
float
>
v
)
{
//Debug.Log("aa");
for
(
int
i
=
1
;
i
<
v
.
Count
;
i
++)
for
each
(
float
a
in
v
)
{
//Debug.Log(v[i]);
//속력 확인
if
(
v
[
1
]
<
0.0001f
)
if
(
a
<=
0.0001f
)
{
return
false
;
}
}
if
(
path
.
Count
>=
2
)
if
(
path
.
Count
>=
1
)
{
dests
=
new
List
<
Vector3
>();
//
xy 공간 -> xz 공간
//
상대좌표 -> 절대좌표
foreach
(
var
a
in
path
)
{
dests
.
Add
(
new
Vector3
(
transform
.
position
.
x
+
a
.
x
,
0
,
transform
.
position
.
z
+
a
.
y
));
dests
.
Add
(
new
Vector3
(
transform
.
position
.
x
+
a
.
x
,
0
,
transform
.
position
.
z
+
a
.
z
));
}
pathVelocitys
=
new
List
<
float
>(
v
);
//더미 제거
dests
.
RemoveAt
(
0
);
pathVelocitys
.
RemoveAt
(
0
);
}
MoveTo
(
dests
[
0
],
pathVelocitys
[
0
]);
dests
.
RemoveAt
(
0
);
pathVelocitys
.
RemoveAt
(
0
);
//start move
NextMove
();
return
true
;
}
...
...
@@ -161,4 +164,13 @@ public class FlatlandMovement : MonoBehaviour
return
true
;
}
private
void
NextMove
()
{
MoveTo
(
dests
[
0
],
pathVelocitys
[
0
]);
dests
.
RemoveAt
(
0
);
pathVelocitys
.
RemoveAt
(
0
);
}
}
Assets/Scripts/PathRenderer.cs
View file @
96abdbcc
...
...
@@ -123,7 +123,7 @@ public class PathRenderer : MonoBehaviour
/// 0번은 내 위치
/// x y 가 공간 z 가 시간
/// </summary>
public
List
<
Vector3
>
PathPositions
public
List
<
Vector3
>
PathPositions
XY
{
get
{
...
...
@@ -131,6 +131,26 @@ public class PathRenderer : MonoBehaviour
}
}
/// <summary>
/// 현재 설정된 경로를 반환.
/// 0번은 현재위치 //패트롤 고려
/// x z 가 공간 y 가 시간
/// </summary>
public
List
<
Vector3
>
PathPositionsXZ
{
get
{
List
<
Vector3
>
list
=
new
List
<
Vector3
>();
foreach
(
var
a
in
square
.
pathList
)
{
//xy -> xz
list
.
Add
(
new
Vector3
(
a
.
x
,
0
,
a
.
y
));
}
return
list
;
}
}
/// <summary>
/// 현재 설정된 경로의 속력을 반환.
/// 0번은 0.0f
/// </summary>
...
...
@@ -138,7 +158,7 @@ public class PathRenderer : MonoBehaviour
{
get
{
return
square
.
pathVelocity
;
return
new
List
<
float
>(
square
.
pathVelocity
)
;
}
}
private
void
_InstantiatePathCollider
(
int
n
)
...
...
Assets/Scripts/Planemovement.cs
View file @
96abdbcc
...
...
@@ -30,6 +30,8 @@ public class Planemovement : FlatlandMovement
// For physics calcs
void
FixedUpdate
()
{
base
.
FixedUpdate
();
var
prevup
=
transform
.
up
;
var
prevfor
=
transform
.
forward
;
var
prevorient
=
orientation
;
...
...
Assets/Scripts/PlayerMovement.cs
View file @
96abdbcc
...
...
@@ -28,6 +28,8 @@ public class PlayerMovement : FlatlandMovement
// Update is called once per frame
void
FixedUpdate
()
{
base
.
FixedUpdate
();
var
prevup
=
transform
.
up
;
var
prevfor
=
transform
.
forward
;
var
prevorient
=
orientation
;
...
...
Assets/Scripts/UIManager.cs
View file @
96abdbcc
...
...
@@ -214,7 +214,18 @@ public class UIManager : MonoBehaviour
public
void
PathStart
()
{
bool
result
;
result
=
levelManager
.
player
.
MoveTo
(
pathRenderer
.
PathPositions
,
pathRenderer
.
PathVelocitys
);
var
positions
=
pathRenderer
.
PathPositionsXZ
;
var
velocitys
=
pathRenderer
.
PathVelocitys
;
if
(
positions
.
Count
<=
1
||
velocitys
.
Count
<=
1
)
{
return
;
}
// remove dummy
positions
.
RemoveAt
(
0
);
velocitys
.
RemoveAt
(
0
);
result
=
levelManager
.
player
.
MoveToRetivePosition
(
positions
,
velocitys
);
if
(
result
)
{
...
...
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