Skip to main content

Python bindings for the dos-like programming library

Project description

python-dos-like is a set of Python bindings for the dos-like programming library by Mattias Gustavsson.

Tests status Documentation Status

Documentation: https://python-dos-like.readthedocs.io/en/latest/

Source Code: https://github.com/cknave/python-dos-like

Usage

pip install python-dos-like

python-dos-like can be used in the same way as dos-like by calling dos_like.start on your main function:

from random import randrange

import dos_like
from dos_like.dos import *


def main():
    setvideomode(videomode_320x200)

    while not shuttingdown():
        waitvbl()
        for _ in range(50):
            setcolor(randrange(256))
            line(randrange(320), randrange(200), randrange(320), randrange(200))
            setcolor(randrange(256))
            fillcircle(randrange(320), randrange(200), randrange(30))
            setcolor(randrange(256))
            circle(randrange(320), randrange(200), randrange(30))

dos_like.start(main)

You can also use python-dos-like in the Python REPL by calling dos_like.run_in_background:

>>> import dos_like
>>> from dos_like.dos import *
>>> dos_like.run_in_background(['-w'])
>>> cputs('hello world!')

Building

Building python-dos-like requires C development tools to be installed.

On Linux and macOS, the SDL2 and GLEW libraries are required.

If building from a git repository, you must update submodules to get the dos-like source.

git submodule update --init --recursive
$ python -mvenv .venv
$ . .venv/bin/activate
(.venv) $ pip install -e '.[dev]'
(.venv) $ coverage run -m unittest && coverage report

Several environment variables may be set to control compile-time options:

Environment variable

Default

Description

ALWAYS_UPDATE

1

Update the screen in the background. Set this to 0 to restore dos-like’s default behavior of pausing updates when the window loses focus.

CFLAGS

Extra compiler flags. Of note, -DNULL_PLATFORM is useful to build a library for headless build servers.

Limitations

Memory management

Memory allocated by dos-like will be freed when its corresponding bython buffer object is garbage collected. The current draw target and music will be retained even if no other python code has a reference, but any playing sounds will not be. Deleting or releasing the last reference to a playing sound may cause issues.

Platforms

This library has been tested on Linux, Windows, and macOS.

macOS does not support GUI operations in a background thread, so it cannot be used from the Python REPL by calling run_in_background().

python-dos-like can be compiled as a WebAssembly Pyodide module, but will fail to import due to a missing symbol from WAjic. Even if this symbol (J, an object containing JS functions to be called from C) is added to the imports when loaded by Pyodide, it does not appear to be compatible.

It is not clear to me what the best way forward is for WebAssembly support: getting a Pyodide module to import WAjic functions, building a Pyodide module in WAjic, or removing Pyodide or WAjic from the project entirely.

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

python-dos-like-0.0.4.tar.gz (1.8 MB view hashes)

Uploaded Source

Built Distributions

python_dos_like-0.0.4-cp310-cp310-win_amd64.whl (1.3 MB view hashes)

Uploaded CPython 3.10 Windows x86-64

python_dos_like-0.0.4-cp310-cp310-manylinux_2_28_x86_64.whl (2.4 MB view hashes)

Uploaded CPython 3.10 manylinux: glibc 2.28+ x86-64

python_dos_like-0.0.4-cp310-cp310-macosx_10_15_x86_64.whl (1.3 MB view hashes)

Uploaded CPython 3.10 macOS 10.15+ x86-64

python_dos_like-0.0.4-cp39-cp39-win_amd64.whl (1.3 MB view hashes)

Uploaded CPython 3.9 Windows x86-64

python_dos_like-0.0.4-cp39-cp39-manylinux_2_28_x86_64.whl (2.4 MB view hashes)

Uploaded CPython 3.9 manylinux: glibc 2.28+ x86-64

python_dos_like-0.0.4-cp39-cp39-macosx_10_15_x86_64.whl (1.3 MB view hashes)

Uploaded CPython 3.9 macOS 10.15+ x86-64

Supported by

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