You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+15-9Lines changed: 15 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -4,22 +4,25 @@
4
4
5
5
_**Minecraft: Python Edition**_ is a project that strives to recreate each and every old Minecraft version in Python 3 using the **Pyglet** multimedia library and **Cython** for performance.
6
6
7
-
This project is currently recreating the **Multiplayer Classic** versions of Minecraft. The latest version is **Classic 0.0.21a** as released on _**June 22, 2009**_.
7
+
This project is currently recreating the **Multiplayer Classic** versions of Minecraft. The latest version is **Classic 0.0.22a_05** as released on _**June 29, 2009**_.
8
8
9
-
Learn more about this version [here](https://minecraft.fandom.com/wiki/Java_Edition_Classic_0.0.21a).
9
+
Learn more about this version [here](https://minecraft.fandom.com/wiki/Java_Edition_Classic_0.0.22a_05).
10
10
11
11
Or the server version [here](https://minecraft.fandom.com/wiki/Java_Edition_Classic_server_1.8.2).
12
12
13
-
This project is organized so that every commit is strictly the completed release of the Python version of the Java game of the same version number.
13
+
This project is organized so that every commit is strictly the finished Python version of the Java game of the same version number.
14
14
This means that you can go back into this repository's commit history and see only the source code changes between versions of Minecraft,
15
15
or you can compare branches and see the changes made between them. For any version this project covers,
16
16
you can play it just by specifying the Minecraft version you want to play in the `pip install` command as demonstrated below.
17
17
18
18
### General Usage
19
19
20
-
*Pyglet*, *Cython*, and *Pillow* are required dependencies and can easily be installed with *pip*. Use the versions specified in `requirements.txt`.
20
+
*Pyglet*, *Cython*, *Pillow*, and *PyOgg* are required dependencies and can easily be installed with *pip*. Use the versions specified in `requirements.txt`.
21
21
22
-
To easily install this version of *Minecraft: Python Edition*, just run `python -m pip install minecraft-python==0.0.21`.
22
+
This version features block sounds and music, and for audio to work you need either *PyOgg* which is recommended, or FFmpeg which is installed on the system.
23
+
GStreamer is also supported on Linux through the *gst-python* library. PyOgg requires that your system have one of the *Opus*, *FLAC*, or *Vorbis* codecs. OpenAL is required.
24
+
25
+
To easily install this version of *Minecraft: Python Edition*, just run `python -m pip install minecraft-python==0.0.22a_05`.
23
26
24
27
Alternatively, for a manual Cython build, run `python setup.py build_ext --inplace`.
25
28
@@ -29,9 +32,12 @@ Run with the argument `-fullscreen` to open the window in fullscreen mode.
29
32
30
33
### Gameplay
31
34
32
-
This version features multiplayer, chat, more advanced terrain (including caves and expanding water tiles), level saving, and human mobs.
35
+
This version features multiplayer, chat, caves, beaches, hill terrain, infinite liquid tiles, level saving, and human mobs.
36
+
37
+
Press *B* to open the inventory menu. Press *Enter* to set your spawn position, *R* to teleport to your spawn position,
38
+
*Y* to invert the mouse, *G* to spawn a mob, *F* to toggle render distance, and *M* to mute audio.
33
39
34
-
Press *B* to open the inventory menu. Press *Enter* to set your spawn position, *R* to teleport to your spawn position, *Y* to invert the mouse, *G* to spawn a mob, and *F* to toggle render distance.
40
+
*Minecraft: Python Edition* should be compatible with any platform that supports OpenGL, modern Python 3, and Cython.
35
41
36
42
### Multiplayer
37
43
@@ -44,8 +50,8 @@ Make sure `verify-names` is set to `false` in the server properties.
44
50
45
51
### Additional Notes
46
52
47
-
The resources directory contains all of the textures that this version uses. However,
48
-
they are only there for convenience, as all of the texture buffers are already preloaded
53
+
The `mc.resources` directory contains all of the textures and sounds that this version uses. However,
54
+
the textures are only there for convenience, as all of the texture buffers are already preloaded
49
55
in the `mc.Resources` module.
50
56
51
57
The *server* directory contains the unmodified, original Minecraft server build for this version.
0 commit comments