summary refs log tree commit diff stats
path: root/GameState.cs
blob: bdf5760adfbdd1a78c5eeaa44e612d612ec3f9ec (plain) (blame)
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
using System;
using System.Linq;
using System.Reflection;
using UnityEngine;
using UnityEngine.SceneManagement;

namespace ManifoldGardenArchipelago
{
    public class GameState
    {
        public static LevelSystems GetLevelSystems(Component component)
        {
            return component.gameObject.scene.GetRootGameObjects().Single((obj) => obj.name == "Level Systems").GetComponent<LevelSystems>();
        }

        public static LevelSystems GetLevelSystems(Scene scene)
        {
            return scene.GetRootGameObjects().Single((obj) => obj.name == "Level Systems").GetComponent<LevelSystems>();
        }

        public static SceneItemReference GetChainListenerSceneReference(Component component)
        {
            LevelSystems levelSystem = GetLevelSystems(component);

            for (int i = 0; i < levelSystem.chainListeners.Count(); i++)
            {
                if (levelSystem.chainListeners[i] == component)
                {
                    return new(component.gameObject.scene.name, i);
                }
            }

            throw new Exception("Shouldn't happen");
        }

        public static SceneItemReference GetButtonSceneReference(ButtonLineActivator arg)
        {
            LevelSystems levelSystem = GetLevelSystems(arg);

            for (int i = 0; i < levelSystem.buttonLineActivators.Count(); i++)
            {
                if (levelSystem.buttonLineActivators[i] == arg)
                {
                    return new(arg.gameObject.scene.name, i);
                }
            }

            throw new Exception("Shouldn't happen");
        }

        public static SceneItemReference GetPadSceneReference(CubeLineActivator arg)
        {
            LevelSystems levelSystem = GetLevelSystems(arg);

            for (int i = 0; i < levelSystem.cubeLineActivators.Count(); i++)
            {
                if (levelSystem.cubeLineActivators[i] == arg)
                {
                    return new(arg.gameObject.scene.name, i);
                }
            }

            throw new Exception("Shouldn't happen");
        }

        public static SceneItemReference GetSocketSceneReference(CubeReceiverController arg)
        {
            LevelSystems levelSystem = GetLevelSystems(arg);

            for (int i = 0; i < levelSystem.cubeReceiverControllers.Count(); i++)
            {
                if (levelSystem.cubeReceiverControllers[i] == arg)
                {
                    return new(arg.gameObject.scene.name, i);
                }
            }

            throw new Exception("Shouldn't happen");
        }

        public static SceneItemReference GetSphereSceneReference(SphereController arg)
        {
            LevelSystems levelSystem = GetLevelSystems(arg);

            for (int i = 0; i < levelSystem.sphereControllers.Count(); i++)
            {
                if (levelSystem.sphereControllers[i] == arg)
                {
                    return new(arg.gameObject.scene.name, i);
                }
            }

            throw new Exception("Shouldn't happen");
        }

        public static SceneItemReference GetWaterwheelSceneReference(WaterDetector arg)
        {
            LevelSystems levelSystem = GetLevelSystems(arg);

            for (int i = 0; i < levelSystem.waterDetectors.Count(); i++)
            {
                if (levelSystem.waterDetectors[i] == arg)
                {
                    return new(arg.gameObject.scene.name, i);
                }
            }

            throw new Exception("Shouldn't happen");
        }

        public static void EvaluateGameStateListeners(GameStateListeners listeners)
        {
            foreach (var location in listeners.locations)
            {
                if (location.Value.Check() == Requirement.Decision.Yes)
                {
                    Plugin.archipelagoManager.CheckLocation(location.Key);
                }
            }

            foreach (var door in listeners.doors)
            {
                Requirement.Decision decision = door.Value.Check();
                if (decision == Requirement.Decision.Maybe)
                {
                    continue;
                }

                bool shouldOpen = (decision == Requirement.Decision.Yes);
                //Plugin.Logger.LogInfo($"{door.Key}: {door.Value} -> {shouldOpen}");

                if (SceneManager.GetSceneByName(door.Key.scene) is Scene doorScene && doorScene.isLoaded)
                {
                    LevelSystems levelSystems = GetLevelSystems(doorScene);
                    if (levelSystems.isActiveAndEnabled)
                    {
                        LineDoorController ldc = levelSystems.chainListeners[door.Key.index].GetComponent<LineDoorController>();
                        ldc.chains.Clear();

                        FieldInfo fieldInfo = typeof(LineDoorController).GetField("doorShouldOpenImmediatelyOnEnable", BindingFlags.Instance | BindingFlags.NonPublic);
                        fieldInfo.SetValue(ldc, shouldOpen);

                        MethodInfo methodInfo = typeof(LineDoorController).GetMethod("SetDoorOpenCloseStateAnimated", BindingFlags.NonPublic | BindingFlags.Instance);
                        methodInfo.Invoke(ldc, [shouldOpen, false]);

                        ldc.saveData.isOpen = shouldOpen;
                    }
                }
            }

            foreach (var smokeWall in listeners.smokeWalls)
            {
                Requirement.Decision decision = smokeWall.Value.Check();
                if (decision == Requirement.Decision.Maybe)
                {
                    continue;
                }

                bool shouldOpen = (decision == Requirement.Decision.Yes);
                //Plugin.Logger.LogInfo($"{smokeWall.Key}: {smokeWall.Value} -> {shouldOpen}");

                if (SceneManager.GetSceneByName(smokeWall.Key.scene) is Scene smokeScene && smokeScene.isLoaded)
                {
                    LevelSystems levelSystems = GetLevelSystems(smokeScene);
                    if (levelSystems.isActiveAndEnabled)
                    {
                        SolidStateController ldc = levelSystems.chainListeners[smokeWall.Key.index].GetComponent<SolidStateController>();
                        ldc.chains.Clear();

                        FieldInfo fieldInfo = typeof(SolidStateController).GetField("m_isSolid", BindingFlags.Instance | BindingFlags.NonPublic);
                        fieldInfo.SetValue(ldc, !shouldOpen);
                    }
                }
            }

            foreach (var worldGrow in listeners.worldGrows)
            {
                if (worldGrow.Value.Check() == Requirement.Decision.Yes)
                {
                    if (SceneManager.GetSceneByName(worldGrow.Key.scene) is Scene gardenScene && gardenScene.isLoaded)
                    {
                        LevelSystems levelSystems = GetLevelSystems(gardenScene);
                        if (levelSystems.isActiveAndEnabled)
                        {
                            DarkModeCollapsedCubeWorldGrow ldc = levelSystems.chainListeners[worldGrow.Key.index].GetComponent<DarkModeCollapsedCubeWorldGrow>();
                            ldc.chains.Clear();

                            FieldInfo fieldInfo = typeof(DarkModeCollapsedCubeWorldGrow).GetField("m_grown", BindingFlags.Instance | BindingFlags.NonPublic);
                            fieldInfo.SetValue(ldc, true);
                        }
                    }
                }
            }
        }
    }
}