Whitespace cleanup (changed hard tabs to 4 spaces)
parent
8ca37dbefa
commit
004c751a1b
|
@ -455,44 +455,44 @@ namespace OpenSim.Framework
|
||||||
|
|
||||||
public delegate void MuteListEntryUpdate(IClientAPI client, UUID MuteID, string Name, int Flags,UUID AgentID);
|
public delegate void MuteListEntryUpdate(IClientAPI client, UUID MuteID, string Name, int Flags,UUID AgentID);
|
||||||
|
|
||||||
public delegate void MuteListEntryRemove(IClientAPI client, UUID MuteID, string Name, UUID AgentID);
|
public delegate void MuteListEntryRemove(IClientAPI client, UUID MuteID, string Name, UUID AgentID);
|
||||||
|
|
||||||
public delegate void AvatarInterestReply(IClientAPI client,UUID target, uint wantmask, string wanttext, uint skillsmask, string skillstext, string languages);
|
public delegate void AvatarInterestReply(IClientAPI client,UUID target, uint wantmask, string wanttext, uint skillsmask, string skillstext, string languages);
|
||||||
|
|
||||||
public delegate void FindAgentUpdate(IClientAPI client, UUID hunter, UUID target);
|
public delegate void FindAgentUpdate(IClientAPI client, UUID hunter, UUID target);
|
||||||
|
|
||||||
public delegate void TrackAgentUpdate(IClientAPI client, UUID hunter, UUID target);
|
public delegate void TrackAgentUpdate(IClientAPI client, UUID hunter, UUID target);
|
||||||
|
|
||||||
public delegate void FreezeUserUpdate(IClientAPI client, UUID parcelowner,uint flags, UUID target);
|
public delegate void FreezeUserUpdate(IClientAPI client, UUID parcelowner,uint flags, UUID target);
|
||||||
|
|
||||||
public delegate void EjectUserUpdate(IClientAPI client, UUID parcelowner,uint flags, UUID target);
|
public delegate void EjectUserUpdate(IClientAPI client, UUID parcelowner,uint flags, UUID target);
|
||||||
|
|
||||||
public delegate void NewUserReport(IClientAPI client, string regionName,UUID abuserID, byte catagory, byte checkflags, string details, UUID objectID, Vector3 postion, byte reportType ,UUID screenshotID, string summery, UUID reporter);
|
public delegate void NewUserReport(IClientAPI client, string regionName,UUID abuserID, byte catagory, byte checkflags, string details, UUID objectID, Vector3 postion, byte reportType ,UUID screenshotID, string summery, UUID reporter);
|
||||||
|
|
||||||
public delegate void GodUpdateRegionInfoUpdate(IClientAPI client, float BillableFactor, ulong EstateID, ulong RegionFlags, byte[] SimName,int RedirectX, int RedirectY);
|
public delegate void GodUpdateRegionInfoUpdate(IClientAPI client, float BillableFactor, ulong EstateID, ulong RegionFlags, byte[] SimName,int RedirectX, int RedirectY);
|
||||||
|
|
||||||
public delegate void GodlikeMessage(IClientAPI client, UUID requester, byte[] Method, byte[] Parameter);
|
public delegate void GodlikeMessage(IClientAPI client, UUID requester, byte[] Method, byte[] Parameter);
|
||||||
|
|
||||||
public delegate void SaveStateHandler(IClientAPI client,UUID agentID);
|
public delegate void SaveStateHandler(IClientAPI client,UUID agentID);
|
||||||
|
|
||||||
public delegate void GroupAccountSummaryRequest(IClientAPI client,UUID agentID, UUID groupID);
|
public delegate void GroupAccountSummaryRequest(IClientAPI client,UUID agentID, UUID groupID);
|
||||||
|
|
||||||
public delegate void GroupAccountDetailsRequest(IClientAPI client,UUID agentID, UUID groupID, UUID transactionID, UUID sessionID);
|
public delegate void GroupAccountDetailsRequest(IClientAPI client,UUID agentID, UUID groupID, UUID transactionID, UUID sessionID);
|
||||||
|
|
||||||
public delegate void GroupAccountTransactionsRequest(IClientAPI client,UUID agentID, UUID groupID, UUID transactionID, UUID sessionID);
|
public delegate void GroupAccountTransactionsRequest(IClientAPI client,UUID agentID, UUID groupID, UUID transactionID, UUID sessionID);
|
||||||
|
|
||||||
public delegate void ParcelBuyPass(IClientAPI client, UUID agentID, int ParcelLocalID);
|
public delegate void ParcelBuyPass(IClientAPI client, UUID agentID, int ParcelLocalID);
|
||||||
|
|
||||||
public delegate void ParcelGodMark(IClientAPI client, UUID agentID, int ParcelLocalID);
|
public delegate void ParcelGodMark(IClientAPI client, UUID agentID, int ParcelLocalID);
|
||||||
|
|
||||||
public delegate void GroupActiveProposalsRequest(IClientAPI client,UUID agentID, UUID groupID, UUID transactionID, UUID sessionID);
|
public delegate void GroupActiveProposalsRequest(IClientAPI client,UUID agentID, UUID groupID, UUID transactionID, UUID sessionID);
|
||||||
|
|
||||||
public delegate void GroupVoteHistoryRequest(IClientAPI client,UUID agentID, UUID groupID, UUID transactionID, UUID sessionID);
|
public delegate void GroupVoteHistoryRequest(IClientAPI client,UUID agentID, UUID groupID, UUID transactionID, UUID sessionID);
|
||||||
|
|
||||||
|
|
||||||
public delegate void SimWideDeletesDelegate(IClientAPI client,UUID agentID, int flags, UUID targetID);
|
public delegate void SimWideDeletesDelegate(IClientAPI client,UUID agentID, int flags, UUID targetID);
|
||||||
|
|
||||||
public delegate void SendPostcard(IClientAPI client);
|
public delegate void SendPostcard(IClientAPI client);
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
|
@ -1070,24 +1070,24 @@ namespace OpenSim.Framework
|
||||||
event PlacesQuery OnPlacesQuery;
|
event PlacesQuery OnPlacesQuery;
|
||||||
|
|
||||||
event FindAgentUpdate OnFindAgentEvent;
|
event FindAgentUpdate OnFindAgentEvent;
|
||||||
event TrackAgentUpdate OnTrackAgentEvent;
|
event TrackAgentUpdate OnTrackAgentEvent;
|
||||||
event NewUserReport OnUserReportEvent;
|
event NewUserReport OnUserReportEvent;
|
||||||
event SaveStateHandler OnSaveStateEvent;
|
event SaveStateHandler OnSaveStateEvent;
|
||||||
event GroupAccountSummaryRequest OnGroupAccountSummaryRequest;
|
event GroupAccountSummaryRequest OnGroupAccountSummaryRequest;
|
||||||
event GroupAccountDetailsRequest OnGroupAccountDetailsRequest;
|
event GroupAccountDetailsRequest OnGroupAccountDetailsRequest;
|
||||||
event GroupAccountTransactionsRequest OnGroupAccountTransactionsRequest;
|
event GroupAccountTransactionsRequest OnGroupAccountTransactionsRequest;
|
||||||
event FreezeUserUpdate OnParcelFreezeUserEvent;
|
event FreezeUserUpdate OnParcelFreezeUserEvent;
|
||||||
event EjectUserUpdate OnParcelEjectUserEvent;
|
event EjectUserUpdate OnParcelEjectUserEvent;
|
||||||
event ParcelBuyPass OnParcelBuyPass;
|
event ParcelBuyPass OnParcelBuyPass;
|
||||||
event ParcelGodMark OnParcelGodMark;
|
event ParcelGodMark OnParcelGodMark;
|
||||||
event GroupActiveProposalsRequest OnGroupActiveProposalsRequest;
|
event GroupActiveProposalsRequest OnGroupActiveProposalsRequest;
|
||||||
event GroupVoteHistoryRequest OnGroupVoteHistoryRequest;
|
event GroupVoteHistoryRequest OnGroupVoteHistoryRequest;
|
||||||
event SimWideDeletesDelegate OnSimWideDeletes;
|
event SimWideDeletesDelegate OnSimWideDeletes;
|
||||||
event SendPostcard OnSendPostcard;
|
event SendPostcard OnSendPostcard;
|
||||||
event MuteListEntryUpdate OnUpdateMuteListEntryEvent;
|
event MuteListEntryUpdate OnUpdateMuteListEntryEvent;
|
||||||
event MuteListEntryRemove OnRemoveMuteListEntryEvent;
|
event MuteListEntryRemove OnRemoveMuteListEntryEvent;
|
||||||
event GodlikeMessage onGodlikeMessageEvent;
|
event GodlikeMessage onGodlikeMessageEvent;
|
||||||
event GodUpdateRegionInfoUpdate OnGodUpdateRegionInfoUpdateEvent;
|
event GodUpdateRegionInfoUpdate OnGodUpdateRegionInfoUpdateEvent;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Set the debug level at which packet output should be printed to console.
|
/// Set the debug level at which packet output should be printed to console.
|
||||||
|
@ -1455,12 +1455,12 @@ namespace OpenSim.Framework
|
||||||
void SendRebakeAvatarTextures(UUID textureID);
|
void SendRebakeAvatarTextures(UUID textureID);
|
||||||
|
|
||||||
void SendAvatarInterestsReply(UUID avatarID, uint wantMask, string wantText, uint skillsMask, string skillsText, string languages);
|
void SendAvatarInterestsReply(UUID avatarID, uint wantMask, string wantText, uint skillsMask, string skillsText, string languages);
|
||||||
|
|
||||||
void SendGroupAccountingDetails(IClientAPI sender,UUID groupID, UUID transactionID, UUID sessionID, int amt);
|
void SendGroupAccountingDetails(IClientAPI sender,UUID groupID, UUID transactionID, UUID sessionID, int amt);
|
||||||
|
|
||||||
void SendGroupAccountingSummary(IClientAPI sender,UUID groupID, uint moneyAmt, int totalTier, int usedTier);
|
void SendGroupAccountingSummary(IClientAPI sender,UUID groupID, uint moneyAmt, int totalTier, int usedTier);
|
||||||
|
|
||||||
void SendGroupTransactionsSummaryDetails(IClientAPI sender,UUID groupID, UUID transactionID, UUID sessionID,int amt);
|
void SendGroupTransactionsSummaryDetails(IClientAPI sender,UUID groupID, UUID transactionID, UUID sessionID,int amt);
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -299,25 +299,25 @@ namespace OpenSim.Region.ClientStack.LindenUDP
|
||||||
public event PlacesQuery OnPlacesQuery;
|
public event PlacesQuery OnPlacesQuery;
|
||||||
public event AgentFOV OnAgentFOV;
|
public event AgentFOV OnAgentFOV;
|
||||||
public event FindAgentUpdate OnFindAgentEvent;
|
public event FindAgentUpdate OnFindAgentEvent;
|
||||||
public event TrackAgentUpdate OnTrackAgentEvent;
|
public event TrackAgentUpdate OnTrackAgentEvent;
|
||||||
public event NewUserReport OnUserReportEvent;
|
public event NewUserReport OnUserReportEvent;
|
||||||
public event SaveStateHandler OnSaveStateEvent;
|
public event SaveStateHandler OnSaveStateEvent;
|
||||||
public event GroupAccountSummaryRequest OnGroupAccountSummaryRequest;
|
public event GroupAccountSummaryRequest OnGroupAccountSummaryRequest;
|
||||||
public event GroupAccountDetailsRequest OnGroupAccountDetailsRequest;
|
public event GroupAccountDetailsRequest OnGroupAccountDetailsRequest;
|
||||||
public event GroupAccountTransactionsRequest OnGroupAccountTransactionsRequest;
|
public event GroupAccountTransactionsRequest OnGroupAccountTransactionsRequest;
|
||||||
public event FreezeUserUpdate OnParcelFreezeUserEvent;
|
public event FreezeUserUpdate OnParcelFreezeUserEvent;
|
||||||
public event EjectUserUpdate OnParcelEjectUserEvent;
|
public event EjectUserUpdate OnParcelEjectUserEvent;
|
||||||
public event ParcelBuyPass OnParcelBuyPass;
|
public event ParcelBuyPass OnParcelBuyPass;
|
||||||
public event ParcelGodMark OnParcelGodMark;
|
public event ParcelGodMark OnParcelGodMark;
|
||||||
public event GroupActiveProposalsRequest OnGroupActiveProposalsRequest;
|
public event GroupActiveProposalsRequest OnGroupActiveProposalsRequest;
|
||||||
public event GroupVoteHistoryRequest OnGroupVoteHistoryRequest;
|
public event GroupVoteHistoryRequest OnGroupVoteHistoryRequest;
|
||||||
public event SimWideDeletesDelegate OnSimWideDeletes;
|
public event SimWideDeletesDelegate OnSimWideDeletes;
|
||||||
public event SendPostcard OnSendPostcard;
|
public event SendPostcard OnSendPostcard;
|
||||||
public event MuteListEntryUpdate OnUpdateMuteListEntryEvent;
|
public event MuteListEntryUpdate OnUpdateMuteListEntryEvent;
|
||||||
public event MuteListEntryRemove OnRemoveMuteListEntryEvent;
|
public event MuteListEntryRemove OnRemoveMuteListEntryEvent;
|
||||||
public event GodlikeMessage onGodlikeMessageEvent;
|
public event GodlikeMessage onGodlikeMessageEvent;
|
||||||
public event GodUpdateRegionInfoUpdate OnGodUpdateRegionInfoUpdateEvent;
|
public event GodUpdateRegionInfoUpdate OnGodUpdateRegionInfoUpdateEvent;
|
||||||
|
|
||||||
|
|
||||||
#endregion Events
|
#endregion Events
|
||||||
|
|
||||||
|
@ -826,113 +826,113 @@ namespace OpenSim.Region.ClientStack.LindenUDP
|
||||||
OutPacket(gmp, ThrottleOutPacketType.Task);
|
OutPacket(gmp, ThrottleOutPacketType.Task);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void SendGroupActiveProposals(IClientAPI sender,UUID agentID, UUID sessionID, UUID groupID, UUID transactionID, Dictionary<int, string> VoteID, Dictionary<int, string> VoteInitiator, Dictionary<int, string> Majority, Dictionary<int, string> Quorum, Dictionary<int, string> TerseDateID, Dictionary<int, string> StartDateTime, Dictionary<int, string> EndDateTime, Dictionary<int, string> ProposalText)
|
public void SendGroupActiveProposals(IClientAPI sender,UUID agentID, UUID sessionID, UUID groupID, UUID transactionID, Dictionary<int, string> VoteID, Dictionary<int, string> VoteInitiator, Dictionary<int, string> Majority, Dictionary<int, string> Quorum, Dictionary<int, string> TerseDateID, Dictionary<int, string> StartDateTime, Dictionary<int, string> EndDateTime, Dictionary<int, string> ProposalText)
|
||||||
{
|
{
|
||||||
foreach(KeyValuePair<int, string> Blank in VoteID)
|
foreach(KeyValuePair<int, string> Blank in VoteID)
|
||||||
{
|
{
|
||||||
GroupActiveProposalItemReplyPacket GAPIRP = new GroupActiveProposalItemReplyPacket();
|
GroupActiveProposalItemReplyPacket GAPIRP = new GroupActiveProposalItemReplyPacket();
|
||||||
|
|
||||||
GAPIRP.AgentData.AgentID = agentID;
|
GAPIRP.AgentData.AgentID = agentID;
|
||||||
GAPIRP.AgentData.GroupID = groupID;
|
GAPIRP.AgentData.GroupID = groupID;
|
||||||
GAPIRP.TransactionData.TransactionID = transactionID;
|
GAPIRP.TransactionData.TransactionID = transactionID;
|
||||||
GAPIRP.TransactionData.TotalNumItems = 1;
|
GAPIRP.TransactionData.TotalNumItems = 1;
|
||||||
GroupActiveProposalItemReplyPacket.ProposalDataBlock ProposalData = new GroupActiveProposalItemReplyPacket.ProposalDataBlock();
|
GroupActiveProposalItemReplyPacket.ProposalDataBlock ProposalData = new GroupActiveProposalItemReplyPacket.ProposalDataBlock();
|
||||||
GAPIRP.ProposalData = new GroupActiveProposalItemReplyPacket.ProposalDataBlock[1];
|
GAPIRP.ProposalData = new GroupActiveProposalItemReplyPacket.ProposalDataBlock[1];
|
||||||
ProposalData.VoteCast = Utils.StringToBytes("false");
|
ProposalData.VoteCast = Utils.StringToBytes("false");
|
||||||
ProposalData.VoteID = new UUID(VoteID[Blank.Key]);
|
ProposalData.VoteID = new UUID(VoteID[Blank.Key]);
|
||||||
ProposalData.VoteInitiator = new UUID(VoteInitiator[Blank.Key]);
|
ProposalData.VoteInitiator = new UUID(VoteInitiator[Blank.Key]);
|
||||||
ProposalData.Majority = (float)Convert.ToInt32(Majority[Blank.Key]);
|
ProposalData.Majority = (float)Convert.ToInt32(Majority[Blank.Key]);
|
||||||
ProposalData.Quorum = Convert.ToInt32(Quorum[Blank.Key]);
|
ProposalData.Quorum = Convert.ToInt32(Quorum[Blank.Key]);
|
||||||
ProposalData.TerseDateID = Utils.StringToBytes(TerseDateID[Blank.Key]);
|
ProposalData.TerseDateID = Utils.StringToBytes(TerseDateID[Blank.Key]);
|
||||||
ProposalData.StartDateTime = Utils.StringToBytes(StartDateTime[Blank.Key]);
|
ProposalData.StartDateTime = Utils.StringToBytes(StartDateTime[Blank.Key]);
|
||||||
ProposalData.EndDateTime = Utils.StringToBytes(EndDateTime[Blank.Key]);
|
ProposalData.EndDateTime = Utils.StringToBytes(EndDateTime[Blank.Key]);
|
||||||
ProposalData.ProposalText = Utils.StringToBytes(ProposalText[Blank.Key]);
|
ProposalData.ProposalText = Utils.StringToBytes(ProposalText[Blank.Key]);
|
||||||
ProposalData.AlreadyVoted = false;
|
ProposalData.AlreadyVoted = false;
|
||||||
GAPIRP.ProposalData[0] = ProposalData;
|
GAPIRP.ProposalData[0] = ProposalData;
|
||||||
OutPacket(GAPIRP, ThrottleOutPacketType.Task);
|
OutPacket(GAPIRP, ThrottleOutPacketType.Task);
|
||||||
}
|
}
|
||||||
if(VoteID.Count == 0)
|
if(VoteID.Count == 0)
|
||||||
{
|
{
|
||||||
GroupActiveProposalItemReplyPacket GAPIRP = new GroupActiveProposalItemReplyPacket();
|
GroupActiveProposalItemReplyPacket GAPIRP = new GroupActiveProposalItemReplyPacket();
|
||||||
|
|
||||||
GAPIRP.AgentData.AgentID = agentID;
|
GAPIRP.AgentData.AgentID = agentID;
|
||||||
GAPIRP.AgentData.GroupID = groupID;
|
GAPIRP.AgentData.GroupID = groupID;
|
||||||
GAPIRP.TransactionData.TransactionID = transactionID;
|
GAPIRP.TransactionData.TransactionID = transactionID;
|
||||||
GAPIRP.TransactionData.TotalNumItems = 1;
|
GAPIRP.TransactionData.TotalNumItems = 1;
|
||||||
GroupActiveProposalItemReplyPacket.ProposalDataBlock ProposalData = new GroupActiveProposalItemReplyPacket.ProposalDataBlock();
|
GroupActiveProposalItemReplyPacket.ProposalDataBlock ProposalData = new GroupActiveProposalItemReplyPacket.ProposalDataBlock();
|
||||||
GAPIRP.ProposalData = new GroupActiveProposalItemReplyPacket.ProposalDataBlock[1];
|
GAPIRP.ProposalData = new GroupActiveProposalItemReplyPacket.ProposalDataBlock[1];
|
||||||
ProposalData.VoteCast = Utils.StringToBytes("false");
|
ProposalData.VoteCast = Utils.StringToBytes("false");
|
||||||
ProposalData.VoteID = UUID.Zero;
|
ProposalData.VoteID = UUID.Zero;
|
||||||
ProposalData.VoteInitiator = UUID.Zero;
|
ProposalData.VoteInitiator = UUID.Zero;
|
||||||
ProposalData.Majority = 0;
|
ProposalData.Majority = 0;
|
||||||
ProposalData.Quorum = 0;
|
ProposalData.Quorum = 0;
|
||||||
ProposalData.TerseDateID = Utils.StringToBytes("");
|
ProposalData.TerseDateID = Utils.StringToBytes("");
|
||||||
ProposalData.StartDateTime = Utils.StringToBytes("");
|
ProposalData.StartDateTime = Utils.StringToBytes("");
|
||||||
ProposalData.EndDateTime = Utils.StringToBytes("");
|
ProposalData.EndDateTime = Utils.StringToBytes("");
|
||||||
ProposalData.ProposalText = Utils.StringToBytes("");
|
ProposalData.ProposalText = Utils.StringToBytes("");
|
||||||
ProposalData.AlreadyVoted = false;
|
ProposalData.AlreadyVoted = false;
|
||||||
GAPIRP.ProposalData[0] = ProposalData;
|
GAPIRP.ProposalData[0] = ProposalData;
|
||||||
OutPacket(GAPIRP, ThrottleOutPacketType.Task);
|
OutPacket(GAPIRP, ThrottleOutPacketType.Task);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void SendGroupVoteHistory(IClientAPI sender,UUID agentID, UUID sessionID, UUID groupID, UUID transactionID, Dictionary<int, string> VoteID, Dictionary<int, string> VoteInitiator, Dictionary<int, string> Majority, Dictionary<int, string> Quorum, Dictionary<int, string> TerseDateID, Dictionary<int, string> StartDateTime, Dictionary<int, string> EndDateTime, Dictionary<int, string> VoteType, Dictionary<int, string> VoteResult, Dictionary<int, string> ProposalText)
|
public void SendGroupVoteHistory(IClientAPI sender,UUID agentID, UUID sessionID, UUID groupID, UUID transactionID, Dictionary<int, string> VoteID, Dictionary<int, string> VoteInitiator, Dictionary<int, string> Majority, Dictionary<int, string> Quorum, Dictionary<int, string> TerseDateID, Dictionary<int, string> StartDateTime, Dictionary<int, string> EndDateTime, Dictionary<int, string> VoteType, Dictionary<int, string> VoteResult, Dictionary<int, string> ProposalText)
|
||||||
{
|
{
|
||||||
foreach(KeyValuePair<int, string> Blank in VoteID)
|
foreach(KeyValuePair<int, string> Blank in VoteID)
|
||||||
{
|
{
|
||||||
GroupVoteHistoryItemReplyPacket GVHIRP = new GroupVoteHistoryItemReplyPacket();
|
GroupVoteHistoryItemReplyPacket GVHIRP = new GroupVoteHistoryItemReplyPacket();
|
||||||
|
|
||||||
GVHIRP.AgentData.AgentID = agentID;
|
GVHIRP.AgentData.AgentID = agentID;
|
||||||
GVHIRP.AgentData.GroupID = groupID;
|
GVHIRP.AgentData.GroupID = groupID;
|
||||||
GVHIRP.TransactionData.TransactionID = transactionID;
|
GVHIRP.TransactionData.TransactionID = transactionID;
|
||||||
GVHIRP.TransactionData.TotalNumItems = 1;
|
GVHIRP.TransactionData.TotalNumItems = 1;
|
||||||
GVHIRP.HistoryItemData.VoteID = new UUID(VoteID[Blank.Key]);
|
GVHIRP.HistoryItemData.VoteID = new UUID(VoteID[Blank.Key]);
|
||||||
GVHIRP.HistoryItemData.VoteInitiator = new UUID(VoteInitiator[Blank.Key]);
|
GVHIRP.HistoryItemData.VoteInitiator = new UUID(VoteInitiator[Blank.Key]);
|
||||||
GVHIRP.HistoryItemData.Majority = (float)Convert.ToInt32(Majority[Blank.Key]);
|
GVHIRP.HistoryItemData.Majority = (float)Convert.ToInt32(Majority[Blank.Key]);
|
||||||
GVHIRP.HistoryItemData.Quorum = Convert.ToInt32(Quorum[Blank.Key]);
|
GVHIRP.HistoryItemData.Quorum = Convert.ToInt32(Quorum[Blank.Key]);
|
||||||
GVHIRP.HistoryItemData.TerseDateID = Utils.StringToBytes(TerseDateID[Blank.Key]);
|
GVHIRP.HistoryItemData.TerseDateID = Utils.StringToBytes(TerseDateID[Blank.Key]);
|
||||||
GVHIRP.HistoryItemData.StartDateTime = Utils.StringToBytes(StartDateTime[Blank.Key]);
|
GVHIRP.HistoryItemData.StartDateTime = Utils.StringToBytes(StartDateTime[Blank.Key]);
|
||||||
GVHIRP.HistoryItemData.EndDateTime = Utils.StringToBytes(EndDateTime[Blank.Key]);
|
GVHIRP.HistoryItemData.EndDateTime = Utils.StringToBytes(EndDateTime[Blank.Key]);
|
||||||
GVHIRP.HistoryItemData.VoteType = Utils.StringToBytes(VoteType[Blank.Key]);
|
GVHIRP.HistoryItemData.VoteType = Utils.StringToBytes(VoteType[Blank.Key]);
|
||||||
GVHIRP.HistoryItemData.VoteResult = Utils.StringToBytes(VoteResult[Blank.Key]);
|
GVHIRP.HistoryItemData.VoteResult = Utils.StringToBytes(VoteResult[Blank.Key]);
|
||||||
GVHIRP.HistoryItemData.ProposalText = Utils.StringToBytes(ProposalText[Blank.Key]);
|
GVHIRP.HistoryItemData.ProposalText = Utils.StringToBytes(ProposalText[Blank.Key]);
|
||||||
GroupVoteHistoryItemReplyPacket.VoteItemBlock VoteItem = new GroupVoteHistoryItemReplyPacket.VoteItemBlock();
|
GroupVoteHistoryItemReplyPacket.VoteItemBlock VoteItem = new GroupVoteHistoryItemReplyPacket.VoteItemBlock();
|
||||||
GVHIRP.VoteItem = new GroupVoteHistoryItemReplyPacket.VoteItemBlock[1];
|
GVHIRP.VoteItem = new GroupVoteHistoryItemReplyPacket.VoteItemBlock[1];
|
||||||
VoteItem.CandidateID = UUID.Zero;
|
VoteItem.CandidateID = UUID.Zero;
|
||||||
VoteItem.NumVotes = 0; //TODO: FIX THIS!!!
|
VoteItem.NumVotes = 0; //TODO: FIX THIS!!!
|
||||||
VoteItem.VoteCast = Utils.StringToBytes("Yes");
|
VoteItem.VoteCast = Utils.StringToBytes("Yes");
|
||||||
GVHIRP.VoteItem[0] = VoteItem;
|
GVHIRP.VoteItem[0] = VoteItem;
|
||||||
OutPacket(GVHIRP, ThrottleOutPacketType.Task);
|
OutPacket(GVHIRP, ThrottleOutPacketType.Task);
|
||||||
}
|
}
|
||||||
if(VoteID.Count == 0)
|
if(VoteID.Count == 0)
|
||||||
{
|
{
|
||||||
GroupVoteHistoryItemReplyPacket GVHIRP = new GroupVoteHistoryItemReplyPacket();
|
GroupVoteHistoryItemReplyPacket GVHIRP = new GroupVoteHistoryItemReplyPacket();
|
||||||
|
|
||||||
GVHIRP.AgentData.AgentID = agentID;
|
GVHIRP.AgentData.AgentID = agentID;
|
||||||
GVHIRP.AgentData.GroupID = groupID;
|
GVHIRP.AgentData.GroupID = groupID;
|
||||||
GVHIRP.TransactionData.TransactionID = transactionID;
|
GVHIRP.TransactionData.TransactionID = transactionID;
|
||||||
GVHIRP.TransactionData.TotalNumItems = 0;
|
GVHIRP.TransactionData.TotalNumItems = 0;
|
||||||
GVHIRP.HistoryItemData.VoteID = UUID.Zero;
|
GVHIRP.HistoryItemData.VoteID = UUID.Zero;
|
||||||
GVHIRP.HistoryItemData.VoteInitiator = UUID.Zero;
|
GVHIRP.HistoryItemData.VoteInitiator = UUID.Zero;
|
||||||
GVHIRP.HistoryItemData.Majority = 0;
|
GVHIRP.HistoryItemData.Majority = 0;
|
||||||
GVHIRP.HistoryItemData.Quorum = 0;
|
GVHIRP.HistoryItemData.Quorum = 0;
|
||||||
GVHIRP.HistoryItemData.TerseDateID = Utils.StringToBytes("");
|
GVHIRP.HistoryItemData.TerseDateID = Utils.StringToBytes("");
|
||||||
GVHIRP.HistoryItemData.StartDateTime = Utils.StringToBytes("");
|
GVHIRP.HistoryItemData.StartDateTime = Utils.StringToBytes("");
|
||||||
GVHIRP.HistoryItemData.EndDateTime = Utils.StringToBytes("");
|
GVHIRP.HistoryItemData.EndDateTime = Utils.StringToBytes("");
|
||||||
GVHIRP.HistoryItemData.VoteType = Utils.StringToBytes("");
|
GVHIRP.HistoryItemData.VoteType = Utils.StringToBytes("");
|
||||||
GVHIRP.HistoryItemData.VoteResult = Utils.StringToBytes("");
|
GVHIRP.HistoryItemData.VoteResult = Utils.StringToBytes("");
|
||||||
GVHIRP.HistoryItemData.ProposalText = Utils.StringToBytes("");
|
GVHIRP.HistoryItemData.ProposalText = Utils.StringToBytes("");
|
||||||
GroupVoteHistoryItemReplyPacket.VoteItemBlock VoteItem = new GroupVoteHistoryItemReplyPacket.VoteItemBlock();
|
GroupVoteHistoryItemReplyPacket.VoteItemBlock VoteItem = new GroupVoteHistoryItemReplyPacket.VoteItemBlock();
|
||||||
GVHIRP.VoteItem = new GroupVoteHistoryItemReplyPacket.VoteItemBlock[1];
|
GVHIRP.VoteItem = new GroupVoteHistoryItemReplyPacket.VoteItemBlock[1];
|
||||||
VoteItem.CandidateID = UUID.Zero;
|
VoteItem.CandidateID = UUID.Zero;
|
||||||
VoteItem.NumVotes = 0; //TODO: FIX THIS!!!
|
VoteItem.NumVotes = 0; //TODO: FIX THIS!!!
|
||||||
VoteItem.VoteCast = Utils.StringToBytes("No");
|
VoteItem.VoteCast = Utils.StringToBytes("No");
|
||||||
GVHIRP.VoteItem[0] = VoteItem;
|
GVHIRP.VoteItem[0] = VoteItem;
|
||||||
OutPacket(GVHIRP, ThrottleOutPacketType.Task);
|
OutPacket(GVHIRP, ThrottleOutPacketType.Task);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void SendGroupAccountingDetails(IClientAPI sender,UUID groupID, UUID transactionID, UUID sessionID, int amt)
|
public void SendGroupAccountingDetails(IClientAPI sender,UUID groupID, UUID transactionID, UUID sessionID, int amt)
|
||||||
{
|
{
|
||||||
GroupAccountDetailsReplyPacket GADRP = new GroupAccountDetailsReplyPacket();
|
GroupAccountDetailsReplyPacket GADRP = new GroupAccountDetailsReplyPacket();
|
||||||
GADRP.AgentData = new GroupAccountDetailsReplyPacket.AgentDataBlock();
|
GADRP.AgentData = new GroupAccountDetailsReplyPacket.AgentDataBlock();
|
||||||
|
@ -950,10 +950,10 @@ namespace OpenSim.Region.ClientStack.LindenUDP
|
||||||
GADRP.HistoryData[0] = History;
|
GADRP.HistoryData[0] = History;
|
||||||
OutPacket(GADRP, ThrottleOutPacketType.Task);
|
OutPacket(GADRP, ThrottleOutPacketType.Task);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void SendGroupAccountingSummary(IClientAPI sender,UUID groupID, uint moneyAmt, int totalTier, int usedTier)
|
public void SendGroupAccountingSummary(IClientAPI sender,UUID groupID, uint moneyAmt, int totalTier, int usedTier)
|
||||||
{
|
{
|
||||||
GroupAccountSummaryReplyPacket GASRP =
|
GroupAccountSummaryReplyPacket GASRP =
|
||||||
(GroupAccountSummaryReplyPacket)PacketPool.Instance.GetPacket(
|
(GroupAccountSummaryReplyPacket)PacketPool.Instance.GetPacket(
|
||||||
PacketType.GroupAccountSummaryReply);
|
PacketType.GroupAccountSummaryReply);
|
||||||
|
|
||||||
|
@ -983,8 +983,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP
|
||||||
GASRP.MoneyData.LightTaxEstimate = 0;
|
GASRP.MoneyData.LightTaxEstimate = 0;
|
||||||
OutPacket(GASRP, ThrottleOutPacketType.Task);
|
OutPacket(GASRP, ThrottleOutPacketType.Task);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void SendGroupTransactionsSummaryDetails(IClientAPI sender,UUID groupID, UUID transactionID, UUID sessionID, int amt)
|
public void SendGroupTransactionsSummaryDetails(IClientAPI sender,UUID groupID, UUID transactionID, UUID sessionID, int amt)
|
||||||
{
|
{
|
||||||
GroupAccountTransactionsReplyPacket GATRP =
|
GroupAccountTransactionsReplyPacket GATRP =
|
||||||
(GroupAccountTransactionsReplyPacket)PacketPool.Instance.GetPacket(
|
(GroupAccountTransactionsReplyPacket)PacketPool.Instance.GetPacket(
|
||||||
|
@ -1007,7 +1007,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
|
||||||
History.User = Utils.StringToBytes("");
|
History.User = Utils.StringToBytes("");
|
||||||
GATRP.HistoryData[0] = History;
|
GATRP.HistoryData[0] = History;
|
||||||
OutPacket(GATRP, ThrottleOutPacketType.Task);
|
OutPacket(GATRP, ThrottleOutPacketType.Task);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Send the region heightmap to the client
|
/// Send the region heightmap to the client
|
||||||
|
@ -4758,24 +4758,24 @@ namespace OpenSim.Region.ClientStack.LindenUDP
|
||||||
AddLocalPacketHandler(PacketType.GrantUserRights, HandleGrantUserRights);
|
AddLocalPacketHandler(PacketType.GrantUserRights, HandleGrantUserRights);
|
||||||
AddLocalPacketHandler(PacketType.PlacesQuery, HandlePlacesQuery);
|
AddLocalPacketHandler(PacketType.PlacesQuery, HandlePlacesQuery);
|
||||||
AddLocalPacketHandler(PacketType.UpdateMuteListEntry, HandleUpdateMuteListEntry);
|
AddLocalPacketHandler(PacketType.UpdateMuteListEntry, HandleUpdateMuteListEntry);
|
||||||
AddLocalPacketHandler(PacketType.RemoveMuteListEntry, HandleRemoveMuteListEntry);
|
AddLocalPacketHandler(PacketType.RemoveMuteListEntry, HandleRemoveMuteListEntry);
|
||||||
AddLocalPacketHandler(PacketType.UserReport, HandleUserReport);
|
AddLocalPacketHandler(PacketType.UserReport, HandleUserReport);
|
||||||
AddLocalPacketHandler(PacketType.FindAgent, HandleFindAgent);
|
AddLocalPacketHandler(PacketType.FindAgent, HandleFindAgent);
|
||||||
AddLocalPacketHandler(PacketType.TrackAgent, HandleTrackAgent);
|
AddLocalPacketHandler(PacketType.TrackAgent, HandleTrackAgent);
|
||||||
AddLocalPacketHandler(PacketType.GodUpdateRegionInfo, HandleGodUpdateRegionInfoUpdate);
|
AddLocalPacketHandler(PacketType.GodUpdateRegionInfo, HandleGodUpdateRegionInfoUpdate);
|
||||||
AddLocalPacketHandler(PacketType.GodlikeMessage, HandleGodlikeMessage);
|
AddLocalPacketHandler(PacketType.GodlikeMessage, HandleGodlikeMessage);
|
||||||
AddLocalPacketHandler(PacketType.StateSave, HandleSaveStatePacket);
|
AddLocalPacketHandler(PacketType.StateSave, HandleSaveStatePacket);
|
||||||
AddLocalPacketHandler(PacketType.GroupAccountDetailsRequest, HandleGroupAccountDetailsRequest);
|
AddLocalPacketHandler(PacketType.GroupAccountDetailsRequest, HandleGroupAccountDetailsRequest);
|
||||||
AddLocalPacketHandler(PacketType.GroupAccountSummaryRequest, HandleGroupAccountSummaryRequest);
|
AddLocalPacketHandler(PacketType.GroupAccountSummaryRequest, HandleGroupAccountSummaryRequest);
|
||||||
AddLocalPacketHandler(PacketType.GroupAccountTransactionsRequest, HandleGroupTransactionsDetailsRequest);
|
AddLocalPacketHandler(PacketType.GroupAccountTransactionsRequest, HandleGroupTransactionsDetailsRequest);
|
||||||
AddLocalPacketHandler(PacketType.FreezeUser, HandleFreezeUser);
|
AddLocalPacketHandler(PacketType.FreezeUser, HandleFreezeUser);
|
||||||
AddLocalPacketHandler(PacketType.EjectUser, HandleEjectUser);
|
AddLocalPacketHandler(PacketType.EjectUser, HandleEjectUser);
|
||||||
AddLocalPacketHandler(PacketType.ParcelBuyPass, HandleParcelBuyPass);
|
AddLocalPacketHandler(PacketType.ParcelBuyPass, HandleParcelBuyPass);
|
||||||
AddLocalPacketHandler(PacketType.ParcelGodMarkAsContent, HandleParcelGodMarkAsContent);
|
AddLocalPacketHandler(PacketType.ParcelGodMarkAsContent, HandleParcelGodMarkAsContent);
|
||||||
AddLocalPacketHandler(PacketType.GroupActiveProposalsRequest, HandleGroupActiveProposalsRequest);
|
AddLocalPacketHandler(PacketType.GroupActiveProposalsRequest, HandleGroupActiveProposalsRequest);
|
||||||
AddLocalPacketHandler(PacketType.GroupVoteHistoryRequest, HandleGroupVoteHistoryRequest);
|
AddLocalPacketHandler(PacketType.GroupVoteHistoryRequest, HandleGroupVoteHistoryRequest);
|
||||||
AddLocalPacketHandler(PacketType.SimWideDeletes, HandleSimWideDeletes);
|
AddLocalPacketHandler(PacketType.SimWideDeletes, HandleSimWideDeletes);
|
||||||
AddLocalPacketHandler(PacketType.SendPostcard, HandleSendPostcard);
|
AddLocalPacketHandler(PacketType.SendPostcard, HandleSendPostcard);
|
||||||
}
|
}
|
||||||
|
|
||||||
#region Packet Handlers
|
#region Packet Handlers
|
||||||
|
@ -4873,70 +4873,70 @@ namespace OpenSim.Region.ClientStack.LindenUDP
|
||||||
}
|
}
|
||||||
|
|
||||||
private bool HandleParcelGodMarkAsContent(IClientAPI client, Packet Packet)
|
private bool HandleParcelGodMarkAsContent(IClientAPI client, Packet Packet)
|
||||||
{
|
{
|
||||||
ParcelGodMarkAsContentPacket ParcelGodMarkAsContent =
|
ParcelGodMarkAsContentPacket ParcelGodMarkAsContent =
|
||||||
(ParcelGodMarkAsContentPacket)Packet;
|
(ParcelGodMarkAsContentPacket)Packet;
|
||||||
|
|
||||||
ParcelGodMark ParcelGodMarkAsContentHandler = OnParcelGodMark;
|
ParcelGodMark ParcelGodMarkAsContentHandler = OnParcelGodMark;
|
||||||
if (ParcelGodMarkAsContentHandler != null)
|
if (ParcelGodMarkAsContentHandler != null)
|
||||||
{
|
{
|
||||||
ParcelGodMarkAsContentHandler(this,
|
ParcelGodMarkAsContentHandler(this,
|
||||||
ParcelGodMarkAsContent.AgentData.AgentID,
|
ParcelGodMarkAsContent.AgentData.AgentID,
|
||||||
ParcelGodMarkAsContent.ParcelData.LocalID);
|
ParcelGodMarkAsContent.ParcelData.LocalID);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private bool HandleFreezeUser(IClientAPI client, Packet Packet)
|
||||||
|
{
|
||||||
|
FreezeUserPacket FreezeUser = (FreezeUserPacket)Packet;
|
||||||
|
|
||||||
|
FreezeUserUpdate FreezeUserHandler = OnParcelFreezeUserEvent;
|
||||||
|
if (FreezeUserHandler != null)
|
||||||
|
{
|
||||||
|
FreezeUserHandler(this,
|
||||||
|
FreezeUser.AgentData.AgentID,
|
||||||
|
FreezeUser.Data.Flags,
|
||||||
|
FreezeUser.Data.TargetID);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
private bool HandleEjectUser(IClientAPI client, Packet Packet)
|
||||||
|
{
|
||||||
|
EjectUserPacket EjectUser =
|
||||||
|
(EjectUserPacket)Packet;
|
||||||
|
|
||||||
|
EjectUserUpdate EjectUserHandler = OnParcelEjectUserEvent;
|
||||||
|
if (EjectUserHandler != null)
|
||||||
|
{
|
||||||
|
EjectUserHandler(this,
|
||||||
|
EjectUser.AgentData.AgentID,
|
||||||
|
EjectUser.Data.Flags,
|
||||||
|
EjectUser.Data.TargetID);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
private bool HandleParcelBuyPass(IClientAPI client, Packet Packet)
|
||||||
|
{
|
||||||
|
ParcelBuyPassPacket ParcelBuyPass =
|
||||||
|
(ParcelBuyPassPacket)Packet;
|
||||||
|
|
||||||
|
ParcelBuyPass ParcelBuyPassHandler = OnParcelBuyPass;
|
||||||
|
if (ParcelBuyPassHandler != null)
|
||||||
|
{
|
||||||
|
ParcelBuyPassHandler(this,
|
||||||
|
ParcelBuyPass.AgentData.AgentID,
|
||||||
|
ParcelBuyPass.ParcelData.LocalID);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
private bool HandleFreezeUser(IClientAPI client, Packet Packet)
|
|
||||||
{
|
|
||||||
FreezeUserPacket FreezeUser = (FreezeUserPacket)Packet;
|
|
||||||
|
|
||||||
FreezeUserUpdate FreezeUserHandler = OnParcelFreezeUserEvent;
|
|
||||||
if (FreezeUserHandler != null)
|
|
||||||
{
|
|
||||||
FreezeUserHandler(this,
|
|
||||||
FreezeUser.AgentData.AgentID,
|
|
||||||
FreezeUser.Data.Flags,
|
|
||||||
FreezeUser.Data.TargetID);
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
private bool HandleEjectUser(IClientAPI client, Packet Packet)
|
|
||||||
{
|
|
||||||
EjectUserPacket EjectUser =
|
|
||||||
(EjectUserPacket)Packet;
|
|
||||||
|
|
||||||
EjectUserUpdate EjectUserHandler = OnParcelEjectUserEvent;
|
|
||||||
if (EjectUserHandler != null)
|
|
||||||
{
|
|
||||||
EjectUserHandler(this,
|
|
||||||
EjectUser.AgentData.AgentID,
|
|
||||||
EjectUser.Data.Flags,
|
|
||||||
EjectUser.Data.TargetID);
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
private bool HandleParcelBuyPass(IClientAPI client, Packet Packet)
|
|
||||||
{
|
|
||||||
ParcelBuyPassPacket ParcelBuyPass =
|
|
||||||
(ParcelBuyPassPacket)Packet;
|
|
||||||
|
|
||||||
ParcelBuyPass ParcelBuyPassHandler = OnParcelBuyPass;
|
|
||||||
if (ParcelBuyPassHandler != null)
|
|
||||||
{
|
|
||||||
ParcelBuyPassHandler(this,
|
|
||||||
ParcelBuyPass.AgentData.AgentID,
|
|
||||||
ParcelBuyPass.ParcelData.LocalID);
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
private bool HandleParcelBuyRequest(IClientAPI sender, Packet Pack)
|
private bool HandleParcelBuyRequest(IClientAPI sender, Packet Pack)
|
||||||
{
|
{
|
||||||
ParcelBuyPacket parcel = (ParcelBuyPacket)Pack;
|
ParcelBuyPacket parcel = (ParcelBuyPacket)Pack;
|
||||||
|
@ -5304,34 +5304,34 @@ namespace OpenSim.Region.ClientStack.LindenUDP
|
||||||
}
|
}
|
||||||
|
|
||||||
private bool HandleFindAgent(IClientAPI client, Packet Packet)
|
private bool HandleFindAgent(IClientAPI client, Packet Packet)
|
||||||
{
|
{
|
||||||
FindAgentPacket FindAgent =
|
FindAgentPacket FindAgent =
|
||||||
(FindAgentPacket)Packet;
|
(FindAgentPacket)Packet;
|
||||||
|
|
||||||
FindAgentUpdate FindAgentHandler = OnFindAgentEvent;
|
FindAgentUpdate FindAgentHandler = OnFindAgentEvent;
|
||||||
if (FindAgentHandler != null)
|
if (FindAgentHandler != null)
|
||||||
{
|
{
|
||||||
FindAgentHandler(this,FindAgent.AgentBlock.Hunter,FindAgent.AgentBlock.Prey);
|
FindAgentHandler(this,FindAgent.AgentBlock.Hunter,FindAgent.AgentBlock.Prey);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
private bool HandleTrackAgent(IClientAPI client, Packet Packet)
|
private bool HandleTrackAgent(IClientAPI client, Packet Packet)
|
||||||
{
|
{
|
||||||
TrackAgentPacket TrackAgent =
|
TrackAgentPacket TrackAgent =
|
||||||
(TrackAgentPacket)Packet;
|
(TrackAgentPacket)Packet;
|
||||||
|
|
||||||
TrackAgentUpdate TrackAgentHandler = OnTrackAgentEvent;
|
TrackAgentUpdate TrackAgentHandler = OnTrackAgentEvent;
|
||||||
if (TrackAgentHandler != null)
|
if (TrackAgentHandler != null)
|
||||||
{
|
{
|
||||||
TrackAgentHandler(this,
|
TrackAgentHandler(this,
|
||||||
TrackAgent.AgentData.AgentID,
|
TrackAgent.AgentData.AgentID,
|
||||||
TrackAgent.TargetData.PreyID);
|
TrackAgent.TargetData.PreyID);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
private bool HandlerRezObject(IClientAPI sender, Packet Pack)
|
private bool HandlerRezObject(IClientAPI sender, Packet Pack)
|
||||||
{
|
{
|
||||||
|
@ -8604,68 +8604,68 @@ namespace OpenSim.Region.ClientStack.LindenUDP
|
||||||
}
|
}
|
||||||
|
|
||||||
private bool HandleGodUpdateRegionInfoUpdate(IClientAPI client, Packet Packet)
|
private bool HandleGodUpdateRegionInfoUpdate(IClientAPI client, Packet Packet)
|
||||||
{
|
{
|
||||||
GodUpdateRegionInfoPacket GodUpdateRegionInfo =
|
GodUpdateRegionInfoPacket GodUpdateRegionInfo =
|
||||||
(GodUpdateRegionInfoPacket)Packet;
|
(GodUpdateRegionInfoPacket)Packet;
|
||||||
|
|
||||||
GodUpdateRegionInfoUpdate handlerGodUpdateRegionInfo = OnGodUpdateRegionInfoUpdateEvent;
|
GodUpdateRegionInfoUpdate handlerGodUpdateRegionInfo = OnGodUpdateRegionInfoUpdateEvent;
|
||||||
if (handlerGodUpdateRegionInfo != null)
|
if (handlerGodUpdateRegionInfo != null)
|
||||||
{
|
{
|
||||||
handlerGodUpdateRegionInfo(this,
|
handlerGodUpdateRegionInfo(this,
|
||||||
GodUpdateRegionInfo.RegionInfo.BillableFactor,
|
GodUpdateRegionInfo.RegionInfo.BillableFactor,
|
||||||
GodUpdateRegionInfo.RegionInfo.EstateID,
|
GodUpdateRegionInfo.RegionInfo.EstateID,
|
||||||
GodUpdateRegionInfo.RegionInfo.RegionFlags,
|
GodUpdateRegionInfo.RegionInfo.RegionFlags,
|
||||||
GodUpdateRegionInfo.RegionInfo.SimName,
|
GodUpdateRegionInfo.RegionInfo.SimName,
|
||||||
GodUpdateRegionInfo.RegionInfo.RedirectGridX,
|
GodUpdateRegionInfo.RegionInfo.RedirectGridX,
|
||||||
GodUpdateRegionInfo.RegionInfo.RedirectGridY);
|
GodUpdateRegionInfo.RegionInfo.RedirectGridY);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
private bool HandleSimWideDeletes(IClientAPI client, Packet Packet)
|
private bool HandleSimWideDeletes(IClientAPI client, Packet Packet)
|
||||||
{
|
{
|
||||||
SimWideDeletesPacket SimWideDeletesRequest =
|
SimWideDeletesPacket SimWideDeletesRequest =
|
||||||
(SimWideDeletesPacket)Packet;
|
(SimWideDeletesPacket)Packet;
|
||||||
SimWideDeletesDelegate handlerSimWideDeletesRequest = OnSimWideDeletes;
|
SimWideDeletesDelegate handlerSimWideDeletesRequest = OnSimWideDeletes;
|
||||||
if (handlerSimWideDeletesRequest != null)
|
if (handlerSimWideDeletesRequest != null)
|
||||||
{
|
{
|
||||||
handlerSimWideDeletesRequest(this, SimWideDeletesRequest.AgentData.AgentID,(int)SimWideDeletesRequest.DataBlock.Flags,SimWideDeletesRequest.DataBlock.TargetID);
|
handlerSimWideDeletesRequest(this, SimWideDeletesRequest.AgentData.AgentID,(int)SimWideDeletesRequest.DataBlock.Flags,SimWideDeletesRequest.DataBlock.TargetID);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
private bool HandleGodlikeMessage(IClientAPI client, Packet Packet)
|
private bool HandleGodlikeMessage(IClientAPI client, Packet Packet)
|
||||||
{
|
{
|
||||||
GodlikeMessagePacket GodlikeMessage =
|
GodlikeMessagePacket GodlikeMessage =
|
||||||
(GodlikeMessagePacket)Packet;
|
(GodlikeMessagePacket)Packet;
|
||||||
|
|
||||||
GodlikeMessage handlerGodlikeMessage = onGodlikeMessageEvent;
|
GodlikeMessage handlerGodlikeMessage = onGodlikeMessageEvent;
|
||||||
if (handlerGodlikeMessage != null)
|
if (handlerGodlikeMessage != null)
|
||||||
{
|
{
|
||||||
handlerGodlikeMessage(this,
|
handlerGodlikeMessage(this,
|
||||||
GodlikeMessage.MethodData.Invoice,
|
GodlikeMessage.MethodData.Invoice,
|
||||||
GodlikeMessage.MethodData.Method,
|
GodlikeMessage.MethodData.Method,
|
||||||
GodlikeMessage.ParamList[0].Parameter);
|
GodlikeMessage.ParamList[0].Parameter);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
private bool HandleSaveStatePacket(IClientAPI client, Packet Packet)
|
private bool HandleSaveStatePacket(IClientAPI client, Packet Packet)
|
||||||
{
|
{
|
||||||
StateSavePacket SaveStateMessage =
|
StateSavePacket SaveStateMessage =
|
||||||
(StateSavePacket)Packet;
|
(StateSavePacket)Packet;
|
||||||
SaveStateHandler handlerSaveStatePacket = OnSaveStateEvent;
|
SaveStateHandler handlerSaveStatePacket = OnSaveStateEvent;
|
||||||
if (handlerSaveStatePacket != null)
|
if (handlerSaveStatePacket != null)
|
||||||
{
|
{
|
||||||
handlerSaveStatePacket(this,SaveStateMessage.AgentData.AgentID);
|
handlerSaveStatePacket(this,SaveStateMessage.AgentData.AgentID);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
private bool HandleGodKickUser(IClientAPI sender, Packet Pack)
|
private bool HandleGodKickUser(IClientAPI sender, Packet Pack)
|
||||||
{
|
{
|
||||||
GodKickUserPacket gkupack = (GodKickUserPacket)Pack;
|
GodKickUserPacket gkupack = (GodKickUserPacket)Pack;
|
||||||
|
@ -9018,74 +9018,74 @@ namespace OpenSim.Region.ClientStack.LindenUDP
|
||||||
}
|
}
|
||||||
|
|
||||||
private bool HandleUpdateMuteListEntry(IClientAPI client, Packet Packet)
|
private bool HandleUpdateMuteListEntry(IClientAPI client, Packet Packet)
|
||||||
{
|
{
|
||||||
UpdateMuteListEntryPacket UpdateMuteListEntry =
|
UpdateMuteListEntryPacket UpdateMuteListEntry =
|
||||||
(UpdateMuteListEntryPacket)Packet;
|
(UpdateMuteListEntryPacket)Packet;
|
||||||
MuteListEntryUpdate handlerUpdateMuteListEntry = OnUpdateMuteListEntryEvent;
|
MuteListEntryUpdate handlerUpdateMuteListEntry = OnUpdateMuteListEntryEvent;
|
||||||
if (handlerUpdateMuteListEntry != null)
|
if (handlerUpdateMuteListEntry != null)
|
||||||
{
|
{
|
||||||
handlerUpdateMuteListEntry(this, UpdateMuteListEntry.MuteData.MuteID,
|
handlerUpdateMuteListEntry(this, UpdateMuteListEntry.MuteData.MuteID,
|
||||||
Utils.BytesToString(UpdateMuteListEntry.MuteData.MuteName),
|
Utils.BytesToString(UpdateMuteListEntry.MuteData.MuteName),
|
||||||
UpdateMuteListEntry.MuteData.MuteType,
|
UpdateMuteListEntry.MuteData.MuteType,
|
||||||
UpdateMuteListEntry.AgentData.AgentID);
|
UpdateMuteListEntry.AgentData.AgentID);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
private bool HandleRemoveMuteListEntry(IClientAPI client, Packet Packet)
|
private bool HandleRemoveMuteListEntry(IClientAPI client, Packet Packet)
|
||||||
{
|
{
|
||||||
RemoveMuteListEntryPacket RemoveMuteListEntry =
|
RemoveMuteListEntryPacket RemoveMuteListEntry =
|
||||||
(RemoveMuteListEntryPacket)Packet;
|
(RemoveMuteListEntryPacket)Packet;
|
||||||
MuteListEntryRemove handlerRemoveMuteListEntry = OnRemoveMuteListEntryEvent;
|
MuteListEntryRemove handlerRemoveMuteListEntry = OnRemoveMuteListEntryEvent;
|
||||||
if (handlerRemoveMuteListEntry != null)
|
if (handlerRemoveMuteListEntry != null)
|
||||||
{
|
{
|
||||||
handlerRemoveMuteListEntry(this,
|
handlerRemoveMuteListEntry(this,
|
||||||
RemoveMuteListEntry.MuteData.MuteID,
|
RemoveMuteListEntry.MuteData.MuteID,
|
||||||
Utils.BytesToString(RemoveMuteListEntry.MuteData.MuteName),
|
Utils.BytesToString(RemoveMuteListEntry.MuteData.MuteName),
|
||||||
RemoveMuteListEntry.AgentData.AgentID);
|
RemoveMuteListEntry.AgentData.AgentID);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
private bool HandleUserReport(IClientAPI client, Packet Packet)
|
private bool HandleUserReport(IClientAPI client, Packet Packet)
|
||||||
{
|
{
|
||||||
UserReportPacket UserReport =
|
UserReportPacket UserReport =
|
||||||
(UserReportPacket)Packet;
|
(UserReportPacket)Packet;
|
||||||
|
|
||||||
NewUserReport handlerUserReport = OnUserReportEvent;
|
NewUserReport handlerUserReport = OnUserReportEvent;
|
||||||
if (handlerUserReport != null)
|
if (handlerUserReport != null)
|
||||||
{
|
{
|
||||||
handlerUserReport(this,
|
handlerUserReport(this,
|
||||||
Utils.BytesToString(UserReport.ReportData.AbuseRegionName),
|
Utils.BytesToString(UserReport.ReportData.AbuseRegionName),
|
||||||
UserReport.ReportData.AbuserID,
|
UserReport.ReportData.AbuserID,
|
||||||
UserReport.ReportData.Category,
|
UserReport.ReportData.Category,
|
||||||
UserReport.ReportData.CheckFlags,
|
UserReport.ReportData.CheckFlags,
|
||||||
Utils.BytesToString(UserReport.ReportData.Details),
|
Utils.BytesToString(UserReport.ReportData.Details),
|
||||||
UserReport.ReportData.ObjectID,
|
UserReport.ReportData.ObjectID,
|
||||||
UserReport.ReportData.Position,
|
UserReport.ReportData.Position,
|
||||||
UserReport.ReportData.ReportType,
|
UserReport.ReportData.ReportType,
|
||||||
UserReport.ReportData.ScreenshotID,
|
UserReport.ReportData.ScreenshotID,
|
||||||
Utils.BytesToString(UserReport.ReportData.Summary),
|
Utils.BytesToString(UserReport.ReportData.Summary),
|
||||||
UserReport.AgentData.AgentID);
|
UserReport.AgentData.AgentID);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
private bool HandleSendPostcard(IClientAPI client, Packet packet)
|
private bool HandleSendPostcard(IClientAPI client, Packet packet)
|
||||||
{
|
{
|
||||||
SendPostcardPacket SendPostcard =
|
SendPostcardPacket SendPostcard =
|
||||||
(SendPostcardPacket)packet;
|
(SendPostcardPacket)packet;
|
||||||
SendPostcard handlerSendPostcard = OnSendPostcard;
|
SendPostcard handlerSendPostcard = OnSendPostcard;
|
||||||
if (handlerSendPostcard != null)
|
if (handlerSendPostcard != null)
|
||||||
{
|
{
|
||||||
handlerSendPostcard(this);
|
handlerSendPostcard(this);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
private bool HandleUseCircuitCode(IClientAPI sender, Packet Pack)
|
private bool HandleUseCircuitCode(IClientAPI sender, Packet Pack)
|
||||||
{
|
{
|
||||||
|
@ -9355,72 +9355,72 @@ namespace OpenSim.Region.ClientStack.LindenUDP
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private bool HandleGroupVoteHistoryRequest(IClientAPI client, Packet Packet)
|
|
||||||
{
|
|
||||||
GroupVoteHistoryRequestPacket GroupVoteHistoryRequest =
|
|
||||||
(GroupVoteHistoryRequestPacket)Packet;
|
|
||||||
GroupVoteHistoryRequest handlerGroupVoteHistoryRequest = OnGroupVoteHistoryRequest;
|
|
||||||
if (handlerGroupVoteHistoryRequest != null)
|
|
||||||
{
|
|
||||||
handlerGroupVoteHistoryRequest(this, GroupVoteHistoryRequest.AgentData.AgentID,GroupVoteHistoryRequest.AgentData.SessionID,GroupVoteHistoryRequest.GroupData.GroupID,GroupVoteHistoryRequest.TransactionData.TransactionID);
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
private bool HandleGroupActiveProposalsRequest(IClientAPI client, Packet Packet)
|
private bool HandleGroupVoteHistoryRequest(IClientAPI client, Packet Packet)
|
||||||
{
|
{
|
||||||
GroupActiveProposalsRequestPacket GroupActiveProposalsRequest =
|
GroupVoteHistoryRequestPacket GroupVoteHistoryRequest =
|
||||||
(GroupActiveProposalsRequestPacket)Packet;
|
(GroupVoteHistoryRequestPacket)Packet;
|
||||||
GroupActiveProposalsRequest handlerGroupActiveProposalsRequest = OnGroupActiveProposalsRequest;
|
GroupVoteHistoryRequest handlerGroupVoteHistoryRequest = OnGroupVoteHistoryRequest;
|
||||||
if (handlerGroupActiveProposalsRequest != null)
|
if (handlerGroupVoteHistoryRequest != null)
|
||||||
{
|
{
|
||||||
handlerGroupActiveProposalsRequest(this, GroupActiveProposalsRequest.AgentData.AgentID,GroupActiveProposalsRequest.AgentData.SessionID,GroupActiveProposalsRequest.GroupData.GroupID,GroupActiveProposalsRequest.TransactionData.TransactionID);
|
handlerGroupVoteHistoryRequest(this, GroupVoteHistoryRequest.AgentData.AgentID,GroupVoteHistoryRequest.AgentData.SessionID,GroupVoteHistoryRequest.GroupData.GroupID,GroupVoteHistoryRequest.TransactionData.TransactionID);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
private bool HandleGroupAccountDetailsRequest(IClientAPI client, Packet Packet)
|
private bool HandleGroupActiveProposalsRequest(IClientAPI client, Packet Packet)
|
||||||
{
|
{
|
||||||
GroupAccountDetailsRequestPacket GroupAccountDetailsRequest =
|
GroupActiveProposalsRequestPacket GroupActiveProposalsRequest =
|
||||||
(GroupAccountDetailsRequestPacket)Packet;
|
(GroupActiveProposalsRequestPacket)Packet;
|
||||||
GroupAccountDetailsRequest handlerGroupAccountDetailsRequest = OnGroupAccountDetailsRequest;
|
GroupActiveProposalsRequest handlerGroupActiveProposalsRequest = OnGroupActiveProposalsRequest;
|
||||||
if (handlerGroupAccountDetailsRequest != null)
|
if (handlerGroupActiveProposalsRequest != null)
|
||||||
{
|
{
|
||||||
handlerGroupAccountDetailsRequest(this, GroupAccountDetailsRequest.AgentData.AgentID,GroupAccountDetailsRequest.AgentData.GroupID,GroupAccountDetailsRequest.MoneyData.RequestID,GroupAccountDetailsRequest.AgentData.SessionID);
|
handlerGroupActiveProposalsRequest(this, GroupActiveProposalsRequest.AgentData.AgentID,GroupActiveProposalsRequest.AgentData.SessionID,GroupActiveProposalsRequest.GroupData.GroupID,GroupActiveProposalsRequest.TransactionData.TransactionID);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
private bool HandleGroupAccountSummaryRequest(IClientAPI client, Packet Packet)
|
private bool HandleGroupAccountDetailsRequest(IClientAPI client, Packet Packet)
|
||||||
{
|
{
|
||||||
GroupAccountSummaryRequestPacket GroupAccountSummaryRequest =
|
GroupAccountDetailsRequestPacket GroupAccountDetailsRequest =
|
||||||
(GroupAccountSummaryRequestPacket)Packet;
|
(GroupAccountDetailsRequestPacket)Packet;
|
||||||
GroupAccountSummaryRequest handlerGroupAccountSummaryRequest = OnGroupAccountSummaryRequest;
|
GroupAccountDetailsRequest handlerGroupAccountDetailsRequest = OnGroupAccountDetailsRequest;
|
||||||
if (handlerGroupAccountSummaryRequest != null)
|
if (handlerGroupAccountDetailsRequest != null)
|
||||||
{
|
{
|
||||||
handlerGroupAccountSummaryRequest(this, GroupAccountSummaryRequest.AgentData.AgentID,GroupAccountSummaryRequest.AgentData.GroupID);
|
handlerGroupAccountDetailsRequest(this, GroupAccountDetailsRequest.AgentData.AgentID,GroupAccountDetailsRequest.AgentData.GroupID,GroupAccountDetailsRequest.MoneyData.RequestID,GroupAccountDetailsRequest.AgentData.SessionID);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
private bool HandleGroupTransactionsDetailsRequest(IClientAPI client, Packet Packet)
|
private bool HandleGroupAccountSummaryRequest(IClientAPI client, Packet Packet)
|
||||||
{
|
{
|
||||||
GroupAccountTransactionsRequestPacket GroupAccountTransactionsRequest =
|
GroupAccountSummaryRequestPacket GroupAccountSummaryRequest =
|
||||||
(GroupAccountTransactionsRequestPacket)Packet;
|
(GroupAccountSummaryRequestPacket)Packet;
|
||||||
GroupAccountTransactionsRequest handlerGroupAccountTransactionsRequest = OnGroupAccountTransactionsRequest;
|
GroupAccountSummaryRequest handlerGroupAccountSummaryRequest = OnGroupAccountSummaryRequest;
|
||||||
if (handlerGroupAccountTransactionsRequest != null)
|
if (handlerGroupAccountSummaryRequest != null)
|
||||||
{
|
{
|
||||||
handlerGroupAccountTransactionsRequest(this, GroupAccountTransactionsRequest.AgentData.AgentID,GroupAccountTransactionsRequest.AgentData.GroupID,GroupAccountTransactionsRequest.MoneyData.RequestID,GroupAccountTransactionsRequest.AgentData.SessionID);
|
handlerGroupAccountSummaryRequest(this, GroupAccountSummaryRequest.AgentData.AgentID,GroupAccountSummaryRequest.AgentData.GroupID);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private bool HandleGroupTransactionsDetailsRequest(IClientAPI client, Packet Packet)
|
||||||
|
{
|
||||||
|
GroupAccountTransactionsRequestPacket GroupAccountTransactionsRequest =
|
||||||
|
(GroupAccountTransactionsRequestPacket)Packet;
|
||||||
|
GroupAccountTransactionsRequest handlerGroupAccountTransactionsRequest = OnGroupAccountTransactionsRequest;
|
||||||
|
if (handlerGroupAccountTransactionsRequest != null)
|
||||||
|
{
|
||||||
|
handlerGroupAccountTransactionsRequest(this, GroupAccountTransactionsRequest.AgentData.AgentID,GroupAccountTransactionsRequest.AgentData.GroupID,GroupAccountTransactionsRequest.MoneyData.RequestID,GroupAccountTransactionsRequest.AgentData.SessionID);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
private bool HandleGroupTitlesRequest(IClientAPI sender, Packet Pack)
|
private bool HandleGroupTitlesRequest(IClientAPI sender, Packet Pack)
|
||||||
{
|
{
|
||||||
GroupTitlesRequestPacket groupTitlesRequest =
|
GroupTitlesRequestPacket groupTitlesRequest =
|
||||||
|
@ -14221,7 +14221,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
|
||||||
if (handlerGodKickUser != null)
|
if (handlerGodKickUser != null)
|
||||||
{
|
{
|
||||||
handlerGodKickUser(gkupack.UserInfo.GodID, gkupack.UserInfo.GodSessionID,
|
handlerGodKickUser(gkupack.UserInfo.GodID, gkupack.UserInfo.GodSessionID,
|
||||||
gkupack.UserInfo.AgentID, gkupack.UserInfo.KickFlags, gkupack.UserInfo.Reason,gkupack.UserInfo);
|
gkupack.UserInfo.AgentID, gkupack.UserInfo.KickFlags, gkupack.UserInfo.Reason,gkupack.UserInfo);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in New Issue