mirror of
https://github.com/metrostroi-repo/MetrostroiAddon.git
synced 2026-05-02 00:42:29 +00:00
112 lines
4.8 KiB
Lua
112 lines
4.8 KiB
Lua
--------------------------------------------------------------------------------
|
||
-- Панель управления E
|
||
--------------------------------------------------------------------------------
|
||
Metrostroi.DefineSystem("81_508_Panel")
|
||
|
||
function TRAIN_SYSTEM:Initialize()
|
||
-- Выключатель батареи (ВБ)
|
||
self.Train:LoadSystem("VB","Relay","Switch", {bass = true})
|
||
|
||
-- Buttons on the panel
|
||
self.Train:LoadSystem("DoorSelect","Relay","Switch", {bass = true, normally_closed = false })
|
||
self.Train:LoadSystem("DIPon","Relay","Switch", {bass = true})
|
||
self.Train:LoadSystem("DIPoff","Relay","Switch", {bass = true})
|
||
self.Train:LoadSystem("VozvratRP","Relay","Switch", {bass = true})
|
||
self.Train:LoadSystem("RezMK","Relay","Switch", {bass = true})
|
||
self.Train:LoadSystem("KU1","Relay","Switch", {bass = true})
|
||
self.Train:LoadSystem("VAH","Relay","Switch", {bass = true})
|
||
self.Train:LoadSystem("VAD","Relay","Switch", {bass = true})
|
||
self.Train:LoadSystem("VUS","Relay","Switch", {bass = true})
|
||
self.Train:LoadSystem("VUD1","Relay","Switch", {bass = true })
|
||
self.Train:LoadSystem("VUD2","Relay","Switch", { normally_closed = true, bass = true }) -- Doors close
|
||
self.Train:LoadSystem("VUD2L","Relay","Switch", { bass = true }) -- Doors close
|
||
self.Train:LoadSystem("VDL","Relay","Switch", {bass = true}) -- Doors left open
|
||
self.Train:LoadSystem("KDL","Relay","Switch", {bass = true})
|
||
self.Train:LoadSystem("KDP","Relay","Switch", {bass = true})
|
||
self.Train:LoadSystem("KRZD","Relay","Switch", {bass = true})
|
||
self.Train:LoadSystem("KSN","Relay","Switch", {bass = true})
|
||
self.Train:LoadSystem("VZ1","Relay","Switch", {bass = true})
|
||
self.Train:LoadSystem("OtklAVU","Relay","Switch", {bass = true})
|
||
self.Train:LoadSystem("ARS","Relay","Switch", {bass = true})
|
||
self.Train:LoadSystem("ALS","Relay","Switch", {bass = true})
|
||
self.Train:LoadSystem("KVT","Relay","Switch", {bass = true})
|
||
self.Train:LoadSystem("KRP","Relay","Switch", {bass = true})
|
||
self.Train:LoadSystem("KRR","Relay","Switch", {bass = true})
|
||
--self.Train:LoadSystem("KB","Relay","Switch", {bass = true})
|
||
|
||
self.Train:LoadSystem("KSD","Relay","Switch", {bass = true})
|
||
self.Train:LoadSystem("DP","Relay","Switch", {bass = true, normally_closed = true})
|
||
|
||
|
||
|
||
self.Train:LoadSystem("Custom1","Relay","Switch",{bass = true})
|
||
self.Train:LoadSystem("Custom2","Relay","Switch",{bass = true})
|
||
self.Train:LoadSystem("Custom3","Relay","Switch",{bass = true})
|
||
self.Train:LoadSystem("R_UNch","Relay","Switch", {bass = true})
|
||
self.Train:LoadSystem("R_ZS","Relay","Switch", {av = true})
|
||
self.Train:LoadSystem("R_G","Relay","Switch", {bass = true})
|
||
self.Train:LoadSystem("R_Radio","Relay","Switch", {av = true})
|
||
self.Train:LoadSystem("R_Program1","Relay","Switch", {bass = true})
|
||
self.Train:LoadSystem("R_Program2","Relay","Switch", {bass = true})
|
||
self.Train:LoadSystem("RC1","Relay","Switch",{bass = true, normally_closed = true })
|
||
|
||
-- Педаль бдительности (ПБ)
|
||
self.Train:LoadSystem("PB","Relay","Switch", {bass = true})
|
||
|
||
-- Автоматические выключатели (АВ)
|
||
self.Train:LoadSystem("VU3","Relay","Switch", {bass = true})
|
||
self.Train:LoadSystem("VU1","Relay","Switch", {bass = true})
|
||
self.Train:LoadSystem("VU2","Relay","Switch", {bass = true, normally_closed = true})
|
||
self.Train:LoadSystem("AV8B","Relay","Switch", {bass = true})
|
||
self.Train:LoadSystem("VU","Relay","Switch", {bass = true, normally_closed = false})
|
||
self.Train:LoadSystem("KDLK","Relay","Switch", {bass = true, normally_closed = true })
|
||
self.Train:LoadSystem("VDLK","Relay","Switch", {bass = true, normally_closed = true })
|
||
self.Train:LoadSystem("KDPK","Relay","Switch", {bass = true, normally_closed = true })
|
||
self.Train:LoadSystem("KAHK","Relay","Switch", {bass = true, normally_closed = true })
|
||
self.Train:LoadSystem("L_3","Relay","Switch",{bass = true})
|
||
|
||
self.Train:LoadSystem("RST","Relay","Switch", {bass = true})
|
||
self.Train:LoadSystem("IGLA","Relay","Switch", {bass = true})
|
||
|
||
-- Map of AV switches to indexes on panel
|
||
self:InitializeAVMap()
|
||
|
||
self.CabinLight = 0
|
||
self.HeadLights1 = 0
|
||
self.HeadLights2 = 0
|
||
self.HeadLights3 = 0
|
||
self.RedLightLeft = 0
|
||
self.RedLightRight = 0
|
||
self.EmergencyLight = 0
|
||
self.GreenRP = 0
|
||
self.RedRP = 0
|
||
self.KUP = 0
|
||
self.V1 = 0
|
||
self.AVU = 0
|
||
self.Ring = 0
|
||
self.SD = 0
|
||
self.TrainBrakes = 0
|
||
self.TrainRP = 0
|
||
self.TrainDoors = 0
|
||
end
|
||
|
||
function TRAIN_SYSTEM:ClientInitialize()
|
||
self:InitializeAVMap()
|
||
end
|
||
|
||
function TRAIN_SYSTEM:Outputs()
|
||
return { "CabinLight", "HeadLights1", "HeadLights2", "HeadLights3",
|
||
"RedLightLeft", "RedLightRight", "EmergencyLight",
|
||
"GreenRP", "RedRP", "KUP", "V1", "AVU", "Ring", "SD",
|
||
"TrainBrakes", "TrainRP", "TrainDoors" }
|
||
end
|
||
|
||
function TRAIN_SYSTEM:InitializeAVMap()
|
||
self.AVMap = {
|
||
61,55,54,56,27,21,10,53,43,45,42,41,
|
||
"VU",64,63,50,51,23,14,75, 1, 2, 3,17,
|
||
62,29, 5, 6, 8,20,25,22,30,39,44,80,
|
||
65,"L_5",24,32,31,16,"KSD",12, 7, 9,46,47
|
||
}
|
||
end
|