Putting games on your PSP

Subforum for discussion and help with ScummVM's PSP (PlayStation Portable) port

Moderator: ScummVM Team

User avatar
DrMcCoy
ScummVM Developer
Posts: 595
Joined: Sat Dec 17, 2005 1:33 pm
Location: Braunschweig, Germany
Contact:

Post by DrMcCoy »

temporaryscars wrote:So where did I go wrong?
Reading the instructions.
temporaryscars
Posts: 26
Joined: Wed May 21, 2008 10:50 pm

Post by temporaryscars »

DrMcCoy wrote:
temporaryscars wrote:So where did I go wrong?
Reading the instructions.
If you aren't going to contribute, then why are you posting here? I did exactly as he said. Saying "reading the instructions" doesn't really help much. Which part did I get wrong exactly?
User avatar
eriktorbjorn
ScummVM Developer
Posts: 3523
Joined: Mon Oct 31, 2005 7:39 am

Post by eriktorbjorn »

temporaryscars wrote: So where did I go wrong?
Assuming the error message is accurate, it seems to describe it pretty well. It says "Please copy the SPEECH.CLU files from Broken Sword CD1 and CD2 into the "SPEECH" subdirectory"" and "Please copy the music files from Broken Sword CD1 and CD2 into the "MUSIC" subdirectory". A directory is referred to as a folder in some operating systems. You don't seem to have a SPEECH or a MUSIC folder, so you'll have to create them and move the appropriate files into them.

You'll probably find that your MUSIC1 and MUSIC2 folders have some files that appear in both, but in that case they should be identical, or close enough to identical that it makes little difference.
User avatar
DrMcCoy
ScummVM Developer
Posts: 595
Joined: Sat Dec 17, 2005 1:33 pm
Location: Braunschweig, Germany
Contact:

Post by DrMcCoy »

the command prompt wrote: Please copy the SPEECH.CLU files from Broken Sword CD1 and CD2 into the "SPEECH" subdirectory and rename them to SPEECH1.CLU and SPEECH2.CLU

Please copy the music files from Broken Sword CD1 and CD2
into the "MUSIC" subdirectory.
You did neither. Instead, you've got the SPEECH1.CLU and SPEECH2.CLU in the main directory and copied the music into MUSIC1 and MUSIC2.
temporaryscars
Posts: 26
Joined: Wed May 21, 2008 10:50 pm

Post by temporaryscars »

Fair enough. Round 2!

So I did that, and got this:

Image


So now what? That's all gibberish to me.
User avatar
DrMcCoy
ScummVM Developer
Posts: 595
Joined: Sat Dec 17, 2005 1:33 pm
Location: Braunschweig, Germany
Contact:

Post by DrMcCoy »

Type

Code: Select all

compress_sword1 --mp3 .
"--mp3", not "--MP3". It's important.
The ".", because it expects a directory where it can find the SPEECH and MUSIC directories. "." is always the current directory.
clem
Posts: 2159
Joined: Mon Oct 31, 2005 11:14 am

Post by clem »

temporaryscars wrote:Fair enough. Round 2!

So I did that, and got this:

(screenshot)

So now what? That's all gibberish to me.
Which version of the tools are you using? The help screen is slightly different for me with current tools: the parameters expected here are:

compress_sword1 [params] <inputdir>

so I guess you need to run something like

compress_sword1 --mp3 C:\mybs1files

Your tools version might work that way, but I guess it's always recommended to update to a current version (daily SVN download, the tools are in the tools\ subfolder)

hope that helps,
clem
temporaryscars
Posts: 26
Joined: Wed May 21, 2008 10:50 pm

Post by temporaryscars »

DrMcCoy wrote:Type

Code: Select all

compress_sword1 --mp3 .
"--mp3", not "--MP3". It's important.
The ".", because it expects a directory where it can find the SPEECH and MUSIC directories. "." is always the current directory.
Ok, I did that, and I still got the screen I posted in my last post.
User avatar
md5
ScummVM Developer
Posts: 2250
Joined: Thu Nov 03, 2005 9:31 pm
Location: Athens, Greece

Post by md5 »

Did you put the dot in the end?

It's got to be like this:

Code: Select all

compress_sword1 --mp3 .
(note the dot)
temporaryscars
Posts: 26
Joined: Wed May 21, 2008 10:50 pm

Post by temporaryscars »

clem wrote:
temporaryscars wrote:Fair enough. Round 2!

So I did that, and got this:

(screenshot)

So now what? That's all gibberish to me.
Which version of the tools are you using? The help screen is slightly different for me with current tools: the parameters expected here are:

compress_sword1 [params] <inputdir>

so I guess you need to run something like

compress_sword1 --mp3 C:\mybs1files

Your tools version might work that way, but I guess it's always recommended to update to a current version (daily SVN download, the tools are in the tools\ subfolder)

hope that helps,
clem
Well, I got the tools from the downloads section, and it's the only "tools" file available, so I can only assume that they're the most recent.

But yeah, what you posted doesn't really help. I don't know what any of that means.
clem
Posts: 2159
Joined: Mon Oct 31, 2005 11:14 am

Post by clem »

temporaryscars wrote:But yeah, what you posted doesn't really help. I don't know what any of that means.
Sorry to confuse you. In that case I suggest doing what md5 posted and just put a "." after the --mp3
temporaryscars
Posts: 26
Joined: Wed May 21, 2008 10:50 pm

Post by temporaryscars »

md5 wrote:Did you put the dot in the end?

It's got to be like this:

Code: Select all

compress_sword1 --mp3 .
(note the dot)
Yes, I just did and it's still asking me about params.

Image
User avatar
eriktorbjorn
ScummVM Developer
Posts: 3523
Joined: Mon Oct 31, 2005 7:39 am

Post by eriktorbjorn »

temporaryscars wrote: Yes, I just did and it's still asking me about params.
I think the input directory parameter is a fairly new invention for this program, and you probably have an older version. I'd try it without the ".", like you did the first time when it complained abuot the missing SPEECH and MUSIC folders. The --mp3 part still needs to be in lower-case letters, of course.
temporaryscars
Posts: 26
Joined: Wed May 21, 2008 10:50 pm

Post by temporaryscars »

eriktorbjorn wrote:
temporaryscars wrote: Yes, I just did and it's still asking me about params.
I think the input directory parameter is a fairly new invention for this program, and you probably have an older version. I'd try it without the ".", like you did the first time when it complained abuot the missing SPEECH and MUSIC folders. The --mp3 part still needs to be in lower-case letters, of course.
Does the scummVM website not link to the most current files?

Anyway, I did what you said and got this:

Image
User avatar
md5
ScummVM Developer
Posts: 2250
Joined: Thu Nov 03, 2005 9:31 pm
Location: Athens, Greece

Post by md5 »

temporaryscars wrote: Does the scummVM website not link to the most current files?
It does, there is an older stable version (0.11.1) and a newer unstable version (SVN, 0.12.0). You downloaded the stable version tools (version 0.11.1).

The error message you got is self-descriptive: "Please copy the music files from Broken Sword CD1 and CD2 into the "MUSIC" subdirectory"
Post Reply