@@ -2,7 +2,7 @@ import JOLT from "@/util/loading/JoltSyncLoader"
2
2
import Mechanism from "../physics/Mechanism"
3
3
import WorldSystem from "../WorldSystem"
4
4
import Brain from "./Brain"
5
- import Driver , { makeDriverID } from "./driver/Driver"
5
+ import Driver , { DriverType , makeDriverID } from "./driver/Driver"
6
6
import Stimulus , { makeStimulusID , StimulusType } from "./stimulus/Stimulus"
7
7
import HingeDriver from "./driver/HingeDriver"
8
8
import WheelDriver from "./driver/WheelDriver"
@@ -11,6 +11,10 @@ import HingeStimulus from "./stimulus/HingeStimulus"
11
11
import WheelRotationStimulus from "./stimulus/WheelStimulus"
12
12
import SliderStimulus from "./stimulus/SliderStimulus"
13
13
import ChassisStimulus from "./stimulus/ChassisStimulus"
14
+ import IntakeDriver from "./driver/IntakeDriver"
15
+ import World from "../World"
16
+ import MirabufSceneObject from "@/mirabuf/MirabufSceneObject"
17
+ import EjectorDriver from "./driver/EjectorDriver"
14
18
15
19
class SimulationSystem extends WorldSystem {
16
20
private _simMechanisms : Map < Mechanism , SimulationLayer >
@@ -79,6 +83,8 @@ class SimulationLayer {
79
83
constructor ( mechanism : Mechanism ) {
80
84
this . _mechanism = mechanism
81
85
86
+ const assembly = [ ...World . SceneRenderer . sceneObjects . values ( ) ] . find ( x => ( x as MirabufSceneObject ) . mechanism == mechanism ) as MirabufSceneObject
87
+
82
88
// Generate standard drivers and stimuli
83
89
this . _drivers = new Map ( )
84
90
this . _stimuli = new Map ( )
@@ -103,8 +109,31 @@ class SimulationLayer {
103
109
this . _stimuli . set ( JSON . stringify ( stim . id ) , stim )
104
110
}
105
111
} )
106
- const chassisStim = new ChassisStimulus ( { type : StimulusType . Stim_ChassisAccel , guid : "unknown" } , mechanism . nodeToBody . get ( mechanism . rootBody ) ! )
107
- this . _stimuli . set ( JSON . stringify ( chassisStim ) , chassisStim )
112
+
113
+ const chassisStim = new ChassisStimulus (
114
+ { type : StimulusType . Stim_ChassisAccel , guid : "CHASSIS_GUID" } ,
115
+ mechanism . nodeToBody . get ( mechanism . rootBody ) ! ,
116
+ { GUID : "CHASSIS_GUID" , name : "Chassis" }
117
+ )
118
+ this . _stimuli . set ( JSON . stringify ( chassisStim . id ) , chassisStim )
119
+
120
+ if ( assembly ) {
121
+ const intakeDriv = new IntakeDriver (
122
+ { type : DriverType . Driv_Intake , guid : "INTAKE_GUID" } ,
123
+ assembly ,
124
+ { GUID : "INTAKE_GUID" , name : "Intake" }
125
+ )
126
+ const ejectorDriv = new EjectorDriver (
127
+ { type : DriverType . Driv_Ejector , guid : "EJECTOR_GUID" } ,
128
+ assembly ,
129
+ { GUID : "EJECTOR_GUID" , name : "Ejector" }
130
+ )
131
+ this . _drivers . set ( JSON . stringify ( ejectorDriv . id ) , ejectorDriv )
132
+ this . _drivers . set ( JSON . stringify ( intakeDriv . id ) , intakeDriv )
133
+ } else {
134
+ console . debug ( "No Assembly found with given mechanism, skipping intake and ejector..." )
135
+ }
136
+
108
137
}
109
138
110
139
public Update ( deltaT : number ) {
0 commit comments