summaryrefslogtreecommitdiffhomepage
path: root/installer/opentrack-installer.iss
diff options
context:
space:
mode:
Diffstat (limited to 'installer/opentrack-installer.iss')
-rw-r--r--installer/opentrack-installer.iss100
1 files changed, 6 insertions, 94 deletions
diff --git a/installer/opentrack-installer.iss b/installer/opentrack-installer.iss
index e6551863..960ddf7f 100644
--- a/installer/opentrack-installer.iss
+++ b/installer/opentrack-installer.iss
@@ -1,15 +1,13 @@
; Script generated by the Inno Setup Script Wizard.
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
-#include "../build/opentrack-version.h"
+#include "../build/opentrack-version.hxx"
#define MyAppName "opentrack"
#define MyAppVersion OPENTRACK_VERSION
#define MyAppPublisher "opentrack"
#define MyAppURL "http://github.com/opentrack/opentrack"
#define MyAppExeName "opentrack.exe"
-#include "non-ui-blocking-exec.iss"
-
[Setup]
; NOTE: The value of AppId uniquely identifies this application.
; Do not use the same AppId value in installers for other applications.
@@ -22,11 +20,11 @@ AppPublisher={#MyAppPublisher}
AppPublisherURL={#MyAppURL}
AppSupportURL={#MyAppURL}
AppUpdatesURL={#MyAppURL}
-DefaultDirName={pf}\{#MyAppName}
+DefaultDirName={commonpf}\{#MyAppName}
DefaultGroupName={#MyAppName}
AllowNoIcons=yes
OutputBaseFilename={#MyAppVersion}-win32-setup
-SetupIconFile=..\variant\default\opentrack.ico
+SetupIconFile=..\opentrack\opentrack.ico
Compression=lzma2/ultra64
SolidCompression=yes
DisableWelcomePage=True
@@ -36,7 +34,6 @@ RestartIfNeededByRun=False
InternalCompressLevel=ultra
CompressionThreads=4
LZMANumFastBytes=273
-MinVersion=0,5.01sp2
[Languages]
Name: "english"; MessagesFile: "compiler:Default.isl"
@@ -44,6 +41,9 @@ Name: "english"; MessagesFile: "compiler:Default.isl"
[Tasks]
Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked
+[InstallDelete]
+Type: filesandordirs; Name: "{app}"
+
[Files]
Source: "..\build\install\*"; DestDir: "{app}"; Flags: ignoreversion createallsubdirs recursesubdirs
@@ -52,94 +52,6 @@ Name: "{group}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"
Name: "{commondesktop}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: desktopicon
[Run]
-Filename: "timeout.exe"; Parameters: "/t 0"; Flags: runhidden; StatusMsg: Installing RealSense Runtime. This may take several minutes.; Check: RSCameraDriverDetectedAndEulaAccepted
Filename: "{app}\{#MyAppExeName}"; Flags: nowait postinstall skipifsilent; Description: "{cm:LaunchProgram,{#StringChange(MyAppName, '&', '&&')}}";
[Code]
-var
- EulaAccepted:Boolean;
- RSCameraDriverDetected:Boolean;
- EULAPage: TOutputMsgMemoWizardPage;
- EULAAcceptRadioButton: TNewRadioButton;
- EULARefuseRadioButton: TNewRadioButton;
-
-function IsRSCameraDriverPresent():Boolean;
-var
- Version:String;
-begin
- result := RegQueryStringValue(HKEY_LOCAL_MACHINE, 'Software\Intel\RSSDK\Components\ivcam',
- 'Version', Version) or RegQueryStringValue(HKEY_LOCAL_MACHINE, 'Software\Wow6432Node\Intel\RSDCM\SR300',
- 'Version', Version)
-end;
-
-procedure EULAAcceptRefuseButtonStateUpdated(Sender: TObject);
-begin
- EulaAccepted := EULAAcceptRadioButton.Checked
-end;
-
-
-function RSCameraDriverDetectedAndEulaAccepted():Boolean;
-begin
-result := RSCameraDriverDetected and EulaAccepted;
-end;
-
-procedure DoPostInstall();
-var
- Version: String;
- ExecInfo: TShellExecuteInfo;
-begin
-if RSCameraDriverDetectedAndEulaAccepted then
- begin
- NonUiBlockingExec(ExpandConstant('{app}\doc\contrib\intel_rs_sdk_runtime_websetup_10.0.26.0396.exe'),
- '--silent --no-progress --acceptlicense=yes --front --finstall=core,face3d --fnone=all');
- end
-end;
-
-procedure CurStepChanged(CurStep: TSetupStep);
- begin
- if CurStep = ssPostInstall then
- begin
- DoPostInstall()
- end
-end;
-
-procedure InitializeWizard();
-var
- EULAText: AnsiString;
-begin
-
-EulaAccepted := false
-RSCameraDriverDetected := IsRSCameraDriverPresent()
-
-if RSCameraDriverDetected then
- begin
- ExtractTemporaryFile('RS_EULA.rtf');
- if LoadStringFromFile(ExpandConstant('{tmp}\RS_EULA.rtf'), EULAText) then
- begin
- EULAPage := CreateOutputMsgMemoPage(wpLicense,
- 'Information', 'Intel RealSense End-User License agreement',
- 'Opentrack may use the Intel RealSense SDK Runtime on your compatible system. To get it installed, please accept its EULA:',
- EULAText);
- EULAPage.RichEditViewer.Height := ScaleY(148);
- EULAAcceptRadioButton := TNewRadioButton.Create(EULAPage);
- EULAAcceptRadioButton.Left := EULAPage.RichEditViewer.Left;
- EULAAcceptRadioButton.Top := EULAPage.Surface.ClientHeight - ScaleY(41);
- EULAAcceptRadioButton.Width := EULAPage.RichEditViewer.Width;
- EULAAcceptRadioButton.Parent := EULAPage.Surface;
- EULAAcceptRadioButton.Caption := SetupMessage(msgLicenseAccepted);
- EULARefuseRadioButton := TNewRadioButton.Create(EULAPage);
- EULARefuseRadioButton.Left := EULAPage.RichEditViewer.Left;
- EULARefuseRadioButton.Top := EULAPage.Surface.ClientHeight - ScaleY(21);
- EULARefuseRadioButton.Width := EULAPage.RichEditViewer.Width;
- EULARefuseRadioButton.Parent := EULAPage.Surface;
- EULARefuseRadioButton.Caption := SetupMessage(msgLicenseNotAccepted);
-
- // Set the states and event handlers
- EULAAcceptRadioButton.OnClick := @EULAAcceptRefuseButtonStateUpdated;
- EULARefuseRadioButton.OnClick := @EULAAcceptRefuseButtonStateUpdated;
- EULARefuseRadioButton.Checked := true;
- EulaAccepted := EULAAcceptRadioButton.Checked
- //TODO: if camera is detected, activate RS EULA page and RSSDK install, save if it was accepted or not.
- end
- end
-end;