2006-11-07 18:11:49 +00:00
|
|
|
// =================================================================
|
|
|
|
// Logtalk - Object oriented extension to Prolog
|
2007-03-28 23:44:31 +01:00
|
|
|
// Release 2.29.5
|
2006-11-07 18:11:49 +00:00
|
|
|
//
|
2007-01-10 12:46:10 +00:00
|
|
|
// Copyright (c) 1998-2007 Paulo Moura. All Rights Reserved.
|
2006-11-07 18:11:49 +00:00
|
|
|
// =================================================================
|
|
|
|
|
|
|
|
if (ScriptEngineMajorVersion() < 5 || ScriptEngineMajorVersion() == 5 && ScriptEngineMinorVersion() < 6) {
|
|
|
|
WScript.Echo('Error! WSH 5.6 or later version needed for running this script.');
|
|
|
|
WScript.Quit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
var prolog_path = "C:\\XSB\\config\\x86-pc-windows\\bin\\xsb.exe";
|
|
|
|
|
|
|
|
if (WScript.Arguments.Unnamed.Length > 0) {
|
|
|
|
usage_help();
|
|
|
|
WScript.Quit(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
WScript.Echo('');
|
|
|
|
WScript.Echo('Creating a shortcut named "Logtalk - XSB" for running Logtalk');
|
|
|
|
WScript.Echo('with XSB...');
|
|
|
|
WScript.Echo('');
|
|
|
|
|
|
|
|
var FSObject = new ActiveXObject("Scripting.FileSystemObject");
|
|
|
|
|
|
|
|
if (!FSObject.FileExists(prolog_path)) {
|
|
|
|
WScript.Echo("Error! Cannot find xsb.exe at the expected place!");
|
|
|
|
WScript.Echo("Please edit the script and update the location of the xsb.exe executable.");
|
|
|
|
WScript.Quit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
var WshShell = new ActiveXObject("WScript.Shell");
|
|
|
|
|
|
|
|
var WshSystemEnv = WshShell.Environment("SYSTEM");
|
|
|
|
var WshUserEnv = WshShell.Environment("USER");
|
|
|
|
var logtalk_home;
|
|
|
|
|
|
|
|
if (WshSystemEnv.Item("LOGTALKHOME"))
|
|
|
|
logtalk_home = WshSystemEnv.Item("LOGTALKHOME");
|
|
|
|
else if (WshUserEnv.Item("LOGTALKHOME"))
|
|
|
|
logtalk_home = WshUserEnv.Item("LOGTALKHOME")
|
|
|
|
else {
|
|
|
|
WScript.Echo("Error! The environment variable LOGTALKHOME must be defined first!");
|
|
|
|
usage_help();
|
|
|
|
WScript.Quit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
logtalk_home = logtalk_home.replace(/\\/g, "\\\\");
|
|
|
|
|
|
|
|
if (!FSObject.FolderExists(logtalk_home + "\\bin"))
|
|
|
|
FSObject.CreateFolder(logtalk_home + "\\bin");
|
|
|
|
|
|
|
|
var f = FSObject.CreateTextFile(logtalk_home + "\\bin\\logtalk_xsb.pl", true);
|
|
|
|
|
|
|
|
f.WriteLine(":- expand_filename('configs/xsb.pl', Path), reconsult(Path).");
|
|
|
|
f.WriteLine(":- reconsult('" + logtalk_home + "\\\\compiler\\\\logtalk.pl').");
|
|
|
|
f.WriteLine(":- expand_filename('libpaths/libpaths_no_env_var.pl', Path), reconsult(Path).");
|
|
|
|
f.Close();
|
|
|
|
|
|
|
|
var ProgramsPath = WshShell.SpecialFolders("AllUsersPrograms");
|
|
|
|
|
|
|
|
if (!FSObject.FolderExists(ProgramsPath + "\\Logtalk"))
|
|
|
|
FSObject.CreateFolder(ProgramsPath + "\\Logtalk");
|
|
|
|
|
|
|
|
var link = WshShell.CreateShortcut(ProgramsPath + "\\Logtalk\\Logtalk - XSB.lnk");
|
|
|
|
link.Arguments = "-l -e \"reconsult('%LOGTALKHOME%\\\\bin\\\\logtalk_xsb.pl').\"";
|
|
|
|
link.Description = "Runs Logtalk with XSB";
|
|
|
|
link.IconLocation = "app.exe,1";
|
|
|
|
link.TargetPath = prolog_path;
|
|
|
|
link.WindowStyle = 1;
|
|
|
|
link.WorkingDirectory = "%LOGTALKUSER%";
|
|
|
|
link.Save();
|
|
|
|
|
|
|
|
WScript.Echo('Done. The "Logtalk - XSB" shortcut was been added to the Start Menu');
|
|
|
|
WScript.Echo('Programs. Make sure that the environment variables LOGTALKHOME and');
|
|
|
|
WScript.Echo('LOGTALKUSER are defined for all users wishing to use the shortcut.');
|
|
|
|
WScript.Echo('');
|
|
|
|
WScript.Echo('The first call to the shortcut must be made by a user with');
|
|
|
|
WScript.Echo('administrative rights.');
|
|
|
|
WScript.Echo('');
|
2006-12-28 13:03:34 +00:00
|
|
|
WScript.Echo('Users must run the batch script "cplgtdirs" once before using the');
|
2006-11-07 18:11:49 +00:00
|
|
|
WScript.Echo('"Logtalk - XSB" shortcut. Users must edit the contents of the');
|
|
|
|
WScript.Echo('"libpaths_no_env_var.pl" file on the "libpaths" directory in order');
|
|
|
|
WScript.Echo('to replace all occurrences of the LOGTALKUSER environment variable');
|
|
|
|
WScript.Echo('by its value.');
|
|
|
|
WScript.Echo('');
|
|
|
|
|
|
|
|
WScript.Quit(0);
|
|
|
|
|
|
|
|
function usage_help() {
|
|
|
|
WScript.Echo('');
|
|
|
|
WScript.Echo('This script creates a shortcut named "Logtalk - XSB" for running Logtalk');
|
|
|
|
WScript.Echo('with XSB. 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('');
|
|
|
|
}
|