From f7ab1fbd7a09bdc4f4e5f9a46330b4ee68db99ca Mon Sep 17 00:00:00 2001 From: ChrisDill Date: Thu, 25 Oct 2018 12:29:10 +0100 Subject: [PATCH 1/3] Better error handlingfor examples --- Examples/Test.cs | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/Examples/Test.cs b/Examples/Test.cs index 21fda35..9b27321 100644 --- a/Examples/Test.cs +++ b/Examples/Test.cs @@ -1,6 +1,8 @@ using System; using System.IO; using static Raylib.Raylib; +using System.Reflection; +using System.Runtime.InteropServices; namespace Examples { @@ -32,12 +34,20 @@ namespace Examples var filePath = Console.ReadLine(); var name = Path.GetFileNameWithoutExtension(filePath); var dir = examples + filePath + ".cs"; - + // run example if it exists if (File.Exists(dir)) { ChangeDirectory(Path.GetDirectoryName(dir)); - Type.GetType(name)?.GetMethod("Main")?.Invoke(null, args); + try + { + Type.GetType(name)?.GetMethod("Main")?.Invoke(null, args); + } + catch(TargetInvocationException e) + { + Console.WriteLine(e.InnerException.Message); + Console.WriteLine(e.InnerException.StackTrace); + } Console.WriteLine(); } else From 696a9cf14a11956ab35dec6ae28d01b458623e00 Mon Sep 17 00:00:00 2001 From: ChrisDill Date: Thu, 25 Oct 2018 13:07:38 +0100 Subject: [PATCH 2/3] Fixed RayHitInfo - Fixed issue with RayHitInfo. bool types different so using byte instead. --- Bindings/Raylib.cs | 10 ++++++++-- Bindings/Raymath.cs | 3 +++ Test.NetCore/Test.NetCore.csproj | 3 +++ Test.NetCoreRT/Test.NetCoreRT.csproj | 3 +++ 4 files changed, 17 insertions(+), 2 deletions(-) diff --git a/Bindings/Raylib.cs b/Bindings/Raylib.cs index 0ea317f..edf8bf9 100644 --- a/Bindings/Raylib.cs +++ b/Bindings/Raylib.cs @@ -642,14 +642,20 @@ namespace Raylib [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)] public struct RayHitInfo { - public bool hit; + public bool hit + { + get { return Convert.ToBoolean(isHit); } + set { isHit = Convert.ToByte(hit); } + } + + public byte isHit; public float distance; public Vector3 position; public Vector3 normal; public RayHitInfo(bool hit, float distance, Vector3 position, Vector3 normal) { - this.hit = hit; + this.isHit = Convert.ToByte(hit); this.distance = distance; this.position = position; this.normal = normal; diff --git a/Bindings/Raymath.cs b/Bindings/Raymath.cs index d5782f2..c0d0064 100644 --- a/Bindings/Raymath.cs +++ b/Bindings/Raymath.cs @@ -8,6 +8,7 @@ namespace Raylib #region Raylib-cs Types // Vector2 type + [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)] public struct Vector2 { public float x; @@ -161,6 +162,7 @@ namespace Raylib } // Vector3 type + [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)] public struct Vector3 { public float x; @@ -283,6 +285,7 @@ namespace Raylib } // Vector4 type + [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)] public struct Vector4 { public float x; diff --git a/Test.NetCore/Test.NetCore.csproj b/Test.NetCore/Test.NetCore.csproj index 12753dc..8adaf80 100644 --- a/Test.NetCore/Test.NetCore.csproj +++ b/Test.NetCore/Test.NetCore.csproj @@ -9,6 +9,9 @@ true + + true + diff --git a/Test.NetCoreRT/Test.NetCoreRT.csproj b/Test.NetCoreRT/Test.NetCoreRT.csproj index 19fc8f4..91009d2 100644 --- a/Test.NetCoreRT/Test.NetCoreRT.csproj +++ b/Test.NetCoreRT/Test.NetCoreRT.csproj @@ -9,6 +9,9 @@ true + + true + From 67d5628fe32baae1987d350f296a261fbae551aa Mon Sep 17 00:00:00 2001 From: ChrisDill Date: Thu, 25 Oct 2018 17:21:47 +0100 Subject: [PATCH 3/3] Removed FormatText + SubText change - Using built in string.Format instead of FormatText. - SubText changed to extension method for a string that uses Substring and a bound limit. --- Bindings/Raylib.cs | 12 +++-------- Examples/core/core_input_gamepad.cs | 16 +++++++-------- Examples/core/core_mouse_wheel.cs | 2 +- Examples/core/core_random_values.cs | 3 +-- Examples/core/core_storage_values.cs | 9 +++----- Examples/models/models_mesh_picking.cs | 11 +++++----- Examples/models/models_yaw_pitch_roll.cs | 2 +- Examples/others/bunnymark.cs | 3 +-- Examples/shaders/shaders_model_shader.cs | 4 ++-- Examples/shaders/shaders_postprocessing.cs | 24 +++++++++++----------- Examples/shapes/shapes_logo_raylib_anim.cs | 4 +--- Examples/text/text_bmfont_unordered.cs | 5 ++--- Examples/text/text_font_sdf.cs | 2 +- Examples/text/text_format_text.cs | 10 ++++----- Examples/text/text_input_box.cs | 2 +- Examples/text/text_ttf_loading.cs | 4 ++-- Examples/text/text_writing_anim.cs | 2 +- Examples/textures/textures_rectangle.cs | 2 +- 18 files changed, 52 insertions(+), 65 deletions(-) diff --git a/Bindings/Raylib.cs b/Bindings/Raylib.cs index edf8bf9..2a53f16 100644 --- a/Bindings/Raylib.cs +++ b/Bindings/Raylib.cs @@ -1835,18 +1835,12 @@ namespace Raylib [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Vector2 MeasureTextEx(Font font, string text, float fontSize, float spacing); - // Formatting of text with variables to 'embed' - [DllImport(nativeLibName, EntryPoint = "FormatText", CallingConvention = CallingConvention.Cdecl)] - private static extern string FormatTextInternal(string text, __arglist); - public static string FormatText(string text, params object[] args) + // extension providing SubText + public static string SubText(this string input, int position, int length) { - return FormatTextInternal(text, __arglist(args)); + return input.Substring(position, Math.Min(length, input.Length)); } - // Get a piece of a text string - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern string SubText(string text, int position, int length); - // Get index position for a unicode character on font [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern int GetGlyphIndex(Font font, int character); diff --git a/Examples/core/core_input_gamepad.cs b/Examples/core/core_input_gamepad.cs index 4a2bc85..1f48e7a 100644 --- a/Examples/core/core_input_gamepad.cs +++ b/Examples/core/core_input_gamepad.cs @@ -61,7 +61,7 @@ public partial class core_input_gamepad if (IsGamepadAvailable(GAMEPAD_PLAYER1)) { - DrawText(FormatText("GP1: %s", GetGamepadName(GAMEPAD_PLAYER1)), 10, 10, 10, BLACK); + DrawText(string.Format("GP1: {0}", GetGamepadName(GAMEPAD_PLAYER1)), 10, 10, 10, BLACK); if (IsGamepadName(GAMEPAD_PLAYER1, XBOX360_NAME_ID)) { @@ -108,8 +108,8 @@ public partial class core_input_gamepad DrawRectangle(170, 30, 15, (int)(((1.0f + GetGamepadAxisMovement(GAMEPAD_PLAYER1, GAMEPAD_XBOX_AXIS_LT)) / 2.0f) * 70), RED); DrawRectangle(604, 30, 15, (int)(((1.0f + GetGamepadAxisMovement(GAMEPAD_PLAYER1, GAMEPAD_XBOX_AXIS_RT)) / 2.0f) * 70), RED); - //DrawText(FormatText("Xbox axis LT: %02.02f", GetGamepadAxisMovement(GAMEPAD_PLAYER1, GAMEPAD_XBOX_AXIS_LT)), 10, 40, 10, BLACK); - //DrawText(FormatText("Xbox axis RT: %02.02f", GetGamepadAxisMovement(GAMEPAD_PLAYER1, GAMEPAD_XBOX_AXIS_RT)), 10, 60, 10, BLACK); + //DrawText(string.Format("Xbox axis LT: {0:00.00}", GetGamepadAxisMovement(GAMEPAD_PLAYER1, GAMEPAD_XBOX_AXIS_LT)), 10, 40, 10, BLACK); + //DrawText(string.Format("Xbox axis RT: {0:00.00}", GetGamepadAxisMovement(GAMEPAD_PLAYER1, GAMEPAD_XBOX_AXIS_RT)), 10, 60, 10, BLACK); } else if (IsGamepadName(GAMEPAD_PLAYER1, PS3_NAME_ID)) { @@ -157,21 +157,21 @@ public partial class core_input_gamepad DrawRectangle(169, 48, 15, (int)(((1.0f - GetGamepadAxisMovement(GAMEPAD_PLAYER1, GAMEPAD_PS3_AXIS_L2)) / 2.0f) * 70), RED); DrawRectangle(611, 48, 15, (int)(((1.0f - GetGamepadAxisMovement(GAMEPAD_PLAYER1, GAMEPAD_PS3_AXIS_R2)) / 2.0f) * 70), RED); } - else - { + else + { DrawText("- GENERIC GAMEPAD -", 280, 180, 20, GRAY); // TODO: Draw generic gamepad } - DrawText(FormatText("DETECTED AXIS [%i]:", GetGamepadAxisCount(GAMEPAD_PLAYER1)), 10, 50, 10, MAROON); + DrawText(string.Format("DETECTED AXIS [{0}]:", GetGamepadAxisCount(GAMEPAD_PLAYER1)), 10, 50, 10, MAROON); for (int i = 0; i < GetGamepadAxisCount(GAMEPAD_PLAYER1); i++) { - DrawText(FormatText("AXIS %i: %.02f", i, GetGamepadAxisMovement(GAMEPAD_PLAYER1, i)), 20, 70 + 20 * i, 10, DARKGRAY); + DrawText(string.Format("AXIS {0}: {0:0.02}", i, GetGamepadAxisMovement(GAMEPAD_PLAYER1, i)), 20, 70 + 20 * i, 10, DARKGRAY); } - if (GetGamepadButtonPressed() != -1) DrawText(FormatText("DETECTED BUTTON: %i", GetGamepadButtonPressed()), 10, 430, 10, RED); + if (GetGamepadButtonPressed() != -1) DrawText(string.Format("DETECTED BUTTON: {0}", GetGamepadButtonPressed()), 10, 430, 10, RED); else DrawText("DETECTED BUTTON: NONE", 10, 430, 10, GRAY); } else diff --git a/Examples/core/core_mouse_wheel.cs b/Examples/core/core_mouse_wheel.cs index c111f9a..4b63a54 100644 --- a/Examples/core/core_mouse_wheel.cs +++ b/Examples/core/core_mouse_wheel.cs @@ -47,7 +47,7 @@ public partial class core_mouse_wheel DrawRectangle(screenWidth/2 - 40, boxPositionY, 80, 80, MAROON); DrawText("Use mouse wheel to move the cube up and down!", 10, 10, 20, GRAY); - //DrawText(FormatText("Box position Y: %03i", boxPositionY), 10, 40, 20, LIGHTGRAY); + DrawText(string.Format("Box position Y: {0:000}", boxPositionY), 10, 40, 20, LIGHTGRAY); DrawText($"Box position Y: {boxPositionY}", 10, 40, 20, LIGHTGRAY); EndDrawing(); diff --git a/Examples/core/core_random_values.cs b/Examples/core/core_random_values.cs index 5101c14..8c995da 100644 --- a/Examples/core/core_random_values.cs +++ b/Examples/core/core_random_values.cs @@ -54,8 +54,7 @@ public partial class core_random_values DrawText("Every 2 seconds a new random value is generated:", 130, 100, 20, MAROON); - //DrawText(FormatText("%i", randValue), 360, 180, 80, LIGHTGRAY); - DrawText($"{randValue}", 360, 180, 80, LIGHTGRAY); + DrawText(string.Format("{0}", randValue), 360, 180, 80, LIGHTGRAY); EndDrawing(); //---------------------------------------------------------------------------------- diff --git a/Examples/core/core_storage_values.cs b/Examples/core/core_storage_values.cs index cbed265..2d36c24 100644 --- a/Examples/core/core_storage_values.cs +++ b/Examples/core/core_storage_values.cs @@ -66,13 +66,10 @@ public partial class core_storage_values ClearBackground(RAYWHITE); - // DrawText(FormatText("SCORE: %i", score), 280, 130, 40, MAROON); - DrawText($"SCORE: {score}", 280, 130, 40, MAROON); - // DrawText(FormatText("HI-SCORE: %i", hiscore), 210, 200, 50, BLACK); - DrawText($"HI-SCORE: {hiscore}", 210, 200, 50, BLACK); + DrawText(string.Format("SCORE: {0}", score), 280, 130, 40, MAROON); + DrawText(string.Format("HI-SCORE: {0}", hiscore), 210, 200, 50, BLACK); - // DrawText(FormatText("frames: %i", framesCounter), 10, 10, 20, LIME); - DrawText($"frames: {framesCounter}", 10, 10, 20, LIME); + DrawText(string.Format("frames: {0}", framesCounter), 10, 10, 20, LIME); DrawText("Press R to generate random numbers", 220, 40, 20, LIGHTGRAY); DrawText("Press ENTER to SAVE values", 250, 310, 20, LIGHTGRAY); diff --git a/Examples/models/models_mesh_picking.cs b/Examples/models/models_mesh_picking.cs index 4e10907..b1d4d6f 100644 --- a/Examples/models/models_mesh_picking.cs +++ b/Examples/models/models_mesh_picking.cs @@ -164,25 +164,26 @@ public partial class models_mesh_picking EndMode3D(); // Draw some debug GUI text - DrawText(FormatText("Hit Object: %s", hitObjectName), 10, 50, 10, BLACK); + DrawText(string.Format("Hit Object: {0}", hitObjectName), 10, 50, 10, BLACK); if (nearestHit.hit) { int ypos = 70; - DrawText(FormatText("Distance: %3.2f", nearestHit.distance), 10, ypos, 10, BLACK); + var x = string.Format("Distance: {0:000.00}", nearestHit.distance); + DrawText(string.Format("Distance: {0:000.00}", nearestHit.distance), 10, ypos, 10, BLACK); - DrawText(FormatText("Hit Pos: %3.2f %3.2f %3.2f", + DrawText(string.Format("Hit Pos: {0:000.00} {1:000.00} {2:000.00}", nearestHit.position.x, nearestHit.position.y, nearestHit.position.z), 10, ypos + 15, 10, BLACK); - DrawText(FormatText("Hit Norm: %3.2f %3.2f %3.2f", + DrawText(string.Format("Hit Norm: {0:000.00} {1:000.00} {2:000.00}", nearestHit.normal.x, nearestHit.normal.y, nearestHit.normal.z), 10, ypos + 30, 10, BLACK); - if (hitTriangle) DrawText(FormatText("Barycenter: %3.2f %3.2f %3.2f", bary.x, bary.y, bary.z), 10, ypos + 45, 10, BLACK); + if (hitTriangle) DrawText(string.Format("Barycenter:{0:000.00} {1:000.00} {2:000.00}", bary.x, bary.y, bary.z), 10, ypos + 45, 10, BLACK); } DrawText("Use Mouse to Move Camera", 10, 430, 10, GRAY); diff --git a/Examples/models/models_yaw_pitch_roll.cs b/Examples/models/models_yaw_pitch_roll.cs index 83d1f84..6b4e989 100644 --- a/Examples/models/models_yaw_pitch_roll.cs +++ b/Examples/models/models_yaw_pitch_roll.cs @@ -200,7 +200,7 @@ public partial class models_yaw_pitch_roll DrawTexturePro(angleGauge, srcRec, dstRec, origin, angle, color); - DrawText(FormatText("%5.1f", angle), x - MeasureText(FormatText("%5.1f", angle), textSize) / 2, y + 10, textSize, DARKGRAY); + DrawText(string.Format("{0:00000.0}", angle), x - MeasureText(string.Format("0:00000.0", angle), textSize) / 2, y + 10, textSize, DARKGRAY); DrawText(title, x - MeasureText(title, textSize) / 2, y + 60, textSize, DARKGRAY); } } diff --git a/Examples/others/bunnymark.cs b/Examples/others/bunnymark.cs index a4acb2c..a4e82a4 100644 --- a/Examples/others/bunnymark.cs +++ b/Examples/others/bunnymark.cs @@ -87,8 +87,7 @@ public partial class bunnymark DrawRectangle(0, 0, screenWidth, 40, LIGHTGRAY); DrawText("raylib bunnymark", 10, 10, 20, DARKGRAY); - // DrawText(FormatText("bunnies: %i", bunniesCount), 400, 10, 20, RED); - DrawText($"bunnies: {bunniesCount}", 400, 10, 20, RED); + DrawText(string.Format("bunnies: {0}", bunniesCount), 400, 10, 20, RED); DrawFPS(260, 10); EndDrawing(); diff --git a/Examples/shaders/shaders_model_shader.cs b/Examples/shaders/shaders_model_shader.cs index 179883c..7627f72 100644 --- a/Examples/shaders/shaders_model_shader.cs +++ b/Examples/shaders/shaders_model_shader.cs @@ -83,8 +83,8 @@ public partial class shaders_model_shader DrawText("(c) Watermill 3D model by Alberto Cano", screenWidth - 210, screenHeight - 20, 10, GRAY); - DrawText(FormatText("Camera3D position: (%.2f, %.2f, %.2f)", camera.position.x, camera.position.y, camera.position.z), 600, 20, 10, BLACK); - DrawText(FormatText("Camera3D target: (%.2f, %.2f, %.2f)", camera.target.x, camera.target.y, camera.target.z), 600, 40, 10, GRAY); + DrawText(string.Format("Camera3D position: ({0:0.00}, {0:0.00}, {0:0.00})", camera.position.x, camera.position.y, camera.position.z), 600, 20, 10, BLACK); + DrawText(string.Format("Camera3D target: ({0:0.00}, {0:0.00}, {0:0.00})", camera.target.x, camera.target.y, camera.target.z), 600, 40, 10, GRAY); DrawFPS(10, 10); diff --git a/Examples/shaders/shaders_postprocessing.cs b/Examples/shaders/shaders_postprocessing.cs index 0f8c279..bd6c72d 100644 --- a/Examples/shaders/shaders_postprocessing.cs +++ b/Examples/shaders/shaders_postprocessing.cs @@ -89,18 +89,18 @@ public partial class shaders_postprocessing Shader[] shaders = new Shader[MAX_POSTPRO_SHADERS]; // NOTE: Defining null (NULL) for vertex shader forces usage of internal default vertex shader - shaders[(int)PostproShader.FX_GRAYSCALE] = LoadShader(null, FormatText("resources/shaders/glsl%i/grayscale.fs", GLSL_VERSION)); - shaders[(int)PostproShader.FX_POSTERIZATION] = LoadShader(null, FormatText("resources/shaders/glsl%i/posterization.fs", GLSL_VERSION)); - shaders[(int)PostproShader.FX_DREAM_VISION] = LoadShader(null, FormatText("resources/shaders/glsl%i/dream_vision.fs", GLSL_VERSION)); - shaders[(int)PostproShader.FX_PIXELIZER] = LoadShader(null, FormatText("resources/shaders/glsl%i/pixelizer.fs", GLSL_VERSION)); - shaders[(int)PostproShader.FX_CROSS_HATCHING] = LoadShader(null, FormatText("resources/shaders/glsl%i/cross_hatching.fs", GLSL_VERSION)); - shaders[(int)PostproShader.FX_CROSS_STITCHING] = LoadShader(null, FormatText("resources/shaders/glsl%i/cross_stitching.fs", GLSL_VERSION)); - shaders[(int)PostproShader.FX_PREDATOR_VIEW] = LoadShader(null, FormatText("resources/shaders/glsl%i/predator.fs", GLSL_VERSION)); - shaders[(int)PostproShader.FX_SCANLINES] = LoadShader(null, FormatText("resources/shaders/glsl%i/scanlines.fs", GLSL_VERSION)); - shaders[(int)PostproShader.FX_FISHEYE] = LoadShader(null, FormatText("resources/shaders/glsl%i/fisheye.fs", GLSL_VERSION)); - shaders[(int)PostproShader.FX_SOBEL] = LoadShader(null, FormatText("resources/shaders/glsl%i/sobel.fs", GLSL_VERSION)); - shaders[(int)PostproShader.FX_BLOOM] = LoadShader(null, FormatText("resources/shaders/glsl%i/bloom.fs", GLSL_VERSION)); - shaders[(int)PostproShader.FX_BLUR] = LoadShader(null, FormatText("resources/shaders/glsl%i/blur.fs", GLSL_VERSION)); + shaders[(int)PostproShader.FX_GRAYSCALE] = LoadShader(null, string.Format("resources/shaders/glsl{0}/grayscale.fs", GLSL_VERSION)); + shaders[(int)PostproShader.FX_POSTERIZATION] = LoadShader(null, string.Format("resources/shaders/glsl{0}/posterization.fs", GLSL_VERSION)); + shaders[(int)PostproShader.FX_DREAM_VISION] = LoadShader(null, string.Format("resources/shaders/glsl{0}/dream_vision.fs", GLSL_VERSION)); + shaders[(int)PostproShader.FX_PIXELIZER] = LoadShader(null, string.Format("resources/shaders/glsl{0}/pixelizer.fs", GLSL_VERSION)); + shaders[(int)PostproShader.FX_CROSS_HATCHING] = LoadShader(null, string.Format("resources/shaders/glsl{0}/cross_hatching.fs", GLSL_VERSION)); + shaders[(int)PostproShader.FX_CROSS_STITCHING] = LoadShader(null, string.Format("resources/shaders/glsl{0}/cross_stitching.fs", GLSL_VERSION)); + shaders[(int)PostproShader.FX_PREDATOR_VIEW] = LoadShader(null, string.Format("resources/shaders/glsl{0}/predator.fs", GLSL_VERSION)); + shaders[(int)PostproShader.FX_SCANLINES] = LoadShader(null, string.Format("resources/shaders/glsl{0}/scanlines.fs", GLSL_VERSION)); + shaders[(int)PostproShader.FX_FISHEYE] = LoadShader(null, string.Format("resources/shaders/glsl{0}/fisheye.fs", GLSL_VERSION)); + shaders[(int)PostproShader.FX_SOBEL] = LoadShader(null, string.Format("resources/shaders/glsl{0}/sobel.fs", GLSL_VERSION)); + shaders[(int)PostproShader.FX_BLOOM] = LoadShader(null, string.Format("resources/shaders/glsl{0}/bloom.fs", GLSL_VERSION)); + shaders[(int)PostproShader.FX_BLUR] = LoadShader(null, string.Format("resources/shaders/glsl{0}/blur.fs", GLSL_VERSION)); int currentShader = (int)PostproShader.FX_GRAYSCALE; diff --git a/Examples/shapes/shapes_logo_raylib_anim.cs b/Examples/shapes/shapes_logo_raylib_anim.cs index 271de61..01976f8 100644 --- a/Examples/shapes/shapes_logo_raylib_anim.cs +++ b/Examples/shapes/shapes_logo_raylib_anim.cs @@ -145,9 +145,7 @@ public partial class shapes_logo_raylib_anim DrawRectangle(screenWidth/2 - 112, screenHeight/2 - 112, 224, 224, Fade(RAYWHITE, alpha)); - // DrawText(SubText("raylib", 0, lettersCount), screenWidth/2 - 44, screenHeight/2 + 48, 50, Fade(BLACK, alpha)); - var text = "raylib"; - DrawText(text.Substring(0, Math.Min(text.Length, lettersCount)), screenWidth/2 - 44, screenHeight/2 + 48, 50, Fade(BLACK, alpha)); + DrawText("raylib".SubText(0, lettersCount), screenWidth/2 - 44, screenHeight/2 + 48, 50, Fade(BLACK, alpha)); } else if (state == 4) { diff --git a/Examples/text/text_bmfont_unordered.cs b/Examples/text/text_bmfont_unordered.cs index 86de67f..23ca10a 100644 --- a/Examples/text/text_bmfont_unordered.cs +++ b/Examples/text/text_bmfont_unordered.cs @@ -49,9 +49,8 @@ public partial class text_bmfont_unordered ClearBackground(RAYWHITE); DrawText("Font name: PixAntiqua", 40, 50, 20, GRAY); - //TODO: Uncomment this code when FormatText is fixed. - // DrawText(FormatText("Font base size: %i", font.baseSize), 40, 80, 20, GRAY); - // DrawText(FormatText("Font chars number: %i", font.charsCount), 40, 110, 20, GRAY); + DrawText(string.Format("Font base size: {0}", font.baseSize), 40, 80, 20, GRAY); + DrawText(string.Format("Font chars number: {0}", font.charsCount), 40, 110, 20, GRAY); DrawTextEx(font, msg, new Vector2(40, 180), font.baseSize, 0, MAROON); diff --git a/Examples/text/text_font_sdf.cs b/Examples/text/text_font_sdf.cs index 5148f75..ad175a8 100644 --- a/Examples/text/text_font_sdf.cs +++ b/Examples/text/text_font_sdf.cs @@ -111,7 +111,7 @@ public partial class text_font_sdf else DrawText("default font", 315, 40, 30, GRAY); DrawText("FONT SIZE: 16.0", GetScreenWidth() - 240, 20, 20, DARKGRAY); - DrawText(FormatText("RENDER SIZE: %02.02f", fontSize), GetScreenWidth() - 240, 50, 20, DARKGRAY); + DrawText(string.Format("RENDER SIZE: {0:00.00}", fontSize), GetScreenWidth() - 240, 50, 20, DARKGRAY); DrawText("Use MOUSE WHEEL to SCALE TEXT!", GetScreenWidth() - 240, 90, 10, DARKGRAY); DrawText("PRESS SPACE to USE SDF FONT VERSION!", 340, GetScreenHeight() - 30, 20, MAROON); diff --git a/Examples/text/text_format_text.cs b/Examples/text/text_format_text.cs index bddced6..148e51b 100644 --- a/Examples/text/text_format_text.cs +++ b/Examples/text/text_format_text.cs @@ -44,14 +44,14 @@ public partial class text_format_text BeginDrawing(); ClearBackground(RAYWHITE); + + DrawText(string.Format("Score: {0:00000000}", score), 200, 80, 20, RED); - DrawText(FormatText("Score: %08i", score), 200, 80, 20, RED); + DrawText(string.Format("HiScore: {0:00000000}", hiscore), 200, 120, 20, GREEN); - DrawText(FormatText("HiScore: %08i", hiscore), 200, 120, 20, GREEN); + DrawText(string.Format("Lives: {0:00}", lives), 200, 160, 40, BLUE); - DrawText(FormatText("Lives: %02i", lives), 200, 160, 40, BLUE); - - DrawText(FormatText("Elapsed Time: %02.02f ms", GetFrameTime()*1000), 200, 220, 20, BLACK); + DrawText(string.Format("Elapsed Time: {0:00.00} ms", GetFrameTime()*1000), 200, 220, 20, BLACK); EndDrawing(); //---------------------------------------------------------------------------------- diff --git a/Examples/text/text_input_box.cs b/Examples/text/text_input_box.cs index 0047811..8f44535 100644 --- a/Examples/text/text_input_box.cs +++ b/Examples/text/text_input_box.cs @@ -84,7 +84,7 @@ public partial class text_input_box DrawText(name.ToString(), (int)textBox.x + 5, (int)textBox.y + 8, 40, MAROON); - DrawText(FormatText("INPUT CHARS: %i/%i", letterCount, MAX_INPUT_CHARS), 315, 250, 20, DARKGRAY); + DrawText(string.Format("INPUT CHARS: {0}/{1}", letterCount, MAX_INPUT_CHARS), 315, 250, 20, DARKGRAY); if (mouseOnText) { diff --git a/Examples/text/text_ttf_loading.cs b/Examples/text/text_ttf_loading.cs index 80a28f0..49ee752 100644 --- a/Examples/text/text_ttf_loading.cs +++ b/Examples/text/text_ttf_loading.cs @@ -111,8 +111,8 @@ public partial class text_ttf_loading //DrawRectangleLines(fontPosition.x, fontPosition.y, textSize.x, textSize.y, RED); DrawRectangle(0, screenHeight - 80, screenWidth, 80, LIGHTGRAY); - DrawText(FormatText("Font size: %02.02f", fontSize), 20, screenHeight - 50, 10, DARKGRAY); - DrawText(FormatText("Text size: [%02.02f, %02.02f]", textSize.x, textSize.y), 20, screenHeight - 30, 10, DARKGRAY); + DrawText(string.Format("Font size: {0:00.00}", fontSize), 20, screenHeight - 50, 10, DARKGRAY); + DrawText(string.Format("Text size: [{0:00.00}, {1:00.00}]", textSize.x, textSize.y), 20, screenHeight - 30, 10, DARKGRAY); DrawText("CURRENT TEXTURE FILTER:", 250, 400, 20, GRAY); if (currentFontFilter == 0) DrawText("POINT", 570, 400, 20, BLACK); diff --git a/Examples/text/text_writing_anim.cs b/Examples/text/text_writing_anim.cs index 7d5eed8..7c5c0bf 100644 --- a/Examples/text/text_writing_anim.cs +++ b/Examples/text/text_writing_anim.cs @@ -48,7 +48,7 @@ public partial class text_writing_anim ClearBackground(RAYWHITE); - DrawText(SubText(message, 0, framesCounter/10), 210, 160, 20, MAROON); + DrawText(message.SubText(0, framesCounter/10), 210, 160, 20, MAROON); DrawText("PRESS [ENTER] to RESTART!", 240, 260, 20, LIGHTGRAY); DrawText("PRESS [SPACE] to SPEED UP!", 239, 300, 20, LIGHTGRAY); diff --git a/Examples/textures/textures_rectangle.cs b/Examples/textures/textures_rectangle.cs index 67c34c4..aa21835 100644 --- a/Examples/textures/textures_rectangle.cs +++ b/Examples/textures/textures_rectangle.cs @@ -75,7 +75,7 @@ public partial class textures_rectangle DrawRectangleLines(15 + (int)frameRec.x, 40 + (int)frameRec.y, (int)frameRec.width, (int)frameRec.height, RED); DrawText("FRAME SPEED: ", 165, 210, 10, DARKGRAY); - DrawText(FormatText("%02i FPS", framesSpeed), 575, 210, 10, DARKGRAY); + DrawText(string.Format("{0:00} FPS", framesSpeed), 575, 210, 10, DARKGRAY); DrawText("PRESS RIGHT/LEFT KEYS to CHANGE SPEED!", 290, 240, 10, DARKGRAY); for (int i = 0; i < MAX_FRAME_SPEED; i++)