Skip to content

Commit 65d10da

Browse files
authored
Initial commit
0 parents  commit 65d10da

File tree

11 files changed

+126
-0
lines changed

11 files changed

+126
-0
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
build/
2+
vendor/angle/out
3+
.vscode/

.gitmodules

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[submodule "vendor/raylib"]
2+
path = vendor/raylib
3+
url = https://github.com/raysan5/raylib.git
4+
[submodule "vendor/raygui"]
5+
path = vendor/raygui
6+
url = https://github.com/raysan5/raygui.git

CMakeLists.txt

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
cmake_minimum_required(VERSION 3.16)
2+
3+
project(raylib-starter)
4+
5+
set(CMAKE_CXX_STANDARD 14)
6+
7+
add_subdirectory(vendor/raylib)
8+
9+
file(GLOB_RECURSE SOURCES "src/*.cpp")
10+
add_executable(${PROJECT_NAME} ${SOURCES})
11+
12+
# Add raylib include directory
13+
target_include_directories(${PROJECT_NAME} PRIVATE vendor/raylib/src)
14+
15+
# Add raygui include directory
16+
target_include_directories(${PROJECT_NAME} PRIVATE vendor/raygui/src)
17+
18+
# Raygui build command:
19+
# gcc -o raygui.dynlib src/raygui.c -shared -fpic -DRAYGUI_IMPLEMENTATION -framework OpenGL -lm -lpthread -ldl $(pkg-config --libs --cflags raylib)
20+
21+
target_link_libraries(${PROJECT_NAME} raylib)

README.md

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Raylib CMake Starter for C++
2+
3+
This is a starter project for using [Raylib](https://www.raylib.com/) with C++ and CMake.
4+
**WARNING: Only tested on MacOS**
5+
6+
7+
## Getting Started
8+
9+
1. Clone this repository
10+
2. Initialize the submodules: `git submodule update --init --recursive`
11+
3. Build `./b`
12+
5. Run `./r`
13+
14+
## TODO
15+
16+
- [ ] Support for ANGLE
17+
- [ ] Support more Platforms

b

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/bin/bash
2+
3+
cmake -B build
4+
cmake --build build

bootstrap

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
3+
git submodule update --init --recursive

br

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/bin/bash
2+
3+
./b
4+
./r

r

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
3+
./build/raylib-starter

src/main.cpp

+63
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
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+
}

vendor/raygui

Submodule raygui added at d72e70b

vendor/raylib

Submodule raylib added at 15cbf31

0 commit comments

Comments
 (0)