2019-10-21 19:36:05 +00:00
|
|
|
// cmdlib.h
|
|
|
|
|
|
|
|
#ifndef __CMDLIB__
|
|
|
|
#define __CMDLIB__
|
|
|
|
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include "zstring.h"
|
|
|
|
|
2020-01-06 01:41:47 +00:00
|
|
|
#if !defined(GUID_DEFINED)
|
|
|
|
#define GUID_DEFINED
|
|
|
|
typedef struct _GUID
|
|
|
|
{
|
|
|
|
uint32_t Data1;
|
|
|
|
uint16_t Data2;
|
|
|
|
uint16_t Data3;
|
|
|
|
uint8_t Data4[8];
|
|
|
|
} GUID;
|
|
|
|
#endif
|
|
|
|
|
2019-10-21 19:36:05 +00:00
|
|
|
template <typename T, size_t N>
|
|
|
|
char(&_ArraySizeHelper(T(&array)[N]))[N];
|
|
|
|
|
|
|
|
#define countof( array ) (sizeof( _ArraySizeHelper( array ) ))
|
|
|
|
|
|
|
|
// the dec offsetof macro doesnt work very well...
|
|
|
|
#define myoffsetof(type,identifier) ((size_t)&((type *)alignof(type))->identifier - alignof(type))
|
|
|
|
|
|
|
|
bool FileExists (const char *filename);
|
|
|
|
bool DirExists(const char *filename);
|
|
|
|
bool DirEntryExists (const char *pathname, bool *isdir = nullptr);
|
2020-01-03 16:08:41 +00:00
|
|
|
bool GetFileInfo(const char* pathname, size_t* size, time_t* time);
|
2019-10-21 19:36:05 +00:00
|
|
|
|
|
|
|
extern FString progdir;
|
|
|
|
|
2019-12-22 19:55:47 +00:00
|
|
|
static void inline FixPathSeperator (FString &path) { path.ReplaceChars('\\', '/'); }
|
|
|
|
|
2019-10-21 19:36:05 +00:00
|
|
|
void DefaultExtension (FString &path, const char *extension);
|
2019-12-11 00:11:35 +00:00
|
|
|
void NormalizeFileName(FString &str);
|
2019-10-21 19:36:05 +00:00
|
|
|
|
|
|
|
FString ExtractFilePath (const char *path);
|
|
|
|
FString ExtractFileBase (const char *path, bool keep_extension=false);
|
2020-01-27 20:39:15 +00:00
|
|
|
FString StripExtension(const char* path);
|
2019-10-21 19:36:05 +00:00
|
|
|
|
|
|
|
struct FScriptPosition;
|
|
|
|
bool IsNum (const char *str); // [RH] added
|
|
|
|
|
|
|
|
bool CheckWildcards (const char *pattern, const char *text);
|
|
|
|
|
2019-12-22 19:55:47 +00:00
|
|
|
void FormatGUID (char *buffer, size_t buffsize, const GUID &guid);
|
|
|
|
|
|
|
|
const char *myasctime ();
|
|
|
|
|
2019-10-21 19:36:05 +00:00
|
|
|
int strbin (char *str);
|
|
|
|
FString strbin1 (const char *start);
|
|
|
|
|
|
|
|
void CreatePath(const char * fn);
|
|
|
|
|
|
|
|
FString ExpandEnvVars(const char *searchpathstring);
|
|
|
|
FString NicePath(const char *path);
|
|
|
|
|
|
|
|
struct FFileList
|
|
|
|
{
|
|
|
|
FString Filename;
|
|
|
|
bool isDirectory;
|
|
|
|
};
|
|
|
|
|
|
|
|
bool IsAbsPath(const char*);
|
|
|
|
|
2020-02-09 12:26:51 +00:00
|
|
|
inline int32_t Scale(int32_t a, int32_t b, int32_t c)
|
|
|
|
{
|
|
|
|
return (int32_t)(((int64_t)a * b) / c);
|
|
|
|
}
|
2019-10-21 19:36:05 +00:00
|
|
|
|
|
|
|
#endif
|