ISDone

DLL ISDone 0.6 final

Нет прав для скачивания

a--e

Мимокрокодил
a--e а ты раскаментировал строчки
;#define PrecompInside
;#define SrepInside
Да. Естественно. Скриптом не один раз пользовался как шаблоном. Всегда все было ок.

поудалял неинформативные куски
Код:
#define NeedSize "13800000000"

#define NeedMem 512

;#define SecondProgressBar

;#define Components

;#define records

#define facompress

#define PrecompInside
#define SrepInside
;#define MSCInside
#define precomp "0.42"
;#define unrar
;#define XDelta
;#define PackZIP

[Setup]

[Files]
Source: Include\English.ini; DestDir: {tmp}; Flags: dontcopy
Source: Include\unarc.dll; DestDir: {tmp}; Flags: dontcopy
Source: ISDone.dll; DestDir: {tmp}; Flags: dontcopy
#ifdef records
Source: records.inf; DestDir: {tmp}; Flags: dontcopy
#endif

#ifdef PrecompInside
Source: Include\CLS-precomp.dll; DestDir: {tmp}; Flags: dontcopy
Source: Include\packjpg_dll.dll; DestDir: {tmp}; Flags: dontcopy
Source: Include\packjpg_dll1.dll; DestDir: {tmp}; Flags: dontcopy
Source: Include\precomp.exe; DestDir: {tmp}; Flags: dontcopy
Source: Include\zlib1.dll; DestDir: {tmp}; Flags: dontcopy
#endif
#ifdef SrepInside
Source: Include\CLS-srep.dll; DestDir: {tmp}; Flags: dontcopy
#endif
#ifdef MSCInside
Source: Include\CLS-MSC.dll; DestDir: {tmp}; Flags: dontcopy
#endif
#ifdef facompress
Source: Include\facompress.dll; DestDir: {tmp}; Flags: dontcopy
#endif
#ifdef precomp
  #if precomp == "0.38"
  Source: Include\precomp038.exe; DestDir: {tmp}; Flags: dontcopy
  #else
    #if precomp == "0.4"
    Source: Include\precomp040.exe; DestDir: {tmp}; Flags: dontcopy
    #else
      #if precomp == "0.41"
      Source: Include\precomp041.exe; DestDir: {tmp}; Flags: dontcopy
      #else
        #if precomp == "0.42"
        Source: Include\precomp042.exe; DestDir: {tmp}; Flags: dontcopy
        #else
        Source: Include\precomp038.exe; DestDir: {tmp}; Flags: dontcopy
        Source: Include\precomp040.exe; DestDir: {tmp}; Flags: dontcopy
        Source: Include\precomp041.exe; DestDir: {tmp}; Flags: dontcopy
        Source: Include\precomp042.exe; DestDir: {tmp}; Flags: dontcopy
        #endif
      #endif
    #endif
  #endif
#endif
#ifdef unrar
Source: Include\Unrar.dll; DestDir: {tmp}; Flags: dontcopy
#endif
#ifdef XDelta
Source: Include\XDelta3.dll; DestDir: {tmp}; Flags: dontcopy
#endif
#ifdef PackZIP
Source: Include\7z.dll; DestDir: {tmp}; Flags: dontcopy
Source: Include\packZIP.exe; DestDir: {tmp}; Flags: dontcopy
#endif

[UninstallDelete]
Type: filesandordirs; Name: {app}


Code]
const
  PCFonFLY=true;
  notPCFonFLY=false;
var
 WelcomeLabel1,WelcomeLabel2,FinishedHeadingLabel,RunLabel,
   FinishedLabel:TLabel;
  LabelPct1,LabelCurrFileName,LabelTime1,LabelTime2,LabelTime3: TLabel;
  ISDoneProgressBar1: TNewProgressBar;
#ifdef SecondProgressBar
  LabelPct2: TLabel;
  ISDoneProgressBar2:TNewProgressBar;
#endif
  MyCancelButton: TButton;
  ISDoneCancel:integer;
  ISDoneError:boolean;
  PCFVer:double;

type
  TCallback = function (OveralPct,CurrentPct: integer;CurrentFile,TimeStr1,TimeStr2,TimeStr3:PAnsiChar): longword;

function WrapCallback(callback:TCallback; paramcount:integer):longword;external 'wrapcallback@files:ISDone.dll stdcall delayload';

function ISArcExtract(CurComponent:Cardinal; PctOfTotal:double; InName, OutPath, ExtractedPath: AnsiString; DeleteInFile:boolean; Password, CfgFile, WorkPath: AnsiString; ExtractPCF: boolean ):boolean; external 'ISArcExtract@files:ISDone.dll stdcall delayload';
function IS7ZipExtract(CurComponent:Cardinal; PctOfTotal:double; InName, OutPath: AnsiString; DeleteInFile:boolean; Password: AnsiString):boolean; external 'IS7zipExtract@files:ISDone.dll stdcall delayload';
function ISRarExtract(CurComponent:Cardinal; PctOfTotal:double; InName, OutPath: AnsiString; DeleteInFile:boolean; Password: AnsiString):boolean; external 'ISRarExtract@files:ISDone.dll stdcall delayload';
function ISPrecompExtract(CurComponent:Cardinal; PctOfTotal:double; InName, OutFile: AnsiString; DeleteInFile:boolean):boolean; external 'ISPrecompExtract@files:ISDone.dll stdcall delayload';
function ISSRepExtract(CurComponent:Cardinal; PctOfTotal:double; InName, OutFile: AnsiString; DeleteInFile:boolean):boolean; external 'ISSrepExtract@files:ISDone.dll stdcall delayload';
function ISxDeltaExtract(CurComponent:Cardinal; PctOfTotal:double; minRAM,maxRAM:integer; InName, DiffFile, OutFile: AnsiString; DeleteInFile:boolean):boolean; external 'ISxDeltaExtract@files:ISDone.dll stdcall delayload';
function ISPackZIP(CurComponent:Cardinal; PctOfTotal:double; InName, OutFile: AnsiString;ComprLvl:integer; DeleteInFile:boolean):boolean; external 'ISPackZIP@files:ISDone.dll stdcall delayload';
function ShowChangeDiskWindow(Text, DefaultPath, SearchFile:AnsiString):boolean; external 'ShowChangeDiskWindow@files:ISDone.dll stdcall delayload';

function Exec2 (FileName, Param: PAnsiChar;Show:boolean):boolean; external 'Exec2@files:ISDone.dll stdcall delayload';
function ISFindFiles(CurComponent:Cardinal; FileMask:AnsiString; var ColFiles:integer):integer; external 'ISFindFiles@files:ISDone.dll stdcall delayload';
function ISPickFilename(FindHandle:integer; OutPath:AnsiString; var CurIndex:integer; DeleteInFile:boolean):boolean; external 'ISPickFilename@files:ISDone.dll stdcall delayload';
function ISGetName(TypeStr:integer):PAnsichar; external 'ISGetName@files:ISDone.dll stdcall delayload';
function ISFindFree(FindHandle:integer):boolean; external 'ISFindFree@files:ISDone.dll stdcall delayload';
function ISExec(CurComponent:Cardinal; PctOfTotal,SpecifiedProcessTime:double; ExeName,Parameters,TargetDir,OutputStr:AnsiString;Show:boolean):boolean; external 'ISExec@files:ISDone.dll stdcall delayload';

function SrepInit(TmpPath:PAnsiChar;VirtMem,MaxSave:Cardinal):boolean; external 'SrepInit@files:ISDone.dll stdcall delayload';
function PrecompInit(TmpPath:PAnsiChar;VirtMem:cardinal;PrecompVers:single):boolean; external 'PrecompInit@files:ISDone.dll stdcall delayload';
function FileSearchInit(RecursiveSubDir:boolean):boolean; external 'FileSearchInit@files:ISDone.dll stdcall delayload';
function ISDoneInit(RecordFileName:AnsiString; TimeType,Comp1,Comp2,Comp3:Cardinal; WinHandle, NeededMem:longint; callback:TCallback):boolean; external 'ISDoneInit@files:ISDone.dll stdcall';
function ISDoneStop:boolean; external 'ISDoneStop@files:ISDone.dll stdcall';
function ChangeLanguage(Language:AnsiString):boolean; external 'ChangeLanguage@files:ISDone.dll stdcall delayload';
function SuspendProc:boolean; external 'SuspendProc@files:ISDone.dll stdcall';
function ResumeProc:boolean; external 'ResumeProc@files:ISDone.dll stdcall';

function FindWindow(lpClassName, lpWindowName: PAnsiChar): HWND; external 'FindWindowA@user32.dll stdcall';
function EnableWindow(hWnd: HWND; bEnable: BOOL): BOOL; external 'EnableWindow@user32.dll stdcall';

function FindWindowByName(Text: PAnsiChar): HWND;
begin
  Result:= FindWindow('#32770', ExpandConstant(Text))
end;

function ProgressCallback(OveralPct,CurrentPct: integer;CurrentFile,TimeStr1,TimeStr2,TimeStr3:PAnsiChar): longword;
var msgwnd: HWND;
begin
  msgwnd:= FindWindowByName('ISDone.dll');
  if msgwnd <> 0 then EnableWindow(wizardform.handle, false) else EnableWindow(wizardform.handle, true);
  if OveralPct<=1000 then ISDoneProgressBar1.Position := OveralPct;
  if msgwnd = 0 then LabelPct1.Caption := IntToStr(OveralPct div 10)+'.'+chr(48 + OveralPct mod 10)+'%' else LabelPct1.Caption:= '0%'
#ifdef SecondProgressBar
  ;if CurrentPct<=1000 then ISDoneProgressBar2.Position := CurrentPct;
  if msgwnd = 0 then LabelPct2.Caption := IntToStr(CurrentPct div 10)+'.'+chr(48 + CurrentPct mod 10)+'%' else LabelPct2.Caption:= '0%'
#endif
  ;if msgwnd = 0 then LabelCurrFileName.Caption:=ExpandConstant('{cm:ExtractedFile} ')+MinimizePathName(CurrentFile, LabelCurrFileName.Font, LabelCurrFileName.Width-ScaleX(100)) else LabelCurrFileName.Caption:= ExpandConstant('{cm:ScanFile}');

  Result := ISDoneCancel;
end;

procedure BevelLabelClick(Sender: TObject);
var ErrorCode: Integer;
begin
ShellExec('open','http://eltracker.es','', '', SW_SHOW, ewNoWait, ErrorCode)
end;

 procedure InitializeWizard();
 begin
  RedesignWizardForm;
  begin
   WizardForm.WelcomeLabel1.Hide;
   WizardForm.WelcomeLabel2.Hide;
   WizardForm.PageNameLabel.Hide;
   WizardForm.PageDescriptionLabel.Hide;
   WizardForm.FinishedHeadingLabel.Hide;
   WizardForm.FinishedLabel.Hide;
 // низнаю почему, но Hide не действует. Поэтому просто уменьшил размер
   WizardForm.RunList.Height := 0;
   WizardForm.RunList.Width := 0;

       WizardForm.WizardBitmapImage.Align:=true;
       WizardForm.WizardBitmapImage2.Align:=true;
       WizardForm.WizardSmallBitmapImage.Align:=true;

   WelcomeLabel1:=TLabel.Create(WizardForm);
   WelcomeLabel1.Left:=ScaleX(150);
   WelcomeLabel1.Top := ScaleY(15);
   WelcomeLabel1.Width := ScaleX(320);
   WelcomeLabel1.Height := ScaleY(75);
   WelcomeLabel1.AutoSize := False;
   WelcomeLabel1.WordWrap := True;
   WelcomeLabel1.Font.Color := clWhite;
 // здесь можно поиграть шрифтом
 //  WelcomeLabel1.Font.Style := [fsBold];
 //  WelcomeLabel1.Font.Name:='MS Sans Serif';
   WelcomeLabel1.Font.Size := 14;
   WelcomeLabel1.Transparent := True;
   WelcomeLabel1.Parent := WizardForm.WelcomePage;

       WelcomeLabel2:=TLabel.Create(WizardForm);
       WelcomeLabel2.Left := ScaleX(150);
       WelcomeLabel2.Top := ScaleY(90);
       WelcomeLabel2.Width := ScaleX(320);
       WelcomeLabel2.Height := ScaleY(200);
       WelcomeLabel2.AutoSize := False;
       WelcomeLabel2.WordWrap := True;
       WelcomeLabel2.Font.Color := clWhite;
       WelcomeLabel2.Font.Size := 8;
       WelcomeLabel2.Transparent := True;
       WelcomeLabel2.Parent := WizardForm.WelcomePage;

   FinishedHeadingLabel:=TLabel.Create(WizardForm);
   FinishedHeadingLabel.Left := ScaleX(150);
   FinishedHeadingLabel.Top := ScaleY(15);
   FinishedHeadingLabel.Width := ScaleX(320);
   FinishedHeadingLabel.Height := ScaleY(75);
   FinishedHeadingLabel.AutoSize := False;
   FinishedHeadingLabel.WordWrap := True;
   FinishedHeadingLabel.Font.Color := clWhite;
 // здесь тоже можно поиграть шрифтом
 //  FinishedHeadingLabel.Font.Style := [fsBold];
 //  FinishedHeadingLabel.Font.Name:='MS Sans Serif';
   FinishedHeadingLabel.Font.Size := 14;
   FinishedHeadingLabel.Transparent := True;
   FinishedHeadingLabel.Parent := WizardForm.FinishedPage;

       FinishedLabel:=TLabel.Create(WizardForm);
       FinishedLabel.Left := ScaleX(150);
       FinishedLabel.Top := ScaleY(90);
       FinishedLabel.Width := ScaleX(320);
       FinishedLabel.Height := ScaleY(200);
       FinishedLabel.AutoSize := False;
       FinishedLabel.WordWrap := True;
       FinishedLabel.Font.Color := clWhite;
       FinishedLabel.Font.Size := 8;
       FinishedLabel.Transparent := True;
       FinishedLabel.Parent := WizardForm.FinishedPage;

with WizardForm do begin
with BeveledLabel do begin
OnClick:=@BevelLabelClick;
Font.Color:=clBlue;
Enabled:=True;
Cursor:=crHand;
end;
end;
end;
 end;

procedure CancelButtonOnClick(Sender: TObject);
begin
  SuspendProc;
  if MsgBox(SetupMessage(msgExitSetupMessage), mbConfirmation, MB_YESNO) = IDYES then ISDoneCancel:=1;
  ResumeProc;
end;

procedure HideControls;
begin
  WizardForm.FileNamelabel.Hide;
  ISDoneProgressBar1.Hide;
  LabelPct1.Hide;
  LabelCurrFileName.Hide;
  LabelTime1.Hide;
  LabelTime2.Hide;
  MyCancelButton.Hide;
#ifdef SecondProgressBar
  ISDoneProgressBar2.Hide;
  LabelPct2.Hide;
#endif
end;

procedure CreateControls;
var PBTop:integer;
begin
  PBTop:=ScaleY(50);
  ISDoneProgressBar1 := TNewProgressBar.Create(WizardForm);
  with ISDoneProgressBar1 do begin
    Parent   := WizardForm.InstallingPage;
    Height   := WizardForm.ProgressGauge.Height;
    Left     := ScaleX(0);
    Top      := PBTop;
    Width    := ScaleX(365);
    Max      := 1000;
  end;
  LabelPct1 := TLabel.Create(WizardForm);
  with LabelPct1 do begin
    Parent    := WizardForm.InstallingPage;
    AutoSize  := False;
    Left      := ISDoneProgressBar1.Width+ScaleX(5);
    Top       := ISDoneProgressBar1.Top + ScaleY(2);
    Width     := ScaleX(80);
  end;
  LabelCurrFileName := TLabel.Create(WizardForm);
  with LabelCurrFileName do begin
    Parent   := WizardForm.InstallingPage;
    AutoSize := False;
    Width    := ISDoneProgressBar1.Width+ScaleX(30);
    Left     := ScaleX(0);
    Top      := ScaleY(30);
  end;
#ifdef SecondProgressBar
  PBTop:=PBTop+ScaleY(25);
  ISDoneProgressBar2 := TNewProgressBar.Create(WizardForm);
  with ISDoneProgressBar2 do begin
    Parent   := WizardForm.InstallingPage;
    Left     := ScaleX(0);
    Top      := PBTop+ScaleY(8);
    Width    := ISDoneProgressBar1.Width;
    Max      := 1000;
    Height   := WizardForm.ProgressGauge.Height;
  end;
  LabelPct2 := TLabel.Create(WizardForm);
  with LabelPct2 do begin
    Parent    := WizardForm.InstallingPage;
    AutoSize  := False;
    Left      := ISDoneProgressBar2.Width+ScaleX(5);
    Top       := ISDoneProgressBar2.Top + ScaleY(2);
    Width     := ScaleX(80);
  end;
#endif
  LabelTime1 := TLabel.Create(WizardForm);
  with LabelTime1 do begin
    Parent   := WizardForm.InstallingPage;
    AutoSize := False;
    Width    := ISDoneProgressBar1.Width div 2;
    Left     := ScaleX(0);
    Top      := PBTop + ScaleY(35);
  end;
  LabelTime2 := TLabel.Create(WizardForm);
  with LabelTime2 do begin
    Parent   := WizardForm.InstallingPage;
    AutoSize := False;
    Width    := LabelTime1.Width+ScaleX(40);
    Left     := ISDoneProgressBar1.Width div 2;
    Top      := LabelTime1.Top;
  end;
  LabelTime3 := TLabel.Create(WizardForm);
  with LabelTime3 do begin
    Parent   := WizardForm.FinishedPage;
    AutoSize := False;
    Width    := 300;
    Left     := 180;
    Top      := 200;
  end;
  MyCancelButton:=TButton.Create(WizardForm);
  with MyCancelButton do begin
    Parent:=WizardForm;
    Width:=ScaleX(135);
    Caption:=ExpandConstant('{cm:CancelButton}');
    Left:=ScaleX(360);
    Top:=WizardForm.cancelbutton.top;
    OnClick:=@CancelButtonOnClick;
  end;
end;

Procedure CurPageChanged(CurPageID: Integer);
Begin
begin
   WelcomeLabel1.Caption := WizardForm.WelcomeLabel1.Caption;
   WelcomeLabel2.Caption := WizardForm.WelcomeLabel2.Caption;
   FinishedHeadingLabel.Caption := WizardForm.FinishedHeadingLabel.Caption;
   FinishedLabel.Caption := WizardForm.FinishedLabel.Caption;
 // здесь придётся вручную вводить требуемый текст
  // RunLabel.Caption := 'Запустить программу';



  if (CurPageID = wpFinished) and ISDoneError then
  begin
    LabelTime3.Hide;
    WizardForm.Caption:= ExpandConstant('{cm:Error}');
    WizardForm.FinishedLabel.Font.Color:= clRed;
    WizardForm.FinishedLabel.Caption:= SetupMessage(msgSetupAborted) ;
  end;
end;
 end;
function CheckError:boolean;
begin
  result:= not ISDoneError;
end;

procedure CurStepChanged(CurStep: TSetupStep);
var Comps1,Comps2,Comps3, TmpValue:cardinal;
    FindHandle1,ColFiles1,CurIndex1,tmp:integer;
    ExecError:boolean;
    InFilePath,OutFilePath,OutFileName:PAnsiChar;
begin
  if CurStep = ssInstall then begin  //Если необходимо, можно поменять на ssPostInstall
    WizardForm.ProgressGauge.Hide;
    WizardForm.CancelButton.Hide;
    CreateControls;
    WizardForm.StatusLabel.Caption:=ExpandConstant('{cm:Extracted}');
    ISDoneCancel:=0;

// Распаковка всех необходимых файлов в папку {tmp}.

ExtractTemporaryFile('unarc.dll');

#ifdef PrecompInside
ExtractTemporaryFile('CLS-precomp.dll');
ExtractTemporaryFile('packjpg_dll.dll');
ExtractTemporaryFile('packjpg_dll1.dll');
ExtractTemporaryFile('precomp.exe');
ExtractTemporaryFile('zlib1.dll');
#endif
#ifdef SrepInside
ExtractTemporaryFile('CLS-srep.dll');
#endif
#ifdef MSCInside
ExtractTemporaryFile('CLS-MSC.dll');
#endif
#ifdef facompress
    ExtractTemporaryFile('facompress.dll'); //ускоряет распаковку .arc архивов.
#endif
#ifdef records
    ExtractTemporaryFile('records.inf');
#endif
#ifdef precomp
  #if precomp == "0.38"
    ExtractTemporaryFile('precomp038.exe');
  #else
    #if precomp == "0.4"
      ExtractTemporaryFile('precomp040.exe');
    #else
      #if precomp == "0.41"
        ExtractTemporaryFile('precomp041.exe');
      #else
        #if precomp == "0.42"
          ExtractTemporaryFile('precomp042.exe');
        #else
          ExtractTemporaryFile('precomp038.exe');
          ExtractTemporaryFile('precomp040.exe');
          ExtractTemporaryFile('precomp041.exe');
          ExtractTemporaryFile('precomp042.exe');
        #endif
      #endif
    #endif
  #endif
#endif
#ifdef unrar
    ExtractTemporaryFile('Unrar.dll');
#endif
#ifdef XDelta
    ExtractTemporaryFile('XDelta3.dll');
#endif
#ifdef PackZIP
    ExtractTemporaryFile('7z.dll');
    ExtractTemporaryFile('PackZIP.exe');
#endif

    ExtractTemporaryFile('English.ini');

// Подготавливаем переменную, содержащую всю информацию о выделенных компонентах для ISDone.dll
// максимум 96 компонентов.
    Comps1:=0; Comps2:=0; Comps3:=0;
#ifdef Components
    TmpValue:=1;
    if IsComponentSelected('text\rus') then Comps1:=Comps1+TmpValue;     //компонент 1
    TmpValue:=TmpValue*2;
    if IsComponentSelected('text\eng') then Comps1:=Comps1+TmpValue;     //компонент 2
    TmpValue:=TmpValue*2;
    if IsComponentSelected('voice\rus') then Comps1:=Comps1+TmpValue;    //компонент 3
    TmpValue:=TmpValue*2;
    if IsComponentSelected('voice\eng') then Comps1:=Comps1+TmpValue;    //компонент 4
//    .....
// см. справку
#endif

#ifdef precomp
  PCFVer:={#precomp};
#else
  PCFVer:=0;
#endif
    ISDoneError:=true;
    if ISDoneInit(ExpandConstant('{src}\records.inf'), $F777, Comps1,Comps2,Comps3, MainForm.Handle, {#NeedMem}, @ProgressCallback) then begin
      repeat
//        ChangeLanguage('English');
        if not SrepInit('',512,0) then break;
        if not PrecompInit('',128,PCFVer) then break;
        if not FileSearchInit(true) then break;


         
        if not ISArcExtract ( 0, 30, ExpandConstant('{src}\data-1.bin'), ExpandConstant('{app}\Data'), '', false, '', '', ExpandConstant('{app}'), notPCFonFLY {PCFonFLY}) then break;
        if not ISArcExtract ( 0, 20, ExpandConstant('{src}\data-3.bin'), ExpandConstant('{app}'), '', false, '', '', ExpandConstant('{app}'), notPCFonFLY {PCFonFLY}) then break;
        if not ISArcExtract ( 0, 20, ExpandConstant('{src}\data-2.bin'), ExpandConstant('{app}\Data'), '', false, '', '', ExpandConstant('{app}'), notPCFonFLY {PCFonFLY}) then break;
        if not ISArcExtract ( 0, 30, ExpandConstant('{src}\data-4.bin'), ExpandConstant('{app}\Data'), '', false, '', '', ExpandConstant('{app}'), notPCFonFLY {PCFonFLY}) then break;



       //    далее находятся закомментированые примеры различных функций распаковки (чтобы каждый раз не лазить в справку за примерами)
(*
        if not ISArcExtract    ( 0, 0, ExpandConstant('{src}\arc.arc'), ExpandConstant('{app}\'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}\'), notPCFonFLY{PCFonFLY}) then break;
        if not IS7ZipExtract   ( 0, 0, ExpandConstant('{src}\CODMW2.7z'), ExpandConstant('{app}\data1'), false, '') then break;
        if not ISRarExtract    ( 0, 0, ExpandConstant('{src}\data_*.rar'), ExpandConstant('{app}'), false, '') then break;
        if not ISSRepExtract   ( 0, 0, ExpandConstant('{app}\data1024_1024.srep'),ExpandConstant('{app}\data1024.arc'), true) then break;
        if not ISPrecompExtract( 0, 0, ExpandConstant('{app}\data.pcf'),    ExpandConstant('{app}\data.7z'), true) then break;
        if not ISxDeltaExtract ( 0, 0, 0, 640, ExpandConstant('{app}\in.pcf'), ExpandConstant('{app}\*.diff'),   ExpandConstant('{app}\out.dat'), false) then break;
        if not ISPackZIP       ( 0, 0, ExpandConstant('{app}\1a1\*'), ExpandConstant('{app}\1a1.pak'), 2, false ) then break;
        if not ISExec          ( 0, 0, 0, ExpandConstant('{tmp}\Arc.exe'), ExpandConstant('x -o+ "{src}\001.arc" "{app}\"'), ExpandConstant('{tmp}'), '...',false) then break;
        if not ShowChangeDiskWindow ('Пожалуйста, вставьте второй диск и дождитесь его инициализации.', ExpandConstant('{src}'),'CODMW_2.arc') then break;

//    распаковка группы файлов посредством внешнего приложения

        FindHandle1:=ISFindFiles(0,ExpandConstant('{app}\*.ogg'),ColFiles1);
        ExecError:=false;
        while not ExecError and ISPickFilename(FindHandle1,ExpandConstant('{app}\'),CurIndex1,true) do begin
          InFilePath:=ISGetName(0);
          OutFilePath:=ISGetName(1);
          OutFileName:=ISGetName(2);
          ExecError:=not ISExec(0, 0, 0, ExpandConstant('{tmp}\oggdec.exe'), '"'+InFilePath+'" -w "'+OutFilePath+'"',ExpandConstant('{tmp}'),OutFileName,false);
        end;
        ISFindFree(FindHandle1);
        if ExecError then break;
*)

        ISDoneError:=false;
      until true;
      EnableWindow(wizardform.handle, true);
      ISDoneStop;
    end;
    HideControls;
    WizardForm.CancelButton.Visible:=true;
    WizardForm.CancelButton.Enabled:=false;
  end;
  if (CurStep=ssPostInstall) and ISDoneError then begin
    Exec2(ExpandConstant('{uninstallexe}'), '/VERYSILENT', false);
  end;
end;
 

vint56

Ветеран
Проверенный
a--e уменьши размер для упаковки d1000m на d512m
зачем столько памяти и что за игра если для себя то ладно но если выкладывать не у всех бывает столько памяти 1 только lzma но там еще и srep и precomp плюс 512 и 128
и смени ник а то забанят за неадекватный ник
 
Последнее редактирование:
  • Like
Реакции: a--e

nik1967

Old Men
Проверенный
Пакую так:
arc.exe a -ep1 -dses --dirs -s; -lc- -di -i2 -r -w\. -mprecomp+srep:m3f:a1:l512+lzma:a1:mfbt4:d1000m:fb128:mc65536:lc8 data1.arc pack1\*
Булат Зиганшин написал(а):
это ты зря
lzma требует непрерывный блок памяти для распаковки
т.е. на многих маишнах с 32-битной виндой такое не поставится
ну вот мегабайт 300 вполне надёжно.
 
Последнее редактирование:

ExPlayer

Старожил
Люди, подскажите, пожалуйста. Как правильно сжимать файлы, что бы был наименьший размер... А то у меня ничего не получается, я уже 3-й день пытаюсь сжать 2 файла (~ по 500Мб каждый), но ничего не получается. Через 7Zip пробовал сжимать и через FreeArc пробовал и в том и в другом сулчае степень сжатия 100%. Может я что-то не правильно делаю, что лучше всего сжимает FreeArc или 7Zip.

P.S. я новичок в этих делах, прошу сильно тапками не кидаться :)
P.P.S. извиняюсь, если не в ту тему написал.
 
Последнее редактирование:

Shift85

Старожил
ExPlayer, Так попробуй скачай архив распакуй куда нибудь в папку packeddata положи файлы какие необходимо сжать далее запусти батник после выполнения в папке data будет лежать готовый архив...;)

http://rghost.ru/52854228
 

ExPlayer

Старожил
Shift85, спасибо, большое. А подскажи, пожалуйста, за что в батнике отвечают вот эти значения:
"d300m" и "mc1000", если не сложно :)
 
Последнее редактирование:

Shift85

Старожил
ExPlayer, Это размер словаря, d300m= 300*10.5 = 3100 мб - т.е. столько оперативной памяти потребуется для упаковки данных в алгоритме LZMA, для распаковки же потребуется 300мб +- 50.

А это mc1000 хз...

Кстати глянь Документацию на FreeArc http://freearc.sourceforge.net/rus/FreeArc040-rus.htm#_Toc185595017

там все расписано...;)
 
Последнее редактирование:

ExPlayer

Старожил
Shift85, понятно, спасибо еще раз :) буду дальше эксперементировать :)

Что-то я не фига не могу понять... как упакованный архив может "весить" больше самого файла?! :o

Сейчас попробовал сжать файл (размер 502Мб), но у меня размер самого архива стал 508Мб.

Вот код батника:
Код:
start /wait arc.exe a -ep1 -dses --dirs -s; -lc- -di -i2 -r -m=lzma:a1:mfbt4:d128m:fb128:mc1000:lc8 data\data-1.arc packeddata\*

pause
 
Последнее редактирование:

vint56

Ветеран
Проверенный
ExPlayer
Устанавливает число циклов (проходов) для средства поиска соответствия. Оно может быть в диапазоне от 0 до 1000000000. Значение по умолчанию - (16 + число_быстрых_байтов / 2) для средств поиска соответствия BT* и (8 + число_быстрых_байтов / 4) для средства поиска соответствия HC4. Если Вы определите mc=0, то LZMA будет использовать значение по умолчанию. Обычно большое число дает немного лучшую степень сжатия и более медленный процесс сжатия. Например, mf=HC4 и mc=10000 могут обеспечить почти ту же самую степень сжатия как mf=BT4.
 

ExPlayer

Старожил
Доброго времени суток. В чем может быть проблема:


Т.е. пишет, что идет распаковка файлов, но при этом ничего не распаковывает. При компиляции никаких проблем не было.

arc.exe a -w.\ -ep1 -dses --dirs -s; -lc- -di -i2 -r "-hp123456" -msrep:m5f:a1:l100+lzma:a1:mfbt4:d300m:fb273:mc99999999:lc8:lp4:pb4 data-1.bin packeddata\*

if not ISArcExtract ( 0, 0, ExpandConstant('{src}\data1.bin'), ExpandConstant('{app}\Pack'), '', false, '', '', ExpandConstant('{app}\Pack'), notPCFonFLY {PCFonFLY}) then break;
if not ISArcExtract ( 0, 0, ExpandConstant('{src}\data2.bin'), ExpandConstant('{app}\Pack'), '', false, '', '', ExpandConstant('{app}\Pack'), notPCFonFLY {PCFonFLY}) then break;

Во время распаковки также никаких ошибок, но ползунок (ProgressBar) не двигается и не показывается сколько времени осталось до распаковки.

Использовал "ISdone 0.6final".
 

Shift85

Старожил
ExPlayer, Раскоментировал нужное:

Код:
;#define facompress
;#define PrecompInside
;#define SrepInside
;#define MSCInside
;#define precomp "0.42"
;#define unrar
;#define XDelta
;#define PackZIP
 

ExPlayer

Старожил
Shift85, а если я упаковывал srep + arc, то какие строчки надо разкомментировать?
 

Shift85

Старожил
ExPlayer, Пароль забыл указать при распаковке...;)

Код:
if not ISArcExtract ( 0, 0, ExpandConstant('{src}\data1.bin'), ExpandConstant('{app}\Pack'), '', false, '123456', '', ExpandConstant('{app}\Pack'), notPCFonFLY {PCFonFLY}) then break;

if not ISArcExtract ( 0, 0, ExpandConstant('{src}\data2.bin'), ExpandConstant('{app}\Pack'), '', false, '123456', '', ExpandConstant('{app}\Pack'), notPCFonFLY {PCFonFLY}) then break;
 
Последнее редактирование:

ExPlayer

Старожил
Shift85, Теперь сразу 2 ошибки:




Upd.: как убрать надпись: "тестовый прогон"?
 
Последнее редактирование:

vint56

Ветеран
Проверенный
ExPlayer тебе надо из SrepInside0.33 взять CLS-srep.dll и скинуть в папку скрипта
 

ExPlayer

Старожил
vint56, у меня эта DLL'ка есть в папке include

З.Ы. подскажите, как убрать надпись "тестовый прогон", чтобы вместо неё отображалось время?)))
 
Последнее редактирование:

vint56

Ветеран
Проверенный
ExPlayer она старая по версий новую она не распаковывает
 
Сверху