Go Back   FileForums > Game Backup > PC Games > PC Games - CD/DVD Conversions > Conversion Tutorials
Register FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Search this Thread Display Modes
  #16  
Old 21-11-2014, 19:47
pakrat2k2's Avatar
pakrat2k2 pakrat2k2 is offline
Moderator
 
Join Date: Apr 2005
Location: Canada
Posts: 7,209
Thanks: 3,040
Thanked 9,043 Times in 3,086 Posts
pakrat2k2 is on a distinguished road
Quote:
Originally Posted by hydefromt70s View Post
Ok guys, back to the main thread of this topic ...

In http://fileforums.com/showthread.php?t=96465]this topic I fought with obtaining the best possible compression FC4 game and in the end I managed it

Now here we have a problem. We have a single 12.9GB file size. SFK program split this file into 3 smaller parts so that each of them will fit on one single DVD5's. Splitted files have an extension .part*, so we have the file structure: .arc (uncompressed) -> SREP -> lzma (.bin file) and now after splitting -> .part*


The question is: How to "hook up" all this under the Inno Setup installer, eg Glass Black Box?

Can create a .bat script based on SFK program, which would have the task to join the splitted parts into one whole, and then extract the .bin file by INNO. The only problem is that the splitted files must be in the same folder and eventually everyone will be located on a separate DVD's : / This leads also to the fact that the possibility of launching an external application (eg installation of DX, VCRedist or running .bat script) is possible after unpacking the main files (?): /

Any ideas ??
those 3 temp files will be copied to {app} ( specified game folder location chosen by end user ) Then inno / setup would continue the extraction of the files from those 3 files into {app}. Same thing was accomplished with Watch Dogs by BAMsE, & same will need to be done with FC4. There are 2 files that are HUGE 1 at 5GB, the other 15GB !!! Those files will need to be further split down into separate parts, then they can be reconstructed during installation.
Reply With Quote
Sponsored Links
  #17  
Old 21-11-2014, 20:29
hydefromt70s hydefromt70s is offline
Registered User
 
Join Date: Aug 2012
Location: Poland
Posts: 83
Thanks: 34
Thanked 45 Times in 29 Posts
hydefromt70s is on a distinguished road
Quote:
Originally Posted by pakrat2k2 View Post
those 3 temp files will be copied to {app} ( specified game folder location chosen by end user ) Then inno / setup would continue the extraction of the files from those 3 files into {app}. Same thing was accomplished with Watch Dogs by BAMsE, & same will need to be done with FC4. There are 2 files that are HUGE 1 at 5GB, the other 15GB !!! Those files will need to be further split down into separate parts, then they can be reconstructed during installation.
Ok, I understand the theory, but I don't know how to do this from the technical side

I guess I need to add some code in the INNO script, but my knowledge in this area is still very small

Can you help me and explain exactly how to do that? I would be very very grateful!
Reply With Quote
  #18  
Old 21-11-2014, 20:45
pakrat2k2's Avatar
pakrat2k2 pakrat2k2 is offline
Moderator
 
Join Date: Apr 2005
Location: Canada
Posts: 7,209
Thanks: 3,040
Thanked 9,043 Times in 3,086 Posts
pakrat2k2 is on a distinguished road
it wouldn't be code that needs to be added to script, but maybe a bat file to be run at end of installation that would copy those part files back together into original form & remove those temp files.
Reply With Quote
  #19  
Old 21-11-2014, 21:56
Razor12911's Avatar
Razor12911 Razor12911 is offline
Noob
 
Join Date: Jul 2012
Location: South Africa
Posts: 3,751
Thanks: 2,181
Thanked 11,210 Times in 2,309 Posts
Razor12911 is on a distinguished road
There is only two disadvantage about this file splitting.

When unpacking, twice the original file size will be required.

Another disadvantage would be that all the splitted files should all be present in a folder before merging could take place(unless if TStream is used in an advanced manner). So, if you were planning on making multidisk, you first have to copy all the splits in a directory, then merge all the files into the original archive.(again, more space is required, also time.)
after merging, then after unpacking can take place.

So this is what happens when packing:
Compressing > Splitting

when unpacking(Multidisk)
Regrouping > Merging > Deletion > Unpacking > Deletion

when unpacking(Single Media)
Merging > Unpacking > Deletion

Last edited by Razor12911; 21-11-2014 at 21:59.
Reply With Quote
  #20  
Old 22-11-2014, 15:21
gatosky1620's Avatar
gatosky1620 gatosky1620 is offline
Registered User
 
Join Date: Oct 2011
Location: Perú
Posts: 287
Thanks: 13
Thanked 966 Times in 131 Posts
gatosky1620 is on a distinguished road
Quote:
Originally Posted by Razor12911 View Post
There is only two disadvantage about this file splitting.

When unpacking, twice the original file size will be required.

Another disadvantage would be that all the splitted files should all be present in a folder before merging could take place(unless if TStream is used in an advanced manner). So, if you were planning on making multidisk, you first have to copy all the splits in a directory, then merge all the files into the original archive.(again, more space is required, also time.)
after merging, then after unpacking can take place.

So this is what happens when packing:
Compressing > Splitting

when unpacking(Multidisk)
Regrouping > Merging > Deletion > Unpacking > Deletion

when unpacking(Single Media)
Merging > Unpacking > Deletion
so bro please make a tool
Reply With Quote
The Following User Says Thank You to gatosky1620 For This Useful Post:
pakrat2k2 (22-11-2014)
  #21  
Old 22-11-2014, 23:12
Razor12911's Avatar
Razor12911 Razor12911 is offline
Noob
 
Join Date: Jul 2012
Location: South Africa
Posts: 3,751
Thanks: 2,181
Thanked 11,210 Times in 2,309 Posts
Razor12911 is on a distinguished road
Don't worry I have created it before, just before my PC died. So I know the drill, I just have to make the splitter show a dialog on how far is the split so that a user can understand what is happening and how far the process is.
Reply With Quote
The Following 2 Users Say Thank You to Razor12911 For This Useful Post:
hydefromt70s (23-11-2014), pakrat2k2 (23-11-2014)
  #22  
Old 27-12-2014, 06:37
Razor12911's Avatar
Razor12911 Razor12911 is offline
Noob
 
Join Date: Jul 2012
Location: South Africa
Posts: 3,751
Thanks: 2,181
Thanked 11,210 Times in 2,309 Posts
Razor12911 is on a distinguished road
Gatosky1620: like this?
Attached Images
File Type: jpg 5.JPG (93.6 KB, 155 views)
Reply With Quote
The Following 2 Users Say Thank You to Razor12911 For This Useful Post:
Andrey167 (27-12-2014), Simorq (27-01-2015)
  #23  
Old 27-12-2014, 13:55
gatosky1620's Avatar
gatosky1620 gatosky1620 is offline
Registered User
 
Join Date: Oct 2011
Location: Perú
Posts: 287
Thanks: 13
Thanked 966 Times in 131 Posts
gatosky1620 is on a distinguished road
Quote:
Originally Posted by Razor12911 View Post
Gatosky1620: like this?
this is without slides?
pls add too slides with the option preserve aspect ratio example 1280x720
shadow text perfect thanx bro

Last edited by gatosky1620; 27-12-2014 at 14:00.
Reply With Quote
  #24  
Old 27-12-2014, 14:11
Razor12911's Avatar
Razor12911 Razor12911 is offline
Noob
 
Join Date: Jul 2012
Location: South Africa
Posts: 3,751
Thanks: 2,181
Thanked 11,210 Times in 2,309 Posts
Razor12911 is on a distinguished road
Bro, this is not IC, it is CIU. I added the split/merge function just like you and pakrat asked.
Reply With Quote
  #25  
Old 27-12-2014, 14:35
gatosky1620's Avatar
gatosky1620 gatosky1620 is offline
Registered User
 
Join Date: Oct 2011
Location: Perú
Posts: 287
Thanks: 13
Thanked 966 Times in 131 Posts
gatosky1620 is on a distinguished road
Quote:
Originally Posted by Razor12911 View Post
Bro, this is not IC, it is CIU. I added the split/merge function just like you and pakrat asked.
bro you are awesome
Reply With Quote
  #26  
Old 04-02-2015, 10:18
shuvankardash shuvankardash is offline
Registered User
 
Join Date: Dec 2014
Location: Kolkata
Posts: 7
Thanks: 7
Thanked 0 Times in 0 Posts
shuvankardash is on a distinguished road
Unhappy File is deleted

File is deleted

Quote:
Originally Posted by Andrey167 View Post
deleted

Last edited by pakrat2k2; 04-02-2015 at 13:45.
Reply With Quote
  #27  
Old 04-02-2015, 10:29
pakrat2k2's Avatar
pakrat2k2 pakrat2k2 is offline
Moderator
 
Join Date: Apr 2005
Location: Canada
Posts: 7,209
Thanks: 3,040
Thanked 9,043 Times in 3,086 Posts
pakrat2k2 is on a distinguished road
look for new topic UltraARC is works 1000x better, that's why its been deleted

Last edited by pakrat2k2; 04-02-2015 at 13:46.
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Need for Speed(TM) Hot Pursuit 1(DVD9) x 2(DVD5) mauricioperroni PC Games - CD/DVD Conversions 4 02-05-2011 02:02
MSR and Powerstone2 music change problems MrQ® DC Games 7 31-12-2004 06:55
HELP ME PLZ!!!! Dalvin DC Games 0 02-01-2001 22:15
HELP ME PLZ!!!! Dalvin DC Games 0 02-01-2001 22:14



All times are GMT -7. The time now is 04:09.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2026, vBulletin Solutions Inc.
FileForums @ https://fileforums.com