Tam2 / MCPIL

Minecraft Pi Launcher.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

MCPIL

A simple launcher for Minecraft: Pi Edition.

GPL-2.0 CII Required Python version CodeQL results

screenshot

⚠️ Warning

This branch of the project is currently being rewritten, until some design issues are fixed. Please refer to issues for most common bugs. All of them are produced by the lack of a good internal design, and practically broke the Launcher. A new branch is being developed from the ground up, so stay tunned!

If you want stability, please consider using MCPI-Docker directly, or an old version of this Launcher (v0.6.2 would be a good choice).

This does not mean that the project will not be maintained anymore, so feel free to send reports, code, or other contributions.

Getting started

Prerequisites

To use MCPIL you must have Python >= 3.7.x installed on your device prior to using MCPIL.

Installation

Download and install MCPIL from the Packagecloud Debian repository:

# If you didn't add the repository yet
curl -s https://packagecloud.io/install/repositories/Alvarito050506/mcpi-devs/script.deb.sh | sudo bash

# Now the actual installation
sudo apt-get install mcpil

Features

  • Switch between Minecraft Pi and Minecraft Pocket Edition
  • Username changing
  • Skin changing
  • Mod loading
  • Mod API
  • Mod compilation
  • World settings (gamemode and name) changing
  • Join non-local servers
  • Coming soon: More stuff

Usage

Launch the MCPIL desktop file or run the mcpil command folder as following to see the magic! 😉

mcpil # Yes, simple as this

API

The API documentation was moved to the ModPi repo.

The support for the old API was dropped in the v0.5.0 release! It is recommended to use the new ModPi API. However, the old API documentation is still avaiable here.

Mod compilation

To compile (compress) a Python mod, run the mcpim command passing the filename of the mod as the first argument. For example:

mcpim ./example.py

This will produce an example.mcpi mod file.

Troubleshooting

If you get the module not found: _tkinter error, or something of the sort, you can use Homebrew to install a custom tap made by @gamer4life1.

# First, install brew (If you don't have it already, also make sure to install in /home/linuxbrew/.linuxbrew)
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
# Then, apply the custom tap
brew tap gamer4life1/mcpi-tap
# Install gcc (a needed dependency)
brew install gcc
# Follow caveats for gcc (something like example)
export LDFLAGS="-L/home/linuxbrew/.linuxbrew/opt/isl@0.18/lib"
export CPPFLAGS="-I/home/linuxbrew/.linuxbrew/opt/isl@0.18/include"
# Install the custom formula of python (Ignore errors if they say that the system cannot find the bottle, it will compile from source)
brew install custompython
# Finally, add it to your PATH so it is first in your PATH
export PATH="/usr/local/opt/custompython/bin:$PATH"
# Add above to bashrc to load automatically

See also issues and discussions for future information regarding bugs and errors.

Thanks

To @Phirel for his Pi2PE (a.k.a. "survival") patch, and to @TheBrokenRail for MCPI-Docker. These two projects were/are highly used & abused by MCPIL 😉.

To everyone who has or had interest on the project, including MCPI Revival members.

Licensing

All the code of this project is licensed under the GNU General Public License version 2.0 (GPL-2.0).

All the documentation of this project is licensed under the Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

CC BY-SA 4.0

About

Minecraft Pi Launcher.

License:GNU General Public License v2.0


Languages

Language:Python 90.3%Language:Makefile 9.7%