Procedural Generation Progress
This commit is contained in:
parent
7f06907704
commit
dd2613e181
@ -11,49 +11,52 @@ public class ProceduralGeneration : MonoBehaviour
|
||||
private GameObject lastBlock;
|
||||
private GameObject lastBlockPrefab;
|
||||
private int blockIndex = 0;
|
||||
|
||||
private int spavnetobjectIndex = 0;
|
||||
|
||||
// Start is called before the first frame update
|
||||
void Start()
|
||||
{
|
||||
lastBlockPrefab = this.gameObject.transform.GetChild(0).gameObject;
|
||||
lastBlock = this.gameObject.transform.GetChild(0).gameObject;
|
||||
spawnedLevelBlocks.Add(lastBlock);
|
||||
|
||||
|
||||
int pieceCount = 10;
|
||||
float radius = (pieceCount + 1 / 2) * 2;
|
||||
float angle = 360f / (float)pieceCount;
|
||||
|
||||
for (int i = 1; i < pieceCount + 1; i++)
|
||||
{
|
||||
|
||||
|
||||
Quaternion rotation = (Quaternion.AngleAxis(i * angle, Vector3.back));
|
||||
Vector3 direction = rotation * Vector3.down;
|
||||
Vector3 position = (transform.position + (direction * radius)) * (float)(1 + i * 0.05f);
|
||||
|
||||
|
||||
Instantiate(levelBlocks[0], new Vector3(position.x, position.y, position.z), rotation);
|
||||
}
|
||||
this.spawnedLevelBlocks.Add(lastBlock);
|
||||
}
|
||||
|
||||
List<GameObject> drawLoop(GameObject lastObject, GameObject objToSpawn)
|
||||
{
|
||||
List<GameObject> levelBlocksSpawnTemp = new List<GameObject>();
|
||||
Debug.Log("Building LOOP");
|
||||
|
||||
int pieceCount = 10;
|
||||
float radius = (pieceCount / 2) * 2;
|
||||
float angle = 360f / (float)pieceCount;
|
||||
Vector3 centerPoint = new Vector3(lastObject.transform.position.x, (lastObject.transform.position.y), lastObject.transform.position.z);
|
||||
|
||||
for (int i = 1; i < pieceCount + 2; i++)
|
||||
{
|
||||
Quaternion rotation = (Quaternion.AngleAxis((i - 1) * angle, Vector3.back));
|
||||
Vector3 direction = rotation * Vector3.down;
|
||||
Vector3 position = (lastObject.transform.position + (direction * radius));
|
||||
|
||||
levelBlocksSpawnTemp.Add(Instantiate(objToSpawn, new Vector3(position.x, position.y, position.z + (float)(i * 3.0f)), rotation));
|
||||
}
|
||||
|
||||
return levelBlocksSpawnTemp;
|
||||
}
|
||||
|
||||
// Update is called once per frame
|
||||
void Update()
|
||||
{
|
||||
Vector3 playerPosition = this.player.transform.position;
|
||||
float distance = Vector3.Distance(spawnedLevelBlocks[0].transform.position, playerPosition);
|
||||
Debug.Log(distance);
|
||||
float distance = Vector3.Distance(this.spawnedLevelBlocks[spavnetobjectIndex].transform.position, playerPosition);
|
||||
|
||||
if (distance > 10.0f && spawnedLevelBlocks.Count > 10)
|
||||
if (distance > 10.0f && this.spawnedLevelBlocks.Count > 10)
|
||||
{
|
||||
Destroy(spawnedLevelBlocks[0]);
|
||||
spawnedLevelBlocks.Remove(spawnedLevelBlocks[0]);
|
||||
Destroy(this.spawnedLevelBlocks[spavnetobjectIndex]);
|
||||
this.spawnedLevelBlocks.Remove(this.spawnedLevelBlocks[spavnetobjectIndex]);
|
||||
spavnetobjectIndex++;
|
||||
}
|
||||
|
||||
if (spawnedLevelBlocks.Count <= 10)
|
||||
if (this.spawnedLevelBlocks.Count <= 10)
|
||||
{
|
||||
MeshFilter meshfilter = lastBlock.GetComponent<MeshFilter>();
|
||||
Bounds bounds = meshfilter.mesh.bounds;
|
||||
@ -61,9 +64,12 @@ public class ProceduralGeneration : MonoBehaviour
|
||||
float scale = meshfilter.transform.localScale.x;
|
||||
Bounds b = new Bounds(bounds.center * scale, bounds.size * scale);
|
||||
|
||||
int blockToSpawn = Random.Range(0, levelBlocks.Count);
|
||||
GameObject blockObjToSpawn = levelBlocks[blockToSpawn];
|
||||
int blockToSpawn = Random.Range(0, levelBlocks.Count - 1);
|
||||
Debug.Log(blockToSpawn);
|
||||
GameObject instantiatedGameObject;
|
||||
GameObject blockObjToSpawn;
|
||||
|
||||
blockObjToSpawn = levelBlocks[blockToSpawn];
|
||||
if (blockObjToSpawn.name == lastBlockPrefab.name)
|
||||
{
|
||||
Debug.Log("Same Block");
|
||||
@ -75,16 +81,34 @@ public class ProceduralGeneration : MonoBehaviour
|
||||
{
|
||||
blockToSpawn--;
|
||||
}
|
||||
blockObjToSpawn = levelBlocks[blockToSpawn];
|
||||
}
|
||||
|
||||
GameObject instantiatedGameObject = Instantiate(blockObjToSpawn, new Vector3(0, 0, blockIndex * (b.size.z + 1.0f)), (Quaternion.identity));
|
||||
if ((blockToSpawn > -1 && (blockToSpawn < (levelBlocks.Count - 1))))
|
||||
{
|
||||
blockObjToSpawn = levelBlocks[blockToSpawn];
|
||||
instantiatedGameObject = Instantiate(blockObjToSpawn, new Vector3(0, 0, blockIndex * (b.size.z + 1.0f)), (Quaternion.identity));
|
||||
this.spawnedLevelBlocks.Add(lastBlock);
|
||||
blockIndex++;
|
||||
}
|
||||
else
|
||||
{
|
||||
List<GameObject> instantiatedGameObjectLists = this.drawLoop(lastBlock, levelBlocks[0]);
|
||||
foreach (var spavnedBlock in instantiatedGameObjectLists)
|
||||
{
|
||||
this.spawnedLevelBlocks.Add(spavnedBlock);
|
||||
blockIndex++;
|
||||
|
||||
}
|
||||
instantiatedGameObject = this.spawnedLevelBlocks[this.spawnedLevelBlocks.Count - 1];
|
||||
blockObjToSpawn = levelBlocks[0];
|
||||
}
|
||||
|
||||
Debug.Log("Spawn" + blockToSpawn);
|
||||
|
||||
lastBlock = instantiatedGameObject;
|
||||
spawnedLevelBlocks.Add(lastBlock);
|
||||
lastBlockPrefab = blockObjToSpawn;
|
||||
lastBlockSpawnPoint = instantiatedGameObject.transform.position;
|
||||
blockIndex++;
|
||||
lastBlockPrefab = blockObjToSpawn;
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user