forked from gideros/gideros
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[plugins/ads] First attempt at a lua script for ads on IOS
- Loading branch information
Showing
3 changed files
with
172 additions
and
4 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,168 @@ | ||
function string.starts(String,Start) | ||
return string.sub(String,1,string.len(Start))==Start | ||
end | ||
|
||
function string.ends(String,End) | ||
return End=='' or string.sub(String,-string.len(End))==End | ||
end | ||
|
||
iOSProject={ | ||
id=0 | ||
} | ||
|
||
iOSProject.insertPoints={ | ||
Refs={ tag="/* End PBXFileReference section */", type="prepend", data={}}, | ||
-- Groups and tree structure | ||
GroupPlugins_ios={ tag="EB42A05D1D66ED5000766D7E /* plugins.cpp */,", data={}}, | ||
GroupPlugins_atv={ tag="EB42A0601D674BCB00766D7E /* plugins.cpp */,", data={}}, | ||
GroupFrameworks={ tag="5FD896EB15CED77F00D34824 /* UIKit.framework */,", data={}}, | ||
-- Build refs | ||
Frameworks_ios={ tag="5FD896EC15CED77F00D34824 /* UIKit.framework in Frameworks */,", data={}}, | ||
Frameworks_atv={ tag="B2E3EFD61BAC117B005599BD /* UIKit.framework in Frameworks */,", data={}}, | ||
SourceBuild_ios={ tag="EB42A05E1D66ED5000766D7E /* plugins.cpp in Sources */,", data={}}, | ||
SourceBuild_atv={ tag="EB42A0611D674BCB00766D7E /* plugins.cpp in Sources */,", data={}}, | ||
--Paths | ||
FrameworksPaths={ tag="FRAMEWORK_SEARCH_PATHS = (", data={}}, | ||
} | ||
iOSProject.XML_TEMPLATE= | ||
[[<template name="iOS Project file" path=""><replacelist wildcards="project.pbxproj">%s</replacelist></template>]] | ||
iOSProject.XML_PREPEND="<prepend><orig>%s</orig><by><![CDATA[%s]]></by></prepend>" | ||
iOSProject.XML_APPEND="<append><orig>%s</orig><by><![CDATA[%s]]></by></append>" | ||
|
||
iOSProject.newId=function() | ||
local id=string.format("%08x1111000000000000",iOSProject.id) | ||
iOSProject.id=iOSProject.id+1 | ||
return id | ||
end | ||
|
||
iOSProject.insertData=function(section,line) | ||
table.insert(iOSProject.insertPoints[section].data,line) | ||
end | ||
|
||
iOSProject.commit=function() | ||
local rep="" | ||
for _,p in ipairs(iOSProject.insertPoints) do | ||
if #p.data>0 then | ||
local tmpXml=iOSProject.XML_APPEND | ||
if p.type=="prepend" then tmpXml=iOSProject.XML_PREPEND end | ||
rep=rep..tmpXml:format(p.tag,table.concat(p.data,"")) | ||
p.data={} | ||
end | ||
end | ||
if #rep>0 then | ||
rep=iOSProject.XML_TEMPLATE:format(rep) | ||
Export.callXml(rep) | ||
end | ||
end | ||
|
||
iOSProject.addReference=function(filename,filetype) | ||
if filetype==nil then | ||
if filename:ends(".m") then | ||
filetype="sourcecode.c.objc" | ||
elseif filename:ends(".h") then | ||
filetype="sourcecode.c.h" | ||
elseif filename:ends(".c") then | ||
filetype="sourcecode.c.c" | ||
elseif filename:ends(".framework") then | ||
filetype="wrapper.framework" | ||
elseif filename:ends(".cpp") then | ||
filetype="sourcecode.cpp.cpp" | ||
elseif filename:ends(".mm") then | ||
filetype="sourcecode.cpp.objcpp" | ||
elseif filename:ends(".dylib") then | ||
filetype="compiled.mach-o.dylib" | ||
elseif filename:ends(".a") then | ||
filetype="archive.ar" | ||
elseif filename:ends(".plist") then | ||
filetype="text.plist.xml" | ||
elseif filename:ends(".strings") then | ||
filetype="text.plist.strings" | ||
elseif filename:ends(".png") then | ||
filetype"image.png" | ||
else | ||
filetype="text" | ||
end | ||
end | ||
local refid=iOSProject.newId() | ||
local refline= | ||
("%s /* %s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = %s; path = %s; sourceTree = \"<group>\"; };\n") | ||
:format(refid,filename,filetype,filename) | ||
iOSProject.insertData("Refs",refline) | ||
return refid | ||
end | ||
|
||
iOSProject.addSource=function(filename,filetype) | ||
local refid=iOSProject.addReference(filename,filetype) | ||
local fileid=iOSProject.newId() | ||
local refline= | ||
("%s /* %s */ = {isa = PBXBuildFile; fileRef = %s /* %s */; };\n") | ||
:format(fileid,filename,refid,filename) | ||
iOSProject.insertData("Refs",refline) | ||
return refid,fileid | ||
end | ||
|
||
iOSProject.addFramework=function(filename,flavor) | ||
flavor=flavor or "ios" | ||
local refid=iOSProject.addReference(filename) | ||
local refline= | ||
("%s /* %s */,\n") | ||
:format(refid,filename) | ||
iOSProject.insertData("Frameworks_"..flavor,refline) | ||
return refid | ||
end | ||
|
||
iOSProject.addGroup=function(foldername,publicname,dest) | ||
local refid=iOSProject.addReference(foldername) | ||
local refline= | ||
("%s /* %s */ = {isa = PBXGroup; children = (\n/* GIDEXP-GRP-%s */\n); path = %s; sourceTree = \"<group>\"; };\n") | ||
:format(refid,foldername,refid,foldername) | ||
iOSProject.insertData("Refs",refline) | ||
publicname=publicname or refid | ||
iOSProject.insertPoints[publicname]={ tag=("/* GIDEXP-GRP-%s */"):format(refid), data={}} | ||
if dest then | ||
iOSProject.addToGroup(dest,refid) | ||
end | ||
return refid | ||
end | ||
|
||
iOSProject.addToGroup=function(groupname,refid) | ||
local refline=("%s,\n"):format(refid) | ||
iOSProject.insertData(groupname,refline) | ||
end | ||
|
||
iOSProject.addSources=function(srcs,dest,flavor) | ||
flavor=flavor or "ios" | ||
for _,s in srcs do | ||
if s:ends(".m") or s:ends(".mm") or s:ends(".c") or s:ends(".cpp") then --Source | ||
local sref,bref=iOSProject.addSource(s) | ||
iOSProject.addToGroup(dest.."_"..flavor,sref) | ||
iOSProject.addToGroup("SourceBuild_"..flavor,bref) | ||
elseif s:ends(".framework") then | ||
local sref=iOSProject.addFramework(s,flavor) | ||
iOSProject.addToGroup(dest,sref) | ||
else | ||
local sref=iOSProject.addReference(s) | ||
iOSProject.addToGroup(dest,sref) | ||
end | ||
end | ||
end | ||
|
||
iOSProject.addFrameworkPath=function(path) | ||
local refline=("\"$(PROJECT_DIR)/%s\",\n"):format(path) | ||
iOSProject.insertData("FrameworksPaths",refline) | ||
end | ||
|
||
--ADS | ||
iOSProject.addGroup("Ads","GroupAds_ios","GroupPlugins_ios") | ||
iOSProject.addGroup("frameworks","GroupAdsFrameworks_ios","GroupAds_ios") | ||
iOSProject.addGroup("Ads","GroupAds_atv","GroupPlugins_atv") | ||
iOSProject.addGroup("frameworks","GroupAdsFrameworks_atv","GroupAds_atv") | ||
|
||
iOSProject.addSources({ | ||
"ads.mm","adsbinder.cpp","AdsClass.mm","AdsManager.m","AdsState.m", | ||
"AdsStateChangeListener.m","Reachability.m", | ||
"ads.h","AdsClass.h","AdsManager.h","AdsProtocol.h","AdsState.h","AdsStateChangeListener.h","Reachability.h" | ||
}, | ||
"GroupAds","ios") | ||
iOSProject.addFrameworkPath(Export.getProperty("project.namews").."/Plugins/Ads/frameworks") | ||
iOSProject.commit() |
This file contains 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
This file contains 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