forked from ThePansmith/Monifactory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pack-mode-switcher.sh
executable file
·92 lines (71 loc) · 2.29 KB
/
pack-mode-switcher.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
#!/usr/bin/env sh
# Colors
RED=$(tput setaf 1)
GREEN=$(tput setaf 2)
YELLOW=$(tput setaf 3)
POWDER_BLUE=$(tput setaf 153)
MAGENTA=$(tput setaf 5)
NORMAL=$(tput sgr0)
touch .mode
set -e
printf "${POWDER_BLUE}Monifactory | Pack Mode Switcher${NORMAL}"
NORMAL_CFG='./config-overrides/normal'
HARDMODE_CFG='./config-overrides/hardmode'
EXPERT_CFG='./config-overrides/expert'
TARGET='./config'
CURRENT_MODE="$(head .mode)"
CURRENT_MODE=${CURRENT_MODE:="normal"}
# Check if config-overrides dir exists
if [[ ! -d "${NORMAL_CFG}" ]] || [[ ! -d "${HARDMODE_CFG}" ]] || [[ ! -d "${EXPERT_CFG}" ]] ; then
printf "\n\n${RED}Could not find \`config-overrides\` directory! \nMake sure you are in the \`/minecraft\` directory of your instance! (The one containing \`/config\`)${NORMAL}\n"
printf "${YELLOW}Otherwise, if you are in the \`/minecraft\` directory, please try reinstalling the pack.${NORMAL}\n"
exit 1
fi
# Capitalise First Letter (only works in bash 4+)
[ "${BASH_VERSINFO:-0}" -ge 4 ] && CURRENT_MODE=${CURRENT_MODE^}
printf "\n\n${YELLOW}Current Mode: ${CURRENT_MODE}${NORMAL}\n"
if [ -z "$1" ]; then
printf "${POWDER_BLUE}Set Pack Mode: [Normal / Hardmode / Expert]: ${NORMAL}"
read MODE
else
MODE="$1"
fi
case $MODE in
N|n|normal|Normal)
cp -rf "$NORMAL_CFG/." ${TARGET}
# Only copy server.properties if it exists.
if [ -f "server.properties" ]; then
mv "${TARGET}/server.properties" ./
else
rm "${TARGET}/server.properties" || true
fi
# Update Mode
echo normal > .mode
;;
H|h|hardmode|Hardmode)
cp -rf "$HARDMODE_CFG/." ${TARGET}
if [ -f "server.properties" ]; then
mv "${TARGET}/server.properties" ./
else
rm "${TARGET}/server.properties" || true
fi
# Update Mode
echo hard > .mode
;;
E|e|expert|Expert)
cp -rf "$EXPERT_CFG/." ${TARGET}
if [ -f "server.properties" ]; then
mv "${TARGET}/server.properties" ./
else
rm "${TARGET}/server.properties" || true
fi
# Update Mode
echo expert > .mode
;;
*)
printf "\n${RED}Error: Invalid input ${MODE}!${NORMAL}\n"
printf "\n${POWDER_BLUE}Accepted Inputs:\n${YELLOW}- [Normal, normal, N, n]\n- [Hardmode, hardmode, H, h]\n- [Expert, expert, E, e]${NORMAL}\n"
exit 1
;;
esac
printf "\n${GREEN}Complete!${NORMAL}\n"