summaryrefslogtreecommitdiff
path: root/src/script/script_scanner.hpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2011-09-08 09:48:52 +0000
committerrubidium <rubidium@openttd.org>2011-09-08 09:48:52 +0000
commit414c397000935162df4641dbe0c056b39d32205e (patch)
tree017dc3d94c6c765e1ba9fa28e46f536b7ec1b384 /src/script/script_scanner.hpp
parent92244f1663367a14051578daa4120c748b1ba9f4 (diff)
downloadopenttd-414c397000935162df4641dbe0c056b39d32205e.tar.xz
(svn r22904) -Codechange: add tar filename to file scanning
Diffstat (limited to 'src/script/script_scanner.hpp')
-rw-r--r--src/script/script_scanner.hpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/script/script_scanner.hpp b/src/script/script_scanner.hpp
index 2fba6ef5a..f50d05747 100644
--- a/src/script/script_scanner.hpp
+++ b/src/script/script_scanner.hpp
@@ -30,11 +30,17 @@ public:
*/
const char *GetMainScript() { return this->main_script; }
- /* virtual */ bool AddFile(const char *filename, size_t basepath_length);
+ /**
+ * Get the current tar file the ScanDir is currently tracking.
+ */
+ const char *GetTarFile() { return this->tar_file; }
+
+ /* virtual */ bool AddFile(const char *filename, size_t basepath_length, const char *tar_filename);
protected:
class Squirrel *engine; ///< The engine we're scanning with.
char *main_script; ///< The name of the current main script.
+ char *tar_file; ///< The filename of the tar for the main script.
};
#endif /* SCRIPT_SCANNER_HPP */