|
| 1 | + |
| 2 | +#include "raylib.h" |
| 3 | + |
| 4 | +#define RAYGUI_IMPLEMENTATION |
| 5 | +#include "raygui.h" |
| 6 | + |
| 7 | +//------------------------------------------------------------------------------------ |
| 8 | +// Program main entry point |
| 9 | +//------------------------------------------------------------------------------------ |
| 10 | +int main(void) |
| 11 | +{ |
| 12 | + // Initialization |
| 13 | + //-------------------------------------------------------------------------------------- |
| 14 | + const int screenWidth = 800; |
| 15 | + const int screenHeight = 450; |
| 16 | + |
| 17 | + // Variables |
| 18 | + bool showTextInputBox = false; |
| 19 | + bool checked = false; |
| 20 | + |
| 21 | + InitWindow(screenWidth, screenHeight, "Raylib CMake Starter"); |
| 22 | + SetTargetFPS(60); // Set our game to run at 60 frames-per-second |
| 23 | + SetWindowState(FLAG_WINDOW_RESIZABLE); |
| 24 | + //-------------------------------------------------------------------------------------- |
| 25 | + |
| 26 | + // GUI: Initialize gui parameters |
| 27 | + // GuiLoadStyle("/Users/ryan/code/projects/raylib-cmake-starter/vendor/raygui/styles/cyber/cyber.rgs"); |
| 28 | + GuiLoadStyle("/Users/ryan/code/projects/raylib-cmake-starter/vendor/raygui/styles/jungle/jungle.rgs"); |
| 29 | + |
| 30 | + // Main game loop |
| 31 | + while (!WindowShouldClose()) // Detect window close button or ESC key |
| 32 | + { |
| 33 | + // Update |
| 34 | + //---------------------------------------------------------------------------------- |
| 35 | + // TODO: Update your variables here |
| 36 | + //---------------------------------------------------------------------------------- |
| 37 | + |
| 38 | + // Draw |
| 39 | + //---------------------------------------------------------------------------------- |
| 40 | + BeginDrawing(); |
| 41 | + |
| 42 | + ClearBackground(GetColor(GuiGetStyle(DEFAULT, BACKGROUND_COLOR))); |
| 43 | + |
| 44 | + if (GuiButton((Rectangle){ 25, 255, 125, 30 }, "Push me!")) { |
| 45 | + printf("Button clicked!\n"); |
| 46 | + } |
| 47 | + |
| 48 | + // Add a checkbox |
| 49 | + GuiCheckBox((Rectangle){ 25, 290, 20, 20 }, "Check me", &checked); |
| 50 | + |
| 51 | + DrawText("Congrats! You created your first window!", 190, 200, 20, LIGHTGRAY); |
| 52 | + |
| 53 | + EndDrawing(); |
| 54 | + //---------------------------------------------------------------------------------- |
| 55 | + } |
| 56 | + |
| 57 | + // De-Initialization |
| 58 | + //-------------------------------------------------------------------------------------- |
| 59 | + CloseWindow(); // Close window and OpenGL context |
| 60 | + //-------------------------------------------------------------------------------------- |
| 61 | + |
| 62 | + return 0; |
| 63 | +} |
0 commit comments