diff options
-rw-r--r-- | OpenSim/Region/Environment/Scenes/SimStatsReporter.cs | 7 | ||||
-rw-r--r-- | OpenSim/Region/Physics/OdePlugin/OdePlugin.cs | 2 | ||||
-rw-r--r-- | OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs | 31 | ||||
-rw-r--r-- | bin/libsecondlife.dll | bin | 1560576 -> 1560576 bytes |
4 files changed, 35 insertions, 5 deletions
diff --git a/OpenSim/Region/Environment/Scenes/SimStatsReporter.cs b/OpenSim/Region/Environment/Scenes/SimStatsReporter.cs index 150c519..3bd7e4a 100644 --- a/OpenSim/Region/Environment/Scenes/SimStatsReporter.cs +++ b/OpenSim/Region/Environment/Scenes/SimStatsReporter.cs | |||
@@ -59,7 +59,12 @@ namespace OpenSim.Region.Environment.Scenes | |||
59 | OutPacketsPerSecond = 18, | 59 | OutPacketsPerSecond = 18, |
60 | PendingDownloads = 19, | 60 | PendingDownloads = 19, |
61 | PendingUploads = 20, | 61 | PendingUploads = 20, |
62 | UnAckedBytes = 24 | 62 | UnAckedBytes = 24, |
63 | |||
64 | // Havok4 related... May or may not be in upcoming LLclients | ||
65 | // (kelly added them sometime late in January 2008) | ||
66 | NumRCCSLODReduced = 25, | ||
67 | NumRCCSFixed = 26 | ||
63 | } | 68 | } |
64 | 69 | ||
65 | // Sending a stats update every 3 seconds | 70 | // Sending a stats update every 3 seconds |
diff --git a/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs b/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs index 65ba4b4..d25b8c0 100644 --- a/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs +++ b/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs | |||
@@ -211,7 +211,7 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
211 | 211 | ||
212 | while (d.SpaceLockQuery(space)) | 212 | while (d.SpaceLockQuery(space)) |
213 | { | 213 | { |
214 | int i = 0; | 214 | |
215 | } | 215 | } |
216 | 216 | ||
217 | 217 | ||
diff --git a/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs b/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs index b11ad05..9167632 100644 --- a/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs +++ b/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs | |||
@@ -2162,7 +2162,7 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
2162 | switch ((int)rules.Data[i]) | 2162 | switch ((int)rules.Data[i]) |
2163 | { | 2163 | { |
2164 | case (int)LSL_BaseClass.PSYS_PART_FLAGS: | 2164 | case (int)LSL_BaseClass.PSYS_PART_FLAGS: |
2165 | prules.PartFlags = (uint)Convert.ToInt32(rules.Data[i + 1].ToString()); | 2165 | prules.PartDataFlags = (Primitive.ParticleSystem.ParticleDataFlags)((uint)Convert.ToInt32(rules.Data[i + 1].ToString())); |
2166 | break; | 2166 | break; |
2167 | 2167 | ||
2168 | case (int)LSL_BaseClass.PSYS_PART_START_COLOR: | 2168 | case (int)LSL_BaseClass.PSYS_PART_START_COLOR: |
@@ -2204,8 +2204,8 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
2204 | break; | 2204 | break; |
2205 | 2205 | ||
2206 | case (int)LSL_BaseClass.PSYS_PART_MAX_AGE: | 2206 | case (int)LSL_BaseClass.PSYS_PART_MAX_AGE: |
2207 | //tempf = (LSL_Types.LSLFloat)rules.Data[i + 1]; | 2207 | tempf = Convert.ToSingle(rules.Data[i + 1].ToString()); |
2208 | prules.MaxAge = 7;//(float)tempf; | 2208 | prules.PartMaxAge = (float)tempf; |
2209 | break; | 2209 | break; |
2210 | 2210 | ||
2211 | case (int)LSL_BaseClass.PSYS_SRC_ACCEL: | 2211 | case (int)LSL_BaseClass.PSYS_SRC_ACCEL: |
@@ -2279,6 +2279,31 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
2279 | 2279 | ||
2280 | } | 2280 | } |
2281 | prules.CRC = 1; | 2281 | prules.CRC = 1; |
2282 | Console.WriteLine("----------ps----------\n"); | ||
2283 | Console.WriteLine(" AngularVelocity:" + prules.AngularVelocity.ToString() + "\n" + | ||
2284 | " BurstPartCount:" + prules.BurstPartCount.ToString() + "\n" + | ||
2285 | " BurstRadius:" + prules.BurstRadius.ToString() + "\n" + | ||
2286 | " BurstRate:" + prules.BurstRate.ToString() + "\n" + | ||
2287 | " BurstSpeedMax:" + prules.BurstSpeedMax.ToString() + "\n" + | ||
2288 | " BurstSpeedMin:" + prules.BurstSpeedMin.ToString() + "\n" + | ||
2289 | " CRC:" + prules.CRC.ToString() + "\n" + | ||
2290 | " InnerAngle:" + prules.InnerAngle.ToString() + "\n" + | ||
2291 | " MaxAge:" + prules.MaxAge.ToString() + "\n" + | ||
2292 | " OuterAngle:" + prules.OuterAngle.ToString() + "\n" + | ||
2293 | " PartAcceleration:" + prules.PartAcceleration.ToString() + "\n" + | ||
2294 | " PartDataFlags:" + prules.PartDataFlags.ToString() + "\n" + | ||
2295 | " PartEndColor:" + prules.PartEndColor.ToString() + "\n" + | ||
2296 | " PartEndScaleX:" + prules.PartEndScaleX.ToString() + "\n" + | ||
2297 | " PartEndScaleY:" + prules.PartEndScaleY.ToString() + "\n" + | ||
2298 | " PartFlags:" + prules.PartFlags.ToString() + "\n" + | ||
2299 | " PartMaxAge:" + prules.PartMaxAge.ToString() + "\n" + | ||
2300 | " PartStartColor:" + prules.PartStartColor.ToString() + "\n" + | ||
2301 | " PartStartScaleX:" + prules.PartStartScaleX.ToString() + "\n" + | ||
2302 | " PartStartScaleY:" + prules.PartStartScaleY.ToString() + "\n" + | ||
2303 | " Pattern:" + prules.Pattern.ToString() + "\n" + | ||
2304 | " StartAge:" + prules.StartAge.ToString() + "\n" + | ||
2305 | " Target:" + prules.Target.ToString() + "\n" + | ||
2306 | " Texture:" + prules.Texture.ToString() + ""); | ||
2282 | OpenSim.Framework.Console.MainLog.Instance.Verbose("PARTICLE", "PS: " + prules.ToString()); | 2307 | OpenSim.Framework.Console.MainLog.Instance.Verbose("PARTICLE", "PS: " + prules.ToString()); |
2283 | m_host.AddNewParticleSystem(prules); | 2308 | m_host.AddNewParticleSystem(prules); |
2284 | m_host.SendFullUpdateToAllClients(); | 2309 | m_host.SendFullUpdateToAllClients(); |
diff --git a/bin/libsecondlife.dll b/bin/libsecondlife.dll index 6c20c19..9293268 100644 --- a/bin/libsecondlife.dll +++ b/bin/libsecondlife.dll | |||
Binary files differ | |||