/* * Copyright (c) 2007-2009, openmetaverse.org * All rights reserved. * * - Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * - Redistributions of source code must retain the above copyright notice, this * list of conditions and the following disclaimer. * - Neither the name of the openmetaverse.org nor the names * of its contributors may be used to endorse or promote products derived from * this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. */ using System; using System.Collections.Generic; using System.Text; using OpenMetaverse.StructuredData; using OpenMetaverse.Interfaces; using OpenMetaverse.Messages.Linden; namespace OpenMetaverse { public partial class Caps { /// /// Return a decoded capabilities message as a strongly typed object /// /// A string containing the name of the capabilities message key /// An to decode /// A strongly typed object containing the decoded information from the capabilities message, or null /// if no existing Message object exists for the specified event internal static IMessage DecodeEvent(string eventName, OSDMap map) { IMessage message = null; switch (eventName) { case "AgentGroupDataUpdate": message = new AgentGroupDataUpdateMessage(); break; case "ParcelProperties": message = new ParcelPropertiesMessage(); break; case "ParcelObjectOwnersReply": message = new ParcelObjectOwnersMessage(); break; case "TeleportFinish": message = new TeleportFinishMessage(); break; case "EnableSimulator": message = new EnableSimulatorMessage(); break; case "ParcelPropertiesUpdate": message = new ParcelPropertiesUpdateMessage(); break; case "EstablishAgentCommunication": message = new EstablishAgentCommunicationMessage(); break; case "ChatterBoxInvitation": message = new ChatterBoxInvitationMessage(); break; case "ChatterBoxSessionEventReply": message = new ChatterboxSessionEventReplyMessage(); break; case "ChatterBoxSessionStartReply": message = new ChatterBoxSessionStartReplyMessage(); break; case "ChatterBoxSessionAgentListUpdates": message = new ChatterBoxSessionAgentListUpdatesMessage(); break; case "RequiredVoiceVersion": message = new RequiredVoiceVersionMessage(); break; case "MapLayer": message = new MapLayerMessage(); break; case "ChatSessionRequest": message = new ChatSessionRequestMessage(); break; case "CopyInventoryFromNotecard": message = new CopyInventoryFromNotecardMessage(); break; case "ProvisionVoiceAccountRequest": message = new ProvisionVoiceAccountRequestMessage(); break; case "Viewerstats": message = new ViewerStatsMessage(); break; case "UpdateAgentLanguage": message = new UpdateAgentLanguageMessage(); break; case "RemoteParcelRequest": message = new RemoteParcelRequestMessage(); break; case "UpdateScriptTask": message = new UpdateScriptTaskMessage(); break; case "UpdateScriptAgent": message = new UpdateScriptAgentMessage(); break; // Capabilities TODO: // DispatchRegionInfo // EstateChangeInfo // EventQueueGet // FetchInventoryDescendents // GroupProposalBallot // MapLayerGod // NewFileAgentInventory // RequestTextureDownload // SearchStatRequest // SearchStatTracking // SendPostcard // SendUserReport // SendUserReportWithScreenshot // ServerReleaseNotes // StartGroupProposal // UpdateGestureAgentInventory // UpdateNotecardAgentInventory // UpdateGestureTaskInventory // UpdateNotecardTaskInventory // ViewerStartAuction // UntrustedSimulatorMessage } if (message != null) { try { message.Deserialize(map); return message; } catch (Exception e) { Logger.Log("Exception while tring to Deserialize " + eventName + ":" + e.Message + ": " + e.StackTrace, Helpers.LogLevel.Error); } return null; } else { return null; } } } }