Merge branch 'ubitwork' of ssh://3dhosting.de/var/git/careminster into ubitwork
commit
9997466632
|
@ -7902,12 +7902,41 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
|
||||||
ScriptSleep(200);
|
ScriptSleep(200);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// vector up using libomv (c&p from sop )
|
||||||
|
// vector up rotated by r
|
||||||
|
private Vector3 Zrot(Quaternion r)
|
||||||
|
{
|
||||||
|
double x, y, z, m;
|
||||||
|
|
||||||
|
m = r.X * r.X + r.Y * r.Y + r.Z * r.Z + r.W * r.W;
|
||||||
|
if (Math.Abs(1.0 - m) > 0.000001)
|
||||||
|
{
|
||||||
|
m = 1.0 / Math.Sqrt(m);
|
||||||
|
r.X *= (float)m;
|
||||||
|
r.Y *= (float)m;
|
||||||
|
r.Z *= (float)m;
|
||||||
|
r.W *= (float)m;
|
||||||
|
}
|
||||||
|
|
||||||
|
x = 2 * (r.X * r.Z + r.Y * r.W);
|
||||||
|
y = 2 * (-r.X * r.W + r.Y * r.Z);
|
||||||
|
z = -r.X * r.X - r.Y * r.Y + r.Z * r.Z + r.W * r.W;
|
||||||
|
|
||||||
|
return new Vector3((float)x, (float)y, (float)z);
|
||||||
|
}
|
||||||
|
|
||||||
protected void SetPrimParams(ScenePresence av, LSL_List rules)
|
protected void SetPrimParams(ScenePresence av, LSL_List rules)
|
||||||
{
|
{
|
||||||
//This is a special version of SetPrimParams to deal with avatars which are sat on the linkset.
|
//This is a special version of SetPrimParams to deal with avatars which are sat on the linkset.
|
||||||
|
|
||||||
int idx = 0;
|
int idx = 0;
|
||||||
|
SceneObjectPart sitpart = World.GetSceneObjectPart(av.ParentID); // betting this will be used
|
||||||
|
|
||||||
|
bool positionChanged = false;
|
||||||
|
Vector3 finalPos = Vector3.Zero;
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
while (idx < rules.Length)
|
while (idx < rules.Length)
|
||||||
{
|
{
|
||||||
int code = rules.GetLSLIntegerItem(idx++);
|
int code = rules.GetLSLIntegerItem(idx++);
|
||||||
|
@ -7916,38 +7945,8 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
|
||||||
|
|
||||||
switch (code)
|
switch (code)
|
||||||
{
|
{
|
||||||
|
// a avatar is a child
|
||||||
case (int)ScriptBaseClass.PRIM_POSITION:
|
case (int)ScriptBaseClass.PRIM_POSITION:
|
||||||
{
|
|
||||||
if (remain < 1)
|
|
||||||
return;
|
|
||||||
LSL_Vector v;
|
|
||||||
v = rules.GetVector3Item(idx++);
|
|
||||||
|
|
||||||
SceneObjectPart part = World.GetSceneObjectPart(av.ParentID);
|
|
||||||
if (part == null)
|
|
||||||
break;
|
|
||||||
|
|
||||||
LSL_Rotation localRot = ScriptBaseClass.ZERO_ROTATION;
|
|
||||||
LSL_Vector localPos = ScriptBaseClass.ZERO_VECTOR;
|
|
||||||
if (llGetLinkNumber() > 1)
|
|
||||||
{
|
|
||||||
localRot = llGetLocalRot();
|
|
||||||
localPos = llGetLocalPos();
|
|
||||||
}
|
|
||||||
|
|
||||||
v -= localPos;
|
|
||||||
v /= localRot;
|
|
||||||
|
|
||||||
LSL_Vector sitOffset = (llRot2Up(new LSL_Rotation(av.Rotation.X, av.Rotation.Y, av.Rotation.Z, av.Rotation.W)) * av.Appearance.AvatarHeight * 0.02638f);
|
|
||||||
|
|
||||||
v = v + 2 * sitOffset;
|
|
||||||
|
|
||||||
av.OffsetPosition = new Vector3((float)v.x, (float)v.y, (float)v.z);
|
|
||||||
av.SendAvatarDataToAllAgents();
|
|
||||||
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
|
|
||||||
case (int)ScriptBaseClass.PRIM_POS_LOCAL:
|
case (int)ScriptBaseClass.PRIM_POS_LOCAL:
|
||||||
{
|
{
|
||||||
if (remain < 1)
|
if (remain < 1)
|
||||||
|
@ -7955,17 +7954,21 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
|
||||||
LSL_Vector v;
|
LSL_Vector v;
|
||||||
v = rules.GetVector3Item(idx++);
|
v = rules.GetVector3Item(idx++);
|
||||||
|
|
||||||
SceneObjectPart part = World.GetSceneObjectPart(av.ParentID);
|
if (sitpart == null)
|
||||||
if (part == null)
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
LSL_Vector sitOffset = (llRot2Up(new LSL_Rotation(av.Rotation.X, av.Rotation.Y, av.Rotation.Z, av.Rotation.W)) * av.Appearance.AvatarHeight * 0.02638f);
|
Vector3 pos = new Vector3((float)v.x, (float)v.y, (float)v.z); // requested absolute position
|
||||||
|
|
||||||
v += 2 * sitOffset;
|
pos -= sitpart.OffsetPosition; // remove sit part offset
|
||||||
|
|
||||||
av.OffsetPosition = new Vector3((float)v.x, (float)v.y, (float)v.z);
|
Quaternion rot = sitpart.RotationOffset;
|
||||||
av.SendAvatarDataToAllAgents();
|
pos *= Quaternion.Conjugate(rot); // removed sit part rotation
|
||||||
|
|
||||||
|
Vector3 sitOffset = (Zrot(av.Rotation)) * (av.Appearance.AvatarHeight * 0.02638f);
|
||||||
|
pos += sitOffset;
|
||||||
|
|
||||||
|
finalPos = pos;
|
||||||
|
positionChanged = true;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
@ -7974,18 +7977,16 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
|
||||||
if (remain < 1)
|
if (remain < 1)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
LSL_Rotation localRot = ScriptBaseClass.ZERO_ROTATION;
|
if (sitpart == null)
|
||||||
LSL_Vector localPos = ScriptBaseClass.ZERO_VECTOR;
|
break;
|
||||||
if (llGetLinkNumber() > 1)
|
|
||||||
{
|
|
||||||
localRot = llGetLocalRot();
|
|
||||||
localPos = llGetLocalPos();
|
|
||||||
}
|
|
||||||
|
|
||||||
LSL_Rotation r;
|
LSL_Rotation r = rules.GetQuaternionItem(idx++);
|
||||||
r = rules.GetQuaternionItem(idx++);
|
Quaternion rot = new Quaternion((float)r.x, (float)r.y, (float)r.z, (float)r.s); // requested world rotation
|
||||||
r = r * llGetRootRotation() / localRot;
|
|
||||||
av.Rotation = new Quaternion((float)r.x, (float)r.y, (float)r.z, (float)r.s);
|
Quaternion srot = sitpart.GetWorldRotation();
|
||||||
|
rot *= Quaternion.Conjugate(srot); // removed sit part world rotation
|
||||||
|
|
||||||
|
av.Rotation = rot;
|
||||||
av.SendAvatarDataToAllAgents();
|
av.SendAvatarDataToAllAgents();
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
@ -7995,9 +7996,16 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
|
||||||
if (remain < 1)
|
if (remain < 1)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
LSL_Rotation r;
|
if (sitpart == null)
|
||||||
r = rules.GetQuaternionItem(idx++);
|
break;
|
||||||
av.Rotation = new Quaternion((float)r.x, (float)r.y, (float)r.z, (float)r.s);
|
|
||||||
|
LSL_Rotation r = rules.GetQuaternionItem(idx++);
|
||||||
|
Quaternion rot = new Quaternion((float)r.x, (float)r.y, (float)r.z, (float)r.s); // requested offset rotation
|
||||||
|
|
||||||
|
Quaternion srot = sitpart.RotationOffset;
|
||||||
|
rot *= Quaternion.Conjugate(srot); // remove sit part offset rotation
|
||||||
|
|
||||||
|
av.Rotation = rot;
|
||||||
av.SendAvatarDataToAllAgents();
|
av.SendAvatarDataToAllAgents();
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
@ -8088,6 +8096,14 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
|
||||||
case (int)ScriptBaseClass.PRIM_LINK_TARGET:
|
case (int)ScriptBaseClass.PRIM_LINK_TARGET:
|
||||||
if (remain < 3) // setting to 3 on the basis that parsing any usage of PRIM_LINK_TARGET that has nothing following it is pointless.
|
if (remain < 3) // setting to 3 on the basis that parsing any usage of PRIM_LINK_TARGET that has nothing following it is pointless.
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
if (positionChanged)
|
||||||
|
{
|
||||||
|
positionChanged = false;
|
||||||
|
av.OffsetPosition = finalPos;
|
||||||
|
av.SendAvatarDataToAllAgents();
|
||||||
|
}
|
||||||
|
|
||||||
LSL_Integer new_linknumber = rules.GetLSLIntegerItem(idx++);
|
LSL_Integer new_linknumber = rules.GetLSLIntegerItem(idx++);
|
||||||
LSL_List new_rules = rules.GetSublist(idx, -1);
|
LSL_List new_rules = rules.GetSublist(idx, -1);
|
||||||
setLinkPrimParams((int)new_linknumber, new_rules);
|
setLinkPrimParams((int)new_linknumber, new_rules);
|
||||||
|
@ -8096,6 +8112,17 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
finally
|
||||||
|
{
|
||||||
|
if (positionChanged)
|
||||||
|
{
|
||||||
|
av.OffsetPosition = finalPos;
|
||||||
|
av.SendAvatarDataToAllAgents();
|
||||||
|
positionChanged = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
protected void SetPrimParams(SceneObjectPart part, LSL_List rules)
|
protected void SetPrimParams(SceneObjectPart part, LSL_List rules)
|
||||||
{
|
{
|
||||||
if (part == null || part.ParentGroup == null || part.ParentGroup.IsDeleted)
|
if (part == null || part.ParentGroup == null || part.ParentGroup.IsDeleted)
|
||||||
|
@ -8127,8 +8154,8 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
|
||||||
return;
|
return;
|
||||||
|
|
||||||
v=rules.GetVector3Item(idx++);
|
v=rules.GetVector3Item(idx++);
|
||||||
positionChanged = true;
|
|
||||||
currentPosition = GetSetPosTarget(part, v, currentPosition);
|
currentPosition = GetSetPosTarget(part, v, currentPosition);
|
||||||
|
positionChanged = true;
|
||||||
|
|
||||||
break;
|
break;
|
||||||
case (int)ScriptBaseClass.PRIM_SIZE:
|
case (int)ScriptBaseClass.PRIM_SIZE:
|
||||||
|
@ -8510,13 +8537,15 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
|
||||||
LSL_Float gain = rules.GetLSLFloatItem(idx++);
|
LSL_Float gain = rules.GetLSLFloatItem(idx++);
|
||||||
TargetOmega(part, axis, (double)spinrate, (double)gain);
|
TargetOmega(part, axis, (double)spinrate, (double)gain);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case (int)ScriptBaseClass.PRIM_LINK_TARGET:
|
case (int)ScriptBaseClass.PRIM_LINK_TARGET:
|
||||||
if (remain < 3) // setting to 3 on the basis that parsing any usage of PRIM_LINK_TARGET that has nothing following it is pointless.
|
if (remain < 3) // setting to 3 on the basis that parsing any usage of PRIM_LINK_TARGET that has nothing following it is pointless.
|
||||||
return;
|
return;
|
||||||
|
|
||||||
// do a pending position change
|
// do a pending position change before jumping to other part/avatar
|
||||||
if (positionChanged)
|
if (positionChanged)
|
||||||
{
|
{
|
||||||
|
positionChanged = false;
|
||||||
if (parentgrp == null)
|
if (parentgrp == null)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
@ -8545,7 +8574,6 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
|
||||||
}
|
}
|
||||||
finally
|
finally
|
||||||
{
|
{
|
||||||
/*
|
|
||||||
if (positionChanged)
|
if (positionChanged)
|
||||||
{
|
{
|
||||||
if (part.ParentGroup.RootPart == part)
|
if (part.ParentGroup.RootPart == part)
|
||||||
|
@ -8563,27 +8591,6 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
|
||||||
parent.ScheduleGroupForTerseUpdate();
|
parent.ScheduleGroupForTerseUpdate();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
*/
|
|
||||||
}
|
|
||||||
|
|
||||||
if (positionChanged)
|
|
||||||
{
|
|
||||||
if (parentgrp == null)
|
|
||||||
return;
|
|
||||||
|
|
||||||
if (parentgrp.RootPart == part)
|
|
||||||
{
|
|
||||||
|
|
||||||
Util.FireAndForget(delegate(object x) {
|
|
||||||
parentgrp.UpdateGroupPosition(new Vector3((float)currentPosition.x, (float)currentPosition.y, (float)currentPosition.z));
|
|
||||||
});
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
part.OffsetPosition = new Vector3((float)currentPosition.x, (float)currentPosition.y, (float)currentPosition.z);
|
|
||||||
parentgrp.HasGroupChanged = true;
|
|
||||||
parentgrp.ScheduleGroupForTerseUpdate();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -8914,7 +8921,9 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
|
||||||
// replies as SL wiki
|
// replies as SL wiki
|
||||||
|
|
||||||
LSL_List res = new LSL_List();
|
LSL_List res = new LSL_List();
|
||||||
SceneObjectPart sitPart = avatar.ParentPart; // most likelly it will be needed
|
// SceneObjectPart sitPart = avatar.ParentPart; // most likelly it will be needed
|
||||||
|
SceneObjectPart sitPart = World.GetSceneObjectPart(avatar.ParentID); // maybe better do this expensive search for it in case it's gone??
|
||||||
|
|
||||||
int idx = 0;
|
int idx = 0;
|
||||||
while (idx < rules.Length)
|
while (idx < rules.Length)
|
||||||
{
|
{
|
||||||
|
@ -8941,6 +8950,8 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
|
||||||
|
|
||||||
case (int)ScriptBaseClass.PRIM_POSITION:
|
case (int)ScriptBaseClass.PRIM_POSITION:
|
||||||
Vector3 pos = avatar.AbsolutePosition;
|
Vector3 pos = avatar.AbsolutePosition;
|
||||||
|
Vector3 sitOffset = (Zrot(avatar.Rotation)) * (avatar.Appearance.AvatarHeight * 0.02638f);
|
||||||
|
pos -= sitOffset;
|
||||||
res.Add(new LSL_Vector(pos.X,pos.Y,pos.Z));
|
res.Add(new LSL_Vector(pos.X,pos.Y,pos.Z));
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
@ -9139,8 +9150,19 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
|
||||||
{
|
{
|
||||||
lpos = sitPart.OffsetPosition + (lpos * sitPart.RotationOffset); // make it relative to root prim
|
lpos = sitPart.OffsetPosition + (lpos * sitPart.RotationOffset); // make it relative to root prim
|
||||||
}
|
}
|
||||||
|
Vector3 lsitOffset = (Zrot(avatar.Rotation)) * (avatar.Appearance.AvatarHeight * 0.02638f);
|
||||||
|
lpos -= lsitOffset;
|
||||||
res.Add(new LSL_Vector(lpos.X,lpos.Y,lpos.Z));
|
res.Add(new LSL_Vector(lpos.X,lpos.Y,lpos.Z));
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case (int)ScriptBaseClass.PRIM_LINK_TARGET:
|
||||||
|
if (remain < 3) // setting to 3 on the basis that parsing any usage of PRIM_LINK_TARGET that has nothing following it is pointless.
|
||||||
|
return res;
|
||||||
|
LSL_Integer new_linknumber = rules.GetLSLIntegerItem(idx++);
|
||||||
|
LSL_List new_rules = rules.GetSublist(idx, -1);
|
||||||
|
|
||||||
|
res += llGetLinkPrimitiveParams((int)new_linknumber, new_rules);
|
||||||
|
return res;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return res;
|
return res;
|
||||||
|
@ -9532,6 +9554,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
|
||||||
res.Add(new LSL_Float(primglow));
|
res.Add(new LSL_Float(primglow));
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case (int)ScriptBaseClass.PRIM_TEXT:
|
case (int)ScriptBaseClass.PRIM_TEXT:
|
||||||
Color4 textColor = part.GetTextColor();
|
Color4 textColor = part.GetTextColor();
|
||||||
res.Add(new LSL_String(part.Text));
|
res.Add(new LSL_String(part.Text));
|
||||||
|
@ -9540,18 +9563,31 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
|
||||||
textColor.B));
|
textColor.B));
|
||||||
res.Add(new LSL_Float(textColor.A));
|
res.Add(new LSL_Float(textColor.A));
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case (int)ScriptBaseClass.PRIM_NAME:
|
case (int)ScriptBaseClass.PRIM_NAME:
|
||||||
res.Add(new LSL_String(part.Name));
|
res.Add(new LSL_String(part.Name));
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case (int)ScriptBaseClass.PRIM_DESC:
|
case (int)ScriptBaseClass.PRIM_DESC:
|
||||||
res.Add(new LSL_String(part.Description));
|
res.Add(new LSL_String(part.Description));
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case (int)ScriptBaseClass.PRIM_ROT_LOCAL:
|
case (int)ScriptBaseClass.PRIM_ROT_LOCAL:
|
||||||
res.Add(new LSL_Rotation(part.RotationOffset.X, part.RotationOffset.Y, part.RotationOffset.Z, part.RotationOffset.W));
|
res.Add(new LSL_Rotation(part.RotationOffset.X, part.RotationOffset.Y, part.RotationOffset.Z, part.RotationOffset.W));
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case (int)ScriptBaseClass.PRIM_POS_LOCAL:
|
case (int)ScriptBaseClass.PRIM_POS_LOCAL:
|
||||||
res.Add(new LSL_Vector(GetPartLocalPos(part)));
|
res.Add(new LSL_Vector(GetPartLocalPos(part)));
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case (int)ScriptBaseClass.PRIM_LINK_TARGET:
|
||||||
|
if (remain < 3) // setting to 3 on the basis that parsing any usage of PRIM_LINK_TARGET that has nothing following it is pointless.
|
||||||
|
return res;
|
||||||
|
LSL_Integer new_linknumber = rules.GetLSLIntegerItem(idx++);
|
||||||
|
LSL_List new_rules = rules.GetSublist(idx, -1);
|
||||||
|
LSL_List tres = llGetLinkPrimitiveParams((int)new_linknumber, new_rules);
|
||||||
|
res += tres;
|
||||||
|
return res;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return res;
|
return res;
|
||||||
|
|
Loading…
Reference in New Issue