
Security News
Vite Releases Technical Preview of Rolldown-Vite, a Rust-Based Bundler
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.
A simple pygame state manager with threaded loading using loading screens.
This means you can use heavy initialization and entry code without having to worry about it. As long as your code needs to finish up, a loading state will be displayed.
You can choose to install either pygame
or the community version pygame-ce
pip install pygame
# or
pip install pygame-ce
The package is called pgsm (PyGameStateMachine
)
pip install pgsm
You first write the states by inheriting from State
then you put it all together with the StateManager
.
Take this as a simple example with a play state and a pause state.
We want to toggle between play and pause state when the user presses "p"
import pygame as pg
from StateManager import State, StateManager
class PlayState(State):
def on_enter(self):
print("Playing")
def update(events, dt):
# This is an example for handling events
# and changing states
for event in events:
if event.type == pg.KeyDown and event.key == pg.K_p:
self.exit("pause")
def draw(self, s):
"""
Whatever you want to draw
s is the surface or screen you may draw to
"""
class PauseState(State):
def on_enter(self, _frm):
print("Pausing")
def update(events, dt):
for event in events:
if event.type == pg.KEYDOWN and event.key == pg.K_p:
self.exit("play")
def draw(self, s):
""" Whatever you want to draw """
# We use strings as keys to refer to our states
sm = StateManager({
"play":PlayState(),
"pause":PauseState()
}, start="play")
Now you can use your state machine like this. The state machine will by default just draw to the main screen.
SCREEN = pg.display.set_mode((900, 600))
while running:
dt = clock.tick(60)
events = pg.event.get()
for event in events:
if event.type == pg.QUIT:
running = False
if event.type == pg.KEYDOWN and event.key == pg.K_ESCAPE:
running = False
# we could also have done the toggle here
SCREEN.fill("white")
sm(events, dt)
pg.display.flip()
The default loading state draws a little spinner. If you want to change how that works, simply override the LoadingState
.
For example:
from StateManager import LoadingState
class BlankLoadingState(LoadingState):
def __init__(self, color):
self.color = color
def update(self, *args):
pass
def draw(self, s):
s.fill(self.color)
And use like this
sm = StateManager({
"play":PlayState(),
"pause":PauseState()
},
start="play",
loading_state=BlankLoadingState("black")
)
MIT License
FAQs
A simple state manager for pygame.
We found that pgsm demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.
Research
Security News
A malicious npm typosquat uses remote commands to silently delete entire project directories after a single mistyped install.
Research
Security News
Malicious PyPI package semantic-types steals Solana private keys via transitive dependency installs using monkey patching and blockchain exfiltration.