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
.
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.play_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()
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
Release history Release notifications | RSS feed
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.2.6.tar.gz
(16.9 kB
view details)
Built Distribution
File details
Details for the file pyblockworld-0.2.6.tar.gz
.
File metadata
- Download URL: pyblockworld-0.2.6.tar.gz
- Upload date:
- Size: 16.9 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
Algorithm | Hash digest | |
---|---|---|
SHA256 | acbaf5a92c4be98abe895faefa15e07dea076fb3402fa46a582d97afa4212afa |
|
MD5 | 27fca6e47858caec4c5057b7cab9d458 |
|
BLAKE2b-256 | e7b8844d6bc076988d7df01d1af0f78605d0006ace7284ac2d7187cc8bf5bbbc |
File details
Details for the file pyblockworld-0.2.6-py3-none-any.whl
.
File metadata
- Download URL: pyblockworld-0.2.6-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
Algorithm | Hash digest | |
---|---|---|
SHA256 | c71cd0aa8f90c422b6bc91ade01f663842cbbb525742b63f2a2cfa9a5ab8af02 |
|
MD5 | 1f5e37a64acd7a46dc7ae1d630135421 |
|
BLAKE2b-256 | c76936ce9653dea1e2b0e5b37195f1a8b18321c5497d1e7b418672928073bd73 |