Skip to main content

patternengine

Project description

patternengine

tl;dr

A bullet hell pattern engine

Consult the embedded docs for class descriptions and usage.

Check out the demo. Watch the demo running

Look into src/patternengine/example.py

Preparation

########################################################################
# Relevant part here
#
# A "ring" of 180 degrees aiming towards the top devided int 18 parts
# A heartbeat over 5 seconds with 4 emits and 4 gaps
# A BulletSource fetching 18 bullets at every heartbeat
#

ring = pe.Ring(100, 18, aim=-90, width=180)
heartbeat = pe.Heartbeat(5, '#.#.#.#.')
emitter = pe.BulletSource(18, ring, heartbeat)

#
########################################################################

Later in the game loop

####################################################################
# Relevant part here
#
for bullet in next(emitter):
    Bullet(group,
	   position=bullet[0] + anchor,
	   momentum=bullet[1] * bullet_speed,
	   lifetime=10)
#
####################################################################

with Bullet being a simple subclass of pygame.sprite.Sprite

Tutorial

Read TUTORIAL.md for exhaustive examples of all the parts.

Additionally, study the sources of the included tutorial scripts and the demos, both in the package folder.

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

patternengine-0.0.6.tar.gz (29.4 kB view hashes)

Uploaded Source

Built Distribution

patternengine-0.0.6-py3-none-any.whl (47.2 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page