diff options
author | MW | 2007-06-20 17:32:21 +0000 |
---|---|---|
committer | MW | 2007-06-20 17:32:21 +0000 |
commit | 3e484d1aaf6d2d893f258e7372003de9bf5e8bdb (patch) | |
tree | 78eba8a9c1e77748d73d77e9f366021235a738b8 /OpenSim/Examples/SimpleApp/MyWorld.cs | |
parent | * and done the same for OGS.. (diff) | |
download | opensim-SC-3e484d1aaf6d2d893f258e7372003de9bf5e8bdb.zip opensim-SC-3e484d1aaf6d2d893f258e7372003de9bf5e8bdb.tar.gz opensim-SC-3e484d1aaf6d2d893f258e7372003de9bf5e8bdb.tar.bz2 opensim-SC-3e484d1aaf6d2d893f258e7372003de9bf5e8bdb.tar.xz |
Renamed Avatar to ScenePresence to avoid clash with libsl Avatar class.
Added ThirdPartyLicenses folder containing the licenses for the various third party libraries we use.
Plus some other small changes.
Diffstat (limited to 'OpenSim/Examples/SimpleApp/MyWorld.cs')
-rw-r--r-- | OpenSim/Examples/SimpleApp/MyWorld.cs | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/OpenSim/Examples/SimpleApp/MyWorld.cs b/OpenSim/Examples/SimpleApp/MyWorld.cs index bc7a3b0..334b6af 100644 --- a/OpenSim/Examples/SimpleApp/MyWorld.cs +++ b/OpenSim/Examples/SimpleApp/MyWorld.cs | |||
@@ -6,7 +6,7 @@ using OpenSim.Framework.Types; | |||
6 | using OpenSim.Framework.Console; | 6 | using OpenSim.Framework.Console; |
7 | using libsecondlife; | 7 | using libsecondlife; |
8 | using OpenSim.Region; | 8 | using OpenSim.Region; |
9 | using Avatar=OpenSim.Region.Scenes.Avatar; | 9 | using Avatar=OpenSim.Region.Scenes.ScenePresence; |
10 | using OpenSim.Region.Scenes; | 10 | using OpenSim.Region.Scenes; |
11 | using OpenSim.Framework; | 11 | using OpenSim.Framework; |
12 | using OpenSim.Caches; | 12 | using OpenSim.Caches; |
@@ -17,7 +17,7 @@ namespace SimpleApp | |||
17 | public class MyWorld : Scene | 17 | public class MyWorld : Scene |
18 | { | 18 | { |
19 | private RegionInfo m_regionInfo; | 19 | private RegionInfo m_regionInfo; |
20 | private List<OpenSim.Region.Scenes.Avatar> m_avatars; | 20 | private List<OpenSim.Region.Scenes.ScenePresence> m_avatars; |
21 | 21 | ||
22 | public MyWorld(Dictionary<uint, IClientAPI> clientThreads, RegionInfo regionInfo, AuthenticateSessionsBase authen, CommunicationsManager commsMan, AssetCache assetCach) | 22 | public MyWorld(Dictionary<uint, IClientAPI> clientThreads, RegionInfo regionInfo, AuthenticateSessionsBase authen, CommunicationsManager commsMan, AssetCache assetCach) |
23 | : base(clientThreads, regionInfo, authen, commsMan, assetCach) | 23 | : base(clientThreads, regionInfo, authen, commsMan, assetCach) |
@@ -43,7 +43,8 @@ namespace SimpleApp | |||
43 | 43 | ||
44 | #region IWorld Members | 44 | #region IWorld Members |
45 | 45 | ||
46 | override public void AddNewAvatar(IClientAPI client, LLUUID agentID, bool child) | 46 | override public void AddNewClient(IClientAPI client, LLUUID agentID, bool child) |
47 | |||
47 | { | 48 | { |
48 | LLVector3 pos = new LLVector3(128, 128, 128); | 49 | LLVector3 pos = new LLVector3(128, 128, 128); |
49 | 50 | ||
@@ -65,7 +66,7 @@ namespace SimpleApp | |||
65 | 66 | ||
66 | client.OnCompleteMovementToRegion += delegate() | 67 | client.OnCompleteMovementToRegion += delegate() |
67 | { | 68 | { |
68 | client.SendAvatarData(m_regionInfo, client.FirstName, | 69 | client.SendAvatarData(m_regionInfo.RegionHandle, client.FirstName, |
69 | client.LastName, client.AgentId, 0, | 70 | client.LastName, client.AgentId, 0, |
70 | pos); | 71 | pos); |
71 | 72 | ||
@@ -74,7 +75,7 @@ namespace SimpleApp | |||
74 | 75 | ||
75 | client.SendRegionHandshake(m_regionInfo); | 76 | client.SendRegionHandshake(m_regionInfo); |
76 | 77 | ||
77 | OpenSim.Region.Scenes.Avatar avatar = new Avatar( client, this, m_regionInfo ); | 78 | OpenSim.Region.Scenes.ScenePresence avatar = new Avatar( client, this, m_regionInfo ); |
78 | 79 | ||
79 | } | 80 | } |
80 | 81 | ||
@@ -83,7 +84,8 @@ namespace SimpleApp | |||
83 | client.SendWearables( AvatarWearable.DefaultWearables ); | 84 | client.SendWearables( AvatarWearable.DefaultWearables ); |
84 | } | 85 | } |
85 | 86 | ||
86 | public void RemoveAvatar(LLUUID agentID) | 87 | |
88 | override public void RemoveClient(LLUUID agentID) | ||
87 | { | 89 | { |
88 | 90 | ||
89 | } | 91 | } |