123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459 |
- /*
- * Copyright (c) Contributors, http://opensimulator.org/
- * See CONTRIBUTORS.TXT for a full list of copyright holders.
- *
- * 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.
- * * Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution.
- * * Neither the name of the OpenSimulator Project 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 DEVELOPERS ``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 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.Reflection;
- using log4net;
- using Mono.Addins;
- using Nini.Config;
- using OpenMetaverse;
- using OpenSim.Framework;
- using OpenSim.Region.Framework.Interfaces;
- using OpenSim.Region.Framework.Scenes;
- using OpenSim.Region.CoreModules.World.Wind;
- namespace OpenSim.Region.CoreModules
- {
- public class WindModule : IWindModule
- {
- private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
- private uint m_frame = 0;
- private uint m_frameLastUpdateClientArray = 0;
- private int m_frameUpdateRate = 150;
- //private Random m_rndnums = new Random(Environment.TickCount);
- private Scene m_scene = null;
- private bool m_ready = false;
- private bool m_enabled = false;
- private IWindModelPlugin m_activeWindPlugin = null;
- private const string m_dWindPluginName = "SimpleRandomWind";
- private Dictionary<string, IWindModelPlugin> m_availableWindPlugins = new Dictionary<string, IWindModelPlugin>();
- // Simplified windSpeeds based on the fact that the client protocal tracks at a resolution of 16m
- private Vector2[] windSpeeds = new Vector2[16 * 16];
- #region IRegion Methods
- public void Initialise(Scene scene, IConfigSource config)
- {
- IConfig windConfig = config.Configs["Wind"];
- string desiredWindPlugin = m_dWindPluginName;
- if (windConfig != null)
- {
- m_enabled = windConfig.GetBoolean("enabled", true);
- m_frameUpdateRate = windConfig.GetInt("wind_update_rate", 150);
- // Determine which wind model plugin is desired
- if (windConfig.Contains("wind_plugin"))
- {
- desiredWindPlugin = windConfig.GetString("wind_plugin");
- }
- }
- if (m_enabled)
- {
- m_log.InfoFormat("[WIND] Enabled with an update rate of {0} frames.", m_frameUpdateRate);
- m_scene = scene;
- m_frame = 0;
- // Register all the Wind Model Plug-ins
- foreach (IWindModelPlugin windPlugin in AddinManager.GetExtensionObjects("/OpenSim/WindModule", false))
- {
- m_log.InfoFormat("[WIND] Found Plugin: {0}", windPlugin.Name);
- m_availableWindPlugins.Add(windPlugin.Name, windPlugin);
- }
- // Check for desired plugin
- if (m_availableWindPlugins.ContainsKey(desiredWindPlugin))
- {
- m_activeWindPlugin = m_availableWindPlugins[desiredWindPlugin];
- m_log.InfoFormat("[WIND] {0} plugin found, initializing.", desiredWindPlugin);
- if (windConfig != null)
- {
- m_activeWindPlugin.Initialise();
- m_activeWindPlugin.WindConfig(m_scene, windConfig);
- }
- }
- // if the plug-in wasn't found, default to no wind.
- if (m_activeWindPlugin == null)
- {
- m_log.ErrorFormat("[WIND] Could not find specified wind plug-in: {0}", desiredWindPlugin);
- m_log.ErrorFormat("[WIND] Defaulting to no wind.");
- }
- // This one puts an entry in the main help screen
- m_scene.AddCommand(this, String.Empty, "wind", "Usage: wind <plugin> <param> [value] - Get or Update Wind paramaters", null);
-
- // This one enables the ability to type just the base command without any parameters
- m_scene.AddCommand(this, "wind", "", "", HandleConsoleCommand);
- // Get a list of the parameters for each plugin
- foreach (IWindModelPlugin windPlugin in m_availableWindPlugins.Values)
- {
- m_scene.AddCommand(this, String.Format("wind base wind_plugin {0}", windPlugin.Name), String.Format("{0} - {1}", windPlugin.Name, windPlugin.Description), "", HandleConsoleBaseCommand);
- m_scene.AddCommand(this, String.Format("wind base wind_update_rate"), "Change the wind update rate.", "", HandleConsoleBaseCommand);
-
- foreach (KeyValuePair<string, string> kvp in windPlugin.WindParams())
- {
- m_scene.AddCommand(this, String.Format("wind {0} {1}", windPlugin.Name, kvp.Key), String.Format("{0} : {1} - {2}", windPlugin.Name, kvp.Key, kvp.Value), "", HandleConsoleParamCommand);
- }
- }
- // Register event handlers for when Avatars enter the region, and frame ticks
- m_scene.EventManager.OnFrame += WindUpdate;
- m_scene.EventManager.OnMakeRootAgent += OnAgentEnteredRegion;
- // Register the wind module
- m_scene.RegisterModuleInterface<IWindModule>(this);
- // Generate initial wind values
- GenWindPos();
- // Mark Module Ready for duty
- m_ready = true;
- }
- }
- public void PostInitialise()
- {
- }
- public void Close()
- {
- if (m_enabled)
- {
- m_ready = false;
- // REVIEW: If a region module is closed, is there a possibility that it'll re-open/initialize ??
- m_activeWindPlugin = null;
- foreach (IWindModelPlugin windPlugin in m_availableWindPlugins.Values)
- {
- windPlugin.Dispose();
- }
- m_availableWindPlugins.Clear();
- // Remove our hooks
- m_scene.EventManager.OnFrame -= WindUpdate;
- m_scene.EventManager.OnMakeRootAgent -= OnAgentEnteredRegion;
- }
- }
- public string Name
- {
- get { return "WindModule"; }
- }
- public bool IsSharedModule
- {
- get { return false; }
- }
- #endregion
- #region Console Commands
- private void ValidateConsole()
- {
- if (m_scene.ConsoleScene() == null)
- {
- // FIXME: If console region is root then this will be printed by every module. Currently, there is no
- // way to prevent this, short of making the entire module shared (which is complete overkill).
- // One possibility is to return a bool to signal whether the module has completely handled the command
- m_log.InfoFormat("[WIND]: Please change to a specific region in order to set Sun parameters.");
- return;
- }
- if (m_scene.ConsoleScene() != m_scene)
- {
- m_log.InfoFormat("[WIND]: Console Scene is not my scene.");
- return;
- }
- }
- /// <summary>
- /// Base console command handler, only used if a person specifies the base command with now options
- /// </summary>
- private void HandleConsoleCommand(string module, string[] cmdparams)
- {
- ValidateConsole();
- m_log.Info("[WIND] The wind command can be used to change the currently active wind model plugin and update the parameters for wind plugins.");
- }
- /// <summary>
- /// Called to change the active wind model plugin
- /// </summary>
- private void HandleConsoleBaseCommand(string module, string[] cmdparams)
- {
- ValidateConsole();
- if ((cmdparams.Length != 4)
- || !cmdparams[1].Equals("base"))
- {
- m_log.Info("[WIND] Invalid parameters to change parameters for Wind module base, usage: wind base <parameter> <value>");
- return;
- }
- switch (cmdparams[2])
- {
- case "wind_update_rate":
- int newRate = 1;
- if (int.TryParse(cmdparams[3], out newRate))
- {
- m_frameUpdateRate = newRate;
- }
- else
- {
- m_log.InfoFormat("[WIND] Invalid value {0} specified for {1}", cmdparams[3], cmdparams[2]);
- return;
- }
- break;
- case "wind_plugin":
- string desiredPlugin = cmdparams[3];
- if (desiredPlugin.Equals(m_activeWindPlugin.Name))
- {
- m_log.InfoFormat("[WIND] Wind model plugin {0} is already active", cmdparams[3]);
- return;
- }
- if (m_availableWindPlugins.ContainsKey(desiredPlugin))
- {
- m_activeWindPlugin = m_availableWindPlugins[cmdparams[3]];
- m_log.InfoFormat("[WIND] {0} wind model plugin now active", m_activeWindPlugin.Name);
- }
- else
- {
- m_log.InfoFormat("[WIND] Could not find wind model plugin {0}", desiredPlugin);
- }
- break;
- }
- }
- /// <summary>
- /// Called to change plugin parameters.
- /// </summary>
- private void HandleConsoleParamCommand(string module, string[] cmdparams)
- {
- ValidateConsole();
- // wind <plugin> <param> [value]
- if ((cmdparams.Length != 4)
- && (cmdparams.Length != 3))
- {
- m_log.Info("[WIND] Usage: wind <plugin> <param> [value]");
- return;
- }
- string plugin = cmdparams[1];
- string param = cmdparams[2];
- float value = 0f;
- if (cmdparams.Length == 4)
- {
- if (!float.TryParse(cmdparams[3], out value))
- {
- m_log.InfoFormat("[WIND] Invalid value {0}", cmdparams[3]);
- }
- try
- {
- WindParamSet(plugin, param, value);
- }
- catch (Exception e)
- {
- m_log.InfoFormat("[WIND] {0}", e.Message);
- }
- }
- else
- {
- try
- {
- value = WindParamGet(plugin, param);
- m_log.InfoFormat("[WIND] {0} : {1}", param, value);
- }
- catch (Exception e)
- {
- m_log.InfoFormat("[WIND] {0}", e.Message);
- }
- }
- }
- #endregion
- #region IWindModule Methods
- /// <summary>
- /// Retrieve the wind speed at the given region coordinate. This
- /// implimentation ignores Z.
- /// </summary>
- /// <param name="x">0...255</param>
- /// <param name="y">0...255</param>
- public Vector3 WindSpeed(int x, int y, int z)
- {
- if (m_activeWindPlugin != null)
- {
- return m_activeWindPlugin.WindSpeed(x, y, z);
- }
- else
- {
- return new Vector3(0.0f, 0.0f, 0.0f);
- }
- }
- public void WindParamSet(string plugin, string param, float value)
- {
- if (m_availableWindPlugins.ContainsKey(plugin))
- {
- IWindModelPlugin windPlugin = m_availableWindPlugins[plugin];
- windPlugin.WindParamSet(param, value);
- m_log.InfoFormat("[WIND] {0} set to {1}", param, value);
- }
- else
- {
- throw new Exception(String.Format("Could not find plugin {0}", plugin));
- }
- }
- public float WindParamGet(string plugin, string param)
- {
- if (m_availableWindPlugins.ContainsKey(plugin))
- {
- IWindModelPlugin windPlugin = m_availableWindPlugins[plugin];
- return windPlugin.WindParamGet(param);
- }
- else
- {
- throw new Exception(String.Format("Could not find plugin {0}", plugin));
- }
- }
- public string WindActiveModelPluginName
- {
- get
- {
- if (m_activeWindPlugin != null)
- {
- return m_activeWindPlugin.Name;
- }
- else
- {
- return String.Empty;
- }
- }
- }
- #endregion
- /// <summary>
- /// Called on each frame update. Updates the wind model and clients as necessary.
- /// </summary>
- public void WindUpdate()
- {
- if (((m_frame++ % m_frameUpdateRate) != 0) || !m_ready)
- {
- return;
- }
- GenWindPos();
- SendWindAllClients();
- }
- public void OnAgentEnteredRegion(ScenePresence avatar)
- {
- if (m_ready)
- {
- if (m_activeWindPlugin != null)
- {
- // Ask wind plugin to generate a LL wind array to be cached locally
- // Try not to update this too often, as it may involve array copies
- if (m_frame >= (m_frameLastUpdateClientArray + m_frameUpdateRate))
- {
- windSpeeds = m_activeWindPlugin.WindLLClientArray();
- m_frameLastUpdateClientArray = m_frame;
- }
- }
- avatar.ControllingClient.SendWindData(windSpeeds);
- }
- }
- private void SendWindAllClients()
- {
- if (m_ready)
- {
- if (m_scene.GetRootAgentCount() > 0)
- {
- // Ask wind plugin to generate a LL wind array to be cached locally
- // Try not to update this too often, as it may involve array copies
- if (m_frame >= (m_frameLastUpdateClientArray + m_frameUpdateRate))
- {
- windSpeeds = m_activeWindPlugin.WindLLClientArray();
- m_frameLastUpdateClientArray = m_frame;
- }
- m_scene.ForEachScenePresence(delegate(ScenePresence sp)
- {
- if (!sp.IsChildAgent)
- sp.ControllingClient.SendWindData(windSpeeds);
- });
- }
- }
- }
- /// <summary>
- /// Calculate the sun's orbital position and its velocity.
- /// </summary>
- private void GenWindPos()
- {
- if (m_activeWindPlugin != null)
- {
- // Tell Wind Plugin to update it's wind data
- m_activeWindPlugin.WindUpdate(m_frame);
- }
- }
- }
- }
|