diff options
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api')
4 files changed, 20 insertions, 1 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs index 7494b88..ebd281e 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs | |||
@@ -5554,5 +5554,17 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
5554 | DateTime time = TimeZoneInfo.ConvertTime(DateTime.UtcNow, PSTTimeZone); | 5554 | DateTime time = TimeZoneInfo.ConvertTime(DateTime.UtcNow, PSTTimeZone); |
5555 | return time.TimeOfDay.TotalSeconds; | 5555 | return time.TimeOfDay.TotalSeconds; |
5556 | } | 5556 | } |
5557 | |||
5558 | public LSL_Rotation osSlerp(LSL_Rotation a, LSL_Rotation b, LSL_Float amount) | ||
5559 | { | ||
5560 | if(amount < 0) | ||
5561 | amount= 0; | ||
5562 | else if(amount > 1.0) | ||
5563 | amount = 1.0; | ||
5564 | a.Normalize(); | ||
5565 | b.Normalize(); | ||
5566 | |||
5567 | return LSL_Rotation.Slerp(a, b, amount); | ||
5568 | } | ||
5557 | } | 5569 | } |
5558 | } \ No newline at end of file | 5570 | } \ No newline at end of file |
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs index 1bd6e08..369b361 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs | |||
@@ -36,6 +36,7 @@ using LSL_List = OpenSim.Region.ScriptEngine.Shared.LSL_Types.list; | |||
36 | using LSL_String = OpenSim.Region.ScriptEngine.Shared.LSL_Types.LSLString; | 36 | using LSL_String = OpenSim.Region.ScriptEngine.Shared.LSL_Types.LSLString; |
37 | using LSL_Integer = OpenSim.Region.ScriptEngine.Shared.LSL_Types.LSLInteger; | 37 | using LSL_Integer = OpenSim.Region.ScriptEngine.Shared.LSL_Types.LSLInteger; |
38 | using LSL_Float = OpenSim.Region.ScriptEngine.Shared.LSL_Types.LSLFloat; | 38 | using LSL_Float = OpenSim.Region.ScriptEngine.Shared.LSL_Types.LSLFloat; |
39 | using LSL_Rotation = OpenSim.Region.ScriptEngine.Shared.LSL_Types.Quaternion; | ||
39 | using LSL_Key = OpenSim.Region.ScriptEngine.Shared.LSL_Types.LSLString; | 40 | using LSL_Key = OpenSim.Region.ScriptEngine.Shared.LSL_Types.LSLString; |
40 | 41 | ||
41 | 42 | ||
@@ -554,5 +555,6 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api.Interfaces | |||
554 | LSL_String osGetInventoryDesc(LSL_String itemNameOrId); | 555 | LSL_String osGetInventoryDesc(LSL_String itemNameOrId); |
555 | LSL_Key osGetLastChangedEventKey(); | 556 | LSL_Key osGetLastChangedEventKey(); |
556 | LSL_Float osGetPSTWallclock(); | 557 | LSL_Float osGetPSTWallclock(); |
558 | LSL_Rotation osSlerp(LSL_Rotation a, LSL_Rotation b, LSL_Float amount); | ||
557 | } | 559 | } |
558 | } | 560 | } |
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs index 3f880e4..7edda58 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs | |||
@@ -35,7 +35,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase | |||
35 | public partial class ScriptBaseClass | 35 | public partial class ScriptBaseClass |
36 | { | 36 | { |
37 | // SCRIPTS CONSTANTS | 37 | // SCRIPTS CONSTANTS |
38 | public static readonly LSLInteger OS_APIVERSION = 7; | 38 | public static readonly LSLInteger OS_APIVERSION = 8; |
39 | 39 | ||
40 | public static readonly LSLInteger TRUE = 1; | 40 | public static readonly LSLInteger TRUE = 1; |
41 | public static readonly LSLInteger FALSE = 0; | 41 | public static readonly LSLInteger FALSE = 0; |
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs index 549047c..866a955 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs | |||
@@ -1407,5 +1407,10 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase | |||
1407 | return m_OSSL_Functions.osGetPSTWallclock(); | 1407 | return m_OSSL_Functions.osGetPSTWallclock(); |
1408 | } | 1408 | } |
1409 | 1409 | ||
1410 | public rotation osSlerp(rotation a, rotation b, LSL_Float amount) | ||
1411 | { | ||
1412 | return m_OSSL_Functions.osSlerp(a, b, amount); | ||
1413 | } | ||
1414 | |||
1410 | } | 1415 | } |
1411 | } | 1416 | } |