dosbox-wii/src/misc/support.cpp

159 lines
3.5 KiB
C++
Raw Normal View History

2009-05-02 23:03:37 +02:00
/*
2009-05-03 00:28:34 +02:00
* Copyright (C) 2002-2007 The DOSBox Team
2009-05-02 23:03:37 +02:00
*
* 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
2009-05-03 00:02:15 +02:00
* GNU General Public License for more details.
2009-05-02 23:03:37 +02:00
*
* 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
2009-05-03 00:37:32 +02:00
/* $Id: support.cpp,v 1.32 2007/06/12 20:22:09 c2woody Exp $ */
2009-05-02 23:03:37 +02:00
#include <string.h>
#include <stdlib.h>
#include <assert.h>
#include <ctype.h>
#include <stdarg.h>
#include <stdio.h>
#include <string.h>
#include "dosbox.h"
2009-05-02 23:43:00 +02:00
#include "debug.h"
2009-05-02 23:03:37 +02:00
#include "support.h"
2009-05-02 23:12:18 +02:00
#include "video.h"
2009-05-02 23:03:37 +02:00
/*
Ripped some source from freedos for this one.
*/
/*
* replaces all instances of character o with character c
*/
void strreplace(char * str,char o,char n) {
while (*str) {
if (*str==o) *str=n;
str++;
}
}
char *ltrim(char *str) {
2009-05-03 00:08:43 +02:00
while (*str && isspace(*reinterpret_cast<unsigned char*>(str))) str++;
2009-05-03 00:02:15 +02:00
return str;
2009-05-02 23:03:37 +02:00
}
2009-05-03 00:02:15 +02:00
char *rtrim(char *str) {
2009-05-02 23:03:37 +02:00
char *p;
p = strchr(str, '\0');
2009-05-03 00:08:43 +02:00
while (--p >= str && isspace(*reinterpret_cast<unsigned char*>(p)));
2009-05-02 23:03:37 +02:00
p[1] = '\0';
2009-05-03 00:02:15 +02:00
return str;
2009-05-02 23:03:37 +02:00
}
char *trim(char *str) {
2009-05-03 00:02:15 +02:00
return ltrim(rtrim(str));
2009-05-02 23:03:37 +02:00
}
2009-05-03 00:28:34 +02:00
bool ScanCMDBool(char * cmd,char const * const check) {
2009-05-02 23:03:37 +02:00
char * scan=cmd;size_t c_len=strlen(check);
2009-05-02 23:35:44 +02:00
while ((scan=strchr(scan,'/'))) {
2009-05-02 23:03:37 +02:00
/* found a / now see behind it */
scan++;
2009-05-03 00:02:15 +02:00
if (strncasecmp(scan,check,c_len)==0 && (scan[c_len]==' ' || scan[c_len]=='\t' || scan[c_len]=='/' || scan[c_len]==0)) {
2009-05-02 23:03:37 +02:00
/* Found a math now remove it from the string */
memmove(scan-1,scan+c_len,strlen(scan+c_len)+1);
trim(scan-1);
return true;
}
}
return false;
}
/* This scans the command line for a remaining switch and reports it else returns 0*/
char * ScanCMDRemain(char * cmd) {
char * scan,*found;;
2009-05-02 23:35:44 +02:00
if ((scan=found=strchr(cmd,'/'))) {
2009-05-03 00:08:43 +02:00
while ( *scan && !isspace(*reinterpret_cast<unsigned char*>(scan)) ) scan++;
2009-05-02 23:03:37 +02:00
*scan=0;
return found;
} else return 0;
}
2009-05-03 00:02:15 +02:00
char * StripWord(char *&line) {
char * scan=line;
scan=ltrim(scan);
if (*scan=='"') {
char * end_quote=strchr(scan+1,'"');
if (end_quote) {
*end_quote=0;
line=ltrim(++end_quote);
return (scan+1);
}
2009-05-02 23:03:37 +02:00
}
2009-05-03 00:02:15 +02:00
char * begin=scan;
for (;char c=*scan;scan++) {
2009-05-03 00:08:43 +02:00
if (isspace(*reinterpret_cast<unsigned char*>(&c))) {
2009-05-03 00:02:15 +02:00
*scan++=0;
break;
}
2009-05-02 23:03:37 +02:00
}
2009-05-03 00:02:15 +02:00
line=scan;
return begin;
}
Bits ConvDecWord(char * word) {
bool negative=false;Bitu ret=0;
if (*word=='-') {
negative=true;
word++;
}
while (char c=*word) {
ret*=10;
ret+=c-'0';
word++;
2009-05-02 23:03:37 +02:00
}
2009-05-03 00:02:15 +02:00
if (negative) return 0-ret;
else return ret;
}
Bits ConvHexWord(char * word) {
Bitu ret=0;
2009-05-03 00:08:43 +02:00
while (char c=toupper(*reinterpret_cast<unsigned char*>(word))) {
2009-05-03 00:02:15 +02:00
ret*=16;
if (c>='0' && c<='9') ret+=c-'0';
else if (c>='A' && c<='F') ret+=10+(c-'A');
word++;
2009-05-02 23:03:37 +02:00
}
2009-05-03 00:02:15 +02:00
return ret;
2009-05-02 23:03:37 +02:00
}
2009-05-03 00:02:15 +02:00
double ConvDblWord(char * word) {
return 0.0f;
}
2009-05-02 23:43:00 +02:00
static char buf[1024]; //greater scope as else it doesn't always gets thrown right (linux/gcc2.95)
2009-05-03 00:28:34 +02:00
void E_Exit(const char * format,...) {
2009-05-02 23:43:00 +02:00
#if C_DEBUG && C_HEAVY_DEBUG
DEBUG_HeavyWriteLogInstruction();
#endif
2009-05-02 23:03:37 +02:00
va_list msg;
va_start(msg,format);
vsprintf(buf,format,msg);
va_end(msg);
2009-05-02 23:43:00 +02:00
strcat(buf,"\n");
2009-05-02 23:03:37 +02:00
2009-05-02 23:20:05 +02:00
throw(buf);
}