]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - libs/missing.h
set eol-style
[xonotic/netradiant.git] / libs / missing.h
1 /*
2 Copyright (c) 2001, Loki software, inc.
3 All rights reserved.
4
5 Redistribution and use in source and binary forms, with or without modification, 
6 are permitted provided that the following conditions are met:
7
8 Redistributions of source code must retain the above copyright notice, this list 
9 of conditions and the following disclaimer.
10
11 Redistributions in binary form must reproduce the above copyright notice, this
12 list of conditions and the following disclaimer in the documentation and/or
13 other materials provided with the distribution.
14
15 Neither the name of Loki software nor the names of its contributors may be used 
16 to endorse or promote products derived from this software without specific prior 
17 written permission. 
18
19 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' 
20 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 
21 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 
22 DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY 
23 DIRECT,INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 
24 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 
25 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON 
26 ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 
27 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 
28 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
29 */
30
31 #ifndef _MISSING_H_
32 #define _MISSING_H_
33
34 // NOTE TTimo
35 //   this goes along with str.h and provides various utility classes
36 //   and portability defines
37 //   the filename is a legecy issue, it would be better to clean that up
38 //   in a central 'portability' lib
39
40 #include <glib.h>
41 #include <string.h>
42
43 #ifdef _WIN32
44 #include <direct.h>
45 #include <io.h>
46
47 #define MyCopyFile(a,b) CopyFile(a,b,FALSE)
48
49 #define S_ISDIR(mode) (mode & _S_IFDIR)
50 #define R_OK 04
51 #define mymkdir(a,b) _mkdir(a)
52
53 #else
54
55 #define MyCopyFile CopyFile
56 #define mymkdir(a,b) mkdir(a,b)
57
58 #endif
59
60 #ifndef _WIN32
61
62 // LZ: very ugly hacks
63 inline int GetLastError () { return 0; };
64
65 // temp stuff
66 inline int GetPrivateProfileInt(char* a, char* b, int i, char* c) { return i; };
67 #define VERIFY(a) a;
68 int GetFullPathName(const char *lpFileName, int nBufferLength, char *lpBuffer, char **lpFilePart);
69 bool CopyFile(const char *lpExistingFileName, const char *lpNewFileName);
70
71 #ifndef APIENTRY
72 #define APIENTRY
73 #endif
74
75 int MemorySize(void *ptr);
76 #define _msize MemorySize
77
78 #define MK_LBUTTON          0x0001
79 #define MK_RBUTTON          0x0002
80 #define MK_SHIFT            0x0004
81 #define MK_CONTROL          0x0008
82 #define MK_MBUTTON          0x0010
83
84 #endif
85
86 #define CString Str
87 #include "str.h"
88
89 class CPtrArray
90 {
91 public:
92   CPtrArray ()
93   { m_ptrs = g_ptr_array_new (); };
94   virtual ~CPtrArray ()
95   { g_ptr_array_free (m_ptrs, TRUE); };
96   
97   void* operator[](int i) const
98   { return g_ptr_array_index (m_ptrs,i); };
99   void* GetAt(int i) const
100   { return g_ptr_array_index (m_ptrs,i); };
101   int GetSize () const
102   { return m_ptrs->len; };
103   void Add (void* ptr)
104   { g_ptr_array_add (m_ptrs, ptr); };
105   void RemoveAll ()
106   { g_ptr_array_set_size (m_ptrs, 0); };
107   void RemoveAt(int index, int count = 1)
108   {
109     if ((index < 0) || (count < 0) || (count + index > (int)m_ptrs->len))
110       return;
111     for (; count > 0; count--)
112       g_ptr_array_remove_index (m_ptrs, index);
113   }
114   void InsertAt(int nStartIndex, CPtrArray* pNewArray)
115   {
116     for (int i = 0; i < pNewArray->GetSize(); i++)
117       InsertAt(nStartIndex+i, pNewArray->GetAt(i));
118   }
119   void InsertAt(int nIndex, void* newElement, int nCount = 1)
120   {
121     if ((guint32)nIndex >= m_ptrs->len)
122     {
123       g_ptr_array_set_size (m_ptrs, nIndex + nCount);  // grow so nIndex is valid
124     }
125     else
126     {
127       // inserting in the middle of the array
128       int nOldSize = m_ptrs->len;
129       g_ptr_array_set_size (m_ptrs, m_ptrs->len + nCount);
130       // shift old data up to fill gap
131       memmove(&m_ptrs->pdata[nIndex+nCount], &m_ptrs->pdata[nIndex],
132         (nOldSize-nIndex) * sizeof(gpointer));
133       
134       memset(&m_ptrs->pdata[nIndex], 0, nCount * sizeof(gpointer));
135     }
136     
137     // insert new value in the gap
138     while (nCount--)
139       m_ptrs->pdata[nIndex++] = newElement;
140   }
141   void Copy(const CPtrArray& src)
142   {
143     g_ptr_array_set_size (m_ptrs, src.m_ptrs->len);
144     memcpy (m_ptrs->pdata, src.m_ptrs->pdata, m_ptrs->len*sizeof(gpointer));
145   }
146   
147 protected:
148   GPtrArray* m_ptrs;
149 };
150
151 typedef struct stringmap_s
152 {
153   char* key;
154   char* value;
155 } stringmap_t;
156
157 class CMapStringToString
158 {
159 public:
160   CMapStringToString ()
161   { m_map = g_ptr_array_new (); };
162   ~CMapStringToString ()
163   {
164     for (guint32 i = 0; i < m_map->len; i++)
165       FreeElement ((stringmap_t*)g_ptr_array_index (m_map,i));
166     g_ptr_array_set_size (m_map, 0);
167     g_ptr_array_free (m_map, TRUE);
168   };
169   void SetAt(char* key, char* newValue)
170   {
171     for (guint32 i = 0; i < m_map->len; i++)
172     {
173       stringmap_t* entry = (stringmap_t*)g_ptr_array_index (m_map,i);
174       if (strcmp (entry->key, key) == 0)
175       {
176         g_free (entry->value);
177         entry->value = g_strdup (newValue);
178         return;
179       }
180     }
181     stringmap_t* entry = (stringmap_t*)g_malloc (sizeof (stringmap_t));
182     entry->key = g_strdup (key);
183     entry->value = g_strdup (newValue);
184     g_ptr_array_add (m_map, entry);
185   }
186   
187   bool Lookup(const char* key, CString& rValue) const
188   {
189     for (guint32 i = 0; i < m_map->len; i++)
190     {
191       stringmap_t* entry = (stringmap_t*)g_ptr_array_index (m_map,i);
192       if (strcmp (entry->key, key) == 0)
193       {
194         rValue = entry->value;
195         return true;
196       }
197     }
198     return false;
199   }
200   
201 protected:
202   GPtrArray* m_map;
203   
204   void FreeElement(stringmap_t* elem)
205   { 
206     g_free (elem->key);
207     g_free (elem->value);
208     g_free (elem);
209   };
210 };
211
212 #endif // _MISSING_H_