472,360 Members | 1,819 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,360 software developers and data experts.

beginner questions on embedding/extending python with C++

Hi Everyone,

I am a beginner on cross language development. My problem at hand is to
build a python interface for a C++ application built on top of a 3D
game engine. The purpose of this python interface is providing a
convenient scripting toolkit for the application. One example is that
a user can write a python script like:
player = Player()
game.loadPlayer(player)
player.moveTo(location)
To configure the game environment.

I am trying to figure out how to make this happen. I only have the
vague idea that this concerns embedding/extending python with C++, but
after reading Python Doc, SWIG, BOOST.Python, I am still not sure how
to architecture it.

Since the main program is still going to be the C++ application, I
guess we need to embedding the python scripts in the C++ code. So at
initialization stage, the python script needs to be loaded into the C++
code. And this code can be simple, like
player = Player()
game.loadPlayer(player)
But for this to work, the python code needs to know the Player class,
is it right? Does that mean I need to build a python wrapper class for
Player and "import Player" in the python code? But because this
application is built on top of a game engine, Player class inherits
many classes from there, I cannot possibly wrapping them all, right?
Also, some global objects are probably needed in this code of adding
players, how can the python code access them?

I know I probably don't have a grasp of basics here, please kindly
enlighten me!

Btw, if you can point me to any source code of non-trivial projects
utilizing SWIG/Boost.Python, that would be very helpful. I found the
examples on the tutorials are far too simple.

Thank you very much,
Qun

Aug 8 '06 #1
6 2870
Since the main program is still going to be the C++ application, I
guess we need to embedding the python scripts in the C++ code. So at
initialization stage, the python script needs to be loaded into the C++
code. And this code can be simple, like
player = Player()
game.loadPlayer(player)
But for this to work, the python code needs to know the Player class,
is it right? Does that mean I need to build a python wrapper class for
Player and "import Player" in the python code? But because this
application is built on top of a game engine, Player class inherits
many classes from there, I cannot possibly wrapping them all, right?
Also, some global objects are probably needed in this code of adding
players, how can the python code access them?
You should look into SIP besides the tools you already mentioned - IMHO it
is the best choice for wrapping C++.

And yes, you need to wrap classes - but only those that are of interest for
you! So if you need Player, wrap Player. No need to wrap it's base-classes,
unless you want these for other purposes, too.

And for global objects I'd create functions which return these.

I suggest you try and download a project that uses one of the possible
toolkits for wrapping - the most prominent user of SIP is of course PyQt.
Go and have a look at the source, how things are done. There aresome
tutorials I think, google should help you on that.

HTH Diez
Aug 8 '06 #2
On 8 Aug 2006 02:28:31 -0700, Qun Cao <qu****@gmail.comwrote:
Hi Everyone,

I am a beginner on cross language development. My problem at hand is to
build a python interface for a C++ application built on top of a 3D
game engine. The purpose of this python interface is providing a
convenient scripting toolkit for the application.
As for me, Boost.Python is the way to go.

Fortunately you are not the first one, and I hope not the last one :-) :

http://language-binding.net/pypluspl...ing-pyplusplus
1. Python-OGRE
* http://lakin.weckers.net/index_ogre_python.html
* http://tinyurl.com/mvj8d

2. http://cgkit.sourceforge.net/ - contains Python bindings for Maya C++ SDK

3. PyOpenSG - https://realityforge.vrsource.org/view/PyOpenSG/WebHome
The goal of PyOpenSG is to provide python bindings for the OpenSG
scene graph.
Since the main program is still going to be the C++ application, I
guess we need to embedding the python scripts in the C++ code.
Boost.Python is the only tool that provides complete functionality(
extending and
embedding ). Also I think cgkit is dealing with the problem too.
But for this to work, the python code needs to know the Player class,
is it right?
Right.

Does that mean I need to build a python wrapper class for
Player and "import Player" in the python code? But because this
application is built on top of a game engine, Player class inherits
many classes from there, I cannot possibly wrapping them all, right?
It depends on how much functionality you want to export.
Also, some global objects are probably needed in this code of adding
players, how can the python code access them?
Boost.Python provides the functionality you need.
Btw, if you can point me to any source code of non-trivial projects
utilizing SWIG/Boost.Python, that would be very helpful. I found the
examples on the tutorials are far too simple.
Those are tutorials, they should be simple, right :-) ?

--
Roman Yakovenko
C++ Python language binding
http://www.language-binding.net/
Aug 8 '06 #3
Qun Cao wrote:
Hi Everyone,

I am a beginner on cross language development. My problem at hand is to
build a python interface for a C++ application built on top of a 3D
game engine. The purpose of this python interface is providing a
convenient scripting toolkit for the application.
As well as this group/list, you may find some useful help at the
Gamedev.net Scripting Languages and Game Modifications forum:
http://www.gamedev.net/community/for...sp?forum_id=41

Many people there have mixed Python and C++ code in the context of game
applications and may have some good answers to your questions. After
deciding how to expose C++ classes and functions to Python, the main
problem you'll face, assuming you need the functionality, is how to
yield control between Python and C++ when a Python action is
long-running yet requires the C++ engine to be polled (eg. to handle
input, AI, graphics, etc). Previous threads there will give you some
hints on all these matters.

--
Ben Sizer

Aug 8 '06 #4
Thanks Diez,
It is a good relief that I only need to wrap the classes I need. I
decide to try Boost first because it seems to have a wider audience
than SIP, but I would definately look into SIP if I want to do Qt
development in the future.
Diez B. Roggisch wrote:
Since the main program is still going to be the C++ application, I
guess we need to embedding the python scripts in the C++ code. So at
initialization stage, the python script needs to be loaded into the C++
code. And this code can be simple, like
player = Player()
game.loadPlayer(player)
But for this to work, the python code needs to know the Player class,
is it right? Does that mean I need to build a python wrapper class for
Player and "import Player" in the python code? But because this
application is built on top of a game engine, Player class inherits
many classes from there, I cannot possibly wrapping them all, right?
Also, some global objects are probably needed in this code of adding
players, how can the python code access the
You should look into SIP besides the tools you already mentioned - IMHO it
is the best choice for wrapping C++.

And yes, you need to wrap classes - but only those that are of interest for
you! So if you need Player, wrap Player. No need to wrap it's base-classes,
unless you want these for other purposes, too.

And for global objects I'd create functions which return these.

I suggest you try and download a project that uses one of the possible
toolkits for wrapping - the most prominent user of SIP is of course PyQt.
Go and have a look at the source, how things are done. There aresome
tutorials I think, google should help you on that.

HTH Diez
Aug 9 '06 #5
Thanks for all the good pointers!
I am still reading throught them, but Boost seems to be the way to go!

Roman Yakovenko wrote:
On 8 Aug 2006 02:28:31 -0700, Qun Cao <qu****@gmail.comwrote:
Hi Everyone,

I am a beginner on cross language development. My problem at hand is to
build a python interface for a C++ application built on top of a 3D
game engine. The purpose of this python interface is providing a
convenient scripting toolkit for the application.

As for me, Boost.Python is the way to go.

Fortunately you are not the first one, and I hope not the last one :-) :

http://language-binding.net/pypluspl...ing-pyplusplus
1. Python-OGRE
* http://lakin.weckers.net/index_ogre_python.html
* http://tinyurl.com/mvj8d

2. http://cgkit.sourceforge.net/ - contains Python bindings for Maya C++ SDK

3. PyOpenSG - https://realityforge.vrsource.org/view/PyOpenSG/WebHome
The goal of PyOpenSG is to provide python bindings for the OpenSG
scene graph.
Since the main program is still going to be the C++ application, I
guess we need to embedding the python scripts in the C++ code.

Boost.Python is the only tool that provides complete functionality(
extending and
embedding ). Also I think cgkit is dealing with the problem too.
But for this to work, the python code needs to know the Player class,
is it right?

Right.

Does that mean I need to build a python wrapper class for
Player and "import Player" in the python code? But because this
application is built on top of a game engine, Player class inherits
many classes from there, I cannot possibly wrapping them all, right?

It depends on how much functionality you want to export.
Also, some global objects are probably needed in this code of adding
players, how can the python code access them?

Boost.Python provides the functionality you need.
Btw, if you can point me to any source code of non-trivial projects
utilizing SWIG/Boost.Python, that would be very helpful. I found the
examples on the tutorials are far too simple.

Those are tutorials, they should be simple, right :-) ?

--
Roman Yakovenko
C++ Python language binding
http://www.language-binding.net/
Aug 9 '06 #6
Hi All,
I am in the process also of trying to call Python script from a C++
windows app.
I have looked at the Boost site and am currently reading over the
Embedding portion of the tutorial. A question I have is that there
appear to be about 4 or 5 Boost items avaiable for download. Which one
should be downloaded to do the embedding?
Thanks
Jeff
Qun Cao wrote:
Thanks for all the good pointers!
I am still reading throught them, but Boost seems to be the way to go!

Roman Yakovenko wrote:
On 8 Aug 2006 02:28:31 -0700, Qun Cao <qu****@gmail.comwrote:
Hi Everyone,
>
I am a beginner on cross language development. My problem at hand is to
build a python interface for a C++ application built on top of a 3D
game engine. The purpose of this python interface is providing a
convenient scripting toolkit for the application.
As for me, Boost.Python is the way to go.

Fortunately you are not the first one, and I hope not the last one :-) :

http://language-binding.net/pypluspl...ing-pyplusplus
1. Python-OGRE
* http://lakin.weckers.net/index_ogre_python.html
* http://tinyurl.com/mvj8d

2. http://cgkit.sourceforge.net/ - contains Python bindings for Maya C++ SDK

3. PyOpenSG - https://realityforge.vrsource.org/view/PyOpenSG/WebHome
The goal of PyOpenSG is to provide python bindings for the OpenSG
scene graph.
Since the main program is still going to be the C++ application, I
guess we need to embedding the python scripts in the C++ code.
Boost.Python is the only tool that provides complete functionality(
extending and
embedding ). Also I think cgkit is dealing with the problem too.
But for this to work, the python code needs to know the Player class,
is it right?
Right.

Does that mean I need to build a python wrapper class for
Player and "import Player" in the python code? But because this
application is built on top of a game engine, Player class inherits
many classes from there, I cannot possibly wrapping them all, right?
It depends on how much functionality you want to export.
Also, some global objects are probably needed in this code of adding
players, how can the python code access them?
Boost.Python provides the functionality you need.
Btw, if you can point me to any source code of non-trivial projects
utilizing SWIG/Boost.Python, that would be very helpful. I found the
examples on the tutorials are far too simple.
Those are tutorials, they should be simple, right :-) ?

--
Roman Yakovenko
C++ Python language binding
http://www.language-binding.net/
Aug 9 '06 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Mark Harrison | last post by:
Is the document Extending and Embedding the Python Interpreter http://www.python.org/doc/current/ext/ext.html easily available in any other form? Pointers to either PDF or a single web page...
4
by: Alicia Haumann | last post by:
I accidentally sent this to webmaster@python.org, so this could be a duplicate if "webmaster" forwards it to this list. :{ Hi, there. Thanks for any help that can be offered. I've been...
2
by: Roose | last post by:
With some googling I have found these resources: http://docs.python.org/ext/win-dlls.html http://www.python.org/doc/faq/windows.html I have a large Win32/MFC/C/C++ application that has an...
1
by: amit | last post by:
Hello, I am currently studying how to embedd python. I am developing a graphical C++ application. My goal is to embedd python script that will control some kind of animation. I have some...
1
by: Tommy Nordgren | last post by:
I want to write an application that embeds and extends (at least) the Python and Perl interpreters. Now i want to find as much as possible about the Python tools used for extending and embedding...
3
by: Redefined Horizons | last post by:
I've got a third-part application that exposes a C API. I'd like to wrap it in Python. Is there a specific forum that covers extending and embedding Python, or are those type of questions O.K. on...
1
by: jeremito | last post by:
I am trying to learn how to extend and/or embed Python. I have looked at the document "Extending and Embedding the Python Interpreter" and also "Python/C API Reference Manual. In the examples...
3
by: anonymisiert85 | last post by:
At the moment i can run python-string-code from C (MinGW, WinXP) But how can i register a C-function in python-RUNTIME and call this C function from python - without wrapper dll's or libs??? ...
0
by: Tim Spens | last post by:
--- On Fri, 6/27/08, Tim Spens <t_spens@yahoo.comwrote: I think I know where the problem is but I'm unsure how to fix it. When I call Register_Handler(...) from python via...
2
by: Kemmylinns12 | last post by:
Blockchain technology has emerged as a transformative force in the business world, offering unprecedented opportunities for innovation and efficiency. While initially associated with cryptocurrencies...
0
by: antdb | last post by:
Ⅰ. Advantage of AntDB: hyper-convergence + streaming processing engine In the overall architecture, a new "hyper-convergence" concept was proposed, which integrated multiple engines and...
2
by: Matthew3360 | last post by:
Hi, I have a python app that i want to be able to get variables from a php page on my webserver. My python app is on my computer. How would I make it so the python app could use a http request to get...
0
by: AndyPSV | last post by:
HOW CAN I CREATE AN AI with an .executable file that would suck all files in the folder and on my computerHOW CAN I CREATE AN AI with an .executable file that would suck all files in the folder and...
0
by: Arjunsri | last post by:
I have a Redshift database that I need to use as an import data source. I have configured the DSN connection using the server, port, database, and credentials and received a successful connection...
1
by: Matthew3360 | last post by:
Hi, I have been trying to connect to a local host using php curl. But I am finding it hard to do this. I am doing the curl get request from my web server and have made sure to enable curl. I get a...
0
Oralloy
by: Oralloy | last post by:
Hello Folks, I am trying to hook up a CPU which I designed using SystemC to I/O pins on an FPGA. My problem (spelled failure) is with the synthesis of my design into a bitstream, not the C++...
0
by: Carina712 | last post by:
Setting background colors for Excel documents can help to improve the visual appeal of the document and make it easier to read and understand. Background colors can be used to highlight important...
1
by: Ricardo de Mila | last post by:
Dear people, good afternoon... I have a form in msAccess with lots of controls and a specific routine must be triggered if the mouse_down event happens in any control. Than I need to discover what...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.