ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/include/shstr.h
(Generate patch)

Comparing deliantra/server/include/shstr.h (file contents):
Revision 1.9 by root, Mon Sep 4 11:07:59 2006 UTC vs.
Revision 1.16 by root, Mon May 28 21:15:56 2007 UTC

1/*
2 * This file is part of Crossfire TRT, the Multiplayer Online Role Playing Game.
3 *
4 * Copyright (©) 2005,2006,2007 Marc Alexander Lehmann / Robin Redeker / the Crossfire TRT team
5 *
6 * Crossfire TRT is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the Free
8 * Software Foundation; either version 2 of the License, or (at your option)
9 * any later version.
10 *
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 * for more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with Crossfire TRT; if not, write to the Free Software Foundation, Inc. 51
18 * Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 *
20 * The authors can be reached via e-mail to <crossfire@schmorp.de>
21 */
22
1#ifndef SHSTR_H__ 23#ifndef SHSTR_H__
2#define SHSTR_H__ 24#define SHSTR_H__
25
26#include <sstream>
3 27
4#include "util.h" 28#include "util.h"
5 29
6extern int buf_overflow (const char *buf1, const char *buf2, int bufsize); 30extern int buf_overflow (const char *buf1, const char *buf2, int bufsize);
7 31
27 } 51 }
28 52
29 int length () const 53 int length () const
30 { 54 {
31 return length (s); 55 return length (s);
56 }
57
58 // returns wether this shared string begins with the given prefix,
59 // used mainly for searched when users give only the start of a name.
60 bool begins_with (const char *prefix) const
61 {
62 int plen = strlen (prefix);
63 return !strncasecmp (s, prefix, plen) && length () >= plen;
32 } 64 }
33 65
34 static const char *find (const char *s); 66 static const char *find (const char *s);
35 static const char *intern (const char *s); 67 static const char *intern (const char *s);
36 68
82 else 114 else
83 s = intern (str); 115 s = intern (str);
84 116
85 return *this; 117 return *this;
86 } 118 }
119
120 bool operator ==(const shstr &b)
121 {
122 return s == b.s;
123 }
124
125 bool operator !=(const shstr &b)
126 {
127 return !(*this == b);
128 }
87}; 129};
88 130
89inline int strlen (const shstr &sh) 131inline int strlen (const shstr &sh)
90{ 132{
91 return sh.length (); 133 return sh.length ();
92} 134}
93 135
136inline int strcmp (const shstr &a, const shstr &b)
137{
138 // TODO: use this to find all the occurences of people using strcmp
139 // all uses should be bogus, as we should be never interested in
140 // comparing shstr's alphabetically
141#if 0
142 extern void do_not_use_strcmp_to_compare_shstr_values ();
143 do_not_use_strcmp_to_compare_shstr_values ();
144#endif
145 return a != b;
146}
147
148static std::ostream &operator <<(std::ostream &o, const shstr &sh)
149{
150 o.write (sh.s, sh.length ());
151 return o;
152}
153
154// only good for mass comparisons to shstr objects
155struct shstr_cmp
156{
157 const char *s;
158
159 explicit shstr_cmp (const char *s)
160 : s (shstr::find (s))
161 {
162 }
163
164 shstr_cmp (const shstr_cmp &sh)
165 : s (sh.s)
166 {
167 }
168
169 shstr_cmp &operator =(const shstr_cmp sh) { s = sh.s; return *this; }
170 operator const char *() const { return s; }
171};
172
94inline bool operator ==(const shstr &a, const shstr &b) 173inline bool operator ==(const shstr_cmp &a, const shstr &b)
95{ 174{
96 return a.s == b.s; 175 return a.s == b.s;
97} 176}
98 177
99inline bool operator !=(const shstr &a, const shstr &b) 178inline bool operator ==(const shstr &a, const shstr_cmp &b)
100{ 179{
101 return !(a == b); 180 return b == a;
102} 181}
103 182
104extern const shstr undead_name; /* Used in hit_player() in main.c */ 183extern const shstr undead_name; /* Used in hit_player() in main.c */
105 184
106#endif 185#endif

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines