mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-04-19 15:35:52 +00:00
All plugins will need to bump the API if they want to use this. NOTE THAT THIS IS NOT THE FINAL API 2.0.0 AND THAT THERE WILL BE MORE CHANGES. To start updating, you might also want to read https://secure.php.net/manual/en/migration70.php and specifically https://secure.php.net/manual/en/migration70.incompatible.php To compile PHP7 with some of the required dependencies, use https://gist.github.com/shoghicp/166ab26ce5cc7a390f45 ONLY LINUX IS TESTED, DO NOT ASK FOR OTHER PLATFORMS! ----- THIS VERSION IS NOT SUPPORTED ----- This version WILL crash randomly in unexpected places due to PHP7, pthreads, PocketMine or cosmic rays. Handle with care, and store under direct sunlight for the best performance.
62 lines
1.1 KiB
Bash
Executable File
62 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
DIR="$(cd -P "$( dirname "${BASH_SOURCE[0]}" )" && pwd)"
|
|
cd "$DIR"
|
|
|
|
DO_LOOP="no"
|
|
|
|
while getopts "p:f:l" OPTION 2> /dev/null; do
|
|
case ${OPTION} in
|
|
p)
|
|
PHP_BINARY="$OPTARG"
|
|
;;
|
|
f)
|
|
POCKETMINE_FILE="$OPTARG"
|
|
;;
|
|
l)
|
|
DO_LOOP="yes"
|
|
;;
|
|
\?)
|
|
break
|
|
;;
|
|
esac
|
|
done
|
|
|
|
if [ "$PHP_BINARY" == "" ]; then
|
|
if [ -f ./bin/php7/bin/php ]; then
|
|
export PHPRC=""
|
|
PHP_BINARY="./bin/php7/bin/php"
|
|
elif [ type php 2>/dev/null ]; then
|
|
PHP_BINARY=$(type -p php)
|
|
else
|
|
echo "Couldn't find a working PHP 7 binary, please use the installer."
|
|
exit 1
|
|
fi
|
|
fi
|
|
|
|
if [ "$POCKETMINE_FILE" == "" ]; then
|
|
if [ -f ./PocketMine-MP.phar ]; then
|
|
POCKETMINE_FILE="./PocketMine-MP.phar"
|
|
elif [ -f ./src/pocketmine/PocketMine.php ]; then
|
|
POCKETMINE_FILE="./src/pocketmine/PocketMine.php"
|
|
else
|
|
echo "Couldn't find a valid PocketMine-MP installation"
|
|
exit 1
|
|
fi
|
|
fi
|
|
|
|
LOOPS=0
|
|
|
|
set +e
|
|
while [ "$LOOPS" -eq 0 ] || [ "$DO_LOOP" == "yes" ]; do
|
|
if [ "$DO_LOOP" == "yes" ]; then
|
|
"$PHP_BINARY" "$POCKETMINE_FILE" $@
|
|
else
|
|
exec "$PHP_BINARY" "$POCKETMINE_FILE" $@
|
|
fi
|
|
((LOOPS++))
|
|
done
|
|
|
|
if [ ${LOOPS} -gt 1 ]; then
|
|
echo "Restarted $LOOPS times"
|
|
fi
|