This commit is contained in:
Jeffery Myers 2024-08-17 08:53:09 -07:00
parent 9abfee362a
commit 9049a646a1
5 changed files with 45 additions and 13 deletions

View file

@ -3,7 +3,7 @@
{
"name": "Win32",
"includePath": [
"${workspaceFolder}/build/external/raylib-master/src/",
"${workspaceFolder}/build/external/raylib-master/src/**",
"${workspaceFolder}/include/**",
"${workspaceFolder}/src/**"
],
@ -21,7 +21,7 @@
{
"name": "Mac",
"includePath": [
"${workspaceFolder}/build/external/raylib-master/src/",
"${workspaceFolder}/build/external/raylib-master/src/**",
"${workspaceFolder}/include/**",
"${workspaceFolder}/src/**"
],
@ -43,7 +43,7 @@
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/build/external/raylib-master/src/",
"${workspaceFolder}/build/external/raylib-master/src/**",
"${workspaceFolder}/include/**",
"${workspaceFolder}/src/**"
],

View file

@ -1,7 +1,13 @@
# Raylib-Quickstart
Work in process quickstart for raylib using premake
A simple cross platform template for raylib.
# VSCode Users
## Supported Platforms
Quickstart supports the main 3 desktop platforms
* Windows
* Linux
* MacOS
# VSCode Users (all platforms)
* Download the quickstart
* Rename the folder to your game name
* Open the folder in VSCode.
@ -11,19 +17,27 @@ Work in process quickstart for raylib using premake
# Windows Users
There are two compiler toolchains avialble for windows, MinGW-W64 (a free compiler using GCC), and Microsoft Visual Studio
## Using MinGW-W64
* Double click the premake-mingw.bat file.
* Double click the build-MinGW-W64.bat file.
* cd into the folder in your terminal
* run make
* you are good to go
* You are good to go
### Note on MinGW-64 versions
Make sure you have a modern version of MinGW-W64 (not mingw).
The best place to get it is from the W64devkit from
https://github.com/skeeto/w64devkit/releases
or the version installed with the raylib installer, just make sure to add the C:\raylib\w64devkit\bin to your path if you used the raylib installer
or the version installed with the raylib installer
#### If you have installed rayib from the installer
Make sure you have added the path
C:\raylib\w64devkit\bin
To your path environment varialbe so that the compiler that came with raylib can be found..
DO NOT INSALL ANOTHER MinGW-W64 from another source such as msys2, you don't need it.
## Microsoft Visual Studio
* Run the premake-VisualStudio.bat
* Run the build-VisualStudio2022.bat
* double click the .sln file that is geneated.
* develop your game
* you are good to go.
@ -38,6 +52,9 @@ or the version installed with the raylib installer, just make sure to add the C:
# Output files
The built code will be in the bin dir
# Working directories and the resources folder
The example uses a utility function from path_utils.h that will find the resources dir and set it as the current working directory. This is very useful when starting out. If you wish to manage your own working directory you can simply remove the call to the function and the header.
# Building for other OpenGL targets
If you need to build for a different OpenGL version than the default (OpenGL 3.3) you can specify an openGL version in your premake command line. Just modify the bat file or add the following to your command line

View file

@ -3,7 +3,7 @@ Raylib example file.
This is an example main file for a simple raylib project.
Use this as a starting point or replace it with your code.
For a C++ project simply rename the file to .cpp and run premake
For a C++ project simply rename the file to .cpp and re-run the build script
-- Copyright (c) 2020-2024 Jeffery Myers
--
@ -25,32 +25,47 @@ For a C++ project simply rename the file to .cpp and run premake
*/
#include "raylib.h"
#include "resource_dir.h"
#include "resource_dir.h" // utility header for SearchAndSetResourceDir
int main ()
{
// set up the window
// Tell the window to use vysnc and work on high DPI displays
SetConfigFlags(FLAG_VSYNC_HINT | FLAG_WINDOW_HIGHDPI);
// Create the window and OpenGL context
InitWindow(1280, 800, "Hello Raylib");
// Utility function from resource_dir.h to find the resources folder and set it as the current working directory so we can load from it
SearchAndSetResourceDir("resources");
// Load a texture from the resources directory
Texture wabbit = LoadTexture("wabbit_alpha.png");
// game loop
while (!WindowShouldClose())
while (!WindowShouldClose()) // run the loop untill the user presses ESCAPE or presses the Close button on the window
{
// drawing
BeginDrawing();
// Setup the backbuffer for drawing (clear color and depth buffers)
ClearBackground(BLACK);
// draw some text using the default font
DrawText("Hello Raylib", 200,200,20,WHITE);
// draw our texture to the screen
DrawTexture(wabbit, 400, 200, WHITE);
// end the frame and get ready for the next one (display frame, poll input, etc...)
EndDrawing();
}
// cleanup
// unload our texture so it can be cleaned up
UnloadTexture(wabbit);
// destory the window and cleanup the OpenGL context
CloseWindow();
return 0;
}