mirror of
https://github.com/metrostroi-repo/MetrostroiAddon.git
synced 2026-05-02 00:42:29 +00:00
init
This commit is contained in:
37
lua/metrostroi/systems/sys_81_722_passscheme.lua
Normal file
37
lua/metrostroi/systems/sys_81_722_passscheme.lua
Normal file
@@ -0,0 +1,37 @@
|
||||
--------------------------------------------------------------------------------
|
||||
-- 81-722 pass schemes
|
||||
--------------------------------------------------------------------------------
|
||||
-- Copyright (C) 2013-2018 Metrostroi Team & FoxWorks Aerospace s.r.o.
|
||||
-- Contains proprietary code. See license.txt for additional information.
|
||||
--------------------------------------------------------------------------------
|
||||
Metrostroi.DefineSystem("81_722_PassScheme")
|
||||
TRAIN_SYSTEM.DontAccelerateSimulation = true
|
||||
|
||||
function TRAIN_SYSTEM:Initialize()
|
||||
end
|
||||
|
||||
if TURBOSTROI then return end
|
||||
|
||||
function TRAIN_SYSTEM:Initialize()
|
||||
self.PassSchemeCurr = -1
|
||||
self.PassSchemeNext = 0
|
||||
self.PassSchemePath = false
|
||||
end
|
||||
function TRAIN_SYSTEM:CANReceive(source,sourceid,target,targetid,textdata,numdata)
|
||||
if textdata == "Current" then self.Curr = numdata end
|
||||
if textdata == "Arrival" then self.Next = numdata end
|
||||
if textdata == "Path" then self.Path = numdata end
|
||||
end
|
||||
function TRAIN_SYSTEM:Think()
|
||||
local Train = self.Train
|
||||
if Train.Panel.PassSchemePowerL>0 and Train.Panel.PassSchemePowerR>0 then
|
||||
self.PassSchemeCurr = self.Curr or -1
|
||||
self.PassSchemeNext = self.Next or 0
|
||||
self.PassSchemePath = self.Path--not Train.BUV.RevOrientation and self.Path or Train.BUV.RevOrientation and not self.Path
|
||||
--if self.RevOrientation then self.PassSchemePath = not self.PassSchemePath end
|
||||
else
|
||||
self.PassSchemeCurr = 0
|
||||
self.PassSchemeNext = 0
|
||||
self.PassSchemePath = false
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user