63 lines
2.1 KiB
C#
63 lines
2.1 KiB
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
/// <summary>
|
|
/// A utility class to spawn entities into the world based on
|
|
/// their <see cref="EntityType"/> and .
|
|
/// </summary>
|
|
public class Spawner : MonoBehaviour {
|
|
/// <summary>
|
|
/// The <see cref="SyncDB"/> this <see cref="Spawner"/> should be using to
|
|
/// set entities' IDs.
|
|
/// </summary>
|
|
public SyncDB SyncDB;
|
|
/// <summary>
|
|
/// The <see cref="EntityType.PC"/> prefab.
|
|
/// </summary>
|
|
public GameObject PCEntityPrefab;
|
|
/// <summary>
|
|
/// The <see cref="EntityType.NPC"/> prefab.
|
|
/// </summary>
|
|
public GameObject NPCEntityPrefab;
|
|
|
|
/// <summary>
|
|
/// Spawns an entity and returns that entity.
|
|
/// </summary>
|
|
/// <param name="type">Type.</param>
|
|
/// <param name="position">Position.</param>
|
|
/// <param name="ids">The ids of the entity's synced components. Should be
|
|
/// set if they exist already (eg. the server has sent them over). These
|
|
/// ids should be from <see cref="SyncDB.GetEntityIDs"/>. To create new
|
|
/// ids, leave as the default (null).</param>
|
|
public GameObject Spawn(EntityType type, Vector3 position, uint[] ids = null) {
|
|
GameObject Spawned = null;
|
|
switch (type) {
|
|
case EntityType.PC:
|
|
Spawned = Instantiate(PCEntityPrefab, position, new Quaternion(), transform);
|
|
break;
|
|
case EntityType.NPC:
|
|
Spawned = Instantiate(NPCEntityPrefab, position, new Quaternion(), transform);
|
|
break;
|
|
}
|
|
if (Spawned != null) {
|
|
if (ids != null) {
|
|
SyncDB.AddEntity(Spawned, ids);
|
|
} else {
|
|
SyncDB.AddEntity(Spawned, SyncDB.GetNewEntityIDs(Spawned));
|
|
}
|
|
}
|
|
return Spawned;
|
|
}
|
|
|
|
private void Start() {
|
|
Spawn(EntityType.PC, new Vector3());
|
|
}
|
|
|
|
private void Update() {
|
|
if (Input.GetButtonDown("Jump") && !Term.IsVisible()) {
|
|
Spawn(EntityType.NPC, new Vector3(Random.Range(-1f, 1f), 0, Random.Range(-2f, 2f)));
|
|
}
|
|
}
|
|
}
|