2009-08-21 20:21:05 +00:00
|
|
|
/*
|
|
|
|
* This file is part of OpenTTD.
|
|
|
|
* OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
|
|
|
|
* OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
* See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2009-01-03 22:20:18 +00:00
|
|
|
/** @file tar_type.h Structs, typedefs and macros used for TAR file handling. */
|
|
|
|
|
2008-06-24 09:05:24 +00:00
|
|
|
#ifndef TAR_TYPE_H
|
2008-06-25 17:45:05 +00:00
|
|
|
#define TAR_TYPE_H
|
2008-06-24 09:05:24 +00:00
|
|
|
|
|
|
|
#include <map>
|
|
|
|
#include <string>
|
2020-12-06 20:11:50 +00:00
|
|
|
#include <array>
|
2008-06-24 09:05:24 +00:00
|
|
|
|
2012-01-03 20:26:05 +00:00
|
|
|
#include "fileio_type.h"
|
|
|
|
|
2008-06-24 09:05:24 +00:00
|
|
|
|
|
|
|
struct TarFileListEntry {
|
2020-12-06 20:11:50 +00:00
|
|
|
std::string tar_filename;
|
2008-06-24 09:05:24 +00:00
|
|
|
size_t size;
|
|
|
|
size_t position;
|
|
|
|
};
|
|
|
|
|
2020-12-06 20:11:50 +00:00
|
|
|
typedef std::map<std::string, std::string> TarList; ///< Map of tar file to tar directory.
|
2008-06-24 09:05:24 +00:00
|
|
|
typedef std::map<std::string, TarFileListEntry> TarFileList;
|
2020-12-06 20:11:50 +00:00
|
|
|
extern std::array<TarList, NUM_SUBDIRS> _tar_list;
|
2011-11-14 21:28:43 +00:00
|
|
|
extern TarFileList _tar_filelist[NUM_SUBDIRS];
|
2008-06-24 09:05:24 +00:00
|
|
|
|
2011-11-14 21:28:43 +00:00
|
|
|
#define FOR_ALL_TARS(tar, sd) for (tar = _tar_filelist[sd].begin(); tar != _tar_filelist[sd].end(); tar++)
|
2008-06-24 09:05:24 +00:00
|
|
|
|
|
|
|
#endif /* TAR_TYPE_H */
|