* Updates to DirectoryManager, specifically Classified Ads that add missing adult rating functionality for queries, adds an enum to interpret flags in replies

* Adds additional documentation to both ParcelManager and DirectoryManager
* Adds Example TestClient command to search classified ads
* Updates to PacketDecoder to better interpret some additional flag fields

git-svn-id: http://libopenmetaverse.googlecode.com/svn/libopenmetaverse/trunk@3132 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
Jim Radford
2009-10-07 20:13:33 +00:00
parent 04161c8000
commit f1ff73cc46
4 changed files with 231 additions and 27 deletions

View File

@@ -117,34 +117,34 @@ namespace OpenMetaverse
}
/// <summary>
///
/// The tool to use when modifying terrain levels
/// </summary>
public enum TerraformAction : byte
{
/// <summary></summary>
/// <summary>Level the terrain</summary>
Level = 0,
/// <summary></summary>
/// <summary>Raise the terrain</summary>
Raise = 1,
/// <summary></summary>
/// <summary>Lower the terrain</summary>
Lower = 2,
/// <summary></summary>
/// <summary>Smooth the terrain</summary>
Smooth = 3,
/// <summary></summary>
/// <summary>Add random noise to the terrain</summary>
Noise = 4,
/// <summary></summary>
/// <summary>Revert terrain to simulator default</summary>
Revert = 5
}
/// <summary>
///
/// The tool size to use when changing terrain levels
/// </summary>
public enum TerraformBrushSize : byte
{
/// <summary></summary>
/// <summary>Small</summary>
Small = 1,
/// <summary></summary>
/// <summary>Medium</summary>
Medium = 2,
/// <summary></summary>
/// <summary>Large</summary>
Large = 4
}
@@ -178,6 +178,7 @@ namespace OpenMetaverse
/// the BorderWest and BorderSouth values are bit flags that get attached
/// to the value stored in the first three bits. Bits four, five, and six
/// are unused</remarks>
[Flags]
public enum ParcelOverlayType : byte
{
/// <summary>Public land</summary>