This repository has been archived by the owner on Aug 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 3c09b43
Showing
10 changed files
with
532 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
all: | ||
mkdir -p ./build/mc4k/ | ||
mkdir -p ./build/res/ | ||
javac -d ./build/ ./mc4k/Minecraft4K.java | ||
cp ./res/Manifest.txt ./build/ | ||
cp ./res/textures.dat ./build/res/ | ||
cd build && jar cfm Minecraft4K.jar Manifest.txt mc4k/* res/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# mc4k | ||
|
||
Minecraft 4K, but fixed. | ||
|
||
## Building and usage | ||
To build this, do: | ||
```sh | ||
make | ||
``` | ||
That will generate an executable JAR file under the `build/` directory, run it like: | ||
```sh | ||
java -jar ./build/Minecraft4K.jar | ||
``` | ||
|
||
## Block types | ||
+ `1`: Grass | ||
+ `2`: Dirt | ||
+ `3`: Diamond | ||
+ `4`: Stone | ||
+ `5`: Bricks | ||
+ `6`: Dirt | ||
+ `7`: Wood | ||
+ `8`: Leaves | ||
+ `9`: Blue bricks | ||
+ `10-15`: Dirt | ||
|
||
## Controls | ||
+ Movement: `"WASD"` | ||
+ Next block: Left arrow | ||
+ Previous block: Right arrow | ||
+ Save world: `'G'` | ||
+ Load world: `'C'` | ||
+ Quit: `Esc` | ||
|
||
## Credits and licensing | ||
I don't even know from where the original code comes, but I downloaded it from a [post](https://www.minecraftforum.net/forums/mapping-and-modding-java-edition/minecraft-mods/1290821-minecraft-4k-improved-by-crunchycat-download-now?comment=60) in the MCForums. It looks like it was a modified version of the original reverse-engineered Minecraft 4K code. | ||
|
||
All my modifications were made for the only purpose of making it more playable, feel free to modify and distribute them. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Manifest-Version: 1.0 | ||
Main-Class: mc4k.Minecraft4K |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Oops, something went wrong.