Skip to main content

Make your mods immortal.

Project description

grug for Python

This repository provides Python bindings, a frontend, and a backend for grug. It passes all tests in grug-lang/grug-tests.

Install this package using pip install grug-lang, and run python -c "import grug" to check that it doesn't print an error.

A minimal example program is provided in the examples/minimal/ directory on GitHub:

import grug
import time

state = grug.init()

@state.game_fn
def print_string(string: str):
    print(string)

file = state.compile_grug_file("animals/labrador-Dog.grug")
dog1 = file.create_entity()
dog2 = file.create_entity()

while True:
    state.update()
    dog1.on_bark("woof")
    dog2.on_bark("arf")
    time.sleep(1)
on_bark(sound: string) {
    print_string(sound)

    # Print "arf" a second time
    if sound == "arf" {
        print_string(sound)
    }
}

Run it by cloning the repository, cd-ing into it, running cd examples/minimal, and finally running python example.py.

See the examples/ directory for more interesting programs, like examples/using_grug_packages.

Dependencies

This project requires Python version 3.7 or newer. You can manage your Python versions using pyenv.

If you are on a Python version older than 3.11, you will need to install these:

pip install tomli importlib-metadata

If you want to run the tests, you will need to install pytest:

pip install pytest
pip install -e .

Tests

Run python tests.py to test all examples and package tests.

Testing grug-lang changes

Either uninstall grug-lang, if you had it installed:

pip uninstall grug-lang

Or set up a virtual environment:

rm -rf .venv
python -m venv .venv
source .venv/bin/activate

And then create an editable install of grug-lang:

pip install -e .

Building libtests.so

  1. Clone the grug-tests repository next to this repository
  2. Run git checkout development in the grug-tests repository.
  3. Follow the instructions in the grug-tests repository for building libtests.so.

Running tests

In this grug-for-python repository, you can run all tests using this command:

pytest --grug-tests-path=../grug-tests -s -v

Pass --whitelisted-test=f32_too_big to only run the test called f32_too_big.

Alternatively, you can walk through the tests and set breakpoints by installing the Python Debugger VS Code extension. Hit F5 to run all tests. You can edit .vscode/launch.json to pass --whitelisted-test=f32_too_big.

Type checking

  1. pip install -e .[dev]
  2. pip install pyright[nodejs]
  3. pyright

Updating the pypi package

python -m pip install --upgrade pip
python -m pip install --upgrade build
python -m build
python -m pip install --upgrade twine
python -m twine upload dist/*

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

grug_lang-1.9.0.tar.gz (31.7 kB view details)

Uploaded Source

Built Distribution

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

grug_lang-1.9.0-py3-none-any.whl (30.5 kB view details)

Uploaded Python 3

File details

Details for the file grug_lang-1.9.0.tar.gz.

File metadata

  • Download URL: grug_lang-1.9.0.tar.gz
  • Upload date:
  • Size: 31.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.0

File hashes

Hashes for grug_lang-1.9.0.tar.gz
Algorithm Hash digest
SHA256 13fa8e98e65b0f218c8c861710a41b49032820d28df80e05a63922c279cc000c
MD5 d885e94c3ddc5a287f272edc3d71045d
BLAKE2b-256 8c68f86404314e77183a5c5f7dfd95cc4288a90e6030ce2f90900bed5c32323d

See more details on using hashes here.

File details

Details for the file grug_lang-1.9.0-py3-none-any.whl.

File metadata

  • Download URL: grug_lang-1.9.0-py3-none-any.whl
  • Upload date:
  • Size: 30.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.0

File hashes

Hashes for grug_lang-1.9.0-py3-none-any.whl
Algorithm Hash digest
SHA256 69a3a7775f01a8d681b32c8125dad839a9f3354004d854ea8d73fce6573546bf
MD5 3883e307e0f404dc4dcde453cfc35a92
BLAKE2b-256 bb855ee063fc89547846c935c9af4122438af5bf66826813dc374ac7e7f71254

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