2
0
mirror of https://github.com/raylib-cs/raylib-cs synced 2025-04-03 11:09:40 -04:00

Added console menu and improved raylib example

- Added comments to basic raylib example.
- Added console menu to choose between binding generation, example and exit.
This commit is contained in:
ChrisDill 2018-07-26 16:01:16 +01:00
parent fa0e902d31
commit 167a31f7b1

View File

@ -1,54 +1,82 @@
using CppSharp; using System;
using CppSharp;
using raylib; using raylib;
using static raylib.raymath;
using static raylib.raylib; using static raylib.raylib;
using System;
namespace Raylibcs namespace Raylibcs
{ {
class Program class Program
{ {
// TODO: setup windows forms gui
static void Main(string[] args) static void Main(string[] args)
{ {
// ConsoleDriver.Run(new SampleLibrary()); Console.WriteLine("Raylib-cs generator");
Test();
// Console.Read(); while (true)
{
Console.WriteLine();
Console.WriteLine("1. Regenerate bindings in .exe folder");
Console.WriteLine("2. Run test example, requires raylib.dll in .exe folder");
Console.WriteLine("3. Exit");
var choice = Console.ReadLine();
if (choice == "1")
{
ConsoleDriver.Run(new SampleLibrary());
}
else if (choice == "2")
{
Test();
}
else if (choice == "3")
{
break;
}
}
} }
public static void Test() public static int Test()
{ {
InitWindow(800, 450, "Raylib-cs [2.0]"); var RAYWHITE = new Color { R = 255, G = 255, B = 255, A = 255 };
InitAudioDevice(); var MAROON = new Color { R = 0, G = 0, B = 0, A = 255 };
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 800;
int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "Raylib-cs [core] example - basic window");
SetTargetFPS(60); SetTargetFPS(60);
SetExitKey(256); //--------------------------------------------------------------------------------------
var sound = LoadSound("Data/alive.wav");
// PlaySound(sound);
var t = LoadTexture("Data/test.png"); // Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key
int a = 0;
var f = LoadFontEx("Data/Vera.ttf", 96, 0, ref a);
var c = new Color();
c.R = 255;
c.G = 255;
c.B = 255;
c.A = 255;
while (!WindowShouldClose())
{ {
// Update
//----------------------------------------------------------------------------------
// TODO: Update your variables here
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing(); BeginDrawing();
ClearBackground(c);
DrawTexture(t, 0, 0, c); ClearBackground(RAYWHITE);
// DrawTextEx(f, "testing", new Vector2 { X = 100, Y = 100 }, 20, 10, c);
// DrawFPS(0, 0); DrawText("Congrats! You created your first window!", 190, 200, 20, MAROON);
DrawFPS(0, 0);
EndDrawing(); EndDrawing();
//----------------------------------------------------------------------------------
} }
UnloadTexture(t); // De-Initialization
CloseAudioDevice(); //--------------------------------------------------------------------------------------
CloseWindow(); CloseWindow(); // Close window and OpenGL context
//-----------------------------
return 0;
} }
} }
} }