1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-26 09:35:28 +00:00

some argument parsing cleanup

This commit is contained in:
Marc Zinnschlag 2014-07-21 12:50:29 +02:00
parent a9f9dec923
commit 11a2c767cc
2 changed files with 20 additions and 12 deletions

View File

@ -777,11 +777,22 @@ namespace Compiler
++optionalCount; ++optionalCount;
} }
} }
else if (*iter=='X')
{
parser.reset();
parser.setOptional (true);
scanner.scan (parser);
if (optional && parser.isEmpty())
break;
}
else else
{ {
parser.reset(); parser.reset();
if (optional || *iter == 'X') if (optional)
parser.setOptional (true); parser.setOptional (true);
scanner.scan (parser); scanner.scan (parser);
@ -789,20 +800,17 @@ namespace Compiler
if (optional && parser.isEmpty()) if (optional && parser.isEmpty())
break; break;
if (*iter != 'X') std::vector<Interpreter::Type_Code> tmp;
{
std::vector<Interpreter::Type_Code> tmp;
char type = parser.append (tmp); char type = parser.append (tmp);
if (type!=*iter) if (type!=*iter)
Generator::convert (tmp, type, *iter); Generator::convert (tmp, type, *iter);
stack.push (tmp); stack.push (tmp);
if (optional) if (optional)
++optionalCount; ++optionalCount;
}
} }
} }

View File

@ -21,7 +21,7 @@ namespace Compiler
s - Short <BR> s - Short <BR>
S - String, case preserved <BR> S - String, case preserved <BR>
x - Optional, ignored string argument x - Optional, ignored string argument
X - Optional, ignored integer argument X - Optional, ignored float argument
**/ **/
typedef std::string ScriptArgs; typedef std::string ScriptArgs;