diff options
* Some work in progress code: Inventory cache, start of inventory server/service, userprofile cache, inventory handling. (non of it is enabled yet (or at least it shouldn't be).
* Fixed some of the problems with crossing regions when flying: you should no longer sink to ground level when crossing (should keep roughly your right height). Should no longer sometimes get sent back to the centre of the current region when attempting to border cross. But instead sometimes you will find you avatar stop at the edge of region and you will need to start moving again to retry the crossing (which should then work). This code is partly based on Babblefrog's issue #212 patch. [I think I have some ideas of how to solve the stopping at edges problem, just want to get the inventory code done first]
* Capabilities code has now been moved to the OpenSim.Framework.Communications project as some of the caps code will be tightly tied to inventory/asset handling and it was causing a two way reference problem when it was in its own project/dll.
This is a Big commit as I was going to keep my inventory work local until I had it in a working state, in case it brakes anything, but its getting harder to keep in sync with svn.
Diffstat (limited to 'OpenSim/Framework/General/Interfaces')
-rw-r--r-- | OpenSim/Framework/General/Interfaces/IClientAPI.cs | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/OpenSim/Framework/General/Interfaces/IClientAPI.cs b/OpenSim/Framework/General/Interfaces/IClientAPI.cs index df65027..c2af2f4 100644 --- a/OpenSim/Framework/General/Interfaces/IClientAPI.cs +++ b/OpenSim/Framework/General/Interfaces/IClientAPI.cs | |||
@@ -81,8 +81,9 @@ namespace OpenSim.Framework.Interfaces | |||
81 | public delegate void AddNewPrim(LLUUID ownerID, LLVector3 pos, PrimitiveBaseShape shape); | 81 | public delegate void AddNewPrim(LLUUID ownerID, LLVector3 pos, PrimitiveBaseShape shape); |
82 | 82 | ||
83 | public delegate void CreateInventoryFolder(IClientAPI remoteClient, LLUUID folderID, ushort folderType, string folderName, LLUUID parentID); | 83 | public delegate void CreateInventoryFolder(IClientAPI remoteClient, LLUUID folderID, ushort folderType, string folderName, LLUUID parentID); |
84 | public delegate void CreateNewInventoryItem(IClientAPI remoteClient, LLUUID transActionID, LLUUID folderID, uint callbackID, string description, string name, sbyte invType, sbyte type, byte wearableType, uint nextOwnerMask); | ||
84 | public delegate void FetchInventoryDescendents(IClientAPI remoteClient, LLUUID folderID, LLUUID ownerID, bool fetchFolders, bool fetchItems, int sortOrder); | 85 | public delegate void FetchInventoryDescendents(IClientAPI remoteClient, LLUUID folderID, LLUUID ownerID, bool fetchFolders, bool fetchItems, int sortOrder); |
85 | 86 | public delegate void FetchInventory(IClientAPI remoteClient, LLUUID itemID, LLUUID ownerID); | |
86 | public delegate void RequestTaskInventory(IClientAPI remoteClient, uint localID); | 87 | public delegate void RequestTaskInventory(IClientAPI remoteClient, uint localID); |
87 | 88 | ||
88 | public interface IClientAPI | 89 | public interface IClientAPI |
@@ -128,8 +129,10 @@ namespace OpenSim.Framework.Interfaces | |||
128 | event NewAvatar OnNewAvatar; | 129 | event NewAvatar OnNewAvatar; |
129 | event GenericCall6 OnRemoveAvatar; | 130 | event GenericCall6 OnRemoveAvatar; |
130 | 131 | ||
132 | event CreateNewInventoryItem OnCreateNewInventoryItem; | ||
131 | event CreateInventoryFolder OnCreateNewInventoryFolder; | 133 | event CreateInventoryFolder OnCreateNewInventoryFolder; |
132 | event FetchInventoryDescendents OnFetchInventoryDescendents; | 134 | event FetchInventoryDescendents OnFetchInventoryDescendents; |
135 | event FetchInventory OnFetchInventory; | ||
133 | event RequestTaskInventory OnRequestTaskInventory; | 136 | event RequestTaskInventory OnRequestTaskInventory; |
134 | 137 | ||
135 | event UUIDNameRequest OnNameFromUUIDRequest; | 138 | event UUIDNameRequest OnNameFromUUIDRequest; |
@@ -194,7 +197,7 @@ namespace OpenSim.Framework.Interfaces | |||
194 | void SendPrimTerseUpdate(ulong regionHandle, ushort timeDilation, uint localID, LLVector3 position, LLQuaternion rotation); | 197 | void SendPrimTerseUpdate(ulong regionHandle, ushort timeDilation, uint localID, LLVector3 position, LLQuaternion rotation); |
195 | 198 | ||
196 | void SendInventoryFolderDetails(LLUUID ownerID, LLUUID folderID, List<InventoryItemBase> items); | 199 | void SendInventoryFolderDetails(LLUUID ownerID, LLUUID folderID, List<InventoryItemBase> items); |
197 | void SendInventoryItemDetails(LLUUID ownerID, LLUUID folderID, InventoryItemBase item); | 200 | void SendInventoryItemDetails(LLUUID ownerID, InventoryItemBase item); |
198 | void SendInventoryItemUpdate(InventoryItemBase Item); | 201 | void SendInventoryItemUpdate(InventoryItemBase Item); |
199 | void SendTaskInventory(LLUUID taskID, short serial, byte[] fileName); | 202 | void SendTaskInventory(LLUUID taskID, short serial, byte[] fileName); |
200 | 203 | ||