]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - radiant/missing.cpp
cf7c820ff0a2ecc28549eca9f8f4fdc3978c869c
[xonotic/netradiant.git] / radiant / missing.cpp
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 //
32 // Missing functions
33 //
34 // Leonardo Zide (leo@lokigames.com)
35 //
36
37 #if defined (__linux__) || defined (__APPLE__)
38
39 #include <stdio.h>
40 #include <unistd.h>
41 #include <sys/time.h>
42 #include <stdlib.h>
43 #include "missing.h"
44
45 bool CopyFile(const char *lpExistingFileName, const char *lpNewFileName)
46 {
47   FILE *src, *dst;
48   void* buf;
49   int l, ret = 0;
50   char realsrc[PATH_MAX], realdest[PATH_MAX];
51
52   realpath (lpExistingFileName, realsrc);
53   realpath (lpNewFileName, realdest);
54
55   src = fopen (realsrc, "rb");
56   if (!src)
57     return 0;
58   dst = fopen (realdest, "wb");
59   if (!dst)
60   {
61     fclose (src);
62     return 0;
63   }
64  
65   fseek (src, 0, SEEK_END);
66   l = ftell (src);
67   rewind (src);
68   buf = g_malloc (l);
69
70   if (buf != NULL)
71     if (fread (buf, l, 1, src) == 1)
72       if (fwrite (buf, l, 1, dst) == 1)
73         ret = 1;
74
75   g_free (buf);
76   fclose (src);
77   fclose (dst);
78
79   return ret;
80 }
81
82 int GetFullPathName(const char *lpFileName, int nBufferLength, char *lpBuffer, char **lpFilePart)
83 {
84   if (lpFileName[0] == '/')
85   {
86     strcpy (lpBuffer, lpFileName);
87     *lpFilePart = strrchr (lpBuffer, '/');
88     return strlen (lpBuffer);
89   }
90
91   if (getcwd (lpBuffer, nBufferLength) == NULL)
92     return 0;
93
94   strcat (lpBuffer, "/");
95   *lpFilePart = lpBuffer + strlen (lpBuffer);
96   strcat (lpBuffer, lpFileName);
97
98   char *scr = lpBuffer, *dst = lpBuffer;
99   for (int i = 0; (i < nBufferLength) && (*scr != 0); i++)
100   {
101     if (*scr == '/' && *(scr+1) == '.' && *(scr+2) == '.')
102     {
103       scr += 4;
104       while (dst != lpBuffer && *dst != '/')
105       {
106         dst--;
107         i--;
108       }
109     }
110
111     *dst = *scr;
112
113     scr++; dst++;
114   }
115   *dst = 0;
116
117   return strlen (lpBuffer);
118 }
119 /*
120 static void g_string_sprintfa_int (GString *string, const gchar *fmt, va_list args)
121 {
122   gchar *buffer;
123
124   buffer = g_strdup_vprintf (fmt, args);
125   g_string_append (string, buffer);
126   g_free (buffer);
127 }
128
129 const CString& CString::operator=(const char* lpsz)
130 {
131   g_string_assign (m_str, lpsz);
132   return *this;
133 }
134
135 const CString& CString::operator+=(const char* lpsz)
136 {
137   g_string_append (m_str, lpsz);
138   return *this;
139 }
140
141 CString::operator char*() const
142
143   return m_str->str;
144 }
145
146 void CString::Format(const char* fmt, ...)
147 {
148   va_list args;
149  
150   g_string_truncate (m_str, 0);
151  
152   va_start (args, fmt);
153   g_string_sprintfa_int (m_str, fmt, args);
154   va_end (args);
155 }
156
157 CString CString::Right(int nCount) const
158 {
159   if (nCount < 0)
160     nCount = 0;
161   else if (nCount > m_str->len)
162     nCount = m_str->len;
163
164   CString dest (&m_str->str[m_str->len-nCount]);
165   return dest;
166 }
167
168 CString CString::Left(int nCount) const
169 {
170   if (nCount < 0)
171     nCount = 0;
172   else if (nCount > m_str->len)
173     nCount = m_str->len;
174
175   CString dest;
176   dest.m_str = g_string_sized_new (nCount);
177   memcpy (dest.m_str->str, m_str->str, nCount);
178   dest.m_str->str[nCount] = 0;
179   return dest;
180 }
181
182 void CString::SetAt(int nIndex, char ch)
183 {
184   if (nIndex >= 0 && nIndex < m_str->len)
185     m_str->str[nIndex] = ch;
186 }
187
188 char CString::GetAt(int nIndex) const
189 {
190   if (nIndex >= 0 && nIndex < m_str->len)
191     return m_str->str[nIndex];
192   return 0;
193 }
194
195 char CString::operator[](int nIndex) const
196 {
197   if (nIndex >= 0 && nIndex < m_str->len)
198     return m_str->str[nIndex];
199   return 0;
200 }
201 */
202
203 #endif