diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs
index b0b0baafe8..517a9d9050 100644
--- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs
@@ -2978,6 +2978,51 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
return SaveAppearanceToNotecard(avatarId, notecard);
}
+
+ ///
+ /// Get the gender as specified in avatar appearance for a given avatar key
+ ///
+ ///
+ /// "male" or "female" or "unknown"
+ public LSL_String osGetGender(LSL_Key rawAvatarId)
+ {
+ CheckThreatLevel(ThreatLevel.None, "osGetGender");
+ m_host.AddScriptLPS(1);
+
+ UUID avatarId;
+ if (!UUID.TryParse(rawAvatarId, out avatarId))
+ return new LSL_String("unknown");
+
+ ScenePresence sp = World.GetScenePresence(avatarId);
+
+ if (sp == null || sp.IsChildAgent || sp.Appearance == null || sp.Appearance.VisualParams == null)
+ return new LSL_String("unknown");
+
+ // find the index of "shape" parameter "male"
+ int vpShapeMaleIndex = 0;
+ bool indexFound = false;
+ VisualParam param = new VisualParam();
+ foreach(var vpEntry in VisualParams.Params)
+ {
+ param = vpEntry.Value;
+ if (param.Name == "male" && param.Wearable == "shape")
+ {
+ indexFound = true;
+ break;
+ }
+
+ if (param.Group == 0)
+ vpShapeMaleIndex++;
+ }
+
+ if (!indexFound)
+ return new LSL_String("unknown");
+
+ float vpShapeMale = Utils.ByteToFloat(sp.Appearance.VisualParams[vpShapeMaleIndex], param.MinValue, param.MaxValue);
+
+ bool isMale = vpShapeMale > 0.5f;
+ return new LSL_String(isMale ? "male" : "female");
+ }
///
/// Get current region's map texture UUID
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs
index b90366757f..d072528235 100644
--- a/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs
@@ -353,6 +353,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api.Interfaces
LSL_Key osOwnerSaveAppearance(string notecard);
LSL_Key osAgentSaveAppearance(key agentId, string notecard);
+ key osGetGender(LSL_Key rawAvatarId);
key osGetMapTexture();
key osGetRegionMapTexture(string regionName);
LSL_List osGetRegionStats();
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs
index 6030325f43..c5c55d6450 100644
--- a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs
@@ -870,6 +870,11 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
}
}
+ public string osGetGender(LSL_Key rawAvatarId)
+ {
+ return m_OSSL_Functions.osGetGender(rawAvatarId);
+ }
+
public key osGetMapTexture()
{
return m_OSSL_Functions.osGetMapTexture();