diff options
Diffstat (limited to 'OpenSim/Region/Examples/SimpleApp')
-rw-r--r-- | OpenSim/Region/Examples/SimpleApp/MyNpcCharacter.cs | 4 | ||||
-rw-r--r-- | OpenSim/Region/Examples/SimpleApp/MyWorld.cs | 3 | ||||
-rw-r--r-- | OpenSim/Region/Examples/SimpleApp/Program.cs | 5 |
3 files changed, 8 insertions, 4 deletions
diff --git a/OpenSim/Region/Examples/SimpleApp/MyNpcCharacter.cs b/OpenSim/Region/Examples/SimpleApp/MyNpcCharacter.cs index e64d9f0..b8e6af5 100644 --- a/OpenSim/Region/Examples/SimpleApp/MyNpcCharacter.cs +++ b/OpenSim/Region/Examples/SimpleApp/MyNpcCharacter.cs | |||
@@ -66,8 +66,10 @@ namespace SimpleApp | |||
66 | public event NewAvatar OnNewAvatar; | 66 | public event NewAvatar OnNewAvatar; |
67 | public event GenericCall6 OnRemoveAvatar; | 67 | public event GenericCall6 OnRemoveAvatar; |
68 | 68 | ||
69 | public event CreateNewInventoryItem OnCreateNewInventoryItem; | ||
69 | public event CreateInventoryFolder OnCreateNewInventoryFolder; | 70 | public event CreateInventoryFolder OnCreateNewInventoryFolder; |
70 | public event FetchInventoryDescendents OnFetchInventoryDescendents; | 71 | public event FetchInventoryDescendents OnFetchInventoryDescendents; |
72 | public event FetchInventory OnFetchInventory; | ||
71 | public event RequestTaskInventory OnRequestTaskInventory; | 73 | public event RequestTaskInventory OnRequestTaskInventory; |
72 | 74 | ||
73 | public event UUIDNameRequest OnNameFromUUIDRequest; | 75 | public event UUIDNameRequest OnNameFromUUIDRequest; |
@@ -142,7 +144,7 @@ namespace SimpleApp | |||
142 | public virtual void SendPrimTerseUpdate(ulong regionHandle, ushort timeDilation, uint localID, LLVector3 position, LLQuaternion rotation) { } | 144 | public virtual void SendPrimTerseUpdate(ulong regionHandle, ushort timeDilation, uint localID, LLVector3 position, LLQuaternion rotation) { } |
143 | 145 | ||
144 | public virtual void SendInventoryFolderDetails(LLUUID ownerID, LLUUID folderID, List<InventoryItemBase> items) { } | 146 | public virtual void SendInventoryFolderDetails(LLUUID ownerID, LLUUID folderID, List<InventoryItemBase> items) { } |
145 | public virtual void SendInventoryItemDetails(LLUUID ownerID, LLUUID folderID, InventoryItemBase item) { } | 147 | public virtual void SendInventoryItemDetails(LLUUID ownerID, InventoryItemBase item) { } |
146 | public virtual void SendInventoryItemUpdate(InventoryItemBase Item) { } | 148 | public virtual void SendInventoryItemUpdate(InventoryItemBase Item) { } |
147 | public virtual void SendTaskInventory(LLUUID taskID, short serial, byte[] fileName) { } | 149 | public virtual void SendTaskInventory(LLUUID taskID, short serial, byte[] fileName) { } |
148 | public virtual void SendNameReply(LLUUID profileId, string firstname, string lastname) { } | 150 | public virtual void SendNameReply(LLUUID profileId, string firstname, string lastname) { } |
diff --git a/OpenSim/Region/Examples/SimpleApp/MyWorld.cs b/OpenSim/Region/Examples/SimpleApp/MyWorld.cs index 6704a19..1a69e74 100644 --- a/OpenSim/Region/Examples/SimpleApp/MyWorld.cs +++ b/OpenSim/Region/Examples/SimpleApp/MyWorld.cs | |||
@@ -5,10 +5,11 @@ using OpenSim.Framework.Communications; | |||
5 | using OpenSim.Framework.Interfaces; | 5 | using OpenSim.Framework.Interfaces; |
6 | using OpenSim.Framework.Servers; | 6 | using OpenSim.Framework.Servers; |
7 | using OpenSim.Framework.Types; | 7 | using OpenSim.Framework.Types; |
8 | using OpenSim.Region.Caches; | 8 | |
9 | using OpenSim.Region.Environment.Scenes; | 9 | using OpenSim.Region.Environment.Scenes; |
10 | using OpenSim.Region.Terrain; | 10 | using OpenSim.Region.Terrain; |
11 | using OpenSim.Region.Environment; | 11 | using OpenSim.Region.Environment; |
12 | using OpenSim.Framework.Communications.Caches; | ||
12 | 13 | ||
13 | using Avatar=OpenSim.Region.Environment.Scenes.ScenePresence; | 14 | using Avatar=OpenSim.Region.Environment.Scenes.ScenePresence; |
14 | 15 | ||
diff --git a/OpenSim/Region/Examples/SimpleApp/Program.cs b/OpenSim/Region/Examples/SimpleApp/Program.cs index 5c16d6b..a5bc999 100644 --- a/OpenSim/Region/Examples/SimpleApp/Program.cs +++ b/OpenSim/Region/Examples/SimpleApp/Program.cs | |||
@@ -8,10 +8,11 @@ using OpenSim.Framework.Interfaces; | |||
8 | using OpenSim.Framework.Servers; | 8 | using OpenSim.Framework.Servers; |
9 | using OpenSim.Framework.Types; | 9 | using OpenSim.Framework.Types; |
10 | using OpenSim.Physics.Manager; | 10 | using OpenSim.Physics.Manager; |
11 | using OpenSim.Region.Caches; | 11 | |
12 | using OpenSim.Region.Capabilities; | 12 | using OpenSim.Region.Capabilities; |
13 | using OpenSim.Region.ClientStack; | 13 | using OpenSim.Region.ClientStack; |
14 | using OpenSim.Region.Communications.Local; | 14 | using OpenSim.Region.Communications.Local; |
15 | using OpenSim.Framework.Communications.Caches; | ||
15 | using OpenSim.Region.GridInterfaces.Local; | 16 | using OpenSim.Region.GridInterfaces.Local; |
16 | using System.Timers; | 17 | using System.Timers; |
17 | using OpenSim.Region.Environment.Scenes; | 18 | using OpenSim.Region.Environment.Scenes; |
@@ -47,7 +48,7 @@ namespace SimpleApp | |||
47 | { | 48 | { |
48 | base.StartUp(); | 49 | base.StartUp(); |
49 | 50 | ||
50 | m_commsManager = new CommunicationsLocal(m_networkServersInfo, m_httpServer); | 51 | m_commsManager = new CommunicationsLocal(m_networkServersInfo, m_httpServer, m_assetCache); |
51 | 52 | ||
52 | m_log.Notice(m_log.LineInfo); | 53 | m_log.Notice(m_log.LineInfo); |
53 | 54 | ||