2012-05-29 13:31:11 +00:00
|
|
|
// Ryzom - MMORPG Framework <http://dev.ryzom.com/projects/ryzom/>
|
|
|
|
// Copyright (C) 2010 Winch Gate Property Limited
|
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as
|
|
|
|
// published by the Free Software Foundation, either version 3 of the
|
|
|
|
// License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program 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 Affero General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
#include "stdpch.h"
|
|
|
|
#include "browse_faq.h"
|
|
|
|
|
|
|
|
using namespace NLMISC;
|
|
|
|
|
|
|
|
void browseFAQ(NLMISC::CConfigFile &cf)
|
|
|
|
{
|
|
|
|
std::string url;
|
|
|
|
std::string languageCode = "wk";
|
|
|
|
CConfigFile::CVar *languageCodeVarPtr = cf.getVarPtr("LanguageCode");
|
2015-11-07 21:57:41 +00:00
|
|
|
|
2012-05-29 13:31:11 +00:00
|
|
|
if (languageCodeVarPtr)
|
|
|
|
{
|
|
|
|
languageCode = languageCodeVarPtr->asString();
|
|
|
|
}
|
2015-11-07 21:57:41 +00:00
|
|
|
|
2012-05-29 13:31:11 +00:00
|
|
|
CConfigFile::CVar *helpPages = cf.getVarPtr("HelpPages");
|
2015-11-07 21:57:41 +00:00
|
|
|
|
2012-05-29 13:31:11 +00:00
|
|
|
if (helpPages)
|
|
|
|
{
|
|
|
|
for (uint i = 0; i < helpPages->size(); ++i)
|
|
|
|
{
|
|
|
|
std::string entry = helpPages->asString(i);
|
2015-11-07 21:57:41 +00:00
|
|
|
|
2012-05-29 13:31:11 +00:00
|
|
|
if (entry.size() >= languageCode.size())
|
|
|
|
{
|
|
|
|
if (nlstricmp(entry.substr(0, languageCode.size()), languageCode) == 0)
|
|
|
|
{
|
|
|
|
std::string::size_type pos = entry.find("=");
|
2015-11-07 21:57:41 +00:00
|
|
|
|
2012-05-29 13:31:11 +00:00
|
|
|
if (pos != std::string::npos)
|
|
|
|
{
|
|
|
|
url = entry.substr(pos + 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-01-16 22:47:58 +00:00
|
|
|
|
2012-05-29 13:31:11 +00:00
|
|
|
if (url.empty())
|
|
|
|
{
|
2014-09-12 08:42:42 +00:00
|
|
|
// not found
|
|
|
|
nlwarning("No FAQ url");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
openURL(url.c_str());
|
2012-05-29 13:31:11 +00:00
|
|
|
}
|
|
|
|
}
|