
ComputerCraft Integration
Serverfrog opened this issue ยท 1 comments
Describe the feature/addition!
Integrate an Interface for the ComputerCraft Mod.
This should then open the possibility to automate the Energy Management.
The Integration can be very simple that the current Value of Energy per Tick is communicated.
If there is room then it could also be implemented that the different Incoming and Outgoing Ports Energy/t values could be get.
The Way i mostly saw it implemented was that the Mod add this blog as peripheral, so that we have methods to invoke on the "Block".
Methods i would like to have there
getRate()
Returns the Current Energy/t as an Long (so the bare value without formating)
getRates()
Returns an Array. Either a one dimensional one with just the Positiv (Incoming) and Negativ (Outgoing) values for all sides
Or a two dimensional Array/Map with the Key is the Side (SOUTH,UP,WEST,...) and the Value the Positive or Negativ Value
changeMode(String/boolean)
Changes the Mode to Transfer or Consume. Either with the String (TRANSFER,CONSUME) or just false for Transfer and true for Consume. Or the the next two methods
changeModeToTransfer
changeModeToConsume
an Alternative to the changeMode method
changeAccuracy(int,int)
Changes the Accuracy. The Values (0,0) would mean exact, when numbers supplied it would be the interval and the Zero Threashold
Why would like to see this feature/addition?
This makes it possible to Management the Energy Network via ComputerCraft. This make it for example possible with two Energy Meter's to Monitor the state of energy storage's which aren't integrated (Measuring the Incoming and Outgoing Values in the Respected Energy Meters), Create Statistics, Dashboards and other countless things.