Skip to main content

AI Game Framework is a unified infrastructure designed to support the development and optimization of AI agents across various games.

Project description

logo AI Game Framework (aigf)

PyPI - Version Python Version GitHub License GitHub Actions Workflow Status

An elegant, high-performance, asynchronous Python library designed to streamline the development, testing, and optimization of AI agents in both real-time and discrete-time games.

Inspired by modern web micro-frameworks like FastAPI and Flask, aigf allows developers to build games using clean functional decorators or object-oriented classes. It bundles a fully integrated lightweight HTTP/WebSocket server that automatically serves custom visualizers along with packaged styling (nord.css) and client-side logic (framework.js).


Features

  1. Lightweight & High Performance: Utilizes websockets and async/await event loops to easily handle large volumes of concurrent agents (perfect for neuroevolution or RL optimization).
  2. Flexible API Models:
    • Decorated Hooks (AIGameServer): FastAPI/Flask style callbacks for connection, action, tick, and state-retrieval events.
    • Class Inheritance (GameInterface): Rigid Object-Oriented structure for strict architectural isolation.
  3. Zero-Dependency Web Server: Houses an integrated static asset server, letting developers serve a rich HTML/JS/CSS frontend directly from Python.
  4. Pre-packaged UI Ecosystem: Standardized layout sheets (nord.css) and event handlers (framework.js) are packaged inside the wheel distribution and served natively.
  5. No Docker Required: Run natively on host machines inside virtual environments.

Installation

Add it directly to your game project's requirements.txt:

ai-game-framework >= 1.1.0

Or install it directly from source/PyPI:

pip install .

How it Works: Webpage Integration

The framework handles HTTP requests through a specialized static file server routing mechanism. When a web browser connects to the server (e.g. http://localhost:8765/):

  1. HTML Serving: The server checks the game's viewer/ or frontend/ directory for an index.html file and serves it as the root webpage.
  2. Asset Bundling: The custom HTML imports /aigf/framework.js or /aigf/nord.css.
  3. Automatic Routing: The framework's internal path resolver interceptor (find_static_file) catches requests starting with /aigf/ or /framework/ and automatically serves the embedded assets bundled inside the pip package wheel. No Nginx, complex volume binds, or system-wide assets are required!
// Inside your viewer/index.html
import { GameClient } from "/aigf/framework.js";

// Instantiates a client connecting automatically to ws://localhost:8765/ws
const client = new GameClient(8765);

client.onUpdate((state) => {
  // Renders the real-time game state coordinates on canvas
  console.log("Visualizer Update:", state);
});

Quick Start: Decorated Game Server

Creating a game server is exceptionally quick. Register game loops and player interactions with function annotations:

from aigf.interface import AIGameServer, GameState

# 1. Initialize a real-time server operating at 30 FPS
app = AIGameServer(is_real_time=True, fps=30)
players = {}

# 2. Player handshake connector
@app.on_connect
async def connect(player_id: int):
    players[player_id] = {"x": 400.0, "y": 300.0, "score": 0}
    if len(players) >= 2:
        app.state = GameState.RUNNING

# 3. Real-time game tick
@app.on_tick
async def tick(dt: float):
    for p in players.values():
        p["x"] += 10.0 * dt  # Move players slightly right

# 4. Action receiver hook
@app.on_action
async def action(player_id: int, act: dict):
    if act.get("cmd") == "jump":
        players[player_id]["y"] -= 50.0

# 5. Visualizer state builder
@app.on_get_state
def get_state() -> dict:
    return {"players": list(players.values())}

# 6. Launch the server
if __name__ == "__main__":
    app.run(host="0.0.0.0", port=8765)

Interactive Examples

The package includes two fully functioning, high-quality sample games demonstrating the API:

1. Dino Jump (Real-Time Game)

Located in examples/dino_jump/. Mimics Chrome's offline dinosaur game.

  • Start Server: python3 examples/dino_jump/main.py
  • Play in Browser: Open http://localhost:8765/ (press Space to jump).
  • Play in Terminal: Run python3 examples/dino_jump/manual_agent.py.

2. Hangman (Discrete/Turn-Based Game)

Located in examples/hangman/. A turn-based word-discovery game with zero ticks.

  • Start Server: python3 examples/hangman/main.py
  • Play in Browser: Open http://localhost:8765/ (click or type letters).
  • Play in Terminal: Run python3 examples/hangman/manual_agent.py.

Running Unit Tests

Validate code changes using unittest:

python3 -m unittest discover -s tests

Generating Documentation

The codebase utilizes Google-style docstrings. Build documentation into standard HTML using pdoc:

pip install pdoc
PYTHONPATH=src pdoc --math -d google -o docs_out aigf

Authors

License

This project is licensed under the MIT License - see the LICENSE file for details.

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

ai_game_framework-1.1.0.tar.gz (20.4 kB view details)

Uploaded Source

Built Distribution

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

ai_game_framework-1.1.0-py3-none-any.whl (17.1 kB view details)

Uploaded Python 3

File details

Details for the file ai_game_framework-1.1.0.tar.gz.

File metadata

  • Download URL: ai_game_framework-1.1.0.tar.gz
  • Upload date:
  • Size: 20.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for ai_game_framework-1.1.0.tar.gz
Algorithm Hash digest
SHA256 3429d4cd4bc56fc2c7e85bf51e3dcd3aeafb9545aa6f3bfa0d70d662dcd71086
MD5 001117b3d5ed253021e382165591c924
BLAKE2b-256 3de10d1c2eff14438c98c9b8e2d0593d845e982cdaba9dd77a034c7c18963861

See more details on using hashes here.

File details

Details for the file ai_game_framework-1.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for ai_game_framework-1.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 38390810eda887b6032dcf27102237977b99efc213b1bf3784cbabf4760d64d6
MD5 7de823f384eec17905bd35505b1fe0c2
BLAKE2b-256 2522f1b4de9db3d24630fc6f7d5832fff41f89f36c5d322adf627dc0acead253

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