diff options
author | Diva Canto | 2010-01-29 18:59:41 -0800 |
---|---|---|
committer | Diva Canto | 2010-01-29 18:59:41 -0800 |
commit | 5001f61c08fea2ebfcb2590be69073d04d129d70 (patch) | |
tree | 08a0470b0b566f814209bfb803fbcc0959333bcd /OpenSim/Client/Sirikata | |
parent | Works for grid login. (diff) | |
download | opensim-SC_OLD-5001f61c08fea2ebfcb2590be69073d04d129d70.zip opensim-SC_OLD-5001f61c08fea2ebfcb2590be69073d04d129d70.tar.gz opensim-SC_OLD-5001f61c08fea2ebfcb2590be69073d04d129d70.tar.bz2 opensim-SC_OLD-5001f61c08fea2ebfcb2590be69073d04d129d70.tar.xz |
* HGGridConnector is no longer necessary.
* Handle logout properly. This needed an addition to IClientAPI, because of how the logout packet is currently being handled -- the agent is being removed from the scene before the different event handlers are executed, which is broken.
Diffstat (limited to 'OpenSim/Client/Sirikata')
-rw-r--r-- | OpenSim/Client/Sirikata/ClientStack/SirikataClientView.cs | 23 |
1 files changed, 14 insertions, 9 deletions
diff --git a/OpenSim/Client/Sirikata/ClientStack/SirikataClientView.cs b/OpenSim/Client/Sirikata/ClientStack/SirikataClientView.cs index 30d1575..dda95a1 100644 --- a/OpenSim/Client/Sirikata/ClientStack/SirikataClientView.cs +++ b/OpenSim/Client/Sirikata/ClientStack/SirikataClientView.cs | |||
@@ -192,6 +192,11 @@ namespace OpenSim.Client.Sirikata.ClientStack | |||
192 | get { return isActive; } | 192 | get { return isActive; } |
193 | set { isActive = value; } | 193 | set { isActive = value; } |
194 | } | 194 | } |
195 | public bool IsLoggingOut | ||
196 | { | ||
197 | get { return false; } | ||
198 | set { } | ||
199 | } | ||
195 | 200 | ||
196 | public bool SendLogoutPacketWhenClosing | 201 | public bool SendLogoutPacketWhenClosing |
197 | { | 202 | { |
@@ -1177,15 +1182,15 @@ namespace OpenSim.Client.Sirikata.ClientStack | |||
1177 | } | 1182 | } |
1178 | 1183 | ||
1179 | public void SendGroupTransactionsSummaryDetails(IClientAPI sender,UUID groupID, UUID transactionID, UUID sessionID,int amt) | 1184 | public void SendGroupTransactionsSummaryDetails(IClientAPI sender,UUID groupID, UUID transactionID, UUID sessionID,int amt) |
1180 | { | 1185 | { |
1181 | } | 1186 | } |
1182 | 1187 | ||
1183 | public void SendGroupVoteHistory(UUID groupID, UUID transactionID, GroupVoteHistory[] Votes) | 1188 | public void SendGroupVoteHistory(UUID groupID, UUID transactionID, GroupVoteHistory[] Votes) |
1184 | { | 1189 | { |
1185 | } | 1190 | } |
1186 | 1191 | ||
1187 | public void SendGroupActiveProposals(UUID groupID, UUID transactionID, GroupActiveProposals[] Proposals) | 1192 | public void SendGroupActiveProposals(UUID groupID, UUID transactionID, GroupActiveProposals[] Proposals) |
1188 | { | 1193 | { |
1189 | } | 1194 | } |
1190 | 1195 | ||
1191 | #endregion | 1196 | #endregion |