summaryrefslogtreecommitdiff
path: root/src/gui/ministatus.cpp
diff options
context:
space:
mode:
authorBertram <bertram@cegetel.net>2009-07-20 22:41:04 +0200
committerBertram <bertram@cegetel.net>2009-07-20 22:41:04 +0200
commit89dafda9453e178f90fbcc6ddab4ae9367cbfff1 (patch)
tree5e15c81ea14686c7110f959b881aa5b34ada343d /src/gui/ministatus.cpp
parentddf75478b48173d82f455c99af3894bd0f9018ff (diff)
downloadmana-client-89dafda9453e178f90fbcc6ddab4ae9367cbfff1.tar.gz
mana-client-89dafda9453e178f90fbcc6ddab4ae9367cbfff1.tar.bz2
mana-client-89dafda9453e178f90fbcc6ddab4ae9367cbfff1.tar.xz
mana-client-89dafda9453e178f90fbcc6ddab4ae9367cbfff1.zip
Committed: 0000768: Progress bars smoothly scroll when the values have changed from last window open. The progress bars don't smoothly update the progress when the value is set at load time now. Only the ministatus and the status window are affected by this patch, as they are the onjly ones reported as flooding the gui.
Diffstat (limited to 'src/gui/ministatus.cpp')
-rw-r--r--src/gui/ministatus.cpp12
1 files changed, 9 insertions, 3 deletions
diff --git a/src/gui/ministatus.cpp b/src/gui/ministatus.cpp
index 8aaeb580..6d541474 100644
--- a/src/gui/ministatus.cpp
+++ b/src/gui/ministatus.cpp
@@ -36,10 +36,16 @@
MiniStatusWindow::MiniStatusWindow():
Popup("MiniStatus")
{
- mHpBar = new ProgressBar(0.0f, 100, 20, gcn::Color(0, 171, 34));
+ mHpBar = new ProgressBar((float) player_node->getHp()
+ / (float) player_node->getMaxHp(),
+ 100, 20, gcn::Color(0, 171, 34));
#ifdef EATHENA_SUPPORT
- mMpBar = new ProgressBar(0.0f, 100, 20, gcn::Color(26, 102, 230));
- mXpBar = new ProgressBar(0.0f, 100, 20, gcn::Color(143, 192, 211));
+ mMpBar = new ProgressBar((float) player_node->getMaxMP()
+ / (float) player_node->getMaxMP(),
+ 100, 20, gcn::Color(26, 102, 230));
+ mXpBar = new ProgressBar((float) player_node->getExp()
+ / player_node->getExpNeeded(),
+ 100, 20, gcn::Color(143, 192, 211));
#endif
mHpBar->setPosition(0, 3);