added manual mode
This commit is contained in:
parent
8900491c18
commit
77a8d5442f
|
@ -4,30 +4,33 @@ buttonColor = colors.lightGray
|
||||||
textColor = colors.lightGray
|
textColor = colors.lightGray
|
||||||
altTextColor = colors.gray
|
altTextColor = colors.gray
|
||||||
backgroundColor = colors.black
|
backgroundColor = colors.black
|
||||||
|
if arg[1] == nil then
|
||||||
function round(n) -- We need a function to round the center of the terminal
|
function round(n) -- We need a function to round the center of the terminal
|
||||||
return n % 1 >= 0.5 and math.ceil(n) or math.floor(n)
|
return n % 1 >= 0.5 and math.ceil(n) or math.floor(n)
|
||||||
end
|
end
|
||||||
width, height = term.getSize() -- Gets the terminal size to determine the center
|
width, height = term.getSize() -- Gets the terminal size to determine the center
|
||||||
centerWidth = round(width / 2) -- Defines the horizontal center
|
centerWidth = round(width / 2) -- Defines the horizontal center
|
||||||
centerHeight = round(height / 2) -- Defines the vertical center
|
centerHeight = round(height / 2) -- Defines the vertical center
|
||||||
peripherals = peripheral.getNames() -- Gets peripherals to check if any disk drives are avavailable
|
peripherals = peripheral.getNames() -- Gets peripherals to check if any disk drives are avavailable
|
||||||
if #peripherals < 0 then
|
if #peripherals < 0 then
|
||||||
print "No drive"
|
print "No drive"
|
||||||
return true -- Exits if there's no disk drive
|
return true -- Exits if there's no disk drive
|
||||||
else
|
else
|
||||||
driveCount = 0
|
driveCount = 0
|
||||||
for n = 1, #peripherals do
|
for n = 1, #peripherals do
|
||||||
local driveCheck = peripherals[n]
|
local driveCheck = peripherals[n]
|
||||||
if peripheral.getType(driveCheck) == "drive" then
|
if peripheral.getType(driveCheck) == "drive" then
|
||||||
drive = driveCheck
|
drive = driveCheck
|
||||||
driveCount = driveCount + 1
|
driveCount = driveCount + 1
|
||||||
|
end
|
||||||
|
end
|
||||||
|
if driveCount > 1 then
|
||||||
|
print("Too many disk drives. Specify where the disk drive is by running rhythmbox [drive position]") -- For safety reasons
|
||||||
|
os.exit()
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
if driveCount > 1 then
|
else
|
||||||
print("Too many disk drives. Specify where the disk drive is by running rhythmbox [drive position]") -- For safety reasons
|
drive = arg[1]
|
||||||
os.exit()
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
||||||
--[[ Instead of calling every status by string, we call the variables storing the strings. This may ease translation if we plan to do it in the future.
|
--[[ Instead of calling every status by string, we call the variables storing the strings. This may ease translation if we plan to do it in the future.
|
||||||
|
|
Loading…
Reference in a new issue