RegionModule.cs 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  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.AddNewSceneObject(fileObject, true);
  69. // }
  70. // }
  71. private void AddAvatars()
  72. {
  73. for (int i = 0; i < 1; i++)
  74. {
  75. MyNpcCharacter m_character = new MyNpcCharacter(m_scene.EventManager);
  76. m_scene.AddNewClient(m_character, false);
  77. }
  78. List<ScenePresence> avatars = m_scene.GetAvatars();
  79. foreach (ScenePresence avatar in avatars)
  80. {
  81. avatar.AbsolutePosition =
  82. new LLVector3((float)Util.RandomClass.Next(100, 200), (float)Util.RandomClass.Next(30, 200), 2);
  83. }
  84. }
  85. // private void AddComplexObjects(RegionInfo regionInfo, LLVector3 pos)
  86. // {
  87. // int objs = 3;
  88. // for (int i = 0; i < (objs*objs*objs); i++)
  89. // {
  90. // LLVector3 posOffset = new LLVector3((i % objs) * 4, ((i % (objs*objs)) / (objs)) * 4, (i / (objs*objs)) * 4);
  91. // ComplexObject complexObject =
  92. // new ComplexObject(m_scene, regionInfo.RegionHandle, LLUUID.Zero, m_scene.PrimIDAllocate(),
  93. // pos + posOffset);
  94. // m_scene.AddNewSceneObject(complexObject, true);
  95. // }
  96. // }
  97. // private void AddCpuCounter(RegionInfo regionInfo, LLVector3 pos)
  98. // {
  99. // SceneObjectGroup sceneObject =
  100. // new CpuCounterObject(m_scene, regionInfo.RegionHandle, LLUUID.Zero, m_scene.PrimIDAllocate(),
  101. // pos + new LLVector3(1f, 1f, 1f));
  102. // m_scene.AddNewSceneObject(sceneObject, true);
  103. // }
  104. public void Close()
  105. {
  106. m_scene = null;
  107. }
  108. public string Name
  109. {
  110. get { return GetType().AssemblyQualifiedName; }
  111. }
  112. public bool IsSharedModule
  113. {
  114. get { return false; }
  115. }
  116. #endregion
  117. }
  118. }