Skip to main content

A short description for your project.

Project description

https://travis-ci.org/fabiommendes/FGAme.svg?branch=master https://coveralls.io/repos/github/fabiommendes/FGAme/badge.svg?branch=master

FGAme is a physics-based game engine for Python 3. Its aims to avoid boilerplate and to be so easy that even a child can play with it (and learn how to program with it!). Check this pong implementation:

from FGAme import *

# A 10px margin to keep things on the screen
world.add.margin(10)

# Create a ball in the middle of the screen. We also add some random speed
ball = world.add.circle(20, pos=pos.middle, color='red')
ball.vel = vel.random()

# Create both players as AABBs (axis aligned bounding boxes). Infinite
# masses prevent them from moving when hit by the ball
p1 = world.add.aabb(shape=(20, 120), pos=(30, 300), mass='inf')
p2 = world.add.aabb(shape=(20, 120), pos=(30, 300), mass='inf')

# Connect long press events with the correct functions
on('long-press', 'w').do(p1.move, 0, 5)
on('long-press', 's').do(p1.move, 0, -5)
on('long-press', 'up').do(p2.move, 0, 5)
on('long-press', 'down').do(p2.move, 0, -5)

# Start main loop
run()

FGAme currently requires Pygame to run. We have plans to make it backend agnostic and in the future it will support SDL2, Kivy, Qt and maybe others.

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

FGAme-0.6.5.tar.gz (140.1 kB view details)

Uploaded Source

File details

Details for the file FGAme-0.6.5.tar.gz.

File metadata

  • Download URL: FGAme-0.6.5.tar.gz
  • Upload date:
  • Size: 140.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for FGAme-0.6.5.tar.gz
Algorithm Hash digest
SHA256 bd51c992424eb7c7635b6e5b9fb3aa79d92149b0b000bfeae855213f71690a54
MD5 2a0c06e9f341f757ddfab45c8afd1abe
BLAKE2b-256 e7db0bfa5bc8658c9193935fcd52848891176df2e2e8d9c4d8fed01965ca4b1f

See more details on using hashes here.

Supported by

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