diff options
author | Justin Clark-Casey (justincc) | 2011-03-26 02:19:28 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2011-03-26 02:19:28 +0000 |
commit | 541cd3e8c84d3ccc13525206b1724ee931416a3c (patch) | |
tree | 51137fafbf9ea82b00fd230d219d49f76d5d43f6 /OpenSim/Framework | |
parent | When an object is duplicated, add the dupe to the uuid/local id indexes as we... (diff) | |
download | opensim-SC_OLD-541cd3e8c84d3ccc13525206b1724ee931416a3c.zip opensim-SC_OLD-541cd3e8c84d3ccc13525206b1724ee931416a3c.tar.gz opensim-SC_OLD-541cd3e8c84d3ccc13525206b1724ee931416a3c.tar.bz2 opensim-SC_OLD-541cd3e8c84d3ccc13525206b1724ee931416a3c.tar.xz |
move total parcel prim calculations into IPrimCounts instead of doing this in LLClientView
need to move selected prim counts from LandData/LMM still
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/IPrimCounts.cs | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/OpenSim/Framework/IPrimCounts.cs b/OpenSim/Framework/IPrimCounts.cs index 7d362c5..8ae57fc 100644 --- a/OpenSim/Framework/IPrimCounts.cs +++ b/OpenSim/Framework/IPrimCounts.cs | |||
@@ -31,10 +31,34 @@ namespace OpenSim.Framework | |||
31 | { | 31 | { |
32 | public interface IPrimCounts | 32 | public interface IPrimCounts |
33 | { | 33 | { |
34 | /// <summary> | ||
35 | /// Parcel owner owned prims | ||
36 | /// </summary> | ||
34 | int Owner { get; } | 37 | int Owner { get; } |
38 | |||
39 | /// <summary> | ||
40 | /// Parcel group owned prims | ||
41 | /// </summary> | ||
35 | int Group { get; } | 42 | int Group { get; } |
43 | |||
44 | /// <summary> | ||
45 | /// Prims owned by others (not parcel owner or parcel group). | ||
46 | /// </summary> | ||
36 | int Others { get; } | 47 | int Others { get; } |
48 | |||
49 | /// <summary> | ||
50 | /// Total prims on the parcel. | ||
51 | /// </summary> | ||
52 | int Total { get; } | ||
53 | |||
54 | /// <summary> | ||
55 | /// Prims on the simulator that are owned by the parcel owner, even if they are in other parcels. | ||
56 | /// </summary> | ||
37 | int Simulator { get; } | 57 | int Simulator { get; } |
58 | |||
59 | /// <summary> | ||
60 | /// Prims per individual users. | ||
61 | /// </summary> | ||
38 | IUserPrimCounts Users { get; } | 62 | IUserPrimCounts Users { get; } |
39 | } | 63 | } |
40 | 64 | ||