RegionModule.cs 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  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 OpenSim 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.Collections.Generic;
  28. using System.IO;
  29. using libsecondlife;
  30. using Nini.Config;
  31. using OpenSim.Framework;
  32. using OpenSim.Region.Environment.Interfaces;
  33. using OpenSim.Region.Environment.Scenes;
  34. namespace OpenSim.Region.Examples.SimpleModule
  35. {
  36. public class RegionModule : IRegionModule
  37. {
  38. #region IRegionModule Members
  39. private Scene m_scene;
  40. public void Initialise(Scene scene, IConfigSource source)
  41. {
  42. m_scene = scene;
  43. }
  44. public void PostInitialise()
  45. {
  46. RegionInfo regionInfo = m_scene.RegionInfo;
  47. LLVector3 pos = new LLVector3(110, 129, 27);
  48. //AddCpuCounter(regionInfo, pos);
  49. // AddComplexObjects(regionInfo, pos);
  50. AddAvatars();
  51. // AddFileSystemObjects();
  52. }
  53. private void AddFileSystemObjects()
  54. {
  55. DirectoryInfo dirInfo = new DirectoryInfo(".");
  56. float x = 0;
  57. float z = 0;
  58. foreach (FileInfo fileInfo in dirInfo.GetFiles())
  59. {
  60. LLVector3 filePos = new LLVector3(100 + x, 129, 27 + z);
  61. x = x + 2;
  62. if (x > 50)
  63. {
  64. x = 0;
  65. z = z + 2;
  66. }
  67. FileSystemObject fileObject = new FileSystemObject(m_scene, fileInfo, filePos);
  68. m_scene.AddEntity(fileObject);
  69. fileObject.ScheduleGroupForFullUpdate();
  70. }
  71. }
  72. private void AddAvatars()
  73. {
  74. for (int i = 0; i < 1; i++)
  75. {
  76. MyNpcCharacter m_character = new MyNpcCharacter(m_scene.EventManager);
  77. m_scene.AddNewClient(m_character, false);
  78. }
  79. List<ScenePresence> avatars = m_scene.GetAvatars();
  80. foreach (ScenePresence avatar in avatars)
  81. {
  82. avatar.AbsolutePosition =
  83. new LLVector3((float)Util.RandomClass.Next(100, 200), (float)Util.RandomClass.Next(30, 200), 2);
  84. }
  85. }
  86. private void AddComplexObjects(RegionInfo regionInfo, LLVector3 pos)
  87. {
  88. int objs = 3;
  89. for (int i = 0; i < (objs*objs*objs); i++)
  90. {
  91. LLVector3 posOffset = new LLVector3((i % objs) * 4, ((i % (objs*objs)) / ( objs )) * 4, (i / (objs*objs)) * 4);
  92. ComplexObject complexObject =
  93. new ComplexObject(m_scene, regionInfo.RegionHandle, LLUUID.Zero, m_scene.PrimIDAllocate(),
  94. pos + posOffset);
  95. m_scene.AddEntity(complexObject);
  96. }
  97. }
  98. private void AddCpuCounter(RegionInfo regionInfo, LLVector3 pos)
  99. {
  100. SceneObjectGroup sceneObject =
  101. new CpuCounterObject(m_scene, regionInfo.RegionHandle, LLUUID.Zero, m_scene.PrimIDAllocate(),
  102. pos + new LLVector3(1f, 1f, 1f));
  103. m_scene.AddEntity(sceneObject);
  104. }
  105. public void Close()
  106. {
  107. m_scene = null;
  108. }
  109. public string Name
  110. {
  111. get { return GetType().AssemblyQualifiedName; }
  112. }
  113. public bool IsSharedModule
  114. {
  115. get { return false; }
  116. }
  117. #endregion
  118. }
  119. }