/* * 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 . */ #include 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 (t >= 0 && (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 (temp >= 0 && (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; } } }