Search found 8 matches

by agf
Thu Jun 02, 2011 12:00 am
Forum: Other Ports
Topic: ScummVM in JavaScript?
Replies: 12
Views: 16904

Well if you can get Quake 2 running in a browser, I guess it must be possible to get ScummVM online :wink: I'll then be able to play DOTT all day at work, awesome :P That's not really running in a browser, and it's not the original source code. It's running in the Java VM and it's a source port to ...
by agf
Wed Jun 01, 2011 3:38 am
Forum: Other Ports
Topic: ScummVM in JavaScript?
Replies: 12
Views: 16904

The project apparently has built in SDL support, so I wonder if a one-engine build with the simplest engine and all features turned off might work?

Does ScummVM work with LLVM-gcc and/or Clang?

Edit: Yeah, works fine with llvm-gcc.
by agf
Mon May 30, 2011 9:50 pm
Forum: General Discussion
Topic: SCI Compression Tool
Replies: 27
Views: 17063

The CD version of Jones in the Fast Lane also uses the AUDIO001.MAP AUDIO001.002 file structure. I don't have this game, but you could try changing the if (_input.size() == 0x05C9B000) { line in the patch to if (_input.size() == 0x05C...
by agf
Sun May 15, 2011 7:00 am
Forum: General Discussion
Topic: SCI Compression Tool
Replies: 27
Views: 17063

I've posted a patch to the tracker to add this functionality to compress_sci. https://sourceforge.net/tracker/?func=detail&aid=3302317&group_id=37116&atid=418822 EDIT: And I posted a bug report about an issue I spotted while writing the patch. https://sourceforge.net/tracker/?func=detail...
by agf
Sat May 14, 2011 5:48 am
Forum: General Discussion
Topic: SCI Compression Tool
Replies: 27
Views: 17063

OK, I'm using KQ5 now with compressed audio. The python script below rewrites the AUDIO001.002 from raw sounds to WAVE sounds, so compress_sci understands it. It also rewrites AUDIO001.MAP to match the new WAVE formatted file, which compress_sci needs to create an offset translation table. The files...
by agf
Sat May 14, 2011 2:24 am
Forum: General Discussion
Topic: SCI Compression Tool
Replies: 27
Views: 17063

I wrote a python script to convert the KQ5 AUDIO001.002 to a format compress_sci will work on. I just use the AUDIO001.MAP file to run each resource through python's wave module then write them out to one file. compress_sci dropped the file size (using vorbis default settings) from 93,229KB to 35,70...
by agf
Fri May 13, 2011 9:31 am
Forum: General Discussion
Topic: SCI Compression Tool
Replies: 27
Views: 17063

The audio in KQ5CD is in an earlier format, but the compression tool does support it, AFAIK. The digital audio file decoding code can be found in the SCI engine in sci/resource_audio.cpp. Check loadResource(), loadFromAudioVolumeSCI1(), loadFromAudioVolumeSCI11(), readAudioMapSCI1() and readAudioMa...
by agf
Fri May 13, 2011 5:54 am
Forum: General Discussion
Topic: SCI Compression Tool
Replies: 27
Views: 17063

Digging up this old thread because I have a related question. The audio file from KQ5 from the KQ collection is in a different format -- it's not RESOURCE.[AUD|SFX], it's AUDIO001.002 -- but it still has a .MAP file associated with it. It's not recognized by the compression utility. Is this simply u...