gamelib: A library for creating 3d applications in python.
Project description
gamelib
This is a library I've been working on for writing 3d applications in python. You'll need to know at least a little bit about writing shaders in glsl to be effective with this library, though I do plan to include default implementations in the future.
Prerequisites
This package requires support for OpenGL 3.3 or later and currently supports python >= 3.8. If building from source some compiler will be required dependent on your platform.
Installation
Optionally create a virtual environment:
Linux:
python3 -m venv venv
. venv/bin/activate
Windows:
python3 -m venv venv
venv\Scripts\activate
Install with pip:
pip install gamelib
Usage
Detailed usage documentation can be found in the modules themselves, to get started you should import gamelib and init must be called before doing anything involving the window or OpenGL context, so it's recommended to call at the entry point to your application.
import gamelib
gamelib.init()
Update should be called on a loop to not hang the application.
while gamelib.is_running():
gamelib.update()
To avoid hanging the main loop while executing a long running task, you can use the internal schedules.
def my_long_running_function():
time.sleep(1)
gamelib.threaded_schedule.once(my_long_running_function, -1)
As mentioned above, see the modules for further documentation, or refer to example applications linked below.
Running the test suite
To run the tests you'll first need to get the source and install both the requirements and requirements-dev dependencies.
git clone https://github.com/peffjepin/gamelib.git
cd gamelib
python3 -m pip install -r requirements-dev.txt
python3 -m pip install -r requirements.txt
Then to run the tests simply:
pytest
For testing against different python versions you can run tox. The tox environment is set up to skip tests that require an opengl context.
tox
For a coverage report:
pytest --cov=gamelib --cov-report=html
Example Applications
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file gamelib-0.0.3.tar.gz
.
File metadata
- Download URL: gamelib-0.0.3.tar.gz
- Upload date:
- Size: 73.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b44f1bd5d217e9f30e8fe1610370cc8c804378bbebdbd296976c383f25d97398 |
|
MD5 | 7d11677e61e76e5ad8b08f20b643f27b |
|
BLAKE2b-256 | 210145c0b24609199873959e4df766bdb75d90cd83ec7434b806ed984938221d |
File details
Details for the file gamelib-0.0.3-py3-none-any.whl
.
File metadata
- Download URL: gamelib-0.0.3-py3-none-any.whl
- Upload date:
- Size: 81.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.10.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6049294d7a2deec0d3cf94ae4af02731e477c0e616236db43e0b92362af33cc8 |
|
MD5 | 4821d65c4e58d418019ffe458358a068 |
|
BLAKE2b-256 | 0047f61055e01e08ca1f34ecf81c46448329721be13531e685e439b7c03194ed |