-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAutoMapService.cs
More file actions
123 lines (106 loc) · 3.34 KB
/
AutoMapService.cs
File metadata and controls
123 lines (106 loc) · 3.34 KB
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
using Bindito.Core;
using Calloatti.Config;
using Timberborn.Automation;
using Timberborn.PlayerDataSystem;
using Timberborn.QuickNotificationSystem;
using Timberborn.RelationSystem;
using Timberborn.SelectionSystem;
using Timberborn.SingletonSystem;
using Timberborn.Localization;
using UnityEngine;
using System;
using System.IO;
namespace Calloatti.AutoTools
{
public enum MapDisplayState
{
Hidden,
Single,
Global
}
public partial class AutoMapService : ILoadableSingleton, IPostLoadableSingleton, IUnloadableSingleton, IDisposable
{
private readonly AutomatorRegistry _automatorRegistry;
private readonly EventBus _eventBus;
private readonly AutoMapInputService _inputService;
private readonly QuickNotificationService _notificationService;
private readonly EntitySelectionService _selectionService;
private readonly ILoc _loc;
private MapDisplayState _currentState = MapDisplayState.Hidden;
private Automator _singleVisualizedAutomator;
private Material _lineMaterial;
private bool _isDirty = true;
private int _lastActivePartitionId = -1;
public bool IsReady { get; private set; } = false;
[Inject]
public AutoMapService(
AutomatorRegistry automatorRegistry,
EventBus eventBus,
AutoMapInputService inputService,
QuickNotificationService notificationService,
EntitySelectionService selectionService,
ILoc loc)
{
_automatorRegistry = automatorRegistry;
_eventBus = eventBus;
_inputService = inputService;
_notificationService = notificationService;
_selectionService = selectionService;
_loc = loc;
}
public void Load()
{
InitializeVisuals();
try
{
_currentState = ModStarter.Config.GetEnum<MapDisplayState>("MapDisplayState");
// Load visual tuning variables with your new defaults
_connectionHeightFraction = ModStarter.Config.GetFloat("ConnectionHeightFraction");
_glowWidthMultiplier = ModStarter.Config.GetFloat("GlowWidthMultiplier");
_glowAlpha = ModStarter.Config.GetFloat("GlowAlpha");
_offStateBrightnessMultiplier = ModStarter.Config.GetFloat("OffStateBrightnessMultiplier");
}
catch (Exception e)
{
Debug.LogWarning($"[AutoTools] Load error: {e.Message}");
}
}
public void PostLoad()
{
_eventBus.Register(this);
_inputService.OnToggleAutoMap += ToggleAutoMap;
foreach (Automator automator in _automatorRegistry.Automators)
{
((IRelationOwner)automator).RelationsChanged += OnRelationsChanged;
}
RefreshVisuals(suppressInfoNotification: true);
IsReady = true;
}
public void Unload() => SaveState();
public void SaveState()
{
try
{
if (ModStarter.Config != null)
{
ModStarter.Config.Set("MapDisplayState", _currentState);
ModStarter.Config.Save();
}
}
catch (Exception e)
{
Debug.LogError($"[AutoTools] Save error: {e.Message}");
}
}
public void Dispose()
{
_eventBus.Unregister(this);
_inputService.OnToggleAutoMap -= ToggleAutoMap;
foreach (Automator automator in _automatorRegistry.Automators)
{
((IRelationOwner)automator).RelationsChanged -= OnRelationsChanged;
}
OnDispose();
}
}
}