Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

update lua to 5.3.3 and change project to android studio #21

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions .classpath

This file was deleted.

7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
*.iml
.gradle
/local.properties
/.idea
.DS_Store
/build
/captures
33 changes: 0 additions & 33 deletions .project

This file was deleted.

18 changes: 0 additions & 18 deletions AndroidManifest.xml

This file was deleted.

1 change: 1 addition & 0 deletions app/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/build
26 changes: 26 additions & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 24
buildToolsVersion "24.0.1"

defaultConfig {
applicationId "sk.kottman.androlua"
minSdkVersion 15
targetSdkVersion 24
}

buildTypes {
release {
minifyEnabled false
proguardFiles 'proguard.cfg'
}
}

sourceSets {
main {
jni.srcDirs = []
jniLibs.srcDirs = ["src/main/libs"]
}
}
}
File renamed without changes.
1 change: 1 addition & 0 deletions app/src/main/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/obj
26 changes: 26 additions & 0 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="sk.kottman.androlua"
android:versionCode="1"
android:versionName="1.0">

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.BLUETOOTH" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.READ_SMS" />

<application
android:icon="@drawable/icon"
android:label="@string/app_name">
<activity
android:name=".Main"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
File renamed without changes.
268 changes: 134 additions & 134 deletions assets/import.lua → app/src/main/assets/import.lua
Original file line number Diff line number Diff line change
@@ -1,134 +1,134 @@
local packages = {}
local append = table.insert
local new = luajava.new
-- SciTE requires this, if you want to see stdout immediately...
io.stdout:setvbuf 'no'
io.stderr:setvbuf 'no'
local function new_tostring (o)
return o:toString()
end
local function call (t,...)
local obj,stat
if select('#',...) == 1 and type(select(1,...))=='table' then
obj = make_array(t,select(1,...))
else
stat,obj = pcall(new,t,...)
if not stat then
print(debug.traceback())
os.exit(1)
end
end
getmetatable(obj).__tostring = new_tostring
return obj
end
local function import_class (classname,packagename)
local res,class = pcall(luajava.bindClass,packagename)
if res then
_G[classname] = class
local mt = getmetatable(class)
mt.__call = call
return class
end
end
local function massage_classname (classname)
if classname:find('_') then
classname = classname:gsub('_','$')
end
return classname
end
local globalMT = {
__index = function(T,classname)
classname = massage_classname(classname)
for i,p in ipairs(packages) do
local class = import_class(classname,p..classname)
if class then return class end
end
error("import cannot find "..classname)
end
}
setmetatable(_G, globalMT)
function import (package)
local i = package:find('%.%*$')
if i then -- a wildcard; put into the package list, including the final '.'
append(packages,package:sub(1,i))
else
local classname = package:match('([%w_]+)$')
if not import_class(classname,package) then
error("cannot find "..package)
end
end
end
append(packages,'')
function proxy (classname,obj)
classname = massage_classname(classname)
-- if the classname contains dots it's assumed to be fully qualified
if classname:find('.',1,true) then
return luajava.createProxy(classname,obj)
end
-- otherwise, it must lie on the package path!
for i,p in ipairs(packages) do
local ok,res = pcall(luajava.createProxy,p..classname, obj)
if ok then return res end
end
error ("cannot find "..classname)
end
function enum(e)
--local e = o:GetEnumerator()
return function()
if e:hasMoreElements() then
return e:nextElement()
end
end
end
function dump (t)
for k,v in pairs(t) do
print(k,v)
end
end
function p (o)
if type(o) == 'userdata' then
local mt = getmetatable(o)
if not mt.__tostring then
return print('java:'..o:toString())
end
end
print(type(o)..':'..tostring(o))
end
import 'java.lang.reflect.Array'
function make_array (Type,list)
local len
local init = type(list)=='table'
if init then
len = #list
else
len = list
end
local arr = Array:newInstance(Type,len)
if init then
for i,v in ipairs(list) do
Array:set(arr,i-1,v)
end
end
return arr
end
import 'java.lang.*'
import 'java.util.*'
local packages = {}
local append = table.insert
local new = luajava.new

-- SciTE requires this, if you want to see stdout immediately...

io.stdout:setvbuf 'no'
io.stderr:setvbuf 'no'

local function new_tostring (o)
return o:toString()
end

local function call (t,...)
local obj,stat
if select('#',...) == 1 and type(select(1,...))=='table' then
obj = make_array(t,select(1,...))
else
stat,obj = pcall(new,t,...)
if not stat then
print(debug.traceback())
os.exit(1)
end
end
getmetatable(obj).__tostring = new_tostring
return obj
end

local function import_class (classname,packagename)
local res,class = pcall(luajava.bindClass,packagename)
if res then
_G[classname] = class
local mt = getmetatable(class)
mt.__call = call
return class
end
end

local function massage_classname (classname)
if classname:find('_') then
classname = classname:gsub('_','$')
end
return classname
end

local globalMT = {
__index = function(T,classname)
classname = massage_classname(classname)
for i,p in ipairs(packages) do
local class = import_class(classname,p..classname)
if class then return class end
end
error("import cannot find "..classname)
end
}
setmetatable(_G, globalMT)

function import (package)
local i = package:find('%.%*$')
if i then -- a wildcard; put into the package list, including the final '.'
append(packages,package:sub(1,i))
else
local classname = package:match('([%w_]+)$')
if not import_class(classname,package) then
error("cannot find "..package)
end
end
end

append(packages,'')

function proxy (classname,obj)
classname = massage_classname(classname)
-- if the classname contains dots it's assumed to be fully qualified
if classname:find('.',1,true) then
return luajava.createProxy(classname,obj)
end
-- otherwise, it must lie on the package path!
for i,p in ipairs(packages) do
local ok,res = pcall(luajava.createProxy,p..classname, obj)
if ok then return res end
end
error ("cannot find "..classname)
end


function enum(e)
--local e = o:GetEnumerator()
return function()
if e:hasMoreElements() then
return e:nextElement()
end
end
end

function dump (t)
for k,v in pairs(t) do
print(k,v)
end
end

function p (o)
if type(o) == 'userdata' then
local mt = getmetatable(o)
if not mt.__tostring then
return print('java:'..o:toString())
end
end
print(type(o)..':'..tostring(o))
end

import 'java.lang.reflect.Array'

function make_array (Type,list)
local len
local init = type(list)=='table'
if init then
len = #list
else
len = list
end
local arr = Array:newInstance(Type,len)
if init then
for i,v in ipairs(list) do
Array:set(arr,i-1,v)
end
end
return arr
end


import 'java.lang.*'
import 'java.util.*'

Loading