blob: 5d941b69c9325715a13b2aab1a271f8340d082ed (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
/*
Copyright (c) 2017,2018 Regents of the University of Minnesota.
All Rights Reserved.
See corresponding header file for details.
*/
#include "platform.h"
#include "mingfx_config.h"
#include <vector>
#include <sstream>
#ifdef WIN32
#include <windows.h>
#else
#include <sys/stat.h>
#endif
namespace mingfx {
bool Platform::FileExists(const std::string &filename) {
#ifdef WIN32
LPCTSTR szPath = (LPCTSTR)filename.c_str();
DWORD dwAttrib = GetFileAttributes(szPath);
return (dwAttrib != INVALID_FILE_ATTRIBUTES &&
!(dwAttrib & FILE_ATTRIBUTE_DIRECTORY));
#else
struct stat buf;
return (stat(filename.c_str(), &buf) == 0);
#endif
}
std::string Platform::FindFile(const std::string &basename, const std::vector<std::string> &searchpath) {
for (int i=0; i<searchpath.size(); i++) {
std::string fname = searchpath[i] + "/" + basename;
if (Platform::FileExists(fname)) {
return fname;
}
}
return basename;
}
std::string Platform::FindFile(const std::string &basename, const std::string &searchpath) {
std::vector<std::string> paths;
std::stringstream ss(searchpath);
std::string path;
while (ss >> path) {
paths.push_back(path);
if (ss.peek() == ';')
ss.ignore();
}
return FindFile(basename, paths);
}
std::string Platform::FindMinGfxDataFile(const std::string &basename) {
std::vector<std::string> searchpath;
searchpath.push_back(".");
searchpath.push_back("data");
searchpath.push_back(MINGFX_DATA_DIR_INSTALL);
searchpath.push_back(MINGFX_DATA_DIR_BUILD);
return FindFile(basename, searchpath);
}
std::string Platform::FindMinGfxShaderFile(const std::string &basename) {
std::vector<std::string> searchpath;
searchpath.push_back(".");
searchpath.push_back("shaders");
searchpath.push_back(MINGFX_SHADERS_DIR_INSTALL);
searchpath.push_back(MINGFX_SHADERS_DIR_BUILD);
return FindFile(basename, searchpath);
}
} // end namespace
|