Skip to content

Commit 01338b0

Browse files
committed
WARNING: BREAKING CHANGE
Added a bunch of useful text management functions. Consequently, some already available functions like `FormatText()` and `SubText()` has been renamed for consistency. Created temporal fallbacks for old names. raylib version bumped to 2.3.
1 parent 9a8320c commit 01338b0

File tree

9 files changed

+273
-46
lines changed

9 files changed

+273
-46
lines changed

examples/shapes/shapes_logo_raylib_anim.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
*
33
* raylib [shapes] example - raylib logo animation
44
*
5-
* This example has been created using raylib 1.4 (www.raylib.com)
5+
* This example has been created using raylib 2.3 (www.raylib.com)
66
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
77
*
88
* Copyright (c) 2014 Ramon Santamaria (@raysan5)
@@ -140,7 +140,7 @@ int main()
140140

141141
DrawRectangle(screenWidth/2 - 112, screenHeight/2 - 112, 224, 224, Fade(RAYWHITE, alpha));
142142

143-
DrawText(SubText("raylib", 0, lettersCount), screenWidth/2 - 44, screenHeight/2 + 48, 50, Fade(BLACK, alpha));
143+
DrawText(TextSubtext("raylib", 0, lettersCount), screenWidth/2 - 44, screenHeight/2 + 48, 50, Fade(BLACK, alpha));
144144
}
145145
else if (state == 4)
146146
{

examples/text/text_writing_anim.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
*
33
* raylib [text] example - Text Writing Animation
44
*
5-
* This example has been created using raylib 1.4 (www.raylib.com)
5+
* This example has been created using raylib 2.3 (www.raylib.com)
66
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
77
*
88
* Copyright (c) 2016 Ramon Santamaria (@raysan5)
@@ -44,7 +44,7 @@ int main()
4444

4545
ClearBackground(RAYWHITE);
4646

47-
DrawText(SubText(message, 0, framesCounter/10), 210, 160, 20, MAROON);
47+
DrawText(TextSubtext(message, 0, framesCounter/10), 210, 160, 20, MAROON);
4848

4949
DrawText("PRESS [ENTER] to RESTART!", 240, 260, 20, LIGHTGRAY);
5050
DrawText("PRESS [SPACE] to SPEED UP!", 239, 300, 20, LIGHTGRAY);

games/transmission/screens/screen_gameplay.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -219,18 +219,18 @@ void InitGameplayScreen(void)
219219
{
220220
foundWord = false;
221221

222-
messageWords[currentWord - 1].rec.width = (int)MeasureTextEx(fontMessage, SubText(missions[currentMission].msg, wordInitPosX, (i - wordInitPosX)), 30, 0).x;
222+
messageWords[currentWord - 1].rec.width = (int)MeasureTextEx(fontMessage, TextSubtext(missions[currentMission].msg, wordInitPosX, (i - wordInitPosX)), 30, 0).x;
223223
messageWords[currentWord - 1].rec.height = fontMessage.baseSize;
224224

225-
strncpy(messageWords[currentWord - 1].text, SubText(missions[currentMission].msg, wordInitPosX, (i - wordInitPosX)), i - wordInitPosX);
225+
strncpy(messageWords[currentWord - 1].text, TextSubtext(missions[currentMission].msg, wordInitPosX, (i - wordInitPosX)), i - wordInitPosX);
226226
}
227227

228228
if (c == '@') // One word to change
229229
{
230230
foundWord = true;
231231
missions[currentMission].msg[i] = ' ';
232232

233-
offsetX = (int)MeasureTextEx(fontMessage, SubText(missions[currentMission].msg, wordInitPosY, (i + 1) - wordInitPosY), 30, 0).x;
233+
offsetX = (int)MeasureTextEx(fontMessage, TextSubtext(missions[currentMission].msg, wordInitPosY, (i + 1) - wordInitPosY), 30, 0).x;
234234

235235
messageWords[currentWord].rec.x = offsetX;
236236
messageWords[currentWord].rec.y = offsetY;

games/transmission/screens/screen_mission.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ void DrawMissionScreen(void)
205205
DrawTexturePro(texBackline, sourceRecBackLine, destRecBackLine, (Vector2){0,0},0, Fade(WHITE, fadeBackLine));
206206

207207
if (writeNumber) DrawTextEx(fontMission, FormatText("Filtración #%02i ", currentMission + 1), numberPosition, missionSize + 10, 0, numberColor);
208-
DrawTextEx(fontMission, SubText(missions[currentMission].brief, 0, missionLenght), missionPosition, missionSize, 0, missionColor);
208+
DrawTextEx(fontMission, TextSubtext(missions[currentMission].brief, 0, missionLenght), missionPosition, missionSize, 0, missionColor);
209209
if (writeKeyword && blinkKeyWord) DrawTextEx(fontMission, FormatText("Keyword: %s", missions[currentMission].key), keywordPosition, missionSize + 10, 0, keywordColor);
210210

211211
if (showButton)

games/transmission/screens/screen_title.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -137,8 +137,8 @@ void UpdateTitleScreen(void)
137137
void DrawTitleScreen(void)
138138
{
139139
DrawTexture(texBackground, 0,0, WHITE);
140-
DrawTextEx(fontTitle, SubText(textTitle, 0, transmissionLenght), transmissionPosition, titleSize, 0, titleColor);
141-
DrawTextEx(fontTitle, SubText(textTitle, 12, missionLenght), missionPositon, titleSize, 0, titleColor);
140+
DrawTextEx(fontTitle, TextSubtext(textTitle, 0, transmissionLenght), transmissionPosition, titleSize, 0, titleColor);
141+
DrawTextEx(fontTitle, TextSubtext(textTitle, 12, missionLenght), missionPositon, titleSize, 0, titleColor);
142142

143143
DrawButton("start");
144144
}

src/config.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
*
2626
**********************************************************************************************/
2727

28-
#define RAYLIB_VERSION "2.2-dev"
28+
#define RAYLIB_VERSION "2.3-dev"
2929

3030
// Edit to control what features Makefile'd raylib is compiled with
3131
#if defined(RAYLIB_CMAKE)

src/core.c

+4-4
Original file line numberDiff line numberDiff line change
@@ -3176,17 +3176,17 @@ static void KeyCallback(GLFWwindow *window, int key, int scancode, int action, i
31763176

31773177
// NOTE: delay represents the time between frames in the gif, if we capture a gif frame every
31783178
// 10 game frames and each frame trakes 16.6ms (60fps), delay between gif frames should be ~16.6*10.
3179-
GifBegin(FormatText("screenrec%03i.gif", screenshotCounter), screenWidth, screenHeight, (int)(GetFrameTime()*10.0f), 8, false);
3179+
GifBegin(TextFormat("screenrec%03i.gif", screenshotCounter), screenWidth, screenHeight, (int)(GetFrameTime()*10.0f), 8, false);
31803180
screenshotCounter++;
31813181

3182-
TraceLog(LOG_INFO, "Begin animated GIF recording: %s", FormatText("screenrec%03i.gif", screenshotCounter));
3182+
TraceLog(LOG_INFO, "Begin animated GIF recording: %s", TextFormat("screenrec%03i.gif", screenshotCounter));
31833183
}
31843184
}
31853185
else
31863186
#endif // SUPPORT_GIF_RECORDING
31873187
#if defined(SUPPORT_SCREEN_CAPTURE)
31883188
{
3189-
TakeScreenshot(FormatText("screenshot%03i.png", screenshotCounter));
3189+
TakeScreenshot(TextFormat("screenshot%03i.png", screenshotCounter));
31903190
screenshotCounter++;
31913191
}
31923192
#endif // SUPPORT_SCREEN_CAPTURE
@@ -4454,7 +4454,7 @@ static void LogoAnimation(void)
44544454

44554455
DrawRectangle(screenWidth/2 - 112, screenHeight/2 - 112, 224, 224, Fade(RAYWHITE, alpha));
44564456

4457-
DrawText(SubText("raylib", 0, lettersCount), screenWidth/2 - 44, screenHeight/2 + 48, 50, Fade(BLACK, alpha));
4457+
DrawText(TextSubtext("raylib", 0, lettersCount), screenWidth/2 - 44, screenHeight/2 + 48, 50, Fade(BLACK, alpha));
44584458
}
44594459

44604460
EndDrawing();

src/raylib.h

+21-5
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,11 @@
135135
#define MAGENTA CLITERAL{ 255, 0, 255, 255 } // Magenta
136136
#define RAYWHITE CLITERAL{ 245, 245, 245, 255 } // My own White (raylib logo)
137137

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+
138143
//----------------------------------------------------------------------------------
139144
// Structures Definition
140145
//----------------------------------------------------------------------------------
@@ -1111,11 +1116,22 @@ RLAPI int MeasureText(const char *text, int fontSize);
11111116
RLAPI Vector2 MeasureTextEx(Font font, const char *text, float fontSize, float spacing); // Measure string size for Font
11121117
RLAPI int GetGlyphIndex(Font font, int character); // Get index position for a unicode character on font
11131118

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
11191135

11201136
//------------------------------------------------------------------------------------
11211137
// Basic 3d Shapes Drawing Functions (Module: models)

0 commit comments

Comments
 (0)