forked from Magisk-Modules-Repo/ViPER4Android-FX
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.sh
333 lines (305 loc) · 15.2 KB
/
install.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
##########################################################################################
#
# Magisk Module Installer Script
#
##########################################################################################
##########################################################################################
#
# Instructions:
#
# 1. Place your files into system folder (delete the placeholder file)
# 2. Fill in your module's info into module.prop
# 3. Configure and implement callbacks in this file
# 4. If you need boot scripts, add them into common/post-fs-data.sh or common/service.sh
# 5. Add your additional or modified system properties into common/system.prop
#
##########################################################################################
##########################################################################################
# Config Flags
##########################################################################################
# Set to true if you do *NOT* want Magisk to mount
# any files for you. Most modules would NOT want
# to set this flag to true
SKIPMOUNT=false
# Set to true if you need to load system.prop
PROPFILE=false
# Set to true if you need post-fs-data script
POSTFSDATA=false
# Set to true if you need late_start service script
LATESTARTSERVICE=false
##########################################################################################
# Replace list
##########################################################################################
# List all directories you want to directly replace in the system
# Check the documentations for more info why you would need this
# Construct your list in the following format
# This is an example
REPLACE_EXAMPLE="
/system/app/Youtube
/system/priv-app/SystemUI
/system/priv-app/Settings
/system/framework
"
# Construct your own list here
REPLACE="
"
##########################################################################################
#
# Function Callbacks
#
# The following functions will be called by the installation framework.
# You do not have the ability to modify update-binary, the only way you can customize
# installation is through implementing these functions.
#
# When running your callbacks, the installation framework will make sure the Magisk
# internal busybox path is *PREPENDED* to PATH, so all common commands shall exist.
# Also, it will make sure /data, /system, and /vendor is properly mounted.
#
##########################################################################################
##########################################################################################
#
# The installation framework will export some variables and functions.
# You should use these variables and functions for installation.
#
# ! DO NOT use any Magisk internal paths as those are NOT public API.
# ! DO NOT use other functions in util_functions.sh as they are NOT public API.
# ! Non public APIs are not guranteed to maintain compatibility between releases.
#
# Available variables:
#
# MAGISK_VER (string): the version string of current installed Magisk
# MAGISK_VER_CODE (int): the version code of current installed Magisk
# BOOTMODE (bool): true if the module is currently installing in Magisk Manager
# MODPATH (path): the path where your module files should be installed
# TMPDIR (path): a place where you can temporarily store files
# ZIPFILE (path): your module's installation zip
# ARCH (string): the architecture of the device. Value is either arm, arm64, x86, or x64
# IS64BIT (bool): true if $ARCH is either arm64 or x64
# API (int): the API level (Android version) of the device
#
# Availible functions:
#
# ui_print <msg>
# print <msg> to console
# Avoid using 'echo' as it will not display in custom recovery's console
#
# abort <msg>
# print error message <msg> to console and terminate installation
# Avoid using 'exit' as it will skip the termination cleanup steps
#
# set_perm <target> <owner> <group> <permission> [context]
# if [context] is empty, it will default to "u:object_r:system_file:s0"
# this function is a shorthand for the following commands
# chown owner.group target
# chmod permission target
# chcon context target
#
# set_perm_recursive <directory> <owner> <group> <dirpermission> <filepermission> [context]
# if [context] is empty, it will default to "u:object_r:system_file:s0"
# for all files in <directory>, it will call:
# set_perm file owner group filepermission context
# for all directories in <directory> (including itself), it will call:
# set_perm dir owner group dirpermission context
#
##########################################################################################
##########################################################################################
# If you need boot scripts, DO NOT use general boot scripts (post-fs-data.d/service.d)
# ONLY use module scripts as it respects the module status (remove/disable) and is
# guaranteed to maintain the same behavior in future Magisk releases.
# Enable boot scripts by setting the flags in the config section above.
##########################################################################################
# Set what you want to display when installing your module
print_modname() {
ui_print "*******************************"
ui_print " ViPER4AndroidFX v2.7.x "
ui_print "*******************************"
}
profile_convert() {
ui_print " "
ui_print "- Converting old profiles to new format..."
[ -d /storage/emulated/0/ViPER4Android ] && FOL=/storage/emulated/0/ViPER4Android || FOL=$(find /storage -type d -name "ViPER4Android" 2>/dev/null | head -n1)
[ -z $FOL ] && FOL=$(find /data/media -type d -name "ViPER4Android" 2>/dev/null | head -n1)
[ -z $FOL ] && FOL=$(find /sdcard -type d -name "ViPER4Android" 2>/dev/null | head -n1)
[ -z $FOL ] && FOL=/storage/emulated/0/ViPER4Android
[ "$(ls -A $FOL/Profile 2>/dev/null)" ] || { ui_print "- No old profiles found, nothing to convert"; return; }
ui_print " ViPER4Android folder detected at: $FOL!"
ui_print " If new preset already exists, it will be skipped"
ui_print " "
[ "$(ls -A $FOL/Profile 2>/dev/null)" ] || { ui_print "No profiles detected!"; exit 1; }
mkdir -p $FOL/Preset 2>/dev/null
. $TMPDIR/keys.sh
find $FOL/Profile -mindepth 1 -maxdepth 1 -type d 2>/dev/null | while read PROFILE; do
ui_print " Converting $(basename "$PROFILE")"
for DEVICE in bluetooth headset speaker usb; do
case $DEVICE in
bluetooth) DEST="$FOL/Preset/$(basename "$PROFILE")-$DEVICE/bt_a2dp.xml";;
headset) DEST="$FOL/Preset/$(basename "$PROFILE")-$DEVICE/headset.xml";;
speaker) DEST="$FOL/Preset/$(basename "$PROFILE")-$DEVICE/speaker.xml";;
usb) DEST="$FOL/Preset/$(basename "$PROFILE")-$DEVICE/usb_device.xml";;
esac
for FORMAT in txt xml; do
if [ "$FORMAT" == "xml" ]; then
SOURCE="$PROFILE/com.vipercn.viper4android_v2.$DEVICE.xml"
DEST="$(echo "$DEST" | sed "s|-$DEVICE|-$DEVICE-Legacy|")"
[ -f "$SOURCE" ] || continue
[ -d "$(dirname "$DEST")" ] && { ui_print " New $(basename $DEVICE) preset already exists! Skipping..."; continue; }
[ "$(head -n1 "$SOURCE")" == "<?xml version='1.0' encoding='utf-8' standalone='yes' ?>" ] || { ui_print " $(basename "$PROFILE") $(basename $DEVICE) profile bugged! Skipping!"; continue; }
else
SOURCE="$PROFILE/$DEVICE.txt"
[ -f "$SOURCE" ] || continue
[ -d "$(dirname "$DEST")" ] && { ui_print " New $(basename $DEVICE) preset already exists! Skipping..."; continue; }
[ "$(head -n1 "$SOURCE")" == "<?xml version='1.0' encoding='utf-8' standalone='yes' ?>" ] && { ui_print " $(basename "$PROFILE") $(basename $DEVICE) profile bugged! Skipping!"; continue; }
fi
[ "$FORMAT" == "xml" ] && ui_print " Creating new $DEVICE-legacy profile..." || ui_print " Creating new $DEVICE profile..."
mkdir "$(dirname "$DEST")" 2>/dev/null
cp -f $TMPDIR/$(basename "$DEST") "$DEST"
while read LINE; do
[ "$(echo "$LINE" | grep 'ddcblock')" ] && continue # Skip ddcblock lines - not used and just slow down script
if [ "$FORMAT" == "xml" ]; then
case "$LINE" in
*"string name="*) VALUE="$(echo "$LINE" | sed -r -e "s|.*>(.*)</.*|\1|" -e "s/FILE://")"; LINE="$(echo "$LINE" | sed -r -e "s|.*name=\"viper4android.[A-Za-z]*\.(.*)\".*|\1|" -e "s/viperddc/ddc/" -e "s/\./_/g")";;
*"boolean name="*) VALUE="$(echo "$LINE" | sed -r "s|.*value=\"(.*)\" />.*|\1|")"; LINE="$(echo "$LINE" | sed -r -e "s|.*name=\"viper4android.[A-Za-z]*\.(.*)\" v.*|\1|" -e "s/viperddc/ddc/" -e "s/\./_/g")";;
*) continue;;
esac
# Change speaker entry names
[ "$DEVICE" == "speaker" ]&& { case "$LINE" in
convolver*|fet*|fireq*|limiter|outvol|playback*|reverb*) LINE="speaker_$LINE";;
esac; }
# Change dynamicsystem_bass
[ "$LINE" == "dynamicsystem_bass" ] && VALUE=$((VALUE * 20 + 100))
else
case "$LINE" in
[A-Z-a-z.]*) VALUE="$(echo "$LINE" | sed -e "s|^.*=||" -e "s/FILE://")"; LINE="$(echo "$LINE" | sed -e "s|=.*$||" -e "s/viperddc/ddc/" -e "s/\./_/g")";;
*) continue;;
esac
# Change speaker entry names
[ "$DEVICE" == "speaker" -a "$LINE" == "speaker_enable" ] && LINE=enable
# Change vse value
[ "$LINE" == "vse_value" ] && { VALUE="$(echo $VALUE | sed "s/;.*//")"; VALUE=$(awk -v VALUE=$VALUE 'BEGIN{VALUE=(VALUE/5.6); print VALUE;}'); }
fi
# Change names
case "$LINE" in
*fireq) continue;;
*fireq_custom) LINE="$(echo $LINE | sed "s/_custom//")";;
dynamicsystem_coeffs) LINE=dynamicsystem_device;;
dynamicsystem_bass) LINE=dynamicsystem_strength;;
tube_enable) LINE=tube_simulator_enable;;
channelpan) LINE=gate_channelpan;;
*limiter) LINE=gate_limiter;;
*outvol) LINE=gate_outputvolume;;
*reverb*) LINE="$(echo $LINE | sed -e "s/reverb_/reverberation_/" -e "s/roomwidth/room_width/")";;
*fetcompressor*) LINE="$(echo $LINE | sed "s|fetcompressor_|fet_|")";;
vhs_qual) LINE=vhs_quality;;
fidelity_bass_freq) LINE=fidelity_bass_frequency;;
spkopt_enable|speaker_optimize) LINE=speaker_optimization;;
esac
case "$LINE" in
fidelity_bass_mode|fidelity_clarity_mode|ddc_device|*fireq|*convolver_kernel|dynamicsystem_device)
VALUE="$(basename "$VALUE")"
[ "$LINE" == "ddc_device" -o "$LINE" == "convolver_kernel" ] && [ "$VALUE" ] && [ $VALUE -eq $VALUE ] 2>/dev/null && VALUE="$(grep "$VALUE" $TMPDIR/VDCIndex.txt | sed -r "s/^[0-9]*=\"(.*)\"/\1/").vdc"
LINE="$(eval echo \$$LINE)"
sed -i "/$LINE/ s|>.*</string>|>$VALUE</string>|" "$DEST";;
*) LINE="$(eval echo \$$LINE)"
if [ -z $LINE ]; then
continue
else
# Convert to integer
case "$VALUE" in
[0-9]*.[0-9]*) VALUE=$(awk -v VALUE=$VALUE 'BEGIN{VALUE=(VALUE*100); print VALUE;}');;
[0-9]*\;[0-9]*) VALUE="$(echo $VALUE | sed "s/;.*//")";; #colorfulmusic_coeffs
esac
# Round to Tenth place due to profile saving bug in original v4a
case "$LINE" in
*reverberation_room*) VALUE=$(awk -v VALUE=$VALUE 'BEGIN{VALUE = sprintf("%1.0e\n",VALUE); printf "%d\n", VALUE}');;
esac
sed -i "/$LINE/ s|value=\".*\"|value=\"$VALUE\"|" "$DEST"
fi;;
esac
done < "$SOURCE"
done
done
done
}
on_install() {
$BOOTMODE || abort "! This is for magisk manager only!"
imageless_magisk && MOUNTEDROOT=$NVBASE/modules || MOUNTEDROOT=$MAGISKTMP/img
[ "`getenforce`" == "Enforcing" ] && ENFORCE=true || ENFORCE=false
chmod 0755 $TMPDIR/curl-$ARCH32
# Uninstall existing v4a installs
REMS=$(find /data/app -type d -name "*com.pittvandewitt.viperfx*" -o -name "*com.audlabs.viperfx*" -o -name "*com.vipercn.viper4android_v2*")
if [ "$REMS" ]; then
ui_print "- Removing old v4a app installs..."
for i in ${REMS}; do
case $i in
*com.pittvandewitt.viperfx*) pm uninstall com.pittvandewitt.viperfx >/dev/null 2>&1;;
*com.audlabs.viperfx*) pm uninstall com.audlabs.viperfx >/dev/null 2>&1;;
*com.vipercn.viper4android*) pm uninstall com.vipercn.viper4android_v2 >/dev/null 2>&1;;
esac
done
fi
# Remove remnants of any old v4a installs
for REMS in $(find /data/data -name "*ViPER4AndroidFX*" -o -name "*com.audlabs.viperfx*" -o -name "*com.vipercn.viper4android_v2*"); do
if [ -d "$REMS" ]; then
rm -rf $REMS
else
rm -f $REMS
fi
done
# Tell user aml is needed if applicable
AML=false
[ -d $MOUNTEDROOT/aml -o -d $MODULEROOT/aml ] || for i in $(find $MOUNTEDROOT/*/system $MODULEROOT/*/system -type f -name "*audio_effects*.conf" -o -name "*audio_effects*.xml" 2>/dev/null); do
[ -f $(echo "$i" | sed "s|/system/.*|/|")remove ] || { AML=true; break; }
done
if $AML; then
ui_print " "
ui_print " ! Conflicting audio mod found!"
ui_print " ! You will need to install !"
ui_print " ! Audio Modification Library !"
sleep 3
fi
ui_print " "
ui_print "- Downloading latest apk..."
# URL needs changed to real server
($TMPDIR/curl-$ARCH32 -o $TMPDIR/v4afx.apk https://zackptg5.com/downloads/v4afx.apk) || abort " Download failed! Connect to internet and try again"
ui_print "- Installing ViPER4AndroidFX v2.7.1..."
$ENFORCE && setenforce 0
(pm install $TMPDIR/v4afx.apk >/dev/null 2>&1) || ui_print " V4AFX install failed! Install $FOL/v4afx.apk manually"
$ENFORCE && setenforce 1
# Install temporary service script
cp -f $TMPDIR/service.sh $NVBASE/service.d/v4afx.sh
chmod 0755 $NVBASE/service.d/v4afx.sh
# Convert old profiles to new presets
profile_convert
ui_print " "
ui_print "- Copying original V4A vdcs to:"
ui_print " $FOL/DDC-Orig..."
ui_print " Copy the ones you want to the DDC folder"
ui_print " "
ui_print " Note that some of these aren't that great"
ui_print " Check out here for better ones:"
ui_print " https://t.me/vdcservice"
ui_print " "
mkdir -p $FOL/DDC-Orig 2>/dev/null
unzip -oj $TMPDIR/vdcs.zip -d $FOL/DDC-Orig >&2
cp -f $TMPDIR/v4afx.apk $FOL/v4afx.apk
ui_print " After this completes,"
ui_print " open V4A app and follow the prompts"
ui_print " "
sleep 5
}
# Only some special files require specific permissions
# This function will be called after on_install is done
# The default permissions should be good enough for most cases
set_permissions() {
# Get rid of all old v4a magisk modules
REMS=$(find $MOUNTEDROOT/*/system $MODULEROOT/*/system -type f -name "ViPER4AndroidFX.apk" 2>/dev/null)
if [ "$REMS" ]; then
ui_print "- Marking all old v4a modules for deletion..."
for i in ${REMS}; do
i="$(echo "$i" | sed "s|/system/.*|/|")"
touch $i/remove
done
fi
rm -rf $MODPATH $MOUNTEDROOT/$MODID 2>/dev/null
}
# You can add more functions to assist your custom script code