Skip to main content

An easy-to-use extension to the very well-known package Pygame.

Project description

MyUI

A lightweight and intuitive UI extension for Pygame that simplifies interface development.


🚀 Features

UI Components – Ready-to-use buttons, sliders, surfaces, and more
Plugin System – Easily extend and modularize your app's functionality
Event Stack – Simplified handling of custom and repeated events
Layering System – Clean separation of background, normal, and top-level layers
Game & Tool Ready – Built with flexibility for both games and utility applications


📦 Installation

Install via PyPI:

pip install MyUI-pygame

⚡ Quick Start

1️⃣ Application Example

import MyUI
import pygame

# Load music
pygame.mixer.music.load("music.mp3")
pygame.mixer.music.play(-1)

# Initialize app
WIDTH, HEIGHT = 800, 600
app = MyUI.App((WIDTH, HEIGHT))
pygame.display.set_caption("Simple MyUI Demo")

# Load plugins from folder
plugin_wrappers = MyUI.load_plugins_from("plugins")

# Handle plugins before loading
plugin_group = MyUI.plugins.create_dict(MyUI.plugins.get_plugin_group(plugin_wrappers, "plugin"))
entry = plugin_group.get("entry")
print(entry.plugin_name) # Plugin name
print(entry.entry_name) # Entry name
print(entry.name) # Name is "plugin-entry", each plugin has seperate entries, each has seperate functions and different wrappers.

# Create a reload method
def reload_plugins():
    global plugin_wrappers
    plugin_wrappers = MyUI.load_plugins_from("plugins")
    app.reload(plugin_wrappers)

# Load fonts
fonts = MyUI.FontScheme(
    small1=pygame.font.SysFont("consolas", 15)
)

# Create a button
button = MyUI.PushButton(
    text="Reload!",
    font=fonts.small1,
    pos=(50, 50),
    size=(100, 30),
    color=(50, 50, 150),
    hover_color=(70, 70, 170),
    callback=reload_plugins
)

# Create a surface
surf = MyUI.Surface(
    pos=(100, 50),
    size=(200, 200),
    background_color=(200, 200, 250),
    border_color=(225, 225, 255),
    border_width=2,
    border_radius=5
)

# Add UI elements to the top layer
surf.add_handler(button.render, button.handle_event)
app.add_top(surf.render, surf.handle_event)

# Attach plugins
app.load_plugins(plugin_wrappers)

# Run the app
app.run()

2️⃣ Plugin System

Create modular plugin components using a simple configuration + Python file.

📄 Plugin config.json

{
    "name": "builtin",
    "version": "1.0.0",
    "author": "Neo",
    "description": "Builtin methods to simplify (e.g) statistics and feedback.",
    "tags": [
        "ui",
        "debugging",
        "statistics"
    ],
    "main": "main.py",
    "entries": [
        "Text"  // Class to locate as a entry*
    ],
    "layer": "top", // May be "top", "normal", "background", or "none"
    "enabled": true,

    // All below are optional
    "args": [ // The same as kwargs, but by order before the kwargs
        "value"
    ],

    "kwargs": {
        "argument name": "value"  // Tuples can be written as a list; define arguments when creating the plugin in the plugin loader.
    }
}

🧠 Plugin main.py

# A basic example
import pygame
import math
from datetime import datetime
from MyUI import App

class Text:
    """Text renderer plugin.""" # Will be parsed as "internal_description" in the wrapper. Optional!

    def __init__(self):
        self.font: pygame.font.Font = pygame.font.SysFont("consolas", 15)
        self.offset: pygame.math.Vector2 = pygame.math.Vector2(-5, -5)
        self.color: pygame.Color = pygame.Color(50, 50, 50)

        self.app: App = None # App reference
        self.debug: bool = True

        self.updates: int = 0

    def update_time(self) -> None:
        now = datetime.now()
        self.date_time_str = now.strftime("%H:%M")

    def on_load(self, app) -> None:
        self.app = app
    
    def on_unload(self) -> None:
        pass
    
    def on_update(self) -> None:
        if self.updates % 100 == 0: self.update_time()
        self.updates += 1

    def on_render(self, surface: pygame.Surface):
        if self.app:
            text = f"{int(self.app.fps)} fps, {self.date_time_str}{f", {len(self.app.plugins)} plugins, {pygame.mouse.get_pos()}" if self.debug else ""}"
            text_surface = self.font.render(text, True, self.color)
            text_rect = text_surface.get_rect(bottomright=self.app.size + self.offset)

            # Optional drop shadow
            shadow = self.font.render(text, True, (0, 0, 0))
            surface.blit(shadow, text_rect.move(1, 1))

            surface.blit(text_surface, text_rect)

    def on_event(self, event: pygame.event.Event, offset: pygame.math.Vector2):
        pass

📁 Place plugin folders inside a top-level plugins/ directory. Each plugin should have its own subfolder containing the config.json and main script alongside any other related resource, like folders or related files.

ℹ️ Tips & Additional Info

  • Plugin folder: Ensure the plugins directory exists and contains properly structured plugin folders.
  • Font Management: MyUI.FontScheme simplifies managing multiple font styles.
  • Themes: Use MyUI.Theme to centralize and style your app’s color palette.
  • UI Layers: Add renderables to add_background(), add_normal(), or add_top() for layer control.
  • Hot Reloading: Reload plugins live with custom callbacks—great for debugging and rapid iteration.
  • Audio: Fully compatible with Pygame’s mixer system for sound/music.

📜 License

This project is licensed under the MIT License.

⭐ Support the Project

If you find MyUI helpful, consider giving it a ⭐ on GitHub and contributing! Every bit of feedback or code helps keep development active. 🚀


🛠 Changelog

A list of changes and fixes made across versions.

v1.0.2

  • 📦 Icons: PyPI seems to be unable to send png-images, thus, removed

  • 🛠 Plugins: Small fix on MyUI.plugins.create_dict() where it now returns entry name

  • 🚀 Fixed link in message on launch

v1.0.1

  • 🛠 Doc-strings + readme: Fixed invalid text and made readme more intuative

v1.0.0

  • 🚀 Initial stable release

  • 📦 Base components: App, Surface, basic UI rendering loop

  • 🛠 Event handling and layered rendering support

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

myui_pygame-1.0.2.tar.gz (19.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

MyUI_pygame-1.0.2-py3-none-any.whl (21.3 kB view details)

Uploaded Python 3

File details

Details for the file myui_pygame-1.0.2.tar.gz.

File metadata

  • Download URL: myui_pygame-1.0.2.tar.gz
  • Upload date:
  • Size: 19.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.2

File hashes

Hashes for myui_pygame-1.0.2.tar.gz
Algorithm Hash digest
SHA256 cb4e1b840f35ffc2b63690c7a357909e831313d30ff09ffb37e1c65dd50f90d8
MD5 f5b317c7aeb13c0580b8576b11cadaeb
BLAKE2b-256 bb66870505bc627cf46b7917d141bf81a1212bc50ac9e51615d57aa7965cea07

See more details on using hashes here.

File details

Details for the file MyUI_pygame-1.0.2-py3-none-any.whl.

File metadata

  • Download URL: MyUI_pygame-1.0.2-py3-none-any.whl
  • Upload date:
  • Size: 21.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.2

File hashes

Hashes for MyUI_pygame-1.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 39e73e574ea4a3a15e97ce0e0101b07449dae4d47228201e2649fe5b9eeb4d31
MD5 fd54635a0865ad47685add9976d6476c
BLAKE2b-256 4a831a7b9154470d618e666421f6dd68f7f513af1d5547ce51633b22f4a10d23

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