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

kevinresol/hxvm-lua: Haxe Lua Bindings (Embed Lua runtime in your Haxe app)

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

开源软件名称(OpenSource Name):

kevinresol/hxvm-lua

开源软件地址(OpenSource Url):

https://github.com/kevinresol/hxvm-lua

开源编程语言(OpenSource Language):

Haxe 100.0%

开源软件介绍(OpenSource Introduction):

Haxe Lua Bindings Build Status

Embed the Lua scripting engine into your Haxe application

Supported targets

  • c++ (tested on macOS and windows)
  • js (tested on Chrome)
  • nodejs

Example Usage

// create an instance
var lua = new vm.lua.Lua();

// set global variables
lua.setGlobalVar('square', function(v) return v * v);
lua.setGlobalVar('foo', 2);

// run a script
lua.run('return square(foo)'); // gives you 4

// supply an object as second paramter to run() to set global vars
lua.run('return bar', {bar: 2}); // gives you 2

// run function
lua.run('function add(a, b) \n return a + b \n end'); // first we create a lua function
lua.call('add', [1, 2]); // gives you 3

// destroy when done with the instance
lua.destroy();

Install

Target C++

When targeting C++ we compile the Lua runtime from its C source code.

  1. Install haxelib: linc_lua
  2. Add -lib linc_lua to your haxe build

Target JS

When targeting JS we utilize Fengari, which is the Lua VM written in pure JavaScript.

You can choose to either build a standalone js file for Fengari or require it in your project.

For browser without bundlers
  1. Install haxelib: hxjs-fengari
  2. Git clone https://github.com/fengari-lua/fengari
  3. Run yarn && yarn run build
  4. Add the output file (dist/fengari.js) to your project using a <script> tag in html
  5. Add -lib hxjs-fengari -D fengari_global to your haxe build

For Node.js or browser js with bundlers

  1. Install haxelib: hxjs-fengari
  2. yarn add https://github.com/fengari-lua/fengari
  3. Add -lib hxjs-fengari to your haxe build

TODO

  • Implement/test coroutines



鲜花

握手

雷人

路过

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

请发表评论

全部评论

专题导读
上一篇:
folke/which-key.nvim: 发布时间:2022-08-17
下一篇:
ccppluagopy/SensitiveWord-Lua发布时间:2022-08-17
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

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

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

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