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

Comparing deliantra/server/common/shstr.C (file contents):
Revision 1.14 by root, Mon Sep 11 23:33:28 2006 UTC vs.
Revision 1.17 by root, Tue Sep 12 19:20:06 2006 UTC

8 8
9#include <glib.h> 9#include <glib.h>
10 10
11#include <tr1/unordered_set> 11#include <tr1/unordered_set>
12 12
13#include "shstr.h"
14#include "util.h" 13#include "global.h"
15 14
16typedef 15typedef std::tr1::unordered_set<const char *, str_hash, str_equal> HT;
17std::tr1::unordered_set < const char *,
18 str_hash,
19 str_equal >
20 HT;
21 16
22static HT 17static HT ht;
23 ht;
24 18
25static const char * 19static const char *
26makevec (const char *s) 20makevec (const char *s)
27{ 21{
28 int
29 len = strlen (s); 22 int len = strlen (s);
30 23
31 const char *
32 v = (const char *) (2 + (int *) g_slice_alloc (sizeof (int) * 2 + len + 1)); 24 const char *v = (const char *) (2 + (int *) g_slice_alloc (sizeof (int) * 2 + len + 1));
33 25
34 shstr::length (v) = len; 26 shstr::length (v) = len;
35 shstr::refcnt (v) = 1; 27 shstr::refcnt (v) = 1;
36 28
37 memcpy ((char *) v, s, len + 1); 29 memcpy ((char *) v, s, len + 1);
38 30
39 return v; 31 return v;
40} 32}
41 33
42const char * 34static const char *
43 shstr::null = makevec ("<nil>"); 35makenull ()
36{
37 const char *s = makevec ("(null)");
38 shstr::length (s) = 0;
39 return s;
40}
44 41
45// what weird misoptimisation is this again? 42const char *shstr::null = makenull ();
46const shstr undead_name ("undead");
47 43
48const char * 44const char *
49shstr::find (const char *s) 45shstr::find (const char *s)
50{ 46{
51 if (!s) 47 if (!s)
115 } 111 }
116 112
117 curpos = *i; 113 curpos = *i;
118} 114}
119 115
116shstr skill_names[NUM_SKILLS];
117
118// what weird misoptimisation is this again?
119const shstr undead_name ("undead");
120
120//TODO: this should of course not be here 121//TODO: this should of course not be here
121 122
122/* buf_overflow() - we don't want to exceed the buffer size of 123/* buf_overflow() - we don't want to exceed the buffer size of
123 * buf1 by adding on buf2! Returns true if overflow will occur. 124 * buf1 by adding on buf2! Returns true if overflow will occur.
124 */ 125 */

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines