aboutsummaryrefslogtreecommitdiff
path: root/sp/src/public/UnicodeFileHelpers.cpp
diff options
context:
space:
mode:
authorJørgen P. Tjernø <[email protected]>2013-12-02 19:31:46 -0800
committerJørgen P. Tjernø <[email protected]>2013-12-02 19:46:31 -0800
commitf56bb35301836e56582a575a75864392a0177875 (patch)
treede61ddd39de3e7df52759711950b4c288592f0dc /sp/src/public/UnicodeFileHelpers.cpp
parentMark some more files as text. (diff)
downloadsource-sdk-2013-f56bb35301836e56582a575a75864392a0177875.tar.xz
source-sdk-2013-f56bb35301836e56582a575a75864392a0177875.zip
Fix line endings. WHAMMY.
Diffstat (limited to 'sp/src/public/UnicodeFileHelpers.cpp')
-rw-r--r--sp/src/public/UnicodeFileHelpers.cpp480
1 files changed, 240 insertions, 240 deletions
diff --git a/sp/src/public/UnicodeFileHelpers.cpp b/sp/src/public/UnicodeFileHelpers.cpp
index 57374f15..64518274 100644
--- a/sp/src/public/UnicodeFileHelpers.cpp
+++ b/sp/src/public/UnicodeFileHelpers.cpp
@@ -1,240 +1,240 @@
-//========= Copyright Valve Corporation, All rights reserved. ============//
-//
-// Purpose:
-//
-//=============================================================================//
-
-#include <stdlib.h>
-#include <ctype.h>
-#include "utlbuffer.h"
-
-// memdbgon must be the last include file in a .cpp file!!!
-#include "tier0/memdbgon.h"
-
-//-----------------------------------------------------------------------------
-// Purpose: Advances until non-whitespace hit
-//-----------------------------------------------------------------------------
-ucs2 *AdvanceOverWhitespace(ucs2 *Start)
-{
- while (*Start != 0 && iswspace(*Start))
- {
- Start++;
- }
-
- return Start;
-}
-
-//-----------------------------------------------------------------------------
-// Purpose:
-//-----------------------------------------------------------------------------
-ucs2 *ReadUnicodeToken(ucs2 *start, ucs2 *token, int tokenBufferSize, bool &quoted)
-{
- // skip over any whitespace
- start = AdvanceOverWhitespace(start);
- quoted = false;
- *token = 0;
-
- if (!*start)
- {
- return start;
- }
-
- // check to see if it's a quoted string
- if (*start == '\"')
- {
- quoted = true;
- // copy out the string until we hit an end quote
- start++;
- int count = 0;
- while (*start && *start != '\"' && count < tokenBufferSize-1)
- {
- // check for special characters
- if (*start == '\\' && *(start+1) == 'n')
- {
- start++;
- *token = '\n';
- }
- else if (*start == '\\' && *(start+1) == '\"')
- {
- start++;
- *token = '\"';
- }
- else
- {
- *token = *start;
- }
-
- start++;
- token++;
- count++;
- }
-
- if (*start == '\"')
- {
- start++;
- }
- }
- else
- {
- // copy out the string until we hit a whitespace
- int count = 0;
- while (*start && !iswspace(*start) && count < tokenBufferSize-1)
- {
- // no checking for special characters if it's not a quoted string
- *token = *start;
-
- start++;
- token++;
- count++;
- }
- }
-
- *token = 0;
- return start;
-}
-
-//-----------------------------------------------------------------------------
-// Purpose: Same as above but no translation of \n
-//-----------------------------------------------------------------------------
-ucs2 *ReadUnicodeTokenNoSpecial(ucs2 *start, ucs2 *token, int tokenBufferSize, bool &quoted)
-{
- // skip over any whitespace
- start = AdvanceOverWhitespace(start);
- quoted = false;
- *token = 0;
-
- if (!*start)
- {
- return start;
- }
-
- // check to see if it's a quoted string
- if (*start == '\"')
- {
- quoted = true;
- // copy out the string until we hit an end quote
- start++;
- int count = 0;
- while (*start && *start != '\"' && count < tokenBufferSize-1)
- {
- // check for special characters
- /*
- if (*start == '\\' && *(start+1) == 'n')
- {
- start++;
- *token = '\n';
- }
- else
- */
- if (*start == '\\' && *(start+1) == '\"')
- {
- start++;
- *token = '\"';
- }
- else
- {
- *token = *start;
- }
-
- start++;
- token++;
- count++;
- }
-
- if (*start == '\"')
- {
- start++;
- }
- }
- else
- {
- // copy out the string until we hit a whitespace
- int count = 0;
- while (*start && !iswspace(*start) && count < tokenBufferSize-1)
- {
- // no checking for special characters if it's not a quoted string
- *token = *start;
-
- start++;
- token++;
- count++;
- }
- }
-
- *token = 0;
- return start;
-}
-
-//-----------------------------------------------------------------------------
-// Purpose: Returns the first character after the next EOL characters
-//-----------------------------------------------------------------------------
-ucs2 *ReadToEndOfLine(ucs2 *start)
-{
- if (!*start)
- return start;
-
- while (*start)
- {
- if (*start == 0x0D || *start== 0x0A)
- break;
- start++;
- }
-
- while (*start == 0x0D || *start== 0x0A)
- start++;
-
- return start;
-}
-
-//-----------------------------------------------------------------------------
-// Purpose: file writing
-//-----------------------------------------------------------------------------
-void WriteUnicodeString(CUtlBuffer &buf, const wchar_t *string, bool addQuotes)
-{
- if (addQuotes)
- {
- buf.PutUnsignedShort('\"');
- }
-
- for (const wchar_t *ws = string; *ws != 0; ws++)
- {
- // handle special characters
- if (addQuotes && *ws == '\"')
- {
- buf.PutUnsignedShort('\\');
- }
- // write the character
- buf.PutUnsignedShort(*ws);
- }
-
- if (addQuotes)
- {
- buf.PutUnsignedShort('\"');
- }
-}
-
-//-----------------------------------------------------------------------------
-// Purpose: file writing
-//-----------------------------------------------------------------------------
-void WriteAsciiStringAsUnicode(CUtlBuffer &buf, const char *string, bool addQuotes)
-{
- if (addQuotes)
- {
- buf.PutUnsignedShort('\"');
- }
-
- for (const char *sz = string; *sz != 0; sz++)
- {
- // handle special characters
- if (addQuotes && *sz == '\"')
- {
- buf.PutUnsignedShort('\\');
- }
- buf.PutUnsignedShort(*sz);
- }
-
- if (addQuotes)
- {
- buf.PutUnsignedShort('\"');
- }
-}
+//========= Copyright Valve Corporation, All rights reserved. ============//
+//
+// Purpose:
+//
+//=============================================================================//
+
+#include <stdlib.h>
+#include <ctype.h>
+#include "utlbuffer.h"
+
+// memdbgon must be the last include file in a .cpp file!!!
+#include "tier0/memdbgon.h"
+
+//-----------------------------------------------------------------------------
+// Purpose: Advances until non-whitespace hit
+//-----------------------------------------------------------------------------
+ucs2 *AdvanceOverWhitespace(ucs2 *Start)
+{
+ while (*Start != 0 && iswspace(*Start))
+ {
+ Start++;
+ }
+
+ return Start;
+}
+
+//-----------------------------------------------------------------------------
+// Purpose:
+//-----------------------------------------------------------------------------
+ucs2 *ReadUnicodeToken(ucs2 *start, ucs2 *token, int tokenBufferSize, bool &quoted)
+{
+ // skip over any whitespace
+ start = AdvanceOverWhitespace(start);
+ quoted = false;
+ *token = 0;
+
+ if (!*start)
+ {
+ return start;
+ }
+
+ // check to see if it's a quoted string
+ if (*start == '\"')
+ {
+ quoted = true;
+ // copy out the string until we hit an end quote
+ start++;
+ int count = 0;
+ while (*start && *start != '\"' && count < tokenBufferSize-1)
+ {
+ // check for special characters
+ if (*start == '\\' && *(start+1) == 'n')
+ {
+ start++;
+ *token = '\n';
+ }
+ else if (*start == '\\' && *(start+1) == '\"')
+ {
+ start++;
+ *token = '\"';
+ }
+ else
+ {
+ *token = *start;
+ }
+
+ start++;
+ token++;
+ count++;
+ }
+
+ if (*start == '\"')
+ {
+ start++;
+ }
+ }
+ else
+ {
+ // copy out the string until we hit a whitespace
+ int count = 0;
+ while (*start && !iswspace(*start) && count < tokenBufferSize-1)
+ {
+ // no checking for special characters if it's not a quoted string
+ *token = *start;
+
+ start++;
+ token++;
+ count++;
+ }
+ }
+
+ *token = 0;
+ return start;
+}
+
+//-----------------------------------------------------------------------------
+// Purpose: Same as above but no translation of \n
+//-----------------------------------------------------------------------------
+ucs2 *ReadUnicodeTokenNoSpecial(ucs2 *start, ucs2 *token, int tokenBufferSize, bool &quoted)
+{
+ // skip over any whitespace
+ start = AdvanceOverWhitespace(start);
+ quoted = false;
+ *token = 0;
+
+ if (!*start)
+ {
+ return start;
+ }
+
+ // check to see if it's a quoted string
+ if (*start == '\"')
+ {
+ quoted = true;
+ // copy out the string until we hit an end quote
+ start++;
+ int count = 0;
+ while (*start && *start != '\"' && count < tokenBufferSize-1)
+ {
+ // check for special characters
+ /*
+ if (*start == '\\' && *(start+1) == 'n')
+ {
+ start++;
+ *token = '\n';
+ }
+ else
+ */
+ if (*start == '\\' && *(start+1) == '\"')
+ {
+ start++;
+ *token = '\"';
+ }
+ else
+ {
+ *token = *start;
+ }
+
+ start++;
+ token++;
+ count++;
+ }
+
+ if (*start == '\"')
+ {
+ start++;
+ }
+ }
+ else
+ {
+ // copy out the string until we hit a whitespace
+ int count = 0;
+ while (*start && !iswspace(*start) && count < tokenBufferSize-1)
+ {
+ // no checking for special characters if it's not a quoted string
+ *token = *start;
+
+ start++;
+ token++;
+ count++;
+ }
+ }
+
+ *token = 0;
+ return start;
+}
+
+//-----------------------------------------------------------------------------
+// Purpose: Returns the first character after the next EOL characters
+//-----------------------------------------------------------------------------
+ucs2 *ReadToEndOfLine(ucs2 *start)
+{
+ if (!*start)
+ return start;
+
+ while (*start)
+ {
+ if (*start == 0x0D || *start== 0x0A)
+ break;
+ start++;
+ }
+
+ while (*start == 0x0D || *start== 0x0A)
+ start++;
+
+ return start;
+}
+
+//-----------------------------------------------------------------------------
+// Purpose: file writing
+//-----------------------------------------------------------------------------
+void WriteUnicodeString(CUtlBuffer &buf, const wchar_t *string, bool addQuotes)
+{
+ if (addQuotes)
+ {
+ buf.PutUnsignedShort('\"');
+ }
+
+ for (const wchar_t *ws = string; *ws != 0; ws++)
+ {
+ // handle special characters
+ if (addQuotes && *ws == '\"')
+ {
+ buf.PutUnsignedShort('\\');
+ }
+ // write the character
+ buf.PutUnsignedShort(*ws);
+ }
+
+ if (addQuotes)
+ {
+ buf.PutUnsignedShort('\"');
+ }
+}
+
+//-----------------------------------------------------------------------------
+// Purpose: file writing
+//-----------------------------------------------------------------------------
+void WriteAsciiStringAsUnicode(CUtlBuffer &buf, const char *string, bool addQuotes)
+{
+ if (addQuotes)
+ {
+ buf.PutUnsignedShort('\"');
+ }
+
+ for (const char *sz = string; *sz != 0; sz++)
+ {
+ // handle special characters
+ if (addQuotes && *sz == '\"')
+ {
+ buf.PutUnsignedShort('\\');
+ }
+ buf.PutUnsignedShort(*sz);
+ }
+
+ if (addQuotes)
+ {
+ buf.PutUnsignedShort('\"');
+ }
+}