Author Topic: SCI 1.1 & 32 dumper...  (Read 2495 times)

0 Members and 1 Guest are viewing this topic.

Offline MusicallyInspired

SCI 1.1 & 32 dumper...
« on: September 14, 2002, 01:51:07 PM »
ok it extracts....but it says in the readme that all extracted resources doesn't contain plain-file header so none of the files work in any games. if it cant read anything wats the point of the dumper?

i cant even get viewedit to open the views....is there a difference in format? or is it the same problem?

is there any plans to fix this? (if it can be fixed)
« Last Edit: September 14, 2002, 01:53:06 PM by MusicallyInspired »


Brass Lantern Prop Competition

Offline OmerMor

Re:SCI 1.1 & 32 dumper...
« Reply #1 on: September 14, 2002, 03:32:29 PM »
I'm not an SCI expert so I can't give you good answers but I believe most of your questions could be answered in the FreeSCI documentation. It's pretty good and interesting and is also organized nicely.
You can find it here:
http://freesci.linuxgames.com/scihtml/book1.html

Offline MusicallyInspired

Re:SCI 1.1 & 32 dumper...
« Reply #2 on: September 14, 2002, 03:48:58 PM »
yes i found that page today. doesnt answer any questoins for me tho. unless i skipped something.
Brass Lantern Prop Competition

Offline HWM

Re:SCI 1.1 & 32 dumper...
« Reply #3 on: September 14, 2002, 04:02:26 PM »
Hmm... I should have told you that, but I didn't know exactly what you wanted to do with it (and still don't)... A dumper is something else than a decoder...

Anyway, the developer of SCIRESDUMP has an account on this forum, I talked to him once, his username is VAG... Maybe he can explain/answer further questions...

BTW: I do think the view format is different, regardless of the header...

Offline MusicallyInspired

Re:SCI 1.1 & 32 dumper...
« Reply #4 on: September 14, 2002, 04:10:22 PM »
what i was trying to do was extract the sound/view/pic resources and just fool around with them and use them with other games or in the same game and re-arrange them. my main goal tho was to take the sound resources and use them to play in areas like the title screen and make it loop forever so i can record it.

is there a difference between extracting and dumping? i havent got a clue about programming anything. i can get by with scripts and stuff like that in AGI/SCI/AGS games but when it comes to that i have no idea.
Brass Lantern Prop Competition

Offline HWM

Re:SCI 1.1 & 32 dumper...
« Reply #5 on: September 14, 2002, 04:32:36 PM »

what i was trying to do was extract the sound/view/pic resources and just fool around with them and use them with other games or in the same game and re-arrange them. my main goal tho was to take the sound resources and use them to play in areas like the title screen and make it loop forever so i can record it.


Aha... Indeed, That makes SCIRESDUMP quite useless in this case... But regarding your main goal; I think there are easier ways to do that...


is there a difference between extracting and dumping? i havent got a clue about programming anything. i can get by with scripts and stuff like that in AGI/SCI/AGS games but when it comes to that i have no idea.


Well, not much in this case... I personally regard 'dumping' as extracting something (from files, from memory) to a file that needs further processing to make it usable... 'Decoding' makes data usable for something...

Actually, this program does both, but only regarding encryption of the resource files... So it decrypts the resources and the extracts/dumps them...

This probably sounds very odd, since English isn't my native language, but perhaps you'll understand it...

Offline Brian Provinciano

Re:SCI 1.1 & 32 dumper...
« Reply #6 on: September 14, 2002, 06:18:17 PM »
There are no public tools available yet for doing anything with most SCI32 resources. You can only work with ones that are the same format as SCI0 (very few).

There is work by some members of the FreeSCI team on different tools, such as a script disassembler, view/pic/palette viewer, etc. However, they are not finished, and thus, haven't been publicly released.

The key as usual, is patience.

Offline OmerMor

Re:SCI 1.1 & 32 dumper...
« Reply #7 on: September 14, 2002, 07:49:49 PM »
it's hard to combine patience with excitment but we do our best (and we know you do you best too, so keep up the good work!)
8)

Offline kelmer

Re:SCI 1.1 & 32 dumper...
« Reply #8 on: September 15, 2002, 03:55:22 AM »
VAG explained it to me a few weeks ago.

It's true that the program dumps the files without the required header, but you can easily (wll, sort of) add this to the files.

Just create a blank filed and name it "header" (well, name it whatever you want). Edit this file with an hexadecimal editor and add two bytes, being the first one the resource type identifier (i.e. 8F for message) and the second being a 0 byte (00).

Then save the file and open a dos prompt. Type in there:

copy header+resource.msg resource1.msg

and you're done.

You can figure out the resource identifier by sending the dumper output to a txt file (by typing sciresdump nameofresource.map > nameoftxt.txt). Then you will see a "type" column at the beggining of each resource list, followed by a number. Convert this number to hexadecimal and that's it.

i.e

Directory type 0 (view), offs= 1f, len= 198 (68 entries) :

"0" is the identifier, so it will be "00" or "80" in the header file.

By the way, I would really appreciate a Script Editor for SCi32 scripts :)

PS. What are heap files for?


Offline MusicallyInspired

Re:SCI 1.1 & 32 dumper...
« Reply #9 on: September 17, 2002, 07:31:50 PM »
Quote
Just create a blank filed and name it "header" (well, name it whatever you want). Edit this file with an hexadecimal editor and add two bytes, being the first one the resource type identifier (i.e. 8F for message) and the second being a 0 byte (00).

Then save the file and open a dos prompt. Type in there:

copy header+resource.msg resource1.msg

and you're done.

You can figure out the resource identifier by sending the dumper output to a txt file (by typing sciresdump nameofresource.map > nameoftxt.txt). Then you will see a "type" column at the beggining of each resource list, followed by a number. Convert this number to hexadecimal and that's it.

i.e

Directory type 0 (view), offs= 1f, len= 198 (68 entries) :

"0" is the identifier, so it will be "00" or "80" in the header file.

over my head and out of my league ;)

could someone make a kind of program or somethn that does this automatically? im not asking anyone to do it im just throwing out a hypothetical question.

thx for replying tho, guys
Brass Lantern Prop Competition

Offline MusicallyInspired

Re:SCI 1.1 & 32 dumper...
« Reply #10 on: September 18, 2002, 04:25:01 PM »
ok i have decided to have my first experience in hex editing and downloaded a hex editor and i only have one problem. the type resource for sound in SQ5 is '132' and that takes more than one block. am i doing something wrong? am i thinking in the wrong area? i tried doing it anyway with more than 2 blocks but the new file still didnt work in any games.

excuse my newbieness. you've gotta start somewhere...tho it IS a painstaking process.
« Last Edit: September 18, 2002, 05:03:29 PM by MusicallyInspired »
Brass Lantern Prop Competition

Offline MusicallyInspired

Re:SCI 1.1 & 32 dumper...
« Reply #11 on: September 18, 2002, 05:11:54 PM »
ok never mind i got it to work thx for ur help guys! :)
Brass Lantern Prop Competition

Offline dreamweaver

Re:SCI 1.1 & 32 dumper...
« Reply #12 on: September 24, 2002, 07:23:51 AM »
i used sciresdump extract some view from King Quest 6 and added header to them too ..
but now my big problem is i don't have any view editor can work with them .
Please show me the way ..

Offline kelmer

Re:SCI 1.1 & 32 dumper...
« Reply #13 on: September 24, 2002, 11:31:11 AM »
I don't know why but I couldn't manage to get vies to work after adding the header. I put them (unchanged) into the game folder and ended up with several errors. I guess they use a different header pattern or something like that.

Anyway, a SCI32 view editor would be really great...

Offline dreamweaver

Re:SCI 1.1 & 32 dumper...
« Reply #14 on: September 25, 2002, 12:12:38 PM »
i want to know what SCI version of King Quest 6 and Quest For Glory 1,2,3,4 are .
Has any tool can test and show SCI version ?
Please help me ..


SMF 2.0.19 | SMF © 2021, Simple Machines
Simple Audio Video Embedder

Page created in 0.038 seconds with 22 queries.