Merge pull request from OpenMW/master

Add OpenMW commits up to 17 Sep
This commit is contained in:
David Cernat 2016-09-17 21:31:51 +03:00 committed by GitHub
commit 68f974d999
5 changed files with 12 additions and 6 deletions
AUTHORS.md
apps
components/nifosg

View file

@ -123,6 +123,7 @@ Programmers
smbas smbas
Stefan Galowicz (bogglez) Stefan Galowicz (bogglez)
Stanislav Bobrov (Jiub) Stanislav Bobrov (Jiub)
stil-t
svaante svaante
Sylvain Thesnieres (Garvek) Sylvain Thesnieres (Garvek)
t6 t6

View file

@ -275,9 +275,12 @@ struct TypesetBookImpl::Typesetter : BookTypesetter
if (i->match (fontName, fontColour, fontColour, fontColour, 0)) if (i->match (fontName, fontColour, fontColour, fontColour, 0))
return &*i; return &*i;
StyleImpl & style = *mBook->mStyles.insert (mBook->mStyles.end (), StyleImpl ()); MyGUI::IFont* font = MyGUI::FontManager::getInstance().getByName(fontName);
if (!font)
throw std::runtime_error(std::string("can't find font ") + fontName);
style.mFont = MyGUI::FontManager::getInstance().getByName(fontName); StyleImpl & style = *mBook->mStyles.insert (mBook->mStyles.end (), StyleImpl ());
style.mFont = font;
style.mHotColour = fontColour; style.mHotColour = fontColour;
style.mActiveColour = fontColour; style.mActiveColour = fontColour;
style.mNormalColour = fontColour; style.mNormalColour = fontColour;

View file

@ -413,7 +413,10 @@ namespace MWGui
int TextElement::currentFontHeight() const int TextElement::currentFontHeight() const
{ {
std::string fontName(mTextStyle.mFont == "Default" ? MyGUI::FontManager::getInstance().getDefaultFont() : mTextStyle.mFont); std::string fontName(mTextStyle.mFont == "Default" ? MyGUI::FontManager::getInstance().getDefaultFont() : mTextStyle.mFont);
return MyGUI::FontManager::getInstance().getByName(fontName)->getDefaultHeight(); MyGUI::IFont* font = MyGUI::FontManager::getInstance().getByName(fontName);
if (!font)
return 0;
return font->getDefaultHeight();
} }
int TextElement::getHeight() int TextElement::getHeight()

View file

@ -302,7 +302,7 @@ bool Wizard::UnshieldWorker::copyDirectory(const QString &source, const QString
bool Wizard::UnshieldWorker::installFile(const QString &fileName, const QString &path, Qt::MatchFlags flags, bool keepSource) bool Wizard::UnshieldWorker::installFile(const QString &fileName, const QString &path, Qt::MatchFlags flags, bool keepSource)
{ {
return installFiles(fileName, path, flags, true, keepSource); return installFiles(fileName, path, flags, keepSource, true);
} }
bool Wizard::UnshieldWorker::installFiles(const QString &fileName, const QString &path, Qt::MatchFlags flags, bool keepSource, bool single) bool Wizard::UnshieldWorker::installFiles(const QString &fileName, const QString &path, Qt::MatchFlags flags, bool keepSource, bool single)

View file

@ -38,8 +38,7 @@ namespace NifOsg
// Decomposing the original components from the 4x4 matrix isn't possible, which causes // Decomposing the original components from the 4x4 matrix isn't possible, which causes
// problems when a KeyframeController wants to change only one of these components. So // problems when a KeyframeController wants to change only one of these components. So
// we store the scale and rotation components separately here. // we store the scale and rotation components separately here.
// Note for a cleaner solution it would be possible to write a custom Transform node, // Note for a cleaner solution it would be possible to write a custom Transform node
// but then we have to fork osgAnimation :/
float mScale; float mScale;
Nif::Matrix3 mRotationScale; Nif::Matrix3 mRotationScale;
}; };