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.9.tar.gz
(16.9 kB
view details)
Built Distribution
File details
Details for the file pyblockworld-0.2.9.tar.gz
.
File metadata
- Download URL: pyblockworld-0.2.9.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 | b84e6837b2a96440a27be742db0b2e9fff011562275b5c9e71119963b39bd8cc |
|
MD5 | 9dc1937e9a4737e5f33327de41457752 |
|
BLAKE2b-256 | 884d75bf6a415229f56eb12bba7c9621657fcb1efe94efa96fc67665e3097949 |
File details
Details for the file pyblockworld-0.2.9-py3-none-any.whl
.
File metadata
- Download URL: pyblockworld-0.2.9-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 | 8381ed0b22fc23414d000f77e6af77f051304be15118d23689aa5d751782e480 |
|
MD5 | 2f01cffbf5a02ea672b16f7596681ee9 |
|
BLAKE2b-256 | f113eb97e2aec2f28f8868b4d262974c3f95180a253d4480602647d8efd2944e |