forked from ecologylab/EcoTUIODriver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEcoTUIODriver.nsi
229 lines (176 loc) · 7.51 KB
/
EcoTUIODriver.nsi
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
;Author - Rajat Goyal
;The script bleow makes windows installer for EcoTUIODriver Project ,
;which is hosted at https://github.com/ecologylab/WinTUIODriver
!include MUI2.nsh
!include "Sections.nsh"
!include "logiclib.nsh"
OutFile "EcoTuioDriver.exe"
RequestExecutionLevel admin
name "Eco TUIO Driver"
!define MUI_ICON "Configuration_Utility\Configuration_Utility\Configuration_Utility.ico"
!define MUI_UNICON "${NSISDIR}\Contrib\Graphics\Icons\modern-uninstall.ico"
!define MUI_WELCOMEFINISHPAGE_BITMAP "${NSISDIR}\Contrib\Graphics\Wizard\win.bmp"
!define MUI_UNWELCOMEFINISHPAGE_BITMAP "${NSISDIR}\Contrib\Graphics\Wizard\orange-uninstall.bmp"
ShowInstDetails show
ShowUnInstDetails show
;Defination of the macros for user data
!macro NSD_SetUserData hwnd data
nsDialogs::SetUserData ${hwnd} ${data}
!macroend
!define NSD_SetUserData `!insertmacro NSD_SetUserData`
!macro NSD_GetUserData hwnd outvar
nsDialogs::GetUserData ${hwnd}
Pop ${outvar}
!macroend
!define NSD_GetUserData `!insertmacro NSD_GetUserData`
!macro IfKeyExists ROOT MAIN_KEY KEY
Push $R0
Push $R1
Push $R2
# XXX bug if ${ROOT}, ${MAIN_KEY} or ${KEY} use $R0 or $R1
StrCpy $R1 "0" # loop index
StrCpy $R2 "0" # not found
${Do}
EnumRegKey $R0 ${ROOT} "${MAIN_KEY}" "$R1"
${If} $R0 == "${KEY}"
StrCpy $R2 "1" # found
${Break}
${EndIf}
IntOp $R1 $R1 + 1
${LoopWhile} $R0 != ""
ClearErrors
Exch 2
Pop $R0
Pop $R1
Exch $R2
!macroend
;--------------------------------
;Interface Configuration
;Header Image for the installer
!define MUI_HEADERIMAGE
;!define MUI_HEADERIMAGE_BITMAP "${NSISDIR}\Contrib\Graphics\Header\nsis.bmp" ; optional
!define MUI_ABORTWARNING
;Pages in the installation
!insertmacro MUI_PAGE_WELCOME
!insertmacro MUI_PAGE_LICENSE "LISCENSE.txt"
!insertmacro MUI_PAGE_DIRECTORY
!insertmacro MUI_PAGE_COMPONENTS
;Page Custom pre post
!insertmacro MUI_PAGE_INSTFILES
;;Finish Page
;!define MUI_PAGE_CUSTOMFUNCTION_PRE Done
!define MUI_FINISHPAGE_TITLE "Eco TUIO Driver Installed Successfuly"
;!define MUI_WELCOMEFINISHPAGE_BITMAP "${NSISDIR}\Contrib\Graphics\Wizard\win.bmp"
!define MUI_FINISHPAGE_BUTTON "Ok"
!define MUI_FINISHPAGE_TEXT_REBOOT "To complete the Eco TUIO Driver installation the system needs to reboot"
!define MUI_FINISHPAGE_TEXT_REBOOTNOW "Restart now"
!define MUI_FINISHPAGE_TEXT_REBOOTLATER "Restart later"
!insertmacro MUI_PAGE_FINISH
;install directory
InstallDir "C:\Program Files\EcoTuioDriver"
;un-installatin pages
;UninstPage uninstConfirm
;UninstPage instfiles
!insertmacro MUI_UNPAGE_WELCOME
!insertmacro MUI_UNPAGE_CONFIRM
!insertmacro MUI_UNPAGE_INSTFILES
!define MUI_FINISHPAGE_TITLE "Eco TUIO Driver Removed Successfuly"
;!define MUI_UNWELCOMEFINISHPAGE_BITMAP "${NSISDIR}\Contrib\Graphics\Wizard\win.bmp"
!define MUI_FINISHPAGE_BUTTON "Ok"
!define MUI_FINISHPAGE_TEXT_REBOOT "To complete the Eco TUIO Driver removal the system needs to reboot"
!define MUI_FINISHPAGE_TEXT_REBOOTNOW "Restart now"
!define MUI_FINISHPAGE_TEXT_REBOOTLATER "Restart later"
!insertmacro MUI_UNPAGE_FINISH
!insertmacro MUI_LANGUAGE "English"
Function .onInit
UserInfo::GetAccountType
pop $0
${If} $0 != "admin" ;Require admin rights on NT4+
MessageBox mb_iconstop "Administrator rights required!"
SetErrorLevel 740 ;ERROR_ELEVATION_REQUIRED
Quit
${EndIf}
FunctionEnd
Section "Driver and Configuration Utility"
SetShellVarContext all
MessageBox MB_OK "Your computer might freeze several times during the installation , don't do anything | The Installer installs 5 virtual TUIO touch devices . It's important that you provide permission each time."
SetOutPath $INSTDIR
File /r "Drivers"
File /r "Executables"
;install vcredist_x86 if it is not already installed
;unistall path is different for win 32 & 64
IfFileExists $WINDIR\SYSWOW64\*.* Is64bit1 Is32bit1
Is32bit1:
!insertmacro IfKeyExists HKLM "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall" "{F0C3E5D1-1ADE-321E-8167-68EF0DE699A5}"
GOTO End32Bitvs64BitCheck1
Is64Bit1:
!insertmacro IfKeyExists HKLM "SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall" "{F0C3E5D1-1ADE-321E-8167-68EF0DE699A5}"
End32Bitvs64BitCheck1:
Pop $R0
${If} $R0 == 0 ;Requires installation of the redistributable
Execwait "$INSTDIR\Executables\Vcredist_x86.exe Setup /passive"
${EndIf}
WriteUninstaller "$INSTDIR\Uninstall-EcoTuioDriver.exe"
SetOutPath "$INSTDIR\Executables"
;CreateShortCut "$SMPROGRAMS\Startup\WinTUIODriver.lnk" "$INSTDIR\Executables\Configuration_Utility.exe"
CreateShortCut "$DESKTOP\EcoTUIODriver.lnk" "$INSTDIR\Executables\Configuration_Utility.exe"
CreateDirectory "$SMPROGRAMS\Eco TUIO Driver"
CreateShortCut "$SMPROGRAMS\Eco TUIO Driver\EcoTUIODriver.lnk" "$INSTDIR\Executables\Configuration_Utility.exe"
SetOutPath $INSTDIR
CreateShortCut "$SMPROGRAMS\Eco TUIO Driver\Uninstall-EcoTuioDriver.lnk" "$INSTDIR\Uninstall-EcoTuioDriver.exe"
SetOutPath "C:\Users\AppData\TUIO-To-Vmulti"
File /r "Data"
SetOutPath $INSTDIR
;cmd related to 64bit or 32bit driver .
IfFileExists $WINDIR\SYSWOW64\*.* Is64bit Is32bit
Is32bit:
SetOutPath "$INSTDIR\Drivers\x86-Driver-Installers"
Execwait "$INSTDIR\Drivers\x86-Driver-Installers\Installvmulti1.cmd"
Execwait "$INSTDIR\Drivers\x86-Driver-Installers\Installvmulti2.cmd"
Execwait "$INSTDIR\Drivers\x86-Driver-Installers\Installvmulti3.cmd"
Execwait "$INSTDIR\Drivers\x86-Driver-Installers\Installvmulti4.cmd"
Execwait "$INSTDIR\Drivers\x86-Driver-Installers\Installvmulti5.cmd"
SetOutPath $INSTDIR
GOTO End32Bitvs64BitCheck
Is64Bit:
SetOutPath "$INSTDIR\Drivers\x64-Driver-Installers"
Execwait "$INSTDIR\Drivers\x64-Driver-Installers\Installvmulti1.cmd"
Execwait "$INSTDIR\Drivers\x64-Driver-Installers\Installvmulti2.cmd"
Execwait "$INSTDIR\Drivers\x64-Driver-Installers\Installvmulti3.cmd"
Execwait "$INSTDIR\Drivers\x64-Driver-Installers\Installvmulti4.cmd"
Execwait "$INSTDIR\Drivers\x64-Driver-Installers\Installvmulti5.cmd"
SetOutPath $INSTDIR
End32Bitvs64BitCheck:
SectionEnd
Section "Source"
SetOutPath $INSTDIR
File /r "Configuration_Utility"
File /r "Services"
SetRebootFlag true
SectionEnd
Section "uninstall"
SetShellVarContext all
Delete "$SMPROGRAMS\Eco TUIO Driver\EcoTUIODriver.lnk"
Delete "$SMPROGRAMS\Eco TUIO Driver\Uninstall-EcoTuioDriver.lnk"
RmDir "$SMPROGRAMS\Eco TUIO Driver"
Delete "$DESKTOP\EcoTUIODriver.lnk"
Execwait "$INSTDIR\Executables\Tuio-to-Vmulti-Service-1.exe remove 3"
Execwait "$INSTDIR\Executables\Tuio-to-Vmulti-Service-2.exe remove 3"
Execwait "$INSTDIR\Executables\Tuio-to-Vmulti-Service-3.exe remove 3"
Execwait "$INSTDIR\Executables\Tuio-to-Vmulti-Service-4.exe remove 3"
Execwait "$INSTDIR\Executables\Tuio-to-Vmulti-Service-5.exe remove 3"
;remove drivers
IfFileExists $WINDIR\SYSWOW64\*.* Is64bit2 Is32bit2
Is32bit2:
SetOutPath "$INSTDIR\Drivers\x86-Driver-Installers"
Execwait "$INSTDIR\Drivers\x86-Driver-Installers\Uninstallvmulti.cmd"
GOTO End32Bitvs64BitCheck2
Is64Bit2:
SetOutPath "$INSTDIR\Drivers\x64-Driver-Installers"
Execwait "$INSTDIR\Drivers\x64-Driver-Installers\Uninstallvmulti.cmd"
End32Bitvs64BitCheck2:
SetOutPath $INSTDIR
RmDir /r "C:\Users\AppData\TUIO-To-Vmulti"
RmDir /r $INSTDIR
SetRebootFlag true
SectionEnd