blob: 7e9f7a785c6dffa9e0d652a85ceda750afa57cd1 (
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
#!/bin/sh
SCRIPT_DIR=`dirname "$0"`
DAPHNE_BIN=/usr/share/daphne.bin
DAPHNE_SHARE=~/.daphne
DAPHNE_DATA=/usr/share/daphne
echo "Singe Launcher : Script dir is $SCRIPT_DIR"
cd "$SCRIPT_DIR"
# point to our linked libs that user may not have
LD_LIBRARY_PATH=$PWD:$LD_LIBRARY_PATH
if [ -z $1 ] ; then
echo "Specify a game to try: timegal"
exit
fi
#strace -o strace.txt \
./$DAPHNE_BIN singe vldp \
-framefile $DAPHNE_SHARE/singe/$1/$1.txt \
-script $DAPHNE_SHARE/singe/$1/$1.singe \
-homedir $DAPHNE_SHARE \
-datadir $DAPHNE_DATA \
-blank_searches \
-min_seek_delay 1000 \
-seek_frames_per_ms 20 \
-sound_buffer 2048 \
-noserversend \
-x 640 \
-y 480
#-bank 0 11111001 \
#-bank 1 00100111 \
EXIT_CODE=$?
if [ "$EXIT_CODE" -ne "0" ] ; then
if [ "$EXIT_CODE" -eq "127" ]; then
echo ""
echo "Daphne failed to start."
echo "This is probably due to a library problem."
echo "Run ./daphne.bin directly to see which libraries are missing."
echo ""
else
echo "DaphneLoader failed with an unknown exit code : $EXIT_CODE."
fi
fi
|