• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

torus/Lua-Objective-C-Bridge: Bridge between Lua and Objective-C which allows yo ...

原作者: [db:作者] 来自: 网络 收藏 邀请

开源软件名称(OpenSource Name):

torus/Lua-Objective-C-Bridge

开源软件地址(OpenSource Url):

https://github.com/torus/Lua-Objective-C-Bridge

开源编程语言(OpenSource Language):

C 60.4%

开源软件介绍(OpenSource Introduction):

Lua-Objective-C Bridge

Join the chat at https://gitter.im/torus/Lua-Objective-C-Bridge

Synopsis

local ctx = objc.context:create()
local img = ctx:wrap(objc.class.UIImage)("imageNamed:", "spaceship.png")
local ship = ctx:wrap(objc.class.UIImageView)("alloc")("initWithImage:", -img)

The Lua code above is equivalent to following Objective-C code:

UIImage *img = [UIImage imageNamed:@"spaceship.png"];
UIImageView *ship = [[UIImageView alloc] initWithImage:img];

More Example: https://github.com/torus/ios-lua-lander/blob/master/LuaLander/LuaLander/bootstrap.lua

Requirements

  • Lua 5.2.x or Lua 5.3.x
  • iOS 8.0 or later (probably works on older iOS)
  • or macOS 10.13 or later (probably works on older macOS)

Usage

Just add following files to your project:

  • LuaBridge.h
  • LuaBridge.m
  • LuaBridgeInternal.h
  • utils.lua
  • Lua source code (excluding lua.c and luac.c)

Samples/Tests

Please see LuaObjCBridge and LuaObjCBridgeMac projects.

Objective-C API

First, import Lua and the bridge header files:

#import "lua.h"
#import "lualib.h"
#import "lauxlib.h"
#import "LuaBridge.h"

Then,

lua_State *L = [[LuaBridge instance] L];

gets the lua_State object to call Lua functions.

High-Level Lua API

local ctx = objc.context:create()

Creates a new context.

local wrapped_object = ctx:wrap(...)

Returns wrapped Objective-C object. Then, you can send a message to the object like:

wrapped_object("setOpaque:", false)

You need to unwrap the object to pass to a method using - (unary minus) like:

local webview = ctx:wrap(objc.class.UIWebView)("alloc")("initWithFrame:", -rect)

Any Objective-C class object can be obtained via objc.class table. For example

objc.class.UIWebView

Returns the UIWebView class object.

Extending the Bridge

LuaBridge uses a stack to share objects between Lua and Objective-C. And some operators are defined to handle stuff in the stack.

You can add user-defined operators to the LuaBridge class folloing this signature:

- (void)op_your_operator:(NSMutableArray*)stack

Low-Level Lua API

newstack

stack = objc.newstack()

Returns a new stack to pass and receive paramters between Lua and Objective-C.

push

objc.push(stack, arg, ...)

Pushes one or more arguments to the stack.

pop

val = objc.pop(stack)

Pops the last (top) value from the stack.

operate

objc.operate(stack, "operator_name")

Calls given operator with the content of the stack.

getclass

cls = objc.getclass(class_name)

Returns the class object for given class name.

Data Type Conversion

LuaObjective-C
nilNSNull (nil)
stringNSString
number, booleanNSNumber
userdataother NSObject-derived type
lightuserdatavoid *
table, function, threadLuaObjectReference

Pre-defined Operators

call

objc.push(stack, ..., arg2, arg1, target, selector)
objc.operate(stack, "call")
local ret = objc.pop(stack)

"call" operator sends a method specified by selector to the target, then pushes the returned object. Please note that the argments must be pushed in reverse order. This is equivalent to following Objective-C expression:

ret = [target selector arg1 arg2 ...]

Adding Operators

Create a category on the LuaBrige class and implement your operators in folloing signature:

- (void)op_your_operator:(NSMutableArray*)stack

Then from Lua script call the operator like this:

objc.operate(stack, "your_operator")

Note that in Objective-C, the method name should be "op_your_operator:".

License

The MIT License (MIT)

Copyright (c) 2015 Toru Hisai

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, and/or sell 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.

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.

Author

Toru Hisai toru@torus.jp @torus




鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap