Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
man-in-the-mirror
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
4
Issues
4
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
MIM
man-in-the-mirror
Commits
bbb52205
Commit
bbb52205
authored
Aug 15, 2019
by
18신대성
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
거울 또또또또 알고리즘 수정
parent
ae8295b9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
21 deletions
+16
-21
Mirror.cs
Assets/Scripts/Map/Mirror.cs
+16
-21
No files found.
Assets/Scripts/Map/Mirror.cs
View file @
bbb52205
...
...
@@ -34,8 +34,9 @@ public class Mirror : Wall, IBulletInteractor, IBreakable
//Debug.Log("stPos: " + stPos);
List
<
Pair
>
parRay
=
new
List
<
Pair
>
{
new
Pair
(
0
,
1
)
new
Pair
(
PointToParRay
(
stPos
,
ldPos
,
false
),
PointToParRay
(
stPos
,
rdPos
,
false
)
)
};
//Debug.Log(parRay[0].l + ", " + parRay[0].r);
int
side
,
i
,
reflectSide
,
mapRange
;
bool
isSameRSide
;
...
...
@@ -66,9 +67,10 @@ public class Mirror : Wall, IBulletInteractor, IBreakable
foreach
(
var
wall
in
MapManager
.
inst
.
currentMap
.
wallGrid
)
{
float
wallPos
=
(
dir
?
wall
.
Key
.
y
:
wall
.
Key
.
x
);
if
(
wall
.
Value
.
mapPos
!=
mapPos
&&
(
side
<
0
?
wallPos
<
mirrorPos
&&
wallPos
>
stPosFix
:
wallPos
>
mirrorPos
&&
wallPos
<
stPosFix
))
if
(
wall
.
Key
!=
mapPos
&&
(
side
<
0
?
wallPos
<
mirrorPos
&&
wallPos
>
stPosFix
:
wallPos
>
mirrorPos
&&
wallPos
<
stPosFix
))
{
Pair
pair
=
new
Pair
(
PointToParRay
(
stPos
,
wall
.
Value
.
ldPos
,
false
),
PointToParRay
(
stPos
,
wall
.
Value
.
rdPos
,
false
));
//Debug.Log(wall.Key);
if
(
IsInRay
(
parRay
,
pair
))
SubtractRay
(
parRay
,
pair
);
yield
return
null
;
}
...
...
@@ -83,6 +85,7 @@ public class Mirror : Wall, IBulletInteractor, IBreakable
}
// start reflection
Debug
.
Log
(
"Start Reflection"
);
Vector2Int
frontFloorPos
=
dir
?
new
Vector2Int
(
Mathf
.
RoundToInt
(
mapPos
.
x
),
Mathf
.
RoundToInt
(
mapPos
.
y
+
0.5f
*
side
))
:
new
Vector2Int
(
Mathf
.
RoundToInt
(
mapPos
.
x
+
0.5f
*
side
),
Mathf
.
RoundToInt
(
mapPos
.
y
));
...
...
@@ -306,22 +309,10 @@ public class Mirror : Wall, IBulletInteractor, IBreakable
foreach
(
Pair
pair
in
_parRay
)
{
if
(
pair
.
r
<
_sub
.
l
||
pair
.
l
>
_sub
.
r
)
continue
;
float
[]
arr
=
{
pair
.
l
,
pair
.
r
,
_sub
.
l
,
_sub
.
r
};
List
<
float
>
arr
=
new
List
<
float
>()
{
pair
.
l
,
pair
.
r
,
_sub
.
l
,
_sub
.
r
};
for
(
int
i
=
0
;
i
<
4
;
i
++)
// sort arr
{
int
smallest
=
i
;
for
(
int
j
=
i
+
1
;
j
<
4
;
j
++)
{
if
(
arr
[
smallest
]
>
arr
[
j
])
{
smallest
=
j
;
}
}
float
temp
=
arr
[
i
];
arr
[
i
]
=
arr
[
smallest
];
arr
[
smallest
]
=
temp
;
}
arr
.
Sort
();
// subtract
if
(
arr
[
0
]
==
_sub
.
l
&&
arr
[
2
]
==
_sub
.
r
)
...
...
@@ -337,6 +328,10 @@ public class Mirror : Wall, IBulletInteractor, IBreakable
toAdd
=
new
Pair
(
_sub
.
r
,
pair
.
r
);
pair
.
r
=
_sub
.
l
;
}
else
if
(
arr
[
0
]
==
_sub
.
l
&&
arr
[
3
]
==
_sub
.
r
)
{
pair
.
r
=
pair
.
l
;
}
}
if
(
toAdd
!=
null
)
_parRay
.
Add
(
toAdd
);
for
(
int
i
=
0
;
i
<
_parRay
.
Count
;
i
++)
...
...
@@ -434,15 +429,15 @@ public class Mirror : Wall, IBulletInteractor, IBreakable
{
if
(
dir
)
{
float
px
=
(
_chPos
.
x
-
_stPos
.
x
)*(
ldPos
.
y
-
_stPos
.
y
)/(
_isRefl
?
2
*
ldPos
.
y
-
_chPos
.
y
-
_stPos
.
y
:
_chPos
.
y
-
_stPos
.
y
)
+
_stPos
.
x
;
float
px
=
(
_chPos
.
x
-
_stPos
.
x
)
*
(
mapPos
.
y
-
_stPos
.
y
)
/
(
_isRefl
?
2
*
mapPos
.
y
-
_chPos
.
y
-
_stPos
.
y
:
_chPos
.
y
-
_stPos
.
y
)
+
_stPos
.
x
;
//Debug.Log("chPos: " + _chPos + ", output: " + (px - ldPos.x));
return
px
-
ldPos
.
x
;
return
px
;
}
else
{
float
py
=
(
_chPos
.
y
-
_stPos
.
y
)
*
(
ldPos
.
x
-
_stPos
.
x
)
/
(
_isRefl
?
2
*
ld
Pos
.
x
-
_chPos
.
x
-
_stPos
.
x
:
_chPos
.
x
-
_stPos
.
x
)
+
_stPos
.
y
;
float
py
=
(
_chPos
.
y
-
_stPos
.
y
)
*
(
mapPos
.
x
-
_stPos
.
x
)
/
(
_isRefl
?
2
*
map
Pos
.
x
-
_chPos
.
x
-
_stPos
.
x
:
_chPos
.
x
-
_stPos
.
x
)
+
_stPos
.
y
;
//Debug.Log("chPos: " + _chPos + ", output: " + (py - ldPos.y));
return
py
-
ldPos
.
y
;
return
py
;
}
}
}
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