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.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
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.8.tar.gz
(16.9 kB
view details)
Built Distribution
File details
Details for the file pyblockworld-0.2.8.tar.gz
.
File metadata
- Download URL: pyblockworld-0.2.8.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 | 911a803e03eafa20528719bce3c293cccdbf3d1e46283edf3b26d9b41d0f64e0 |
|
MD5 | 9b98ed473ef54f18f78b553b6b3143e6 |
|
BLAKE2b-256 | 01ee391a1870437d6ee61636ace5fc907d5eb4bb1ee8daf2571511cea319aa75 |
File details
Details for the file pyblockworld-0.2.8-py3-none-any.whl
.
File metadata
- Download URL: pyblockworld-0.2.8-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 | 8413bf9d83ad4462d6f062967f83d7fcf8edb8d733256fe8bf58f50c079f1c63 |
|
MD5 | 3bd4668ffb9c10e8d259e4bfdb384c03 |
|
BLAKE2b-256 | 4e851feeb8e2f1575a870f6c9dfa2466b3c6a1c0c526930ef00c38f4aad368b7 |