mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-29 07:22:07 +00:00
Added %c (from int) and %p (from pointer) support to format()
This commit is contained in:
parent
fcc5f4b77b
commit
ee2ecf1450
1 changed files with 19 additions and 2 deletions
|
@ -913,7 +913,7 @@ begin:
|
||||||
|
|
||||||
switch (c)
|
switch (c)
|
||||||
{
|
{
|
||||||
// string and char formats
|
// string
|
||||||
case 's':
|
case 's':
|
||||||
{
|
{
|
||||||
if (argnum < 0 && haveargnums)
|
if (argnum < 0 && haveargnums)
|
||||||
|
@ -929,13 +929,30 @@ begin:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
// int formats
|
// pointer
|
||||||
|
case 'p':
|
||||||
|
{
|
||||||
|
if (argnum < 0 && haveargnums)
|
||||||
|
ThrowAbortException(X_FORMAT_ERROR, "Cannot mix explicit and implicit arguments.");
|
||||||
|
in_fmt = false;
|
||||||
|
// fail if something was found, but it's not a string
|
||||||
|
if (argnum >= countparam) ThrowAbortException(X_FORMAT_ERROR, "Not enough arguments for format.");
|
||||||
|
if (args[argnum].Type != REGT_POINTER) ThrowAbortException(X_FORMAT_ERROR, "Expected a pointer for format %s.", fmt_current.GetChars());
|
||||||
|
// append
|
||||||
|
output.AppendFormat(fmt_current.GetChars(), args[argnum].a);
|
||||||
|
if (!haveargnums) argnum = ++argauto;
|
||||||
|
else argnum = -1;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
// int formats (including char)
|
||||||
case 'd':
|
case 'd':
|
||||||
case 'i':
|
case 'i':
|
||||||
case 'u':
|
case 'u':
|
||||||
case 'x':
|
case 'x':
|
||||||
case 'X':
|
case 'X':
|
||||||
case 'o':
|
case 'o':
|
||||||
|
case 'c':
|
||||||
{
|
{
|
||||||
if (argnum < 0 && haveargnums)
|
if (argnum < 0 && haveargnums)
|
||||||
ThrowAbortException(X_FORMAT_ERROR, "Cannot mix explicit and implicit arguments.");
|
ThrowAbortException(X_FORMAT_ERROR, "Cannot mix explicit and implicit arguments.");
|
||||||
|
|
Loading…
Reference in a new issue