假设我有一个c库,它以某种方式操纵着一个世界。在
我想在python中使用这个库。我希望能够编写简单的python脚本来表示世界管理的不同场景。在
我有创造和毁灭世界的功能:
void*创建(void);
int摧毁(虚空*世界)
下面是一些python代码:import ctypes
lib = ctypes.CDLL('manage_world.so')
_create = lib.create
_create.restype = ctypes.c_void_p
_destroy = lib.destroy
_destroy.argtypes = [ctypes.c_void_p,]
_destroy.restype = ctypes.c_int
def create_world():
res = _create()
res = ctypes.cast(res, ctypes.c_void_p)
return res
def destroy_world(world):
return _destroy(world)
new_world = create_world()
print type(new_world)
print destroy_world(new_world)
现在我想添加一些函数,比如:
int set_world_feature(void*world,feature_t f…);
int get_world_feature(void*world,feature t f…)
问题是,在python包装器中,我不知道如何传递不同的多个参数。在
因为有时set_world_feature()是用3个或4个参数调用的。在
在Python中:
^{pr2}$
如何解决这个问题才能让它正常工作?在