[5653] | 1 | /* |
---|
| 2 | * ORXONOX - the hottest 3D action shooter ever to exist |
---|
| 3 | * > www.orxonox.net < |
---|
| 4 | * |
---|
| 5 | * |
---|
| 6 | * License notice: |
---|
| 7 | * |
---|
| 8 | * This program is free software; you can redistribute it and/or |
---|
| 9 | * modify it under the terms of the GNU General Public License |
---|
| 10 | * as published by the Free Software Foundation; either version 2 |
---|
| 11 | * of the License, or (at your option) any later version. |
---|
| 12 | * |
---|
| 13 | * This program is distributed in the hope that it will be useful, |
---|
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 16 | * GNU General Public License for more details. |
---|
| 17 | * |
---|
| 18 | * You should have received a copy of the GNU General Public License |
---|
| 19 | * along with this program; if not, write to the Free Software |
---|
| 20 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
---|
| 21 | * |
---|
| 22 | * Author: |
---|
| 23 | * Reto Grieder |
---|
| 24 | * Co-authors: |
---|
| 25 | * ... |
---|
| 26 | * |
---|
| 27 | */ |
---|
| 28 | |
---|
| 29 | #ifndef _Core_Resource_H__ |
---|
| 30 | #define _Core_Resource_H__ |
---|
| 31 | |
---|
| 32 | #include "CorePrereqs.h" |
---|
| 33 | |
---|
| 34 | #include <boost/shared_ptr.hpp> |
---|
| 35 | #include <OgreDataStream.h> |
---|
[6417] | 36 | #include <OgreStringVector.h> |
---|
[5653] | 37 | |
---|
| 38 | namespace orxonox |
---|
| 39 | { |
---|
| 40 | // Import the Ogre::DataStreamList |
---|
| 41 | using Ogre::DataStreamList; |
---|
| 42 | using Ogre::DataStreamListPtr; |
---|
[6417] | 43 | using Ogre::StringVector; |
---|
| 44 | using Ogre::StringVectorPtr; |
---|
[5653] | 45 | |
---|
| 46 | //! Stores basic information about a Resource from Ogre |
---|
| 47 | struct ResourceInfo |
---|
| 48 | { |
---|
| 49 | //! The file's fully qualified name |
---|
| 50 | std::string filename; |
---|
| 51 | //! Path name; separated by '/' and ending with '/' |
---|
| 52 | std::string path; |
---|
| 53 | //! Base filename |
---|
| 54 | std::string basename; |
---|
| 55 | //! Resource group the file is in |
---|
| 56 | std::string group; |
---|
| 57 | //! Uncompressed size |
---|
| 58 | size_t size; |
---|
| 59 | }; |
---|
| 60 | |
---|
[6417] | 61 | /** Provides simple functions to easily access the Ogre::ResourceGroupManager. |
---|
| 62 | The wrapper functions also avoid having to deal with resource groups. |
---|
[5653] | 63 | */ |
---|
| 64 | class _CoreExport Resource |
---|
| 65 | { |
---|
| 66 | // Docs by Ogre::ResourceGroupManager.h |
---|
| 67 | public: |
---|
[5929] | 68 | /** |
---|
[5653] | 69 | @brief |
---|
| 70 | Open a single resource by name and return a DataStream |
---|
| 71 | pointing at the source of the data. |
---|
| 72 | @param name |
---|
| 73 | The name of the resource to locate. |
---|
| 74 | Even if resource locations are added recursively, you |
---|
| 75 | must provide a fully qualified name to this method. |
---|
| 76 | @return |
---|
| 77 | Shared pointer to data stream containing the data. Will be |
---|
| 78 | destroyed automatically when no longer referenced. |
---|
[5929] | 79 | */ |
---|
[6417] | 80 | static DataStreamPtr open(const std::string& name); |
---|
[5653] | 81 | |
---|
[6417] | 82 | //! Similar to open(string, string, bool), but with a fileInfo struct |
---|
| 83 | static DataStreamPtr open(shared_ptr<ResourceInfo> fileInfo) |
---|
| 84 | { |
---|
| 85 | return open(fileInfo->filename); |
---|
| 86 | } |
---|
| 87 | |
---|
[5929] | 88 | /** |
---|
[5653] | 89 | @brief |
---|
| 90 | Open all resources matching a given pattern (which can contain |
---|
[6417] | 91 | the character '*' as a wildcard), and return a collection of |
---|
[5653] | 92 | DataStream objects on them. |
---|
| 93 | @param pattern |
---|
| 94 | The pattern to look for. If resource locations have been |
---|
| 95 | added recursively, subdirectories will be searched too so this |
---|
| 96 | does not need to be fully qualified. |
---|
| 97 | @return |
---|
| 98 | Shared pointer to a data stream list , will be |
---|
| 99 | destroyed automatically when no longer referenced |
---|
[5929] | 100 | */ |
---|
[6417] | 101 | static DataStreamListPtr openMulti(const std::string& pattern); |
---|
[5653] | 102 | |
---|
| 103 | /** |
---|
[6417] | 104 | Find out if the named file exists. |
---|
[5653] | 105 | @param filename |
---|
| 106 | Fully qualified name of the file to test for |
---|
| 107 | */ |
---|
[6417] | 108 | static bool exists(const std::string& name); |
---|
[5653] | 109 | |
---|
| 110 | /** |
---|
[6417] | 111 | Get struct with information about path and size. |
---|
[5653] | 112 | @param filename |
---|
| 113 | Fully qualified name of the file to test for |
---|
| 114 | */ |
---|
[6417] | 115 | static shared_ptr<ResourceInfo> getInfo(const std::string& name); |
---|
[5653] | 116 | |
---|
[6417] | 117 | /** |
---|
| 118 | Retrieves a list with all resources matching a certain pattern. |
---|
| 119 | @param pattern |
---|
| 120 | The pattern to look for. If resource locations have been |
---|
| 121 | added recursively, subdirectories will be searched too so this |
---|
| 122 | does not need to be fully qualified. |
---|
| 123 | */ |
---|
| 124 | static StringVectorPtr findResourceNames(const std::string& pattern); |
---|
| 125 | |
---|
[5653] | 126 | //! Name of the default resource group (usually "General") |
---|
| 127 | static std::string DEFAULT_GROUP; |
---|
| 128 | |
---|
| 129 | private: |
---|
| 130 | Resource(); |
---|
| 131 | ~Resource(); |
---|
| 132 | Resource(const Resource& instance); |
---|
| 133 | }; |
---|
| 134 | } |
---|
| 135 | |
---|
| 136 | #endif /* _Core_Resource_H__ */ |
---|