I have gone through and defined my new types, stored them in a pytypeobject and called the following functions (after initializing the interpreter):

PyType_Ready(); //this takes my defined typed

PyModule_AddObject(); //this adds the defined type to a module I created using PyModule_Create();

Now when I try to use the type I have defined the interpreter says it doesn't exist so I am assuming there is another step that must be taken in order to add a type at run time or there is some other set of steps I must take to achieve this.

Any help will be greatly appreciated.

Python Syntax Error:

Traceback (most recent call last):
  File "testscript.py", line 1, in <module>
    import Bound
ImportError: No module named Bound

Test script contents:

import Bound
l = Bound.Foo()

Bound is the name I defined the module, and Foo is the type I am trying to define, for testing purposes.

link|improve this question

60% accept rate
1  
Please post the exact error message you got. – larsmans Jun 27 '11 at 22:21
Also indicate the exact syntax you are trying to use to access the type. – kindall Jun 27 '11 at 22:22
Or provide some kind of debugging information :P – uʍop ǝpısdn Jun 27 '11 at 22:35
I added debug info, but I don't see how it helps. Either you know how to add user defined types to python at run-time or you don't. The information I provided should be enough for someone who knows how to do this. – DaneEC117 Jun 27 '11 at 23:08
@Dane: "No module named Bound" means it's not seeing your compiled module at all. That's before it even tries to look for Foo. So you need to work out producing a module that you can import first. – Thomas K Jun 27 '11 at 23:45
show 3 more comments
feedback

1 Answer

So I figured out what I needed to do, I had to call a function before Py_Initialize,

PyImport_AppendInittab( ModuleName, ModuleInitFunction );

This adds the module name to the python module dictionary so when you call import ModuleName, if it is for the first time it will call the ModuleInitFunction ( which I had, but wasn't using in the proper place ), which creates the module. Now after a module is created you can then proceed to add types to it at run-time which is what I do.

Right now I can successfully bind user defined C++ classes to python at run-time, then use them in a script in our Game Engine. Right now I am working out run-time kinks, but it should be up and running within the next few days. Anyways if anyone else ever decides to embed python into a game engine for scripting I'm sure I can help.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.