diff options
Diffstat (limited to 'OpenSim/Region/Environment/Interfaces')
-rw-r--r-- | OpenSim/Region/Environment/Interfaces/ILandChannel.cs | 25 |
1 files changed, 3 insertions, 22 deletions
diff --git a/OpenSim/Region/Environment/Interfaces/ILandChannel.cs b/OpenSim/Region/Environment/Interfaces/ILandChannel.cs index a814e39..f370ee5 100644 --- a/OpenSim/Region/Environment/Interfaces/ILandChannel.cs +++ b/OpenSim/Region/Environment/Interfaces/ILandChannel.cs | |||
@@ -34,31 +34,12 @@ namespace OpenSim.Region.Environment.Interfaces | |||
34 | { | 34 | { |
35 | public interface ILandChannel | 35 | public interface ILandChannel |
36 | { | 36 | { |
37 | bool AllowedForcefulBans { get; set; } | ||
38 | void IncomingLandObjectsFromStorage(List<LandData> data); | ||
39 | void IncomingLandObjectFromStorage(LandData data); | ||
40 | 37 | ||
41 | void NoLandDataFromStorage(); | 38 | List<ILandObject> ParcelsNearPoint(LLVector3 position); |
42 | ILandObject GetLandObject(int x, int y); | 39 | ILandObject GetLandObject(int x, int y); |
43 | ILandObject GetLandObject(float x, float y); | 40 | ILandObject GetLandObject(float x, float y); |
44 | void SetPrimsTainted(); | ||
45 | bool IsLandPrimCountTainted(); | 41 | bool IsLandPrimCountTainted(); |
46 | void SendLandUpdate(ScenePresence avatar, bool force); | 42 | bool IsForcefulBansAllowed(); |
47 | void SendLandUpdate(ScenePresence avatar); | 43 | void UpdateLandObject(int localID, LandData data); |
48 | void ResetAllLandPrimCounts(); | ||
49 | void AddPrimToLandPrimCounts(SceneObjectGroup obj); | ||
50 | void RemovePrimFromLandPrimCounts(SceneObjectGroup obj); | ||
51 | void FinalizeLandPrimCountUpdate(); | ||
52 | void UpdateLandPrimCounts(); | ||
53 | void PerformParcelPrimCountUpdate(); | ||
54 | void UpdateLandObject(int local_id, LandData newData); | ||
55 | |||
56 | void SendParcelOverlay(IClientAPI remote_client); | ||
57 | |||
58 | void ResetSimLandObjects(); | ||
59 | List<ILandObject> ParcelsNearPoint(LLVector3 position); | ||
60 | void SendYouAreBannedNotice(ScenePresence avatar); | ||
61 | void handleAvatarChangingParcel(ScenePresence avatar, int localLandID, LLUUID regionID); | ||
62 | void SendOutNearestBanLine(IClientAPI avatar); | ||
63 | } | 44 | } |
64 | } | 45 | } |