aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llworld.cpp
diff options
context:
space:
mode:
authorJacek Antonelli2010-06-22 20:09:45 -0500
committerJacek Antonelli2010-06-22 20:54:46 -0500
commit932dd4d222b514f81ad5ad3a06b599cce04f7e23 (patch)
tree302628a0a951a25ea22ace711cbc6de0198384a8 /linden/indra/newview/llworld.cpp
parentFixed radar spam regression (diff)
downloadmeta-impy-932dd4d222b514f81ad5ad3a06b599cce04f7e23.zip
meta-impy-932dd4d222b514f81ad5ad3a06b599cce04f7e23.tar.gz
meta-impy-932dd4d222b514f81ad5ad3a06b599cce04f7e23.tar.bz2
meta-impy-932dd4d222b514f81ad5ad3a06b599cce04f7e23.tar.xz
Partially reverted cad41f1 and 65a5856 to help login issues.
This reverts (except for some parts): - Commit cad41f1ae08927737eca4cd9df25381d78e82304. "Fixed #338: addRegion/removeRegion can trigger a viewer quit" - Commit 65a5856f9567074886f28df59a26433c4b447576. "wip forcing region disconnects to log you out"
Diffstat (limited to 'linden/indra/newview/llworld.cpp')
-rw-r--r--linden/indra/newview/llworld.cpp31
1 files changed, 1 insertions, 30 deletions
diff --git a/linden/indra/newview/llworld.cpp b/linden/indra/newview/llworld.cpp
index 50d4250..90ab49b 100644
--- a/linden/indra/newview/llworld.cpp
+++ b/linden/indra/newview/llworld.cpp
@@ -43,9 +43,7 @@
43#include "lldrawpool.h" 43#include "lldrawpool.h"
44#include "llglheaders.h" 44#include "llglheaders.h"
45#include "llhttpnode.h" 45#include "llhttpnode.h"
46#include "llpanellogin.h"
47#include "llregionhandle.h" 46#include "llregionhandle.h"
48#include "llstartup.h"
49#include "llsurface.h" 47#include "llsurface.h"
50#include "llviewercamera.h" 48#include "llviewercamera.h"
51#include "llviewerimage.h" 49#include "llviewerimage.h"
@@ -86,7 +84,6 @@ const F32 LLWorld::mWidthInMeters = mWidth * mScale;
86// 84//
87// Functions 85// Functions
88// 86//
89bool connecting_alert_done(const LLSD& notification, const LLSD& response);
90 87
91// allocate the stack 88// allocate the stack
92LLWorld::LLWorld() : 89LLWorld::LLWorld() :
@@ -266,19 +263,7 @@ void LLWorld::removeRegion(const LLHost &host)
266 llwarns << "gFrameTimeSeconds " << gFrameTimeSeconds << llendl; 263 llwarns << "gFrameTimeSeconds " << gFrameTimeSeconds << llendl;
267 264
268 llwarns << "Disabling region " << regionp->getName() << " that agent is in!" << llendl; 265 llwarns << "Disabling region " << regionp->getName() << " that agent is in!" << llendl;
269 266 LLAppViewer::instance()->forceDisconnect("You have been disconnected from the region you were in.");
270 // Don't ever forceQuit on the user during startup if we can avoid it -- MC
271 //LLAppViewer::instance()->forceDisconnect("You have been disconnected from the region you were in.");
272 // We stop a login, even if it's a successful one, as the expected behavior is to not receive
273 // any more messages from a sim when we receive the DisableSimulator message, despite the viewer
274 // continuing to connect anyway -- MC
275 if (LLStartUp::getStartupState() < STATE_STARTED)
276 {
277 //LLStartUp::setLoginFailed(true);
278 LLStartUp::setStartupState(STATE_SEED_GRANTED_WAIT);
279 }
280 LLNotifications::instance().add("DisconnectedFromRegion", LLSD(), LLSD(), connecting_alert_done);
281
282 return; 267 return;
283 } 268 }
284 269
@@ -1258,20 +1243,6 @@ void LLWorld::getAvatars(std::vector<LLUUID>* avatar_ids, std::vector<LLVector3d
1258 } 1243 }
1259} 1244}
1260 1245
1261bool connecting_alert_done(const LLSD& notification, const LLSD& response)
1262{
1263 if (LLStartUp::getStartupState() < STATE_STARTED)
1264 {
1265 LLStartUp::resetLogin();
1266 LLPanelLogin::giveFocus();
1267 }
1268 else
1269 {
1270 // TODO: make this translatable
1271 LLAppViewer::instance()->forceDisconnect("You have been disconnected from the region you were in. Unable to continue.");
1272 }
1273 return false;
1274}
1275 1246
1276LLHTTPRegistration<LLEstablishAgentCommunication> 1247LLHTTPRegistration<LLEstablishAgentCommunication>
1277 gHTTPRegistrationEstablishAgentCommunication( 1248 gHTTPRegistrationEstablishAgentCommunication(