mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2024-11-22 01:15:54 +03:00
97 lines
2.7 KiB
Bash
97 lines
2.7 KiB
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
my_dir="$(dirname "$(realpath "$0")")"
|
||
|
pushd "$my_dir" > /dev/null
|
||
|
|
||
|
res_dir="vector/src/main/res/"
|
||
|
god_bubble="vector/src/main/res/drawable/msg_godbubble.xml"
|
||
|
|
||
|
# Multiline sed -i
|
||
|
function mised() {
|
||
|
local expression="$1"
|
||
|
local file="$2"
|
||
|
local tmpfile="$file.tmp"
|
||
|
cp "$file" "$tmpfile"
|
||
|
cat "$tmpfile" \
|
||
|
| tr "\n" "\r" \
|
||
|
| sed "$expression" \
|
||
|
| tr "\r" "\n" \
|
||
|
> "$file"
|
||
|
rm "$tmpfile"
|
||
|
}
|
||
|
|
||
|
function create_msg_bubble() {
|
||
|
local is_outgoing="$1"
|
||
|
local is_rtl="$2"
|
||
|
local is_notice="$3"
|
||
|
local has_tail="$4"
|
||
|
|
||
|
# Out file name
|
||
|
local out_bubble="$res_dir/drawable"
|
||
|
if ((is_rtl)); then
|
||
|
local out_bubble="$out_bubble-ldrtl"
|
||
|
fi
|
||
|
local out_bubble="$out_bubble/msg_bubble"
|
||
|
if ((is_notice)); then
|
||
|
local out_bubble="${out_bubble}_notice"
|
||
|
else
|
||
|
local out_bubble="${out_bubble}_text"
|
||
|
fi
|
||
|
if ((is_outgoing)); then
|
||
|
local out_bubble="${out_bubble}_outgoing"
|
||
|
else
|
||
|
local out_bubble="${out_bubble}_incoming"
|
||
|
fi
|
||
|
if !((has_tail)); then
|
||
|
local out_bubble="${out_bubble}_notail"
|
||
|
fi
|
||
|
local out_bubble="${out_bubble}.xml"
|
||
|
|
||
|
# Copy
|
||
|
cp "$god_bubble" "$out_bubble"
|
||
|
echo "$out_bubble"
|
||
|
|
||
|
# Modify direction
|
||
|
if [ "$is_rtl" != "$is_outgoing" ]; then
|
||
|
sed -i 's|left|loft|g;s|Left|Loft|g;s|right|left|g;s|Right|Left|g;s|loft|right|g;s|Loft|Right|g' "$out_bubble"
|
||
|
mised 's|<!-- LTR tail -->.*<!-- RTL tail -->||' "$out_bubble"
|
||
|
else
|
||
|
mised 's|<!-- RTL tail -->.*<!-- tail end -->||' "$out_bubble"
|
||
|
fi
|
||
|
# Remove tail
|
||
|
if ((has_tail)); then
|
||
|
mised 's|<!-- Filled for no tail -->.*<!-- Filled end -->||' "$out_bubble"
|
||
|
else
|
||
|
mised 's|<!-- Filled for tail -->.*\(<!-- Filled for no tail -->\)|\1|' "$out_bubble"
|
||
|
mised 's|<!-- Tail -->.*<!-- Tail end -->||' "$out_bubble"
|
||
|
mised 's|<!-- Outer radius -->.*\(<!-- Inner radius -->\)|\1|' "$out_bubble"
|
||
|
fi
|
||
|
# Modify fill
|
||
|
if !((is_notice)); then
|
||
|
sed -i 's|sc_notice_bg|sc_message_bg|g' "$out_bubble"
|
||
|
mised 's|<!-- Outer radius -->.*\(<!-- Inner radius -->\)|\1|' "$out_bubble"
|
||
|
mised 's|<!-- Inner radius -->.*<!-- Radius end -->||' "$out_bubble"
|
||
|
fi
|
||
|
# Modify color
|
||
|
if ((is_outgoing)); then
|
||
|
sed -i 's|_incoming|_outgoing|g' "$out_bubble"
|
||
|
fi
|
||
|
# Remove unneeded size, which only exists to make it look nicer in drawable preview
|
||
|
sed -i 's|<size.*/>||g' "$out_bubble"
|
||
|
}
|
||
|
|
||
|
for is_outgoing in 0 1; do
|
||
|
for is_rtl in 0 1; do
|
||
|
for is_notice in 0 1; do
|
||
|
for has_tail in 0 1; do
|
||
|
create_msg_bubble "$is_outgoing" "$is_rtl" "$is_notice" "$has_tail"
|
||
|
done
|
||
|
done
|
||
|
done
|
||
|
done
|
||
|
|
||
|
|
||
|
popd > /dev/null
|