Welcome to mirror list, hosted at ThFree Co, Russian Federation.

clover-canoe-shvc-wr « bin « rootfs « hakchi « mod_hakchi « mods - github.com/ClusterM/hakchi2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c7cfb5b7d3b0b917b651586b8fb729e5659b8c10 (plain)
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
#!/bin/sh
# Wrapper for canoe
# You can add extra command line arguments to all games at once
# using "cfg_snes_extra_args" variable in p0000_config

source /etc/preinit
script_init

options=""

while [ $# -gt 0 ] ; do
  case "$1" in
  -rom)
    filename="$(readlink -f "$2")"
    filebase="$(basename "$filename")"
    extension="${filebase##*.}"
    tmppath="$temppath/rom"
    if [ "$extension" == "7z" ]; then
      rm -rf "$tmppath"
      mkdir -p "$tmppath"
      cd "$tmppath"
      tiny7zx x "$filename"
      filename="$tmppath/$(ls)"
      filename_str=${filename// /_}
      mv "$filename" "$filename_str"
      filename=$filename_str
    fi
    options="-rom $filename"
    shift
    ;;
  *) options="$options $1" ;;
  esac
  shift
done

args="$options $cfg_snes_extra_args"
exec /usr/bin/clover-canoe-shvc $args