OpenComputerScripts/station_2_3.lua

340 lines
12 KiB
Lua
Raw Normal View History

2017-10-17 15:25:53 +08:00
--[[
Station 2/3 Schedule Program
]]
require("util")
2017-10-19 12:46:37 +08:00
local sides = require("sides")
local event = require("event")
2017-10-17 15:25:53 +08:00
-- Config your update functions here (Do not change function name)
2017-10-19 12:46:37 +08:00
local redin1 = proxy("redstone", "")
local redin2 = proxy("redstone", "")
local redout1 = proxy("redstone", "")
local redout2 = proxy("redstone", "")
2017-10-17 15:25:53 +08:00
2017-10-24 10:17:59 +08:00
--[[
Redstone Signals
Direction_[Type][Info]: number
]]
local ab_st, ab_sr, ab_lin, ab_lout
local ba_st, ba_sr, ba_lin, ba_lout
2017-10-17 15:25:53 +08:00
local function updateRedstoneInput()
2017-10-19 12:46:37 +08:00
ab_st = redin1.getInput(sides.north)
ab_sr = redin1.getInput(sides.east)
ba_st = redin1.getInput(sides.south)
ba_sr = redin1.getInput(sides.west)
ab_lin = redin2.getInput(sides.north)
ab_lout = redin2.getInput(sides.east)
ba_lin = redin2.getInput(sides.south)
ba_lout = redin2.getInput(sides.west)
2017-10-17 15:25:53 +08:00
end
2017-10-24 12:22:55 +08:00
-- Redirect Table
local redirect_tb=
{
["ab_st"]={redin1,sides.north},
["ab_sr"]={redin1,sides.east},
["ba_st"]={redin1,sides.south},
["ba_sr"]={redin1,sides.west},
["ab_lin"] = {redin2,sides.north},
["ab_lout"] = {redin2,sides.east},
["ba_lin"] = {redin2,sides.south},
["ba_lout"] = {redin2,sides.west},
["ab_ko"]={redout1,sides.north},
["ab_m"]={redout1,sides.east},
["ab_ks"]={redout1,sides.south},
["mid_ka"]={redout1,sides.west},
["ba_ko"]={redout2,sides.north},
["ba_m"]={redout1,sides.east},
["ba_ks"]={redout1,sides.south},
["mid_kb"]={redout1,sides.west},
["last_unused"]={"unused",sides.north}
}
local function getNameFromRaw(Device,Side)
for k,t in pairs(redirect_tb) do
if(t[1]==Device and t[2]==Side) then
return k
end
end
return nil
end
local function getRawFromName(Name)
return redirect_tb[Name][1],redirect_tb[Name][2]
end
2017-10-17 15:25:53 +08:00
-- Internal Schedule Status (Notice: Program must start without any trains in station)
local mid_direction
2017-10-19 12:46:37 +08:00
local ab_station_time = 0
local ba_station_time = 0
local mid_time = 0
local ab_exit_time = 0
local ba_exit_time = 0
2017-10-24 12:22:55 +08:00
local midab_exit_time = 0 -- Mid needs cool
local midba_exit_time = 0
2017-10-17 15:25:53 +08:00
2017-10-24 10:17:59 +08:00
-- NOOP print function (for release use)
local function noop_print(...)
end
2017-10-24 10:17:59 +08:00
-- Debug Output
local dprint = print
local function debugOutputInfo()
2017-10-24 12:22:55 +08:00
dprint(
"ab_st",ab_st,
"ab_sr",ab_sr,
"ba_st",ba_st,
"ba_sr",ba_sr,
"ab_lin",ab_lin,
"ab_lout",ab_lout,
"ba_lin",ba_lin,
"ba_lout",ba_lout
)
dprint(
"mid_direction",mid_direction,
"ab_station_time",ab_station_time,
"ba_station_time",ba_station_time,
"mid_time",mid_time,
"ab_exit_time",ab_exit_time,
"ba_exit_time",ba_exit_time,
"midab_exit_time",midab_exit_time,
"midba_exit_time",midba_exit_time
)
end
2017-10-17 22:12:08 +08:00
--[[
Internal Functions
]]
2017-10-24 10:17:59 +08:00
local function enabledevice(Name)
2017-10-24 12:22:55 +08:00
local d, s = getRawFromName(Name)
if (d ~= nil and s ~= nil) then
d.setOutput(s, 15)
end
2017-10-24 10:17:59 +08:00
end
local function disabledevice(Name)
2017-10-24 12:22:55 +08:00
local d, s = getRawFromName(Name)
if (d ~= nil and s ~= nil) then
d.setOutput(s, 15)
end
2017-10-24 10:17:59 +08:00
end
-- Notice: RedTick=0.1s GameTick=0.05s
local function delay(loop)
2017-10-24 12:22:55 +08:00
if (loop < 0.2) then
loop = 0.2
end -- Less than 0.1s is useless
os.sleep(loop * 0.5)
2017-10-24 10:17:59 +08:00
end
2017-10-24 12:22:55 +08:00
local running = true
2017-10-24 10:17:59 +08:00
local function clearRedstoneOutput()
2017-10-24 12:22:55 +08:00
disabledevice("ab_ko")
disabledevice("ab_m")
disabledevice("ab_ks")
disabledevice("ba_ko")
disabledevice("ba_m")
disabledevice("ba_ks")
disabledevice("mid_ka")
disabledevice("mid_kb")
2017-10-17 15:25:53 +08:00
end
2017-10-24 10:17:59 +08:00
local function doInit()
-- Flash output to zero.
clearRedstoneOutput()
2017-10-24 12:22:55 +08:00
AddEventListener(
"interrupted",
function()
running = false
print("Interrupt Signal Received.")
return false --Unregister event listener itself
end
)
running = true
end
2017-10-17 15:25:53 +08:00
-- Main Program
2017-10-24 10:17:59 +08:00
local function TCSMain()
doCheck() --TODO
2017-10-17 15:25:53 +08:00
doInit()
2017-10-24 10:17:59 +08:00
while running do
2017-10-17 22:12:08 +08:00
-- Flush input
updateRedstoneInput()
2017-10-24 12:22:55 +08:00
2017-10-17 22:12:08 +08:00
-- Update status
2017-10-19 12:46:37 +08:00
if (ab_station_time > 0) then
ab_station_time = ab_station_time + 1
end
2017-10-19 12:46:37 +08:00
if (ba_station_time > 0) then
ba_station_time = ba_station_time + 1
2017-10-18 08:57:35 +08:00
end
2017-10-19 12:46:37 +08:00
if (mid_time > 0) then
mid_time = mid_time + 1
2017-10-18 08:57:35 +08:00
end
2017-10-19 12:46:37 +08:00
if (ab_exit_time > 0) then
ab_exit_time = ab_exit_time + 1
if (ab_exit_time > 10) then -- Exit will reset in 10 loops (5seconds)
ab_exit_time = 0
end
2017-10-18 08:57:35 +08:00
end
2017-10-19 12:46:37 +08:00
if (ba_exit_time > 0) then
ba_exit_time = ba_exit_time + 1
if (ba_exit_time > 10) then -- Exit will reset in 10 loops (5seconds)
ba_exit_time = 0
end
2017-10-18 08:57:35 +08:00
end
2017-10-24 12:22:55 +08:00
if (midab_exit_time > 0) then
midab_exit_time = midab_exit_time + 1
if (midab_exit_time > 8) then -- MidAB will cool in 8 loops (4seconds)
midab_exit_time = 0
end
2017-10-24 10:17:59 +08:00
end
2017-10-24 12:22:55 +08:00
if (midba_exit_time > 0) then
midba_exit_time = midba_exit_time + 1
if (midba_exit_time > 8) then -- MidBA will cool in 8 loops (4seconds)
midba_exit_time = 0
end
2017-10-24 10:17:59 +08:00
end
2017-10-17 22:12:08 +08:00
-- Judge Incoming bus.
2017-10-19 12:46:37 +08:00
if (ab_st > 0) then -- New incoming bus from A to B
if (ab_sr > 0) then -- This bus want to stop
if (ab_station_time == 0) then -- If AB Station is free
dprint("A-->B Train In")
2017-10-24 10:17:59 +08:00
disabledevice("ab_ks") -- disabe to let it stop
disabledevice("ab_m") -- disable to allow incoming to station
enabledevice("ab_ko") -- enable to allow incoming
delay(0.5) -- delay 50% loop time
disabledevice("ab_ko") -- disable to block another train
2017-10-19 12:46:37 +08:00
ab_station_time = 1 -- Start Time Counter
2017-10-17 22:12:08 +08:00
else -- AB Station is not free
-- This train should wait outside the station
dprint("A-->B Train Pending")
2017-10-17 22:12:08 +08:00
end
else -- This bus want to pass by
2017-10-24 12:22:55 +08:00
if (mid_time == 0 and midba_exit_time == 0) then -- Mid is free and MidBA is cool
dprint("A-->Mid Train In")
2017-10-24 10:17:59 +08:00
enabledevice("ab_m") -- enable motor to let it pass.
enabledevice("mid_ka") -- enable switch from A
disabledevice("mid_kb") -- disable switch to B
2017-10-19 12:46:37 +08:00
mid_direction = "ab"
2017-10-24 10:17:59 +08:00
enabledevice("ab_ko") -- enable to allow incoming
delay(0.5)
disabledevice("ab_ko") -- disable to block another train
2017-10-19 12:46:37 +08:00
mid_time = 1 -- Start time counter
2017-10-17 22:12:08 +08:00
else -- Mid is busy
-- This train should wait outside the station
2017-10-24 12:22:55 +08:00
dprint("A-->Mid Train Pending")
2017-10-17 22:12:08 +08:00
end
end
end
2017-10-19 12:46:37 +08:00
if (ba_st > 0) then -- New incoming bus from B to A
if (ba_sr > 0) then -- This bus want to stop
if (ba_station_time == 0) then -- If BA Station is free
dprint("B-->A Train In")
2017-10-24 10:17:59 +08:00
disabledevice("ba_ks") -- disable to let it stop
disabledevice("ba_m") -- disable to allow incoming to station
enabledevice("ba_ko") -- enable to allow incoming
delay(0.5)
disabledevice("ba_ko") -- disable to block another train
2017-10-19 12:46:37 +08:00
ba_station_time = 1 -- Start Time Counter
2017-10-17 22:12:08 +08:00
else -- BA Station is not free
-- This train should wait outside the station
dprint("B-->A Train Pending")
2017-10-17 22:12:08 +08:00
end
else -- This bus want to pass by
2017-10-24 12:22:55 +08:00
if (mid_time == 0 and midab_exit_time == 0) then -- Mid is free and MidAB is free
dprint("B-->Mid Train In")
2017-10-24 12:22:55 +08:00
enabledevice("ba_m")
-- enable motor to let it pass.
2017-10-24 10:17:59 +08:00
disabledevice("mid_ka")
enabledevice("mid_kb")
enabledevice("ba_ko") -- enable to allow incoming
delay(0.5)
disabledevice("ba_ko") -- disable to block another train
2017-10-19 12:46:37 +08:00
mid_direction = "ba"
mid_time = 1
2017-10-17 22:12:08 +08:00
else -- Mid is busy
-- This train should wait outside the station
2017-10-24 12:22:55 +08:00
dprint("B-->Mid Train Pending")
2017-10-17 22:12:08 +08:00
end
2017-10-19 12:46:37 +08:00
end
2017-10-18 08:57:35 +08:00
end
2017-10-19 12:46:37 +08:00
if (ab_lout > 0 and ab_exit_time == 0) then -- AB next free
-- Judge which train should pass.
if (ab_station_time > 16 and (mid_time > 0 and mid_direction == "ab")) then -- Two Trains
if (ab_station_time > mid_time) then -- StationTrain wait longer.
dprint("A-->B Train Out")
2017-10-19 12:46:37 +08:00
ab_station_time = 0 -- Stop counter
2017-10-24 10:17:59 +08:00
enabledevice("ab_ks") -- enable swith to let it go
ab_exit_time = 1 -- Start Exit Counter
2017-10-19 12:46:37 +08:00
else -- MidTrain wait longer
dprint("Mid-->B Train out")
2017-10-19 12:46:37 +08:00
mid_time = 0 -- Stop Counter
2017-10-24 10:17:59 +08:00
enabledevice("mid_kb") -- enable switch
ab_exit_time = 1 -- Start Exit Counter
midab_exit_time = 1 -- Start mid exit counter
2017-10-19 12:46:37 +08:00
end
elseif (ab_station_time > 16) then --Only Station Train
dprint("A-->B Train Out")
2017-10-24 10:17:59 +08:00
ab_station_time = 0 -- Stop Counter
enabledevice("ab_ks")
ab_exit_time = 1 -- Start exit counter
2017-10-19 12:46:37 +08:00
elseif (mid_time > 0 and mid_direction == "ab") then -- Only Mid Train
dprint("Mid-->B Train Out")
2017-10-24 10:17:59 +08:00
mid_time = 0 -- Stop counter
enabledevice("mid_kb")
ab_exit_time = 1 -- Start exit counter
end -- No train, do nothing
end -- End of AB judge
2017-10-19 12:46:37 +08:00
if (ba_lout > 0 and ba_exit_time == 0) then -- BA next free
-- Judge which train should pass.
if (ba_station_time > 16 and (mid_time > 0 and mid_direction == "ba")) then -- Two Trains
if (ba_station_time > mid_time) then -- StationTrain wait longer.
dprint("B-->A Train Out")
2017-10-19 12:46:37 +08:00
ba_station_time = 0 -- Stop counter
2017-10-24 10:17:59 +08:00
enabledevice("ba_ks") -- enable swith to let it go
ba_exit_time = 1 -- Start exit counter
2017-10-19 12:46:37 +08:00
else -- MidTrain wait longer
dprint("Mid-->A Train Out")
2017-10-19 12:46:37 +08:00
mid_time = 0 -- Stop Counter
2017-10-24 10:17:59 +08:00
enabledevice("mid_ka")
ba_exit_time = 1 -- Start Counter
2017-10-19 12:46:37 +08:00
end
elseif (ba_station_time > 16) then --Only Station Train
dprint("B-->A Train Out")
2017-10-24 10:17:59 +08:00
ba_station_time = 0 -- Stop counter
enabledevice("ba_ks") -- enable swith to let it go
ba_exit_time = 1 -- Start exit counter
2017-10-19 12:46:37 +08:00
elseif (mid_time > 0 and mid_direction == "ba") then -- Only Mid Train
dprint("Mid-->A Train Out")
2017-10-24 10:17:59 +08:00
mid_time = 0 -- Stop Counter
enabledevice("mid_ka")
ba_exit_time = 1 -- Start Counter
end -- No train, do nothing
end -- End of BA judge
2017-10-17 22:12:08 +08:00
debugValueInfo()
2017-10-17 22:12:08 +08:00
-- Sleep for next loop
dprint("==========")
2017-10-24 10:17:59 +08:00
delay(1)
end -- End of while loop
-- Block All Trains on terminate.
clearRedstoneOutput()
2017-10-19 12:46:37 +08:00
end
2017-10-24 10:17:59 +08:00
print("Train Control System Start!")
TCSMain()
2017-10-24 12:22:55 +08:00
print("Train Control System Stop!")