started work on place obj

This commit is contained in:
j.mei7
2022-03-08 19:10:38 +01:00
parent 7c0586867b
commit 512f5a3e42
45 changed files with 612 additions and 250 deletions

View File

@@ -1,47 +1,66 @@
using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Grid
public class Grid<TGridObject>
{
int width, height;
float cellSize;
Vector3 originPosition;
int[,] gridArray;
TGridObject[,] gridArray;
public Grid(int _width, int _height, float _cellSize, Vector3 _originPosition)
bool showDebug = true;
public int GetWidth() => width;
public int GetHeight() => height;
public float GetCellSize() => cellSize;
public Grid(int _width, int _height, float _cellSize, Vector3 _originPosition, Func<Grid<TGridObject>, int, int, TGridObject> createGridObject)
{
width = _width;
height = _height;
cellSize = _cellSize;
originPosition = _originPosition;
gridArray = new int[width, height];
gridArray = new TGridObject[width, height];
for(int x = 0; x < gridArray.GetLength(0); x++)
for (int x = 0; x < gridArray.GetLength(0); x++)
{
for (int y = 0; y < gridArray.GetLength(1); y++)
{
Debug.DrawLine(GetWorldPosition(x, y), GetWorldPosition(x, y+1), Color.white, 100f);
Debug.DrawLine(GetWorldPosition(x, y), GetWorldPosition(x+1,y), Color.white, 100f);
gridArray[x, y] = createGridObject(this, x, y);
}
}
Debug.DrawLine(GetWorldPosition(0, height), GetWorldPosition(width, height), Color.white, 100f);
Debug.DrawLine(GetWorldPosition(width, 0), GetWorldPosition(width, height), Color.white, 100f);
if (showDebug)
{
for (int x = 0; x < gridArray.GetLength(0); x++)
{
for (int y = 0; y < gridArray.GetLength(1); y++)
{
Debug.DrawLine(GetWorldPosition(x, y), GetWorldPosition(x, y + 1), Color.white, 100f);
Debug.DrawLine(GetWorldPosition(x, y), GetWorldPosition(x + 1, y), Color.white, 100f);
}
}
Debug.DrawLine(GetWorldPosition(0, height), GetWorldPosition(width, height), Color.white, 100f);
Debug.DrawLine(GetWorldPosition(width, 0), GetWorldPosition(width, height), Color.white, 100f);
}
}
Vector3 GetWorldPosition(int x, int y)
public Vector3 GetWorldPosition(int x, int y)
{
return new Vector3(x, y) * cellSize + originPosition;
}
void GetXY(Vector3 worldPosition, out int x, out int y)
public void GetXY(Vector3 worldPosition, out int x, out int y)
{
x = Mathf.FloorToInt((worldPosition - originPosition).x / cellSize);
y = Mathf.FloorToInt((worldPosition - originPosition).y / cellSize);
}
public void SetValue(int x, int y, int value)
public void SetGridObject(int x, int y, TGridObject value)
{
if(x >= 0 && y >= 0 && x < width && y < height)
{
@@ -50,14 +69,14 @@ public class Grid
}
}
public void SetValue(Vector3 worldPosition, int value)
public void SetGridObject(Vector3 worldPosition, TGridObject value)
{
int x, y;
GetXY(worldPosition, out x, out y);
SetValue(x, y, value);
SetGridObject(x, y, value);
}
public int GetValue(int x, int y)
public TGridObject GetGridObject(int x, int y)
{
if (x >= 0 && y >= 0 && x < width && y < height)
{
@@ -65,14 +84,14 @@ public class Grid
}
else
{
return 0;
return default(TGridObject);
}
}
public int GetValue(Vector3 worldPosition)
public TGridObject GetGridObject(Vector3 worldPosition)
{
int x, y;
GetXY(worldPosition, out x, out y);
return GetValue(x, y);
return GetGridObject(x, y);
}
}