SPY Fox 1: Dry Cereal:Crash on clicking 'start'

Ask for help with ScummVM problems

Moderator: ScummVM Team

Post Reply
5x7
Posts: 15
Joined: Sat May 31, 2008 7:22 pm

SPY Fox 1: Dry Cereal:Crash on clicking 'start'

Post by 5x7 »

In Mac os X port, ver 0.11.1. After linking to a directory on the HD with the four required files, and clicking start, ScummVM abrupty exits. SPY Fox 1: Dry Cereal was recently purchased (I think-it was a gift). The box says "only at Target (the Target bullseye). Could this be a more recent unsupported version, how can you tell? I have eight other games working fine in ScummVM.

Thanks
Kirben
Posts: 421
Joined: Wed Sep 21, 2005 12:15 pm
Location: Melbourne, Victoria, Australia

Post by Kirben »

Sounds like a version of Spy Fox 1 that currently isn't supported, there were many different releases.

Start ScummVM via command line (with debug level 1) and report what it says:
ie scummvm -d1 spyfox
User avatar
clone2727
Retired
Posts: 1611
Joined: Fri Jun 09, 2006 8:23 pm
Location: NJ, USA

Post by clone2727 »

Very interesting. It's online here at target.com.

There's also a Freddi Fish 1 and a Putt Putt Saves the Zoo.

EDIT: They're also available at amazon.com (here, here, and here respectively).
User avatar
sev
ScummVM Lead
Posts: 2304
Joined: Wed Sep 21, 2005 1:06 pm
Contact:

Post by sev »

Yay, more HE versions to chase...


Eugene
5x7
Posts: 15
Joined: Sat May 31, 2008 7:22 pm

Post by 5x7 »

I fished around on the FAQ, and forums and tried running this command:
#!/bin/sh/Applications/ScummVM/ScummVM.app/Contents/MacOS/scummvm -d1 spyfox

I get a window with this near the end:

exit
-bash: !/bin/sh/Applications/ScummVM/ScummVM.app/Contents/MacOS/scummvm: event not found

So event not found. Do you think this is this an issue with the way the command was constructed? Thanks for the effort!
User avatar
eriktorbjorn
ScummVM Developer
Posts: 3558
Joined: Mon Oct 31, 2005 7:39 am

Post by eriktorbjorn »

5x7 wrote: So event not found. Do you think this is this an issue with the way the command was constructed? Thanks for the effort!
No, that message has nothing to do with ScummVM. It's a feature of the command shell (in this case, bash). It keeps track of your command history (the commands you've typed before), and the '!' character can be used to refer to earlier commands.

You can see the command history by typing history. If I know I typed, say, scummvm-0.11.1 --no-aspect-ratio -g3x monkey2 earlier, and I want to do it again, I can simply type !scumm to run the most recent command that started with "scumm". I could also type something like !scumm:s/monkey2/atlantis/ to re-run the command, but with "atlantis" instead of "monkey2".

I never use this myself, because I don't like the feeling of doing something blindly. If I want an earlier command, I can usually just press the 'up arrow' key until I find it. Or press Ctrl-R to search for it.

Back to the original question... If you really typed

#!/bin/sh/Applications/ScummVM/ScummVM.app/Contents/MacOS/scummvm -d1 spyfox

I would have thought bash would have ignored the whole thing, since '#' marks the beginning of a comment. You probably only wanted the thing after "#!/bin/sh", like this:

/Applications/ScummVM/ScummVM.app/Contents/MacOS/scummvm -d1 spyfox

(Assuming that's where ScummVM is.)

In shell scripts, you will usually see a "comment" that starts with "#!" on this first line. This is known as a "shebang", and tells which program is used to run the script, and /bin/sh is the traditional location of the command shell.

(I hope I got at least most of the details right.)
5x7
Posts: 15
Joined: Sat May 31, 2008 7:22 pm

Post by 5x7 »

My Daughter played the game in windows, and I was able to start scummvm/spyfox from a command line in windows. I got the following:

Report this information to scummvm blah blah....

Scummvm gameid: spyfox, file spyfox.he0, MD5 23394c8d29cc63c61313959431a12476
readmaxs(52) Failed to read maxs data!

So, is that a new version? I hope this helps!
[/img]
Kirben
Posts: 421
Joined: Wed Sep 21, 2005 12:15 pm
Location: Melbourne, Victoria, Australia

Post by Kirben »

That particular version of SPY Fox 1 has already been reported and supported, try using a recent daily snapshot of ScummVM 0.12.0svn.
Post Reply