summaryrefslogtreecommitdiff
path: root/src/utils/files.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-01-06 14:47:39 +0300
committerAndrei Karas <akaras@inbox.ru>2014-01-06 14:47:39 +0300
commitb7ee14cadb1e5675f7e36565aec1fe39e55ccc34 (patch)
treed92328178a64cd15891802ced4a0db5a0a751e11 /src/utils/files.cpp
parent3cb15a8f777bd9907d8dc4ba57774c762ec1f67f (diff)
downloadplus-b7ee14cadb1e5675f7e36565aec1fe39e55ccc34.tar.gz
plus-b7ee14cadb1e5675f7e36565aec1fe39e55ccc34.tar.bz2
plus-b7ee14cadb1e5675f7e36565aec1fe39e55ccc34.tar.xz
plus-b7ee14cadb1e5675f7e36565aec1fe39e55ccc34.zip
add ability to inlude config parts from subdirs for items, monsters, npcs.
Diffstat (limited to 'src/utils/files.cpp')
-rw-r--r--src/utils/files.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/utils/files.cpp b/src/utils/files.cpp
index 72a4b2cb5..9abf13593 100644
--- a/src/utils/files.cpp
+++ b/src/utils/files.cpp
@@ -207,3 +207,14 @@ void Files::getFiles(const std::string &path, StringVect &list)
}
PhysFs::freeList(fonts);
}
+
+void Files::getFilesWithDir(const std::string &path, StringVect &list)
+{
+ char **fonts = PhysFs::enumerateFiles(path.c_str());
+ for (char **i = fonts; *i; i++)
+ {
+ if (!PhysFs::isDirectory((path + *i).c_str()))
+ list.push_back(path + *i);
+ }
+ PhysFs::freeList(fonts);
+}