|
135 | 135 | #define MAGENTA CLITERAL{ 255, 0, 255, 255 } // Magenta
|
136 | 136 | #define RAYWHITE CLITERAL{ 245, 245, 245, 255 } // My own White (raylib logo)
|
137 | 137 |
|
| 138 | +// Temporal hack to avoid breaking old codebases using |
| 139 | +// deprecated raylib implementation of these functions |
| 140 | +#define FormatText TextFormat |
| 141 | +#define SubText TextSubText |
| 142 | + |
138 | 143 | //----------------------------------------------------------------------------------
|
139 | 144 | // Structures Definition
|
140 | 145 | //----------------------------------------------------------------------------------
|
@@ -1111,11 +1116,22 @@ RLAPI int MeasureText(const char *text, int fontSize);
|
1111 | 1116 | RLAPI Vector2 MeasureTextEx(Font font, const char *text, float fontSize, float spacing); // Measure string size for Font
|
1112 | 1117 | RLAPI int GetGlyphIndex(Font font, int character); // Get index position for a unicode character on font
|
1113 | 1118 |
|
1114 |
| -// Text string edition functions |
1115 |
| -RLAPI const char *FormatText(const char *text, ...); // Formatting of text with variables to 'embed' |
1116 |
| -RLAPI const char *SubText(const char *text, int position, int length); // Get a piece of a text string |
1117 |
| -RLAPI char **SplitText(char *text, char delimiter, int *strCount); // Split text string into multiple strings (memory should be freed manually!) |
1118 |
| -RLAPI bool IsEqualText(const char *text1, const char *text2); // Check if two text string are equal |
| 1119 | +// Text strings management functions |
| 1120 | +// NOTE: Some strings allocate memory internally for returned strings, just be careful! |
| 1121 | +RLAPI bool TextIsEqual(const char *text1, const char *text2); // Check if two text string are equal |
| 1122 | +RLAPI unsigned int TextLength(const char *text); // Get text length, checks for '\0' ending |
| 1123 | +RLAPI const char *TextFormat(const char *text, ...); // Text formatting with variables (sprintf) |
| 1124 | +RLAPI const char *TextSubtext(const char *text, int position, int length); // Get a piece of a text string |
| 1125 | +RLAPI const char *TextReplace(char *text, const char *replace, const char *by); // Replace text string (memory should be freed!) |
| 1126 | +RLAPI const char *TextInsert(const char *text, const char *insert, int position); // Insert text in a position (memory should be freed!) |
| 1127 | +RLAPI const char *TextJoin(const char **textList, int count, const char *delimiter); // Join text strings with delimiter |
| 1128 | +RLAPI char **TextSplit(const char *text, char delimiter, int *count); // Split text into multiple strings (memory should be freed!) |
| 1129 | +RLAPI void TextSplitEx(const char *text, char delimiter, int *count, const char **ptrs, int *lengths); // Get pointers to substrings separated by delimiter |
| 1130 | +RLAPI void TextAppend(char *text, const char *append, int *position); // Append text at specific position and move cursor! |
| 1131 | +RLAPI int TextFindIndex(const char *text, const char *find); // Find first text occurrence within a string |
| 1132 | +RLAPI const char *TextToUpper(const char *text); // Get upper case version of provided string |
| 1133 | +RLAPI const char *TextToLower(const char *text); // Get lower case version of provided string |
| 1134 | +RLAPI const char *TextToPascal(const char *text); // Get Pascal case notation version of provided string |
1119 | 1135 |
|
1120 | 1136 | //------------------------------------------------------------------------------------
|
1121 | 1137 | // Basic 3d Shapes Drawing Functions (Module: models)
|
|
0 commit comments