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.
Changelog
-
0.3.5
- Changelog eingeührt
- Support für Python 3.8
-
0.3.7
- PeristentWorld als speicherbare Welt hinzugefügt.
- Doku aktualisiert: Abschnitt Start entfernt.
- World.player_position hat das Attribut as_int, um ein Int-Tuple zu erzeugen
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.3.8.tar.gz
(17.3 kB
view details)
Built Distribution
File details
Details for the file pyblockworld-0.3.8.tar.gz
.
File metadata
- Download URL: pyblockworld-0.3.8.tar.gz
- Upload date:
- Size: 17.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.5.1 CPython/3.11.3 Linux/5.15.125-1-MANJARO
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e7b08e8d0add143587c79b8e473d12f76665deec740a7ed65b68cce4a3f41654 |
|
MD5 | d85e5b56cdb2713c554c3bfc11e50ec3 |
|
BLAKE2b-256 | 08a3ae5bc1bc423f018246e1494d416541032f5bfc79ae3a1cbe00d3ac33c668 |
File details
Details for the file pyblockworld-0.3.8-py3-none-any.whl
.
File metadata
- Download URL: pyblockworld-0.3.8-py3-none-any.whl
- Upload date:
- Size: 16.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.5.1 CPython/3.11.3 Linux/5.15.125-1-MANJARO
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0dcd9b655fb23fce1e5bee02aa6ef5b14370fcd17e1aeb493041793b8de23ff4 |
|
MD5 | c08991197f89a38de338c520980cd731 |
|
BLAKE2b-256 | a0d73ea7d476c46a0a251af91c779756395895dfd83f44be4e8e5a2822d20c09 |