-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathObjectManager.cs
165 lines (142 loc) · 4.28 KB
/
ObjectManager.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using UnityEngine;
/// <summary>
/// Handles arbitrary object behaviour spawned by the object manager panel
/// </summary>
public class ObjectManager : MonoBehaviour
{
public GameObject objectManagerPanel;
[SerializeField]
private GameObject realObjects;
private Dictionary<string, GameObject> originalObjects = new Dictionary<string, GameObject>();
private Dictionary<string, GameObject> spawnedObjects = new Dictionary<string, GameObject>();
private GameObject lastInteractedObject;
private GameObject userDefinedOjbect;
/// <summary>
/// Gives each instance a new ID
/// </summary>
private int n_clones;
// Start is called before the first frame update
void Start()
{
foreach (Transform child in realObjects.transform)
{
child.gameObject.SetActive(false);
originalObjects.Add(child.name, child.gameObject);
}
}
// Update is called once per frame
void Update()
{
}
/// <summary>
/// Spawns an instance of the assigned object
/// </summary>
public void SpawnObject(string type)
{
if (!originalObjects.TryGetValue(type, out GameObject objectModel))
{
Debug.Log($"Object type not available: {type}");
return;
}
GameObject clone = Instantiate(
objectModel,
objectManagerPanel.transform.position + new Vector3(.0f, .1f, .0f),
objectManagerPanel.transform.rotation * objectModel.transform.rotation,
objectModel.transform.parent);
clone.name = $"{objectModel.name}-{n_clones++}";
clone.transform.localScale *= 2;
spawnedObjects.Add(clone.name, clone);
clone.SetActive(true);
}
/// <summary>
/// Sets the tracked last interacted object to the last object hovered over (normally triggered in object manipulator)
/// </summary>
/// <param name="obj"></param>
public void SetLastInteractedObject(GameObject obj)
{
lastInteractedObject = obj;
}
/// <summary>
/// Removes the last interacted object from the scene
/// </summary>
public void RemoveLastInteractedObject()
{
spawnedObjects.Remove(lastInteractedObject.name);
Destroy(lastInteractedObject);
lastInteractedObject = null;
}
/// <summary>
/// Gives the name of the last interacted object
/// </summary>
/// <returns></returns>
public string GetLastInteractedObjectName()
{
if (lastInteractedObject == null)
{
return "None";
}
return lastInteractedObject.name;
}
/// <summary>
/// Get original objects by name
/// </summary>
/// <returns></returns>
public GameObject GetOriginalObject(string name)
{
if (originalObjects.TryGetValue(name, out GameObject obj))
{
return obj;
}
return null;
}
/// <summary>
/// Get spawned objects by name
/// </summary>
/// <returns></returns>
public GameObject GetSpawnedObject(string name)
{
if (spawnedObjects.TryGetValue(name, out GameObject obj))
{
return obj;
}
return null;
}
/// <summary>
/// Get a list of spawned objects
/// </summary>
/// <returns></returns>
public List<GameObject> GetSpawnedObjects()
{
return spawnedObjects.Values.ToList();
}
/// <summary>
/// Only use for when the user is defining an object with the bounding box
/// </summary>
public void AddSpawnedObject(GameObject userObj)
{
if (spawnedObjects.ContainsKey("userdefined"))
{
// Remove old user created object if there is one
spawnedObjects.Remove("userdefined");
}
userObj.name = "userdefined";
spawnedObjects.Add(userObj.name, userObj);
Debug.Log("Added object to the list of spawned objects");
userDefinedOjbect = userObj;
}
public GameObject GetUserDefinedObject()
{
return userDefinedOjbect;
}
public void ActivateRealObjects()
{
realObjects.SetActive(true);
}
public void DeactivateRealObjects()
{
realObjects.SetActive(false);
}
}