mirror of
				https://github.com/TES3MP/openmw-tes3mp.git
				synced 2025-11-04 05:26:41 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			583 lines
		
	
	
	
		
			23 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			583 lines
		
	
	
	
		
			23 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
#include "statswindow.hpp"
 | 
						|
 | 
						|
#include <boost/lexical_cast.hpp>
 | 
						|
 | 
						|
#include "../mwbase/environment.hpp"
 | 
						|
#include "../mwbase/world.hpp"
 | 
						|
#include "../mwbase/windowmanager.hpp"
 | 
						|
 | 
						|
#include "../mwworld/class.hpp"
 | 
						|
#include "../mwworld/player.hpp"
 | 
						|
 | 
						|
#include "../mwmechanics/npcstats.hpp"
 | 
						|
 | 
						|
#include "tooltips.hpp"
 | 
						|
 | 
						|
namespace MWGui
 | 
						|
{
 | 
						|
 | 
						|
    const int StatsWindow::sLineHeight = 18;
 | 
						|
 | 
						|
    StatsWindow::StatsWindow (DragAndDrop* drag)
 | 
						|
      : WindowPinnableBase("openmw_stats_window.layout")
 | 
						|
      , NoDrop(drag, mMainWidget)
 | 
						|
      , mSkillView(NULL)
 | 
						|
      , mMajorSkills()
 | 
						|
      , mMinorSkills()
 | 
						|
      , mMiscSkills()
 | 
						|
      , mSkillValues()
 | 
						|
      , mSkillWidgetMap()
 | 
						|
      , mFactionWidgetMap()
 | 
						|
      , mFactions()
 | 
						|
      , mBirthSignId()
 | 
						|
      , mReputation(0)
 | 
						|
      , mBounty(0)
 | 
						|
      , mSkillWidgets()
 | 
						|
      , mChanged(true)
 | 
						|
    {
 | 
						|
        setCoord(0,0,498, 342);
 | 
						|
 | 
						|
        const char *names[][2] =
 | 
						|
        {
 | 
						|
            { "Attrib1", "sAttributeStrength" },
 | 
						|
            { "Attrib2", "sAttributeIntelligence" },
 | 
						|
            { "Attrib3", "sAttributeWillpower" },
 | 
						|
            { "Attrib4", "sAttributeAgility" },
 | 
						|
            { "Attrib5", "sAttributeSpeed" },
 | 
						|
            { "Attrib6", "sAttributeEndurance" },
 | 
						|
            { "Attrib7", "sAttributePersonality" },
 | 
						|
            { "Attrib8", "sAttributeLuck" },
 | 
						|
            { 0, 0 }
 | 
						|
        };
 | 
						|
 | 
						|
        const MWWorld::ESMStore &store = MWBase::Environment::get().getWorld()->getStore();
 | 
						|
        for (int i=0; names[i][0]; ++i)
 | 
						|
        {
 | 
						|
            setText (names[i][0], store.get<ESM::GameSetting>().find (names[i][1])->getString());
 | 
						|
        }
 | 
						|
 | 
						|
        getWidget(mSkillView, "SkillView");
 | 
						|
        getWidget(mLeftPane, "LeftPane");
 | 
						|
        getWidget(mRightPane, "RightPane");
 | 
						|
 | 
						|
        for (int i = 0; i < ESM::Skill::Length; ++i)
 | 
						|
        {
 | 
						|
            mSkillValues.insert(std::pair<int, MWMechanics::SkillValue >(i, MWMechanics::SkillValue()));
 | 
						|
            mSkillWidgetMap.insert(std::pair<int, MyGUI::TextBox*>(i, (MyGUI::TextBox*)NULL));
 | 
						|
        }
 | 
						|
 | 
						|
        MyGUI::WindowPtr t = static_cast<MyGUI::WindowPtr>(mMainWidget);
 | 
						|
        t->eventWindowChangeCoord += MyGUI::newDelegate(this, &StatsWindow::onWindowResize);
 | 
						|
    }
 | 
						|
 | 
						|
    void StatsWindow::onMouseWheel(MyGUI::Widget* _sender, int _rel)
 | 
						|
    {
 | 
						|
        if (mSkillView->getViewOffset().top + _rel*0.3 > 0)
 | 
						|
            mSkillView->setViewOffset(MyGUI::IntPoint(0, 0));
 | 
						|
        else
 | 
						|
            mSkillView->setViewOffset(MyGUI::IntPoint(0, mSkillView->getViewOffset().top + _rel*0.3));
 | 
						|
    }
 | 
						|
 | 
						|
    void StatsWindow::onWindowResize(MyGUI::Window* window)
 | 
						|
    {
 | 
						|
        mLeftPane->setCoord( MyGUI::IntCoord(0, 0, 0.44*window->getSize().width, window->getSize().height) );
 | 
						|
        mRightPane->setCoord( MyGUI::IntCoord(0.44*window->getSize().width, 0, 0.56*window->getSize().width, window->getSize().height) );
 | 
						|
        mSkillView->setCanvasSize (mSkillView->getWidth(), mSkillView->getCanvasSize().height);
 | 
						|
    }
 | 
						|
 | 
						|
    void StatsWindow::setBar(const std::string& name, const std::string& tname, int val, int max)
 | 
						|
    {
 | 
						|
        MyGUI::ProgressPtr pt;
 | 
						|
        getWidget(pt, name);
 | 
						|
        pt->setProgressRange(max);
 | 
						|
        pt->setProgressPosition(val);
 | 
						|
 | 
						|
        std::stringstream out;
 | 
						|
        out << val << "/" << max;
 | 
						|
        setText(tname, out.str().c_str());
 | 
						|
    }
 | 
						|
 | 
						|
    void StatsWindow::setPlayerName(const std::string& playerName)
 | 
						|
    {
 | 
						|
        static_cast<MyGUI::Window*>(mMainWidget)->setCaption(playerName);
 | 
						|
        adjustWindowCaption();
 | 
						|
    }
 | 
						|
 | 
						|
    void StatsWindow::setValue (const std::string& id, const MWMechanics::AttributeValue& value)
 | 
						|
    {
 | 
						|
        static const char *ids[] =
 | 
						|
        {
 | 
						|
            "AttribVal1", "AttribVal2", "AttribVal3", "AttribVal4", "AttribVal5",
 | 
						|
            "AttribVal6", "AttribVal7", "AttribVal8",
 | 
						|
            0
 | 
						|
        };
 | 
						|
 | 
						|
        for (int i=0; ids[i]; ++i)
 | 
						|
            if (ids[i]==id)
 | 
						|
            {
 | 
						|
                std::ostringstream valueString;
 | 
						|
                valueString << value.getModified();
 | 
						|
                setText (id, valueString.str());
 | 
						|
 | 
						|
                MyGUI::TextBox* box;
 | 
						|
                getWidget(box, id);
 | 
						|
 | 
						|
                if (value.getModified()>value.getBase())
 | 
						|
                    box->_setWidgetState("increased");
 | 
						|
                else if (value.getModified()<value.getBase())
 | 
						|
                    box->_setWidgetState("decreased");
 | 
						|
                else
 | 
						|
                    box->_setWidgetState("normal");
 | 
						|
 | 
						|
                break;
 | 
						|
            }
 | 
						|
    }
 | 
						|
 | 
						|
    void StatsWindow::setValue (const std::string& id, const MWMechanics::DynamicStat<float>& value)
 | 
						|
    {
 | 
						|
        int current = std::max(0, static_cast<int>(value.getCurrent()));
 | 
						|
        int modified = static_cast<int>(value.getModified());
 | 
						|
 | 
						|
        setBar (id, id + "T", current, modified);
 | 
						|
 | 
						|
        // health, magicka, fatigue tooltip
 | 
						|
        MyGUI::Widget* w;
 | 
						|
        std::string valStr =  boost::lexical_cast<std::string>(current) + "/" + boost::lexical_cast<std::string>(modified);
 | 
						|
        if (id == "HBar")
 | 
						|
        {
 | 
						|
            getWidget(w, "Health");
 | 
						|
            w->setUserString("Caption_HealthDescription", "#{sHealthDesc}\n" + valStr);
 | 
						|
        }
 | 
						|
        else if (id == "MBar")
 | 
						|
        {
 | 
						|
            getWidget(w, "Magicka");
 | 
						|
            w->setUserString("Caption_HealthDescription", "#{sIntDesc}\n" + valStr);
 | 
						|
        }
 | 
						|
        else if (id == "FBar")
 | 
						|
        {
 | 
						|
            getWidget(w, "Fatigue");
 | 
						|
            w->setUserString("Caption_HealthDescription", "#{sFatDesc}\n" + valStr);
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    void StatsWindow::setValue (const std::string& id, const std::string& value)
 | 
						|
    {
 | 
						|
        if (id=="name")
 | 
						|
            setPlayerName (value);
 | 
						|
        else if (id=="race")
 | 
						|
            setText ("RaceText", value);
 | 
						|
        else if (id=="class")
 | 
						|
            setText ("ClassText", value);
 | 
						|
    }
 | 
						|
 | 
						|
    void StatsWindow::setValue (const std::string& id, int value)
 | 
						|
    {
 | 
						|
        if (id=="level")
 | 
						|
        {
 | 
						|
            std::ostringstream text;
 | 
						|
            text << value;
 | 
						|
            setText("LevelText", text.str());
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    void StatsWindow::setValue(const ESM::Skill::SkillEnum parSkill, const MWMechanics::SkillValue& value)
 | 
						|
    {
 | 
						|
        mSkillValues[parSkill] = value;
 | 
						|
        MyGUI::TextBox* widget = mSkillWidgetMap[(int)parSkill];
 | 
						|
        if (widget)
 | 
						|
        {
 | 
						|
            int modified = value.getModified(), base = value.getBase();
 | 
						|
            std::string text = boost::lexical_cast<std::string>(modified);
 | 
						|
            std::string state = "normal";
 | 
						|
            if (modified > base)
 | 
						|
                state = "increased";
 | 
						|
            else if (modified < base)
 | 
						|
                state = "decreased";
 | 
						|
 | 
						|
            widget->setCaption(text);
 | 
						|
            widget->_setWidgetState(state);
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    void StatsWindow::configureSkills (const std::vector<int>& major, const std::vector<int>& minor)
 | 
						|
    {
 | 
						|
        mMajorSkills = major;
 | 
						|
        mMinorSkills = minor;
 | 
						|
 | 
						|
        // Update misc skills with the remaining skills not in major or minor
 | 
						|
        std::set<int> skillSet;
 | 
						|
        std::copy(major.begin(), major.end(), std::inserter(skillSet, skillSet.begin()));
 | 
						|
        std::copy(minor.begin(), minor.end(), std::inserter(skillSet, skillSet.begin()));
 | 
						|
        boost::array<ESM::Skill::SkillEnum, ESM::Skill::Length>::const_iterator end = ESM::Skill::sSkillIds.end();
 | 
						|
        mMiscSkills.clear();
 | 
						|
        for (boost::array<ESM::Skill::SkillEnum, ESM::Skill::Length>::const_iterator it = ESM::Skill::sSkillIds.begin(); it != end; ++it)
 | 
						|
        {
 | 
						|
            int skill = *it;
 | 
						|
            if (skillSet.find(skill) == skillSet.end())
 | 
						|
                mMiscSkills.push_back(skill);
 | 
						|
        }
 | 
						|
 | 
						|
        updateSkillArea();
 | 
						|
    }
 | 
						|
 | 
						|
    void StatsWindow::onFrame (float dt)
 | 
						|
    {
 | 
						|
        if (!mMainWidget->getVisible())
 | 
						|
            return;
 | 
						|
 | 
						|
        NoDrop::onFrame(dt);
 | 
						|
 | 
						|
        MWWorld::Ptr player = MWBase::Environment::get().getWorld()->getPlayerPtr();
 | 
						|
        const MWMechanics::NpcStats &PCstats = player.getClass().getNpcStats(player);
 | 
						|
 | 
						|
        // level progress
 | 
						|
        MyGUI::Widget* levelWidget;
 | 
						|
        for (int i=0; i<2; ++i)
 | 
						|
        {
 | 
						|
            int max = MWBase::Environment::get().getWorld()->getStore().get<ESM::GameSetting>().find("iLevelUpTotal")->getInt();
 | 
						|
            getWidget(levelWidget, i==0 ? "Level_str" : "LevelText");
 | 
						|
            levelWidget->setUserString("RangePosition_LevelProgress", boost::lexical_cast<std::string>(PCstats.getLevelProgress()));
 | 
						|
            levelWidget->setUserString("Range_LevelProgress", boost::lexical_cast<std::string>(max));
 | 
						|
            levelWidget->setUserString("Caption_LevelProgressText", boost::lexical_cast<std::string>(PCstats.getLevelProgress()) + "/"
 | 
						|
                                       + boost::lexical_cast<std::string>(max));
 | 
						|
        }
 | 
						|
 | 
						|
        setFactions(PCstats.getFactionRanks());
 | 
						|
        setExpelled(PCstats.getExpelled ());
 | 
						|
 | 
						|
        const std::string &signId =
 | 
						|
            MWBase::Environment::get().getWorld()->getPlayer().getBirthSign();
 | 
						|
 | 
						|
        setBirthSign(signId);
 | 
						|
        setReputation (PCstats.getReputation ());
 | 
						|
        setBounty (PCstats.getBounty ());
 | 
						|
 | 
						|
        if (mChanged)
 | 
						|
            updateSkillArea();
 | 
						|
    }
 | 
						|
 | 
						|
    void StatsWindow::setFactions (const FactionList& factions)
 | 
						|
    {
 | 
						|
        if (mFactions != factions)
 | 
						|
        {
 | 
						|
            mFactions = factions;
 | 
						|
            mChanged = true;
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    void StatsWindow::setExpelled (const std::set<std::string>& expelled)
 | 
						|
    {
 | 
						|
        if (mExpelled != expelled)
 | 
						|
        {
 | 
						|
            mExpelled = expelled;
 | 
						|
            mChanged = true;
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    void StatsWindow::setBirthSign (const std::string& signId)
 | 
						|
    {
 | 
						|
        if (signId != mBirthSignId)
 | 
						|
        {
 | 
						|
            mBirthSignId = signId;
 | 
						|
            mChanged = true;
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    void StatsWindow::addSeparator(MyGUI::IntCoord &coord1, MyGUI::IntCoord &coord2)
 | 
						|
    {
 | 
						|
        MyGUI::ImageBox* separator = mSkillView->createWidget<MyGUI::ImageBox>("MW_HLine",
 | 
						|
            MyGUI::IntCoord(10, coord1.top, coord1.width + coord2.width - 4, 18),
 | 
						|
            MyGUI::Align::Left | MyGUI::Align::Top | MyGUI::Align::HStretch);
 | 
						|
        separator->eventMouseWheel += MyGUI::newDelegate(this, &StatsWindow::onMouseWheel);
 | 
						|
        mSkillWidgets.push_back(separator);
 | 
						|
 | 
						|
        coord1.top += separator->getHeight();
 | 
						|
        coord2.top += separator->getHeight();
 | 
						|
    }
 | 
						|
 | 
						|
    void StatsWindow::addGroup(const std::string &label, MyGUI::IntCoord &coord1, MyGUI::IntCoord &coord2)
 | 
						|
    {
 | 
						|
        MyGUI::TextBox* groupWidget = mSkillView->createWidget<MyGUI::TextBox>("SandBrightText",
 | 
						|
            MyGUI::IntCoord(0, coord1.top, coord1.width + coord2.width, coord1.height),
 | 
						|
            MyGUI::Align::Left | MyGUI::Align::Top | MyGUI::Align::HStretch);
 | 
						|
        groupWidget->setCaption(label);
 | 
						|
        groupWidget->eventMouseWheel += MyGUI::newDelegate(this, &StatsWindow::onMouseWheel);
 | 
						|
        mSkillWidgets.push_back(groupWidget);
 | 
						|
 | 
						|
        coord1.top += sLineHeight;
 | 
						|
        coord2.top += sLineHeight;
 | 
						|
    }
 | 
						|
 | 
						|
    MyGUI::TextBox* StatsWindow::addValueItem(const std::string& text, const std::string &value, const std::string& state, MyGUI::IntCoord &coord1, MyGUI::IntCoord &coord2)
 | 
						|
    {
 | 
						|
        MyGUI::TextBox *skillNameWidget, *skillValueWidget;
 | 
						|
 | 
						|
        skillNameWidget = mSkillView->createWidget<MyGUI::TextBox>("SandText", coord1, MyGUI::Align::Left | MyGUI::Align::Top | MyGUI::Align::HStretch);
 | 
						|
        skillNameWidget->setCaption(text);
 | 
						|
        skillNameWidget->eventMouseWheel += MyGUI::newDelegate(this, &StatsWindow::onMouseWheel);
 | 
						|
 | 
						|
        skillValueWidget = mSkillView->createWidget<MyGUI::TextBox>("SandTextRight", coord2, MyGUI::Align::Right | MyGUI::Align::Top);
 | 
						|
        skillValueWidget->setCaption(value);
 | 
						|
        skillValueWidget->_setWidgetState(state);
 | 
						|
        skillValueWidget->eventMouseWheel += MyGUI::newDelegate(this, &StatsWindow::onMouseWheel);
 | 
						|
 | 
						|
        mSkillWidgets.push_back(skillNameWidget);
 | 
						|
        mSkillWidgets.push_back(skillValueWidget);
 | 
						|
 | 
						|
        coord1.top += sLineHeight;
 | 
						|
        coord2.top += sLineHeight;
 | 
						|
 | 
						|
        return skillValueWidget;
 | 
						|
    }
 | 
						|
 | 
						|
    MyGUI::Widget* StatsWindow::addItem(const std::string& text, MyGUI::IntCoord &coord1, MyGUI::IntCoord &coord2)
 | 
						|
    {
 | 
						|
        MyGUI::TextBox* skillNameWidget;
 | 
						|
 | 
						|
        skillNameWidget = mSkillView->createWidget<MyGUI::TextBox>("SandText", coord1 + MyGUI::IntSize(coord2.width, 0), MyGUI::Align::Default);
 | 
						|
        skillNameWidget->setCaption(text);
 | 
						|
        skillNameWidget->eventMouseWheel += MyGUI::newDelegate(this, &StatsWindow::onMouseWheel);
 | 
						|
 | 
						|
        mSkillWidgets.push_back(skillNameWidget);
 | 
						|
 | 
						|
        coord1.top += sLineHeight;
 | 
						|
        coord2.top += sLineHeight;
 | 
						|
 | 
						|
        return skillNameWidget;
 | 
						|
    }
 | 
						|
 | 
						|
    void StatsWindow::addSkills(const SkillList &skills, const std::string &titleId, const std::string &titleDefault, MyGUI::IntCoord &coord1, MyGUI::IntCoord &coord2)
 | 
						|
    {
 | 
						|
        // Add a line separator if there are items above
 | 
						|
        if (!mSkillWidgets.empty())
 | 
						|
        {
 | 
						|
            addSeparator(coord1, coord2);
 | 
						|
        }
 | 
						|
 | 
						|
        addGroup(MWBase::Environment::get().getWindowManager()->getGameSettingString(titleId, titleDefault), coord1, coord2);
 | 
						|
 | 
						|
        SkillList::const_iterator end = skills.end();
 | 
						|
        for (SkillList::const_iterator it = skills.begin(); it != end; ++it)
 | 
						|
        {
 | 
						|
            int skillId = *it;
 | 
						|
            if (skillId < 0 || skillId > ESM::Skill::Length) // Skip unknown skill indexes
 | 
						|
                continue;
 | 
						|
            assert(skillId >= 0 && skillId < ESM::Skill::Length);
 | 
						|
            const std::string &skillNameId = ESM::Skill::sSkillNameIds[skillId];
 | 
						|
            const MWMechanics::SkillValue &stat = mSkillValues.find(skillId)->second;
 | 
						|
            int base = stat.getBase();
 | 
						|
            int modified = stat.getModified();
 | 
						|
            int progressPercent = stat.getProgress() * 100;
 | 
						|
 | 
						|
            const MWWorld::ESMStore &esmStore =
 | 
						|
                MWBase::Environment::get().getWorld()->getStore();
 | 
						|
 | 
						|
            const ESM::Skill* skill = esmStore.get<ESM::Skill>().find(skillId);
 | 
						|
 | 
						|
            std::string icon = "icons\\k\\" + ESM::Skill::sIconNames[skillId];
 | 
						|
 | 
						|
            const ESM::Attribute* attr =
 | 
						|
                esmStore.get<ESM::Attribute>().find(skill->mData.mAttribute);
 | 
						|
 | 
						|
            std::string state = "normal";
 | 
						|
            if (modified > base)
 | 
						|
                state = "increased";
 | 
						|
            else if (modified < base)
 | 
						|
                state = "decreased";
 | 
						|
            MyGUI::TextBox* widget = addValueItem(MWBase::Environment::get().getWindowManager()->getGameSettingString(skillNameId, skillNameId),
 | 
						|
                boost::lexical_cast<std::string>(static_cast<int>(modified)), state, coord1, coord2);
 | 
						|
 | 
						|
            for (int i=0; i<2; ++i)
 | 
						|
            {
 | 
						|
                mSkillWidgets[mSkillWidgets.size()-1-i]->setUserString("ToolTipType", "Layout");
 | 
						|
                mSkillWidgets[mSkillWidgets.size()-1-i]->setUserString("ToolTipLayout", "SkillToolTip");
 | 
						|
                mSkillWidgets[mSkillWidgets.size()-1-i]->setUserString("Caption_SkillName", "#{"+skillNameId+"}");
 | 
						|
                mSkillWidgets[mSkillWidgets.size()-1-i]->setUserString("Caption_SkillDescription", skill->mDescription);
 | 
						|
                mSkillWidgets[mSkillWidgets.size()-1-i]->setUserString("Caption_SkillAttribute", "#{sGoverningAttribute}: #{" + attr->mName + "}");
 | 
						|
                mSkillWidgets[mSkillWidgets.size()-1-i]->setUserString("ImageTexture_SkillImage", icon);
 | 
						|
                mSkillWidgets[mSkillWidgets.size()-1-i]->setUserString("Caption_SkillProgressText", boost::lexical_cast<std::string>(progressPercent)+"/100");
 | 
						|
                mSkillWidgets[mSkillWidgets.size()-1-i]->setUserString("Range_SkillProgress", "100");
 | 
						|
                mSkillWidgets[mSkillWidgets.size()-1-i]->setUserString("RangePosition_SkillProgress", boost::lexical_cast<std::string>(progressPercent));
 | 
						|
            }
 | 
						|
 | 
						|
            mSkillWidgetMap[skillId] = widget;
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    void StatsWindow::updateSkillArea()
 | 
						|
    {
 | 
						|
        mChanged = false;
 | 
						|
 | 
						|
        for (std::vector<MyGUI::Widget*>::iterator it = mSkillWidgets.begin(); it != mSkillWidgets.end(); ++it)
 | 
						|
        {
 | 
						|
            MyGUI::Gui::getInstance().destroyWidget(*it);
 | 
						|
        }
 | 
						|
        mSkillWidgets.clear();
 | 
						|
 | 
						|
        const int valueSize = 40;
 | 
						|
        MyGUI::IntCoord coord1(10, 0, mSkillView->getWidth() - (10 + valueSize) - 24, 18);
 | 
						|
        MyGUI::IntCoord coord2(coord1.left + coord1.width, coord1.top, valueSize, coord1.height);
 | 
						|
 | 
						|
        if (!mMajorSkills.empty())
 | 
						|
            addSkills(mMajorSkills, "sSkillClassMajor", "Major Skills", coord1, coord2);
 | 
						|
 | 
						|
        if (!mMinorSkills.empty())
 | 
						|
            addSkills(mMinorSkills, "sSkillClassMinor", "Minor Skills", coord1, coord2);
 | 
						|
 | 
						|
        if (!mMiscSkills.empty())
 | 
						|
            addSkills(mMiscSkills, "sSkillClassMisc", "Misc Skills", coord1, coord2);
 | 
						|
 | 
						|
        MWBase::World *world = MWBase::Environment::get().getWorld();
 | 
						|
        const MWWorld::ESMStore &store = world->getStore();
 | 
						|
        const ESM::NPC *player =
 | 
						|
            world->getPlayerPtr().get<ESM::NPC>()->mBase;
 | 
						|
 | 
						|
        // race tooltip
 | 
						|
        const ESM::Race* playerRace = store.get<ESM::Race>().find(player->mRace);
 | 
						|
 | 
						|
        MyGUI::Widget* raceWidget;
 | 
						|
        getWidget(raceWidget, "RaceText");
 | 
						|
        ToolTips::createRaceToolTip(raceWidget, playerRace);
 | 
						|
        getWidget(raceWidget, "Race_str");
 | 
						|
        ToolTips::createRaceToolTip(raceWidget, playerRace);
 | 
						|
 | 
						|
        // class tooltip
 | 
						|
        MyGUI::Widget* classWidget;
 | 
						|
 | 
						|
        const ESM::Class *playerClass =
 | 
						|
            store.get<ESM::Class>().find(player->mClass);
 | 
						|
 | 
						|
        getWidget(classWidget, "ClassText");
 | 
						|
        ToolTips::createClassToolTip(classWidget, *playerClass);
 | 
						|
        getWidget(classWidget, "Class_str");
 | 
						|
        ToolTips::createClassToolTip(classWidget, *playerClass);
 | 
						|
 | 
						|
        if (!mFactions.empty())
 | 
						|
        {
 | 
						|
            MWWorld::Ptr player = MWBase::Environment::get().getWorld()->getPlayerPtr();
 | 
						|
            const MWMechanics::NpcStats &PCstats = player.getClass().getNpcStats(player);
 | 
						|
            const std::set<std::string> &expelled = PCstats.getExpelled();
 | 
						|
 | 
						|
            bool firstFaction=true;
 | 
						|
            FactionList::const_iterator end = mFactions.end();
 | 
						|
            for (FactionList::const_iterator it = mFactions.begin(); it != end; ++it)
 | 
						|
            {
 | 
						|
                const ESM::Faction *faction =
 | 
						|
                    store.get<ESM::Faction>().find(it->first);
 | 
						|
                if (faction->mData.mIsHidden == 1)
 | 
						|
                    continue;
 | 
						|
 | 
						|
                if (firstFaction)
 | 
						|
                {
 | 
						|
                    // Add a line separator if there are items above
 | 
						|
                    if (!mSkillWidgets.empty())
 | 
						|
                        addSeparator(coord1, coord2);
 | 
						|
 | 
						|
                    addGroup(MWBase::Environment::get().getWindowManager()->getGameSettingString("sFaction", "Faction"), coord1, coord2);
 | 
						|
 | 
						|
                    firstFaction = false;
 | 
						|
                }
 | 
						|
 | 
						|
                MyGUI::Widget* w = addItem(faction->mName, coord1, coord2);
 | 
						|
 | 
						|
                std::string text;
 | 
						|
 | 
						|
                text += std::string("#DDC79E") + faction->mName;
 | 
						|
 | 
						|
                if (expelled.find(it->first) != expelled.end())
 | 
						|
                    text += "\n#BF9959#{sExpelled}";
 | 
						|
                else
 | 
						|
                {
 | 
						|
                    int rank = it->second;
 | 
						|
                    rank = std::max(0, std::min(9, rank));
 | 
						|
                    text += std::string("\n#BF9959") + faction->mRanks[rank];
 | 
						|
 | 
						|
                    if (rank < 9)
 | 
						|
                    {
 | 
						|
                        // player doesn't have max rank yet
 | 
						|
                        text += std::string("\n\n#DDC79E#{sNextRank} ") + faction->mRanks[rank+1];
 | 
						|
 | 
						|
                        ESM::RankData rankData = faction->mData.mRankData[rank+1];
 | 
						|
                        const ESM::Attribute* attr1 = store.get<ESM::Attribute>().find(faction->mData.mAttribute[0]);
 | 
						|
                        const ESM::Attribute* attr2 = store.get<ESM::Attribute>().find(faction->mData.mAttribute[1]);
 | 
						|
 | 
						|
                        text += "\n#BF9959#{" + attr1->mName + "}: " + boost::lexical_cast<std::string>(rankData.mAttribute1)
 | 
						|
                                + ", #{" + attr2->mName + "}: " + boost::lexical_cast<std::string>(rankData.mAttribute2);
 | 
						|
 | 
						|
                        text += "\n\n#DDC79E#{sFavoriteSkills}";
 | 
						|
                        text += "\n#BF9959";
 | 
						|
                        bool firstSkill = true;
 | 
						|
                        for (int i=0; i<7; ++i)
 | 
						|
                        {
 | 
						|
                            if (faction->mData.mSkills[i] != -1)
 | 
						|
                            {
 | 
						|
                                if (!firstSkill)
 | 
						|
                                    text += ", ";
 | 
						|
 | 
						|
                                firstSkill = false;
 | 
						|
 | 
						|
                                text += "#{"+ESM::Skill::sSkillNameIds[faction->mData.mSkills[i]]+"}";
 | 
						|
                            }
 | 
						|
                        }
 | 
						|
 | 
						|
                        text += "\n";
 | 
						|
 | 
						|
                        if (rankData.mSkill1 > 0)
 | 
						|
                            text += "\n#{sNeedOneSkill} " + boost::lexical_cast<std::string>(rankData.mSkill1);
 | 
						|
                        if (rankData.mSkill2 > 0)
 | 
						|
                            text += "\n#{sNeedTwoSkills} " + boost::lexical_cast<std::string>(rankData.mSkill2);
 | 
						|
                    }
 | 
						|
                }
 | 
						|
 | 
						|
                w->setUserString("ToolTipType", "Layout");
 | 
						|
                w->setUserString("ToolTipLayout", "TextToolTip");
 | 
						|
                w->setUserString("Caption_Text", text);
 | 
						|
            }
 | 
						|
        }
 | 
						|
 | 
						|
        if (!mBirthSignId.empty())
 | 
						|
        {
 | 
						|
            // Add a line separator if there are items above
 | 
						|
            if (!mSkillWidgets.empty())
 | 
						|
                addSeparator(coord1, coord2);
 | 
						|
 | 
						|
            addGroup(MWBase::Environment::get().getWindowManager()->getGameSettingString("sBirthSign", "Sign"), coord1, coord2);
 | 
						|
            const ESM::BirthSign *sign =
 | 
						|
                store.get<ESM::BirthSign>().find(mBirthSignId);
 | 
						|
            MyGUI::Widget* w = addItem(sign->mName, coord1, coord2);
 | 
						|
 | 
						|
            ToolTips::createBirthsignToolTip(w, mBirthSignId);
 | 
						|
        }
 | 
						|
 | 
						|
        // Add a line separator if there are items above
 | 
						|
        if (!mSkillWidgets.empty())
 | 
						|
            addSeparator(coord1, coord2);
 | 
						|
 | 
						|
        addValueItem(MWBase::Environment::get().getWindowManager()->getGameSettingString("sReputation", "Reputation"),
 | 
						|
                    boost::lexical_cast<std::string>(static_cast<int>(mReputation)), "normal", coord1, coord2);
 | 
						|
 | 
						|
        for (int i=0; i<2; ++i)
 | 
						|
        {
 | 
						|
            mSkillWidgets[mSkillWidgets.size()-1-i]->setUserString("ToolTipType", "Layout");
 | 
						|
            mSkillWidgets[mSkillWidgets.size()-1-i]->setUserString("ToolTipLayout", "TextToolTip");
 | 
						|
            mSkillWidgets[mSkillWidgets.size()-1-i]->setUserString("Caption_Text", "#{sSkillsMenuReputationHelp}");
 | 
						|
        }
 | 
						|
 | 
						|
        addValueItem(MWBase::Environment::get().getWindowManager()->getGameSettingString("sBounty", "Bounty"),
 | 
						|
                    boost::lexical_cast<std::string>(static_cast<int>(mBounty)), "normal", coord1, coord2);
 | 
						|
 | 
						|
        for (int i=0; i<2; ++i)
 | 
						|
        {
 | 
						|
            mSkillWidgets[mSkillWidgets.size()-1-i]->setUserString("ToolTipType", "Layout");
 | 
						|
            mSkillWidgets[mSkillWidgets.size()-1-i]->setUserString("ToolTipLayout", "TextToolTip");
 | 
						|
            mSkillWidgets[mSkillWidgets.size()-1-i]->setUserString("Caption_Text", "#{sCrimeHelp}");
 | 
						|
        }
 | 
						|
 | 
						|
        mSkillView->setCanvasSize (mSkillView->getWidth(), std::max(mSkillView->getHeight(), coord1.top));
 | 
						|
    }
 | 
						|
 | 
						|
    void StatsWindow::onPinToggled()
 | 
						|
    {
 | 
						|
        MWBase::Environment::get().getWindowManager()->setHMSVisibility(!mPinned);
 | 
						|
    }
 | 
						|
}
 |