summaryrefslogtreecommitdiff
path: root/src/gui/status.cpp
diff options
context:
space:
mode:
authorBjørn Lindeijer <bjorn@lindeijer.nl>2004-12-28 10:48:44 +0000
committerBjørn Lindeijer <bjorn@lindeijer.nl>2004-12-28 10:48:44 +0000
commit33bcf31d8eb5c7712e8a9d0b31489186a5c68521 (patch)
tree67e08d0e5ef4c40caee79e97402a43b2a4a9bca7 /src/gui/status.cpp
parent4542a711526bfcd09184436eda440b10bb92fbed (diff)
downloadmana-client-33bcf31d8eb5c7712e8a9d0b31489186a5c68521.tar.gz
mana-client-33bcf31d8eb5c7712e8a9d0b31489186a5c68521.tar.bz2
mana-client-33bcf31d8eb5c7712e8a9d0b31489186a5c68521.tar.xz
mana-client-33bcf31d8eb5c7712e8a9d0b31489186a5c68521.zip
Renamed stats dialog to status dialog, which it is and to make room for the
real stats dialog that is currently called the skill dialog.
Diffstat (limited to 'src/gui/status.cpp')
-rw-r--r--src/gui/status.cpp81
1 files changed, 81 insertions, 0 deletions
diff --git a/src/gui/status.cpp b/src/gui/status.cpp
new file mode 100644
index 00000000..026ac9a3
--- /dev/null
+++ b/src/gui/status.cpp
@@ -0,0 +1,81 @@
+/*
+ * The Mana World
+ * Copyright 2004 The Mana World Development Team
+ *
+ * This file is part of The Mana World.
+ *
+ * The Mana World is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * any later version.
+ *
+ * The Mana World is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with The Mana World; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ *
+ * $Id$
+ */
+
+#include "status.h"
+
+StatusDialog::StatusDialog(gcn::Container *parent):
+ Window(parent, "%s Lvl: % 2i Job: % 2i")
+{
+ hp = new gcn::Label("HP");
+ sp = new gcn::Label("SP");
+ gp = new gcn::Label("GP");
+ healthBar = new ProgressBar(1.0f);
+ manaBar = new ProgressBar(1.0f);
+
+ setSize(270, 40);
+ hp->setPosition(6, 20);
+ sp->setPosition(106, 20);
+ gp->setPosition(206, 20);
+ healthBar->setDimension(gcn::Rectangle(16, 6, 60, 18));
+ manaBar->setDimension(gcn::Rectangle(116, 6, 60, 18));
+
+ add(hp);
+ add(sp);
+ add(gp);
+ add(healthBar);
+ add(manaBar);
+}
+
+StatusDialog::~StatusDialog()
+{
+ delete hp;
+ delete sp;
+ delete gp;
+ delete healthBar;
+ delete manaBar;
+}
+
+void StatusDialog::update()
+{
+ char *tempstr = new char[64];
+
+ sprintf(tempstr, "%s Lvl: % 2i Job: % 2i",
+ char_info->name, char_info->lv, char_info->job_lv);
+ setTitle(tempstr);
+
+ sprintf(tempstr, "HP % 4d / % 4d", char_info->hp, char_info->max_hp);
+ hp->setCaption(tempstr);
+ hp->adjustSize();
+
+ sprintf(tempstr, "GP % 6i", char_info->gp);
+ gp->setCaption(tempstr);
+ gp->adjustSize();
+
+ sprintf(tempstr, "SP % 4d / % 4d", char_info->sp, char_info->max_sp);
+ sp->setCaption(tempstr);
+ sp->adjustSize();
+
+ healthBar->setProgress((float)char_info->hp / (float)char_info->max_hp);
+
+ delete tempstr;
+}