changed event gate requirements note

This commit is contained in:
Redo 2020-03-30 22:42:36 -05:00
parent 100f2317c1
commit 7cc28c5e97
2 changed files with 3 additions and 6 deletions

View File

@ -1,8 +1,6 @@
--[[
2019-04-17 -- 2020-03-30
Ideally the gate should ignore event set power if its input is connected to a wiregroup. -- Requirement change: The gate's output will now depend only on the event, and not carry the input at all
However I don't know how to do that right now so I'm going to leave it for later
]]
return function(gate, argv) return function(gate, argv)
gate.ports[2]:setstate(toboolean(argv[1])) gate.ports[2]:setstate(toboolean(argv[1]))

View File

@ -1,5 +1,4 @@
return function(gate) return function(gate)
--gate.ports[2]:setstate(gate.ports[1].state)
gate:cb(bool_to_int[gate.ports[1].state]) gate:cb(bool_to_int[gate.ports[1].state])
end end