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
b423081e
Commit
b423081e
authored
Oct 26, 2019
by
18손재민
Committed by
18류지석
Oct 26, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
맵 에디터에서 이전 맵 로드하는 기능 구현
parent
eef017da
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
1737 additions
and
181 deletions
+1737
-181
MapEditorCanvas.prefab
Assets/Prefabs/MapEditor/MapEditorCanvas.prefab
+1657
-171
MapEditor.unity
Assets/Scenes/MapEditor.unity
+1
-1
SelectStage.unity
Assets/Scenes/SelectStage.unity
+5
-0
MapManager.cs
Assets/Scripts/Managers/MapManager.cs
+1
-1
MapEditor.cs
Assets/Scripts/MapEditor.cs
+73
-8
No files found.
Assets/Prefabs/MapEditor/MapEditorCanvas.prefab
View file @
b423081e
This diff is collapsed.
Click to expand it.
Assets/Scenes/MapEditor.unity
View file @
b423081e
...
...
@@ -38,7 +38,7 @@ RenderSettings:
m_ReflectionIntensity
:
1
m_CustomReflection
:
{
fileID
:
0
}
m_Sun
:
{
fileID
:
0
}
m_IndirectSpecularColor
:
{
r
:
0.180283
34
,
g
:
0.2257134
,
b
:
0.30692226
,
a
:
1
}
m_IndirectSpecularColor
:
{
r
:
0.180283
78
,
g
:
0.22571412
,
b
:
0.30692285
,
a
:
1
}
m_UseRadianceAmbientProbe
:
0
---
!u!157
&3
LightmapSettings
:
...
...
Assets/Scenes/SelectStage.unity
View file @
b423081e
...
...
@@ -487,6 +487,11 @@ PrefabInstance:
propertyPath
:
categoryCounts.Array.data[1]
value
:
4
objectReference
:
{
fileID
:
0
}
-
target
:
{
fileID
:
5996849666618765155
,
guid
:
8115fd4d1a1025b4fb05e45fc5fa6578
,
type
:
3
}
propertyPath
:
categoryCounts.Array.data[0]
value
:
4
objectReference
:
{
fileID
:
0
}
-
target
:
{
fileID
:
5087174722634247129
,
guid
:
8115fd4d1a1025b4fb05e45fc5fa6578
,
type
:
3
}
propertyPath
:
m_AnchorMax.x
...
...
Assets/Scripts/Managers/MapManager.cs
View file @
b423081e
...
...
@@ -86,7 +86,7 @@ public class MapManager : SingletonBehaviour<MapManager>
PlayerController
.
inst
.
CreatePlayer
(
currentMap
.
startFloors
[
i
]);
for
(
int
i
=
0
;
i
<
loadedMapData
.
bullets
.
Count
;
i
++)
PlayerController
.
inst
.
AddBullet
(
loadedMapData
.
bullets
[
i
]);
if
(
loadedMapData
.
comments
!=
null
)
if
(
loadedMapData
.
comments
!=
null
||
loadedMapData
.
comments
!=
""
)
{
currentMap
.
comments
=
loadedMapData
.
comments
;
GameManager
.
inst
.
commentUIGenerator
.
SetComment
(
currentMap
.
comments
);
...
...
Assets/Scripts/MapEditor.cs
View file @
b423081e
...
...
@@ -53,7 +53,7 @@ public class MapEditor : SingletonBehaviour<MapEditor>
TileMode
currentMode
;
BulletCode
bulletMode
;
public
Text
modeSign
;
public
GameObject
startSign
,
goalSign
,
mapSizeSetter
,
mapEditorTiles
;
public
GameObject
startSign
,
goalSign
,
mapSizeSetter
,
loadMapSelector
,
mapEditorTiles
;
public
Dictionary
<
Floor
,
GameObject
>
startSigns
,
goalSigns
;
public
Material
editNormalMat
;
...
...
@@ -71,8 +71,9 @@ public class MapEditor : SingletonBehaviour<MapEditor>
/// Saves map to Assets folder.
/// </summary>
/// <param name="_newMap"></param>
public
void
SaveMap
(
Map
_newMap
)
public
void
SaveMap
()
{
Map
_newMap
=
currentMap
;
/* 맵 저장 시 반드시 승리 조건 작성할 것
* 목표가 '모든'일 경우 승리 목표는 초기 맵 기준으로 작성
*/
...
...
@@ -126,13 +127,79 @@ public class MapEditor : SingletonBehaviour<MapEditor>
mapSaveData
.
AddClears
(
currentMap
.
clearConditions
[
i
].
type
,
currentMap
.
clearConditions
[
i
].
goal
);
for
(
int
i
=
0
;
i
<
currentMap
.
initialBullets
.
Count
;
i
++)
mapSaveData
.
bullets
.
Add
(
currentMap
.
initialBullets
[
i
]);
mapSaveData
.
comments
=
currentMap
.
comments
;
File
.
WriteAllText
(
localPath
,
JsonConvert
.
SerializeObject
(
mapSaveData
));
Debug
.
Log
(
"Map saved at "
+
localPath
);}
}
public
void
SaveCurrentMap
()
public
void
LoadMap
()
{
SaveMap
(
currentMap
);
loadMapSelector
.
SetActive
(
false
);
var
x
=
loadMapSelector
.
transform
.
Find
(
"x"
).
GetComponent
<
InputField
>();
var
y
=
loadMapSelector
.
transform
.
Find
(
"y"
).
GetComponent
<
InputField
>();
TextAsset
_newMap
=
Resources
.
Load
(
"Stages/stage"
+
x
.
text
+
"_"
+
y
.
text
)
as
TextAsset
;
if
(
_newMap
!=
null
)
{
var
loadedMapData
=
JsonConvert
.
DeserializeObject
<
MapEditor
.
MapSaveData
>(
_newMap
.
ToString
());
InputField
xInput
=
mapSizeSetter
.
transform
.
Find
(
"x"
).
GetComponent
<
InputField
>();
InputField
yInput
=
mapSizeSetter
.
transform
.
Find
(
"y"
).
GetComponent
<
InputField
>();
xInput
.
text
=
loadedMapData
.
objects
[
0
].
xPos
.
ToString
();
yInput
.
text
=
loadedMapData
.
objects
[
0
].
xPos
.
ToString
();
SetMapSize
();
for
(
int
i
=
0
;
i
<
loadedMapData
.
clears
.
Count
;
i
++)
{
var
temp
=
loadedMapData
.
clears
[
i
];
currentMap
.
clearConditions
.
Add
(
new
ClearCondition
(
temp
.
type
,
temp
.
goal
));
}
int
casesIndex
=
0
;
for
(
int
i
=
1
;
i
<
loadedMapData
.
objects
.
Count
;
i
++)
{
var
temp
=
loadedMapData
.
objects
[
i
];
switch
(
temp
.
tag
)
{
case
TileMode
.
Floor
:
currentMap
.
CreateFloor
(
new
Vector2Int
((
int
)
temp
.
xPos
,
(
int
)
temp
.
yPos
));
break
;
case
TileMode
.
Normal
:
currentMap
.
CreateWall
(
new
Vector2
(
temp
.
xPos
,
temp
.
yPos
),
WallType
.
Normal
);
break
;
case
TileMode
.
Mirror
:
currentMap
.
CreateWall
(
new
Vector2
(
temp
.
xPos
,
temp
.
yPos
),
WallType
.
Mirror
);
break
;
case
TileMode
.
StartFloor
:
currentMap
.
startFloors
.
Add
(
currentMap
.
GetFloorAtPos
(
new
Vector2Int
((
int
)
temp
.
xPos
,
(
int
)
temp
.
yPos
)));
startSigns
.
Add
(
currentMap
.
GetFloorAtPos
(
new
Vector2Int
((
int
)
temp
.
xPos
,
(
int
)
temp
.
yPos
)),
Instantiate
(
startSign
));
startSigns
[
currentMap
.
GetFloorAtPos
(
new
Vector2Int
((
int
)
temp
.
xPos
,
(
int
)
temp
.
yPos
))].
transform
.
position
=
new
Vector3
(
temp
.
xPos
,
2
,
temp
.
yPos
);
break
;
case
TileMode
.
Briefcase
:
currentMap
.
CreateObject
(
new
Vector2Int
((
int
)
temp
.
xPos
,
(
int
)
temp
.
yPos
),
ObjType
.
Briefcase
,
loadedMapData
.
cases
[
casesIndex
++]);
break
;
case
TileMode
.
Camera
:
currentMap
.
CreateObject
(
new
Vector2Int
((
int
)
temp
.
xPos
,
(
int
)
temp
.
yPos
),
ObjType
.
Camera
);
break
;
case
TileMode
.
WMannequin
:
currentMap
.
CreateObject
(
new
Vector2Int
((
int
)
temp
.
xPos
,
(
int
)
temp
.
yPos
),
ObjType
.
Mannequin
,
true
);
break
;
case
TileMode
.
BMannequin
:
currentMap
.
CreateObject
(
new
Vector2Int
((
int
)
temp
.
xPos
,
(
int
)
temp
.
yPos
),
ObjType
.
Mannequin
,
false
);
break
;
case
TileMode
.
goalFloor
:
currentMap
.
SetGoalFloor
(
new
Vector2Int
((
int
)
temp
.
xPos
,
(
int
)
temp
.
yPos
));
goalSigns
.
Add
(
currentMap
.
GetFloorAtPos
(
new
Vector2Int
((
int
)
temp
.
xPos
,
(
int
)
temp
.
yPos
)),
Instantiate
(
goalSign
));
goalSigns
[
currentMap
.
GetFloorAtPos
(
new
Vector2Int
((
int
)
temp
.
xPos
,
(
int
)
temp
.
yPos
))].
transform
.
position
=
new
Vector3
(
temp
.
xPos
,
2
,
temp
.
yPos
);
break
;
default
:
break
;
}
}
for
(
int
i
=
0
;
i
<
loadedMapData
.
bullets
.
Count
;
i
++)
currentMap
.
initialBullets
.
Add
(
loadedMapData
.
bullets
[
i
]);
if
(
loadedMapData
.
comments
!=
null
)
currentMap
.
comments
=
loadedMapData
.
comments
;
}
}
public
void
SetMapSize
()
{
InputField
xInput
=
mapSizeSetter
.
transform
.
Find
(
"x"
).
GetComponent
<
InputField
>();
...
...
@@ -181,7 +248,6 @@ public class MapEditor : SingletonBehaviour<MapEditor>
public
void
AddBulletToPlayer
(
int
bulletMode
)
{
currentMap
.
initialBullets
.
Add
((
BulletCode
)
bulletMode
);
//PlayerController.inst.bulletList.Add((BulletCode)bulletMode);
}
private
void
Awake
()
...
...
@@ -205,7 +271,7 @@ public class MapEditor : SingletonBehaviour<MapEditor>
// Update is called once per frame
void
Update
()
{
if
(
isEditorStarted
&&
Input
.
GetMouseButtonDown
(
0
))
if
(
isEditorStarted
&&
Input
.
GetMouseButtonDown
(
0
)
&&
Input
.
mousePosition
.
x
>
250
&&
Input
.
mousePosition
.
x
<
1550
)
{
Ray
mouseRay
=
Camera
.
main
.
ScreenPointToRay
(
Input
.
mousePosition
);
RaycastHit
hit
;
...
...
@@ -271,8 +337,7 @@ public class MapEditor : SingletonBehaviour<MapEditor>
else
{
currentMap
.
GetFloorAtPos
(
clickedPos
).
isGoalFloor
=
true
;
goalSigns
.
Add
(
currentMap
.
GetFloorAtPos
(
clickedPos
),
Instantiate
(
goalSign
));
goalSigns
.
Add
(
currentMap
.
GetFloorAtPos
(
clickedPos
),
Instantiate
(
goalSign
));
goalSigns
[
currentMap
.
GetFloorAtPos
(
clickedPos
)].
transform
.
position
=
new
Vector3
(
clickedPos
.
x
,
2
,
clickedPos
.
y
);
}
}
...
...
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