1 | <html> |
---|
2 | <head> |
---|
3 | <title>OgreString.h Source File - OGRE Documentation</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> |
---|
4 | <link type="text/css" rel="stylesheet" href="style.css"> |
---|
5 | </head> |
---|
6 | |
---|
7 | <body> |
---|
8 | <!-- Generated by Doxygen 1.3.6 --> |
---|
9 | <div class="qindex"><a class="qindex" href="index.html">Main Page</a> | <a class="qindex" href="namespaces.html">Namespace List</a> | <a class="qindex" href="hierarchy.html">Class Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical List</a> | <a class="qindex" href="annotated.html">Class List</a> | <a class="qindex" href="files.html">File List</a> | <a class="qindex" href="namespacemembers.html">Namespace Members</a> | <a class="qindex" href="functions.html">Class Members</a> | <a class="qindex" href="globals.html">File Members</a> | <a class="qindex" href="pages.html">Related Pages</a></div> |
---|
10 | <h1>OgreString.h</h1><a href="OgreString_8h.html">Go to the documentation of this file.</a><div class="fragment"><pre>00001 <span class="comment">/*</span> |
---|
11 | 00002 <span class="comment">-----------------------------------------------------------------------------</span> |
---|
12 | 00003 <span class="comment">This source file is part of OGRE</span> |
---|
13 | 00004 <span class="comment"> (Object-oriented Graphics Rendering Engine)</span> |
---|
14 | 00005 <span class="comment">For the latest info, see http://www.ogre3d.org/</span> |
---|
15 | 00006 <span class="comment"></span> |
---|
16 | 00007 <span class="comment">Copyright (c) 2000-2005 The OGRE Team</span> |
---|
17 | 00008 <span class="comment">Also see acknowledgements in Readme.html</span> |
---|
18 | 00009 <span class="comment"></span> |
---|
19 | 00010 <span class="comment">This program is free software; you can redistribute it and/or modify it under</span> |
---|
20 | 00011 <span class="comment">the terms of the GNU Lesser General Public License as published by the Free Software</span> |
---|
21 | 00012 <span class="comment">Foundation; either version 2 of the License, or (at your option) any later</span> |
---|
22 | 00013 <span class="comment">version.</span> |
---|
23 | 00014 <span class="comment"></span> |
---|
24 | 00015 <span class="comment">This program is distributed in the hope that it will be useful, but WITHOUT</span> |
---|
25 | 00016 <span class="comment">ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS</span> |
---|
26 | 00017 <span class="comment">FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.</span> |
---|
27 | 00018 <span class="comment"></span> |
---|
28 | 00019 <span class="comment">You should have received a copy of the GNU Lesser General Public License along with</span> |
---|
29 | 00020 <span class="comment">this program; if not, write to the Free Software Foundation, Inc., 59 Temple</span> |
---|
30 | 00021 <span class="comment">Place - Suite 330, Boston, MA 02111-1307, USA, or go to</span> |
---|
31 | 00022 <span class="comment">http://www.gnu.org/copyleft/lesser.txt.</span> |
---|
32 | 00023 <span class="comment">-----------------------------------------------------------------------------</span> |
---|
33 | 00024 <span class="comment">*/</span> |
---|
34 | 00025 <span class="preprocessor">#ifndef _String_H__</span> |
---|
35 | 00026 <span class="preprocessor"></span><span class="preprocessor">#define _String_H__</span> |
---|
36 | 00027 <span class="preprocessor"></span> |
---|
37 | 00028 <span class="preprocessor">#include "<a class="code" href="OgrePrerequisites_8h.html">OgrePrerequisites.h</a>"</span> |
---|
38 | 00029 |
---|
39 | 00030 <span class="comment">// If we're using the GCC 3.1 C++ Std lib</span> |
---|
40 | 00031 <span class="preprocessor">#if OGRE_COMPILER == OGRE_COMPILER_GNUC && OGRE_COMP_VER >= 310</span> |
---|
41 | 00032 <span class="preprocessor"></span> |
---|
42 | 00033 <span class="preprocessor">#include <ext/hash_map></span> |
---|
43 | 00034 <span class="keyword">namespace </span>__gnu_cxx |
---|
44 | 00035 { |
---|
45 | 00036 <span class="keyword">template</span> <> <span class="keyword">struct </span>hash< Ogre::<a class="code" href="namespaceOgre.html#a425">_StringBase</a> > |
---|
46 | 00037 { |
---|
47 | 00038 size_t operator()( <span class="keyword">const</span> <a class="code" href="namespaceOgre.html#a425">Ogre::_StringBase</a> _stringBase )<span class="keyword"> const </span> |
---|
48 | 00039 <span class="keyword"> </span>{ |
---|
49 | 00040 <span class="comment">/* This is the PRO-STL way, but it seems to cause problems with VC7.1</span> |
---|
50 | 00041 <span class="comment"> and in some other cases (although I can't recreate it)</span> |
---|
51 | 00042 <span class="comment"> hash<const char*> H;</span> |
---|
52 | 00043 <span class="comment"> return H(_stringBase.c_str());</span> |
---|
53 | 00044 <span class="comment"> */</span> |
---|
54 | 00046 <span class="keyword">register</span> size_t ret = 0; |
---|
55 | 00047 <span class="keywordflow">for</span>( Ogre::_StringBase::const_iterator it = _stringBase.begin(); it != _stringBase.end(); ++it ) |
---|
56 | 00048 ret = 5 * ret + *it; |
---|
57 | 00049 |
---|
58 | 00050 <span class="keywordflow">return</span> ret; |
---|
59 | 00051 } |
---|
60 | 00052 }; |
---|
61 | 00053 } |
---|
62 | 00054 |
---|
63 | 00055 <span class="comment">// If we're using plain vanilla VC7 Std lib</span> |
---|
64 | 00056 <span class="preprocessor">#elif !defined( _STLP_HASH_FUN_H )</span> |
---|
65 | 00057 <span class="preprocessor"></span> |
---|
66 | 00058 <span class="preprocessor"># if _DEFINE_DEPRECATED_HASH_CLASSES</span> |
---|
67 | 00059 <span class="preprocessor"></span><span class="keyword">namespace </span>std |
---|
68 | 00060 # else |
---|
69 | <a name="l00061"></a><a class="code" href="namespacestdext.html">00061</a> namespace stdext |
---|
70 | 00062 # endif |
---|
71 | 00063 { |
---|
72 | <a name="l00064"></a><a class="code" href="namespacestdext.html#a0">00064</a> <span class="keyword">template</span><> size_t hash_compare< Ogre::_StringBase, std::less< Ogre::_StringBase > >::operator ()( <span class="keyword">const</span> <a class="code" href="namespaceOgre.html#a425">Ogre::_StringBase</a>& _stringBase ) <span class="keyword">const</span> |
---|
73 | 00065 { |
---|
74 | 00066 <span class="comment">/* This is the PRO-STL way, but it seems to cause problems with VC7.1</span> |
---|
75 | 00067 <span class="comment"> and in some other cases (although I can't recreate it)</span> |
---|
76 | 00068 <span class="comment"> hash<const char*> H;</span> |
---|
77 | 00069 <span class="comment"> return H(_stringBase.c_str());</span> |
---|
78 | 00070 <span class="comment"> */</span> |
---|
79 | 00072 <span class="keyword">register</span> size_t ret = 0; |
---|
80 | 00073 <span class="keywordflow">for</span>( Ogre::_StringBase::const_iterator it = _stringBase.begin(); it != _stringBase.end(); ++it ) |
---|
81 | 00074 ret = 5 * ret + *it; |
---|
82 | 00075 |
---|
83 | 00076 <span class="keywordflow">return</span> ret; |
---|
84 | 00077 } |
---|
85 | 00078 } |
---|
86 | 00079 |
---|
87 | 00080 <span class="preprocessor">#endif</span> |
---|
88 | 00081 <span class="preprocessor"></span> |
---|
89 | 00082 <span class="keyword">namespace </span>Ogre { |
---|
90 | 00083 |
---|
91 | <a name="l00085"></a><a class="code" href="classOgre_1_1StringUtil.html">00085</a> <span class="keyword">class </span><a class="code" href="OgrePlatform_8h.html#a16">_OgreExport</a> StringUtil |
---|
92 | 00086 { |
---|
93 | 00087 <span class="keyword">public</span>: |
---|
94 | <a name="l00088"></a><a class="code" href="classOgre_1_1StringUtil.html#Ogre_1_1StringUtilw0">00088</a> <span class="keyword">typedef</span> std::ostringstream <a class="code" href="classOgre_1_1StringUtil.html#Ogre_1_1StringUtilw0">StrStreamType</a>; |
---|
95 | 00089 |
---|
96 | 00097 <span class="keyword">static</span> <span class="keywordtype">void</span> trim( <a class="code" href="namespaceOgre.html#a426">String</a>& str, <span class="keywordtype">bool</span> left = <span class="keyword">true</span>, <span class="keywordtype">bool</span> right = <span class="keyword">true</span> ); |
---|
97 | 00098 |
---|
98 | 00107 <span class="keyword">static</span> std::vector< String > split( <span class="keyword">const</span> <a class="code" href="namespaceOgre.html#a426">String</a>& str, <span class="keyword">const</span> <a class="code" href="namespaceOgre.html#a426">String</a>& delims = <span class="stringliteral">"\t\n "</span>, <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> maxSplits = 0); |
---|
99 | 00108 |
---|
100 | 00111 <span class="keyword">static</span> <span class="keywordtype">void</span> toLowerCase( <a class="code" href="namespaceOgre.html#a426">String</a>& str ); |
---|
101 | 00112 |
---|
102 | 00115 <span class="keyword">static</span> <span class="keywordtype">void</span> toUpperCase( <a class="code" href="namespaceOgre.html#a426">String</a>& str ); |
---|
103 | 00116 |
---|
104 | 00122 <span class="keyword">static</span> <a class="code" href="namespaceOgre.html#a420">Real</a> toReal( <span class="keyword">const</span> <a class="code" href="namespaceOgre.html#a426">String</a>& str ); |
---|
105 | 00123 |
---|
106 | 00129 <span class="keyword">static</span> <span class="keywordtype">bool</span> startsWith(<span class="keyword">const</span> <a class="code" href="namespaceOgre.html#a426">String</a>& str, <span class="keyword">const</span> <a class="code" href="namespaceOgre.html#a426">String</a>& pattern, <span class="keywordtype">bool</span> lowerCase = <span class="keyword">true</span>); |
---|
107 | 00130 |
---|
108 | 00136 <span class="keyword">static</span> <span class="keywordtype">bool</span> endsWith(<span class="keyword">const</span> <a class="code" href="namespaceOgre.html#a426">String</a>& str, <span class="keyword">const</span> <a class="code" href="namespaceOgre.html#a426">String</a>& pattern, <span class="keywordtype">bool</span> lowerCase = <span class="keyword">true</span>); |
---|
109 | 00137 |
---|
110 | 00140 <span class="keyword">static</span> <a class="code" href="namespaceOgre.html#a426">String</a> standardisePath( <span class="keyword">const</span> <a class="code" href="namespaceOgre.html#a426">String</a> &init); |
---|
111 | 00141 |
---|
112 | 00147 <span class="keyword">static</span> <span class="keywordtype">void</span> splitFilename(<span class="keyword">const</span> <a class="code" href="namespaceOgre.html#a426">String</a>& qualifiedName, |
---|
113 | 00148 <a class="code" href="namespaceOgre.html#a426">String</a>& outBasename, <a class="code" href="namespaceOgre.html#a426">String</a>& outPath); |
---|
114 | 00149 |
---|
115 | 00155 <span class="keyword">static</span> <span class="keywordtype">bool</span> match(<span class="keyword">const</span> <a class="code" href="namespaceOgre.html#a426">String</a>& str, <span class="keyword">const</span> <a class="code" href="namespaceOgre.html#a426">String</a>& pattern, <span class="keywordtype">bool</span> caseSensitive = <span class="keyword">true</span>); |
---|
116 | 00156 |
---|
117 | 00157 |
---|
118 | 00158 |
---|
119 | 00159 |
---|
120 | 00160 |
---|
121 | <a name="l00162"></a><a class="code" href="classOgre_1_1StringUtil.html#Ogre_1_1StringUtils0">00162</a> <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="namespaceOgre.html#a426">String</a> BLANK; |
---|
122 | 00163 }; |
---|
123 | 00164 |
---|
124 | 00165 |
---|
125 | 00166 <span class="preprocessor">#if OGRE_COMPILER == OGRE_COMPILER_GNUC && OGRE_COMP_VER >= 310</span> |
---|
126 | 00167 <span class="preprocessor"></span> typedef ::__gnu_cxx::hash< _StringBase > <a class="code" href="namespaceOgre.html#a517">_StringHash</a>; |
---|
127 | 00168 <span class="preprocessor">#elif !defined( _STLP_HASH_FUN_H )</span> |
---|
128 | 00169 <span class="preprocessor"></span><span class="preprocessor"># if _DEFINE_DEPRECATED_HASH_CLASSES</span> |
---|
129 | 00170 <span class="preprocessor"></span> <span class="keyword">typedef</span> std::hash_compare< _StringBase, std::less< _StringBase > > <a class="code" href="namespaceOgre.html#a517">_StringHash</a>; |
---|
130 | 00171 <span class="preprocessor"># else</span> |
---|
131 | <a name="l00172"></a><a class="code" href="namespaceOgre.html#a517">00172</a> <span class="preprocessor"></span> <span class="keyword">typedef</span> stdext::hash_compare< _StringBase, std::less< _StringBase > > <a class="code" href="namespaceOgre.html#a517">_StringHash</a>; |
---|
132 | 00173 <span class="preprocessor"># endif</span> |
---|
133 | 00174 <span class="preprocessor"></span><span class="preprocessor">#else</span> |
---|
134 | 00175 <span class="preprocessor"></span> <span class="keyword">typedef</span> std::hash< _StringBase > <a class="code" href="namespaceOgre.html#a517">_StringHash</a>; |
---|
135 | 00176 <span class="preprocessor">#endif</span> |
---|
136 | 00177 <span class="preprocessor"></span> |
---|
137 | 00178 } <span class="comment">// namespace Ogre</span> |
---|
138 | 00179 |
---|
139 | 00180 <span class="preprocessor">#endif // _String_H__</span> |
---|
140 | </pre></div><hr> |
---|
141 | <p> |
---|
142 | Copyright © 2000-2005 by The OGRE Team<br /> |
---|
143 | <!--Creative Commons License--><a rel="license" href="http://creativecommons.org/licenses/by-sa/2.5/"><img alt="Creative Commons License" border="0" src="http://creativecommons.org/images/public/somerights20.png"/></a><br/> |
---|
144 | This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/2.5/">Creative Commons Attribution-ShareAlike 2.5 License</a>.<br/> |
---|
145 | <!--/Creative Commons License--><!-- <rdf:RDF xmlns="http://web.resource.org/cc/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> |
---|
146 | <Work rdf:about=""> |
---|
147 | <license rdf:resource="http://creativecommons.org/licenses/by-sa/2.5/" /> |
---|
148 | <dc:type rdf:resource="http://purl.org/dc/dcmitype/Text" /> |
---|
149 | </Work> |
---|
150 | <License rdf:about="http://creativecommons.org/licenses/by-sa/2.5/"><permits rdf:resource="http://web.resource.org/cc/Reproduction"/><permits rdf:resource="http://web.resource.org/cc/Distribution"/><requires rdf:resource="http://web.resource.org/cc/Notice"/><requires rdf:resource="http://web.resource.org/cc/Attribution"/><permits rdf:resource="http://web.resource.org/cc/DerivativeWorks"/><requires rdf:resource="http://web.resource.org/cc/ShareAlike"/></License></rdf:RDF> --> |
---|
151 | |
---|
152 | Last modified Sun Feb 12 12:59:53 2006 |
---|
153 | </p> |
---|
154 | </body> |
---|
155 | </html> |
---|