-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathServiceLocator.cs
59 lines (54 loc) · 1.68 KB
/
ServiceLocator.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
using UnityEngine;
using System.Collections.Generic;
namespace RenderHeads.Services
{
public static class ServiceLocator
{
private static List<Service> _services = new List<Service>();
public static T GetService<T>() where T: Service
{
foreach (Service service in _services)
{
if (typeof(T) == service.GetType())
{
return (T) service;
}
}
return default;
}
public static void AddService<T>(T service) where T : Service
{
foreach (Service existing in _services)
{
if (typeof(T) == existing.GetType())
{
Debug.LogError($"[ServiceLocator] Cannot register multiple services of the same type: {typeof(T)}. Not registering duplicate.");
return;
}
}
_services.Add(service);
}
public static void RemoveService(Service service)
{
for ( int i =0; i < _services.Count; i++)
{
Service existing = _services[i];
if ( service.GetType() == existing.GetType())
{
_services.RemoveAt(i);
}
}
}
public static void RemoveService<T>() where T : Service
{
for ( int i =0; i < _services.Count; i++)
{
Service existing = _services[i];
if (typeof(T) == existing.GetType())
{
_services.RemoveAt(i);
}
}
}
}
}