mirror of
https://github.com/raylib-cs/raylib-cs
synced 2025-04-03 11:09:40 -04:00
167 lines
5.3 KiB
C#
167 lines
5.3 KiB
C#
/*******************************************************************************************
|
|
*
|
|
* raylib [text] example - Input Box
|
|
*
|
|
* This example has been created using raylib 1.7 (www.raylib.com)
|
|
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
|
|
*
|
|
* Copyright (c) 2017 Ramon Santamaria (@raysan5)
|
|
*
|
|
********************************************************************************************/
|
|
|
|
using static Raylib_cs.Raylib;
|
|
|
|
namespace Examples.Text;
|
|
|
|
public class InputBox
|
|
{
|
|
public const int MaxInputChars = 9;
|
|
|
|
public static int Main()
|
|
{
|
|
// Initialization
|
|
//--------------------------------------------------------------------------------------
|
|
const int screenWidth = 800;
|
|
const int screenHeight = 450;
|
|
|
|
InitWindow(screenWidth, screenHeight, "raylib [text] example - input box");
|
|
|
|
// NOTE: One extra space required for line ending char '\0'
|
|
char[] name = new char[MaxInputChars];
|
|
int letterCount = 0;
|
|
|
|
Rectangle textBox = new(screenWidth / 2 - 100, 180, 225, 50);
|
|
bool mouseOnText = false;
|
|
|
|
int framesCounter = 0;
|
|
|
|
SetTargetFPS(60);
|
|
//--------------------------------------------------------------------------------------
|
|
|
|
// Main game loop
|
|
while (!WindowShouldClose())
|
|
{
|
|
// Update
|
|
//----------------------------------------------------------------------------------
|
|
if (CheckCollisionPointRec(GetMousePosition(), textBox))
|
|
{
|
|
mouseOnText = true;
|
|
}
|
|
else
|
|
{
|
|
mouseOnText = false;
|
|
}
|
|
|
|
if (mouseOnText)
|
|
{
|
|
// Set the window's cursor to the I-Beam
|
|
SetMouseCursor(MouseCursor.IBeam);
|
|
|
|
// Check if more characters have been pressed on the same frame
|
|
int key = GetCharPressed();
|
|
|
|
while (key > 0)
|
|
{
|
|
// NOTE: Only allow keys in range [32..125]
|
|
if ((key >= 32) && (key <= 125) && (letterCount < MaxInputChars))
|
|
{
|
|
name[letterCount] = (char)key;
|
|
letterCount++;
|
|
}
|
|
|
|
// Check next character in the queue
|
|
key = GetCharPressed();
|
|
}
|
|
|
|
if (IsKeyPressed(KeyboardKey.Backspace))
|
|
{
|
|
letterCount -= 1;
|
|
if (letterCount < 0)
|
|
{
|
|
letterCount = 0;
|
|
}
|
|
name[letterCount] = '\0';
|
|
}
|
|
}
|
|
else
|
|
{
|
|
SetMouseCursor(MouseCursor.Default);
|
|
}
|
|
|
|
if (mouseOnText)
|
|
{
|
|
framesCounter += 1;
|
|
}
|
|
else
|
|
{
|
|
framesCounter = 0;
|
|
}
|
|
//----------------------------------------------------------------------------------
|
|
|
|
// Draw
|
|
//----------------------------------------------------------------------------------
|
|
BeginDrawing();
|
|
ClearBackground(Color.RayWhite);
|
|
|
|
DrawText("PLACE MOUSE OVER INPUT BOX!", 240, 140, 20, Color.Gray);
|
|
DrawRectangleRec(textBox, Color.LightGray);
|
|
|
|
if (mouseOnText)
|
|
{
|
|
DrawRectangleLines(
|
|
(int)textBox.X,
|
|
(int)textBox.Y,
|
|
(int)textBox.Width,
|
|
(int)textBox.Height,
|
|
Color.Red
|
|
);
|
|
}
|
|
else
|
|
{
|
|
DrawRectangleLines(
|
|
(int)textBox.X,
|
|
(int)textBox.Y,
|
|
(int)textBox.Width,
|
|
(int)textBox.Height,
|
|
Color.DarkGray
|
|
);
|
|
}
|
|
|
|
DrawText(new string(name), (int)textBox.X + 5, (int)textBox.Y + 8, 40, Color.Maroon);
|
|
DrawText($"INPUT CHARS: {letterCount}/{MaxInputChars}", 315, 250, 20, Color.DarkGray);
|
|
|
|
if (mouseOnText)
|
|
{
|
|
if (letterCount < MaxInputChars)
|
|
{
|
|
// Draw blinking underscore char
|
|
if ((framesCounter / 20 % 2) == 0)
|
|
{
|
|
DrawText(
|
|
"_",
|
|
(int)textBox.X + 8 + MeasureText(new string(name), 40),
|
|
(int)textBox.Y + 12,
|
|
40,
|
|
Color.Maroon
|
|
);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
DrawText("Press BACKSPACE to delete chars...", 230, 300, 20, Color.Gray);
|
|
}
|
|
}
|
|
|
|
EndDrawing();
|
|
//----------------------------------------------------------------------------------
|
|
}
|
|
|
|
// De-Initialization
|
|
//--------------------------------------------------------------------------------------
|
|
CloseWindow();
|
|
//--------------------------------------------------------------------------------------
|
|
|
|
return 0;
|
|
}
|
|
}
|