forked from electronicarts/CnC_Generals_Zero_Hour
-
Notifications
You must be signed in to change notification settings - Fork 177
feat(string): add UTF-8 string conversion and validation functions #2528
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
bobtista
wants to merge
3
commits into
TheSuperHackers:main
Choose a base branch
from
bobtista:bobtista/feat/utf8-string-functions
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -133,6 +133,8 @@ set(WWLIB_SRC | |
| trim.cpp | ||
| trim.h | ||
| uarray.h | ||
| utf8.cpp | ||
| utf8.h | ||
| vector.cpp | ||
| Vector.h | ||
| visualc.h | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,144 @@ | ||
| /* | ||
| ** Command & Conquer Generals Zero Hour(tm) | ||
| ** Copyright 2026 TheSuperHackers | ||
| ** | ||
| ** This program is free software: you can redistribute it and/or modify | ||
| ** it under the terms of the GNU General Public License as published by | ||
| ** the Free Software Foundation, either version 3 of the License, or | ||
| ** (at your option) any later version. | ||
| ** | ||
| ** This program is distributed in the hope that it will be useful, | ||
| ** but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| ** GNU General Public License for more details. | ||
| ** | ||
| ** You should have received a copy of the GNU General Public License | ||
| ** along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| */ | ||
|
|
||
| #include "always.h" | ||
| #include "utf8.h" | ||
|
|
||
| #include <string.h> | ||
|
|
||
| #ifdef _WIN32 | ||
| #include <windows.h> | ||
|
|
||
| static bool Is_Trail_Byte(char c) | ||
| { | ||
| return (c & 0xC0) == 0x80; | ||
| } | ||
|
|
||
| size_t Utf8_Num_Bytes(char lead) | ||
| { | ||
| if ((lead & 0x80) == 0x00) return 1; | ||
| if ((lead & 0xE0) == 0xC0) return 2; | ||
| if ((lead & 0xF0) == 0xE0) return 3; | ||
| if ((lead & 0xF8) == 0xF0) return 4; | ||
| return 0; | ||
| } | ||
|
|
||
| size_t Utf8_Trailing_Invalid_Bytes(const char* str, size_t length) | ||
| { | ||
| if (length == 0) | ||
| return 0; | ||
|
|
||
| size_t i = length; | ||
| while (i > 0 && Is_Trail_Byte(str[i - 1])) | ||
| --i; | ||
|
|
||
| if (i == 0) | ||
| return length; | ||
|
|
||
| size_t claimed = Utf8_Num_Bytes(str[i - 1]); | ||
| size_t actual = length - (i - 1); | ||
|
|
||
| if (claimed == 0 || claimed != actual) | ||
| return actual; | ||
|
|
||
| return 0; | ||
| } | ||
|
|
||
| bool Utf8_Validate(const char* str) | ||
| { | ||
| return Utf8_Validate(str, strlen(str)); | ||
| } | ||
|
|
||
| bool Utf8_Validate(const char* str, size_t length) | ||
| { | ||
| const unsigned char* s = (const unsigned char*)str; | ||
| size_t i = 0; | ||
| while (i < length) | ||
| { | ||
| size_t bytes = Utf8_Num_Bytes(str[i]); | ||
| if (bytes == 0) | ||
| return false; | ||
| if (i + bytes > length) | ||
| return false; | ||
| for (size_t j = 1; j < bytes; ++j) | ||
| { | ||
| if (!Is_Trail_Byte(str[i + j])) | ||
| return false; | ||
| } | ||
| // Reject overlong encodings per RFC 3629 | ||
| if (bytes == 2 && s[i] < 0xC2) | ||
| return false; | ||
| if (bytes == 3 && s[i] == 0xE0 && s[i + 1] < 0xA0) | ||
| return false; | ||
| if (bytes == 4 && s[i] == 0xF0 && s[i + 1] < 0x90) | ||
| return false; | ||
| // Reject codepoints above U+10FFFF | ||
| if (bytes == 4 && s[i] > 0xF4) | ||
| return false; | ||
| if (bytes == 4 && s[i] == 0xF4 && s[i + 1] > 0x8F) | ||
| return false; | ||
| i += bytes; | ||
| } | ||
| return true; | ||
| } | ||
|
|
||
| size_t Get_Utf8_Len(const wchar_t* src, size_t srcLen) | ||
| { | ||
| int bytes = WideCharToMultiByte(CP_UTF8, 0, src, (int)srcLen, nullptr, 0, nullptr, nullptr); | ||
| return (bytes > 0) ? (size_t)bytes : 0; | ||
| } | ||
|
|
||
| size_t Get_Unicode_Len(const char* src, size_t srcLen) | ||
| { | ||
| int wchars = MultiByteToWideChar(CP_UTF8, 0, src, (int)srcLen, nullptr, 0); | ||
| return (wchars > 0) ? (size_t)wchars : 0; | ||
| } | ||
|
|
||
| size_t Unicode_To_Utf8(char* dest, size_t destLen, const wchar_t* src, size_t srcLen) | ||
| { | ||
| if (destLen == 0) | ||
| return 0; | ||
| int written = WideCharToMultiByte(CP_UTF8, 0, src, (int)srcLen, dest, (int)destLen, nullptr, nullptr); | ||
| if (written == 0) | ||
| { | ||
| dest[0] = '\0'; | ||
| return 0; | ||
| } | ||
| if ((size_t)written < destLen) | ||
| dest[written] = '\0'; | ||
| return (size_t)written; | ||
| } | ||
|
|
||
| size_t Utf8_To_Unicode(wchar_t* dest, size_t destLen, const char* src, size_t srcLen) | ||
| { | ||
| if (destLen == 0) | ||
| return 0; | ||
| int written = MultiByteToWideChar(CP_UTF8, 0, src, (int)srcLen, dest, (int)destLen); | ||
| if (written == 0) | ||
| { | ||
| dest[0] = L'\0'; | ||
| return 0; | ||
| } | ||
| if ((size_t)written < destLen) | ||
| dest[written] = L'\0'; | ||
| return (size_t)written; | ||
| } | ||
|
|
||
| #else | ||
| #error "Not implemented" | ||
| #endif |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,57 @@ | ||
| /* | ||
| ** Command & Conquer Generals Zero Hour(tm) | ||
| ** Copyright 2026 TheSuperHackers | ||
| ** | ||
| ** This program is free software: you can redistribute it and/or modify | ||
| ** it under the terms of the GNU General Public License as published by | ||
| ** the Free Software Foundation, either version 3 of the License, or | ||
| ** (at your option) any later version. | ||
| ** | ||
| ** This program is distributed in the hope that it will be useful, | ||
| ** but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| ** GNU General Public License for more details. | ||
| ** | ||
| ** You should have received a copy of the GNU General Public License | ||
| ** along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| */ | ||
|
|
||
| #pragma once | ||
|
|
||
| #include <stddef.h> | ||
| #include <wchar.h> | ||
|
|
||
| // Returns the number of bytes in a UTF-8 character based on its lead byte. | ||
| // Returns 0 if the lead byte is invalid. | ||
| size_t Utf8_Num_Bytes(char lead); | ||
|
|
||
| // Returns the number of invalid bytes at the end of the string due to an | ||
| // incomplete multi-byte sequence. Returns 0 if the string ends on a complete sequence. | ||
| size_t Utf8_Trailing_Invalid_Bytes(const char* str, size_t length); | ||
|
|
||
| // Returns true if the null-terminated string is valid UTF-8, false otherwise. | ||
| bool Utf8_Validate(const char* str); | ||
| bool Utf8_Validate(const char* str, size_t length); | ||
|
|
||
| // Returns the number of bytes needed for the UTF-8 representation of srcLen wide | ||
| // characters from src, not counting a null terminator. Returns 0 on failure or if srcLen is 0. | ||
| size_t Get_Utf8_Len(const wchar_t* src, size_t srcLen); | ||
|
|
||
| // Returns the number of wchar_t elements needed for the wide character representation | ||
| // of srcLen bytes from the UTF-8 string src, not counting a null terminator. | ||
| // Returns 0 on failure or if srcLen is 0. | ||
| size_t Get_Unicode_Len(const char* src, size_t srcLen); | ||
|
|
||
| // Converts srcLen wide characters from src to UTF-8. | ||
| // destLen is the destination buffer capacity in bytes, not counting a null terminator. | ||
| // Returns the number of bytes written on success, or 0 on failure. | ||
| // Writes a null terminator if destLen > bytes written. Does not write one if destLen | ||
| // equals bytes written (exact fit). On failure, dest[0] is set to '\0' if destLen > 0. | ||
| size_t Unicode_To_Utf8(char* dest, size_t destLen, const wchar_t* src, size_t srcLen); | ||
|
|
||
| // Converts srcLen bytes from the UTF-8 string src to wide characters. | ||
| // destLen is the destination buffer capacity in wchar_t elements, not counting a null terminator. | ||
| // Returns the number of wchar_t elements written on success, or 0 on failure. | ||
| // Writes a null terminator if destLen > elements written. Does not write one if destLen | ||
| // equals elements written (exact fit). On failure, dest[0] is set to L'\0' if destLen > 0. | ||
| size_t Utf8_To_Unicode(wchar_t* dest, size_t destLen, const char* src, size_t srcLen); |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
utf8.cppunconditionally listed outside theif(WIN32)blockutf8.cpp's entire implementation is wrapped in#ifdef _WIN32 … #else #error "Not implemented" #endif, and the callers (AsciiString.cpp,UnicodeString.cpp,ThreadUtils.cpp) now unconditionally includeutf8.hand call its functions. Any non-Windows build will hit the#errorimmediately. Other Win32-specific sources (registry.cpp,verchk.cpp, etc.) are correctly placed inside theif(WIN32)block below —utf8.cppshould follow the same pattern.A proper cross-platform implementation (or
#ifdefguards in the callers) would be needed before removing the#error.Prompt To Fix With AI