Add Clouds
This commit is contained in:
parent
91f46576d9
commit
32acee05fc
2
debian/usr/bin/minecraft-pi
vendored
2
debian/usr/bin/minecraft-pi
vendored
@ -4,7 +4,7 @@ set -e
|
||||
|
||||
# Ensure Features Are Selected
|
||||
if [ -z "${MCPI_SUBSHELL}" ]; then
|
||||
MCPI_FEATURES="$(zenity --class minecraft-pi --list --checklist --column 'Enabled' --column 'Feature' FALSE 'Touch GUI' FALSE 'Survival Mode' FALSE 'Fix Bow & Arrow' FALSE 'Fix Attacking' FALSE 'Mob Spawning')"
|
||||
MCPI_FEATURES="$(zenity --class minecraft-pi --list --checklist --column 'Enabled' --column 'Feature' FALSE 'Touch GUI' FALSE 'Survival Mode' FALSE 'Fix Bow & Arrow' FALSE 'Fix Attacking' FALSE 'Mob Spawning' FALSE 'Show Clouds')"
|
||||
fi
|
||||
export MCPI_FEATURES
|
||||
|
||||
|
@ -85,7 +85,8 @@ static int has_feature(const char *name) {
|
||||
}
|
||||
|
||||
// Defined In extra.cpp
|
||||
extern void readAssetFile(unsigned char *target, unsigned char *app_platform, unsigned char *path);
|
||||
extern unsigned char *readAssetFile(unsigned char *app_platform, unsigned char *path);
|
||||
extern void openTextEdit(unsigned char *local_player, unsigned char *sign);
|
||||
|
||||
__attribute__((constructor)) static void init() {
|
||||
if (has_feature("Touch GUI")) {
|
||||
@ -142,4 +143,10 @@ __attribute__((constructor)) static void init() {
|
||||
|
||||
// Implement AppPlatform::readAssetFile So Translations Work
|
||||
overwrite((void *) 0x12b10, readAssetFile);
|
||||
|
||||
if (has_feature("Show Clouds")) {
|
||||
// Show Clouds
|
||||
unsigned char patch_data_8[4] = {0x01, 0x30, 0xa0, 0xe3};
|
||||
patch((void *) 0x49fcc, patch_data_8);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user