A simple collision library for pygame inspired by LÖVE2D's windfield
Project description
Stormfield - A Pygame Collision Library
Stormfieldaims to partially recreate Love2D'swindfieldphysics library.
The main idea behind it is to easily intergrate collisions in your game
[!NOTE]
Stormfieldis still in development, some expected features may not be present.
[!IMPORTANT] The main reason i created
stormfieldwas to easily manage collisions and collision classes, NOT to handle full physics — although some physics features are present.
Contents
Instalation
git clone https://github.com/clxakz/stormfield/
or
pip install stormfield
Quick Start
place the stormfield folder inside your project and import it
from stormfield import World
Create a world
A physics World can be created similarly to windfield.
Create a World with a vertical gravity of 500.
world = World(pygame.Vector2(0, 500))
Create colliders
Create a box collider and a ground collider, apply a linear impulse to the box. The box collides with the ground and bounces.
box = world.newRectangleCollider(300, 350, 100, 100)
box.setRestitution(0.8)
box.applyLinearImpulse(pygame.Vector2(0, 1000))
ground = world.newRectangleCollider(100, 600, 600, 100)
ground.setType("static") # <- Types can be 'static', 'dynamic' or 'kinematic'. Defaults to 'dynamic'
# In your main loop
world.update(dt)
world.draw(screen) # <- The world can be drawn for debugging purposes
And that looks like this:
Documentation
World
World(gravity)
The World class is the core of the Stormfield collision system.
It manages all colliders, updates their positions, resolves collisions, and handles collision class logic.
Stormfield’s World object is inspired by the windfield library in LÖVE2D, focusing on ease of use and flexibility for collision handling in Pygame.
world = World(pygame.Vector2(0, 500))
Arguments:
gravity(pygame.Vector2)- The gravity for all of your collider objects
.addCollisionClass(name, ignores)
A collision class is a way to group colliders and control which objects should interact with each other.
You can assign a collision class to each collider, and configure which classes should ignore collisions with others. This allows you to easily manage complex collision relationships without writing custom logic for every case.
world.addCollisionClass("Player")
world.addCollisionClass("Enemies", ["Walls"]) # <- The enemy class will ignore all objects in the 'Walls' class
world.addCollisionClass("Walls")
collider.setCollisionClass("Player") # <- Assigns a collision class to your object
Arguments:
name(str)- The name of a collision classignores(list[str])- A list of other classes a class should ignore
.draw(screen, color, width)
The draw() function allows you to quickly visualize all colliders in the world by drawing their shapes on the screen using pygame.draw.rect(). This is mainly useful for debugging and development purposes.
world.draw(screen, (255,255,255), 1)
Arguments:
screen(pygame.Surface)- The surface where all colliders should be drawncolor(tuple)- RGB color of the outlinewidth(int)- The width of the outline
.newRectangleCollider(x, y, width, height)
Creates a new rectangle collider and automatically adds it to the world.
box = world.newRectangleCollider(0, 0, 100, 100)
Arguments:
x(int)- The X position of the collidery(int)- The Y position of the colliderwidth(int)- The width of the colliderheight(int)- The height of the collider
.destroy()
The destroy() function will clear all colliders, collision classes and resets the gravity.
world.destroy()
Rectangle Collider
A collider is an object that handles collision detection and can be attached to your game entities or sprites.
.setLinearVelocity(velocity)
Sets the linear velocity vector of the collider. This controls how fast and in what direction the collider moves each frame.
collider.setLinearVelocity(pygame.Vector2(100, 0))
Arguments:
velocity(pygame.Vector2)- The velocity vector to apply.
.applyLinearImpulse(impulse)
Applies an instantaneous impulse to the collider, changing its velocity immediately based on the impulse and the collider’s mass. Only affects colliders of type "dynamic".
collider.applyLinearImpulse(pygame.Vector2(0, 500))
Arguments:
impulse(pygame.Vector2)- The impulse vector to apply.
.setFriction(friction)
Sets the friction coefficient for the collider, which slows it down over time when moving.
collider.setFriction(200)
Arguments:
friction(float)- The friction value.
.setMass(mass)
Sets the mass of the collider, which affects how impulses change its velocity.
collider.setMass(2.0)
Arguments:
mass(float)- The mass value (must be positive).
.setRestitution(restitution)
Sets the restitution (bounciness) of the collider. Determines how much velocity is retained after collisions.
collider.setRestitution(0.8)
Arguments:
- restitution (float) - A value between 0 (no bounce) and 1 (perfect bounce).
.setType(type)
Sets the physics type of the collider. Types control whether the collider moves and how:
| Type | Affected by Gravity | Affected by Velocity | Moves? | Use Case |
|---|---|---|---|---|
| dynamic | ✅Yes | ✅Yes | ✅Yes | Fully simulated objects like players, enemies, projectiles. |
| kinematic | 🚫No | ✅Yes (manual) | ✅Yes | Moving platforms, doors, scripted movement (you set velocity manually). |
| static | 🚫No | 🚫No | 🚫No | Walls, floors, anything that doesn't move. |
from stormfield import CollisionType
collider.setType(CollisionType.STATIC)
Arguments:
type(str)- One of 'STATIC', 'DYNAMIC', or 'KINEMATIC'. Defaults toDYNAMIC
.setObject(obj)
Associates a custom object with the collider, usually the game entity or sprite it belongs to. Useful for accessing your entity during collision callbacks. Basically this is what gets returned when retrieving collision data which usually you want to be self.
collider.setObject(player)
Arguments:
obj(any)- Your custom object reference. Defaults toself
.setCollisionClass(name)
Assigns a collision class to the collider to manage which other colliders it can interact with.
collider.setCollisionClass("Player")
Arguments:
name(str)- The name of the collision class.
.setOnCollisionEnterFunc(function)
Assings a function to the onCollisionEnter event.
def on_enter(obj):
print(obj)
collider.setOnCollisionEnterFunc(on_enter)
Arguments:
function(function)- The function that should be assigned.
.setOnCollisionExitFunc(function)
Assings a function to the onCollisionExit event.
def on_exit(obj):
print(obj)
collider.setOnCollisionExitFunc(on_exit)
Arguments:
function(function)- The function that should be assigned.
.setOnCollisionStayFunc(function)
Assings a function to the onCollisionStay event.
def on_stay(obj):
print(obj)
collider.setOnCollisionStayFunc(on_stay)
Arguments:
function(function)- The function that should be assigned.
.setSensor(is_sensor)
When a collider is set as senor it will not collide with any other game object but will trigger onCollisionEnter, Stay and exit events
collider.setSensor(True)
Arguments
is_sensor(bool)- Sets the sensor value
.destroy()
Destroys the collider and removes it from the world
collider.destroy()
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
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 stormfield-1.2.6.tar.gz.
File metadata
- Download URL: stormfield-1.2.6.tar.gz
- Upload date:
- Size: 11.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4f28cdca8d42733b31ae2dd7e866354e181213d19a9c12d2d7a2c14459559b68
|
|
| MD5 |
4c9376f660fb16aa09c5588de033e53c
|
|
| BLAKE2b-256 |
5c5ebcd894ae5c1254687dce590627f945eedd182c29d24943b430379b21bfb7
|
File details
Details for the file stormfield-1.2.6-py3-none-any.whl.
File metadata
- Download URL: stormfield-1.2.6-py3-none-any.whl
- Upload date:
- Size: 8.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
512de72efca897e8c87b4004aec267c8fdca3205aa21ffa1c2b3a186c240fbc8
|
|
| MD5 |
61af6ade459799ce6e6eee79b9e451fb
|
|
| BLAKE2b-256 |
b33dff838ea2e848b4a78fcd5321893775401ebb25472e1bf07708159010822c
|