diff options
author | Andrei Karas <akaras@inbox.ru> | 2010-01-09 23:47:50 +0200 |
---|---|---|
committer | Blue <bluesansdouze@gmail.com> | 2010-01-10 01:12:46 +0100 |
commit | 0c86751e2ca0674e1ae6e584b9e017af8d1e48fe (patch) | |
tree | 0bd5954c3887f5444ac587a1121019ccbdd47803 /src/gui | |
parent | a9da8dca359f1975d1be6bbef16ea72928652880 (diff) | |
download | mana-0c86751e2ca0674e1ae6e584b9e017af8d1e48fe.tar.gz mana-0c86751e2ca0674e1ae6e584b9e017af8d1e48fe.tar.bz2 mana-0c86751e2ca0674e1ae6e584b9e017af8d1e48fe.tar.xz mana-0c86751e2ca0674e1ae6e584b9e017af8d1e48fe.zip |
Show monster inflicted damage.
Disabled by default.
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/setup_video.cpp | 15 | ||||
-rw-r--r-- | src/gui/setup_video.h | 2 |
2 files changed, 17 insertions, 0 deletions
diff --git a/src/gui/setup_video.cpp b/src/gui/setup_video.cpp index b1d40575..ec11709e 100644 --- a/src/gui/setup_video.cpp +++ b/src/gui/setup_video.cpp @@ -179,6 +179,8 @@ Setup_Video::Setup_Video(): mFullScreenEnabled(config.getValue("screen", false)), mOpenGLEnabled(config.getValue("opengl", false)), mCustomCursorEnabled(config.getValue("customcursor", true)), + mShowMonsterDamageEnabled(config.getValue("showMonstersTakedDamage", + false)), mVisibleNamesEnabled(config.getValue("visiblenames", true)), mParticleEffectsEnabled(config.getValue("particleeffects", true)), mNameEnabled(config.getValue("showownname", false)), @@ -221,6 +223,9 @@ Setup_Video::Setup_Video(): { setName(_("Video")); + mShowMonsterDamageCheckBox = new CheckBox(_("Show monster damage"), + mShowMonsterDamageEnabled); + ScrollArea *scrollArea = new ScrollArea(mModeList); scrollArea->setHorizontalScrollPolicy(gcn::ScrollArea::SHOW_NEVER); @@ -250,6 +255,7 @@ Setup_Video::Setup_Video(): mModeList->setActionEventId("videomode"); mCustomCursorCheckBox->setActionEventId("customcursor"); + mShowMonsterDamageCheckBox->setActionEventId("monsterdamage"); mVisibleNamesCheckBox->setActionEventId("visiblenames"); mParticleEffectsCheckBox->setActionEventId("particleeffects"); mPickupChatCheckBox->setActionEventId("pickupchat"); @@ -266,6 +272,7 @@ Setup_Video::Setup_Video(): mModeList->addActionListener(this); mCustomCursorCheckBox->addActionListener(this); + mShowMonsterDamageCheckBox->addActionListener(this); mVisibleNamesCheckBox->addActionListener(this); mParticleEffectsCheckBox->addActionListener(this); mPickupChatCheckBox->addActionListener(this); @@ -301,6 +308,7 @@ Setup_Video::Setup_Video(): place(3, 0, mOpenGLCheckBox, 1); place(1, 1, mCustomCursorCheckBox, 3); + place(3, 1, mShowMonsterDamageCheckBox, 3); place(1, 2, mVisibleNamesCheckBox, 3); place(3, 2, mNameCheckBox, 1); @@ -405,6 +413,7 @@ void Setup_Video::apply() // We sync old and new values at apply time mFullScreenEnabled = config.getValue("screen", false); mCustomCursorEnabled = config.getValue("customcursor", true); + mShowMonsterDamageEnabled = config.getValue("showMonstersTakedDamage", false); mVisibleNamesEnabled = config.getValue("visiblenames", true); mParticleEffectsEnabled = config.getValue("particleeffects", true); mNameEnabled = config.getValue("showownname", false); @@ -422,6 +431,7 @@ void Setup_Video::cancel() mFsCheckBox->setSelected(mFullScreenEnabled); mOpenGLCheckBox->setSelected(mOpenGLEnabled); mCustomCursorCheckBox->setSelected(mCustomCursorEnabled); + mShowMonsterDamageCheckBox->setSelected(mShowMonsterDamageEnabled); mVisibleNamesCheckBox->setSelected(mVisibleNamesEnabled); mParticleEffectsCheckBox->setSelected(mParticleEffectsEnabled); mSpeechSlider->setValue(mSpeechMode); @@ -432,6 +442,7 @@ void Setup_Video::cancel() config.setValue("screen", mFullScreenEnabled); config.setValue("customcursor", mCustomCursorEnabled); + config.setValue("showMonstersTakedDamage", mShowMonsterDamageEnabled); config.setValue("visiblenames", mVisibleNamesEnabled); config.setValue("particleeffects", mParticleEffectsEnabled); config.setValue("speech", mSpeechMode); @@ -476,6 +487,10 @@ void Setup_Video::action(const gcn::ActionEvent &event) { config.setValue("customcursor", mCustomCursorCheckBox->isSelected()); } + else if (event.getId() == "monsterdamage") + { + config.setValue("showMonstersTakedDamage", mShowMonsterDamageCheckBox->isSelected()); + } else if (event.getId() == "visiblenames") { config.setValue("visiblenames", mVisibleNamesCheckBox->isSelected()); diff --git a/src/gui/setup_video.h b/src/gui/setup_video.h index 0bcdabbe..b7d79f5c 100644 --- a/src/gui/setup_video.h +++ b/src/gui/setup_video.h @@ -52,6 +52,7 @@ class Setup_Video : public SetupTab, public gcn::ActionListener, bool mFullScreenEnabled; bool mOpenGLEnabled; bool mCustomCursorEnabled; + bool mShowMonsterDamageEnabled; bool mVisibleNamesEnabled; bool mParticleEffectsEnabled; bool mNameEnabled; @@ -75,6 +76,7 @@ class Setup_Video : public SetupTab, public gcn::ActionListener, gcn::CheckBox *mFsCheckBox; gcn::CheckBox *mOpenGLCheckBox; gcn::CheckBox *mCustomCursorCheckBox; + gcn::CheckBox *mShowMonsterDamageCheckBox; gcn::CheckBox *mVisibleNamesCheckBox; gcn::CheckBox *mParticleEffectsCheckBox; gcn::CheckBox *mNameCheckBox; |