gpt4 book ai didi

c++ - Lua SWIG 基础知识

转载 作者:太空宇宙 更新时间:2023-11-04 12:46:49 24 4
gpt4 key购买 nike

我正在尝试使用以下位置提供的说明来实现基本的 vector 类操作:

http://swig.org/Doc1.3/SWIG.html#SWIG_adding_member_functions

我有以下.i:

%module mymodule
%{
typedef struct
{
float x,y,z;
} Vector3f;
%}

typedef struct
{
float x,y,z;
} Vector3f;

%extend Vector3f {
Vector3f(float x, float y, float z) {
Vector3f *v;
v = (Vector3f *) malloc(sizeof(Vector3f));
v->x = x;
v->y = y;
v->z = z;
return v;
}
~Vector3f() {
free($self);
}
void print() {
printf("Vector [%f, %f, %f]\n", $self->x,$self->y,$self->z);
}
};

现在我的问题是如果我在 Lua 中调用下面的代码:

print(mymodule)
local v = Vector(3,4,0)
v.print()

--By the way is there an equivalent in Lua?
--del v

我得到了以下输出:

table: 0x000001F9356B1920
attempt to call global 'Vector' (a nil value)

显然,当我第一次打印表地址时,模块已正确加载但我无法创建 Vector...我也尝试调用模块方法,如 mymodule:Vector(1,2,3) 仍然会产生错误。我在这里缺少什么?

我只想生成一个新的 Vector 并让 GC 销毁它使用 ~Vector3f() 方法。我应该修改什么来使这个机制工作?

最佳答案

SWIG 将从析构函数中自动生成一个 __gc 元方法。原则上,您的类甚至不需要自定义析构函数,默认析构函数就可以了。

此外,SWIG 不需要知道函数的所有实现细节,签名完全足以生成包装代码。这就是为什么我将 Vector3f 结构移动到文字 C++ 部分(也可以在头文件中)并且只重复签名。

为什么不添加 Vector3f 与 Lua 的 print() 函数一起使用,而不是使用 print 成员函数?只需编写一个 __tostring 函数,它返回对象的字符串表示形式。

test.i

%module mymodule
%{
#include <iostream>

struct Vector3f {
float x,y,z;
Vector3f(float x, float y, float z) : x(x), y(y), z(z) {
std::cout << "Constructing vector\n";
}
~Vector3f() {
std::cout << "Destroying vector\n";
}
};
%}

%include <std_string.i>

struct Vector3f
{
Vector3f(float x, float y, float z);
~Vector3f();
};

%extend Vector3f {
std::string __tostring() {
return std::string{"Vector ["}
+ std::to_string($self->x) + ", "
+ std::to_string($self->y) + ", "
+ std::to_string($self->z) + "]";
}
};

test.lua

local mymodule = require("mymodule")
local v = mymodule.Vector3f(3,4,0)
print(v)

编译和运行的示例工作流程:

$ swig -lua -c++ test.i
$ clang++ -Wall -Wextra -Wpedantic -I/usr/include/lua5.2/ -fPIC -shared test_wrap.cxx -o mymodule.so -llua5.2
$ lua test.lua
Constructing vector
Vector [3.000000, 4.000000, 0.000000]
Destroying vector

关于c++ - Lua SWIG 基础知识,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51146132/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com