/*
* Copyright (c) 2006-2007, Second Life Reverse Engineering Team
* All rights reserved.
*
* - 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.
* - Neither the name of the Second Life Reverse Engineering Team 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 COPYRIGHT HOLDERS AND CONTRIBUTORS "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 COPYRIGHT OWNER OR 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;
namespace libsecondlife
{
///
/// Main class to expose Second Life functionality to clients. All of the
/// classes needed for sending and receiving data are accessible through
/// this class.
///
public class SecondLife
{
///
/// Callback used for client apps to receive log messages from
/// libsecondlife
///
/// Text sent to log
/// The severity of the log entry from
public delegate void LogCallback(string message, Helpers.LogLevel level);
/// Networking subsystem
public NetworkManager Network;
/// Settings class including constant values and changeable
/// parameters for everything
public Settings Settings;
/// Parcel (subdivided simulator lots) subsystem
public ParcelManager Parcels;
/// Our own avatars subsystem
public AgentManager Self;
/// Other avatars subsystem
public AvatarManager Avatars;
/// Friends list subsystem
public FriendsManager Friends;
/// Grid (aka simulator group) subsystem
public GridManager Grid;
/// Object subsystem
public ObjectManager Objects;
/// Group subsystem
public GroupManager Groups;
/// Asset subsystem
public AssetManager Assets;
/// Appearance subsystem
public AppearanceManager Appearance;
/// Inventory subsystem
public InventoryManager Inventory;
/// Directory searches including classifieds, people, land
/// sales, etc
public DirectoryManager Directory;
/// Handles land, wind, and cloud heightmaps
public TerrainManager Terrain;
/// Handles sound-related networking
public SoundManager Sound;
/// Throttling total bandwidth usage, or allocating bandwidth
/// for specific data stream types
public AgentThrottle Throttle;
/// Triggered whenever a message is logged. If this is left
/// null, log messages will go to the console
public event LogCallback OnLogMessage;
///
/// Default constructor
///
public SecondLife()
{
// These are order-dependant
Network = new NetworkManager(this);
Settings = new Settings(this);
Parcels = new ParcelManager(this);
Self = new AgentManager(this);
Avatars = new AvatarManager(this);
Friends = new FriendsManager(this);
Grid = new GridManager(this);
Objects = new ObjectManager(this);
Groups = new GroupManager(this);
Assets = new AssetManager(this);
Appearance = new AppearanceManager(this, Assets);
Inventory = new InventoryManager(this);
Directory = new DirectoryManager(this);
Terrain = new TerrainManager(this);
Sound = new SoundManager(this);
Throttle = new AgentThrottle(this);
}
///
/// Return the full name of this instance
///
/// Client avatars full name
public override string ToString()
{
return Self.Name;
}
///
/// Send a log message to the debugging output system
///
/// The log message
/// The severity of the log entry
public void Log(string message, Helpers.LogLevel level)
{
if (level == Helpers.LogLevel.Debug && !Settings.DEBUG) return;
if (OnLogMessage != null)
{
try { OnLogMessage(message, level); }
catch (Exception e) { Console.WriteLine(e.ToString()); }
}
else
{
if (Settings.LOG_NAMES)
Console.WriteLine("{0} [{1} {2}]: {3}", level.ToString().ToUpper(), Self.FirstName, Self.LastName, message);
else
Console.WriteLine("{0}: {1}", level.ToString().ToUpper(), message);
}
}
///
/// If the library is compiled with DEBUG defined, and SecondLife.Debug
/// is true, either an event will be fired for the debug message or
/// it will be written to the console
///
/// The debug message
[System.Diagnostics.Conditional("DEBUG")]
public void DebugLog(string message)
{
if (Settings.DEBUG)
{
if (OnLogMessage != null)
{
try { OnLogMessage(message, Helpers.LogLevel.Debug); }
catch (Exception e) { Console.WriteLine(e.ToString()); }
}
else
{
if (Settings.LOG_NAMES)
Console.WriteLine("DEBUG [{0} {1}]: {2}", Self.FirstName, Self.LastName, message);
else
Console.WriteLine("DEBUG: {0}", message);
}
}
}
///
/// Static log function for when Client data is not available
///
/// Text sent to log
/// The severity of the log entry from
public static void LogStatic(string message, Helpers.LogLevel level)
{
Console.WriteLine("{0}: {1}", level.ToString().ToUpper(), message);
}
///
/// Static logging function for handling
///
/// Text sent to log
/// The severity of the log entry from
/// The thrown
public static void LogStatic(string message, Helpers.LogLevel level, Exception exception)
{
Console.WriteLine("{0} [libsecondlife]: {1} ({2})", level.ToString().ToUpper(), message, exception);
}
///
/// If the library is compiled with DEBUG defined, and SecondLife.Debug
/// is true, either an event will be fired for the debug message or
/// it will be written to the console
///
/// The debug message
[System.Diagnostics.Conditional("DEBUG")]
public static void DebugLogStatic(string message)
{
Console.WriteLine("DEBUG [libsecondlife]: {0}", message);
}
}
}