diff options
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/IClientAPI.cs | 9 | ||||
-rw-r--r-- | OpenSim/Framework/RegionInfo.cs | 8 |
2 files changed, 16 insertions, 1 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs index 7d9fd9a..fde74d6 100644 --- a/OpenSim/Framework/IClientAPI.cs +++ b/OpenSim/Framework/IClientAPI.cs | |||
@@ -320,6 +320,10 @@ namespace OpenSim.Framework | |||
320 | 320 | ||
321 | public delegate void EstateOwnerMessageRequest(EstateOwnerMessagePacket packet, IClientAPI remote_client); | 321 | public delegate void EstateOwnerMessageRequest(EstateOwnerMessagePacket packet, IClientAPI remote_client); |
322 | 322 | ||
323 | public delegate void RegionInfoRequest(IClientAPI remote_client, LLUUID sessionID); | ||
324 | |||
325 | public delegate void EstateCovenantRequest(IClientAPI remote_client, LLUUID sessionID); | ||
326 | |||
323 | public delegate void UUIDNameRequest(LLUUID id, IClientAPI remote_client); | 327 | public delegate void UUIDNameRequest(LLUUID id, IClientAPI remote_client); |
324 | 328 | ||
325 | public delegate void AddNewPrim(LLUUID ownerID, LLVector3 pos, LLQuaternion rot, PrimitiveBaseShape shape); | 329 | public delegate void AddNewPrim(LLUUID ownerID, LLVector3 pos, LLQuaternion rot, PrimitiveBaseShape shape); |
@@ -466,6 +470,10 @@ namespace OpenSim.Framework | |||
466 | event ParcelSelectObjects OnParcelSelectObjects; | 470 | event ParcelSelectObjects OnParcelSelectObjects; |
467 | event ParcelObjectOwnerRequest OnParcelObjectOwnerRequest; | 471 | event ParcelObjectOwnerRequest OnParcelObjectOwnerRequest; |
468 | event EstateOwnerMessageRequest OnEstateOwnerMessage; | 472 | event EstateOwnerMessageRequest OnEstateOwnerMessage; |
473 | event RegionInfoRequest OnRegionInfoRequest; | ||
474 | event EstateCovenantRequest OnEstateCovenantRequest; | ||
475 | |||
476 | |||
469 | 477 | ||
470 | LLVector3 StartPos { get; set; } | 478 | LLVector3 StartPos { get; set; } |
471 | 479 | ||
@@ -551,6 +559,7 @@ namespace OpenSim.Framework | |||
551 | 559 | ||
552 | void SendNameReply(LLUUID profileId, string firstname, string lastname); | 560 | void SendNameReply(LLUUID profileId, string firstname, string lastname); |
553 | void SendAlertMessage(string message); | 561 | void SendAlertMessage(string message); |
562 | |||
554 | void SendAgentAlertMessage(string message, bool modal); | 563 | void SendAgentAlertMessage(string message, bool modal); |
555 | void SendLoadURL(string objectname, LLUUID objectID, LLUUID ownerID, bool groupOwned, string message, string url); | 564 | void SendLoadURL(string objectname, LLUUID objectID, LLUUID ownerID, bool groupOwned, string message, string url); |
556 | bool AddMoney(int debit); | 565 | bool AddMoney(int debit); |
diff --git a/OpenSim/Framework/RegionInfo.cs b/OpenSim/Framework/RegionInfo.cs index fba78a9..6a9de2c 100644 --- a/OpenSim/Framework/RegionInfo.cs +++ b/OpenSim/Framework/RegionInfo.cs | |||
@@ -199,6 +199,7 @@ namespace OpenSim.Framework | |||
199 | public bool commFailTF = false; | 199 | public bool commFailTF = false; |
200 | 200 | ||
201 | public LLUUID MasterAvatarAssignedUUID = LLUUID.Zero; | 201 | public LLUUID MasterAvatarAssignedUUID = LLUUID.Zero; |
202 | public LLUUID CovenantID = LLUUID.Zero; | ||
202 | public string MasterAvatarFirstName = ""; | 203 | public string MasterAvatarFirstName = ""; |
203 | public string MasterAvatarLastName = ""; | 204 | public string MasterAvatarLastName = ""; |
204 | public string MasterAvatarSandboxPassword = ""; | 205 | public string MasterAvatarSandboxPassword = ""; |
@@ -316,7 +317,8 @@ namespace OpenSim.Framework | |||
316 | configMember.addConfigurationOption("internal_ip_address", ConfigurationOption.ConfigurationTypes.TYPE_IP_ADDRESS, "Internal IP Address for incoming UDP client connections", "0.0.0.0", false); | 317 | configMember.addConfigurationOption("internal_ip_address", ConfigurationOption.ConfigurationTypes.TYPE_IP_ADDRESS, "Internal IP Address for incoming UDP client connections", "0.0.0.0", false); |
317 | configMember.addConfigurationOption("internal_ip_port", ConfigurationOption.ConfigurationTypes.TYPE_INT32, "Internal IP Port for incoming UDP client connections", NetworkServersInfo.DefaultHttpListenerPort.ToString(), false); | 318 | configMember.addConfigurationOption("internal_ip_port", ConfigurationOption.ConfigurationTypes.TYPE_INT32, "Internal IP Port for incoming UDP client connections", NetworkServersInfo.DefaultHttpListenerPort.ToString(), false); |
318 | configMember.addConfigurationOption("external_host_name", ConfigurationOption.ConfigurationTypes.TYPE_STRING_NOT_EMPTY, "External Host Name", "127.0.0.1", false); | 319 | configMember.addConfigurationOption("external_host_name", ConfigurationOption.ConfigurationTypes.TYPE_STRING_NOT_EMPTY, "External Host Name", "127.0.0.1", false); |
319 | configMember.addConfigurationOption("master_avatar_uuid", ConfigurationOption.ConfigurationTypes.TYPE_LLUUID, "Master Avatar UUID", LLUUID.Zero.ToString(), true); | 320 | configMember.addConfigurationOption("master_avatar_uuid", ConfigurationOption.ConfigurationTypes.TYPE_LLUUID, "Master Avatar UUID", LLUUID.Zero.ToStringHyphenated(), true); |
321 | configMember.addConfigurationOption("estate_covanant_uuid", ConfigurationOption.ConfigurationTypes.TYPE_LLUUID, "Estate Covenant", LLUUID.Zero.ToStringHyphenated(), true); | ||
320 | configMember.addConfigurationOption("master_avatar_first", ConfigurationOption.ConfigurationTypes.TYPE_STRING_NOT_EMPTY, "First Name of Master Avatar", "Test", false,(ConfigurationOption.ConfigurationOptionShouldBeAsked)shouldMasterAvatarDetailsBeAsked); | 322 | configMember.addConfigurationOption("master_avatar_first", ConfigurationOption.ConfigurationTypes.TYPE_STRING_NOT_EMPTY, "First Name of Master Avatar", "Test", false,(ConfigurationOption.ConfigurationOptionShouldBeAsked)shouldMasterAvatarDetailsBeAsked); |
321 | configMember.addConfigurationOption("master_avatar_last", ConfigurationOption.ConfigurationTypes.TYPE_STRING_NOT_EMPTY, "Last Name of Master Avatar", "User", false, (ConfigurationOption.ConfigurationOptionShouldBeAsked)shouldMasterAvatarDetailsBeAsked); | 323 | configMember.addConfigurationOption("master_avatar_last", ConfigurationOption.ConfigurationTypes.TYPE_STRING_NOT_EMPTY, "Last Name of Master Avatar", "User", false, (ConfigurationOption.ConfigurationOptionShouldBeAsked)shouldMasterAvatarDetailsBeAsked); |
322 | configMember.addConfigurationOption("master_avatar_pass", ConfigurationOption.ConfigurationTypes.TYPE_STRING, "(Sandbox Mode Only)Password for Master Avatar account", "test", false, (ConfigurationOption.ConfigurationOptionShouldBeAsked)shouldMasterAvatarDetailsBeAsked); | 324 | configMember.addConfigurationOption("master_avatar_pass", ConfigurationOption.ConfigurationTypes.TYPE_STRING, "(Sandbox Mode Only)Password for Master Avatar account", "test", false, (ConfigurationOption.ConfigurationOptionShouldBeAsked)shouldMasterAvatarDetailsBeAsked); |
@@ -370,6 +372,10 @@ namespace OpenSim.Framework | |||
370 | case "master_avatar_uuid": | 372 | case "master_avatar_uuid": |
371 | this.MasterAvatarAssignedUUID = (LLUUID)configuration_result; | 373 | this.MasterAvatarAssignedUUID = (LLUUID)configuration_result; |
372 | break; | 374 | break; |
375 | case "estate_covanant_uuid": | ||
376 | this.CovenantID = (LLUUID)configuration_result; | ||
377 | break; | ||
378 | |||
373 | case "master_avatar_first": | 379 | case "master_avatar_first": |
374 | this.MasterAvatarFirstName = (string)configuration_result; | 380 | this.MasterAvatarFirstName = (string)configuration_result; |
375 | break; | 381 | break; |