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.2.tar.gz (17.0 kB view details)

Uploaded Source

Built Distribution

pyblockworld-0.3.2-py3-none-any.whl (15.9 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: pyblockworld-0.3.2.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.2.tar.gz
Algorithm Hash digest
SHA256 e7ec44e2290b867f77e7903c00ef791595f45ef9a3aa147d4a3f30de03e8e470
MD5 2a28d4d46a52d0e25fca421fc2c304e1
BLAKE2b-256 f43bbbf1f1f691dda98878d6ecf04fe97bc8054698de912360d946cfb4d643da

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyblockworld-0.3.2-py3-none-any.whl
  • Upload date:
  • Size: 15.9 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.2-py3-none-any.whl
Algorithm Hash digest
SHA256 37a42ecffec6e0e17f206cec410a240ed8cd23d5bffa3f74ce329a2225934073
MD5 120ac89a7244a5a0eee1c2ef3900f1d9
BLAKE2b-256 f2963588b3ac06f3033633ee2960484974b1f2e816c67e936a9b44b5e621443f

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