diff options
Diffstat (limited to 'OpenSim/Region/OptionalModules/Agent/InternetRelayClientView')
-rw-r--r-- | OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs b/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs index dd72cfb..2112b71 100644 --- a/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs +++ b/OpenSim/Region/OptionalModules/Agent/InternetRelayClientView/Server/IRCClientView.cs | |||
@@ -58,6 +58,8 @@ namespace OpenSim.Region.OptionalModules.Agent.InternetRelayClientView.Server | |||
58 | 58 | ||
59 | public ISceneAgent SceneAgent { get; set; } | 59 | public ISceneAgent SceneAgent { get; set; } |
60 | 60 | ||
61 | public int PingTimeMS { get { return 0; } } | ||
62 | |||
61 | private string m_username; | 63 | private string m_username; |
62 | private string m_nick; | 64 | private string m_nick; |
63 | 65 | ||
@@ -660,6 +662,7 @@ namespace OpenSim.Region.OptionalModules.Agent.InternetRelayClientView.Server | |||
660 | public event BakeTerrain OnBakeTerrain; | 662 | public event BakeTerrain OnBakeTerrain; |
661 | public event EstateChangeInfo OnEstateChangeInfo; | 663 | public event EstateChangeInfo OnEstateChangeInfo; |
662 | public event EstateManageTelehub OnEstateManageTelehub; | 664 | public event EstateManageTelehub OnEstateManageTelehub; |
665 | public event CachedTextureRequest OnCachedTextureRequest; | ||
663 | public event SetAppearance OnSetAppearance; | 666 | public event SetAppearance OnSetAppearance; |
664 | public event AvatarNowWearing OnAvatarNowWearing; | 667 | public event AvatarNowWearing OnAvatarNowWearing; |
665 | public event RezSingleAttachmentFromInv OnRezSingleAttachmentFromInv; | 668 | public event RezSingleAttachmentFromInv OnRezSingleAttachmentFromInv; |
@@ -687,6 +690,7 @@ namespace OpenSim.Region.OptionalModules.Agent.InternetRelayClientView.Server | |||
687 | public event Action<IClientAPI, bool> OnCompleteMovementToRegion; | 690 | public event Action<IClientAPI, bool> OnCompleteMovementToRegion; |
688 | public event UpdateAgent OnPreAgentUpdate; | 691 | public event UpdateAgent OnPreAgentUpdate; |
689 | public event UpdateAgent OnAgentUpdate; | 692 | public event UpdateAgent OnAgentUpdate; |
693 | public event UpdateAgent OnAgentCameraUpdate; | ||
690 | public event AgentRequestSit OnAgentRequestSit; | 694 | public event AgentRequestSit OnAgentRequestSit; |
691 | public event AgentSit OnAgentSit; | 695 | public event AgentSit OnAgentSit; |
692 | public event AvatarPickerRequest OnAvatarPickerRequest; | 696 | public event AvatarPickerRequest OnAvatarPickerRequest; |
@@ -906,7 +910,7 @@ namespace OpenSim.Region.OptionalModules.Agent.InternetRelayClientView.Server | |||
906 | 910 | ||
907 | public void Start() | 911 | public void Start() |
908 | { | 912 | { |
909 | m_scene.AddNewClient(this, PresenceType.User); | 913 | m_scene.AddNewAgent(this, PresenceType.User); |
910 | 914 | ||
911 | // Mimicking LLClientView which gets always set appearance from client. | 915 | // Mimicking LLClientView which gets always set appearance from client. |
912 | AvatarAppearance appearance; | 916 | AvatarAppearance appearance; |
@@ -943,13 +947,18 @@ namespace OpenSim.Region.OptionalModules.Agent.InternetRelayClientView.Server | |||
943 | { | 947 | { |
944 | 948 | ||
945 | } | 949 | } |
950 | |||
951 | public void SendCachedTextureResponse(ISceneEntity avatar, int serial, List<CachedTextureResponseArg> cachedTextures) | ||
952 | { | ||
946 | 953 | ||
954 | } | ||
955 | |||
947 | public void SendStartPingCheck(byte seq) | 956 | public void SendStartPingCheck(byte seq) |
948 | { | 957 | { |
949 | 958 | ||
950 | } | 959 | } |
951 | 960 | ||
952 | public void SendKillObject(ulong regionHandle, List<uint> localID) | 961 | public void SendKillObject(List<uint> localID) |
953 | { | 962 | { |
954 | 963 | ||
955 | } | 964 | } |
@@ -1681,7 +1690,7 @@ namespace OpenSim.Region.OptionalModules.Agent.InternetRelayClientView.Server | |||
1681 | { | 1690 | { |
1682 | } | 1691 | } |
1683 | 1692 | ||
1684 | public void StopFlying(ISceneEntity presence) | 1693 | public void SendAgentTerseUpdate(ISceneEntity presence) |
1685 | { | 1694 | { |
1686 | } | 1695 | } |
1687 | 1696 | ||
@@ -1693,5 +1702,8 @@ namespace OpenSim.Region.OptionalModules.Agent.InternetRelayClientView.Server | |||
1693 | { | 1702 | { |
1694 | } | 1703 | } |
1695 | 1704 | ||
1705 | public void SendPartFullUpdate(ISceneEntity ent, uint? parentID) | ||
1706 | { | ||
1707 | } | ||
1696 | } | 1708 | } |
1697 | } | 1709 | } |