Skip to content

Instantly share code, notes, and snippets.

@moogoo78
Last active December 23, 2015 05:49
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save moogoo78/6589902 to your computer and use it in GitHub Desktop.
Save moogoo78/6589902 to your computer and use it in GitHub Desktop.
get Corona SDK info
local function info()
print("========= display info =========")
print(string.format("pixel: %dx%d, ratio: %.02f",
display.pixelWidth,
display.pixelHeight,
display.pixelHeight/display.pixelWidth))
print(string.format("content: %dx%d, ratio: %.02f",
display.contentWidth,
display.contentHeight,
display.contentHeight/display.contentWidth))
print(string.format("actual: %dx%d",
display.actualContentWidth,
display.actualContentHeight
))
print(string.format("scale: (%.02f, %.02f)",
display.contentScaleX,
display.contentScaleY
))
print(string.format("origin: (%d, %d)",
display.screenOriginX,
display.screenOriginY
))
print("-------- system.getInfo --------")
local prop = {
"model",
"platformName",
"platformVersion",
"environment",
"architectureInfo",
"build",
"name",
"appname",
"appVersionString",
"deviceID",
"maxTexturueSize",
"maxTextureUnits",
"textureMemoryUsed",
"targetAppStore",
"iosAdvertisingIdentifier",
"iosAdvertisingTrackingEnabled",
"iosIdentifierForVendor",
"androidDisplayApproximateDpi",
"androidDisplayDensityName",
"androidDisplayXDpi",
"androidDisplayYDpi",
}
for _,v in pairs(prop) do
print (string.format("%s: %s", v, system.getInfo(v) or "nil"))
end
print("--------- language ----------")
print(string.format("locale.country: %s",
system.getPreference( "locale", "country" )))
print(string.format("locale.idettifier: %s",
system.getPreference( "locale", "identifier" )))
print(string.format("locale.language: %s",
system.getPreference( "locale", "language" )))
print(string.format("ui.language: %s",
system.getPreference( "ui", "language" )))
print("===============================")
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment