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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llprogressbar.cpp
  3.  * @brief LLProgressBar 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 "linden_common.h"
  33. #include "llprogressbar.h"
  34. #include "indra_constants.h"
  35. #include "llmath.h"
  36. #include "llgl.h"
  37. #include "llui.h"
  38. #include "llfontgl.h"
  39. #include "lltimer.h"
  40. #include "llglheaders.h"
  41. #include "llfocusmgr.h"
  42. #include "lluictrlfactory.h"
  43. static LLDefaultChildRegistry::Register<LLProgressBar> r("progress_bar");
  44. LLProgressBar::Params::Params()
  45. : image_bar("image_bar"),
  46. image_fill("image_fill"),
  47. color_bar("color_bar"),
  48. color_bg("color_bg")
  49. {}
  50. LLProgressBar::LLProgressBar(const LLProgressBar::Params& p) 
  51. : LLView(p),
  52. mImageBar(p.image_bar),
  53. mImageFill(p.image_fill),
  54. mColorBackground(p.color_bg()),
  55. mColorBar(p.color_bar()),
  56. mPercentDone(0.f)
  57. {}
  58. LLProgressBar::~LLProgressBar()
  59. {
  60. gFocusMgr.releaseFocusIfNeeded( this );
  61. }
  62. void LLProgressBar::draw()
  63. {
  64. static LLTimer timer;
  65. F32 alpha = getDrawContext().mAlpha;
  66. LLColor4 image_bar_color = mColorBackground.get();
  67. image_bar_color.setAlpha(alpha);
  68. mImageBar->draw(getLocalRect(), image_bar_color);
  69. alpha *= 0.5f + 0.5f*0.5f*(1.f + (F32)sin(3.f*timer.getElapsedTimeF32()));
  70. LLColor4 bar_color = mColorBar.get();
  71. bar_color.mV[VALPHA] *= alpha; // modulate alpha
  72. LLRect progress_rect = getLocalRect();
  73. progress_rect.mRight = llround(getRect().getWidth() * (mPercentDone / 100.f));
  74. mImageFill->draw(progress_rect, bar_color);
  75. }
  76. void LLProgressBar::setPercent(const F32 percent)
  77. {
  78. mPercentDone = llclamp(percent, 0.f, 100.f);
  79. }