3 # a helpful script that scrapes any active game saves from wine's storage
4 # area into a spooling saves folder for archiving.
6 source "$FEISTY_MEOW_SCRIPTS/core/launch_feisty_meow.sh"
8 #we are missing the netcp thing. why????
10 WINE_SOURCE_DIR="$HOME/wine_goods/My Games"
11 SPOOLING_OUTPUT_DIR="$HOME/data/spooling_saves"
13 if [ ! -d "$WINE_SOURCE_DIR" ]; then
14 WINE_SOURCE_DIR="/cygdrive/c/users/fred/My Documents/My Games"
16 if [ ! -d "$WINE_SOURCE_DIR" ]; then
17 echo "Failing to find the game save directories."
21 if [ ! -d "$SPOOLING_OUTPUT_DIR" ]; then
22 mkdir -p "$SPOOLING_OUTPUT_DIR"
23 exit_on_error Creating spooling output directory.
26 # copies the files for a particular game out to a spooling folder.
30 source_dir="$1"; shift
33 if [ -d "$source_dir" ]; then
35 #old cp -v -n "$source_dir"/* "$out_dir"/
36 netcp "$source_dir"/* "$out_dir"/
41 # make the output folders if they don't exist.
42 for i in skyrim fallout_new_vegas fallout_3/Saves oblivion fallout_4/Saves ; do
43 if [ ! -d "$SPOOLING_OUTPUT_DIR/$i" ]; then
44 mkdir -p "$SPOOLING_OUTPUT_DIR/$i"
48 # now run through and copy our save files from the potentially weird locations
53 copyem "skyrim" "$WINE_SOURCE_DIR/Skyrim/Saves" "$SPOOLING_OUTPUT_DIR/skyrim"
55 copyem "fallout new vegas" "$WINE_SOURCE_DIR/FalloutNV/Saves" "$SPOOLING_OUTPUT_DIR/fallout_new_vegas"
57 copyem "fallout 3" "$WINE_SOURCE_DIR/Fallout3/Saves" "$SPOOLING_OUTPUT_DIR/fallout_3/Saves"
59 copyem "oblivion" "$WINE_SOURCE_DIR/Oblivion/Saves" "$SPOOLING_OUTPUT_DIR/oblivion/"
61 copyem "fallout 4" "$WINE_SOURCE_DIR/Fallout4/Saves" "$SPOOLING_OUTPUT_DIR/fallout_4/Saves"