2011-08-07 21:33:32 +10:00
|
|
|
/* ScummVM - Graphic Adventure Engine
|
|
|
|
*
|
|
|
|
* ScummVM is the legal property of its developers, whose names
|
|
|
|
* are too numerous to list here. Please refer to the COPYRIGHT
|
|
|
|
* file distributed with this source distribution.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
|
|
|
|
//
|
|
|
|
// simple sscanf replacement to match scummvm usage patterns
|
|
|
|
//
|
|
|
|
|
|
|
|
bool scanInt(const char **in, va_list *ap, int max) {
|
2011-08-18 22:51:07 +10:00
|
|
|
while (**in && (**in == ' ' || **in == '0')) {
|
2011-08-07 21:33:32 +10:00
|
|
|
(*in)++;
|
|
|
|
}
|
|
|
|
|
|
|
|
int *arg = va_arg(*ap, int*);
|
|
|
|
char *end;
|
|
|
|
long n = strtol(*in, &end, 0);
|
|
|
|
|
|
|
|
bool err = false;
|
|
|
|
if (end == *in || (max > 0 && (end - *in) > max)) {
|
|
|
|
err = true;
|
2011-08-14 09:42:31 +10:00
|
|
|
} else {
|
2011-08-07 21:33:32 +10:00
|
|
|
*arg = (int)n;
|
|
|
|
*in = end;
|
|
|
|
}
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool scanHex(const char **in, va_list *ap) {
|
|
|
|
unsigned *arg = va_arg(*ap, unsigned*);
|
|
|
|
char *end;
|
|
|
|
long n = strtol(*in, &end, 16);
|
|
|
|
if (end == *in) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
*in = end;
|
|
|
|
*arg = (unsigned) n;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool scanString(const char **in, va_list *ap) {
|
|
|
|
char *arg = va_arg(*ap, char*);
|
|
|
|
while (**in && **in != ' ' && **in != '\n' && **in != '\t') {
|
|
|
|
*arg = **in;
|
|
|
|
arg++;
|
|
|
|
(*in)++;
|
|
|
|
}
|
|
|
|
*arg = '\0';
|
|
|
|
(*in)++;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool scanStringUntil(const char **in, va_list *ap, char c_end) {
|
|
|
|
char *arg = va_arg(*ap, char*);
|
|
|
|
while (**in && **in != c_end) {
|
|
|
|
*arg = **in;
|
|
|
|
*arg++;
|
|
|
|
(*in)++;
|
|
|
|
}
|
|
|
|
*arg = 0;
|
|
|
|
(*in)++;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool scanChar(const char **in, va_list *ap) {
|
|
|
|
char *arg = va_arg(*ap, char*);
|
|
|
|
if (**in) {
|
|
|
|
*arg = **in;
|
|
|
|
(*in)++;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" int simple_sscanf(const char *input, const char *format, ...) {
|
|
|
|
va_list ap;
|
|
|
|
int result = 0;
|
|
|
|
const char *next = input;
|
|
|
|
|
|
|
|
va_start(ap, format);
|
|
|
|
|
|
|
|
while (*format) {
|
|
|
|
if (*format == '%') {
|
|
|
|
format++;
|
|
|
|
int max = 0;
|
|
|
|
while (isdigit(*format)) {
|
|
|
|
max = (max * 10) + (*format - '0');
|
|
|
|
format++;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool err = false;
|
|
|
|
switch (*format++) {
|
|
|
|
case 'c':
|
|
|
|
err = scanChar(&next, &ap);
|
|
|
|
break;
|
|
|
|
case 'd':
|
|
|
|
case 'u':
|
|
|
|
err = scanInt(&next, &ap, max);
|
|
|
|
break;
|
|
|
|
case 'x':
|
|
|
|
err = scanHex(&next, &ap);
|
|
|
|
break;
|
|
|
|
case 's':
|
|
|
|
err = scanString(&next, &ap);
|
|
|
|
break;
|
|
|
|
case '[':
|
|
|
|
// assume %[^c]
|
|
|
|
if ('^' != *format) {
|
|
|
|
err = true;
|
2011-08-14 09:42:31 +10:00
|
|
|
} else {
|
2011-08-07 21:33:32 +10:00
|
|
|
format++;
|
|
|
|
if (*format && *(format+1) == ']') {
|
|
|
|
err = scanStringUntil(&next, &ap, *format);
|
|
|
|
format += 2;
|
2011-08-14 09:42:31 +10:00
|
|
|
} else {
|
2011-08-07 21:33:32 +10:00
|
|
|
err = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
err = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (err) {
|
|
|
|
break;
|
2011-08-14 09:42:31 +10:00
|
|
|
} else {
|
2011-08-07 21:33:32 +10:00
|
|
|
result++;
|
|
|
|
}
|
2011-08-14 09:42:31 +10:00
|
|
|
} else if (*format++ != *next++) {
|
2011-08-07 21:33:32 +10:00
|
|
|
// match input
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
va_end(ap);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(TEST)
|
|
|
|
int main(int argc, char *pArgv[]) {
|
|
|
|
int x,y,h;
|
|
|
|
char buffer[100];
|
|
|
|
unsigned u;
|
|
|
|
char c;
|
|
|
|
strcpy(buffer, "hello");
|
|
|
|
char *b = buffer;
|
|
|
|
|
|
|
|
// strcpy(buffer, "in the buffer something");
|
|
|
|
if (simple_sscanf("CAT 123x-10 0x100 FONT large 1 enough\n 123456.AUD $",
|
|
|
|
"CAT %dx%d %x FONT %[^\n] %06u.AUD %c",
|
|
|
|
&x, &y, &h, b, &u, &c) != 6) {
|
|
|
|
printf("Failed\n");
|
2011-08-14 09:42:31 +10:00
|
|
|
} else {
|
2011-08-07 21:33:32 +10:00
|
|
|
printf("Success %d %d %d %s %d '%c'\n", x, y, h, buffer, u, c);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|