1 Star 0 Fork 2

Jerry zheng / UniLua

forked from Gitee 极速下载 / UniLua 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
贡献代码
同步代码
取消
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
Loading...
README
MIT

UniLua

A pure C# implementation of Lua 5.2 focus on compatibility with Unity3D.

UniLua是一个纯C#的Lua 5.2实现,专注于与Unity3D的兼容性。

一些补充说明

UniLua 主要关注的还是对 lua 本身的实现,而不是怎么把 Unity3D 引擎提供的功能都引入到 lua 里。

从 lua 调用 C# 函数不建议使用 FFI 库(虽然示例工程里用了,看起来方便,但是并不完善,效率也不好)。建议参考 从 Lua 调用 C# 函数 ( Calling C# funcitons from Lua ) 来自己实现封装函数。

示例工程 ( Sample Project )

To demonstrate the basic use of UniLua, a sample project is included.
Open Assets\Stages\GameMain.unity with Unity3D, and just click the "Play" button.
An icon will appear in the screen, and you can move it around with WSAD keys.

项目中包含了一个微型的示例工程,用来演示 UniLua 的基本使用。
用 Unity3D 打开 Assets\Stages\GameMain.unity 然后直接点击播放按钮运行。
屏幕上会显示一个小图标,你可以用 WSAD 键控制它四处移动。

开发状况 ( Development Status )

  • 基本特性 ( Basic features )

    • 所有 Lua 的基本语言特性都已实现,包括协程元表,并且与 Lua5.2 标准实现一致。部分 GC 相关的元方法如 __gc__mode 未实现
      ( All language features are implemented exactly the same as the standard Lua 5.2, including coroutine and metatable, except some GC-related metamethods like __gc and __mode. )
  • 内置库 ( Libraries )

    • Base lib: done
    • Package lib: done
    • Coroutine lib: done
    • Table lib: done
    • IO lib: not implemented
      • 因为暂时没有需求 ( not needed in our games right now )
    • OS lib: not implemented
      • 因为暂时没有需求 ( not needed in our games right now )
    • String lib: partially implemented
      • 因为暂时没有需求 ( not needed in our games right now )
    • Debug lib: partially implemented
      • 勉强够用了 ( barely enough )
  • 额外实现的库 ( Additional Libraries )

    • FFI lib: basicly done
      • 实验性质,不建议在要求性能的环境下使用 ( experimental. not suggested to use in performance-critical situation )
    • Encoding lib: basicly done
      • 支持在 UTF-8 编码和 UTF-16 编码间进行转换 ( support convert between UTF-8 and UTF-16 )
  • TODO

    • Complete string lib.
    • Complete debug lib.
  • 已知的问题 ( Known Issues )

    • Metamethod '__gc' will not working.
      • 因为没有自己实现GC机制,而是依赖于C#的GC ( for directly depending on C#'s GC mechanism )
    • Weak tables is not supported: '__mode' will not working.
      • 原因同上 ( the same reason mentioned above )
    • full userdata is not supported

SciMark

test on Unity3D 4.3.1, Windows 7, Intel i5-3470

  • FFT 1.07 [1024]
  • SOR 2.51 [100]
  • MC 0.66
  • SPARSE 1.59 [1000, 5000]
  • LU 1.84 [100]
  • SciMark 1.53 [small problem sizes]

常用链接 ( Links )##

Copyright (C) 2013 Sheng Lunan 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.

简介

UniLua 是一个纯 C# 实现的 Lua 5.2,侧重于兼容性 展开 收起
Lua
MIT
取消

发行版

暂无发行版

贡献者

全部

近期动态

加载更多
不能加载更多了
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Lua
1
https://gitee.com/ZJ69719496/UniLua.git
git@gitee.com:ZJ69719496/UniLua.git
ZJ69719496
UniLua
UniLua
master

搜索帮助

344bd9b3 5694891 D2dac590 5694891