diff options
author | Adam Frisby | 2007-05-14 16:13:31 +0000 |
---|---|---|
committer | Adam Frisby | 2007-05-14 16:13:31 +0000 |
commit | 3ee195b1e6ff02715c132da431152276b464eaec (patch) | |
tree | fda9a5d2817e61894b5c567695cf3c387aa9023b /OpenGrid.Framework.Data | |
parent | Unbreaking trunk kthxbai! (diff) | |
download | opensim-SC_OLD-3ee195b1e6ff02715c132da431152276b464eaec.zip opensim-SC_OLD-3ee195b1e6ff02715c132da431152276b464eaec.tar.gz opensim-SC_OLD-3ee195b1e6ff02715c132da431152276b464eaec.tar.bz2 opensim-SC_OLD-3ee195b1e6ff02715c132da431152276b464eaec.tar.xz |
* Commented out GridManager lines until they are checked into SVN
* Added new GetProfilesInRange(x,y,x,y) data function to return sim profiles between certain coordinates (for use with World Map information, etc). Implemented in GridServer.Data.Mysql - stub functions placed in other data providers.
Diffstat (limited to 'OpenGrid.Framework.Data')
-rw-r--r-- | OpenGrid.Framework.Data/GridData.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/OpenGrid.Framework.Data/GridData.cs b/OpenGrid.Framework.Data/GridData.cs index d5516b2..6dad37e 100644 --- a/OpenGrid.Framework.Data/GridData.cs +++ b/OpenGrid.Framework.Data/GridData.cs | |||
@@ -32,6 +32,16 @@ namespace OpenGrid.Framework.Data | |||
32 | SimProfileData GetProfileByLLUUID(libsecondlife.LLUUID UUID); | 32 | SimProfileData GetProfileByLLUUID(libsecondlife.LLUUID UUID); |
33 | 33 | ||
34 | /// <summary> | 34 | /// <summary> |
35 | /// Returns all profiles within the specified range | ||
36 | /// </summary> | ||
37 | /// <param name="Xmin">Minimum sim coordinate (X)</param> | ||
38 | /// <param name="Ymin">Minimum sim coordinate (Y)</param> | ||
39 | /// <param name="Xmax">Maximum sim coordinate (X)</param> | ||
40 | /// <param name="Ymin">Maximum sim coordinate (Y)</param> | ||
41 | /// <returns>An array containing all the sim profiles in the specified range</returns> | ||
42 | SimProfileData[] GetProfilesInRange(uint Xmin, uint Ymin, uint Xmax, uint Ymax); | ||
43 | |||
44 | /// <summary> | ||
35 | /// Authenticates a sim by use of it's recv key. | 45 | /// Authenticates a sim by use of it's recv key. |
36 | /// WARNING: Insecure | 46 | /// WARNING: Insecure |
37 | /// </summary> | 47 | /// </summary> |