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
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.3.tar.gz
(17.0 kB
view details)
Built Distribution
File details
Details for the file pyblockworld-0.3.3.tar.gz
.
File metadata
- Download URL: pyblockworld-0.3.3.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
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5ce8bc167dd2a4615ce0a4c93cc30b0fc2be39aab03ddc53d3163f0c10da69a3 |
|
MD5 | c8ed135c46adf908fbb4d853bd78b385 |
|
BLAKE2b-256 | 3738724280c70fbb6f21b466e4fd1d57e152f0b34918c73587899fcc5fb6e38e |
File details
Details for the file pyblockworld-0.3.3-py3-none-any.whl
.
File metadata
- Download URL: pyblockworld-0.3.3-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
Algorithm | Hash digest | |
---|---|---|
SHA256 | 984f25c8bdf27a3fd44a42af1b878e9c29a33d259a030a1822c58328ed1176a2 |
|
MD5 | e22002ee96e5f424a71e8c177812332e |
|
BLAKE2b-256 | 9c80a2c4d71d0ae6657f0c82c2e76a8f2ba93e05c357621b333da3bded1032e4 |