* Adding the first (of many to come) unit tests for Simian

* Removed Simian's Agent.AgentID, it was redundant with Agent.Avatar.ID
* Added IUDPProvider.OnOutgoingPacket to hook all outgoing Simian packets (for testing)

git-svn-id: http://libopenmetaverse.googlecode.com/svn/libopenmetaverse/trunk@2386 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
John Hurliman
2008-12-21 02:09:54 +00:00
parent 1df78cb074
commit e611558add
22 changed files with 323 additions and 177 deletions

View File

@@ -57,7 +57,7 @@ namespace Simian.Extensions
handshake.RegionInfo.TerrainStartHeight11 = 40f;
handshake.RegionInfo2.RegionID = UUID.Random();
server.UDP.SendPacket(agent.AgentID, handshake, PacketCategory.Transaction);
server.UDP.SendPacket(agent.Avatar.ID, handshake, PacketCategory.Transaction);
}
void StartPingCheckHandler(Packet packet, Agent agent)
@@ -68,7 +68,7 @@ namespace Simian.Extensions
complete.Header.Reliable = false;
complete.PingID.PingID = start.PingID.PingID;
server.UDP.SendPacket(agent.AgentID, complete, PacketCategory.Overhead);
server.UDP.SendPacket(agent.Avatar.ID, complete, PacketCategory.Overhead);
}
void LogoutRequestHandler(Packet packet, Agent agent)
@@ -76,13 +76,13 @@ namespace Simian.Extensions
LogoutRequestPacket request = (LogoutRequestPacket)packet;
LogoutReplyPacket reply = new LogoutReplyPacket();
reply.AgentData.AgentID = agent.AgentID;
reply.AgentData.AgentID = agent.Avatar.ID;
reply.AgentData.SessionID = agent.SessionID;
reply.InventoryData = new LogoutReplyPacket.InventoryDataBlock[1];
reply.InventoryData[0] = new LogoutReplyPacket.InventoryDataBlock();
reply.InventoryData[0].ItemID = UUID.Zero;
server.UDP.SendPacket(agent.AgentID, reply, PacketCategory.Transaction);
server.UDP.SendPacket(agent.Avatar.ID, reply, PacketCategory.Transaction);
server.Avatars.Disconnect(agent);
}