mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-01-22 19:55:23 +00:00
110 lines
3.1 KiB
C++
110 lines
3.1 KiB
C++
/*
|
|
* Descent 3
|
|
* Copyright (C) 2024 Parallax Software
|
|
*
|
|
* 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 3 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, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include <string.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <stdarg.h>
|
|
|
|
void _splitpath(const char *path, char *drive, char *dir, char *fname, char *ext);
|
|
int _vsnprintf(char *buffer, size_t count, const char *format, va_list argptr);
|
|
int stricmp(const char *string1, const char *string2);
|
|
|
|
void _splitpath(const char *srcPath, char *drive, char *path, char *filename, char *ext) {
|
|
int pathStart = -1;
|
|
int pathEnd = -1;
|
|
int fileStart = -1;
|
|
int fileEnd = -1;
|
|
int extStart = -1;
|
|
int extEnd = -1;
|
|
|
|
int totalLen = strlen(srcPath);
|
|
|
|
if (drive)
|
|
*drive = '\0';
|
|
|
|
// Check for an extension
|
|
///////////////////////////////////////
|
|
int t = totalLen - 1;
|
|
while ((srcPath[t] != '.') && (srcPath[t] != '/') && (t >= 0))
|
|
t--;
|
|
// see if we are at an extension
|
|
if ((t >= 0) && (srcPath[t] == '.')) {
|
|
// we have an extension
|
|
extStart = t;
|
|
extEnd = totalLen - 1;
|
|
if (ext) {
|
|
strncpy(ext, &(srcPath[extStart]), extEnd - extStart + 1);
|
|
ext[extEnd - extStart + 1] = '\0';
|
|
}
|
|
} else {
|
|
// no extension
|
|
if (ext)
|
|
ext[0] = '\0';
|
|
}
|
|
|
|
// Check for file name
|
|
////////////////////////////////////
|
|
int temp = (extStart != -1) ? (extStart) : (totalLen - 1);
|
|
while ((srcPath[temp] != '/') && (temp >= 0))
|
|
temp--;
|
|
if (temp < 0)
|
|
temp = 0;
|
|
if (srcPath[temp] == '/') {
|
|
// we have a file
|
|
fileStart = temp + 1;
|
|
if (extStart != -1)
|
|
fileEnd = extStart - 1;
|
|
else
|
|
fileEnd = totalLen - 1;
|
|
if (filename) {
|
|
strncpy(filename, &(srcPath[fileStart]), fileEnd - fileStart + 1);
|
|
filename[fileEnd - fileStart + 1] = '\0';
|
|
}
|
|
pathStart = 0;
|
|
pathEnd = fileStart - 2;
|
|
// Copy the rest into the path name
|
|
if (path) {
|
|
strncpy(path, &(srcPath[pathStart]), pathEnd - pathStart + 1);
|
|
path[pathEnd - pathStart + 1] = 0;
|
|
}
|
|
} else {
|
|
// only file, no path
|
|
fileStart = 0;
|
|
if (extStart != -1)
|
|
fileEnd = extStart - 1;
|
|
else
|
|
fileEnd = totalLen - 1;
|
|
|
|
if (filename) {
|
|
strncpy(filename, &(srcPath[fileStart]), fileEnd - fileStart + 1);
|
|
filename[fileEnd - fileStart + 1] = 0;
|
|
}
|
|
|
|
// Only file no path
|
|
if (path) {
|
|
path[0] = 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
int _vsnprintf(char *buffer, size_t count, const char *format, va_list argptr) {
|
|
return vsnprintf(buffer, count, format, argptr);
|
|
}
|
|
|
|
int stricmp(const char *string1, const char *string2) { return strcasecmp(string1, string2); } |