llprogressview.cpp
上传用户:king477883
上传日期:2021-03-01
资源大小:9553k
文件大小:8k
源码类别:

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llprogressview.cpp
  3.  * @brief LLProgressView class implementation
  4.  *
  5.  * $LicenseInfo:firstyear=2002&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2002-2010, Linden Research, Inc.
  8.  * 
  9.  * Second Life Viewer Source Code
  10.  * The source code in this file ("Source Code") is provided by Linden Lab
  11.  * to you under the terms of the GNU General Public License, version 2.0
  12.  * ("GPL"), unless you have obtained a separate licensing agreement
  13.  * ("Other License"), formally executed by you and Linden Lab.  Terms of
  14.  * the GPL can be found in doc/GPL-license.txt in this distribution, or
  15.  * online at http://secondlifegrid.net/programs/open_source/licensing/gplv2
  16.  * 
  17.  * There are special exceptions to the terms and conditions of the GPL as
  18.  * it is applied to this Source Code. View the full text of the exception
  19.  * in the file doc/FLOSS-exception.txt in this software distribution, or
  20.  * online at
  21.  * http://secondlifegrid.net/programs/open_source/licensing/flossexception
  22.  * 
  23.  * By copying, modifying or distributing this software, you acknowledge
  24.  * that you have read and understood your obligations described above,
  25.  * and agree to abide by those obligations.
  26.  * 
  27.  * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
  28.  * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
  29.  * COMPLETENESS OR PERFORMANCE.
  30.  * $/LicenseInfo$
  31.  */
  32. #include "llviewerprecompiledheaders.h"
  33. #include "llprogressview.h"
  34. #include "indra_constants.h"
  35. #include "llmath.h"
  36. #include "llgl.h"
  37. #include "llrender.h"
  38. #include "llui.h"
  39. #include "llfontgl.h"
  40. #include "lltimer.h"
  41. #include "lltextbox.h"
  42. #include "llglheaders.h"
  43. #include "llagent.h"
  44. #include "llbutton.h"
  45. #include "llfocusmgr.h"
  46. #include "llprogressbar.h"
  47. #include "llstartup.h"
  48. #include "llviewercontrol.h"
  49. #include "llviewertexturelist.h"
  50. #include "llviewerwindow.h"
  51. #include "llappviewer.h"
  52. #include "llweb.h"
  53. #include "lluictrlfactory.h"
  54. LLProgressView* LLProgressView::sInstance = NULL;
  55. S32 gStartImageWidth = 1;
  56. S32 gStartImageHeight = 1;
  57. const F32 FADE_IN_TIME = 1.f;
  58. const std::string ANIMATION_FILENAME = "Login Sequence ";
  59. const std::string ANIMATION_SUFFIX = ".jpg";
  60. const F32 TOTAL_LOGIN_TIME = 10.f; // seconds, wild guess at time from GL context to actual world view
  61. S32 gLastStartAnimationFrame = 0; // human-style indexing, first image = 1
  62. const S32 ANIMATION_FRAMES = 1; //13;
  63. // XUI: Translate
  64. LLProgressView::LLProgressView(const LLRect &rect) 
  65. : LLPanel(),
  66. mPercentDone( 0.f ),
  67. mMouseDownInActiveArea( false ),
  68. mUpdateEvents("LLProgressView")
  69. {
  70. LLUICtrlFactory::getInstance()->buildPanel(this, "panel_progress.xml");
  71. reshape(rect.getWidth(), rect.getHeight());
  72. mUpdateEvents.listen("self", boost::bind(&LLProgressView::handleUpdate, this, _1));
  73. }
  74. BOOL LLProgressView::postBuild()
  75. {
  76. mProgressBar = getChild<LLProgressBar>("login_progress_bar");
  77. mCancelBtn = getChild<LLButton>("cancel_btn");
  78. mCancelBtn->setClickedCallback(  LLProgressView::onCancelButtonClicked, NULL );
  79. mFadeTimer.stop();
  80. getChild<LLTextBox>("title_text")->setText(LLStringExplicit(LLAppViewer::instance()->getSecondLifeTitle()));
  81. getChild<LLTextBox>("message_text")->setClickedCallback(onClickMessage, this);
  82. sInstance = this;
  83. return TRUE;
  84. }
  85. LLProgressView::~LLProgressView()
  86. {
  87. gFocusMgr.releaseFocusIfNeeded( this );
  88. sInstance = NULL;
  89. }
  90. BOOL LLProgressView::handleHover(S32 x, S32 y, MASK mask)
  91. {
  92. if( childrenHandleHover( x, y, mask ) == NULL )
  93. {
  94. gViewerWindow->setCursor(UI_CURSOR_WAIT);
  95. }
  96. return TRUE;
  97. }
  98. BOOL LLProgressView::handleKeyHere(KEY key, MASK mask)
  99. {
  100. // Suck up all keystokes except CTRL-Q.
  101. if( ('Q' == key) && (MASK_CONTROL == mask) )
  102. {
  103. LLAppViewer::instance()->userQuit();
  104. }
  105. return TRUE;
  106. }
  107. void LLProgressView::setVisible(BOOL visible)
  108. {
  109. if (getVisible() && !visible)
  110. {
  111. mFadeTimer.start();
  112. }
  113. else if (!getVisible() && visible)
  114. {
  115. gFocusMgr.setTopCtrl(this);
  116. setFocus(TRUE);
  117. mFadeTimer.stop();
  118. mProgressTimer.start();
  119. LLPanel::setVisible(visible);
  120. }
  121. }
  122. void LLProgressView::draw()
  123. {
  124. static LLTimer timer;
  125. // Paint bitmap if we've got one
  126. glPushMatrix();
  127. if (gStartTexture)
  128. {
  129. LLGLSUIDefault gls_ui;
  130. gGL.getTexUnit(0)->bind(gStartTexture.get());
  131. gGL.color4f(1.f, 1.f, 1.f, mFadeTimer.getStarted() ? clamp_rescale(mFadeTimer.getElapsedTimeF32(), 0.f, FADE_IN_TIME, 1.f, 0.f) : 1.f);
  132. F32 image_aspect = (F32)gStartImageWidth / (F32)gStartImageHeight;
  133. S32 width = getRect().getWidth();
  134. S32 height = getRect().getHeight();
  135. F32 view_aspect = (F32)width / (F32)height;
  136. // stretch image to maintain aspect ratio
  137. if (image_aspect > view_aspect)
  138. {
  139. glTranslatef(-0.5f * (image_aspect / view_aspect - 1.f) * width, 0.f, 0.f);
  140. glScalef(image_aspect / view_aspect, 1.f, 1.f);
  141. }
  142. else
  143. {
  144. glTranslatef(0.f, -0.5f * (view_aspect / image_aspect - 1.f) * height, 0.f);
  145. glScalef(1.f, view_aspect / image_aspect, 1.f);
  146. }
  147. gl_rect_2d_simple_tex( getRect().getWidth(), getRect().getHeight() );
  148. gGL.getTexUnit(0)->unbind(LLTexUnit::TT_TEXTURE);
  149. }
  150. else
  151. {
  152. gGL.getTexUnit(0)->unbind(LLTexUnit::TT_TEXTURE);
  153. gGL.color4f(0.f, 0.f, 0.f, 1.f);
  154. gl_rect_2d(getRect());
  155. }
  156. glPopMatrix();
  157. // Handle fade-in animation
  158. if (mFadeTimer.getStarted())
  159. {
  160. LLPanel::draw();
  161. if (mFadeTimer.getElapsedTimeF32() > FADE_IN_TIME)
  162. {
  163. // Fade is complete, release focus
  164. gFocusMgr.releaseFocusIfNeeded( this );
  165. LLPanel::setVisible(FALSE);
  166. gStartTexture = NULL;
  167. }
  168. return;
  169. }
  170. // draw children
  171. LLPanel::draw();
  172. }
  173. void LLProgressView::setText(const std::string& text)
  174. {
  175. getChild<LLUICtrl>("progress_text")->setValue(text);
  176. }
  177. void LLProgressView::setPercent(const F32 percent)
  178. {
  179. mProgressBar->setPercent(percent);
  180. }
  181. void LLProgressView::setMessage(const std::string& msg)
  182. {
  183. mMessage = msg;
  184. getChild<LLUICtrl>("message_text")->setValue(mMessage);
  185. }
  186. void LLProgressView::setCancelButtonVisible(BOOL b, const std::string& label)
  187. {
  188. mCancelBtn->setVisible( b );
  189. mCancelBtn->setEnabled( b );
  190. mCancelBtn->setLabelSelected(label);
  191. mCancelBtn->setLabelUnselected(label);
  192. }
  193. // static
  194. void LLProgressView::onCancelButtonClicked(void*)
  195. {
  196. // Quitting viewer here should happen only when "Quit" button is pressed while starting up.
  197. // Check for startup state is used here instead of teleport state to avoid quitting when
  198. // cancel is pressed while teleporting inside region (EXT-4911)
  199. if (LLStartUp::getStartupState() < STATE_STARTED)
  200. {
  201. LLAppViewer::instance()->requestQuit();
  202. }
  203. else
  204. {
  205. gAgent.teleportCancel();
  206. sInstance->mCancelBtn->setEnabled(FALSE);
  207. sInstance->setVisible(FALSE);
  208. }
  209. }
  210. // static
  211. void LLProgressView::onClickMessage(void* data)
  212. {
  213. LLProgressView* viewp = (LLProgressView*)data;
  214. if ( viewp != NULL && ! viewp->mMessage.empty() )
  215. {
  216. std::string url_to_open( "" );
  217. size_t start_pos;
  218. start_pos = viewp->mMessage.find( "https://" );
  219. if (start_pos == std::string::npos)
  220. start_pos = viewp->mMessage.find( "http://" );
  221. if (start_pos == std::string::npos)
  222. start_pos = viewp->mMessage.find( "ftp://" );
  223. if ( start_pos != std::string::npos )
  224. {
  225. size_t end_pos = viewp->mMessage.find_first_of( " nrt", start_pos );
  226. if ( end_pos != std::string::npos )
  227. url_to_open = viewp->mMessage.substr( start_pos, end_pos - start_pos );
  228. else
  229. url_to_open = viewp->mMessage.substr( start_pos );
  230. LLWeb::loadURLExternal( url_to_open );
  231. }
  232. }
  233. }
  234. bool LLProgressView::handleUpdate(const LLSD& event_data)
  235. {
  236. LLSD message = event_data.get("message");
  237. LLSD desc = event_data.get("desc");
  238. LLSD percent = event_data.get("percent");
  239. if(message.isDefined())
  240. {
  241. setMessage(message.asString());
  242. }
  243. if(desc.isDefined())
  244. {
  245. setText(desc.asString());
  246. }
  247. if(percent.isDefined())
  248. {
  249. setPercent(percent.asReal());
  250. }
  251. return false;
  252. }