mirror of
https://github.com/DerTyp7/industrialize-unity.git
synced 2025-10-29 12:32:12 +01:00
426 lines
13 KiB
C#
426 lines
13 KiB
C#
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class GridBuildingSystem : MonoBehaviour
|
|
{
|
|
public static GridBuildingSystem instance;
|
|
public Grid<GridObject> buildingGrid;
|
|
|
|
public int gridWidth;
|
|
public int gridHeight;
|
|
public float cellSize;
|
|
|
|
[SerializeField] Color cannotBuildColor; // Maybe put this into every single PlacedObjectTypeSO for better customized use
|
|
|
|
PlacedObjectTypeSO selectedPlacedObjectTypeSO;
|
|
Transform selectedGameObjectTransform;
|
|
|
|
PlacedObject selectedMovingPlacedObject;
|
|
|
|
// Conveyor Placing Variables
|
|
Vector3 conveyorStartPosition;
|
|
List<GameObject> placingConveyorBlueprints = new List<GameObject>();
|
|
bool isPlacingConveyor = false;
|
|
|
|
public class GridObject
|
|
{
|
|
int x, y;
|
|
Grid<GridObject> grid;
|
|
PlacedObject placedObject;
|
|
public GridObject(Grid<GridObject> _grid, int _x, int _y) // FOR DEBUG TRUE
|
|
{
|
|
grid = _grid;
|
|
x = _x;
|
|
y = _y;
|
|
}
|
|
public void SetPlacedObject(PlacedObject newPlacedObject)
|
|
{
|
|
placedObject = newPlacedObject;
|
|
Debug.Log("SetPlacedObject");
|
|
}
|
|
public PlacedObject GetPlacedObject() => placedObject;
|
|
public void ClearPlacedObject() => placedObject = null;
|
|
public bool CanBuild()
|
|
{
|
|
return placedObject == null;
|
|
}
|
|
}
|
|
|
|
|
|
void Awake()
|
|
{
|
|
if (instance == null)
|
|
{
|
|
instance = this;
|
|
}
|
|
else
|
|
{
|
|
Destroy(gameObject);
|
|
}
|
|
|
|
buildingGrid = new Grid<GridObject>(gridWidth, gridHeight, cellSize, Vector3.zero, (Grid<GridObject> g, int x, int y) => new GridObject(g, x, y));
|
|
}
|
|
|
|
void Update()
|
|
{
|
|
if (selectedGameObjectTransform != null)
|
|
{
|
|
if (selectedPlacedObjectTypeSO.placedObjectCategory == PlacedObjectTypeSO.PlacedObjectCategory.BUILDING)
|
|
{
|
|
UpdateSelectedBuilding();
|
|
}
|
|
|
|
if (selectedPlacedObjectTypeSO.placedObjectCategory == PlacedObjectTypeSO.PlacedObjectCategory.CONVEYOR)
|
|
{
|
|
UpdateSelectedConveyor();
|
|
}
|
|
}
|
|
|
|
if (selectedMovingPlacedObject != null)
|
|
{
|
|
UpdateSelectedMovingPlacedObject();
|
|
}
|
|
}
|
|
|
|
bool CanBuild(List<Vector2Int> gridPositionList)
|
|
{
|
|
bool canBuild = true;
|
|
foreach (Vector2Int gridPosition in gridPositionList)
|
|
{
|
|
if (!buildingGrid.GetGridObject(gridPosition.x, gridPosition.y).CanBuild())
|
|
{
|
|
// Cannot build here
|
|
canBuild = false;
|
|
break;
|
|
}
|
|
}
|
|
return canBuild;
|
|
}
|
|
|
|
#region BuildingPlacing
|
|
void UpdateSelectedBuilding()
|
|
{
|
|
Vector3 mousePosition = Camera.main.ScreenToWorldPoint(Input.mousePosition);
|
|
|
|
buildingGrid.GetXY(mousePosition, out int x, out int y);
|
|
|
|
selectedGameObjectTransform.position = buildingGrid.GetWorldPosition(x, y);
|
|
|
|
List<Vector2Int> gridPositionList = selectedPlacedObjectTypeSO.GetGridPositionList(new Vector2Int(x, y));
|
|
|
|
if (CanBuild(gridPositionList))
|
|
{
|
|
selectedGameObjectTransform.gameObject.GetComponent<SpriteRenderer>().color = Color.white;
|
|
}
|
|
else
|
|
{
|
|
selectedGameObjectTransform.gameObject.GetComponent<SpriteRenderer>().color = Color.red;
|
|
}
|
|
|
|
if (Input.GetMouseButtonDown(0))
|
|
{
|
|
PlacePlacedObjectTypeSO(selectedGameObjectTransform.position, selectedPlacedObjectTypeSO);
|
|
}
|
|
|
|
|
|
if (Input.GetMouseButtonDown(1) || Input.GetKeyDown(KeyCode.Escape))
|
|
{
|
|
DeselectPlacedObjectTypeSO();
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
#region ConveyorPlacing
|
|
void UpdateSelectedConveyor()
|
|
{
|
|
Vector3 mousePosition = Camera.main.ScreenToWorldPoint(Input.mousePosition);
|
|
buildingGrid.GetXY(mousePosition, out int x, out int y);
|
|
selectedGameObjectTransform.position = buildingGrid.GetWorldPosition(x, y);
|
|
|
|
if (Input.GetMouseButtonDown(0))
|
|
{
|
|
if (isPlacingConveyor == false)
|
|
{
|
|
conveyorStartPosition = buildingGrid.GetWorldPosition(x, y);
|
|
isPlacingConveyor = true;
|
|
}
|
|
else
|
|
{
|
|
if (ConveyorCanBuild())
|
|
{
|
|
PlaceConveyorPath();
|
|
isPlacingConveyor = false;
|
|
}
|
|
}
|
|
}
|
|
|
|
DrawConveyorPath();
|
|
|
|
if (ConveyorCanBuild())
|
|
{
|
|
RecolorConveyorPath(Color.white);
|
|
}
|
|
else
|
|
{
|
|
RecolorConveyorPath(cannotBuildColor);
|
|
}
|
|
|
|
if (Input.GetMouseButtonDown(1) || Input.GetKeyDown(KeyCode.Escape))
|
|
{
|
|
ClearConveyorPath();
|
|
DeselectPlacedObjectTypeSO();
|
|
}
|
|
}
|
|
|
|
void PlaceConveyorPath()
|
|
{
|
|
if (placingConveyorBlueprints.Count > 0)
|
|
{
|
|
foreach (GameObject blueprint in placingConveyorBlueprints)
|
|
{
|
|
PlacePlacedObjectTypeSO(blueprint.transform.position, blueprint.gameObject.GetComponent<PlacedObject>().placedObjectTypeSO);
|
|
}
|
|
ClearConveyorPath();
|
|
}
|
|
}
|
|
|
|
void ClearConveyorPath()
|
|
{
|
|
if (placingConveyorBlueprints.Count > 0)
|
|
{
|
|
foreach (GameObject blueprint in placingConveyorBlueprints)
|
|
{
|
|
Destroy(blueprint);
|
|
}
|
|
placingConveyorBlueprints.Clear();
|
|
}
|
|
}
|
|
|
|
void DrawConveyorPath()
|
|
{
|
|
if (isPlacingConveyor == true)
|
|
{
|
|
Vector3 mousePosition = Camera.main.ScreenToWorldPoint(Input.mousePosition);
|
|
buildingGrid.GetXY(mousePosition, out int x, out int y);
|
|
Vector3 endPosition = buildingGrid.GetWorldPosition(x, y);
|
|
|
|
ClearConveyorPath();
|
|
|
|
List<Vector2Int> pathPoints = VectorDrawing.FindVectorPath(conveyorStartPosition, endPosition);
|
|
Debug.Log(pathPoints.Count);
|
|
foreach (Vector2Int position in pathPoints)
|
|
{
|
|
GameObject conveyorBlueprint = Instantiate(selectedPlacedObjectTypeSO.prefab.gameObject, new Vector3(position.x, position.y), Quaternion.identity);
|
|
placingConveyorBlueprints.Add(conveyorBlueprint);
|
|
}
|
|
|
|
/*
|
|
foreach (Vector3 position in Pathfinding.instance.FindPath(conveyorStartPosition, endPosition, true))
|
|
{
|
|
buildingGrid.GetXY(position, out x, out y);
|
|
|
|
GameObject conveyorBlueprint = Instantiate(selectedPlacedObjectTypeSO.prefab.gameObject, new Vector3(x, y), Quaternion.identity);
|
|
placingConveyorBlueprints.Add(conveyorBlueprint);
|
|
}*/
|
|
|
|
}
|
|
}
|
|
|
|
void RecolorConveyorPath(Color color)
|
|
{
|
|
foreach (GameObject blueprint in placingConveyorBlueprints)
|
|
{
|
|
blueprint.GetComponent<SpriteRenderer>().color = color;
|
|
}
|
|
}
|
|
bool ConveyorCanBuild()
|
|
{
|
|
bool canBuild = true;
|
|
|
|
foreach (GameObject blueprint in placingConveyorBlueprints)
|
|
{
|
|
buildingGrid.GetXY(blueprint.transform.position, out int x, out int y);
|
|
|
|
List<Vector2Int> gridPositionList = blueprint.GetComponent<PlacedObject>().placedObjectTypeSO.GetGridPositionList(new Vector2Int(x, y));
|
|
if (CanBuild(gridPositionList) == false)
|
|
{
|
|
canBuild = false;
|
|
Debug.Log("Cannot build conveyor here");
|
|
}
|
|
}
|
|
return canBuild;
|
|
}
|
|
#endregion
|
|
|
|
#region MovingPlacedObject
|
|
|
|
public bool MovingObjectIsOnNewPosition(Vector3 mousePosition)
|
|
{
|
|
buildingGrid.GetXY(mousePosition, out int x, out int y);
|
|
|
|
if (selectedMovingPlacedObject.origin.x != x || selectedMovingPlacedObject.origin.y != y)
|
|
{
|
|
Debug.Log("Moving object is on new position");
|
|
return true;
|
|
}
|
|
else
|
|
{
|
|
Debug.Log("Moving object is on same position");
|
|
return false;
|
|
}
|
|
}
|
|
|
|
public void SelectMovingPlacedObject(Vector3 fromPosition)
|
|
{
|
|
Debug.Log("Selecting moving placed object");
|
|
buildingGrid.GetXY(fromPosition, out int fromX, out int fromY);
|
|
|
|
if (buildingGrid.GetGridObject(fromX, fromY).GetPlacedObject() != null)
|
|
{
|
|
selectedMovingPlacedObject = buildingGrid.GetGridObject(fromX, fromY).GetPlacedObject();
|
|
}
|
|
else
|
|
{
|
|
Debug.Log("No placed object found");
|
|
}
|
|
|
|
}
|
|
|
|
public void DeselectMovingPlacedObject()
|
|
{
|
|
Debug.Log("Deselecting moving placed object");
|
|
selectedMovingPlacedObject.gameObject.transform.position = buildingGrid.GetWorldPosition(selectedMovingPlacedObject.origin.x, selectedMovingPlacedObject.origin.y);
|
|
selectedMovingPlacedObject = null;
|
|
}
|
|
|
|
public void UpdateSelectedMovingPlacedObject()
|
|
{
|
|
|
|
Vector3 mousePosition = Camera.main.ScreenToWorldPoint(Input.mousePosition);
|
|
|
|
buildingGrid.GetXY(mousePosition, out int x, out int y);
|
|
|
|
selectedMovingPlacedObject.gameObject.transform.position = buildingGrid.GetWorldPosition(x, y);
|
|
|
|
if (Input.GetMouseButtonDown(0) && MenuManager.AllMenusClosed() && MovingObjectIsOnNewPosition(mousePosition))
|
|
{
|
|
Debug.Log("Move selected moving placed object");
|
|
MoveSelectedMovingPlacedObject(mousePosition);
|
|
DeselectMovingPlacedObject();
|
|
}
|
|
else if (Input.GetMouseButtonDown(1) || Input.GetKeyDown(KeyCode.Escape))
|
|
{
|
|
DeselectMovingPlacedObject();
|
|
}
|
|
}
|
|
|
|
public void MoveSelectedMovingPlacedObject(Vector3 position)
|
|
{
|
|
// Remove old placed object from grid
|
|
Debug.Log("Removing old placed object from grid");
|
|
List<Vector2Int> gridPositionList = selectedMovingPlacedObject.GetGridPositionList();
|
|
|
|
foreach (Vector2Int gridPosition in gridPositionList)
|
|
{
|
|
buildingGrid.GetGridObject(gridPosition.x, gridPosition.y).ClearPlacedObject();
|
|
Debug.Log("Cleared placed object at " + gridPosition);
|
|
}
|
|
|
|
// Place new placed object at new position
|
|
Debug.Log("Placing new placed object at new position");
|
|
buildingGrid.GetXY(position, out int newX, out int newY);
|
|
List<Vector2Int> newGridPositionList = selectedMovingPlacedObject.placedObjectTypeSO.GetGridPositionList(new Vector2Int(newX, newY));
|
|
|
|
if (CanBuild(newGridPositionList))
|
|
{
|
|
selectedMovingPlacedObject.Move(new Vector2Int(newX, newY));
|
|
|
|
foreach (Vector2Int gridPosition in newGridPositionList)
|
|
{
|
|
buildingGrid.GetGridObject(gridPosition.x, gridPosition.y).SetPlacedObject(selectedMovingPlacedObject);
|
|
Debug.Log("Placed placed object at " + gridPosition);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
Debug.Log("Cannot build here!" + " " + position);
|
|
}
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region PlacedObjectsTypeSO Methods
|
|
|
|
public void DemolishPlacedObjectTypeSO(Vector3 position)
|
|
{
|
|
if (selectedPlacedObjectTypeSO != null)
|
|
return;
|
|
|
|
GridObject gridObject = buildingGrid.GetGridObject(position); // Camera.main.ScreenToWorldPoint(Input.mousePosition)
|
|
PlacedObject placedObject = gridObject.GetPlacedObject();
|
|
|
|
if (placedObject != null)
|
|
{
|
|
placedObject.DestroySelf();
|
|
|
|
List<Vector2Int> gridPositionList = placedObject.GetGridPositionList();
|
|
|
|
foreach (Vector2Int gridPosition in gridPositionList)
|
|
{
|
|
buildingGrid.GetGridObject(gridPosition.x, gridPosition.y).ClearPlacedObject();
|
|
}
|
|
}
|
|
}
|
|
|
|
public GameObject PlacePlacedObjectTypeSO(Vector3 position, PlacedObjectTypeSO placedObjectTypeSO)
|
|
{
|
|
position = new Vector3(position.x, position.y);
|
|
buildingGrid.GetXY(position, out int x, out int y);
|
|
|
|
List<Vector2Int> gridPositionList = placedObjectTypeSO.GetGridPositionList(new Vector2Int(x, y));
|
|
|
|
if (CanBuild(gridPositionList))
|
|
{
|
|
PlacedObject placedObject = PlacedObject.Create(buildingGrid.GetWorldPosition(x, y), new Vector2Int(x, y), placedObjectTypeSO);
|
|
|
|
foreach (Vector2Int gridPosition in gridPositionList)
|
|
{
|
|
buildingGrid.GetGridObject(gridPosition.x, gridPosition.y).SetPlacedObject(placedObject);
|
|
}
|
|
return placedObject.gameObject;
|
|
}
|
|
else
|
|
{
|
|
Debug.Log("Cannot build here!" + " " + position);
|
|
}
|
|
return null;
|
|
}
|
|
|
|
public void SelectPlacedObjectTypeSO(PlacedObjectTypeSO placedObjectTypeSO)
|
|
{
|
|
|
|
// Delete all previous blueprints
|
|
foreach (GameObject o in GameObject.FindGameObjectsWithTag("PlacedObject"))
|
|
{
|
|
if (o.GetComponent<PlacedObject>().GetIsBlueprint())
|
|
{
|
|
Destroy(o);
|
|
}
|
|
}
|
|
|
|
Vector3 mousePosition = Camera.main.ScreenToWorldPoint(Input.mousePosition);
|
|
selectedGameObjectTransform = Instantiate(placedObjectTypeSO.prefab, mousePosition, Quaternion.identity);
|
|
selectedPlacedObjectTypeSO = placedObjectTypeSO;
|
|
}
|
|
|
|
public void DeselectPlacedObjectTypeSO()
|
|
{
|
|
Destroy(selectedGameObjectTransform.gameObject);
|
|
selectedPlacedObjectTypeSO = null;
|
|
selectedGameObjectTransform = null;
|
|
isPlacingConveyor = false;
|
|
placingConveyorBlueprints.Clear();
|
|
}
|
|
#endregion
|
|
}
|