Merge branch 'master' into prioritization
commit
e5ccd3f793
|
@ -303,7 +303,7 @@ namespace OpenSim.Framework
|
|||
private int m_physPrimMax = 0;
|
||||
private bool m_clampPrimSize = false;
|
||||
private int m_objectCapacity = 0;
|
||||
private string m_productName = String.Empty;
|
||||
private string m_regionType = String.Empty;
|
||||
|
||||
|
||||
// Apparently, we're applying the same estatesettings regardless of whether it's local or remote.
|
||||
|
@ -479,9 +479,9 @@ namespace OpenSim.Framework
|
|||
get { return (byte)Util.ConvertMaturityToAccessLevel((uint)RegionSettings.Maturity); }
|
||||
}
|
||||
|
||||
public string ProductName
|
||||
public string RegionType
|
||||
{
|
||||
get { return m_productName; }
|
||||
get { return m_regionType; }
|
||||
}
|
||||
|
||||
public void SetEndPoint(string ipaddr, int port)
|
||||
|
@ -660,7 +660,7 @@ namespace OpenSim.Framework
|
|||
|
||||
MasterAvatarAssignedUUID = new UUID(masterAvatarUUID);
|
||||
|
||||
m_productName = config.GetString("ProductName", String.Empty);
|
||||
m_regionType = config.GetString("RegionType", String.Empty);
|
||||
|
||||
// Prim stuff
|
||||
//
|
||||
|
@ -728,8 +728,8 @@ namespace OpenSim.Framework
|
|||
if (ScopeID != UUID.Zero)
|
||||
config.Set("ScopeID", ScopeID.ToString());
|
||||
|
||||
if (ProductName != String.Empty)
|
||||
config.Set("ProductName", ProductName);
|
||||
if (RegionType != String.Empty)
|
||||
config.Set("RegionType", RegionType);
|
||||
}
|
||||
|
||||
public bool ignoreIncomingConfiguration(string configuration_key, object configuration_result)
|
||||
|
@ -820,8 +820,8 @@ namespace OpenSim.Framework
|
|||
configMember.addConfigurationOption("scope_id", ConfigurationOption.ConfigurationTypes.TYPE_UUID,
|
||||
"Scope ID for this region", ScopeID.ToString(), true);
|
||||
|
||||
configMember.addConfigurationOption("product_name", ConfigurationOption.ConfigurationTypes.TYPE_STRING,
|
||||
"Product Name", String.Empty, true);
|
||||
configMember.addConfigurationOption("region_type", ConfigurationOption.ConfigurationTypes.TYPE_STRING,
|
||||
"Region Type", String.Empty, true);
|
||||
}
|
||||
|
||||
public void loadConfigurationOptions()
|
||||
|
@ -886,8 +886,8 @@ namespace OpenSim.Framework
|
|||
configMember.addConfigurationOption("scope_id", ConfigurationOption.ConfigurationTypes.TYPE_UUID,
|
||||
"Scope ID for this region", UUID.Zero.ToString(), true);
|
||||
|
||||
configMember.addConfigurationOption("product_name", ConfigurationOption.ConfigurationTypes.TYPE_STRING,
|
||||
"Product Name", String.Empty, true);
|
||||
configMember.addConfigurationOption("region_type", ConfigurationOption.ConfigurationTypes.TYPE_STRING,
|
||||
"Region Type", String.Empty, true);
|
||||
}
|
||||
|
||||
public bool shouldMasterAvatarDetailsBeAsked(string configuration_key)
|
||||
|
@ -968,8 +968,8 @@ namespace OpenSim.Framework
|
|||
case "scope_id":
|
||||
ScopeID = (UUID)configuration_result;
|
||||
break;
|
||||
case "product_name":
|
||||
m_productName = (string)configuration_result;
|
||||
case "region_type":
|
||||
m_regionType = (string)configuration_result;
|
||||
break;
|
||||
}
|
||||
|
||||
|
@ -1006,8 +1006,8 @@ namespace OpenSim.Framework
|
|||
args["allow_alt_ports"] = OSD.FromBoolean(m_allow_alternate_ports);
|
||||
if ((proxyUrl != null) && !proxyUrl.Equals(""))
|
||||
args["proxy_url"] = OSD.FromString(proxyUrl);
|
||||
if (ProductName != String.Empty)
|
||||
args["product_name"] = OSD.FromString(ProductName);
|
||||
if (RegionType != String.Empty)
|
||||
args["region_type"] = OSD.FromString(RegionType);
|
||||
|
||||
return args;
|
||||
}
|
||||
|
@ -1055,8 +1055,8 @@ namespace OpenSim.Framework
|
|||
m_allow_alternate_ports = args["allow_alt_ports"].AsBoolean();
|
||||
if (args["proxy_url"] != null)
|
||||
proxyUrl = args["proxy_url"].AsString();
|
||||
if (args["product_name"] != null)
|
||||
m_productName = args["product_name"].AsString();
|
||||
if (args["region_type"] != null)
|
||||
m_regionType = args["region_type"].AsString();
|
||||
}
|
||||
|
||||
public static RegionInfo Create(UUID regionID, string regionName, uint regX, uint regY, string externalHostName, uint httpPort, uint simPort, uint remotingPort, string serverURI)
|
||||
|
|
Loading…
Reference in New Issue