Changed: #1304: Message concerning the number of times a mission needs to be completed

--HG--
branch : gsoc2011-guildmissions
This commit is contained in:
Fabien_HENON 2011-07-25 14:09:13 +02:00
parent 6462021f14
commit 1f057afe91

View file

@ -1203,7 +1203,26 @@ class CMissionStepDoMissions : public IMissionStepTemplate
virtual void getTextParams( uint & nbSubSteps,const std::string* & textPtr,TVectorParamCheck& retParams, const std::vector<uint32>& subStepStates) virtual void getTextParams( uint & nbSubSteps,const std::string* & textPtr,TVectorParamCheck& retParams, const std::vector<uint32>& subStepStates)
{ {
static const std::string stepText = "ERROR_UNSPECIFIED_MISSION_TEXT"; /*static const std::string stepText = "ERROR_UNSPECIFIED_MISSION_TEXT";
textPtr = &stepText;*/
// Because we can specify the number of times we want a mission to be completed, we specify the parameters
static const std::string stepText = "MIS_DO_MISSION_";
nlassert( _Missions.size() == subStepStates.size() );
for ( uint i = 0; i < subStepStates.size(); i++ )
{
if( subStepStates[i] != 0 )
{
nbSubSteps++;
retParams.push_back(STRING_MANAGER::TParam());
retParams.back().Type = STRING_MANAGER::integer;
retParams.back().Int = subStepStates[i];
retParams.push_back(STRING_MANAGER::TParam());
retParams.back().Type = STRING_MANAGER::literal;
retParams.back().Literal = _Missions[i].Mission;
}
}
textPtr = &stepText; textPtr = &stepText;
} }
bool checkTextConsistency() bool checkTextConsistency()