Helper package for pgzero. Includes added support and documentation.
Project description
Pgzhelper
Pgzhelper is a helper package for pgzero that adds additional capabilities such as camera support, shape utilities, window controls, and extended drawing features. Some capabilities can also be used in pygame.
⚠️ Run using
pgzhelper_run.go(), notpgzrun.go()If you do not run with
pgzhelper_run.go(), then camera support and changing the frames per second will fail.
⚠️ Do not import Screen as
screenIf you import Screen as
screen, then the pgzhelper Screen will overload the pgzero Screen, causing all capabilities to fail.
Table of Contents
- Installation
- Why Use Pgzhelper?
- Additional Capabilities
- Shapes
- Advantages of Using Screen
- Camera Capabilities
- Versions
- Coming Soon
Quick Start
Installation
pip install pgzhelper
Usage
from pgzhelper import *
def draw():
Screen.fill("blue")
screen.draw.text("Hello!", (100, 100))
pgzhelper_run.go()
Why Use Pgzhelper?
Pgzhelper extends pgzero with features that are normally difficult or impossible to do easily, including:
- camera loading, zooming, and background removal
- drawing shapes with thickness and advanced geometry
- window positioning and centering
- cursor customization
- changing FPS dynamically
- a unified Screen object with full documentation
These additions make pgzero more flexible and powerful for game development and educational projects.
Additional Capabilities
- thickness parameter for line drawing and drawing rects
- drawing shapes (polygons, etc. — see shape list below)
- set the window position (on the laptop)
- center the window (on the laptop)
- change the cursor shape (on the screen)
- change the frames per second in functions (requires
pgzhelper_run.go())
Shapes
- HRect (helper rect) class
- Circle class
- Shape class
- Polygon class
- Ellipse class
- Quadrilateral class
- Triangle class
- EquilateralTriangle class
- Square class
- shapes Enum
The Triangle class includes rotate around pivot, move up (moves down visually), move down (moves up visually), move left, and move right.
The EquilateralTriangle class includes a direction (DOWN or UP) parameter and the same methods as the Triangle class (moving or rotating will return a Triangle, not an EquilateralTriangle).
Advantages of Using Screen
Screen functions have the same capabilities as pgzero’s screen functions, plus additional features such as line thickness and shape drawing. All Screen functions include full documentation, so you do not need to reference the pgzero website.
Camera Capabilities
- Load a camera by number (1 = first camera, 2 = second camera). Returns
None. - Set the zoom factor (1 = full view, 2 = zoom in by factor of 2).
- Optionally remove the background and replace it with a color.
- Get camera width and height (in pixels).
- Camera requires
pgzhelper_run.go(), notpgzrun.go().
Versions
Version 0.0.1: Base code published.
Version 0.0.2: Fix errors and bugs.
Version 0.0.3: Complete documentation.
Version 0.0.4: Make init() into the injection, so the user does not have to use that. Add changing frames per second for all functions.
(Latest) Version 0.0.5: More documentation added.
Coming Soon
Version 0.0.6: Completed Documentation
Version 0.0.7: Add additional on_mouse_drag(pos, button) function.
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pgzhelper-0.0.5.tar.gz.
File metadata
- Download URL: pgzhelper-0.0.5.tar.gz
- Upload date:
- Size: 227.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
84bdf011318e9d9bf0178f1c7be899d614176b4948b56631506593dbab157173
|
|
| MD5 |
04a9fff470837f630762450e8495490d
|
|
| BLAKE2b-256 |
c912a150d0062aa6823e7d17fea13f9a54454b853981d0b7d99eb30091c07685
|
File details
Details for the file pgzhelper-0.0.5-py3-none-any.whl.
File metadata
- Download URL: pgzhelper-0.0.5-py3-none-any.whl
- Upload date:
- Size: 227.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5512554a2682ede1cd4f59359ff261fa9f0d26186657e3471ec887c42f279ba6
|
|
| MD5 |
60514b3d3cc8147da757efb0d046e338
|
|
| BLAKE2b-256 |
c7b3c48a53198aa825c125e8a760d68b5ecbcdbeac22e4ae53907c4ccaf8519b
|