Python support for the Pandemonium Engine.
Go to file
Relintai 6b6ee7dfce Updated the headers for pandemonium 4.2.0. 2024-02-09 14:30:16 +01:00
.github/workflows Re-enabled and ran static checks. 2023-06-25 13:28:04 +02:00
addons/pythonscript_repl Update method. 2023-06-03 01:43:54 +02:00
docs Mass replace godot to pandemonium pt3. 2023-06-02 11:31:19 +02:00
examples Mass replace godot to pandemonium pt5. 2023-06-02 11:37:25 +02:00
generation Updated for the latest pandemonium. 2024-01-07 16:40:17 +01:00
misc Mass replace godot to pandemonium pt3. 2023-06-02 11:31:19 +02:00
pandemonium_headers Updated the headers for pandemonium 4.2.0. 2024-02-09 14:30:16 +01:00
platforms Fix typo. 2023-06-02 11:38:06 +02:00
pythonscript Re-enabled and ran static checks. 2023-06-25 13:28:04 +02:00
site_scons/site_tools Initial commit. Added https://github.com/touilleMan/godot-python b9757da859a4d as a base, but without the submodule. 2023-05-23 19:06:25 +02:00
tests Fix some method names. 2023-06-02 14:06:15 +02:00
tools Mass replace godot to pandemonium pt2. 2023-06-02 11:13:10 +02:00
.bumpversion.cfg Mass replace godot to pandemonium pt2. 2023-06-02 11:13:10 +02:00
.gitignore Commit headers. 2023-06-25 10:40:47 +02:00
.pre-commit-config.yaml Disable black static check as it seems to have some dependency issues. 2023-06-25 13:32:06 +02:00
AUTHORS.rst Update authors file. 2023-06-02 11:16:33 +02:00
LICENSE Tweak the license file. 2023-06-02 10:05:07 +02:00
Makefile Initial commit. Added https://github.com/touilleMan/godot-python b9757da859a4d as a base, but without the submodule. 2023-05-23 19:06:25 +02:00
README.rst Small note. 2023-06-24 01:53:05 +02:00
SConstruct Re-enabled and ran static checks. 2023-06-25 13:28:04 +02:00
requirements.in Try updating scons version. 2023-06-25 11:31:34 +02:00
requirements.txt Try updating scons version. 2023-06-25 11:31:34 +02:00

README.rst

===============
GDNative Python
===============


The goal of this project is to provide Python language support as a scripting module for the Pandemonium game engine.

It's a fork of https://github.com/touilleMan/godot-python .

.. image:: https://github.com/Relintai/gdnative_python/raw/master/misc/showcase.png
   :align: center


API
===

example:

.. code-block:: python

	# Explicit is better than implicit
	from godot import exposed, export, Vector2, Node2D, ResourceLoader

	WEAPON_RES = ResourceLoader.load("res://weapon.tscn")
	SPEED = Vector2(10, 10)

	@exposed
	class Player(Node2D):
		"""
		This is the file's main class which will be made available to Pandemonium. This
		class must inherit from `godot.Node` or any of its children (e.g.
		`godot.KinematicBody`).

		Because Pandemonium scripts only accept file paths, you can't have two `exposed` classes in the same file.
		"""
		# Exposed class can define some attributes as export(<type>) to achieve
		# similar goal than GDSscript's `export` keyword
		name = export(str)

		# Can export property as well
		@export(int)
		@property
		def age(self):
			return self._age

		@age.setter
		def age(self, value):
			self._age = value

		# All methods are exposed to Pandemonium
		def talk(self, msg):
			print(f"I'm saying {msg}")

		def _ready(self):
			# Don't confuse `__init__` with Pandemonium's `_ready`!
			self.weapon = WEAPON_RES.instance()
			self._age = 42
			# Of course you can access property & methods defined in the parent
			name = self.get_name()
			print(f"{name} position x={self.position.x}, y={self.position.y}")

		def _process(self, delta):
			self.position += SPEED * delta

		...


	class Helper:
		"""
		Other classes are considered helpers and cannot be called from outside
		Python. However they can be imported from another python module.
		"""
		...


Building
========

To build the project from source, first checkout the repo or download the
latest tarball.

GDNative Python requires Python >= 3.7 and a C compiler.


Pandemonium GDNative header
---------------------

TODO (need to be copied from the gdnative module)

Linux
-----


On a fresh Ubuntu install, you will need to install these:

.. code-block:: bash

	$ apt install python3 python3-pip python3-venv build-essential

On top of that build the CPython interpreter requires development headers
of it `extension modules <https://devguide.python.org/setup/#install-dependencies>`_
(for instance if you lack sqlite dev headers, your Godot-Python build won't
contain the sqlite3 python module)

The simplest way is to uncomment the main deb-src in `/etc/apt/sources.list`:

.. code-block:: bash

	deb-src http://archive.ubuntu.com/ubuntu/ artful main

and instruct apt to install the needed packages:

.. code-block:: bash

	$ apt update
	$ apt build-dep python3.6

See the `Python Developer's Guide <https://devguide.python.org/setup/#build-dependencies>`_
for instructions on additional platforms.


MacOS
-----

With MacOS, you will need XCode installed and install the command line tools.

.. code-block:: bash

	$ xcode-select --install

If you are using CPython as your backend, you will need these. To install with Homebrew:

.. code-block:: bash

	$ brew install python3 openssl zlib

You will also need virtualenv for your python.


Windows
-------


Install VisualStudio and Python3, then submit a PR to improve this paragraph ;-)


Create the virtual env
----------------------

Godot-Python build system is heavily based on Python (mainly Scons, Cython and Jinja2).
Hence we have to create a Python virtual env to install all those dependencies
without clashing with your global Python configuration.


.. code-block:: bash

	$ cd <godot-python-dir>
	godot-python$ python3 -m venv venv


Now you need to activate the virtual env, this is something you should do
every time you want to use the virtual env.

For Linux/MacOS:

.. code-block:: bash

	godot-python$ . ./venv/bin/activate

For Windows:

.. code-block:: bash

	godot-python$ ./venv/bin/activate.bat


Finally we can install dependencies:

.. code-block:: bash

	godot-python(venv)$ pip install -r requirements.txt


Running the build
-----------------


For Linux:

.. code-block:: bash

	godot-python(venv)$ scons platform=x11-64 release

For Windows:

.. code-block:: bash

	godot-python(venv)$ scons platform=windows-64 release

For MacOS:

.. code-block:: bash

	godot-python(venv)$ scons platform=osx-64 CC=clang release

Valid platforms are `x11-64`, `x11-32`, `windows-64`, `windows-32` and `osx-64`.
Check Travis or Appveyor links above to see the current status of your platform.

This command will checkout CPython repo, move to a pinned commit and build
CPython from source.

It will then generate ``pythonscript/godot/bindings.pyx`` (Godot api bindings)
from GDNative's ``api.json`` and compile it.
This part is long and really memory demanding so be patient ;-)
When hacking godot-python you can heavily speedup this step by passing
``sample=true`` to scons in order to build only a small subset of the bindings.

Eventually the rest of the source will be compiled and a zip build archive
will be available in the build directory.


Testing your build
------------------

.. code-block:: bash

	godot-python(venv)$ scons platform=<platform> test

This will run pytests defined in `tests/bindings` inside the Godot environment.
If not present, will download a precompiled Godot binary (defined in SConstruct
and platform specific SCSub files) to and set the correct library path for
the GDNative wrapper.


Running the example project
---------------------------

.. code-block:: bash

	godot-python(venv)$ scons platform=<platform> example

This will run the converted pong example in `examples/pong` inside the Godot
environment. If not present, will download a precompiled Godot binary
(defined in SConstruct) to and set the correct library path for the GDNative
wrapper.


Using a local Godot version
---------------------------

If you have a pre-existing version of godot, you can instruct the build script to
use that the static library and binary for building and tests.

.. code-block:: bash

	godot-python(venv)$ scons platform=x11-64 pandemonium_binary=../godot/bin/godot.x11.opt.64


Additional build options
------------------------

You check out all the build options `in this file <https://github.com/touilleMan/godot-python/blob/master/SConstruct#L23>`_.


FAQ
===

**How can I export my project?**

Currently, godot-python does not support automatic export, which means that the python environment is not copied to the release when using Godot's export menu. A release can be created manually:

First, export the project in .zip format.

Second, extract the .zip in a directory. For sake of example let's say the directory is called :code:`godotpythonproject`.

Third, copy the correct Python environment into this folder (if it hasn't been automatically included in the export). Inside your project folder, you will need to find :code:`/addons/pythonscript/x11-64`, replacing "x11-64" with the correct target system you are deploying to. Copy the entire folder for your system, placing it at the same relative position, e.g. :code:`godotpythonproject/addons/pythonscript/x11-64` if your unzipped directory was "godotpythonproject". Legally speaking you should also copy LICENSE.txt from the pythonscript folder. (The lazy option at this point is to simply copy the entire addons folder from your project to your unzipped directory.)

Fourth, place a godot release into the directory. The Godot export menu has probably downloaded an appropriate release already, or you can go to Editor -> Manage Export Templates inside Godot to download fresh ones. These are stored in a location which depends on your operating system. For example, on Windows they may be found at :code:`%APPDATA%\Godot\templates\ `; in Linux or OSX it is :code:`~/.godot/templates/`. Copy the file matching your export. (It may matter whether you selected "Export With Debug" when creating the .zip file; choose the debug or release version accordingly.)

Running the Godot release should now properly execute your release. However, if you were developing on a different Python environment (say, the one held in the osx-64 folder) than you include with the release (for example the windows-64 folder), and you make any alterations to that environment, such as installing Python packages, these will not carry over; take care to produce a suitable Python environment for the target platform.

See also `this issue <https://github.com/touilleMan/godot-python/issues/146>`_.

**How can I use Python packages in my project?**

In essence, godot-python installs a python interpreter inside your project which can then be distributed as part of the final game. Python packages you want to use need to be installed for that interpreter and of course included in the final release. This can be accomplished by using pip to install packages; however, pip is not provided, so it must be installed too.

First, locate the correct python interpreter. This will be inside your project at :code:`addons\pythonscript\windows-64\python.exe` for 64-bit Windows, :code:`addons/pythonscript/ox-64/bin/python3` for OSX, etc. Then install pip by running:

.. code-block::

	addons\pythonscript\windows-64\python.exe -m ensurepip

(substituting the correct python for your system). Any other method of installing pip at this location is fine too, and this only needs to be done once. Afterward, any desired packages can be installed by running

.. code-block::

	addons\pythonscript\windows-64\python.exe -m pip install numpy

again, substituting the correct python executable, and replacing numpy with whatever packages you desire. The package can now be imported in your Python code as normal.

Note that this will only install packages onto the target platform (here, windows-64), so when exporting the project to a different platform, care must be taken to provide all the necessary libraries.

**How can I debug my project with PyCharm?**

This can be done using "Attach to Local Process", but first you have to change the Godot binary filename to include :code:`python`, for example :code:`Godot_v3.0.2-stable_win64.exe` to :code:`python_Godot_v3.0.2-stable_win64.exe`.
For more detailed guide and explanation see this `external blog post <https://medium.com/@prokopst/debugging-godot-python-with-pycharm-b5f9dd2cf769>`_.

**How can I autoload a python script without attaching it to a Node?**

In your :code:`project.godot` file, add the following section::

  [autoload]
  autoloadpy="*res://autoload.py"

In addition to the usual::

  [gdnative]
  singletons=[ "res://pythonscript.gdnlib" ]

You can use any name for the python file and the class name
:code:`autoloadpy`.

Then :code:`autoload.py` can expose a Node::

  from godot import exposed, export
  from godot.bindings import *

  @exposed
  class autoload(Node):

      def hi(self, to):
          return 'Hello %s from Python !' % to

which can then be called from your gdscript code as an attribute of
the :code:`autoloadpy` class (use the name defined in your :code:`project.godot`)::

  print(autoloadpy.hi('root'))

**How can I efficiently access PoolArrays?**

:code:`PoolIntArray`, :code:`PoolFloatArray`, :code:`PoolVector3Array`
and the other pool arrays can't be accessed directly because they must
be locked in memory first. Use the :code:`arr.raw_access()` context
manager to lock it::

  arr = PoolIntArray() # create the array
  arr.resize(10000)

  with arr.raw_access() as ptr:
      for i in range(10000):
          ptr[i] = i # this is fast

  # read access:
  with arr.raw_access() as ptr:
      for i in range(10000):
          assert ptr[i] == i # so is this

Keep in mind great performances comes with great responsabilities: there is no
boundary check so you may end up with memory corruption if you don't take care ;-)

See the `godot-python issue <https://github.com/touilleMan/godot-python/issues/84>`_.

PyEnv
-----

pyenv install 3.7

pyenv local 3.7


pyenv shell 3.7