Advertisement
Geko4515

TorchAPI

Sep 2nd, 2013
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 12.10 KB | None | 0 0
  1. -- Turtle Torch API Version 0.9.1
  2. -- Witten by Travoc
  3.  
  4. --Program is written to calculate torch placement to make the most
  5. --   of each torch placed and then have a turtle place them.
  6.  
  7. --In order to use functions in here you must insert os.loadAPI("TorchAPI") in your main program
  8. --   or you can move the API to rom/apis to be used globaly and reset your computers/turtles
  9.  
  10. --To call a function just use TorchAPI.functionName()  
  11. --Variables are local so there are get/set functions to use when neseccary
  12.  
  13. --For update call you must toggleUpdate(true). It is off by default and you must have
  14. --  TorchAPI.passUpdate(functionForUpdate) in your main program
  15. --functionForUpdate can be any function in your main program and is just renamed here for
  16. --  the API's use
  17.  
  18. --ToDo's
  19. --Height 1 high placement
  20.  
  21. --[1]Variable Declaration
  22. torch = {
  23.     place=false, --Turns torch placement on or off
  24.     dist=0,      --How far apart torches are placed
  25.     locdepth=0,     --Current location of depth.
  26.     lastdepth=0,    --Previous location depth passed
  27.     rowtoggle = false,   --Used to switch between row 1 and 2
  28.     rowcount = 1,   --Used to determine current row
  29.     count = 0,          --Counts the total torches placed.
  30.     placecount = 0,     --Counts torches placed in each row
  31.     block = false,    --Turns placement of a block below a torch on/off
  32.     slot = 1,   --what slot turtle pulls torches from default 1
  33.     blockslot = 2,   --what slot turtle pulls blocks from default 2
  34.     short = false,   --Turns on 1 high placement of torches as torches
  35.                     --   cannot be placed below it
  36.     row1={},row2={}  --Rows calculated for torch placement
  37. }
  38. local update = false  -- Used to turn off/on an update call to main program
  39. local upfunc = false --Used to reference a function from the Main program
  40. --[1]end
  41.  
  42. --[2]Update Functions
  43. function passUpdate(func)
  44.     --Turns Update on/off when a function is passed to it
  45.     if type(func) == "function" then
  46.         upfunc = func
  47.         update = true
  48.     else
  49.         update = false
  50.     end
  51.     return update
  52. end
  53.  
  54. function updateFunc()
  55.     --Triggers the function passed in by passUpdate to trigger in the
  56.     --   main program so there is near realtime use/display on all
  57.     --   variables in the API
  58.      if update then
  59.         upfunc()
  60.         return true
  61.      else return false end
  62. end
  63.  
  64. function toggleUpdate(toggle)
  65.     --Toggles update on and off
  66.     if type(toggle) == "boolean" then update=toggle
  67.     else update = not update end
  68.     return update
  69. end
  70. --[2]end
  71.  
  72. --[3]Initialize Functions
  73. function togglePlace(width,height,locwidth,locdepth,slot)
  74.     --Used to turn on torch placement and run the calculation for
  75.     --   torch row and spacing
  76.     --width is the total width of the area
  77.     --height is the total height of the area
  78.     --locwidth is the current width location. either x or z
  79.     --locdepth is the current depth location. either x or z opposite of cord
  80.     torch.place = calcCords(width,locwidth)
  81.     if torch.place then
  82.         setDepth(locdepth)
  83.         setShort(height)
  84.     end
  85.     if type(slot) == "number" then torch.slot = slot end
  86.     return torch.place
  87. end
  88.  
  89. function toggleBlock(block,slot)
  90.     --Turns placement of a block below a torch on or off
  91.     if block == nil then torch.block=not torch.block
  92.     else torch.block = block end
  93.     if type(slot) == "number" then torch.blockslot = slot end
  94.     return torch.block
  95. end
  96.  
  97. function setSlots(item,slot)
  98.     --Sets item passed to pull from slot passed
  99.     item = string.lower(item)
  100.     if item == 'torch' or item == 1 then
  101.         if slot == nil then torch.slot = 1
  102.         else torch.slot = slot end
  103.         updateFunc()
  104.         return true, slot
  105.     elseif item == 'block' or item == 2 then
  106.         if slot == nil then torch.blockslot = 2
  107.         else torch.blockslot = slot end
  108.         updateFunc()
  109.         return true, slot
  110.     end
  111.     return false
  112. end
  113.  
  114. function setDepth(locdepth)
  115.     --Used to set the starting depth cord for spacing of rows
  116.     --locdepth defaults to 0 if it is not passed in
  117.     if locdepth==nil then locdepth = 0 end
  118.     torch.locdepth = locdepth
  119.     torch.lastdepth = locdepth
  120.     updateFunc()
  121.     return true
  122. end
  123.  
  124. function setShort(height)
  125.     if height == 1 or height == true then
  126.         torch.short = true
  127.     else
  128.         torch.short = false
  129.     end
  130.     updateFunc()
  131.     return torch.short 
  132. end
  133.  
  134. function getShort()
  135.     return torch.short
  136. end
  137.  
  138. function getCount()
  139.     return torch.count
  140. end
  141.  
  142. function calcCords(width,locwidth)
  143.     --Calculations for torch placement based on width of space
  144.     --width must not be 0 but can be negative
  145.     if width ==0 then return false end
  146.     --locwidth defaults to 0 if not passed in. It should be the current
  147.     --width cord not the depth cord so x or z depending on facing w/ GPS
  148.        
  149.     --Variables
  150.     local count = 0
  151.     local start = 0
  152.     local neg = 1
  153.    
  154.     --Set x to 0 if not passed in
  155.     if locwidth==nil then locwidth = 0 end
  156.     --Check for negative values
  157.     if width < 0 then neg = -1 end
  158.     width = math.abs(width)
  159.    
  160.     --Calculate z distance
  161.     torch.dist = 13-width
  162.     if torch.dist < 3 then torch.dist = 6 end
  163.    
  164.     --Row1
  165.     local count = math.ceil(width/13)
  166.     local offset = 1
  167.     if count <= 1 then
  168.         torch.row1[1] = (math.ceil(width/2)-1)
  169.     else
  170.         local start = (math.ceil((width-1)/2)-6)
  171.         while start > 6 do
  172.             if start-12 < 0 then
  173.                 torch.row1[1]=0
  174.                 count=count+1
  175.                 offset = 2
  176.                 break
  177.             else
  178.                 start = start - 12 
  179.             end
  180.         end
  181.         for i=1,count do
  182.             if torch.row1[i]==nil then
  183.                 local cord = (locwidth+start+(12*(i-offset)))*neg
  184.                 if cord > width-1 then cord = width-1 end
  185.                 torch.row1[i]=cord
  186.             end
  187.         end
  188.     end
  189.            
  190.     --Row2
  191.     if width <= 10 then
  192.         torch.row2[1] = math.floor(width/2)
  193.     elseif width > 10 and width <= 13 then
  194.         torch.row2[1] = locwidth
  195.         torch.row2[2] = width-1
  196.     else
  197.         start = math.floor(width/2)
  198.         while start > 6 do
  199.             start = start - 12
  200.         end
  201.         local extra = 0
  202.         if start < 0 then
  203.             extra = math.abs(start)
  204.             start = 0
  205.         else extra = 0 end 
  206.         count = 0
  207.        
  208.         while ((locwidth+width-1) >= (locwidth+start-extra+(12*(count)))) do
  209.             count = count + 1
  210.             if count==1 then
  211.                 torch.row2[count] = (locwidth+start)*neg
  212.             else
  213.                 torch.row2[count] = (locwidth+(start-extra)+(12*(count-1)))*neg
  214.             end
  215.         end
  216.         if extra ~= 0 then
  217.             count = count + 1
  218.             torch.row2[count] = (locwidth+width-1)*neg
  219.         end
  220.     end
  221.     torch.rowtoggle=false
  222.     updateFunc()
  223.     return true
  224. end
  225. --[3]end
  226.  
  227.  
  228. --[4]Placement Functions
  229. function place(locwidth,locdepth,enddepth,dir)
  230.     --runs checkCords and if true places torch and block if it is turned
  231.     --  on
  232.     --enddepth can be nil for infinite depth. It is just to get
  233.     --  the last bit of an area.
  234.     --dir is for 1 high areas which way to place the torch
  235.     --if endepth == nil and you want a dir you need to pass locwidth, locdepth, nil, dir
  236.     if not torch.place then return false end
  237.     local shortshift = 0
  238.    
  239.     --Check if block placement is on and if one exisits below turtle
  240.    
  241.     if checkCords(locwidth,locdepth,enddepth) then
  242.         if torch.block then placeBlock() end
  243.     end
  244.    
  245.     --Shift row back one for 1 high placement
  246.     if torch.short then shortshift = 1 end 
  247.    
  248.     --Check if torch should be placed
  249.     if checkCords(locwidth,(locdepth+shortshift),enddepth) then
  250.         if placeTorch(dir) then
  251.             torch.placecount = torch.placecount + 1
  252.             torch.count = torch.count + 1
  253.         else return false
  254.         end
  255.         if (torch.placecount >= #torch.row1 and not torch.rowtoggle) or
  256.            (torch.placecount >= #torch.row2 and torch.rowtoggle) then
  257.             torch.placecount = 0
  258.             torch.rowtoggle = not torch.rowtoggle
  259.             torch.rowcount = torch.rowcount + 1
  260.             torch.locdepth = locdepth + torch.dist
  261.             torch.lastdepth = locdepth
  262.         end
  263.         updateFunc()
  264.         return true
  265.     end
  266.     return false
  267. end
  268.  
  269. function checkCords(locwidth,locdepth,enddepth)
  270.     --Checks to see if current width and depth should have a torch
  271.     --enddepth can be nil for infinite depth. It is just to get
  272.     --   the last bit of an area.
  273.    
  274.     --Determine moving negative or positive on depth dimension/plane
  275.     local neg = 1
  276.     if locdepth-torch.lastdepth < 0 then neg = -1 end  
  277.    
  278.     --Check Cord
  279.     if torch.locdepth==locdepth or ((locdepth==enddepth) and ((enddepth-(torch.lastdepth))*neg>=(torch.dist/2))) then
  280.         --Row1 place
  281.         if not torch.rowtoggle then
  282.             for i=1,#torch.row1 do
  283.                 if locwidth == torch.row1[i] then
  284.                     return true
  285.                 end
  286.             end
  287.            
  288.         --Row2 place
  289.         else
  290.             for i=1,#torch.row2 do
  291.                 if locwidth == torch.row2[i] then
  292.                     return true
  293.                 end
  294.             end
  295.         end
  296.     end
  297.     return false
  298. end
  299.  
  300. function placeItem(item)
  301.     --Place an item below the turtle
  302.     --*ItemAPI integration
  303.     if type(item) == "string" then item = string.lower(item) end
  304.     if item == 'torch' or item == 1 then
  305.         turtle.select(torch.slot)
  306.     elseif item == 'block' or item == 2 then
  307.         turtle.select(torch.blockslot)
  308.     end
  309.    
  310.     if (torch.short and (item == 'torch' or item == 1)) then
  311.         turtle.dig()
  312.         turtle.place()
  313.         return true
  314.     else
  315.         turtle.digDown()
  316.         turtle.placeDown()
  317.         return true
  318.     end
  319.     return false
  320. end
  321.  
  322. function placeBlock()
  323.     --Checks to see if there is a block below where the torch is placed
  324.     local placed = false
  325.     --Check if in a 1 high area or not
  326.     if not torch.short then
  327.         if turtle.getFuelLevel() < 2 then return false
  328.         else
  329.             while not turtle.down() do
  330.                 turtle.attackDown()
  331.                 turtle.digDown()
  332.                 sleep(0.5)
  333.             end
  334.         end
  335.     end
  336.     if not turtle.detectDown() then
  337.         placed = placeItem(2)
  338.     end
  339.     if not torch.short then
  340.         while not turtle.up() do
  341.             turtle.attackUp()
  342.             turtle.digUp()
  343.             sleep(0.5)
  344.         end
  345.     end
  346.    
  347.     return placed
  348. end
  349.  
  350. function placeTorch(dir)
  351.     --If it is 1 high it rotates to place a torch otherwise it places a
  352.     --  torch below it
  353.     if torch.short then
  354.         --MoveAPI Integration
  355.         if type(MoveAPI) == "table" then
  356.             local origface = MoveAPI.getFace()
  357.             MoveAPI.setFace((MoveAPI.getStartFace()-2)%4)
  358.             placeItem(1)
  359.             MoveAPI.setFace(origface)
  360.         --*Alternative somewhat broken
  361.         else       
  362.             local origdir = dir
  363.             while dir ~= 0 do
  364.                 turtle.turnLeft()
  365.                 dir = (dir-1)%4
  366.             end
  367.             placeItem(1)
  368.             while dir ~= origdir do
  369.                 turtle.turnLeft()
  370.                 dir = (dir-1)%4
  371.             end
  372.         end
  373.     else
  374.         return placeItem(1)
  375.     end
  376. end
  377.  
  378. function findCords(count,startdepth,enddepth)
  379.     --Returns the torch cords for the torch number/count specified
  380.     --count should be the exact number/count of the torch 1, 5, etc
  381.     --  this should not be 0 as there is no 0 torch
  382.     --startwidth is used to determine where torch placement started on
  383.     --  the x/z axis whichever is width
  384.     --startdepth is used to determine where torch placement started on
  385.     --  the x/z axis whichever is depth
  386.     --enddepth [optional] to determine last cords
  387.     local row1count = #torch.row1
  388.     local row2count = #torch.row2
  389.     local rowtotal = 0
  390.     if count==nil then count=torch.count+1 end
  391.     local remain = count%(row1count+row2count)
  392.     local rowshift = 0
  393.     --MoveAPI integration
  394.     if type(MoveAPI) == "table" then
  395.         if MoveAPI.getDepthAxis() == "z" then
  396.             startdepth = MoveAPI.getCords("z")
  397.             enddepth = MoveAPI.getEnd("z")
  398.         else
  399.             startdepth = MoveAPI.getCords("x")
  400.             enddepth = MoveAPI.getEnd("x")
  401.         end
  402.     end
  403.    
  404.     --Check Var
  405.     if startdepth == nil then startdepth = 0 end
  406.     if enddepth ~= nil then rowtotal = rowTotal(enddepth) end
  407.    
  408.     --Run Calc's
  409.     if torch.rowcount~=1 and (remain==1 or remain==row1count+1) then
  410.         rowshift = torch.dist
  411.     end
  412.     if rowtotal == torch.rowcount then rowshift = enddepth-startdepth end
  413.  
  414.     --Return Cords
  415.     if not torch.rowtoggle then
  416.         return torch.row1[remain], (startdepth+rowshift)
  417.     else
  418.         if remain == 0 then remain = row1count+row2count end
  419.         local rev = row2count-(remain-row1count)+1
  420.         return torch.row2[rev], (startdepth+rowshift)
  421.     end
  422. end
  423.  
  424. function rowTotal(depth)
  425.     --Used to return how many rows of torches are in calculated area
  426.     --MoveAPI integration
  427.     if type(MoveAPI) == "table" then
  428.         depth=MoveAPI.getDims("depth")
  429.     end
  430.        
  431.     --Calculation
  432.     local rowtotal = math.floor(depth/torch.dist)
  433.     if ((depth-(torch.dist*rowtotal)) >= torch.dist/2) then
  434.         rowtotal = rowtotal + 2
  435.     else
  436.         rowtotal = rowtotal + 1
  437.     end
  438.     return rowtotal
  439. end
  440.  
  441. function torchTotal(depth)
  442.     --Used to return how many torches are needed for an calculated area
  443.     --depth is total depth of area
  444.     local rowtotal = rowTotal(depth)   
  445.     return ((#torch.row1*math.ceil(rowtotal/2)) + (#torch.row2*math.floor(rowtotal/2)))
  446. end
  447. --[4]end
  448.  
  449. --end of API
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement