summaryrefslogtreecommitdiff
path: root/AlienSurvival/Assets/Scripts/TopDown/TopDownTransform.cs
blob: 35e6b791e5bba4d9c155d49058ca4b600c5dcf86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
#if UNITY_EDITOR
using UnityEditor;
#endif

/// <summary>
/// 用于TopDown的Transform,支持模拟垂直高度
/// </summary>
[ExecuteInEditMode]
[RequireComponent(typeof(Transform))]
public class TopDownTransform : MonoBehaviour
{
	// 右手系
	//  z
	//  |
	//  |  /y
	//  | /
	//  |/______x

	// x, y, z ( z = height)
	[SerializeField] private Vector3 m_LocalPosition;

	// 只能绕一个虚拟轴旋转
	[SerializeField] private float m_LocalRotation;

	// x, z
	//[SerializeField] private Vector2 m_LocalScale;

	public Vector3 position
	{
		get
		{
			return m_LocalPosition;
		}
		set
		{
			m_LocalPosition = value;
			Project();
		}
	} 

	public float x
	{
		get
		{
			return m_LocalPosition.x;
		}
		set
		{
			m_LocalPosition.x = value;
			Project();
		}
	}
	public float y
	{
		get
		{
			return m_LocalPosition.y;
		}
		set
		{
			m_LocalPosition.y = value;
			Project();
		}
	}

	public float z
	{
		get
		{
			return m_LocalPosition.z;
		}
		set
		{
			m_LocalPosition.z = value;
			Project();
		}
	}

	public float height
	{
		get
		{
			return z;
		}
		set
		{
			z = value;
		}
	}

	// 地表坐标(Topdown空间)
	public Vector3 positionOnGround
	{
		set
		{
			Vector3 pos = position;
			pos.x = value.x;
			pos.y = value.y;
			position = pos;
			Project();
		}
		get
		{
			Vector3 pos = position;
			pos.z = 0;
			return pos;
		}
	}

	/// <summary>
	/// “投影”,把坐标转换到Transform上
	/// </summary>
	public void Project()
	{
		Vector3 pos = transform.localPosition;
		pos.x = m_LocalPosition.x;
		pos.y = m_LocalPosition.y + m_LocalPosition.z;

		transform.localPosition = pos;
	}

	private void Start()
	{
		SpriteRenderer sr = GetComponent<SpriteRenderer>();
		if (sr)
		{
			gameObject.AddOrGetComponent<TopDownSorting>();
			gameObject.AddOrGetComponent<TopDownShadowCaster>();
		}
	}

	private void Update()
	{
		Project();
	}

	#region 转换到3D笛卡尔空间
	public Vector3 Get3DPosition()
	{
		Vector3 pos = new Vector3();
		pos.x = m_LocalPosition.x;
		pos.y = m_LocalPosition.y + m_LocalPosition.z;
		pos.z = transform.localPosition.z;
		return pos;
	}

	/// <summary>
	/// 注意是在3D空间下
	/// </summary>
	/// <returns></returns>
	public Vector3 GetGround3DPosition()
	{
		Vector3 pos = new Vector3();
		pos.x = m_LocalPosition.x;
		pos.y = m_LocalPosition.y ;
		pos.z = transform.localPosition.z;
		return pos;
	}
	#endregion 

#if UNITY_EDITOR
	private void OnDrawGizmos()
	{
		// dash line 
		Vector3 start = transform.position;
		Vector3 end = start - new Vector3(0, m_LocalPosition.z, 0);

		Handles.DrawDottedLine(start, end, 1f);
		Handles.DrawWireCube(end, new Vector3(0.1f, 0.1f, 0f));
	}
#endif

}