Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --I trimmed it a little :P
- --Start of StrUtils
- --[[
- Copyright (C) 2012 Thomas Farr a.k.a tomass1996 [[email protected]]
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
- associated documentation files (the "Software"), to deal in the Software without restriction,
- including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
- copies of the Software, and to permit persons to whom the Software is furnished to do so,
- subject to the following conditions:
- -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
- -Visible credit is given to the original author.
- -The software is distributed in a non-profit way.
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
- WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
- COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
- ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- --]]
- function find(str, match, startIndex) --Finds @match in @str optionally after @startIndex
- if not match then return nil end
- str = tostring(str)
- local _ = startIndex or 1
- local _s = nil
- local _e = nil
- local _len = match:len()
- while true do
- local _t = str:sub( _ , _len + _ - 1)
- if _t == match then
- _s = _
- _e = _ + _len - 1
- break
- end
- _ = _ + 1
- if _ > str:len() then break end
- end
- if _s == nil then return nil else return _s, _e end
- end
- function seperate(str, divider) --Separates @str on @divider
- if not divider then return nil end
- str = tostring(str)
- local start = {}
- local endS = {}
- local n=1
- repeat
- if n==1 then
- start[n], endS[n] = find(str, divider)
- else
- start[n], endS[n] = find(str, divider, endS[n-1]+1)
- end
- n=n+1
- until start[n-1]==nil
- local subs = {}
- for n=1, #start+1 do
- if n==1 then
- subs[n] = str:sub(1, start[n]-1)
- elseif n==#start+1 then
- subs[n] = str:sub(endS[n-1]+1)
- else
- subs[n] = str:sub(endS[n-1]+1, start[n]-1)
- end
- end
- return subs
- end
- --End of StrUtils
- tArgs = {...}
- function compFile()
- filename = tArgs[2]
- name = tArgs[3]
- reader = fs.open(filename,"r")
- f=fs.open(name,"a") -- Opening the file too write/append too
- datTab={} -- Establishing the table of which things are parsed itno
- while true do -- The primary loop of which the prgoram is compiled in
- line = reader.readLine() -- This reads the line
- if (not line) then f.close() os.reboot() break end -- This checks and makes it stop when there is a blank line
- datTab = seperate(line," ") -- This breaks up the line by spaces
- -- Base Commands Here
- if datTab[1]=="echo" then f.writeLine("print("..datTab[2]..")") -- echo "texthere"
- elseif datTab[1]=="var" then f.writeLine(datTab[2].." = "..datTab[3]) -- var x 5
- elseif datTab[1]=="if" and datTab[2]=="create" then f.writeLine("if "..datTab[3].." "..datTab[4].." "..datTab[5].." then ") -- if x == 4
- elseif datTab[1]=="if" and datTab[2]=="add" then f.writeLine("elseif "..datTab[3].." "..datTab[4].." "..datTab[5].." then") --if add x == 4
- elseif datTab[1]=="if" and datTab[2]=="otherwise" then f.writeLine("else")
- elseif datTab[1]=="if" and datTab[2]=="seal" then f.writeLine("end") -- if seal
- elseif datTab[1]=="math" then f.writeLine(datTab[2].." = "..datTab[3].." "..datTab[4].." "..datTab[5]) -- math x 4 + 6
- elseif datTab[1]=="loop" and datTab[2]=="begin" then f.writeLine("repeat") -- loop
- elseif datTab[1]=="loop" and datTab[2]=="end" and datTab[3]=="never" then f.writeLine("until nil ~= nil") -- condition x == 5
- elseif datTab[1]=="loop" and datTab[2]=="end" and datTab[3]~="never" then f.writeLine("until "..datTab[4].." "..datTab[5].." "..datTab[6])
- elseif datTab[1]=="chunk" and datTab[2]=="create" then f.writeLine("function "..datTab[3].."()") -- chunk create chunkname
- elseif datTab[1]=="chunk" and datTab[2]=="run" then f.writeLine(datTab[3].."()") -- chunk run chunkname
- elseif datTab[1]=="custom" then f.writeLine(datTab[2]) -- custom printer.drawChar(1,1,"H")
- elseif datTab[1]=="#" then f.writeLine("-- "..datTab[2]) -- # "this is a comment"
- -- Rednet Commands Here
- elseif datTab[1]=="lan" or datTab[1]=="LAN" and datTab[2]=="connect" and datTab[3]=="all" then f.writeLine("rednet.open('right') rednet.open('left') rednet.open('top') rednet.open('back')") -- lan connect all
- elseif datTab[1]=="lan" or datTab[1]=="LAN" and datTab[2]=="connect" and datTab[3]~="all" then f.writeLine("rednet.open('"..datTab[3].."')") -- lan connect side
- elseif datTab[1]=="lan" or datTab[1]=="LAN" and datTab[2]=="send" then f.writeLine("rednet.send("..datTab[3]..",('"..datTab[4].."')") -- lan send id message
- elseif datTab[1]=="lan" or datTab[1]=="LAN" and datTab[2]=="disconnect" and datTab[3]=="all" then f.writeLine("rednet.close('back') rednet.close('top') rednet.close('left') rednet.close('right')") -- lan close all
- elseif datTab[1]=="lan" or datTab[1]=="LAN" and datTab[2]=="disconnect" and datTab[3]~="all" then f.writeLine("rednet.close('"..datTab[4].."')") -- lan close side
- elseif datTab[1]=="lan" or datTab[1]=="LAN" and datTab[2]=="test" then f.writeLine("rednet.announce()") -- lan test
- elseif datTab[1]=="lan" or datTab[1]=="LAN" and datTab[2]=="broadcast" then f.writeLine("rednet.broadcast('"..datTab[3].."')") -- lan broadcast message
- elseif datTab[1]=="lan" or datTab[1]=="LAN" and datTab[2]=="receive" then f.writeLine(datTab[3]..","..datTab[4]..","..datTab[5].." = rednet.receive("..datTab[6]..")") -- lan receive varnameid varnamemessage varnamedistance timeout
- -- Peripheral Commands Here
- elseif datTab[1]=="external" and datTab[2]=="present" then f.writeLine(datTab[3].." = peripheral.isPresent('"..datTab[4].."')") -- external present varname side
- elseif datTab[1]=="external" and datTab[2]=="wrap" then f.writeLine("peripheral.wrap('"..datTab[3].."')") -- external wrap side
- elseif datTab[1]=="external" and datTab[2]=="type" then f.writeLine(datTab[3].." = peripheral.getType('"..datTab[4].."')") -- external type varname side
- -- Disk Commands Here
- elseif datTab[1]=="cd" and datTab[2]=="check" and datTab[3]=="exists" then f.writeLine(datTab[4].." = disk.isPresent('"..datTab[5].."') then") -- cd check exists varname side
- elseif datTab[1]=="cd" and datTab[2]=="check" and datTab[3]=="data" then f.writeLine(datTab[4].." = disk.hasData('"..datTab[5].."') then") -- cd check data varname side
- elseif datTab[1]=="cd" and datTab[2]=="check" and datTab[3]=="music" then f.writeLine(datTab[4].." = disk.hasAudio('"..datTab[5].."') then") -- cd check music varname side
- elseif datTab[1]=="cd" and datTab[2]=="get" and datTab[3]=="name" then f.writeLine(datTab[4].." = disk.getLabel('"..datTab[5].. "')") -- cd get name varname side
- elseif datTab[1]=="cd" and datTab[2]=="set" and datTab[3]=="name" then f.writeLine("disk.setLabel("..datTab[4]..","..datTab[5]..")") -- cd set name side name
- elseif datTab[1]=="cd" and datTab[2]=="eject" then f.writeLine("disk.eject('"..datTab[3].."')") -- cd eject side
- elseif datTab[1]=="cd" and datTab[2]=="play" then f.writeLine("disk.playAudio('"..datTab[3].."')") -- cd play side
- elseif datTab[1]=="cd" and datTab[2]=="stop" then f.writeLine("disk.stopAudio('"..datTab[3].."')") -- cd stop side
- -- Redstone/Cable Commands Here
- elseif datTab[1]=="redstone" and datTab[2]=="raw" and datTab[3]=="get" then f.writeLine(datTab[4]" = redstone.getInput('"..datTab[5].."')") -- redstone raw get varname side
- elseif datTab[1]=="redstone" and datTab[2]=="raw" and datTab[3]=="set" then f.writeLine("redstone.setOutput("..datTab[4]..","..datTab[5]..")") -- redstone raw set left true
- elseif datTab[1]=="redstone" and datTab[2]=="cable" and datTab[3]=="set" then f.writeLine("redstone.setBundledOutput("..datTab[4]..", colors."..datTab[5]..")") -- redstone cable set side color
- elseif datTab[1]=="redstone" and datTab[2]=="cable" and datTab[3]=="wipe" then f.writeLine("redstone.setBundledOutput("..datTab[4]..", 0)") -- redstone cable wipe side
- elseif datTab[1]=="redstone" and datTab[2]=="cable" and datTab[3]=="get" then f.writeLine(datTab[4]" = colors.test(redstone.getBundledInput('"..datTab[5].."'), colors."..datTab[6]..")") -- redstone cable get varname side color
- -- Shell and Terminal Commands Here
- elseif datTab[1]=="run" then f.writeLine("shell.run('"..datTab[2]..","..datTab[3].."')") -- run programname arguments
- elseif datTab[1]=="exit" and datTab[2]=="program" then f.writeLine("shell.exit()") -- exit program
- elseif datTab[1]=="clear" and datTab[2]=="screen" then f.writeLine("term.clear()") f.writeLine("term.setCursorPos(1,1)")
- elseif datTab[1]=="clear" and datTab[2]=="line" then f.writeLine("term.clearLine()")
- elseif datTab[1]=="get" and datTab[2]=="cursor" then f.writeLine(datTab[3]..","..datTab[4].." = term.getCursorPos()") -- get cursor xvarname yvarname
- elseif datTab[1]=="set" and datTab[2]=="cursor" then f.writeLine("term.setCursorPos("..datTab[3]..","..datTab[4]..")") -- get cursor xvarname yvarname
- elseif datTab[1]=="set" and datTab[2]=="blink" then f.writeLine("term.setCursorBlink("..datTab[3]..")")
- elseif datTab[1]=="get" and datTab[2]=="screen" and datTab[3]=="size" then f.writeLine(datTab[4]..","..datTab[5].." = term.getSize()") -- get screen size xvarname yvarname
- elseif datTab[1]=="redirect" and datTab[2]=="monitor" then f.writeLine("term.redirect("..datTab[3]..")") -- redirect monitor size
- elseif datTab[1]=="redirect" and datTab[2]=="terminal" then f.writeLine("term.restore()") -- redirect terminal
- -- OS Commands Here
- elseif datTab[1]=="version" then f.writeLine(datTab[2].." = os.version()") -- version varname
- elseif datTab[1]=="id" then f.writeLine(datTab[2].." = os.computerID()") -- id varname
- elseif datTab[1]=="api" and datTab[2]=="load" then f.writeLine("os.loadAPI('"..datTab[3].."')") -- api load apiname
- elseif datTab[1]=="api" and datTab[2]=="unload" then f.writeLine("os.unloadAPI('"..datTab[3].."')") -- api unload apiname
- elseif datTab[1]=="get" and datTab[2]=="input" then f.writeLine(datTab[3].." = read()") -- get input varname
- elseif datTab[1]=="get" and datTab[2]=="event" then f.writeLine(datTab[3].." = os.pullEvent("..datTab[4]..")") -- get event varname "filter"
- elseif datTab[1]=="cputime" then f.writeLine(datTab[2].." = os.clock()") -- cputime varname
- elseif datTab[1]=="wait" then f.writeLine("sleep("..datTab[2]..")") -- wait 5
- elseif datTab[1]=="time" then f.writeLine(datTab[2].." = os.time()") -- time varname
- elseif datTab[1]=="shutdown" and datTab[2]=="computer" then f.writeLine("fs.delete('/SSTempFile') os.shutdown()") -- shutdown computer
- elseif datTab[1]=="restart" and datTab[2]=="computer" then f.writeLine("fs.delete('/SSTempFile') os.reboot()") -- reboot computer
- -- Fs/Io Commands Here
- elseif datTab[1]=="list" then f.writeLine("fs.list('"..datTab[2].."')") -- list path/here/for/whatevers
- elseif datTab[1]=="exists" then f.writeLine("fs.exists('"..datTab[2].."')") -- exists path/here/for/whatevers
- elseif datTab[1]=="isreadonly" then f.writeLine("fs.isReadOnly('"..datTab[2].."')") -- isreadonly path/here/for/whatevers
- elseif datTab[1]=="getname" then f.writeLine("fs.getName('"..datTab[2].."')") -- getname path/here/for/whatevers
- elseif datTab[1]=="make" and datTab[2]=="folder" then f.writeLine("fs.makeDir('"..datTab[3].."')") -- makedir path/here/for/whatevers
- elseif datTab[1]=="move" then f.writeLine("fs.move('"..datTab[2].."','"..datTab[3].."')") -- move path/A path/B
- elseif datTab[1]=="copy" then f.writeLine("fs.copy('"..datTab[2].."','"..datTab[3].."')") -- copy path/A path/B
- elseif datTab[1]=="delete" then f.writeLine("fs.delete('"..datTab[2].."')") -- delete path/here/for/whatevers
- elseif datTab[1]=="edit" and datTab[2]=="file" then f.writeLine(datTab[3].." = fs.open('"..datTab[4]..",'"..datTab[5].."')") -- open varname path/here/for/whatevers mode
- -- Math Commands Here
- elseif datTab[1]=="random" then f.writeLine(datTab[2].."=math.random("..datTab[3]..")") -- random varname maxnumber
- elseif datTab[1]=="absolute" then f.writeLine(datTab[2].."math.abs("..datTab[3]..")") -- absolute varname number
- elseif datTab[1]=="ceiling" then f.writeLine(datTab[2].."=math.ceil("..datTab[3]..")") -- ceiling varname number
- elseif datTab[1]=="floor" then f.writeLine(datTab[2].."=math.floor("..datTab[3]..")") -- floor varname number
- elseif datTab[1]=="power" then f.writeLine(datTab[2].."=math.pow("..datTab[3]..","..datTab[4]..")") -- power varname numbera numberb
- elseif datTab[1]=="pi" then f.writeLine(datTab[2].."=math.pi()") -- pi varname
- elseif datTab[1]=="squareroot" then f.writeLine(datTab[2].."=math.sqrt("..datTab[3]..")") -- squareroot varname number
- else print("ERROR: INCORRECT SYNTAX") -- Error code here
- end
- end
- end
- if tArgs[1] == "compile" then
- compFile()
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement