Skip to main content

Minecraft like Block world in Python

Project description

PyBlockWorld

Eine an Minecraft angelehnte Welt aus Blöcken.

Installation

Die Installation erfolgt über pip install pyblockworld.

Start

Nach der Installation kann die Welt mit python -m pyblockworld gestartet werden.

API

    from pyblockworld import World

    #
    # BEISPIEL 1
    #
    
    # Eine Funktion, die beim Drücken der B-Taste aufgerufen werden soll
    def b_key_pressed(world:World):
        print("B pressed. Player at", world.player_position())
        
    # Erstellen einer neuen Welt
    world = World()
    # Die Funktion für die build-Taste (b) wird zugewiesen
    world.build_key_pressed = b_key_pressed
    # Die Welt wird gestartet
    world.run()

    #
    # BEISPIEL 2
    #

    # Nun werden beim Drücken der Taste ein paar Blöcke platziert.
    def b_key_pressed(world:World):
        # Neue Blöcke können mit setBlock gesetzt werden.
        # Verfügbare Materialien stehen in World.MATERIALS und umfassen
        # air, default:brick, default:stone, default:sand, default:grass
        print("Block types", World.MATERIALS)
        x,y,z = world.player_position()
        # Einen Block platzieren
        world.setBlock(x,y,z, "default:brick")

        # Mehrere Blöcke auf einmal abseits des Spielers platzieren
        x,y,z = x,y,z+3
        world.setBlocks(x,y,z, x+3,y+3,z+3, "default:grass")
        
    world = World()
    world.build_key_pressed = b_key_pressed
    world.run()

Quellen

Der Quellcode basiert auf dem Code von SensorCraft, der wiederum auf dem Code von Craft basiert.

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

pyblockworld-0.3.4.tar.gz (17.0 kB view details)

Uploaded Source

Built Distribution

pyblockworld-0.3.4-py3-none-any.whl (15.8 kB view details)

Uploaded Python 3

File details

Details for the file pyblockworld-0.3.4.tar.gz.

File metadata

  • Download URL: pyblockworld-0.3.4.tar.gz
  • Upload date:
  • Size: 17.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.14 CPython/3.10.5 Linux/5.15.60-1-MANJARO

File hashes

Hashes for pyblockworld-0.3.4.tar.gz
Algorithm Hash digest
SHA256 ef158dca8a8253c544caa547884cda29d2a90de474cdf98a035f4c8be6b62f75
MD5 9af56b6f7c7c614ad82d508805b08d48
BLAKE2b-256 04ca81baf28ec8a3bea9900c7be5c388a50f3d5aabdadec2a04b25ea469a4d77

See more details on using hashes here.

File details

Details for the file pyblockworld-0.3.4-py3-none-any.whl.

File metadata

  • Download URL: pyblockworld-0.3.4-py3-none-any.whl
  • Upload date:
  • Size: 15.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.14 CPython/3.10.5 Linux/5.15.60-1-MANJARO

File hashes

Hashes for pyblockworld-0.3.4-py3-none-any.whl
Algorithm Hash digest
SHA256 059af0e21dabebd356e64e1bcb4cba7d1668d2aa24e39ff06ee69e21ad21a540
MD5 0e9f27252dc47d9c34fe70b8b97fc316
BLAKE2b-256 a2084ae991f2488025f145fb9975adee2c46a63d1a291b276b3ad39306e90b8a

See more details on using hashes here.

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