| 
									
										
										
										
											2004-08-19 13:46:40 +00:00
										 |  |  | // =================================================================
 | 
					
						
							|  |  |  | // Logtalk - Object oriented extension to Prolog
 | 
					
						
							| 
									
										
										
										
											2006-03-26 17:31:34 +00:00
										 |  |  | // Release 2.27.1
 | 
					
						
							| 
									
										
										
										
											2004-08-19 13:46:40 +00:00
										 |  |  | //
 | 
					
						
							| 
									
										
										
										
											2006-02-10 17:44:05 +00:00
										 |  |  | // Copyright (c) 1998-2006 Paulo Moura.  All Rights Reserved.
 | 
					
						
							| 
									
										
										
										
											2004-08-19 13:46:40 +00:00
										 |  |  | // =================================================================
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | if (WScript.Arguments.Unnamed.Length > 0) { | 
					
						
							|  |  |  | 	usage_help(); | 
					
						
							|  |  |  | 	WScript.Quit(0); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | WScript.Echo(''); | 
					
						
							|  |  |  | WScript.Echo('Creating a shortcut named "Logtalk - CIAO" for running Logtalk'); | 
					
						
							|  |  |  | WScript.Echo('with CIAO...'); | 
					
						
							|  |  |  | WScript.Echo(''); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var WshShell = new ActiveXObject("WScript.Shell"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var prolog_path = WshShell.RegRead("HKLM\\Software\\Ciao Prolog\\ciao_dir") + "\\shell\\ciaosh.cpx"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var FSObject = new ActiveXObject("Scripting.FileSystemObject"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | if (!FSObject.FileExists(prolog_path)) { | 
					
						
							|  |  |  | 	WScript.Echo("Error! Cannot find ciaosh.cpx at the expected place!"); | 
					
						
							| 
									
										
										
										
											2005-12-24 18:00:21 +00:00
										 |  |  | 	WScript.Echo("Please, edit the script and update the location of the ciaosh.cpx executable."); | 
					
						
							| 
									
										
										
										
											2004-08-19 13:46:40 +00:00
										 |  |  | 	WScript.Quit(1); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var WshSystemEnv = WshShell.Environment("SYSTEM"); | 
					
						
							|  |  |  | var WshUserEnv = WshShell.Environment("USER"); | 
					
						
							|  |  |  | var logtalk_home; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-12-05 21:52:49 +00:00
										 |  |  | if (WshSystemEnv.Item("LOGTALKHOME")) | 
					
						
							| 
									
										
										
										
											2004-08-19 13:46:40 +00:00
										 |  |  | 	logtalk_home = WshSystemEnv.Item("LOGTALKHOME"); | 
					
						
							|  |  |  | else if (WshUserEnv.Item("LOGTALKHOME")) | 
					
						
							|  |  |  | 	logtalk_home = WshUserEnv.Item("LOGTALKHOME") | 
					
						
							|  |  |  | else { | 
					
						
							|  |  |  | 	WScript.Echo("Error! The system environment variable LOGTALKHOME must be defined first!"); | 
					
						
							|  |  |  | 	usage_help(); | 
					
						
							|  |  |  | 	WScript.Quit(1); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-12-24 18:00:21 +00:00
										 |  |  | if (!FSObject.FolderExists(logtalk_home)) { | 
					
						
							|  |  |  | 	WScript.Echo("The environment variable LOGTALKHOME points to a non-existing directory!"); | 
					
						
							|  |  |  | 	WScript.Echo("Its current value is: %LOGTALKHOME%"); | 
					
						
							|  |  |  | 	WScript.Echo("The variable must be set to your Logtalk installation directory!"); | 
					
						
							|  |  |  | 	WScript.Echo(""); | 
					
						
							|  |  |  | 	usage_help(); | 
					
						
							|  |  |  | 	WScript.Quit(1); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-08-19 13:46:40 +00:00
										 |  |  | logtalk_home = logtalk_home.replace(/\\/g, "\\\\"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | if (!FSObject.FolderExists(logtalk_home + "\\bin"))  | 
					
						
							|  |  |  | 	FSObject.CreateFolder(logtalk_home + "\\bin"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-11-29 20:36:31 +00:00
										 |  |  | var f = FSObject.CreateTextFile(logtalk_home + "\\bin\\logtalk_ciao.pl", true); | 
					
						
							| 
									
										
										
										
											2004-08-19 13:46:40 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-11-29 20:36:31 +00:00
										 |  |  | f.WriteLine(":- ensure_loaded('\$LOGTALKUSER/configs/ciao_aux.config')."); | 
					
						
							| 
									
										
										
										
											2005-12-24 18:00:21 +00:00
										 |  |  | f.WriteLine(":- set_prolog_flag(multi_arity_warnings, off)."); | 
					
						
							| 
									
										
										
										
											2004-08-19 13:46:40 +00:00
										 |  |  | f.WriteLine(":- ensure_loaded('\$LOGTALKHOME/compiler/logtalk.pl')."); | 
					
						
							| 
									
										
										
										
											2004-11-29 20:36:31 +00:00
										 |  |  | f.WriteLine(":- ensure_loaded('\$LOGTALKUSER/libpaths/libpaths.pl')."); | 
					
						
							| 
									
										
										
										
											2004-08-19 13:46:40 +00:00
										 |  |  | f.WriteLine(":- op(600, xfy, ::)."); | 
					
						
							| 
									
										
										
										
											2005-12-24 18:00:21 +00:00
										 |  |  | f.WriteLine(":- op(600, fy, ::)."); | 
					
						
							|  |  |  | f.WriteLine(":- op(600, fy, ^^)."); | 
					
						
							|  |  |  | f.WriteLine(":- op(200, fy, +)."); | 
					
						
							|  |  |  | f.WriteLine(":- op(200, fy, ?)."); | 
					
						
							|  |  |  | f.WriteLine(":- op(200, fy, @)."); | 
					
						
							|  |  |  | f.WriteLine(":- op(200, fy, -)."); | 
					
						
							| 
									
										
										
										
											2004-08-19 13:46:40 +00:00
										 |  |  | f.Close(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var ProgramsPath = WshShell.SpecialFolders("AllUsersPrograms"); | 
					
						
							| 
									
										
										
										
											2004-09-14 23:11:12 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | if (!FSObject.FolderExists(ProgramsPath + "\\Logtalk"))  | 
					
						
							|  |  |  | 	FSObject.CreateFolder(ProgramsPath + "\\Logtalk"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var link = WshShell.CreateShortcut(ProgramsPath + "\\Logtalk\\Logtalk - CIAO.lnk"); | 
					
						
							| 
									
										
										
										
											2004-11-29 20:36:31 +00:00
										 |  |  | link.Arguments = "-l %LOGTALKHOME%\\bin\\logtalk_ciao.pl"; | 
					
						
							| 
									
										
										
										
											2004-08-19 13:46:40 +00:00
										 |  |  | link.Description = "Runs Logtalk with CIAO"; | 
					
						
							|  |  |  | link.IconLocation = "app.exe,1"; | 
					
						
							|  |  |  | link.TargetPath = prolog_path; | 
					
						
							|  |  |  | link.WindowStyle = 1; | 
					
						
							|  |  |  | link.WorkingDirectory = logtalk_home; | 
					
						
							|  |  |  | link.Save(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | WScript.Echo('Done. The "Logtalk - CIAO" shortcut was been added to the'); | 
					
						
							| 
									
										
										
										
											2004-11-29 20:36:31 +00:00
										 |  |  | WScript.Echo('Start Menu Programs. Make sure that the environment variables'); | 
					
						
							|  |  |  | WScript.Echo('LOGTALKHOME and LOGTALKUSER are defined for all users wishing'); | 
					
						
							|  |  |  | WScript.Echo('to use the shortcut.'); | 
					
						
							| 
									
										
										
										
											2004-08-19 13:46:40 +00:00
										 |  |  | WScript.Echo(''); | 
					
						
							| 
									
										
										
										
											2005-12-24 18:00:21 +00:00
										 |  |  | WScript.Echo('The first call to the shortcut must be made by a user with'); | 
					
						
							|  |  |  | WScript.Echo('administrative rights.'); | 
					
						
							|  |  |  | WScript.Echo(''); | 
					
						
							|  |  |  | WScript.Echo('Users must run the batch script "cplgtdirs" before using the'); | 
					
						
							|  |  |  | WScript.Echo('"Logtalk - CIAO" shortcut.'); | 
					
						
							|  |  |  | WScript.Echo(''); | 
					
						
							| 
									
										
										
										
											2004-08-19 13:46:40 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | WScript.Quit(0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | function usage_help() { | 
					
						
							|  |  |  | 	WScript.Echo(''); | 
					
						
							|  |  |  | 	WScript.Echo('This script creates a shortcut named "Logtalk - CIAO" for running Logtalk'); | 
					
						
							|  |  |  | 	WScript.Echo('with CIAO. The script must be run by a user with administrative rights.'); | 
					
						
							|  |  |  | 	WScript.Echo('The LOGTALKHOME environment variable must be defined before running this'); | 
					
						
							|  |  |  | 	WScript.Echo('script.'); | 
					
						
							|  |  |  | 	WScript.Echo(''); | 
					
						
							|  |  |  | 	WScript.Echo('Usage:'); | 
					
						
							|  |  |  | 	WScript.Echo('  ' + WScript.ScriptName + ' help'); | 
					
						
							|  |  |  | 	WScript.Echo('  ' + WScript.ScriptName); | 
					
						
							|  |  |  | 	WScript.Echo(''); | 
					
						
							|  |  |  | } |