CameraOnlyModeModule.cs 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. /*
  2. * Copyright (c) Contributors, http://opensimulator.org/
  3. * See CONTRIBUTORS.TXT for a full list of copyright holders.
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification, are permitted provided that the following conditions are met:
  7. * * Redistributions of source code must retain the above copyright
  8. * notice, this list of conditions and the following disclaimer.
  9. * * Redistributions in binary form must reproduce the above copyright
  10. * notice, this list of conditions and the following disclaimer in the
  11. * documentation and/or other materials provided with the distribution.
  12. * * Neither the name of the OpenSimulator Project nor the
  13. * names of its contributors may be used to endorse or promote products
  14. * derived from this software without specific prior written permission.
  15. *
  16. * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY
  17. * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  18. * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  19. * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY
  20. * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  21. * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  22. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  23. * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  24. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  25. * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  26. */
  27. using System;
  28. using System.IO;
  29. using System.Reflection;
  30. using System.Text;
  31. using System.Collections.Generic;
  32. using System.Threading;
  33. using OpenMetaverse;
  34. using OpenMetaverse.StructuredData;
  35. using OpenSim;
  36. using OpenSim.Region;
  37. using OpenSim.Region.Framework;
  38. using OpenSim.Region.Framework.Scenes;
  39. using OpenSim.Region.Framework.Interfaces;
  40. using OpenSim.Framework;
  41. //using OpenSim.Framework.Capabilities;
  42. using OpenSim.Framework.Servers;
  43. using OpenSim.Framework.Servers.HttpServer;
  44. using Nini.Config;
  45. using log4net;
  46. using Mono.Addins;
  47. using OSDMap = OpenMetaverse.StructuredData.OSDMap;
  48. using TeleportFlags = OpenSim.Framework.Constants.TeleportFlags;
  49. namespace OpenSim.Region.OptionalModules.ViewerSupport
  50. {
  51. [Extension(Path = "/OpenSim/RegionModules", NodeName = "RegionModule", Id = "CameraOnlyMode")]
  52. public class CameraOnlyModeModule : INonSharedRegionModule
  53. {
  54. private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
  55. private Scene m_scene;
  56. private SimulatorFeaturesHelper m_Helper;
  57. private bool m_Enabled;
  58. private int m_UserLevel;
  59. public string Name
  60. {
  61. get { return "CameraOnlyModeModule"; }
  62. }
  63. public Type ReplaceableInterface
  64. {
  65. get { return null; }
  66. }
  67. public void Initialise(IConfigSource config)
  68. {
  69. IConfig moduleConfig = config.Configs["CameraOnlyModeModule"];
  70. if (moduleConfig != null)
  71. {
  72. m_Enabled = moduleConfig.GetBoolean("enabled", false);
  73. if (m_Enabled)
  74. {
  75. m_UserLevel = moduleConfig.GetInt("UserLevel", 0);
  76. m_log.Info("[CAMERA-ONLY MODE]: CameraOnlyModeModule enabled");
  77. }
  78. }
  79. }
  80. public void Close()
  81. {
  82. }
  83. public void AddRegion(Scene scene)
  84. {
  85. if (m_Enabled)
  86. {
  87. m_scene = scene;
  88. //m_scene.EventManager.OnMakeRootAgent += (OnMakeRootAgent);
  89. }
  90. }
  91. //private void OnMakeRootAgent(ScenePresence obj)
  92. //{
  93. // throw new NotImplementedException();
  94. //}
  95. public void RegionLoaded(Scene scene)
  96. {
  97. if (m_Enabled)
  98. {
  99. m_Helper = new SimulatorFeaturesHelper(scene);
  100. ISimulatorFeaturesModule featuresModule = m_scene.RequestModuleInterface<ISimulatorFeaturesModule>();
  101. if (featuresModule != null)
  102. featuresModule.OnSimulatorFeaturesRequest += OnSimulatorFeaturesRequest;
  103. }
  104. }
  105. public void RemoveRegion(Scene scene)
  106. {
  107. }
  108. private void OnSimulatorFeaturesRequest(UUID agentID, ref OSDMap features)
  109. {
  110. if (!m_Enabled)
  111. return;
  112. m_log.DebugFormat("[CAMERA-ONLY MODE]: OnSimulatorFeaturesRequest in {0}", m_scene.RegionInfo.RegionName);
  113. if (m_Helper.UserLevel(agentID) <= m_UserLevel)
  114. {
  115. OSDMap extrasMap;
  116. if (features.ContainsKey("OpenSimExtras"))
  117. {
  118. extrasMap = (OSDMap)features["OpenSimExtras"];
  119. }
  120. else
  121. {
  122. extrasMap = new OSDMap();
  123. features["OpenSimExtras"] = extrasMap;
  124. }
  125. extrasMap["camera-only-mode"] = OSDMap.FromString("true");
  126. m_log.DebugFormat("[CAMERA-ONLY MODE]: Sent in {0}", m_scene.RegionInfo.RegionName);
  127. }
  128. else
  129. m_log.DebugFormat("[CAMERA-ONLY MODE]: NOT Sending camera-only-mode in {0}", m_scene.RegionInfo.RegionName);
  130. }
  131. private void DetachAttachments(UUID agentID)
  132. {
  133. ScenePresence sp = m_scene.GetScenePresence(agentID);
  134. if ((sp.TeleportFlags & TeleportFlags.ViaLogin) != 0)
  135. // Wait a little, cos there's weird stuff going on at login related to
  136. // the Current Outfit Folder
  137. Thread.Sleep(8000);
  138. if (sp != null && m_scene.AttachmentsModule != null)
  139. {
  140. List<SceneObjectGroup> attachs = sp.GetAttachments();
  141. if (attachs != null && attachs.Count > 0)
  142. {
  143. foreach (SceneObjectGroup sog in attachs)
  144. {
  145. m_log.DebugFormat("[CAMERA-ONLY MODE]: Forcibly detaching attach {0} from {1} in {2}",
  146. sog.Name, sp.Name, m_scene.RegionInfo.RegionName);
  147. m_scene.AttachmentsModule.DetachSingleAttachmentToInv(sp, sog);
  148. }
  149. }
  150. }
  151. }
  152. }
  153. }