A lightweight 2D game engine built on Pyglet
Project description
MoonFrame
MoonFrame is a Python game development framework built on top of Pyglet. It provides a simple and intuitive API for creating 2D games, handling graphics, input, and more. Its kinda like a mix between Pygame and SDL2, but with a more modern and Python design. This README will give you a quick overview of how to get started with MoonFrame and what features it offers.
Example files
You can find example files in the examples directory of the MoonFrame repository. These examples demonstrate various features of the framework, such as rendering textures, handling input, and implementing game loops. Feel free to explore these examples to get a better understanding of how to use MoonFrame in your own projects.
- coolcat.py: A more advanced example that demonstrates a simple game with a cat texture that can be moved around the screen.
Installation
You can install MoonFrame using pip:
pip install moonframe
Basic Usage
Here's a simple example of how to create a window and render a texture with controls using MoonFrame:
import moonframe as mfr
class GameApp:
def __init__(self, renderer, input_handler):
self.renderer = renderer
self.input = input_handler
self.x, self.y = 100, 100
self.cat = mfr.Texture(renderer, r"cat.avif", x=self.x, y=self.y)
self.cat.resize(128, 128)
def update(self):
if self.input.is_key_pressed('right'): self.x += 5
if self.input.is_key_pressed('down'): self.y -= 5
if self.input.is_key_pressed('up'): self.y += 5
if self.input.is_key_pressed('left'): self.x -= 5
self.cat.set_pos(self.x, self.y)
def draw(self):
self.renderer.set_draw_color(20, 20, 30)
self.renderer.clear()
win = mfr.Window("Suburban Cat", 800, 600)
renderer = mfr.Renderer(win)
event = mfr.Event()
input_handler = mfr.Input(win)
app = GameApp(renderer, input_handler)
running = True
while running:
while win.poll_event(win, event):
if event.type == event.QUIT:
running = False
break
if not running:
break
app.update()
app.draw()
renderer.present()
win.handle.close()
Features
- Window Management: Create and manage game windows with ease.
- Rendering: Draw textures, shapes, and more with a simple API.
- Input Handling: Capture keyboard and mouse input for interactive games.
- Event System: Handle events like window resizing, quitting, and custom events.
- Collision Detection: Built-in support for detecting collisions between game objects.
Methods and Classes
Window: Create and manage game windows.Renderer: Handle all rendering operations.Texture: Load and manipulate textures.Input: Capture and process user input.Drawable: Base class for drawable objects.Event: Handle various events in the game loop.Collision: Utility class for collision detection and response.
Methods
Window.poll_event(): Poll for events from the window.Renderer.set_draw_color(): Set the color for drawing operations.Renderer.clear(): Clear the rendering target.Texture.resize(): Resize a texture to specified dimensions.Texture.set_pos(): Set the position of a texture.Input.is_key_pressed(): Check if a specific key is currently pressed.Collision.is_colliding(): Check for collisions between two objects.- And many more!
Contributing
Contributions to MoonFrame are welcome! If you have an idea for a new feature or want to fix a bug, please open an issue or submit a pull request on GitHub.
License
MoonFrame is licensed under the MIT License. See the LICENSE file for more details.
Version History
-
1.1.0 - Highlight: Added new
TextandSoundclass:-
Text:
- Make text object
mfr.Text(renderer, text, x, y, font_name, font_size, color) - Added
set_text()method for changing the text - Added
change_color()method for changing color of the text - Added
change_size()method for changing size of the text - Added
change_font()method for changing font of the text - Added
set_posmethod for changing the coordinates of the text
- Make text object
-
Sound:
- Make audio object:
mfr.Sound(path) - Added
play()method to play audio - Added
stop()method to stop audio - Added
pause()method to pause audio - Added
set_volume()method to change volume of audio - Added
is_playing()method to check if audio is playing or not
- Make audio object:
-
Added various mouse control methods and also callback methods to the
Inputclass -
Added two examples to the examples folder for noobs to see and learn from
-
-
1.0.0 - Initial release with basic window management, rendering, and input handling.
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 moonframe_engine-1.1.0.tar.gz.
File metadata
- Download URL: moonframe_engine-1.1.0.tar.gz
- Upload date:
- Size: 4.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
58db5979232cb3bb7f997363208f3ab8a30040b69db5ec21d0d34d216ccb4af0
|
|
| MD5 |
538cb658187b87cfa9304e95590347c5
|
|
| BLAKE2b-256 |
c866adbe0dc3934dba5ebbf0d472513f6943d8021eea2d1ce5323dd11178dcdb
|
File details
Details for the file moonframe_engine-1.1.0-py3-none-any.whl.
File metadata
- Download URL: moonframe_engine-1.1.0-py3-none-any.whl
- Upload date:
- Size: 4.1 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 |
03d5c09e61ecd9a514bec74c04a1ccb2307594e7c280f11adb1cbc23b9f59bc9
|
|
| MD5 |
81bea71d86c68775e24297ecad4e9442
|
|
| BLAKE2b-256 |
56d905f8504ebaf01b9031688c4d8ccee1012a02dd5bf818c2cac9bc5d37bed6
|