[Unity 강의] 뱀서라이크 강의 - 아이템 줍기 (그리드를 이용한 최적화)
카테고리: Class VamSurLike
태그: C#, Unity, VamSurLike
젬 줍기
✔ 보석 줍기
1. 플레이어가 줍기? O
2. 보석이 줍 당하기?
✔ 잼을 얻을 때
1. 잼과 캐릭터 간의 거리 판별 (모든 잼과 거리 판별?)
2. 구역을 구분 지어 캐릭터의 주변 구역 탐색 (그리드)
게임내 모든잼과 거리판별
if (dir.Magnitude <= CollectDis) 연산 느림
if (dir.sqrMagnitude <= sqrCollectDis) 연산 빠름
✅ 거리 비교(<=, >=)는 sqrMagnitude 사용 추천!
✅ 정확한 거리 출력이 필요할 때만 Magnitude 사용
PlayerController - CollectEnv()
public class PlayerController : CreatureController
{
float EnvCollectDist { get; set; } = 1.0f;
void Update()
{
CollectEnv();
}
void CollectEnv()
{
float sqrCollectDis = EnvCollectDist * EnvCollectDist;
List<GemController> gems = Managers.Object.Gems.ToList();
foreach (GemController gem in gems)
{
Vector3 dir = gem.transform.position - transform.position;
if (dir.sqrMagnitude <= EnvCollectDist)
{
Managers.Game.Gem += 1;
Managers.Object.Despawn(gem);
}
}
}
}
그리드 사용한 최적화
✔ 같은 칸(Cell)에 있는 모든 GameObject를 같이 관리
✔ Init()
= Grid 컴포넌트 추가 or 찾기
✔ GetCell(pos)
- pos 위치의 cell을 반환, 처음 보는 칸이면 _cells.Add(cellPos, cell) 등록
✔ Add(go)
- go의 위치를 grid 위치로 변환 후 cell에 추가
✔ Remove(go)
- go의 위치를 grid 위치로 변환 후 cell에서 제거
✔ public List<GameObject> GatherObjects(Vector3 pos, float range)
탐색하고자 하는 위치에서 range 범위까지의 셀들 중 물체가 있는 모든 셀 탐색, 리스트 반환
✔ WorldToCell(position) : 월드 좌표 => 그리드 좌표로 변환
✔ CellToWorld(cellPosition) : 그리드 좌표 => 월드 좌표로 변환
GridController
using System.Collections.Generic;
using UnityEngine;
class Cell
{
public HashSet<GameObject> Objects { get; } = new HashSet<GameObject>();
}
public class GridController : BaseController
{
UnityEngine.Grid _grid;
Dictionary<Vector3Int, Cell> _cells = new Dictionary<Vector3Int, Cell>();
public override bool Init()
{
base.Init();
_grid = gameObject.GetOrAddComponent<UnityEngine.Grid>();
return true;
}
public void Add(GameObject go)
{
Vector3Int cellPos = _grid.WorldToCell(go.transform.position);
Cell cell = GetCell(cellPos);
if (cell==null)
return;
cell.Objects.Add(go);
}
public void Remove(GameObject go)
{
Vector3Int cellPos = _grid.WorldToCell(go.transform.position);
Cell cell = GetCell(cellPos);
if (cell == null)
return;
cell.Objects.Remove(go);
}
Cell GetCell(Vector3Int cellPos)
{
Cell cell = null;
if (_cells.TryGetValue(cellPos,out cell) ==false)
{
//처음보는 칸이다? => add 등록
cell = new Cell();
_cells.Add(cellPos, cell);
}
return cell;
}
public List<GameObject> GatherObjects(Vector3 pos, float range)
{
List<GameObject> objects = new List<GameObject>();
Vector3Int left = _grid.WorldToCell(pos + new Vector3(-range, 0));
Vector3Int right = _grid.WorldToCell(pos + new Vector3(+range, 0));
Vector3Int bottom = _grid.WorldToCell(pos + new Vector3(0, -range));
Vector3Int top = _grid.WorldToCell(pos + new Vector3(0, +range));
int minX = left.x;
int maxX = right.x;
int minY = bottom.y;
int maxY = top.y;
for (int x = minX; x <= maxX; x++)
{
for (int y = minY; y <= maxY; y++)
{
if (_cells.ContainsKey(new Vector3Int(x, y, 0)) == false)
continue;
objects.AddRange(_cells[new Vector3Int(x, y, 0)].Objects);
}
}
return objects;
}
}
- 오브젝트 매니저에서 spawn, despawn 될 때 그리드 add, remove
이것저것 메모
잡담, 일기?
✔ Grid 더 알아보기
댓글남기기