Go Back   FileForums > Game Backup > PC Games > PC Games - CD/DVD Conversions > Conversion Tutorials

Reply
 
Thread Tools Display Modes
  #751  
Old 24-05-2017, 13:55
Cesar82's Avatar
Cesar82 Cesar82 is offline
Registered User
 
Join Date: May 2011
Location: Brazil
Posts: 1,038
Thanks: 1,746
Thanked 2,224 Times in 761 Posts
Cesar82 is on a distinguished road
Fixes to CIU

Quote:
Originally Posted by KaktoR View Post
Compiler only contains 1 Installer1.png.
Parsing -> Compressing

Are you sure about that? Can't find a second file in Setup.exe after compiling.

For what? Is it neccessary? I don't understand properly i guess.
From version 2.0 of CIU (All CIU v2) the language obtained with the ActiveLanguage function is always eng.

In the link below contains images with or repeated files and the fixed script (buy with beyond compare to see the differences).
https://mega.nz/#!lAgQTaQS!vuX921KwB...1kq5f6WUDXF9-0

The arc file info in Data[i - 1].Arc[6] is the language to extract the specified ultraArc file.

Sugestion use function to multiples languages to one file:
Code:
function CheckLanguageArc(Lang: String): Boolean;
var
  TmpLang: String;
begin
  Result := False;
  TmpLang := Trim(RemoveQuotes(Lang));
  if TmpLang = '' then begin
    Result := True;
    Exit;
  end;
  if Copy(TmpLang, Length(TmpLang), 1) <> ',' then
    TmpLang := TmpLang + ',';
  while Length(TmpLang) > 0 do begin
    if CompareText(Trim(Copy(TmpLang, 0, Pos(',', TmpLang) - 1)), ActLangShort) = 0 then begin
      Result := True;
      Break;
    end;
    TmpLang := Copy(TmpLang, Pos(',', TmpLang) + 1, Length(TmpLang));
  end;
end;
And use: if CheckLanguageArc(Data[i - 1].Arc[6]) and (ComponentsCheckFA(Data[i - 1].Arc[4])) then

Last edited by Cesar82; 26-05-2017 at 12:00.
Reply With Quote
The Following 3 Users Say Thank You to Cesar82 For This Useful Post:
Behnam2018 (30-01-2020), houcine80 (25-05-2017), Simorq (27-05-2017)
Sponsored Links
  #752  
Old 24-05-2017, 15:00
KaktoR's Avatar
KaktoR KaktoR is offline
Lame User
 
Join Date: Jan 2012
Location: From outer space
Posts: 4,429
Thanks: 1,078
Thanked 7,037 Times in 2,665 Posts
KaktoR is on a distinguished road
Now i understand.

Thank you.

Will update the script in the next days when i got a bit time.
__________________
Haters gonna hate
Reply With Quote
The Following 4 Users Say Thank You to KaktoR For This Useful Post:
Behnam2018 (30-01-2020), mausschieber (24-05-2017), pakrat2k2 (24-05-2017), Simorq (27-05-2017)
  #753  
Old 25-05-2017, 15:43
KaktoR's Avatar
KaktoR KaktoR is offline
Lame User
 
Join Date: Jan 2012
Location: From outer space
Posts: 4,429
Thanks: 1,078
Thanked 7,037 Times in 2,665 Posts
KaktoR is on a distinguished road
Code:
Changelog CIU v2.0.3.8.c beta 1

-Ported hardware info to ISSysInfo.dll (thanks to peterf1999 for the great job)
-Removed duplicate / obsoleete files (thanks to LuisCésar82)
To-do:
-Make reflate work in decompression
-Adding more languages to FreeArc Custom Messages

By the way:
You can use also subtitles on video files. \Setup\SubTitle\SubTitle_lang.srt
Attached Files
File Type: rar CIU2038c beta 1 2017 Special Edition (2017-05-25).rar (12.05 MB, 149 views)
__________________
Haters gonna hate

Last edited by KaktoR; 26-05-2017 at 16:28.
Reply With Quote
The Following 7 Users Say Thank You to KaktoR For This Useful Post:
arkantos7 (26-05-2017), Cesar82 (26-05-2017), kassane (26-05-2017), mausschieber (25-05-2017), omdj (25-05-2017), Simorq (26-05-2017), Stor31 (26-05-2017)
  #754  
Old 25-05-2017, 16:16
KaktoR's Avatar
KaktoR KaktoR is offline
Lame User
 
Join Date: Jan 2012
Location: From outer space
Posts: 4,429
Thanks: 1,078
Thanked 7,037 Times in 2,665 Posts
KaktoR is on a distinguished road
I need all possible language translations for the bellow messages.

Code:
en.Message1=Extracting %1...
en.Message2=Merging %1...
en.Message3=Decoding %1...
en.Message4=%1 was not found.
en.Message5=Please Insert Disc %1 With %2 File
en.Message6=Browse For Required File?
%1 describes Data#.bin
except
en.Message5= %1 describes Disc # and %2 is Data#.bin

For
Albanian
Arabic - houcine80
Bosnian
Chinese (Traditional)
Croatian
Czech
Danish
Dutch
Farsi
Finnish
French - houcine80
German
Greek
Hebrew
Hungarian
Indonesian
Italian
Japanese
Korean
Norwegian
Polish - arkantos7
PortugueseBR - kassane
PortuguesePO
Romanian
Russian
Serbian
Spanish - omdj
Spanish (Mexico) - omdj
Swedish
Thai
Turkish
Ukrainian
Vietnamese
__________________
Haters gonna hate

Last edited by KaktoR; 26-05-2017 at 14:22.
Reply With Quote
The Following 2 Users Say Thank You to KaktoR For This Useful Post:
0xffaded (10-06-2017), Simorq (27-05-2017)
  #755  
Old 25-05-2017, 17:16
omdj's Avatar
omdj omdj is offline
Conversion Designer
 
Join Date: Feb 2008
Location: Land of injustice and evil
Posts: 597
Thanks: 1,644
Thanked 2,829 Times in 449 Posts
omdj is on a distinguished road
Spanish translation

Code:
en.Message1=extrayendo %1...
en.Message2=uniendo %1...
en.Message3=decodificando %1...
en.Message4=%1 no encontrado.
en.Message5=Por favor, inserte el Disco %1 que contiene el archivo %2
en.Message6=Buscar el archivo requerido?
Reply With Quote
The Following 4 Users Say Thank You to omdj For This Useful Post:
houcine80 (26-05-2017), KaktoR (25-05-2017), Razor12911 (31-05-2017), Simorq (26-05-2017)
  #756  
Old 25-05-2017, 17:26
omdj's Avatar
omdj omdj is offline
Conversion Designer
 
Join Date: Feb 2008
Location: Land of injustice and evil
Posts: 597
Thanks: 1,644
Thanked 2,829 Times in 449 Posts
omdj is on a distinguished road
Spanish translation (mexico)

Code:
en.Message1=extrayendo %1...
en.Message2=uniendo %1...
en.Message3=decodificando %1...
en.Message4=%1 no encontrado.
en.Message5=Por favor inserte el Disco %1 que contiene el archivo %2
en.Message6=Buscar el archivo requerido?
Reply With Quote
The Following 4 Users Say Thank You to omdj For This Useful Post:
houcine80 (26-05-2017), KaktoR (25-05-2017), Razor12911 (31-05-2017), Simorq (26-05-2017)
  #757  
Old 26-05-2017, 06:58
kassane's Avatar
kassane kassane is offline
Registered User
 
Join Date: Nov 2011
Location: Somewhere in the World
Posts: 174
Thanks: 578
Thanked 117 Times in 47 Posts
kassane is on a distinguished road
Portuguese-Brazil

Code:
en.Message1=Extraindo %1...
en.Message2=Juntando %1...
en.Message3=Decodificando %1...
en.Message4=%1 não encontrado.
en.Message5=Por favor inserir o Disco %1 com o arquivo %2
en.Message6=Procurar arquivo requerido?
__________________
"There are three things that sages fear... The tormented sea, a moonless night and the wrath of a gentleness man." - The fear of the Sages.
Reply With Quote
The Following 4 Users Say Thank You to kassane For This Useful Post:
houcine80 (26-05-2017), KaktoR (26-05-2017), Razor12911 (31-05-2017), Simorq (26-05-2017)
  #758  
Old 26-05-2017, 14:15
houcine80's Avatar
houcine80 houcine80 is offline
Registered User
 
Join Date: Jul 2013
Location: Save Palestine
Posts: 873
Thanks: 3,107
Thanked 3,912 Times in 570 Posts
houcine80 is on a distinguished road
arabic
Code:
en.Message1=استخراج %1...
en.Message2=دمج %1...
en.Message3=فك %1...
en.Message4=%1 لم يتم العثور عليه.
en.Message5= الرجاء إدراج القرص %1 مع %2 ملف
en.Message6= تصفح للملف المطلوب?
Reply With Quote
The Following 4 Users Say Thank You to houcine80 For This Useful Post:
KaktoR (26-05-2017), omdj (26-05-2017), Razor12911 (31-05-2017), Simorq (26-05-2017)
  #759  
Old 26-05-2017, 14:16
houcine80's Avatar
houcine80 houcine80 is offline
Registered User
 
Join Date: Jul 2013
Location: Save Palestine
Posts: 873
Thanks: 3,107
Thanked 3,912 Times in 570 Posts
houcine80 is on a distinguished road
French

Code:
en.Message1=Extraction %1...
en.Message2=Fusionner %1...
en.Message3=Décodage %1...
en.Message4=%1 n'a pas été trouvé.
en.Message5= Insérez le disque %1 Avec %2 Fichier
en.Message6= Parcourir le fichier requis?
Reply With Quote
The Following 4 Users Say Thank You to houcine80 For This Useful Post:
KaktoR (26-05-2017), omdj (26-05-2017), Razor12911 (31-05-2017), Simorq (26-05-2017)
  #760  
Old 26-05-2017, 14:16
arkantos7 arkantos7 is offline
Registered User
 
Join Date: Jan 2013
Location: Earth
Posts: 11
Thanks: 727
Thanked 8 Times in 5 Posts
arkantos7 is on a distinguished road
Polish

Code:
en.Message1=Wypakowywanie %1...
en.Message2=Łączenie %1...
en.Message3=Dekodowanie %1...
en.Message4=%1 nie został znaleziony.
en.Message5=Proszę włożyć Dysk %1 zawierający plik %2
en.Message6=Przeglądaj w poszukiwaniu wymaganego pliku?
Reply With Quote
The Following 4 Users Say Thank You to arkantos7 For This Useful Post:
houcine80 (26-05-2017), KaktoR (26-05-2017), Razor12911 (31-05-2017), Simorq (26-05-2017)
  #761  
Old 26-05-2017, 14:16
KaktoR's Avatar
KaktoR KaktoR is offline
Lame User
 
Join Date: Jan 2012
Location: From outer space
Posts: 4,429
Thanks: 1,078
Thanked 7,037 Times in 2,665 Posts
KaktoR is on a distinguished road
Code:
################################
###### v2.0.3.8.c beta 2 #######
################################

-Completely reworked ExternalCompressors. Now decompressing reflate is possible again (big thanks to Simorq)
-Removed doubled Ghz from Processor (HW page)
-Translated some UltraArc messages (hopefully more to come). Non-translated languages use english as default as long as no translation is aviable (big thanks to LuisCésar82 for helping me out)
-Fixed FontSize for CPU (HW Page). It's now 6 instead of 7, as intended.
-Small additions to InfoFormPage
-Removed Noodle
-Removed NanoZip


################################
###### v2.0.3.8.c beta 1 #######
################################

-Ported hardware info to ISSysInfo.dll (thanks to peterf1999 for the great job)
-Removed duplicate files (thanks to LuisCésar82)


################################
#########  v2.0.3.8.b  #########
################################

-Added editable folder field to manually type installation dir
-Fixed a bug where using pzlib compression always gives out a -12 crc error code
-Removed WikiPage


################################
#########  v2.0.3.8.a  #########
################################

-Changed collor notation from $BGR to $RGB
-Added ConversionPage= to Setup.ini
-Added ConversionPage and WikiPage to InfoForm
-Added Hebrew (again^^) and updated Indonesian (again^^) (thanks to vollachr and edwinkyr)
Beta 2 is atm in internal testing. Coming soon(tm).

Also a new UltraArc version is in testing. Coming soon(tm).
__________________
Haters gonna hate

Last edited by KaktoR; 26-05-2017 at 19:36.
Reply With Quote
The Following 8 Users Say Thank You to KaktoR For This Useful Post:
arkantos7 (29-05-2017), Grumpy (26-05-2017), houcine80 (26-05-2017), mausschieber (27-05-2017), omdj (26-05-2017), pakrat2k2 (26-05-2017), Razor12911 (31-05-2017), Simorq (27-05-2017)
  #762  
Old 26-05-2017, 23:58
Simorq's Avatar
Simorq Simorq is offline
Registered User
 
Join Date: Mar 2014
Location: Iran
Posts: 642
Thanks: 3,602
Thanked 1,304 Times in 464 Posts
Simorq is on a distinguished road
UltraARC Reflate Edition 2800

Code:
precomp(pZLib)+srep+dict(Lzma2) OK
precomp(pZLib)+srep+lzma OK
precomp(ReflateAPI)+srep+dict(Lzma2) OK
precomp(ReflateAPI)+srep+lzma OK
srep+exe+exe2+delta+lzma OK
precomp(ReflateAPI)+srep+lzp(ZSTD) OK
precomp(pZLib)+srep+lzp(ZSTD) OK
Support CIU 2038c Final
//////////////// Enable ReflateSTD //////////////////////////////////////////
[Records]
ReflateSTD=ON
[Record1]
Type=Freearc_Original
Source={src}\Data1.cab
Output={app}
Disk=1

//////////////// Enable Reflate API //////////////////////////////////////////
[Records]
Precomp=0.38
[Record1]
Type=Freearc_Original
Source={src}\Data1.cab
Output={app}
Disk=1

//////////////// Enable pZLib //////////////////////////////////////////
[Records]
Precomp=0.42
[Record1]
Type=Freearc_Original
Source={src}\Data1.cab
Output={app}
Disk=1

//////////////// Enable pZLib64 //////////////////////////////////////////
[Records]
pZLib64=ON
[Record1]
Type=Freearc_Original
Source={src}\Data1.cab
Output={app}
Disk=1

//////////////// Enable SrepFast (FastInstall=Express Installation (Requires 4+ Gb. RAM)) ///////////////
[Records]
SrepFast=ON
[Record1]
Type=Freearc_Original
Source={src}\Data1.cab
Output={app}
Disk=1

Last edited by Simorq; 02-06-2017 at 16:21.
Reply With Quote
The Following 10 Users Say Thank You to Simorq For This Useful Post:
arkantos7 (29-05-2017), Behnam2018 (30-01-2020), houcine80 (28-05-2017), KaktoR (27-05-2017), kassane (28-05-2017), mausschieber (27-05-2017), omdj (27-05-2017), pakrat2k2 (27-05-2017), Razor12911 (31-05-2017), Stor31 (28-05-2017)
  #763  
Old 27-05-2017, 04:45
KaktoR's Avatar
KaktoR KaktoR is offline
Lame User
 
Join Date: Jan 2012
Location: From outer space
Posts: 4,429
Thanks: 1,078
Thanked 7,037 Times in 2,665 Posts
KaktoR is on a distinguished road
Code:
Changelog CIU v2.0.3.8.c Final

-Completely reworked ExternalCompressors. Now decompressing reflate is possible again (big thanks to Simorq)
-Removed doubled Ghz from Processor (HW page)
-Translated some UltraArc messages (hopefully more to come). Non-translated languages use english as default as long as no translation is aviable (big thanks to LuisCésar82 for helping me out)
-Fixed FontSize for CPU (HW Page). It's now 6 instead of 7, as intended.
-Small additions to InfoFormPage
-Removed Noodle
-Removed NanoZip
Use this archive as standalone folder.
Use this with above UltraARC Reflate Edition 2800 (http://fileforums.com/showpost.php?p...&postcount=765).

Big thanks to all of you who make this possible

And i still need translations http://fileforums.com/showpost.php?p...&postcount=757

Thank you ^^
__________________
Haters gonna hate

Last edited by KaktoR; 28-05-2017 at 13:51.
Reply With Quote
The Following 8 Users Say Thank You to KaktoR For This Useful Post:
houcine80 (27-05-2017), IzeroI (30-05-2017), kassane (27-05-2017), mausschieber (27-05-2017), omdj (27-05-2017), Razor12911 (31-05-2017), Simorq (27-05-2017), Stor31 (28-05-2017)
  #764  
Old 28-05-2017, 07:15
Cesar82's Avatar
Cesar82 Cesar82 is offline
Registered User
 
Join Date: May 2011
Location: Brazil
Posts: 1,038
Thanks: 1,746
Thanked 2,224 Times in 761 Posts
Cesar82 is on a distinguished road
Only 64 bits executables: ReflateAPI.exe and reflate.exe in include folder of CIU 2.0.3.8c.
In UltraARC Reflate Edition 2800 up to 7z.exe, 7z.dll is 64-bit, but this only disturbs whoever creates the files, not in the installation of the game that may be in another system that is not compatible.

If use reflat compression not install game in 32 bits system?

If this information is true, it should have some information for the developers of the conversions that if the game supports 32-bit systems do not use the reflat method.

Last edited by Cesar82; 28-05-2017 at 07:46.
Reply With Quote
  #765  
Old 28-05-2017, 08:26
Simorq's Avatar
Simorq Simorq is offline
Registered User
 
Join Date: Mar 2014
Location: Iran
Posts: 642
Thanks: 3,602
Thanked 1,304 Times in 464 Posts
Simorq is on a distinguished road
Quote:
Originally Posted by LuisCésar82 View Post
Only 64 bits executables: ReflateAPI.exe and reflate.exe in include folder of CIU 2.0.3.8c.
In UltraARC Reflate Edition 2800 up to 7z.exe, 7z.dll is 64-bit, but this only disturbs whoever creates the files, not in the installation of the game that may be in another system that is not compatible.

If use reflat compression not install game in 32 bits system?

If this information is true, it should have some information for the developers of the conversions that if the game supports 32-bit systems do not use the reflat method.
ReflateAPI 32-Bit Problem
reflate.exe At The End Of The Installation Would Hang Setup.

7-Zip [32] 16.04 Use UltraARC

Last edited by Simorq; 28-05-2017 at 08:31.
Reply With Quote
The Following User Says Thank You to Simorq For This Useful Post:
Behnam2018 (30-01-2020)
Reply

Thread Tools
Display Modes

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
BlackBox v2 y_thelastknight Conversion Tutorials 567 25-01-2025 04:52
Useful Dll for Inno Setup users peterf1999 Conversion Tutorials 88 01-12-2017 17:00
Total War Collection - 6xDVD9 [LZMA + INNO SETUP + CIU] REV0 PC Games - CD/DVD Conversions 1 28-06-2015 18:00
Total War Collection - 2xBLURAY [LZMA + INNO SETUP + CIU] REV0 PC Games - CD/DVD Conversions 2 09-01-2013 19:02
Total War Collection - 11xDVD5 [LZMA + INNO SETUP + CIU] REV0 PC Games - CD/DVD Conversions 0 09-01-2013 17:38



All times are GMT -7. The time now is 12:14.


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