update logic functions to remove metatable OOP

This commit is contained in:
Redo
2020-09-10 12:58:25 -05:00
parent 4095d193ff
commit ab19de7333
206 changed files with 22726 additions and 3544 deletions

View File

@@ -15,28 +15,32 @@ datablock fxDTSBrickData(LogicGate_8bitDivider_Data)
logicUIName = "8bit Divider";
logicUIDesc = "Divides A by B";
logicUpdate = "return function(gate) local a, b, n = 0, 0 " @
"for i = 1, 8 do " @
"local n = 2^(i-1) " @
"a = a + bool_to_int[gate.ports[i].state] * n " @
"b = b + bool_to_int[gate.ports[i+8].state] * n " @
"end " @
"if b ~= 0 then " @
"local q = math.floor(a/b) " @
"local r = a-q*b " @
"for i = 1, 8 do " @
"local n = 2^(i-1) " @
"gate.ports[i+16]:setstate(bit.band(q, n) > 0) " @
"gate.ports[i+24]:setstate(bit.band(r, n) > 0) " @
"end " @
"else " @
"for i = 1, 8 do " @
"gate.ports[i+16]:setstate(false) " @
"gate.ports[i+24]:setstate(false) " @
"end " @
"end end";
logicUpdate =
"return function(gate) " @
" local a, b, n = 0, 0 " @
" for i = 1, 8 do " @
" local n = 2^(i-1) " @
" a = a + bool_to_int[Gate.getportstate(gate, i )] * n " @
" b = b + bool_to_int[Gate.getportstate(gate, i+8)] * n " @
" end " @
" if b ~= 0 then " @
" local q = math.floor(a/b) " @
" local r = a-q*b " @
" for i = 1, 8 do " @
" local n = 2^(i-1) " @
" Gate.setportstate(gate, i+16, bit.band(q, n) > 0) " @
" Gate.setportstate(gate, i+24, bit.band(r, n) > 0) " @
" end " @
" else " @
" for i = 1, 8 do " @
" Gate.setportstate(gate, i+16, false) " @
" Gate.setportstate(gate, i+24, false) " @
" end " @
" end " @
"end"
;
numLogicPorts = 32;
logicPortType[0] = 1;