X-Git-Url: https://jasonwoof.com/gitweb/?p=vor.git;a=blobdiff_plain;f=file.c;h=3a02b81f38fbd0c958416ece2d7a0ba09a3a5d92;hp=ee14299b6df62773a055330d11b2f4fa8cb7b0b9;hb=1d9107a3d43b3f57087edee14f1eaf7c1f3db54e;hpb=af711b4e66c96c112086a442ea09094643bd8d71 diff --git a/file.c b/file.c index ee14299..3a02b81 100644 --- a/file.c +++ b/file.c @@ -19,7 +19,9 @@ #include #include #include -#include +#ifndef WIN32 +# include +#endif #include #include @@ -27,11 +29,42 @@ #include "config.h" #include "file.h" +#ifdef WIN32 + +#define DATA_DIR "data\\" + +char * +add_data_path(char *filename) +{ + char *s; + if(!filename) return filename; + s = malloc(sizeof(DATA_DIR)+strlen(filename)); + if(s) { + strcpy(s, DATA_DIR); + strcpy(s+sizeof(DATA_DIR)-1, filename); + } + return s; +} + +bool +find_files(void) +{ + return true; +} + +FILE *open_score_file(char *mode) +{ + return fopen("scores", mode); +} + + +#else /* !WIN32 */ + + char *g_data_dir; char *g_score_file; -mode_t g_score_mask; -char * +static char * add_path(char *path, char *file) { char *s; @@ -54,7 +87,7 @@ add_data_path(char *filename) return add_path(g_data_dir, filename); } -int +static bool is_dir(char *dirname) { struct stat buf; @@ -62,21 +95,13 @@ is_dir(char *dirname) return S_ISDIR(buf.st_mode); } -int -is_file(char *filename) -{ - struct stat buf; - stat(filename, &buf); - return S_ISREG(buf.st_mode); -} - -int +static bool find_data_dir(void) { int i; char *data_options[3] = { - "./data", getenv("VOR_DATA"), + "data", DATA_PREFIX }; @@ -93,7 +118,7 @@ find_data_dir(void) return false; } -int +static bool find_score_file(void) { char *dir, *s; @@ -105,30 +130,21 @@ find_score_file(void) s = add_path(dir, ".vor-scores"); if(s) { g_score_file = s; - g_score_mask = 0177; - return is_file(s); + return true; } else return false; } -int +bool find_files(void) { - int r; - r = find_data_dir(); - find_score_file(); - return r; + return find_data_dir() && find_score_file(); } FILE * open_score_file(char *mode) { - mode_t old_mask; - FILE *f; - if(!g_score_file) return NULL; - - old_mask = umask(g_score_mask); - f = fopen(g_score_file, mode); - umask(old_mask); - return f; + return fopen(g_score_file, mode); } + +#endif /* !WIN32 */