Advertisement
SteamPunk_Devil

steAmPI Indev 0.04

Feb 28th, 2014
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.51 KB | None | 0 0
  1. --steAmPI By SteamPunk_Devil IGN - SteamPunk_Angel--
  2. --Feel free to edit this in anyway as long as you credit me(and tell me if you can)--
  3. --Initials: SPD = SteamPunk_Devil,
  4.  
  5. print("Successfully Loaded steAmPI, Version: Indev V0.03, By: SPD, Release Date: 04/03/2014") --Change release date and version every full release, The "By" is the initials of whoever release it and full names can be found in the header
  6.  
  7. function version() --Displays version
  8.     print("Indev V0.03, By SPD, Release Date: 04/03/2014") --Same as above
  9. end
  10.  
  11. function Percentage(current,total) --returns One number as a percentage of the second one --TBD Round to a Decimal place
  12.  
  13.     local No1 = current
  14.     local No2 = total
  15.     local Percent = (current / total) * 100
  16.  
  17.     return Percent
  18. end
  19.  
  20. function Buckets(miliBuckets) -- turns milibuckets to buckets
  21.     local total = miliBuckets / 1000
  22.     return total
  23. end
  24.  
  25. function Round(num, idp)
  26.   local mult = 10^(idp or 0)
  27.   return math.floor(num * mult + 0.5) / mult
  28. end
  29.  
  30. function PercentBar(CursorX, CursorY, InActiveColor, ActiveColor, TextColor, n, Mon)
  31.     local n10 = n/10
  32.     local FormdN =  Round(n10, 0)
  33.     local BarCursX = CursorX
  34.     local BarCursY = CursorY
  35.     local Paste = Mon
  36.     Paste.setCursorPos(CursorX, CursorY)   
  37.     Paste.setBackgroundColor(InActiveColor)
  38.     Paste.write("          ")
  39.     Paste.setCursorPos(CursorX, CursorY)
  40.     Paste.setBackgroundColor(ActiveColor)
  41.     Paste.setTextColor(TextColor)
  42.     Paste.write(string.rep("/", FormdN))
  43.     BarCursX = BarCursX + 10
  44.     Paste.setBackgroundColor(32768)
  45.     Paste.setTextColor(1)
  46. end
  47.  
  48.  
  49.  
  50. ------Works to here all else is WIP and untested
  51. function FluNamePicker(FluName)
  52.     if FluName == "bioethanol" then
  53.         TankSpecs = {}
  54.         TankSpecs["Name"] = "Ethanol"
  55.         TankSpecs["BarColor"] = 2
  56.         TankSpecs["TextColor"] = 16
  57.         return TankSpecs
  58.     elseif FluName == "steam" then
  59.         TankSpecs = {}
  60.         TankSpecs["Name"] = "Steam"
  61.         TankSpecs["BarColor"] = 256
  62.         TankSpecs["TextColor"] = 1
  63.         return TankSpecs
  64.     elseif FluName == "xpjuice" then
  65.         TankSpecs = {}
  66.         TankSpecs["Name"] = "XP"
  67.         TankSpecs["BarColor"] = 32
  68.         TankSpecs["TextColor"] = 8192
  69.         return TankSpecs
  70.     elseif FluName == "creosote" then
  71.         TankSpecs = {}
  72.         TankSpecs["Name"] = "Creo Oil"
  73.         TankSpecs["BarColor"] = 4096
  74.         TankSpecs["TextColor"] = 2
  75.         return TankSpecs
  76.     elseif FluName == "honey" then
  77.         TankSpecs = {}
  78.         TankSpecs["Name"] = "Honey"
  79.         TankSpecs["BarColor"] = 16
  80.         TankSpecs["TextColor"] = 4096
  81.         return TankSpecs
  82.     elseif FluName == "seedoil" then
  83.         TankSpecs = {}
  84.         TankSpecs["Name"] = "Seed Oil"
  85.         TankSpecs["BarColor"] = 16
  86.         TankSpecs["TextColor"] = 8192
  87.         return TankSpecs
  88.     elseif FluName == "liquiddna" then
  89.         TankSpecs = {}
  90.         TankSpecs["Name"] = "Liquid DNA"
  91.         TankSpecs["BarColor"] = 1024
  92.         TankSpecs["TextColor"] = 8
  93.         return TankSpecs
  94.     else
  95.         TankSpecs = {}
  96.         TankSpecs["Name"] = FluName
  97.         TankSpecs["BarColor"] = 1
  98.         TankSpecs["TextColor"] = 512
  99.         return TankSpecs
  100.     end
  101. end
  102.  
  103. function FluPrinter(FluDetails, Mon)
  104.     local name = FluDetails["name"]
  105.     local Amount = FluDetails["amount"]
  106.     local Cap = FluDetails["capacity"]
  107.     local X = FluDetails["XPos"]
  108.     local Y = FluDetails["YPos"]
  109.     local YBar = FluDetails["YBarPos"]
  110.     local XBar = FluDetails["XPos"]
  111.     TankSpecs = FluNamePicker(name)
  112.     local FormdName = TankSpecs["Name"]
  113.     local ActiveColor = TankSpecs["BarColor"]
  114.     local TextColor = TankSpecs["TextColor"]
  115.     Mon.setCursorPos(X, Y)
  116.     Mon.setTextColor(colors.white)
  117.     Mon.write(FormdName)
  118.     local Percent = Percentage(Amount,Cap)
  119.     PercentBar(XBar, YBar, 128, ActiveColor, TextColor, Percent, Mon)
  120. end
  121.  
  122. function OnPushData(FluDetails, Mon)
  123.     local FluNameT = FluNamePicker(FluDetails["name"])
  124.     local Amount = FluDetails["amount"]
  125.     local Cap = FluDetails["capacity"]
  126.     local Percent = Percentage(Amount, Cap)
  127.     local RPercent = Round(Percent, 2)
  128.     local FluName = FluNameT["Name"]
  129.     Mon.clear()
  130.     Mon.setCursorPos(5,2)
  131.     Mon.setTextScale(2)
  132.     Mon.setTextColor(colors.white)
  133.     Mon.write(FluName)
  134.     Mon.setTextScale(1)
  135.     Mon.setCursorPos(3,3)
  136.     Mon.write("" .. Amount .. "/" .. Cap .. "")
  137.     Mon.setCursorPos(3,4)
  138.     Mon.write("" .. RPercent .. "%")
  139.     Mon.setCursorPos(13,10)
  140.     Mon.setBackgroundColor(colors.red)
  141.     Mon.setTextColor(colors.black)
  142.     Mon.write("<Back")
  143.     Mon.setBackgroundColor(colors.black)
  144.     while true do
  145.   event, side, xPos, yPos = os.pullEvent("monitor_touch")
  146.   print(event .. " => Side: " .. tostring(side) .. ", " ..
  147.     "X: " .. tostring(xPos) .. ", " ..
  148.     "Y: " .. tostring(yPos))
  149.   if yPos == 10 and xPos >= 13 and xPos <= 17 then
  150.     return -- end the function
  151.   end
  152. end
  153. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement