Compare commits

...

7 commits
0.01 ... main

Author SHA1 Message Date
Innovation Inc e1c4859b35
Update drone.lua 2021-01-07 22:58:03 -06:00
Innovation Inc ec56986d4c
Update drone.lua 2021-01-07 18:58:42 -06:00
Innovation Inc 449d66fddd
Update drone.lua 2021-01-07 18:55:15 -06:00
Innovation Inc 4338cb38f7
Update drone.lua 2021-01-07 18:46:39 -06:00
Innovation Inc 867205c1b6
Update drone.lua 2021-01-07 18:09:10 -06:00
Innovation Inc 6f6467c7e8
Update drone.lua 2021-01-07 17:42:57 -06:00
Innovation Inc 3e9b448cae
Update drone.lua 2021-01-07 17:42:03 -06:00

View file

@ -1,8 +1,4 @@
-- Based off https://oc.cil.li/topic/1570-drone-controll-bios/ local fwv = "0.02"
-- Modified by enthusiasticGeek to give the drone inventory capabilities, as well as the ability to update itself without disassembly.
-- Version 0.01
local fwv = "0.01"
local d = component.proxy(component.list("drone")()) local d = component.proxy(component.list("drone")())
local t = component.proxy(component.list("modem")()) local t = component.proxy(component.list("modem")())
local eeprom = component.proxy(component.list("eeprom")()) local eeprom = component.proxy(component.list("eeprom")())
@ -10,25 +6,32 @@ local interweb = component.proxy(component.list("internet")())
local str = string local str = string
local fwaddress = "https://raw.githubusercontent.com/DremOSDeveloperTeam/opencomputers-drone/master/drone.lua" local fwaddress = "https://raw.githubusercontent.com/DremOSDeveloperTeam/opencomputers-drone/master/drone.lua"
local commport = 6500 local commport = 6500
local idle_color = 0xFF00FF
local cmdrec_color = 0xFF00FF
local cmdacc_color = 0xFFFFFF
t.open(6500) t.open(6500)
function sendMsg(msg)
t.broadcast(commport,d.name(),"up",msg)
end
while true do while true do
d.setLightColor(0x0000FF) d.setLightColor(idle_color)
local evt,_,sender,port,_,name,cmd,a,b,c = computer.pullSignal() local evt,_,sender,port,_,name,cmd,a,b,c = computer.pullSignal()
d.setLightColor(0xFFFFFF) d.setLightColor(cmdrec_color)
if evt == "modem_message" and name == d.name() then if evt == "modem_message" and name == d.name() then
d.setLightColor(0xFF00FF) d.setLightColor(cmdacc_color)
if cmd == "gfw" then -- Get Firmware Version if cmd == "gfw" then -- Get Firmware Version
t.broadcast(commport, fwv) sendMsg(fwv)
end end
if cmd == "ufw" then -- Update Firmware. Essentially stolen from https://github.com/osmarks/oc-drone/ if cmd == "ufw" then -- Update Firmware.
local web_request = interweb.request(fwaddress) local web_request = interweb.request(fwaddress)
t.broadcast(commport, "Updating firmware...") sendMsg("Updating firmware...")
t.broadcast(commport, " Connecting...") sendMsg(" Connecting...")
web_request.finishConnect() web_request.finishConnect()
t.broadcast(commport, " Connected!") sendMsg(" Connected!")
t.broadcast(commport, " Downloading new firmware...") sendMsg(" Downloading new firmware...")
local full_response = "" local full_response = ""
while true do while true do
local chunk = web_request.read() local chunk = web_request.read()
@ -39,69 +42,88 @@ while true do
break break
end end
end end
t.broadcast(commport, " Firmware file downloaded!") sendMsg(" Firmware file downloaded!")
t.broadcast(commport, " Flashing new firmware...") sendMsg(" Flashing new firmware...")
eeprom.set(full_response) eeprom.set(full_response)
t.broadcast(commport, " Done flashing firmware!") sendMsg(" Done flashing firmware!")
t.broadcast(commport, "Update process done! Please reboot the drone for changes to take effect.") sendMsg("Update process done!")
end end
if cmd == "gst" then -- Get Status Text if cmd == "gst" then -- Get Status Text
t.broadcast(commport, d.name(),"gst",d.getStatusText()) sendMsg(d.getStatusText())
end end
if cmd == "sst" then -- Set Status Text if cmd == "sst" then -- Set Status Text
t.broadcast(commport, d.name(),"sst",d.setStatusText(a)) sendMsg(d.setStatusText(a))
end
if cmd == "gpn" then -- Get Port Number
sendMsg(commport)
end
if cmd == "spn" then -- Set Port Number
if a ~= nil and a ~= '' then
commport = a
end
end end
if cmd == "mov" then -- MOVe if cmd == "mov" then -- MOVe
d.move(a,b,c) d.move(a,b,c)
end end
if cmd == "gos" then -- Get OffSet if cmd == "gos" then -- Get OffSet
t.broadcast(commport, d.name(),"gos",d.getOffset()) sendMsg(d.getOffset())
end end
if cmd == "gve" then -- Get VElocity if cmd == "gve" then -- Get VElocity
t.broadcast(commport, d.name(),"gv",d.getVelocity()) sendMsg(d.getVelocity())
end end
if cmd == "gmv" then -- Get Max Velocity if cmd == "gmv" then -- Get Max Velocity
t.send(commport, d.name(),"gmv",d.getMaxVelocity()) sendMsg(d.getMaxVelocity())
end end
if cmd == "gac" then -- Get ACceleration if cmd == "gac" then -- Get ACceleration
t.broadcast(commport, d.name(),"ga",d.getAcceleration()) sendMsg(d.getAcceleration())
end end
if cmd == "sac" then -- Set ACceleration if cmd == "sac" then -- Set ACceleration
d.setAcceleration(a) d.setAcceleration(a)
end end
if cmd == "glc" then -- Get Light Color if cmd == "glc" then -- Get Light Color
t.broadcast(commport, d.name(),"glc",d.getLightColor()) sendMsg(d.getLightColor())
end end
if cmd == "slc" then -- Set Light Color (RGB is important!) if cmd == "slc" then -- Set Light Color (RGB is important!)
d.setLightColor(a) if b ~= nil and b ~= '' then
if b == "0" then
idle_color = a
end
if b == "1" then
cmdrec_color = a
end
if b == "2" then
cmdacc_color = a
end
end
end end
if cmd == "eif" then -- External Inventory Find (Instead of detect) if cmd == "eif" then -- External Inventory Find
local b, s = d.detect(a) local b, s = d.detect(a)
t.broadcast(commport, d.name(),"dct",b,s) sendMsg(b)
sendMsg(s)
end end
if cmd == "eco" then -- External inventory COmpare if cmd == "eco" then -- External inventory COmpare
t.broadcast(commport, d.name(),"c",d.compare(a)) sendMsg(d.compare(a))
end end
if cmd == "esu" then -- External inventory SUck if cmd == "esu" then -- External inventory SUck
o = d.suck(a, b) o = d.suck(a, b)
t.broadcast(commport, o) sendMsg(o)
end end
if cmd == "edr" then -- External inventory DRop if cmd == "edr" then -- External inventory DRop
o = d.drop(a, b) o = d.drop(a, b)
t.broadcast(commport, o) sendMsg(o)
end end
if cmd == "igs" then -- Internal inventory Get Slot if cmd == "igs" then -- Internal inventory Get Slot
t.broadcast(commport, d.select()) sendMsg(d.select())
end end
if cmd == "iss" then -- Internal inventory Set Slot if cmd == "iss" then -- Internal inventory Set Slot
o = d.select(a) o = d.select(a)
t.broadcast(commport, o) sendMsg(o)
end end
if cmd == "gis" then -- Get Inventory Size if cmd == "gis" then -- Get Inventory Size
t.broadcast(commport, d.inventorySize()) sendMsg(d.inventorySize())
end end
if cmd == "gsr" then -- Get Slot space Remaining if cmd == "gsr" then -- Get Slot space Remaining
t.broadcast(commport, d.space(a)) sendMsg(d.space(a))
end end
end end
end end