Tagged Questions

3
votes
2answers
79 views

Calling functions in a Lua table from C++

I have for example, a Lua table/object: bannana And this Lua table has a function inside it called chew, that takes a parameter bannana.chew(5) I have also used SWIG, and have for example a …
0
votes
0answers
21 views

SWIG passing lua tables to C++ objects as parameters

I am using SWIG C++ and Lua, and need to pass lua tables to a c++ class. So if I have a c++ class named CFoo and a lua table name foobar, how would I implement CFoo so that I can have an Add() method …
1
vote
1answer
24 views

Why does SWIG crash Python when linked to gtkglext?

Anything I link to gtkglext using SWIG crashes Python on exit. Why does this crash? test.i: %module test %{ void test() { printf("Test.\n"); } %} void test(); Session: $ swig -python test.i $ …
0
votes
1answer
45 views

C lib with Python bindings where both want to render

I'm sketching on some fluid dynamics in Python. After a while, I'm looking for a bit more speed, so I rewrote the actual logic in C and put up some Python bindings (using SWIG). My problem now is …
1
vote
3answers
45 views

Swig and Lua: how to map Lua file to FILE*

I have a C function that takes FILE* as an argument and I'd like to use this function in Lua, passing Lua file. I guess I need a %typemap for this. How to write it? (I just started learning Lua).
0
votes
1answer
62 views

Implementing and inheriting from C++ classes in Lua using SWIG

Would it be possible using Lua and SWIG and say an IInterface class, to implement that interface and instantiate it all within Lua? If so how would it be done?
0
votes
1answer
44 views

Wrapping a Lua object for use in C++ with SWIG

Currently I know how to have C++ objects instantiated and passed around in Lua using SWIG bindings, what I need is the reverse. I am using Lua & C++ & SWIG. I have interfaces in C++ and …
0
votes
2answers
68 views

Python subclass with C++ baseclass

I have some C++ I have exposed to Python through SWIG. In there is a base class with a single pure virtual function. In Python, I import my module and define a class that uses the abstract class as …
0
votes
1answer
44 views

Returning big array from Python module written in C

I have a C lib that creates (and changes) a big array of enums. What is the best way if I want to access that array in Python? I have created bindings in SWIG but Im a bit unsure how to approach this …
0
votes
0answers
55 views

Pointers to members in swig (or Boost::Python)

Hello, I made some bindings from my C++ app for python. The problem is that I use pointers to members (It's for computing shortest path and giving the property to minimize as parameter). This is …
0
votes
1answer
106 views

Wrapping C structs with SWIG

I have C header file containing the following type definition: // example.h typedef struct Vertex { int color; } Vertex; I try to wrap this struct with SWIG, but apparently I am doing something …
1
vote
1answer
92 views

Access violation on run function from dll

I have DLL, interface on C++ for work with he. In bcb, msvc it works fine. I want to use Python-scripts to access function in this library. Generate python-package using Swig. File setup.py import …
0
votes
1answer
14 views

SWIG crashes on AIX (with python, and probably everything else SWIG support)

SWIG compiles and install easily on AIX. Unfortunately, a simple SWIG hello world (which also compiles - but not so easily) crashes with Segmentation Fault or Illegal Instruction (depending on some …
2
votes
2answers
56 views

wxlua bindings does not work with my shaderobjects made using SWIG

Hi, I made a class using wxwdigets //wrapper over wxIPV4address class IPV4addressLua : public wxIPV4address { public: IPV4addressLua(); ~IPV4addressLua(); …
0
votes
4answers
93 views

Creating Windows DLL from C++ source files

I have multiple source files in C++ using which i want to create a Dynamic link library. I see this happening in linux with gcc -shared and ln however for Windows i suppose i would have to modify …

1 2 3 4 5 6 next
15 30 50 per page