Merge branch 'dev-next' into dev-syntax-code

This commit is contained in:
Ima Mechanique 2012-12-28 02:51:15 +00:00
commit e9b5a4f825
8 changed files with 94 additions and 48 deletions

View file

@ -480,7 +480,7 @@ namespace LSLEditor
{ {
DialogResult dialogResult = MessageBox.Show(this, @"Save """ + this.ScriptName + @"""?", "File has changed", MessageBoxButtons.YesNoCancel); DialogResult dialogResult = MessageBox.Show(this, @"Save """ + this.ScriptName + @"""?", "File has changed", MessageBoxButtons.YesNoCancel);
if (dialogResult == DialogResult.Yes) if (dialogResult == DialogResult.Yes)
e.Cancel = this.parent.SaveFile(this,false); e.Cancel = !this.parent.SaveFile(this,false);
else else
e.Cancel = (dialogResult == DialogResult.Cancel); e.Cancel = (dialogResult == DialogResult.Cancel);
} }

View file

@ -438,6 +438,9 @@ namespace LSLEditor
// exitToolStripMenuItem // exitToolStripMenuItem
// //
this.exitToolStripMenuItem.Name = "exitToolStripMenuItem"; this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
this.exitToolStripMenuItem.ShortcutKeyDisplayString = "";
this.exitToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.F4)));
this.exitToolStripMenuItem.ShowShortcutKeys = false;
this.exitToolStripMenuItem.Size = new System.Drawing.Size(187, 22); this.exitToolStripMenuItem.Size = new System.Drawing.Size(187, 22);
this.exitToolStripMenuItem.Text = "Exit"; this.exitToolStripMenuItem.Text = "Exit";
this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click); this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
@ -872,7 +875,7 @@ namespace LSLEditor
this.aboutToolStripMenuItem.Text = "About..."; this.aboutToolStripMenuItem.Text = "About...";
this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click); this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click);
// //
// openFileDialog1 // openScriptFilesDialog
// //
this.openScriptFilesDialog.FileName = "openFileDialog1"; this.openScriptFilesDialog.FileName = "openFileDialog1";
// //
@ -905,7 +908,7 @@ namespace LSLEditor
this.closeTabToolStripMenuItem.Text = "Close"; this.closeTabToolStripMenuItem.Text = "Close";
this.closeTabToolStripMenuItem.Click += new System.EventHandler(this.closeTabToolStripMenuItem_Click); this.closeTabToolStripMenuItem.Click += new System.EventHandler(this.closeTabToolStripMenuItem_Click);
// //
// openFileDialog2 // openSolutionFilesDialog
// //
this.openSolutionFilesDialog.FileName = "openFileDialog2"; this.openSolutionFilesDialog.FileName = "openFileDialog2";
// //

View file

@ -20,7 +20,7 @@
// ******** // ********
// * LSLEditor, a External editor for the LSL Language. // * LSLEditor, a External editor for the LSL Language.
// * Copyright (C) 2010 The LSLEditor Group. // * Copyright (C) 2010 The LSLEditor Group.
// //
// * This program is free software; you can redistribute it and/or // * This program is free software; you can redistribute it and/or
// * modify it under the terms of the GNU General Public License // * modify it under the terms of the GNU General Public License
// * as published by the Free Software Foundation; either version 2 // * as published by the Free Software Foundation; either version 2
@ -36,7 +36,7 @@
// * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
// ******** // ********
// * // *
// * The above copyright notice and this permission notice shall be included in all // * The above copyright notice and this permission notice shall be included in all
// * copies or substantial portions of the Software. // * copies or substantial portions of the Software.
// * // *
// ******** // ********
@ -87,7 +87,7 @@ namespace LSLEditor
private Browser browser; private Browser browser;
private SimulatorConsole SimulatorConsole; private SimulatorConsole SimulatorConsole;
public bool CancelClosing = false; public bool CancelClosing = false;
@ -224,7 +224,7 @@ namespace LSLEditor
// return null; // return null;
// return this.tabControlExtended1.SelectedTab.Tag as Form; // return this.tabControlExtended1.SelectedTab.Tag as Form;
} }
} }
} }
public void ActivateMdiForm(Form form) public void ActivateMdiForm(Form form)
@ -264,8 +264,8 @@ namespace LSLEditor
} }
else else
{ {
//form.Visible = false; //form.Visible = false;
//form.MdiParent = null; //form.MdiParent = null;
@ -276,8 +276,8 @@ namespace LSLEditor
//tabPage.Tag = form; //tabPage.Tag = form;
//form.Tag = tabPage; //form.Tag = tabPage;
// Was already commented out //tabPage.Controls.Add(form.Controls[0]); // Was already commented out //tabPage.Controls.Add(form.Controls[0]);
//this.tabControlExtended1.TabPages.Add(tabPage); //this.tabControlExtended1.TabPages.Add(tabPage);
//this.tabControlExtended1.SelectedTab = tabPage; //this.tabControlExtended1.SelectedTab = tabPage;
} }
@ -325,7 +325,7 @@ namespace LSLEditor
this.openSolutionFilesDialog.InitialDirectory = Properties.Settings.Default.ProjectLocation; this.openSolutionFilesDialog.InitialDirectory = Properties.Settings.Default.ProjectLocation;
this.openSolutionFilesDialog.Multiselect = false; this.openSolutionFilesDialog.Multiselect = false;
Version version = Assembly.GetExecutingAssembly().GetName().Version; Version version = Assembly.GetExecutingAssembly().GetName().Version;
this.Text += " " + version.Major + "." + version.Minor; this.Text += " " + version.Major + "." + version.Minor;
@ -338,7 +338,7 @@ namespace LSLEditor
if (Path.GetFileNameWithoutExtension(Assembly.GetExecutingAssembly().Location).Contains("beta")) if (Path.GetFileNameWithoutExtension(Assembly.GetExecutingAssembly().Location).Contains("beta"))
this.Text += " (BETA)"; this.Text += " (BETA)";
} }
//TODO: Fix close buttons on tabs //TODO: Fix close buttons on tabs
// enables close buttons on tab // enables close buttons on tab
//this.tabControlExtended1.SetDrawMode(); //this.tabControlExtended1.SetDrawMode();
@ -618,6 +618,9 @@ namespace LSLEditor
browser.ShowWebBrowser("Import Examples", Properties.Settings.Default.Examples); browser.ShowWebBrowser("Import Examples", Properties.Settings.Default.Examples);
} }
/***
* Return value indicate whether file was saved or not.
*/
public bool SaveFile(EditForm editForm, bool blnSaveAs) public bool SaveFile(EditForm editForm, bool blnSaveAs)
{ {
DialogResult dialogresult = DialogResult.OK; DialogResult dialogresult = DialogResult.OK;
@ -1039,7 +1042,7 @@ namespace LSLEditor
} }
} }
this.browserInWindowToolStripMenuItem.Checked = this.browserInWindowToolStripMenuItem.Checked =
Properties.Settings.Default.BrowserInWindow; Properties.Settings.Default.BrowserInWindow;
this.WikiSepBrowserstoolStripMenuItem.Checked = this.WikiSepBrowserstoolStripMenuItem.Checked =
@ -1350,12 +1353,12 @@ namespace LSLEditor
this.toolStripStatusLabel1.Text = ""; this.toolStripStatusLabel1.Text = "";
//int intTabToDelete = (int)this.contextMenuStrip1.Tag; //int intTabToDelete = (int)this.contextMenuStrip1.Tag;
if (intTabToDelete >= this.tabControlExtended1.TabCount) if (intTabToDelete >= this.tabControlExtended1.TabCount)
return; return;
TabPage tabPage = this.tabControlExtended1.TabPages[intTabToDelete]; TabPage tabPage = this.tabControlExtended1.TabPages[intTabToDelete];
if (tabPage.Text.Contains("Browser")) if (tabPage.Text.Contains("Browser"))
{ {
this.browser.Dispose(); this.browser.Dispose();
@ -1439,7 +1442,7 @@ namespace LSLEditor
int intTabToClose = this.tabControlExtended1.SelectedIndex; int intTabToClose = this.tabControlExtended1.SelectedIndex;
if (intTabToClose >= 0) if (intTabToClose >= 0)
CloseTab(intTabToClose); CloseTab(intTabToClose);
*/ */
} }
} }
@ -1905,7 +1908,7 @@ namespace LSLEditor
} }
} }
private void toolStripMenuItem9_Click_1(object sender, EventArgs e) private void toolStripMenuItem9_Click_1(object sender, EventArgs e)
{ {

View file

@ -118,34 +118,34 @@
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader> </resheader>
<metadata name="menuStrip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> <metadata name="menuStrip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>293, 17</value> <value>865, 17</value>
</metadata> </metadata>
<metadata name="openFileDialog0.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> <metadata name="openNoteFilesDialog.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>699, 17</value>
</metadata>
<metadata name="saveNoteFilesDialog.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>371, 17</value>
</metadata>
<metadata name="openScriptFilesDialog.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>17, 17</value> <value>17, 17</value>
</metadata> </metadata>
<metadata name="saveFileDialog0.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> <metadata name="saveScriptFilesDialog.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>157, 17</value> <value>533, 17</value>
</metadata>
<metadata name="openFileDialog1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>563, 17</value>
</metadata>
<metadata name="saveFileDialog1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>703, 17</value>
</metadata> </metadata>
<metadata name="statusStrip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> <metadata name="statusStrip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>17, 56</value> <value>324, 56</value>
</metadata> </metadata>
<metadata name="contextMenuStrip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> <metadata name="contextMenuStrip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>408, 17</value> <value>17, 56</value>
</metadata> </metadata>
<metadata name="pageSetupDialog1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> <metadata name="pageSetupDialog1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>839, 17</value> <value>172, 56</value>
</metadata> </metadata>
<metadata name="openFileDialog2.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> <metadata name="openSolutionFilesDialog.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>133, 56</value> <value>187, 17</value>
</metadata> </metadata>
<metadata name="toolTip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> <metadata name="toolTip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>273, 56</value> <value>440, 56</value>
</metadata> </metadata>
<metadata name="$this.TrayHeight" type="System.Int32, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <metadata name="$this.TrayHeight" type="System.Int32, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>53</value> <value>53</value>

View file

@ -70,7 +70,7 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Revision and Build Numbers // You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below: // by using the '*' as shown below:
[assembly: AssemblyVersion("2.47.1.9")] [assembly: AssemblyVersion("2.48.0.1")]
// //
// In order to sign your assembly you must specify a key to use. Refer to the // In order to sign your assembly you must specify a key to use. Refer to the
@ -100,4 +100,4 @@ using System.Runtime.InteropServices;
[assembly: AssemblyDelaySign(false)] [assembly: AssemblyDelaySign(false)]
//[assembly: AssemblyKeyName("")] //[assembly: AssemblyKeyName("")]
[assembly: ComVisibleAttribute(false)] [assembly: ComVisibleAttribute(false)]
[assembly: AssemblyFileVersionAttribute("2.47.1.9")] [assembly: AssemblyFileVersionAttribute("2.48.0.1")]

View file

@ -312,15 +312,15 @@
Clears (deletes) the media and all parameters from the given prim face. Clears (deletes) the media and all parameters from the given prim face.
Returns an integer that is a STATUS_* flag which details the success/failure of the operation. Returns an integer that is a STATUS_* flag which details the success/failure of the operation.
<Argument name="Link">Link number</Argument>
<Argument name="Face">Face number</Argument>
</Word> </Word>
<Word name="llClearPrimMedia"> <Word name="llClearPrimMedia">
integer llClearPrimMedia(integer Link, integer Face ); integer llClearPrimMedia(integer Face );
Clears (deletes) the media and all params from the given Face. Clears (deletes) the media and all params from the given Face.
Returns an integer that is a STATUS_* flag which details the success/failure of the operation. Returns an integer that is a STATUS_* flag which details the success/failure of the operation.
<Argument name="Link">Link number</Argument>
<Argument name="Face">Face number</Argument> <Argument name="Face">Face number</Argument>
</Word> </Word>
@ -4831,9 +4831,14 @@
If id is group owned, a NULL_KEY is returned. If id is group owned, a NULL_KEY is returned.
</Word> </Word>
<Word name="OBJECT_PATHFINDING_TYPE" type="integer" value="20">Returns the pathfinding setting of any object in the region. It returns an integer matching one of the OPT_* constants.</Word> <Word name="OBJECT_PATHFINDING_TYPE" type="integer" value="20">Returns the pathfinding setting of any object in the region. It returns an integer matching one of the OPT_* constants.</Word>
<Word name="OBJECT_PHANTOM" type="integer" value="22">Returns boolean, detailing if phantom is enabled or disabled on the object.
If id is an avatar or attachment, 0 is returned.</Word>
<Word name="OBJECT_PHYSICS" type="integer" value="21">Returns boolean, detailing if physics is enabled or disabled on the object.
If id is an avatar or attachment, 0 is returned.</Word>
<Word name="OBJECT_POS" value="">Gets the object's position in region coordinates.</Word> <Word name="OBJECT_POS" value="">Gets the object's position in region coordinates.</Word>
<Word name="OBJECT_ROOT" type="integer" value="18">Gets the id of the root prim of the object requested.</Word> <Word name="OBJECT_ROOT" type="integer" value="18">Gets the id of the root prim of the object requested.</Word>
<Word name="OBJECT_ROT" value="">Gets the object's rotation.</Word> <Word name="OBJECT_ROT" value="">Gets the object's rotation.</Word>
<Word name="OBJECT_TEMP_ON_REZ" type="integer" value="23">Returns boolean, detailing if temporary is enabled or disabled on the object.</Word>
<Word name="OBJECT_VELOCITY" value="">Gets the object's velocity.</Word> <Word name="OBJECT_VELOCITY" value="">Gets the object's velocity.</Word>
<Word name="OBJECT_STREAMING_COST" value="15"></Word> <Word name="OBJECT_STREAMING_COST" value="15"></Word>

View file

@ -7,10 +7,33 @@
</head> </head>
<body style="background-color: white; font-family: Verdana, sans-serif;font-size: 13px;line-height: 1.3"> <body style="background-color: white; font-family: Verdana, sans-serif;font-size: 13px;line-height: 1.3">
<div> <div>
<div>
<h3><span class="date">2013-01-01</span> - Release 2.48.0</h3>
<div>
* Constants Added (thanks to Lucia Nightfire):
<ul>
<li>OBJECT_PHANTOM</li>
<li>OBJECT_PHYSICS</li>
<li>OBJECT_TEMP_ON_REZ</li>
</ul>
</div>
</div>
<div>
<h3><span class="date">2012-12-25</span> - Release 2.47.2</h3>
<div>
* Fixed:
<ul>
<li>Accidentally added the Link parameter to llClearPrimMedia when correcting llClearLinkMedia.</li>
<li>llWanderWithin - Corrected second argument to be vector instead of float.</li>
<li>Bug 28 - Alt-F4 or File-Exit does not close unsaved documents.</li>
<li>Bug 29 - llAngleBetween returns wrong values. Still not 100% accurate. Uses the improved code from the LSL Portal.</li>
</ul>
</div>
</div>
<div> <div>
<h3><span class="date">2012-11-26</span> - Release 2.47.1</h3> <h3><span class="date">2012-11-26</span> - Release 2.47.1</h3>
<div> <div>
* Funtions Added: * Functions Added:
<ul> <ul>
<li>llAttachToAvatarTemp</li> <li>llAttachToAvatarTemp</li>
<li>llGetSimStats</li> <li>llGetSimStats</li>
@ -63,12 +86,12 @@
<li></li> <li></li>
</ul> </ul>
</div> </div>
<div> <div>
* Fixed: * Fixed:
<ul> <ul>
<li>Removed several duplicate names from the Help => About dialogue.</li> <li>Removed several duplicate names from the Help => About dialogue.</li>
</ul> </ul>
</div> </div>
</div> </div>
<div> <div>
<h3><span class="date">2012-11-18</span> - Release 2.47.0</h3> <h3><span class="date">2012-11-18</span> - Release 2.47.0</h3>

View file

@ -447,6 +447,9 @@ namespace LSLEditor
public static readonly integer OBJECT_PATHFINDING_TYPE = 20; public static readonly integer OBJECT_PATHFINDING_TYPE = 20;
public static readonly integer OBJECT_GROUP = 7; public static readonly integer OBJECT_GROUP = 7;
public static readonly integer OBJECT_CREATOR = 8; public static readonly integer OBJECT_CREATOR = 8;
public static readonly integer OBJECT_PHYSICS = 21;
public static readonly integer OBJECT_PHANTOM = 22;
public static readonly integer OBJECT_TEMP_ON_REZ = 23;
public static readonly integer OBJECT_STREAMING_COST = 15; public static readonly integer OBJECT_STREAMING_COST = 15;
public static readonly integer OBJECT_PHYSICS_COST = 16; public static readonly integer OBJECT_PHYSICS_COST = 16;
@ -1203,11 +1206,20 @@ namespace LSLEditor
public Float llAngleBetween(rotation a, rotation b) public Float llAngleBetween(rotation a, rotation b)
{ {
double Angle = 2 * Math.Acos((a.x * b.x + a.y * b.y + a.z * b.z + a.s * b.s) rotation r = b / a; // calculate the rotation between the two arguments as quaternion
/ Math.Sqrt((a.x * a.x + a.y * a.y + a.z * a.z + a.s * a.s) * double s2 = r.s * r.s; // square of the s-element
(b.x * b.x + b.y * b.y + b.z * b.z + b.s * b.s))); double v2 = r.x * r.x + r.y * r.y + r.z * r.z; // sum of the squares of the v-elements
Verbose("AngleBetween(" + a + "," + b + ")=" + Angle);
return Angle; if (s2 < v2) // compare the s-component to the v-component
{
return 2.0 * Math.Acos(Math.Sqrt(s2 / (s2 + v2))); // use arccos if the v-component is dominant
}
else if (v2 != 0) // make sure the v-component is non-zero
{
return 2.0 * Math.Asin(Math.Sqrt(v2 / (s2 + v2))); // use arcsin if the s-component is dominant
}
return 0.0; // one or both arguments are scaled too small to be meaningful, or the values are the same, so return zero
// implementation taken from LSL Portal. http://wiki.secondlife.com/w/index.php?title=LlAngleBetween
} }
public void llApplyImpulse(vector force, integer local) public void llApplyImpulse(vector force, integer local)