pygame-based game engine
Project description
PyDiamond
PyDiamond engine is a game engine for Python game developers.
The framework uses the popular pygame library.
Usage
Example with the minimal requirements:
from pydiamond.window.display import Window
def main() -> int:
w: Window = Window(title="my window", size=(800, 600))
with w.open():
while w.loop():
for event in w.process_events():
# do some stuff
pass
w.clear()
# draw your objects
w.refresh()
return 0
if __name__ == "__main__":
exit(main())
This code will open a small window.
Documentation
Coming soon. :)
Dependencies
PyDiamond is developed based on pygame and Python (obviously). In addition, some features of pygame are available with a specific version of the SDL.
Dependency version:
- CPython >= 3.10
- pygame == 2.1.2
- SDL >= 2.0.16
- SDL_image >= 2.0.0
- SDL_mixer >= 2.0.0
- Other python dependencies referred by
requirements.txt
Use the following command to install all the necessary dependencies
python3 -m pip install -r requirements.txt
Credits
Vendored-in packages
- Gradient module by DR0ID
- OrderedSet collection by rspeer
License
This project is licensed under the terms of the GNU General Public License v3.0.
Project details
Release history Release notifications | RSS feed
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 pydiamond-engine-1.0.0.dev3.tar.gz
.
File metadata
- Download URL: pydiamond-engine-1.0.0.dev3.tar.gz
- Upload date:
- Size: 244.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 27e2b1159f19813e34984706b47f9efb0ec5e3ad86e75dbf9b3c977074380f0c |
|
MD5 | f049906f248135916118c19dfd12afc4 |
|
BLAKE2b-256 | a0b2a7f0999c48691dae2cd6a9daaa2b5f9470c8cfb6e32b270d8b5959aaea8e |
File details
Details for the file pydiamond_engine-1.0.0.dev3-py3-none-any.whl
.
File metadata
- Download URL: pydiamond_engine-1.0.0.dev3-py3-none-any.whl
- Upload date:
- Size: 281.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6fd1012a95743c60c2d2d34ad8a46b9fce03e3e26becb4fd93721094321383b6 |
|
MD5 | fd49b48f33dc2e314bfe89abfc8b0789 |
|
BLAKE2b-256 | 08441d8abf1112c7797dd8b879fdd335807db2b0e863674ccc4eba6d6fae23f7 |