Advertisement
neuroticfox

Draconic Control v15.1 [sMAT] [Lua 5.3 / 5.2]

Apr 5th, 2025 (edited)
406
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 29.04 KB | None | 0 0
  1.  :: start ::
  2.  -- Locals & Requirements
  3.     local component = require("component")
  4.     local event = require("event")
  5.     local term = require("term")
  6.     local gpu = component.gpu
  7.     local screen = component.screen
  8.     local unicode= require("unicode")
  9.     local reactorOutputMultiplier = 1
  10.     local cutoffTemp = 9005
  11.     local chaosMode = 0
  12.     local tempDrop = 0
  13.     local devMode = 0
  14.     local deviation = 0
  15.     local cVar = "Do not use Chaos Mode with less than one block of fuel"
  16.     local tArgs = {...}
  17.     local Arg0 = tonumber(tArgs[1])
  18.     local Arg1 = tonumber(tArgs[2])
  19.     local Arg2 = tonumber(tArgs[3])
  20.     local Arg3 = tonumber(tArgs[4])
  21.     local ratioX, ratioY = screen.getAspectRatio()
  22.     local maxX, maxY = gpu.maxResolution()
  23.     gpu.setResolution(math.min(ratioX*55, maxX), math.min(ratioY*25,maxY))
  24. term.clear()
  25. term.setCursor(0, 0)
  26. os.sleep(0.5)
  27.  -- pArgs
  28. if not Arg0 then
  29. os.execute(cls)
  30. print("           Draconic Control 15.1 xMAT")
  31. print("           1.12 - 1.16 Compatible-ish")
  32. print()
  33. print("dc15 [Mult] [Temp] [Field] [Mode] [fieldOffset]")
  34. print()
  35. print("Arguments")
  36. print()
  37. print("[Mult]           -   Reactor Output Multiplier")
  38. print("1.16 [10]            1.12 [1]")
  39. print()
  40. print("[Temp]           -   Desired Reactor Temperature")
  41. print("Default [8000]       Range [2500-8000]")
  42. print()
  43. print("[Field]          -   Desired Field Strength %")
  44. print("Default [15]         Range [0.5-99]")
  45. print()
  46. print("[Mode]           -   Set Desired Program Mode")
  47. print("Default [1]          Range [1-3]")
  48. print("[1-3]            -   GUI, DEV, CLI")
  49. print()
  50. print()
  51. print()
  52. print("       Compiled by BrokenSynapse & AwesomeAlec1")
  53. print()
  54. print("Thanks to Maurdekye for creating the base of this program:")
  55. print("             https://youtu.be/iLvkk41K84E")
  56. print()
  57. print(" Thanks to AwesomeAlec1 for creating the control script:")
  58. print("             https://youtu.be/CLku1ckXpeU")
  59. print()
  60. print("  Thanks to MightyPirates for being so gracious as to")
  61. print("   let me fix what they broke by never using Lua 5.3")
  62. print()
  63. print("   And a very special thanks to ZanBorg for breaking")
  64. print("      this script until it doesn't break anymore.")
  65. goto fin
  66. end
  67.  -- sArgs
  68. local reactorOutputMultiplier = Arg0
  69. local idealTemp = tonumber(tArgs[2]) or 8000
  70. local idealField = tonumber(tArgs[3]) or 15
  71. local Mode = Arg3 or 1
  72.  -- Components
  73.     if not component.isAvailable("draconic_reactor") then
  74.         print("Reactor not connected. Please connect computer to reactor with an Adapter block.")
  75.         os.exit()
  76.     end
  77.     local reactor = component.draconic_reactor
  78.     local info = reactor.getReactorInfo()
  79.     local fluxGates = {}
  80.     for x,y in pairs(component.list("flux_gate")) do
  81.         fluxGates[#fluxGates+1] = x
  82.     end
  83.     if #fluxGates < 2 then
  84.         print("Not enough flux gates connected; please connect inflow and outflow flux gates with Adapter blocks.")
  85.         os.exit()
  86.     end
  87.     local inputFlux = component.proxy(fluxGates[1])
  88.     local outputFlux = component.proxy(fluxGates[2])
  89.     outputFlux.setOverrideEnabled(true)
  90.     inputFlux.setOverrideEnabled(true)
  91.     if not inputFlux or not outputFlux then
  92.         print("Not enough flux gates connected; please connect inflow and outflow flux gates with Adapter blocks.")
  93.         os.exit()
  94.     end
  95.  -- AutoSet Gates
  96.         reactor.chargeReactor()
  97.         satOne = info.energySaturation
  98.         fieldOne = info.fieldStrength
  99.         inputFlux.setFlowOverride(1.0)
  100.         os.sleep(0.5)
  101.         satTwo = info.energySaturation
  102.         fieldTwo = info.fieldStrength
  103.         inputFlux.setFlowOverride(0.0)
  104.         reactor.stopReactor()
  105.     if satTwo <= satOne or fieldTwo <= fieldOne then
  106.     local oldAddr = inputFlux.address
  107.       inputFlux = component.proxy(outputFlux.address)
  108.       outputFlux = component.proxy(oldAddr)
  109.     end
  110.  -- Functions
  111. function exit_msg(msg)
  112.     term.clear()
  113.     print(msg)
  114.     os.exit()
  115. end
  116. function modifyTemp(offset)
  117.     local newTemp = idealTemp + offset
  118.     if newTemp > 8000 and Mode == 1 then
  119.         newTemp = 8000
  120.     elseif newTemp > 15000 then
  121.         newTemp = 15000
  122.     elseif newTemp < 2000 then
  123.         newTemp = 2000
  124.     end
  125.         idealTemp = newTemp
  126.     end
  127. function modifyField(offset)
  128.     local newField = idealField + offset
  129.     if newField > 99 then
  130.         newField = 99
  131.     elseif newField < 99 and chaosMode == 1 then
  132.         newField = 99
  133.     elseif newField < 1.0 and Mode == 1 or Mode == 3 then
  134.         newField = 1.0
  135.     elseif newField < 0.5 and Mode == 2 then
  136.         newField = 0.5
  137.     end
  138.         idealField = newField
  139.     end
  140.  -- Buttons
  141.     local adj_button_width = 19
  142.     local tempOffsetX = 62
  143.     local tempOffsetY = 2
  144.     local fieldOffsetX = tempOffsetX + adj_button_width + 2
  145.     local fieldOffsetY = 2
  146.     local cutoffField = 0.75
  147.     highest_use = 0.1
  148.     local buttons = {
  149.     startButton={
  150.     x=2,
  151.     y=20,
  152.     width=18,
  153.     height=1,
  154.     text="Start",
  155.     textcolor = 0x0000AA,
  156.     action=function()
  157.       if info.status == "cooling" or info.status == "cold" then
  158.             chaosMode = 0
  159.             idealField = Arg2
  160.             cutoffField = 0.4
  161.             idealTemp = Arg1
  162.             cVar = "Do not use Chaos Mode with less than one block of fuel"
  163.         reactor.chargeReactor()
  164.       elseif info.status == "stopping" then
  165.             chaosMode = 0
  166.             idealField = Arg2
  167.             cutoffField = 0.4
  168.             idealTemp = Arg1
  169.             cVar = "Do not use Chaos Mode with less than one block of fuel"
  170.         reactor.activateReactor()
  171.       end
  172.     end,
  173.     condition=function() return info.status ~= "running" and info.status ~= "warming_up" end
  174.   },
  175.   shutdownButton={
  176.     x=2,
  177.     y=20,
  178.     width=18,
  179.     height=1,
  180.     text="Shutdown",
  181.     textcolor = 0xAA0000,
  182.     action=function()
  183.     cutoffTemp = 9000
  184.     idealTemp = Arg1
  185.     idealField = Arg2
  186.     cutoffField = 0.4
  187.     chaosMode = 0
  188.     cVar = "Do not use Chaos Mode with less than one block of fuel"
  189.       state = "MASD"
  190.       reactor.stopReactor()
  191.     end,
  192.     condition=function() return info.status == "running" or info.status == "warming_up" end
  193.   },
  194.   chaosMode={
  195.     x=2,
  196.     y=22,
  197.     width=18,
  198.     height=1,
  199.     text=" Chaos Mode",
  200.     textcolor = 0x800080,
  201.     action=function()
  202.         if chaosMode == 0 then
  203.             chaosMode = 1
  204.             cutoffTemp = 19750
  205.             idealField = 99
  206.             cutoffField = 5
  207.             idealTemp = 55537.78
  208.         elseif chaosMode == 1 then
  209.             chaosMode = 0
  210.             idealField = Arg2
  211.             cutoffField = 0.4
  212.             idealTemp = Arg1
  213.         end
  214.     end,
  215.     condition=function() return Mode == 2 and info.status == "running" end
  216.   },
  217.   forceExit={
  218.     x=158,
  219.     y=1,
  220.     width=3,
  221.     height=1,
  222.     text=" X ",
  223.     textcolor = 0xB00000,
  224.     action=function()
  225.         inputFlux.setFlowOverride(250000)
  226.         chaosMode = 0
  227.         idealField = 99
  228.         cutoffField = 0.4
  229.         idealTemp = Arg1
  230.       reactor.stopReactor()
  231.       gpu.setResolution(gpu.maxResolution())
  232.       event_loop = false
  233.       os.execute("cls")
  234.     end,
  235. --    condition=function() return running or shutting_down end
  236.   },
  237.   Update={
  238.     x=22,
  239.     y=22,
  240.     width=18,
  241.     height=1,
  242.     text="Update",
  243.     action=function()
  244.         reactor.stopReactor()
  245.         os.execute("cd /home; pastebin get -f hh14Sxhi dc15; cls; dc15")
  246.     end,
  247.     condition=function() return info.status ~= "running" and info.status ~= "warming_up" end
  248.   },
  249.   switchGates={
  250.     x=2,
  251.     y=22,
  252.     width=18,
  253.     height=1,
  254.     text="Swap Flux Gates",
  255.     action=function()
  256.       cutoffTemp = 10500
  257.       local old_addr = inputFlux.address
  258.       inputFlux = component.proxy(outputFlux.address)
  259.       outputFlux = component.proxy(old_addr)
  260.     end,
  261.     condition=function() return info.status == "cooling" or info.status == "cold" or info.status == "stopping" end
  262.   },
  263.   tempMax={
  264.     x=tempOffsetX,
  265.     y=tempOffsetY,
  266.     width=adj_button_width,
  267.     height=1,
  268.     text="Maximum",
  269.     textcolor = 0x552222,
  270.     action=function()
  271.     idealTemp = 8000 end
  272.   },
  273.   tempPThousand={
  274.     x=tempOffsetX,
  275.     y=tempOffsetY+2,
  276.     width=adj_button_width,
  277.     height=1,
  278.     text="+1000",
  279.     textcolor = 0x552222,
  280.     action=function() modifyTemp(1000) end
  281.   },
  282.   tempPHundred={
  283.     x=tempOffsetX,
  284.     y=tempOffsetY+4,
  285.     width=adj_button_width,
  286.     height=1,
  287.     text="+100",
  288.     textcolor = 0x552222,
  289.     action=function() modifyTemp(100) end
  290.   },
  291.   tempPTen={
  292.     x=tempOffsetX,
  293.     y=tempOffsetY+6,
  294.     width=adj_button_width,
  295.     height=1,
  296.     text="+10",
  297.     textcolor = 0x552222,
  298.     action=function() modifyTemp(10) end
  299.   },
  300.   tempPOne={
  301.     x=tempOffsetX,
  302.     y=tempOffsetY+8,
  303.     width=adj_button_width,
  304.     height=1,
  305.     text="+1",
  306.     textcolor = 0x552222,
  307.     action=function() modifyTemp(1) end
  308.   },
  309.   tempMin={
  310.     x=tempOffsetX,
  311.     y=tempOffsetY+20,
  312.     width=adj_button_width,
  313.     height=1,
  314.     text="Minimum",
  315.     textcolor = 0x552222,
  316.     action=function() modifyTemp(-20000) end
  317.   },
  318.   tempMThousand={
  319.     x=tempOffsetX,
  320.     y=tempOffsetY+18,
  321.     width=adj_button_width,
  322.     height=1,
  323.     text="-1000",
  324.     textcolor = 0x552222,
  325.     action=function() modifyTemp(-1000) end
  326.   },
  327.   tempMHundred={
  328.     x=tempOffsetX,
  329.     y=tempOffsetY+16,
  330.     width=adj_button_width,
  331.     height=1,
  332.     text="-100",
  333.     textcolor = 0x552222,
  334.     action=function() modifyTemp(-100) end
  335.   },
  336.   tempMTen={
  337.     x=tempOffsetX,
  338.     y=tempOffsetY+14,
  339.     width=adj_button_width,
  340.     height=1,
  341.     text="-10",
  342.     textcolor = 0x552222,
  343.     action=function() modifyTemp(-10) end
  344.   },
  345.   tempMOne={
  346.     x=tempOffsetX,
  347.     y=tempOffsetY+12,
  348.     width=adj_button_width,
  349.     height=1,
  350.     text="-1",
  351.     textcolor = 0x552222,
  352.     action=function() modifyTemp(-1) end
  353.   },
  354.   fieldPTen={
  355.     x=fieldOffsetX,
  356.     y=fieldOffsetY+1,
  357.     width=adj_button_width,
  358.     height=1,
  359.     text="+10",
  360.     textcolor = 0x222299,
  361.     action=function() modifyField(10) end
  362.   },
  363.     fieldPOne={
  364.     x=fieldOffsetX,
  365.     y=fieldOffsetY+3,
  366.     width=adj_button_width,
  367.     height=1,
  368.     text="+1",
  369.     textcolor = 0x222299,
  370.     action=function() modifyField(1) end
  371.   },
  372.   fieldPTenth={
  373.     x=fieldOffsetX,
  374.     y=fieldOffsetY+5,
  375.     width=adj_button_width,
  376.     height=1,
  377.     text="+0.1",
  378.     textcolor = 0x222299,
  379.     action=function() modifyField(0.1) end
  380.   },
  381.     fieldPThou={
  382.     x=fieldOffsetX,
  383.     y=fieldOffsetY+7,
  384.     width=adj_button_width,
  385.     height=1,
  386.     text="+0.005",
  387.     textcolor = 0x222299,
  388.     action=function() modifyField(0.005) end
  389.   },
  390.   fieldMTen={
  391.     x=fieldOffsetX,
  392.     y=fieldOffsetY+19,
  393.     width=adj_button_width,
  394.     height=1,
  395.     text="-10",
  396.     textcolor = 0x222299,
  397.     action=function() modifyField(-10) end
  398.   },
  399.     fieldMOne={
  400.     x=fieldOffsetX,
  401.     y=fieldOffsetY+17,
  402.     width=adj_button_width,
  403.     height=1,
  404.     text="-1",
  405.     textcolor = 0x222299,
  406.     action=function() modifyField(-1) end
  407.   },
  408.   fieldMTenth={
  409.     x=fieldOffsetX,
  410.     y=fieldOffsetY+15,
  411.     width=adj_button_width,
  412.     height=1,
  413.     text="-0.1",
  414.     textcolor = 0x222299,
  415.     action=function() modifyField(-0.1) end
  416.    },
  417.      fieldMThou={
  418.     x=fieldOffsetX,
  419.     y=fieldOffsetY+13,
  420.     width=adj_button_width,
  421.     height=1,
  422.     text="-0.005",
  423.     textcolor = 0x222299,
  424.     action=function() modifyField(-0.005) end
  425.    }
  426. }
  427.  -- Control Loop
  428. event_loop = true
  429. while event_loop do
  430. :: loopstart ::
  431.         info = reactor.getReactorInfo()
  432.     if not info or info.maxFuelConversion < 0.001 then
  433.     cutoffTemp = 9000
  434.     idealTemp = Arg1
  435.     chaosMode = 0
  436.     gpu.setBackground(0x000000)
  437.     gpu.setForeground(0xFF0000)
  438.     term.setCursor(55, 1)
  439.     print "Please verify that your reactor is refueled."
  440.     term.setCursor(55, 2)
  441.     print "Please verify the integrity of your reactor."
  442.     goto start
  443.     gpu.setForeground(0x000000)
  444.     end
  445.     if info.temperature >= 2000 and info.status ~= "stopping"  then
  446.         reactor.activateReactor()
  447.     end
  448.  -- Chaos Mode Safe Shutdown
  449.     if info.temperature > 18000 and chaosMode == 1 and tempDrop == 0 then
  450.         idealTemp = 16000
  451.         tempDrop = 1
  452.         cVar = "Cooling For Shutdown"
  453.     elseif ((1 - info.fuelConversion / info.maxFuelConversion) * 100) < 8 and chaosMode == 1  and tempDrop == 1 then
  454.         idealTemp = 14000
  455.         tempDrop = 2
  456.     elseif ((1 - info.fuelConversion / info.maxFuelConversion) * 100) < 12.5 and chaosMode == 1  and info.maxFuelConversion < 1297 then
  457.         idealTemp = 8000
  458.         idealField = 99
  459.     elseif ((1 - info.fuelConversion / info.maxFuelConversion) * 100) < 1.3 and chaosMode == 1  and tempDrop == 2 and info.maxFuelConversion < 5185 then
  460.         idealTemp = 8000
  461.         idealField = 25
  462.     elseif ((1 - info.fuelConversion / info.maxFuelConversion) * 100) < 1 and chaosMode == 1  and tempDrop == 2 then
  463.         idealTemp = 8000
  464.         idealField = 25
  465.     end
  466.     local targetShieldPercent = idealField or 15 -- Desired shield strength
  467.     local targetShield = (targetShieldPercent / 100)
  468. -- Reactor equation variables
  469.     local targetTemp50  = math.min((idealTemp / 10000) * 50, 99)
  470.     local coreSat       = info.energySaturation / info.maxEnergySaturation
  471.     local convLVL       = (info.fuelConversion / info.maxFuelConversion * 1.3) - 0.3
  472.  
  473.     -- Calculate the temperature rise resistance for the reactor at the desired temperature.
  474.     local targetTempResist = ((targetTemp50^4) / (100 - targetTemp50))
  475.  
  476.     -- Calculate the temperature rise exponential needed to reach the desired temperature
  477.     local targetTempExpo = -(targetTempResist*convLVL) - 1000*convLVL + targetTempResist
  478.  
  479.     -- Calculate the saturation level needed to produce the required tempRiseExpo
  480.     local term1 = 1334.1-(3*targetTempExpo)
  481.     local term2 = (1200690-(2700*targetTempExpo))^2
  482.     local term3 = ((-1350*targetTempExpo)+(((-4*term1^3+term2)^(1/2))/2)+600345)^(1/3)
  483.     local targetNegCSat = -(term1/(3*term3))-(term3/3)
  484.  
  485.     -- Saturation received from above equation needs to be reformatted to a more useful form
  486.     local targetCoreSat = 1 - (targetNegCSat/99)
  487.     local targetSat = targetCoreSat * info.maxEnergySaturation
  488.  
  489.     -- Calculate the difference between where saturation is and where it needs to be
  490.     local saturationError = info.energySaturation - targetSat
  491.  
  492.     -- Calculate field drain
  493.     local tempDrainFactor = 0
  494.     if info.temperature > 8000 then
  495.       tempDrainFactor = 1 + ((info.temperature-8000)^2 * 0.0000025)
  496.     elseif info.temperature > 2000 then
  497.       tempDrainFactor = 1
  498.     elseif info.temperature > 1000 then
  499.       tempDrainFactor = (info.temperature-1000)/1000
  500.     end
  501.    
  502.     local baseMaxRFt = (info.maxEnergySaturation / 1000) * reactorOutputMultiplier * 1.5
  503.     local fieldDrain = math.min(tempDrainFactor * math.max(0.01, (1-coreSat)) * (baseMaxRFt / 10.923556), 2147000000)
  504.           print(string.format("Current field drain is %d RF/t", info.fieldDrainRate))
  505.     local fieldNegPercent = 1 - targetShield
  506.     --local fieldInputRate = fieldDrain / fieldNegPercent
  507.     local fieldStrengthError = (info.maxFieldStrength * targetShield) - info.fieldStrength
  508.     local requiredInput = math.min((info.maxFieldStrength * info.fieldDrainRate) / (info.maxFieldStrength - info.fieldStrength), info.maxFieldStrength - info.fieldStrength)
  509.  --Automations
  510.    if info.status == "running" then
  511.     local outputNeeded = math.min(saturationError, (info.maxEnergySaturation/40))-- + info.generationRate
  512.         outputFlux.setFlowOverride(outputNeeded)
  513.         inputFlux.setFlowOverride(math.min(fieldStrengthError + requiredInput, info.maxFieldStrength) - info.fieldDrainRate + 1)
  514.     elseif info.status == "warming_up" then
  515.         outputFlux.setFlowOverride(0)
  516.         inputFlux.setFlowOverride(550000000)
  517.     elseif info.status == "stopping" then
  518.         outputFlux.setFlowOverride(0)
  519.         inputFlux.setFlowOverride(requiredInput)
  520.     if info.temperature > cutoffTemp then
  521.         print("Reactor Too Hot, shutting down")
  522.         reactor.stopReactor()
  523.     end
  524.     if ((info.fieldStrength / info.maxFieldStrength) * 100) < cutoffField then
  525.         print("Reactor Field Has Failed, Failsafe Activated, Shutting Down")
  526.         reactor.stopReactor()
  527.     end
  528.     if ((1 - info.fuelConversion / info.maxFuelConversion) * 100) < 0.2 then
  529.         print("Reactor Fuel Low, Shutting Down")
  530.         reactor.stopReactor()
  531.     end
  532.    end
  533.     -- Get Temp Rise
  534.         oldTemp = currentTemp or info.temperature
  535.         currentTemp = info.temperature
  536.         oldTempRate = tempChangeRate or currentTemp - oldTemp
  537.         tempChangeRate = currentTemp - oldTemp
  538.         tempAccel = tempChangeRate - oldTempRate
  539.     if tempAccel == 0 then
  540.         tempAccel = 0.001
  541.     end
  542.     -- Get Fuel Use Rate
  543.         oldFuel = currentFuel or (info.maxFuelConversion - info.fuelConversion)
  544.         currentFuel = (info.maxFuelConversion - info.fuelConversion)
  545.         oldUseRate = fuelUseRate or math.max(info.fuelConversionRate*20, 0.1)
  546.         fuelUseRate = math.max(info.fuelConversionRate*20, 0.1)
  547.         fuelAccel = math.max(fuelUseRate - oldUseRate, 0.1)
  548.  -- Fuel Conversion Rate
  549.     if info.fuelConversionRate > 249999 then
  550.         fuelConversionRate = ((info.fuelConversionRate / (info.maxFuelConversion * 1000000)) * 2000)
  551.         fuelMeasure = "  %%/s"
  552.     elseif info.fuelConversionRate > 999 then
  553.         fuelConversionRate = (info.fuelConversionRate / 1000)
  554.         fuelMeasure = " "..(unicode.char(956)).."b/t"
  555.     elseif info.fuelConversionRate > 999999 then
  556.         fuelConversionRate = (info.fuelConversionRate / 1000000)
  557.         fuelMeasure = " mb/t"
  558.     else
  559.         fuelConversionRate = info.fuelConversionRate
  560.         fuelMeasure = " nb/t"
  561.     end
  562. --  Get Time Until Cool
  563.     if info.fuelConversionRate > 1 then
  564.         tempDrain = ((info.temperature - 2000) / 0.4)
  565.     else
  566.         tempDrain = 1
  567.     end
  568.  --Burn Stage
  569.     if ((1 - info.fuelConversion / info.maxFuelConversion) * 100) > 20 then burnStage = "H"
  570.     elseif ((1 - info.fuelConversion / info.maxFuelConversion) * 100) > 15 then burnStage = "He"
  571.     elseif ((1 - info.fuelConversion / info.maxFuelConversion) * 100) > 10 then burnStage = "C"
  572.     elseif ((1 - info.fuelConversion / info.maxFuelConversion) * 100) > 8 then burnStage = "Ne"
  573.     elseif ((1 - info.fuelConversion / info.maxFuelConversion) * 100) > 5.5 then burnStage = "O"
  574.     elseif ((1 - info.fuelConversion / info.maxFuelConversion) * 100) > 2.5 then burnStage = "Si"
  575.     elseif ((1 - info.fuelConversion / info.maxFuelConversion) * 100) > 1 then burnStage = "Fe"
  576.     end
  577.  -- Accuracy
  578.     if ((info.fieldStrength / info.maxFieldStrength) * 100) > idealField then
  579.      deviation = (((info.fieldStrength / info.maxFieldStrength) * 100)) - idealField
  580.     elseif ((info.fieldStrength / info.maxFieldStrength) * 100) < idealField then
  581.      deviation = idealField - (((info.fieldStrength / info.maxFieldStrength) * 100))
  582.     end
  583.  -- DrawData
  584.     local secondsToExpire = (info.maxFuelConversion - info.fuelConversion) / math.max(info.fuelConversionRate*0.00002, 0.00001)
  585.  -- GUI
  586.     if term.isAvailable() and Mode ~= 3 then
  587.         function modify_eff(offset)
  588.             local eff = ((outputFlux / inputFlux) * 100)
  589.             if eff > 100000 then
  590.             eff = 1
  591.         end
  592.     end
  593.     local left_margin = 2
  594.     local spacing = 1
  595.     local values = {
  596.                 "Draconic Control™  [v15.1 sMAT | hh14Sxhi]",
  597.                 " ",
  598.                 "┌──────────────────Reactor Statistics────────────────────┐",
  599. string.format("│Time Until Refuel:         │  %5.0fd, %2.0fh, %2.0fm, %2.0fs     │", secondsToExpire/86400, secondsToExpire   /3600 % 24, secondsToExpire/60 % 60, secondsToExpire % 60),
  600. string.format("│Time Until Cool:           │  %5.0fd, %2.0fh, %2.0fm, %2.0fs     │", tempDrain/86400, tempDrain   /3600 % 24, tempDrain/60 % 60, tempDrain % 60),
  601. string.format("│Ideal Field:               │           %8.3f%%        │", idealField),
  602. string.format("│Current Field:             │           %8.3f%%        │", ((info.fieldStrength / info.maxFieldStrength) * 100) + 0.122),
  603.                 "├───────────────────────────┼────────────────────────────┤",
  604. string.format("│Fuel Remaining:            │           %7.3f%%         │", ((1 - info.fuelConversion / info.maxFuelConversion) * 100)),
  605. string.format("│Fuel Use Rate:             │           %7.3f" .. fuelMeasure .. "     │", fuelConversionRate),
  606.                 "├───────────────────────────┼────────────────────────────┤",
  607. string.format("│Temperature                │   %7.1f°c [%8.1f°f]   │", info.temperature, ((info.temperature * 1.8) + 32)),
  608. string.format("│Ideal Temperature:         │   %7.1f°c [%8.1f°f]   │", idealTemp, ((idealTemp * 1.8) + 32)),
  609.                 "├───────────────────────────┼────────────────────────────┤",
  610. string.format("│Energy Input:              │   %12.1f RF/t        │", requiredInput),
  611. string.format("│Energy Output:             │   %12.1f RF/t        │", outputFlux.getFlow()),
  612.                 "└───────────────────────────┴────────────────────────────┘",
  613.                 " " .. cVar,
  614.                 " "
  615. }
  616.     local values2 = {
  617. " ",
  618. " ",
  619. " ",
  620. "                                                                                                                          [Reference Table]",
  621. "                                                                                                             ┌─────────────┬─────────────┬─────────────┐",
  622. "                                                                                                             │ Temperature │  Remaining  │ Consumption │",
  623. "                                                                                                             ├─────────────┼─────────────┼─────────────┤",
  624. "                                                                                                             │    14000    │    93.27    │    91.90    │",
  625. "                                                                                                             ├─────────────┼─────────────┼─────────────┤",
  626. "                                                                                                             │    15000    │    59.00    │    123.5    │",
  627. "                                                                                                             ├─────────────┼─────────────┼─────────────┤",
  628. "                                                                                                             │    16000    │    36.45    │     161     │",
  629. "                                                                                                             ├─────────────┼─────────────┼─────────────┤",
  630. "                                                                                                             │    17000    │    21.40    │     204     │",
  631. "                                                                                                             ├─────────────┼─────────────┼─────────────┤",
  632. "                                                                                                             │    18000    │    11.80    │     251     │",
  633. "                                                                                                             ├─────────────┼─────────────┼─────────────┤",
  634. "                                                                                                             │    19000    │    03.89    │     303     │",
  635. "                                                                                                             └─────────────┴─────────────┴─────────────┘",
  636. " ",
  637. " ",
  638. " ",
  639. " ",
  640. " ",
  641. " ",
  642. " ",
  643. " ",
  644. " ",
  645. " ",
  646. " ",
  647. " ",
  648. " ",
  649. " ",
  650. " ",
  651.               "Eq. Fusion Stage     " .. burnStage,
  652. string.format("Max Fuel [nb]:       %4.3f", (info.maxFuelConversion * 1000000)),
  653. string.format("Fuel Remaining [nb]: %4.3f", ((info.maxFuelConversion - info.fuelConversion) * 1000000)),
  654. string.format("Temperature Rise: %4.3f", tempAccel),
  655. string.format("Temp Resist for target temp %d (%d): %.2f", idealTemp, targetTemp50, targetTempResist),
  656. string.format("Temp expo for convLVL %.2f: %.2f", convLVL, targetTempExpo),
  657. string.format("Saturation needed for zero rise: %d (%3.2f%%)", targetSat, targetCoreSat*100),
  658. string.format("Error between current saturation and target saturation: %d\n", saturationError),
  659. string.format("Current field drain is %d RF/t", info.fieldDrainRate),
  660. string.format("Current temp drain factor for temp %d is %1.2f", info.temperature, tempDrainFactor),
  661. string.format("fieldNegPercent is %d", fieldNegPercent),
  662. string.format("Required input to counter field drain: %d RF/t\n", requiredInput),
  663. string.format("Field Deviation: " .. unicode.char(8776) .. deviation .. "%%"),
  664. string.format("Input Flux Gate:  [" .. inputFlux.address .. "] Set To: " .. inputFlux.getFlow()),
  665. string.format("Output Flux Gate: [" .. outputFlux.address .. "] Set To: " .. outputFlux.getFlow())
  666. }
  667. term.clear()
  668.     if Mode == 2 and Mode ~= 3 then
  669.     for i, v in ipairs(values2) do
  670.         term.setCursor(left_margin, i * spacing)
  671.         term.write(v)
  672.         end
  673.     end
  674.     if Mode ~= 3 then
  675.     for i, v in ipairs(values) do
  676.         term.setCursor(left_margin, i * spacing)
  677.         term.write(v)
  678.         end
  679.     end
  680.  -- Draw Buttons
  681.  
  682.         term.setCursor(tempOffsetX, tempOffsetY+10)
  683.         term.write("Reactor Temperature")
  684.         term.setCursor(fieldOffsetX+1, fieldOffsetY+10)
  685.         term.write("  Field Strength")
  686.         gpu.setForeground(0xFFFFFF)
  687.     for bname, button in pairs(buttons) do
  688.         gpu.setForeground(0x000000)
  689.         if button.depressed then
  690.             button.depressed = button.depressed - 1
  691.             if button.depressed == 0 then
  692.                 button.depressed = nil
  693.             end
  694.         end
  695.     if button.condition == nil or button.condition() then
  696.         local centerColor = 0xBBBBBB
  697.         local highlightColor = 0xCCCCCC
  698.         local lowlightColor = 0x808080
  699.     if button.depressed then
  700.         centerColor = 0xAAAAAA
  701.         highlightColor = 0x707070
  702.         lowlightColor = 0xBBBBBB
  703.     end
  704.         gpu.setBackground(centerColor)
  705.         gpu.fill(button.x, button.y, button.width, button.height, " ")
  706.     if button.width > 1 and button.height > 1 then
  707.         gpu.setBackground(lowlightColor)
  708.         gpu.fill(button.x+1, button.y+button.height-1, button.width-1, 1, " ")
  709.         gpu.fill(button.x+button.width-1, button.y, 1, button.height, " ")
  710.         gpu.setBackground(highlightColor)
  711.         gpu.fill(button.x, button.y, 1, button.height, " ")
  712.         gpu.fill(button.x, button.y, button.width, 1, " ")
  713.     end
  714.         gpu.setBackground(centerColor)
  715.     if button.textcolor then gpu.setForeground(button.textcolor) end
  716.         term.setCursor(button.x + math.floor(button.width / 2 - #button.text / 2), button.y + math.floor(button.height / 2))
  717.         term.write(button.text)
  718.     end
  719.     end
  720.     gpu.setBackground(0x777777)
  721.     gpu.setForeground(0x000000)
  722.     end
  723.     if term.isAvailable() and Mode == 3 then
  724.     local left_margin = 2
  725.     local spacing = 1
  726.     local values3 = {
  727. "Eq. Fusion Stage     " .. burnStage,
  728. string.format("Max Fuel [nb]:       %4.3f", (info.maxFuelConversion * 1000000)),
  729. string.format("Fuel Remaining [nb]: %4.3f", ((info.maxFuelConversion - info.fuelConversion) * 1000000)),
  730. string.format("Temperature Rise: %4.3f", tempAccel),
  731. string.format("Temp Resist for target temp %d (%d): %.2f", idealTemp, targetTemp50, targetTempResist),
  732. string.format("Temp expo for convLVL %.2f: %.2f", convLVL, targetTempExpo),
  733. string.format("Saturation needed for zero rise: %d (%3.2f%%)", targetSat, targetCoreSat*100),
  734. string.format("Error between current saturation and target saturation: %d\n", saturationError),
  735. string.format("Current field drain is %d RF/t", info.fieldDrainRate),
  736. string.format("Current temp drain factor for temp %d is %1.2f", info.temperature, tempDrainFactor),
  737. string.format("fieldNegPercent is %d", fieldNegPercent),
  738. string.format("Required input to counter field drain: %d RF/t\n", requiredInput),
  739. string.format("Field Deviation: " .. unicode.char(8776) .. deviation .. "%%"),
  740. string.format("Input Flux Gate:  [" .. inputFlux.address .. "] Set To: " .. inputFlux.getFlow()),
  741. string.format("Output Flux Gate: [" .. outputFlux.address .. "] Set To: " .. outputFlux.getFlow())
  742. }
  743.  for i, v in ipairs(values3) do
  744.  term.setCursor(left_margin, i * spacing)
  745.  term.write(v)
  746.  end
  747. end
  748.  -- Wait for next tick, or manual shutdown
  749.     local event, id, op1, op2 = event.pull(0.01)
  750.     if event == "interrupted" then
  751.         if safe then
  752.         break
  753.         end
  754.     elseif event == "touch" then
  755.  -- Handle Button Presses
  756.         local x = op1
  757.         local y = op2
  758.         for bname, button in pairs(buttons) do
  759.             if (button.condition == nil or button.condition()) and x >= button.x and x <= button.x + button.width and y >= button.y and y <= button.y + button.height then
  760.                 button.action()
  761.                 button.depressed = 3
  762.             end
  763.         end
  764.     end
  765.     os.sleep()
  766.         if info.fuelConversionRate == 0 and chaosMode == 1 then
  767.         reactor.stopReactor()
  768.         cutoffTemp = 9001
  769.         idealTemp = 8000
  770.         chaosMode = 0
  771.     end
  772. end
  773. :: fin ::
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement