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
b84d8cf3
Commit
b84d8cf3
authored
Nov 09, 2019
by
류지석
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
맵 에디터 수정
parent
357596d9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
8 deletions
+24
-8
MapEditor.cs
Assets/Scripts/MapEditor.cs
+24
-8
No files found.
Assets/Scripts/MapEditor.cs
View file @
b84d8cf3
...
...
@@ -140,7 +140,11 @@ public class MapEditor : SingletonBehaviour<MapEditor>
mapSaveData
.
comments
=
currentMap
.
comments
;
if
(
File
.
Exists
(
localPath
))
File
.
Delete
(
localPath
);
if
(
File
.
Exists
(
localPath
))
{
Debug
.
Log
(
"File Exists"
);
File
.
Delete
(
localPath
);
}
File
.
WriteAllText
(
localPath
,
JsonConvert
.
SerializeObject
(
mapSaveData
));
Debug
.
Log
(
"Map saved at "
+
localPath
);}
...
...
@@ -179,6 +183,8 @@ public class MapEditor : SingletonBehaviour<MapEditor>
break
;
case
TileMode
.
Normal
:
currentMap
.
CreateWall
(
new
Vector2
(
temp
.
xPos
,
temp
.
yPos
),
WallType
.
Normal
);
if
(
currentMap
.
GetWallAtPos
(
new
Vector2
(
temp
.
xPos
,
temp
.
yPos
))
!=
null
&&
currentMap
.
GetWallAtPos
(
new
Vector2
(
temp
.
xPos
,
temp
.
yPos
)).
GetComponent
<
Wall
>()
is
NormalWall
)
currentMap
.
GetWallAtPos
(
new
Vector2
(
temp
.
xPos
,
temp
.
yPos
)).
gameObject
.
GetComponent
<
MeshRenderer
>().
material
=
editNormalMat
;
break
;
case
TileMode
.
Mirror
:
currentMap
.
CreateWall
(
new
Vector2
(
temp
.
xPos
,
temp
.
yPos
),
WallType
.
Mirror
);
...
...
@@ -211,6 +217,9 @@ public class MapEditor : SingletonBehaviour<MapEditor>
}
for
(
int
i
=
0
;
i
<
loadedMapData
.
bullets
.
Count
;
i
++)
currentMap
.
initialBullets
.
Add
(
loadedMapData
.
bullets
[
i
]);
if
(
loadedMapData
.
comments
!=
null
)
currentMap
.
comments
=
loadedMapData
.
comments
;
xInput
.
text
=
(
currentMap
.
maxBorder
.
x
-
currentMap
.
minBorder
.
x
+
1
).
ToString
();
yInput
.
text
=
(
currentMap
.
maxBorder
.
y
-
currentMap
.
minBorder
.
y
+
1
).
ToString
();
SetMapSize
();
}
}
...
...
@@ -336,31 +345,38 @@ public class MapEditor : SingletonBehaviour<MapEditor>
// Update is called once per frame
void
Update
()
{
if
(
isEditorStarted
&&
Input
.
GetMouseButton
Down
(
0
)
&&
Input
.
mousePosition
.
x
>
250
&&
Input
.
mousePosition
.
x
<
1550
)
if
(
isEditorStarted
&&
Input
.
GetMouseButton
(
0
)
&&
Input
.
mousePosition
.
x
>
250
&&
Input
.
mousePosition
.
x
<
1550
)
{
Ray
mouseRay
=
Camera
.
main
.
ScreenPointToRay
(
Input
.
mousePosition
);
RaycastHit
hit
;
bool
isWall
=
false
;
if
(
Physics
.
Raycast
(
mouseRay
,
out
hit
))
{
Debug
.
Log
(
hit
.
transform
.
position
);
Vector2Int
clickedPos
=
Vector2Int
.
zero
;
Vector2
wallPos
=
Vector2
.
zero
;
if
(
hit
.
transform
.
tag
==
"wallSign"
)
{
wallPos
=
new
Vector2
(
hit
.
transform
.
position
.
x
,
hit
.
transform
.
position
.
z
);
isWall
=
true
;
}
else
{
clickedPos
=
new
Vector2Int
((
int
)
hit
.
transform
.
position
.
x
,
(
int
)
hit
.
transform
.
position
.
z
);
if
(
currentMode
==
TileMode
.
Floor
)
isWall
=
false
;
}
if
(
currentMode
==
TileMode
.
Floor
&&
!
isWall
)
{
if
(
isCreateMode
)
currentMap
.
CreateFloor
(
clickedPos
);
else
currentMap
.
RemoveFloor
(
clickedPos
);
}
else
if
(
currentMode
==
TileMode
.
Normal
||
currentMode
==
TileMode
.
Mirror
)
else
if
(
currentMode
==
TileMode
.
Normal
||
currentMode
==
TileMode
.
Mirror
&&
isWall
)
{
if
(
isCreateMode
)
{
Debug
.
Log
(
wallPos
);
currentMap
.
CreateWall
(
wallPos
,
(
WallType
)((
int
)
currentMode
-
1
));
if
(
currentMap
.
GetWallAtPos
(
wallPos
)
!=
null
&&
currentMap
.
GetWallAtPos
(
wallPos
).
GetComponent
<
Wall
>()
is
NormalWall
)
currentMap
.
GetWallAtPos
(
wallPos
).
gameObject
.
GetComponent
<
MeshRenderer
>().
material
=
editNormalMat
;
...
...
@@ -368,7 +384,7 @@ public class MapEditor : SingletonBehaviour<MapEditor>
else
currentMap
.
RemoveWall
(
wallPos
);
}
else
if
(
currentMode
==
TileMode
.
StartFloor
)
else
if
(
currentMode
==
TileMode
.
StartFloor
&&
!
isWall
)
{
if
(
isCreateMode
)
{
...
...
@@ -393,7 +409,7 @@ public class MapEditor : SingletonBehaviour<MapEditor>
}
}
}
else
if
(
currentMode
==
TileMode
.
goalFloor
)
else
if
(
currentMode
==
TileMode
.
goalFloor
&&
isWall
)
{
if
(
isCreateMode
)
{
...
...
@@ -418,7 +434,7 @@ public class MapEditor : SingletonBehaviour<MapEditor>
}
}
}
else
if
((
int
)
currentMode
>=
5
&&
(
int
)
currentMode
<=
8
)
else
if
((
int
)
currentMode
>=
5
&&
(
int
)
currentMode
<=
8
&&
isWall
)
{
if
(
isCreateMode
)
{
...
...
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