Files
libremetaverse/Programs/examples/TestClient/Commands/Prims/PrimCountCommand.cs

38 lines
1014 B
C#
Raw Normal View History

using System;
using OpenMetaverse;
namespace OpenMetaverse.TestClient
{
public class PrimCountCommand: Command
{
public PrimCountCommand(TestClient testClient)
{
Name = "primcount";
Description = "Shows the number of objects currently being tracked.";
Category = CommandCategory.TestClient;
}
public override string Execute(string[] args, UUID fromAgentID)
{
int count = 0;
lock (Client.Network.Simulators)
{
2021-07-25 11:10:52 -05:00
foreach (var sim in Client.Network.Simulators)
{
2021-07-25 11:10:52 -05:00
int avcount = sim.ObjectsAvatars.Count;
int primcount = sim.ObjectsPrimitives.Count;
Console.WriteLine("{0} (Avatars: {1} Primitives: {2})",
2021-07-25 11:10:52 -05:00
sim.Name, avcount, primcount);
count += avcount;
count += primcount;
}
}
return "Tracking a total of " + count + " objects";
}
}
}