Raspberry Pi + Minecraft Pi Edition で Hello World
概要
- Raspberry Pi + Raspbian 環境で動作する Minecraft Pi Edition にて、Python 用ライブラリ mcpi を使って Hello World を表示する
今回の環境
- Raspberry Pi 3 Model B
- Raspbian GNU/Linux 10 (buster)
- Python 2.7
- Minecraft Pi Edition v0.1.1 alpha
- mcpi 0.1.1 (Minecraft Pi Edition API Python Library)
Minecraft Pi Edition とは
Minecraft Pi Edition は Raspberry Pi でのプログラミング学習用に開発された Minecraft の無料版。
Minecraft Pi Edition と mcpi のインストール
Raspbian にはおそらく最初からインストールされているが、無い場合は apt または apt-get コマンドで minecraft-pi パッケージをインストールする。
$ sudo apt install minecraft-pi
パッケージリストを読み込んでいます... 完了
依存関係ツリーを作成しています
状態情報を読み取っています... 完了
minecraft-pi はすでに最新バージョン (0.1.1-6) です。
Python の mcpi パッケージ (Minecraft Pi Edition API Python Library) も一緒にインストールされていると思うが、無い場合は pip コマンドでインストールする。
$ sudo pip install mcpi
Looking in indexes: https://pypi.org/simple, https://www.piwheels.org/simple
Requirement already satisfied: mcpi in /usr/lib/python2.7/dist-packages (0.1.1)
$ pip show mcpi
Name: mcpi
Version: 0.1.1
Summary: API for Minecraft Pi
Home-page: http://pi.minecraft.net/
Author: Mojang
Author-email: UNKNOWN
License: UNKNOWN
Location: /usr/lib/python2.7/dist-packages
Requires:
Required-by:
Minecraft のワールドに Hello World を表示する
Minecraft Pi Edition を起動し、
ワールドを生成して入っておく。
以下のソースコードを保存して、
from mcpi import minecraft
import mcpi.block as block
mc = minecraft.Minecraft.create("localhost")
pos = mc.player.getPos()
basex = int(pos.x) + 0
basey = int(pos.y) + 6
basez = int(pos.z) + 0
data = [
"# # ### # # ## # # ## ### # ### ",
"# # # # # # # # # # # # # # # # #",
"#### ### # # # # # # # # # ### # # #",
"# # # # # # # # # # # # # # # # #",
"# # ### ### ### ## # # ## # # ### ### "
]
for y, line in enumerate(data):
for x, c in enumerate(line):
if c == "#":
mc.setBlock(basex + x, basey - y, basez, block.DIAMOND_BLOCK.id)
実行すると、
$ python hello-minecraft.py
ダイヤモンドブロックによる HELLO WORLD が出現する。
参考資料
Author And Source
この問題について(Raspberry Pi + Minecraft Pi Edition で Hello World), 我々は、より多くの情報をここで見つけました https://qiita.com/niwasawa/items/42cf74e053af6478c497著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .