Created
August 19, 2013 20:56
-
-
Save JMV38/6274091 to your computer and use it in GitHub Desktop.
XFC AutoInstall
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --# Main | |
| --XFC Single Install | |
| --Installer created by @Briarfox | |
| --- This will pull the XFC project into Codea for you | |
| -- Instructions: | |
| -- * Create a new project in Codea named XFC If you chose another name please change the variable Below | |
| --This is case sensitive | |
| ProjectName = "XFC" | |
| -- * Paste this into the Main (not from the raw view, as iSafari will escape special characters) | |
| -- * Make sure there is a single tab in the project | |
| -- * Run and wait for success! | |
| -- If all went well, you should have a XFC project now | |
| function setup() | |
| local jsonCode | |
| getJsonLib() | |
| end | |
| function getJsonLib() | |
| local tabs = listProjectTabs() | |
| if #tabs == 1 then | |
| print("Attempting to load json...") | |
| local handleSuccess = function(data) | |
| --saveProjectTab("json", data) | |
| jsonCode = data | |
| --sound(SOUND_POWERUP, 42179) | |
| print("json code loaded...") | |
| if jsonCode then | |
| print("Attempting to pull project...") | |
| l = loadstring(jsonCode) | |
| l() | |
| GetProject() | |
| end | |
| end | |
| http.request("https://dl.dropboxusercontent.com/s/9e4nvqeu4hsux2q/Json.lua?token_hash=AAFyMB98j4bnt_1gawf9wSke52hsoC7hsIvARcTuZNeOEw&dl=1", handleSuccess) | |
| end | |
| end | |
| function GetProject() | |
| local projectCheck = listProjectTabs(ProjectName) | |
| if #projectCheck ~= 0 then | |
| local handleSuccess = function(data,i,j) | |
| local gist = json.decode(data) | |
| local projName = ProjectName | |
| if gist.files["1aTabOrder"] then | |
| print("***Tab Order Found***") | |
| local taborder = gist.files["1aTabOrder"].content | |
| local strStart =1 | |
| local strEnd =0 | |
| strStart = string.find(taborder,"#",strEnd) | |
| strEnd = string.find(taborder,"\n",strStart) | |
| while strStart do | |
| local tmp = string.sub(taborder,strStart+1,strEnd-1) | |
| local name = ProjectName..":"..tmp | |
| tmp = tmp..".lua" | |
| saveProjectTab(name,gist.files[tmp].content) | |
| strStart = string.find(taborder,"#",strEnd) | |
| strEnd = string.find(taborder,"\n",strStart) | |
| end | |
| else | |
| for k,v in pairs(gist.files) do | |
| local name = ProjectName .. ":" .. string.gsub(k,".lua","") | |
| saveProjectTab(name, v.content) | |
| end | |
| end | |
| sound(SOUND_PICKUP, 11797) | |
| print("Success!") | |
| end | |
| local handleFailure = function(data) | |
| sound(SOUND_EXPLODE, 32351) | |
| print(data) | |
| end | |
| http.request("https://api.github.com/gists/6a26ae903600a769ae39",handleSuccess, handleFailure) | |
| else | |
| output.clear() | |
| sound(SOUND_EXPLODE, 32351) | |
| print([[ERROR | |
| Project name incorrect! | |
| Please make sure the variable ProjectName = "your project" matches the project name. | |
| This is case sensitive!]]) | |
| end | |
| end | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment