diff --git a/ExampleApplication/Raylib-cs/DrawControl.cs b/ExampleApplication/DrawControl.cs
similarity index 65%
rename from ExampleApplication/Raylib-cs/DrawControl.cs
rename to ExampleApplication/DrawControl.cs
index d26e090..291855b 100644
--- a/ExampleApplication/Raylib-cs/DrawControl.cs
+++ b/ExampleApplication/DrawControl.cs
@@ -2,6 +2,7 @@
using System.Drawing;
using System.Runtime.InteropServices;
using System.Windows.Forms;
+using static Raylib.rl;
namespace Raylib
{
@@ -28,11 +29,24 @@ namespace Raylib
panel.Location = new Point(80, 10);
panel.BackColor = System.Drawing.Color.Red;
Controls.Add(panel);
+ }
+
+ private void InitializeComponent()
+ {
+ this.SuspendLayout();
+ //
+ // DrawControl
+ //
+ this.ClientSize = new System.Drawing.Size(284, 261);
+ this.Name = "DrawControl";
+ this.Load += new System.EventHandler(this.DrawControl_Load);
+ this.ResumeLayout(false);
+
+ }
+
+ private void DrawControl_Load(object sender, EventArgs e)
+ {
- // TODO: get raylib window handle?
- IntPtr winHandle = IntPtr.Zero;
- SetParent(winHandle, panel.Handle);
- ShowWindow(winHandle, 1);
}
}
}
\ No newline at end of file
diff --git a/ExampleApplication/Raylib-cs/DrawControl.resx b/ExampleApplication/DrawControl.resx
similarity index 100%
rename from ExampleApplication/Raylib-cs/DrawControl.resx
rename to ExampleApplication/DrawControl.resx
diff --git a/ExampleApplication/Easings.cs b/ExampleApplication/Easings.cs
new file mode 100644
index 0000000..94f2d16
--- /dev/null
+++ b/ExampleApplication/Easings.cs
@@ -0,0 +1,27 @@
+
+using System;
+using System.Runtime.InteropServices;
+
+namespace Raylib
+{
+ #region Raylib-cs Enums
+
+ #endregion
+
+ #region Raylib-cs Types
+
+
+ #endregion
+
+ public static partial class rl
+ {
+ #region Raylib-cs Variables
+
+ #endregion
+
+ #region Raylib-cs Functions
+
+ #endregion
+
+ }
+}
diff --git a/ExampleApplication/ExampleApplication.csproj b/ExampleApplication/ExampleApplication.csproj
index 5988753..a3568eb 100644
--- a/ExampleApplication/ExampleApplication.csproj
+++ b/ExampleApplication/ExampleApplication.csproj
@@ -34,7 +34,7 @@
true
- bin\x64\Debug\
+ bin\Debug\
DEBUG;TRACE
true
full
@@ -55,7 +55,7 @@
true
- bin\x86\Debug\
+ bin\Debug\
DEBUG;TRACE
true
full
@@ -81,168 +81,24 @@
-
-
-
-
-
-
-
+
+
Form
-
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
DrawControl.cs
diff --git a/ExampleApplication/Examples/audio/audio_module_playing.cs b/ExampleApplication/Examples/audio/audio_module_playing.cs
index 7126d9b..164b948 100644
--- a/ExampleApplication/Examples/audio/audio_module_playing.cs
+++ b/ExampleApplication/Examples/audio/audio_module_playing.cs
@@ -1,147 +1,8 @@
-/*******************************************************************************************
-*
-* raylib [audio] example - Module playing (streaming)
-*
-* NOTE: This example requires OpenAL Soft library installed
-*
-* This example has been created using raylib 1.5 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
-*
-* Copyright (c) 2016 Ramon Santamaria (@raysan5)
-*
-********************************************************************************************/
-
-using Raylib;
-using static Raylib.rl;
-
-public partial class Examples
-{
- class CircleWave
- {
- public Vector2 position = new Vector2();
- public float radius;
- public float alpha;
- public float speed;
- public Color color;
- }
-
- public static int audio_module_playing()
- {
- // Initialization
- //--------------------------------------------------------------------------------------
- int screenWidth = 800;
- int screenHeight = 450;
-
- const int MAX_CIRCLES = 64;
-
- //SetConfigFlags((int)Flag.MSAA_4X_HINT); // NOTE: Try to enable MSAA 4X
-
- InitWindow(screenWidth, screenHeight, "raylib [audio] example - module playing (streaming)");
-
- InitAudioDevice(); // Initialize audio device
-
- Color[] colors = new Color[] { ORANGE, RED, GOLD, LIME, BLUE, VIOLET, BROWN, LIGHTGRAY, PINK,
- YELLOW, GREEN, SKYBLUE, PURPLE, BEIGE };
-
- // Creates ome circles for visual effect
- CircleWave[] circles = new CircleWave[MAX_CIRCLES];
-
- for (int i = MAX_CIRCLES - 1; i >= 0; i--)
- {
- circles[i] = new CircleWave();
- circles[i].alpha = 0.0f;
- circles[i].radius = GetRandomValue(10, 40);
- circles[i].position.x = GetRandomValue((int)circles[i].radius, (int)(screenWidth - circles[i].radius));
- circles[i].position.y = GetRandomValue((int)circles[i].radius, (int)(screenHeight - circles[i].radius));
- circles[i].speed = (float)GetRandomValue(1, 100)/20000.0f;
- circles[i].color = colors[GetRandomValue(0, 13)];
- }
-
- var xm = LoadMusicStream("resources/mini1111.xm");
-
- PlayMusicStream(xm);
-
- float timePlayed = 0.0f;
- bool pause = false;
-
- SetTargetFPS(60); // Set our game to run at 60 frames-per-second
- //--------------------------------------------------------------------------------------
-
- // Main game loop
- while (!WindowShouldClose()) // Detect window close button or ESC key
- {
- // Update
- //----------------------------------------------------------------------------------
- UpdateMusicStream(xm); // Update music buffer with new stream data
-
- // Restart music playing (stop and play)
- if (IsKeyPressed((int)Key.SPACE))
- {
- StopMusicStream(xm);
- PlayMusicStream(xm);
- }
-
- // Pause/Resume music playing
- if (IsKeyPressed((int)Key.P))
- {
- pause = !pause;
-
- if (pause) PauseMusicStream(xm);
- else ResumeMusicStream(xm);
- }
-
- // Get timePlayed scaled to bar dimensions
- timePlayed = GetMusicTimePlayed(xm)/GetMusicTimeLength(xm)*(screenWidth - 40);
-
- // Color circles animation
- for (int i = MAX_CIRCLES - 1; (i >= 0) && !pause; i--)
- {
- circles[i].alpha += circles[i].speed;
- circles[i].radius += circles[i].speed*10.0f;
-
- if (circles[i].alpha > 1.0f) circles[i].speed *= -1;
-
- if (circles[i].alpha <= 0.0f)
- {
- circles[i].alpha = 0.0f;
- circles[i].radius = GetRandomValue(10, 40);
- circles[i].position.x = GetRandomValue((int)circles[i].radius, (int)(screenWidth - circles[i].radius));
- circles[i].position.y = GetRandomValue((int)circles[i].radius, (int)(screenHeight - circles[i].radius));
- circles[i].color = colors[GetRandomValue(0, 13)];
- circles[i].speed = (float)GetRandomValue(1, 100)/20000.0f;
- }
- }
- //----------------------------------------------------------------------------------
-
- // Draw
- //----------------------------------------------------------------------------------
- BeginDrawing();
-
- ClearBackground(RAYWHITE);
-
- for (int i = MAX_CIRCLES - 1; i >= 0; i--)
- {
- DrawCircleV(circles[i].position, circles[i].radius, Fade(circles[i].color, circles[i].alpha));
- }
-
- // Draw time bar
- DrawRectangle(20, screenHeight - 20 - 12, screenWidth - 40, 12, LIGHTGRAY);
- DrawRectangle(20, screenHeight - 20 - 12, (int)timePlayed, 12, MAROON);
- DrawRectangleLines(20, screenHeight - 20 - 12, screenWidth - 40, 12, GRAY);
-
- EndDrawing();
- //----------------------------------------------------------------------------------
- }
-
- // De-Initialization
- //--------------------------------------------------------------------------------------
- UnloadMusicStream(xm); // Unload music stream buffers from RAM
-
- CloseAudioDevice(); // Close audio device (music streaming is automatically stopped)
-
- CloseWindow(); // Close window and OpenGL context
- //--------------------------------------------------------------------------------------
-
- return 0;
- }
+
+using Raylib;
+using static Raylib.rl;
+
+public partial class Examples
+{
+ /*******************************************************************************************
*
* raylib [audio] example - Module playing (streaming)
*
* NOTE: This example requires OpenAL Soft library installed
*
* This example has been created using raylib 1.5 (www.raylib.com)
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
*
* Copyright (c) 2016 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
private const int MAX_CIRCLES 64
struct {
Vector2 position;
float radius;
float alpha;
float speed;
Color color;
} CircleWave;
public static int audio_module_playing()
{
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 800;
int screenHeight = 450;
SetConfigFlags(FLAG_MSAA_4X_HINT); // NOTE: Try to enable MSAA 4X
InitWindow(screenWidth, screenHeight, "raylib [audio] example - module playing (streaming)");
InitAudioDevice(); // Initialize audio device
Color colors[14] = { ORANGE, RED, GOLD, LIME, BLUE, VIOLET, BROWN, LIGHTGRAY, PINK,
YELLOW, GREEN, SKYBLUE, PURPLE, BEIGE };
// Creates ome circles for visual effect
CircleWave circles[MAX_CIRCLES];
for (int i = MAX_CIRCLES - 1; i >= 0; i--)
{
circles[i].alpha = 0.0f;
circles[i].radius = GetRandomValue(10, 40);
circles[i].position.x = GetRandomValue(circles[i].radius, screenWidth - circles[i].radius);
circles[i].position.y = GetRandomValue(circles[i].radius, screenHeight - circles[i].radius);
circles[i].speed = (float)GetRandomValue(1, 100)/20000.0f;
circles[i].color = colors[GetRandomValue(0, 13)];
}
Music xm = LoadMusicStream("resources/mini1111.xm");
PlayMusicStream(xm);
float timePlayed = 0.0f;
bool pause = false;
SetTargetFPS(60); // Set our game to run at 60 frames-per-second
//--------------------------------------------------------------------------------------
// Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key
{
// Update
//----------------------------------------------------------------------------------
UpdateMusicStream(xm); // Update music buffer with new stream data
// Restart music playing (stop and play)
if (IsKeyPressed(KEY_SPACE))
{
StopMusicStream(xm);
PlayMusicStream(xm);
}
// Pause/Resume music playing
if (IsKeyPressed(KEY_P))
{
pause = !pause;
if (pause) PauseMusicStream(xm);
else ResumeMusicStream(xm);
}
// Get timePlayed scaled to bar dimensions
timePlayed = GetMusicTimePlayed(xm)/GetMusicTimeLength(xm)*(screenWidth - 40);
// Color circles animation
for (int i = MAX_CIRCLES - 1; (i >= 0) && !pause; i--)
{
circles[i].alpha += circles[i].speed;
circles[i].radius += circles[i].speed*10.0f;
if (circles[i].alpha > 1.0f) circles[i].speed *= -1;
if (circles[i].alpha <= 0.0f)
{
circles[i].alpha = 0.0f;
circles[i].radius = GetRandomValue(10, 40);
circles[i].position.x = GetRandomValue(circles[i].radius, screenWidth - circles[i].radius);
circles[i].position.y = GetRandomValue(circles[i].radius, screenHeight - circles[i].radius);
circles[i].color = colors[GetRandomValue(0, 13)];
circles[i].speed = (float)GetRandomValue(1, 100)/20000.0f;
}
}
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
ClearBackground(RAYWHITE);
for (int i = MAX_CIRCLES - 1; i >= 0; i--)
{
DrawCircleV(circles[i].position, circles[i].radius, Fade(circles[i].color, circles[i].alpha));
}
// Draw time bar
DrawRectangle(20, screenHeight - 20 - 12, screenWidth - 40, 12, LIGHTGRAY);
DrawRectangle(20, screenHeight - 20 - 12, (int)timePlayed, 12, MAROON);
DrawRectangleLines(20, screenHeight - 20 - 12, screenWidth - 40, 12, GRAY);
EndDrawing();
//----------------------------------------------------------------------------------
}
// De-Initialization
//--------------------------------------------------------------------------------------
UnloadMusicStream(xm); // Unload music stream buffers from RAM
CloseAudioDevice(); // Close audio device (music streaming is automatically stopped)
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
return 0;
}
}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/audio/audio_music_stream.c b/ExampleApplication/Examples/audio/audio_music_stream.c
deleted file mode 100644
index f9fe23d..0000000
--- a/ExampleApplication/Examples/audio/audio_music_stream.c
+++ /dev/null
@@ -1,93 +0,0 @@
-/*******************************************************************************************
-*
-* raylib [audio] example - Music playing (streaming)
-*
-* NOTE: This example requires OpenAL Soft library installed
-*
-* This example has been created using raylib 1.3 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
-*
-* Copyright (c) 2015 Ramon Santamaria (@raysan5)
-*
-********************************************************************************************/
-
-#include "raylib.h"
-
-int main()
-{
- // Initialization
- //--------------------------------------------------------------------------------------
- int screenWidth = 800;
- int screenHeight = 450;
-
- InitWindow(screenWidth, screenHeight, "raylib [audio] example - music playing (streaming)");
-
- InitAudioDevice(); // Initialize audio device
-
- Music music = LoadMusicStream("resources/guitar_noodling.ogg");
-
- PlayMusicStream(music);
-
- float timePlayed = 0.0f;
- bool pause = false;
-
- SetTargetFPS(60); // Set our game to run at 60 frames-per-second
- //--------------------------------------------------------------------------------------
-
- // Main game loop
- while (!WindowShouldClose()) // Detect window close button or ESC key
- {
- // Update
- //----------------------------------------------------------------------------------
- UpdateMusicStream(music); // Update music buffer with new stream data
-
- // Restart music playing (stop and play)
- if (IsKeyPressed(KEY_SPACE))
- {
- StopMusicStream(music);
- PlayMusicStream(music);
- }
-
- // Pause/Resume music playing
- if (IsKeyPressed(KEY_P))
- {
- pause = !pause;
-
- if (pause) PauseMusicStream(music);
- else ResumeMusicStream(music);
- }
-
- // Get timePlayed scaled to bar dimensions (400 pixels)
- timePlayed = GetMusicTimePlayed(music)/GetMusicTimeLength(music)*400;
- //----------------------------------------------------------------------------------
-
- // Draw
- //----------------------------------------------------------------------------------
- BeginDrawing();
-
- ClearBackground(RAYWHITE);
-
- DrawText("MUSIC SHOULD BE PLAYING!", 255, 150, 20, LIGHTGRAY);
-
- DrawRectangle(200, 200, 400, 12, LIGHTGRAY);
- DrawRectangle(200, 200, (int)timePlayed, 12, MAROON);
- DrawRectangleLines(200, 200, 400, 12, GRAY);
-
- DrawText("PRESS SPACE TO RESTART MUSIC", 215, 250, 20, LIGHTGRAY);
- DrawText("PRESS P TO PAUSE/RESUME MUSIC", 208, 280, 20, LIGHTGRAY);
-
- EndDrawing();
- //----------------------------------------------------------------------------------
- }
-
- // De-Initialization
- //--------------------------------------------------------------------------------------
- UnloadMusicStream(music); // Unload music stream buffers from RAM
-
- CloseAudioDevice(); // Close audio device (music streaming is automatically stopped)
-
- CloseWindow(); // Close window and OpenGL context
- //--------------------------------------------------------------------------------------
-
- return 0;
-}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/audio/audio_music_stream.cs b/ExampleApplication/Examples/audio/audio_music_stream.cs
new file mode 100644
index 0000000..b677b73
--- /dev/null
+++ b/ExampleApplication/Examples/audio/audio_music_stream.cs
@@ -0,0 +1,8 @@
+
+using Raylib;
+using static Raylib.rl;
+
+public partial class Examples
+{
+ /*******************************************************************************************
*
* raylib [audio] example - Music playing (streaming)
*
* NOTE: This example requires OpenAL Soft library installed
*
* This example has been created using raylib 1.3 (www.raylib.com)
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
*
* Copyright (c) 2015 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
public static int audio_music_stream()
{
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 800;
int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "raylib [audio] example - music playing (streaming)");
InitAudioDevice(); // Initialize audio device
Music music = LoadMusicStream("resources/guitar_noodling.ogg");
PlayMusicStream(music);
float timePlayed = 0.0f;
bool pause = false;
SetTargetFPS(60); // Set our game to run at 60 frames-per-second
//--------------------------------------------------------------------------------------
// Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key
{
// Update
//----------------------------------------------------------------------------------
UpdateMusicStream(music); // Update music buffer with new stream data
// Restart music playing (stop and play)
if (IsKeyPressed(KEY_SPACE))
{
StopMusicStream(music);
PlayMusicStream(music);
}
// Pause/Resume music playing
if (IsKeyPressed(KEY_P))
{
pause = !pause;
if (pause) PauseMusicStream(music);
else ResumeMusicStream(music);
}
// Get timePlayed scaled to bar dimensions (400 pixels)
timePlayed = GetMusicTimePlayed(music)/GetMusicTimeLength(music)*400;
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
ClearBackground(RAYWHITE);
DrawText("MUSIC SHOULD BE PLAYING!", 255, 150, 20, LIGHTGRAY);
DrawRectangle(200, 200, 400, 12, LIGHTGRAY);
DrawRectangle(200, 200, (int)timePlayed, 12, MAROON);
DrawRectangleLines(200, 200, 400, 12, GRAY);
DrawText("PRESS SPACE TO RESTART MUSIC", 215, 250, 20, LIGHTGRAY);
DrawText("PRESS P TO PAUSE/RESUME MUSIC", 208, 280, 20, LIGHTGRAY);
EndDrawing();
//----------------------------------------------------------------------------------
}
// De-Initialization
//--------------------------------------------------------------------------------------
UnloadMusicStream(music); // Unload music stream buffers from RAM
CloseAudioDevice(); // Close audio device (music streaming is automatically stopped)
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
return 0;
}
+}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/audio/audio_raw_stream.c b/ExampleApplication/Examples/audio/audio_raw_stream.c
deleted file mode 100644
index 80c83e9..0000000
--- a/ExampleApplication/Examples/audio/audio_raw_stream.c
+++ /dev/null
@@ -1,114 +0,0 @@
-/*******************************************************************************************
-*
-* raylib [audio] example - Raw audio streaming
-*
-* NOTE: This example requires OpenAL Soft library installed
-*
-* This example has been created using raylib 1.6 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
-*
-* Copyright (c) 2015 Ramon Santamaria (@raysan5)
-*
-********************************************************************************************/
-
-#include "raylib.h"
-
-#include // Required for: malloc(), free()
-#include // Required for: sinf()
-
-#define MAX_SAMPLES 22050
-#define MAX_SAMPLES_PER_UPDATE 4096
-
-int main()
-{
- // Initialization
- //--------------------------------------------------------------------------------------
- int screenWidth = 800;
- int screenHeight = 450;
-
- InitWindow(screenWidth, screenHeight, "raylib [audio] example - raw audio streaming");
-
- InitAudioDevice(); // Initialize audio device
-
- // Init raw audio stream (sample rate: 22050, sample size: 16bit-short, channels: 1-mono)
- AudioStream stream = InitAudioStream(22050, 16, 1);
-
- // Generate samples data from sine wave
- short *data = (short *)malloc(sizeof(short)*MAX_SAMPLES);
-
- // TODO: Review data generation, it seems data is discontinued for loop,
- // for that reason, there is a clip everytime audio stream is looped...
- for (int i = 0; i < MAX_SAMPLES; i++)
- {
- data[i] = (short)(sinf(((2*PI*(float)i)/2)*DEG2RAD)*32000);
- }
-
- PlayAudioStream(stream); // Start processing stream buffer (no data loaded currently)
-
- int totalSamples = MAX_SAMPLES;
- int samplesLeft = totalSamples;
-
- Vector2 position = { 0, 0 };
-
- SetTargetFPS(30); // Set our game to run at 30 frames-per-second
- //--------------------------------------------------------------------------------------
-
- // Main game loop
- while (!WindowShouldClose()) // Detect window close button or ESC key
- {
- // Update
- //----------------------------------------------------------------------------------
-
- // Refill audio stream if required
- // NOTE: Every update we check if stream data has been already consumed and we update
- // buffer with new data from the generated samples, we upload data at a rate (MAX_SAMPLES_PER_UPDATE),
- // but notice that at some point we update < MAX_SAMPLES_PER_UPDATE data...
- if (IsAudioBufferProcessed(stream))
- {
- int numSamples = 0;
- if (samplesLeft >= MAX_SAMPLES_PER_UPDATE) numSamples = MAX_SAMPLES_PER_UPDATE;
- else numSamples = samplesLeft;
-
- UpdateAudioStream(stream, data + (totalSamples - samplesLeft), numSamples);
-
- samplesLeft -= numSamples;
-
- // Reset samples feeding (loop audio)
- if (samplesLeft <= 0) samplesLeft = totalSamples;
- }
- //----------------------------------------------------------------------------------
-
- // Draw
- //----------------------------------------------------------------------------------
- BeginDrawing();
-
- ClearBackground(RAYWHITE);
-
- DrawText("SINE WAVE SHOULD BE PLAYING!", 240, 140, 20, LIGHTGRAY);
-
- // NOTE: Draw a part of the sine wave (only screen width, proportional values)
- for (int i = 0; i < GetScreenWidth(); i++)
- {
- position.x = i;
- position.y = 250 + 50*data[i]/32000;
-
- DrawPixelV(position, RED);
- }
-
- EndDrawing();
- //----------------------------------------------------------------------------------
- }
-
- // De-Initialization
- //--------------------------------------------------------------------------------------
- free(data); // Unload sine wave data
-
- CloseAudioStream(stream); // Close raw audio stream and delete buffers from RAM
-
- CloseAudioDevice(); // Close audio device (music streaming is automatically stopped)
-
- CloseWindow(); // Close window and OpenGL context
- //--------------------------------------------------------------------------------------
-
- return 0;
-}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/audio/audio_raw_stream.cs b/ExampleApplication/Examples/audio/audio_raw_stream.cs
new file mode 100644
index 0000000..408817d
--- /dev/null
+++ b/ExampleApplication/Examples/audio/audio_raw_stream.cs
@@ -0,0 +1,8 @@
+
+using Raylib;
+using static Raylib.rl;
+
+public partial class Examples
+{
+ /*******************************************************************************************
*
* raylib [audio] example - Raw audio streaming
*
* NOTE: This example requires OpenAL Soft library installed
*
* This example has been created using raylib 1.6 (www.raylib.com)
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
*
* Copyright (c) 2015 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
#include // Required for: malloc(), free()
#include // Required for: sinf()
#define MAX_SAMPLES 22050
#define MAX_SAMPLES_PER_UPDATE 4096
public static int audio_raw_stream()
{
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 800;
int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "raylib [audio] example - raw audio streaming");
InitAudioDevice(); // Initialize audio device
// Init raw audio stream (sample rate: 22050, sample size: 16bit-short, channels: 1-mono)
AudioStream stream = InitAudioStream(22050, 16, 1);
// Generate samples data from sine wave
short *data = (short *)malloc(sizeof(short)*MAX_SAMPLES);
// TODO: Review data generation, it seems data is discontinued for loop,
// for that reason, there is a clip everytime audio stream is looped...
for (int i = 0; i < MAX_SAMPLES; i++)
{
data[i] = (short)(sinf(((2*PI*(float)i)/2)*DEG2RAD)*32000);
}
PlayAudioStream(stream); // Start processing stream buffer (no data loaded currently)
int totalSamples = MAX_SAMPLES;
int samplesLeft = totalSamples;
Vector2 position = { 0, 0 };
SetTargetFPS(30); // Set our game to run at 30 frames-per-second
//--------------------------------------------------------------------------------------
// Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key
{
// Update
//----------------------------------------------------------------------------------
// Refill audio stream if required
// NOTE: Every update we check if stream data has been already consumed and we update
// buffer with new data from the generated samples, we upload data at a rate (MAX_SAMPLES_PER_UPDATE),
// but notice that at some point we update < MAX_SAMPLES_PER_UPDATE data...
if (IsAudioBufferProcessed(stream))
{
int numSamples = 0;
if (samplesLeft >= MAX_SAMPLES_PER_UPDATE) numSamples = MAX_SAMPLES_PER_UPDATE;
else numSamples = samplesLeft;
UpdateAudioStream(stream, data + (totalSamples - samplesLeft), numSamples);
samplesLeft -= numSamples;
// Reset samples feeding (loop audio)
if (samplesLeft <= 0) samplesLeft = totalSamples;
}
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
ClearBackground(RAYWHITE);
DrawText("SINE WAVE SHOULD BE PLAYING!", 240, 140, 20, LIGHTGRAY);
// NOTE: Draw a part of the sine wave (only screen width, proportional values)
for (int i = 0; i < GetScreenWidth(); i++)
{
position.x = i;
position.y = 250 + 50*data[i]/32000;
DrawPixelV(position, RED);
}
EndDrawing();
//----------------------------------------------------------------------------------
}
// De-Initialization
//--------------------------------------------------------------------------------------
free(data); // Unload sine wave data
CloseAudioStream(stream); // Close raw audio stream and delete buffers from RAM
CloseAudioDevice(); // Close audio device (music streaming is automatically stopped)
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
return 0;
}
+}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/audio/audio_sound_loading.c b/ExampleApplication/Examples/audio/audio_sound_loading.c
deleted file mode 100644
index 00e5832..0000000
--- a/ExampleApplication/Examples/audio/audio_sound_loading.c
+++ /dev/null
@@ -1,67 +0,0 @@
-/*******************************************************************************************
-*
-* raylib [audio] example - Sound loading and playing
-*
-* NOTE: This example requires OpenAL Soft library installed
-*
-* This example has been created using raylib 1.0 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
-*
-* Copyright (c) 2014 Ramon Santamaria (@raysan5)
-*
-********************************************************************************************/
-
-#include "raylib.h"
-
-int main()
-{
- // Initialization
- //--------------------------------------------------------------------------------------
- int screenWidth = 800;
- int screenHeight = 450;
-
- InitWindow(screenWidth, screenHeight, "raylib [audio] example - sound loading and playing");
-
- InitAudioDevice(); // Initialize audio device
-
- Sound fxWav = LoadSound("resources/sound.wav"); // Load WAV audio file
- Sound fxOgg = LoadSound("resources/tanatana.ogg"); // Load OGG audio file
-
- SetTargetFPS(60);
- //--------------------------------------------------------------------------------------
-
- // Main game loop
- while (!WindowShouldClose()) // Detect window close button or ESC key
- {
- // Update
- //----------------------------------------------------------------------------------
- if (IsKeyPressed(KEY_SPACE)) PlaySound(fxWav); // Play WAV sound
- if (IsKeyPressed(KEY_ENTER)) PlaySound(fxOgg); // Play OGG sound
- //----------------------------------------------------------------------------------
-
- // Draw
- //----------------------------------------------------------------------------------
- BeginDrawing();
-
- ClearBackground(RAYWHITE);
-
- DrawText("Press SPACE to PLAY the WAV sound!", 200, 180, 20, LIGHTGRAY);
-
- DrawText("Press ENTER to PLAY the OGG sound!", 200, 220, 20, LIGHTGRAY);
-
- EndDrawing();
- //----------------------------------------------------------------------------------
- }
-
- // De-Initialization
- //--------------------------------------------------------------------------------------
- UnloadSound(fxWav); // Unload sound data
- UnloadSound(fxOgg); // Unload sound data
-
- CloseAudioDevice(); // Close audio device
-
- CloseWindow(); // Close window and OpenGL context
- //--------------------------------------------------------------------------------------
-
- return 0;
-}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/audio/audio_sound_loading.cs b/ExampleApplication/Examples/audio/audio_sound_loading.cs
new file mode 100644
index 0000000..4830eaf
--- /dev/null
+++ b/ExampleApplication/Examples/audio/audio_sound_loading.cs
@@ -0,0 +1,8 @@
+
+using Raylib;
+using static Raylib.rl;
+
+public partial class Examples
+{
+ /*******************************************************************************************
*
* raylib [audio] example - Sound loading and playing
*
* NOTE: This example requires OpenAL Soft library installed
*
* This example has been created using raylib 1.0 (www.raylib.com)
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
*
* Copyright (c) 2014 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
public static int audio_sound_loading()
{
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 800;
int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "raylib [audio] example - sound loading and playing");
InitAudioDevice(); // Initialize audio device
Sound fxWav = LoadSound("resources/sound.wav"); // Load WAV audio file
Sound fxOgg = LoadSound("resources/tanatana.ogg"); // Load OGG audio file
SetTargetFPS(60);
//--------------------------------------------------------------------------------------
// Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key
{
// Update
//----------------------------------------------------------------------------------
if (IsKeyPressed(KEY_SPACE)) PlaySound(fxWav); // Play WAV sound
if (IsKeyPressed(KEY_ENTER)) PlaySound(fxOgg); // Play OGG sound
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
ClearBackground(RAYWHITE);
DrawText("Press SPACE to PLAY the WAV sound!", 200, 180, 20, LIGHTGRAY);
DrawText("Press ENTER to PLAY the OGG sound!", 200, 220, 20, LIGHTGRAY);
EndDrawing();
//----------------------------------------------------------------------------------
}
// De-Initialization
//--------------------------------------------------------------------------------------
UnloadSound(fxWav); // Unload sound data
UnloadSound(fxOgg); // Unload sound data
CloseAudioDevice(); // Close audio device
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
return 0;
}
+}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/core/core_2d_camera.c b/ExampleApplication/Examples/core/core_2d_camera.c
deleted file mode 100644
index 7c35c90..0000000
--- a/ExampleApplication/Examples/core/core_2d_camera.c
+++ /dev/null
@@ -1,139 +0,0 @@
-/*******************************************************************************************
-*
-* raylib [core] example - 2d camera
-*
-* This example has been created using raylib 1.5 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
-*
-* Copyright (c) 2016 Ramon Santamaria (@raysan5)
-*
-********************************************************************************************/
-
-#include "raylib.h"
-
-#define MAX_BUILDINGS 100
-
-int main()
-{
- // Initialization
- //--------------------------------------------------------------------------------------
- int screenWidth = 800;
- int screenHeight = 450;
-
- InitWindow(screenWidth, screenHeight, "raylib [core] example - 2d camera");
-
- Rectangle player = { 400, 280, 40, 40 };
- Rectangle buildings[MAX_BUILDINGS];
- Color buildColors[MAX_BUILDINGS];
-
- int spacing = 0;
-
- for (int i = 0; i < MAX_BUILDINGS; i++)
- {
- buildings[i].width = GetRandomValue(50, 200);
- buildings[i].height = GetRandomValue(100, 800);
- buildings[i].y = screenHeight - 130 - buildings[i].height;
- buildings[i].x = -6000 + spacing;
-
- spacing += buildings[i].width;
-
- buildColors[i] = (Color){ GetRandomValue(200, 240), GetRandomValue(200, 240), GetRandomValue(200, 250), 255 };
- }
-
- Camera2D camera;
-
- camera.target = (Vector2){ player.x + 20, player.y + 20 };
- camera.offset = (Vector2){ 0, 0 };
- camera.rotation = 0.0f;
- camera.zoom = 1.0f;
-
- SetTargetFPS(60);
- //--------------------------------------------------------------------------------------
-
- // Main game loop
- while (!WindowShouldClose()) // Detect window close button or ESC key
- {
- // Update
- //----------------------------------------------------------------------------------
- if (IsKeyDown(KEY_RIGHT))
- {
- player.x += 2; // Player movement
- camera.offset.x -= 2; // Camera displacement with player movement
- }
- else if (IsKeyDown(KEY_LEFT))
- {
- player.x -= 2; // Player movement
- camera.offset.x += 2; // Camera displacement with player movement
- }
-
- // Camera target follows player
- camera.target = (Vector2){ player.x + 20, player.y + 20 };
-
- // Camera rotation controls
- if (IsKeyDown(KEY_A)) camera.rotation--;
- else if (IsKeyDown(KEY_S)) camera.rotation++;
-
- // Limit camera rotation to 80 degrees (-40 to 40)
- if (camera.rotation > 40) camera.rotation = 40;
- else if (camera.rotation < -40) camera.rotation = -40;
-
- // Camera zoom controls
- camera.zoom += ((float)GetMouseWheelMove()*0.05f);
-
- if (camera.zoom > 3.0f) camera.zoom = 3.0f;
- else if (camera.zoom < 0.1f) camera.zoom = 0.1f;
-
- // Camera reset (zoom and rotation)
- if (IsKeyPressed(KEY_R))
- {
- camera.zoom = 1.0f;
- camera.rotation = 0.0f;
- }
- //----------------------------------------------------------------------------------
-
- // Draw
- //----------------------------------------------------------------------------------
- BeginDrawing();
-
- ClearBackground(RAYWHITE);
-
- BeginMode2D(camera);
-
- DrawRectangle(-6000, 320, 13000, 8000, DARKGRAY);
-
- for (int i = 0; i < MAX_BUILDINGS; i++) DrawRectangleRec(buildings[i], buildColors[i]);
-
- DrawRectangleRec(player, RED);
-
- DrawRectangle(camera.target.x, -500, 1, screenHeight*4, GREEN);
- DrawRectangle(-500, camera.target.y, screenWidth*4, 1, GREEN);
-
- EndMode2D();
-
- DrawText("SCREEN AREA", 640, 10, 20, RED);
-
- DrawRectangle(0, 0, screenWidth, 5, RED);
- DrawRectangle(0, 5, 5, screenHeight - 10, RED);
- DrawRectangle(screenWidth - 5, 5, 5, screenHeight - 10, RED);
- DrawRectangle(0, screenHeight - 5, screenWidth, 5, RED);
-
- DrawRectangle( 10, 10, 250, 113, Fade(SKYBLUE, 0.5f));
- DrawRectangleLines( 10, 10, 250, 113, BLUE);
-
- DrawText("Free 2d camera controls:", 20, 20, 10, BLACK);
- DrawText("- Right/Left to move Offset", 40, 40, 10, DARKGRAY);
- DrawText("- Mouse Wheel to Zoom in-out", 40, 60, 10, DARKGRAY);
- DrawText("- A / S to Rotate", 40, 80, 10, DARKGRAY);
- DrawText("- R to reset Zoom and Rotation", 40, 100, 10, DARKGRAY);
-
- EndDrawing();
- //----------------------------------------------------------------------------------
- }
-
- // De-Initialization
- //--------------------------------------------------------------------------------------
- CloseWindow(); // Close window and OpenGL context
- //--------------------------------------------------------------------------------------
-
- return 0;
-}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/core/core_2d_camera.cs b/ExampleApplication/Examples/core/core_2d_camera.cs
new file mode 100644
index 0000000..e3e38ef
--- /dev/null
+++ b/ExampleApplication/Examples/core/core_2d_camera.cs
@@ -0,0 +1,8 @@
+
+using Raylib;
+using static Raylib.rl;
+
+public partial class Examples
+{
+ /*******************************************************************************************
*
* raylib [core] example - 2d camera
*
* This example has been created using raylib 1.5 (www.raylib.com)
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
*
* Copyright (c) 2016 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
#define MAX_BUILDINGS 100
public static int core_2d_camera()
{
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 800;
int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "raylib [core] example - 2d camera");
Rectangle player = { 400, 280, 40, 40 };
Rectangle buildings[MAX_BUILDINGS];
Color buildColors[MAX_BUILDINGS];
int spacing = 0;
for (int i = 0; i < MAX_BUILDINGS; i++)
{
buildings[i].width = GetRandomValue(50, 200);
buildings[i].height = GetRandomValue(100, 800);
buildings[i].y = screenHeight - 130 - buildings[i].height;
buildings[i].x = -6000 + spacing;
spacing += buildings[i].width;
buildColors[i] = (Color){ GetRandomValue(200, 240), GetRandomValue(200, 240), GetRandomValue(200, 250), 255 };
}
Camera2D camera;
camera.target = (Vector2){ player.x + 20, player.y + 20 };
camera.offset = (Vector2){ 0, 0 };
camera.rotation = 0.0f;
camera.zoom = 1.0f;
SetTargetFPS(60);
//--------------------------------------------------------------------------------------
// Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key
{
// Update
//----------------------------------------------------------------------------------
if (IsKeyDown(KEY_RIGHT))
{
player.x += 2; // Player movement
camera.offset.x -= 2; // Camera displacement with player movement
}
else if (IsKeyDown(KEY_LEFT))
{
player.x -= 2; // Player movement
camera.offset.x += 2; // Camera displacement with player movement
}
// Camera target follows player
camera.target = (Vector2){ player.x + 20, player.y + 20 };
// Camera rotation controls
if (IsKeyDown(KEY_A)) camera.rotation--;
else if (IsKeyDown(KEY_S)) camera.rotation++;
// Limit camera rotation to 80 degrees (-40 to 40)
if (camera.rotation > 40) camera.rotation = 40;
else if (camera.rotation < -40) camera.rotation = -40;
// Camera zoom controls
camera.zoom += ((float)GetMouseWheelMove()*0.05f);
if (camera.zoom > 3.0f) camera.zoom = 3.0f;
else if (camera.zoom < 0.1f) camera.zoom = 0.1f;
// Camera reset (zoom and rotation)
if (IsKeyPressed(KEY_R))
{
camera.zoom = 1.0f;
camera.rotation = 0.0f;
}
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
ClearBackground(RAYWHITE);
BeginMode2D(camera);
DrawRectangle(-6000, 320, 13000, 8000, DARKGRAY);
for (int i = 0; i < MAX_BUILDINGS; i++) DrawRectangleRec(buildings[i], buildColors[i]);
DrawRectangleRec(player, RED);
DrawRectangle(camera.target.x, -500, 1, screenHeight*4, GREEN);
DrawRectangle(-500, camera.target.y, screenWidth*4, 1, GREEN);
EndMode2D();
DrawText("SCREEN AREA", 640, 10, 20, RED);
DrawRectangle(0, 0, screenWidth, 5, RED);
DrawRectangle(0, 5, 5, screenHeight - 10, RED);
DrawRectangle(screenWidth - 5, 5, 5, screenHeight - 10, RED);
DrawRectangle(0, screenHeight - 5, screenWidth, 5, RED);
DrawRectangle( 10, 10, 250, 113, Fade(SKYBLUE, 0.5f));
DrawRectangleLines( 10, 10, 250, 113, BLUE);
DrawText("Free 2d camera controls:", 20, 20, 10, BLACK);
DrawText("- Right/Left to move Offset", 40, 40, 10, DARKGRAY);
DrawText("- Mouse Wheel to Zoom in-out", 40, 60, 10, DARKGRAY);
DrawText("- A / S to Rotate", 40, 80, 10, DARKGRAY);
DrawText("- R to reset Zoom and Rotation", 40, 100, 10, DARKGRAY);
EndDrawing();
//----------------------------------------------------------------------------------
}
// De-Initialization
//--------------------------------------------------------------------------------------
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
return 0;
}
+}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/core/core_3d_camera_first_person.c b/ExampleApplication/Examples/core/core_3d_camera_first_person.c
deleted file mode 100644
index d3a8f2e..0000000
--- a/ExampleApplication/Examples/core/core_3d_camera_first_person.c
+++ /dev/null
@@ -1,97 +0,0 @@
-/*******************************************************************************************
-*
-* raylib [core] example - 3d camera first person
-*
-* This example has been created using raylib 1.3 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
-*
-* Copyright (c) 2015 Ramon Santamaria (@raysan5)
-*
-********************************************************************************************/
-
-#include "raylib.h"
-
-#define MAX_COLUMNS 20
-
-int main()
-{
- // Initialization
- //--------------------------------------------------------------------------------------
- int screenWidth = 800;
- int screenHeight = 450;
-
- InitWindow(screenWidth, screenHeight, "raylib [core] example - 3d camera first person");
-
- // Define the camera to look into our 3d world (position, target, up vector)
- Camera camera = { 0 };
- camera.position = (Vector3){ 4.0f, 2.0f, 4.0f };
- camera.target = (Vector3){ 0.0f, 1.8f, 0.0f };
- camera.up = (Vector3){ 0.0f, 1.0f, 0.0f };
- camera.fovy = 60.0f;
- camera.type = CAMERA_PERSPECTIVE;
-
- // Generates some random columns
- float heights[MAX_COLUMNS];
- Vector3 positions[MAX_COLUMNS];
- Color colors[MAX_COLUMNS];
-
- for (int i = 0; i < MAX_COLUMNS; i++)
- {
- heights[i] = (float)GetRandomValue(1, 12);
- positions[i] = (Vector3){ GetRandomValue(-15, 15), heights[i]/2, GetRandomValue(-15, 15) };
- colors[i] = (Color){ GetRandomValue(20, 255), GetRandomValue(10, 55), 30, 255 };
- }
-
- SetCameraMode(camera, CAMERA_FIRST_PERSON); // Set a first person camera mode
-
- SetTargetFPS(60); // Set our game to run at 60 frames-per-second
- //--------------------------------------------------------------------------------------
-
- // Main game loop
- while (!WindowShouldClose()) // Detect window close button or ESC key
- {
- // Update
- //----------------------------------------------------------------------------------
- UpdateCamera(&camera); // Update camera
- //----------------------------------------------------------------------------------
-
- // Draw
- //----------------------------------------------------------------------------------
- BeginDrawing();
-
- ClearBackground(RAYWHITE);
-
- BeginMode3D(camera);
-
- DrawPlane((Vector3){ 0.0f, 0.0f, 0.0f }, (Vector2){ 32.0f, 32.0f }, LIGHTGRAY); // Draw ground
- DrawCube((Vector3){ -16.0f, 2.5f, 0.0f }, 1.0f, 5.0f, 32.0f, BLUE); // Draw a blue wall
- DrawCube((Vector3){ 16.0f, 2.5f, 0.0f }, 1.0f, 5.0f, 32.0f, LIME); // Draw a green wall
- DrawCube((Vector3){ 0.0f, 2.5f, 16.0f }, 32.0f, 5.0f, 1.0f, GOLD); // Draw a yellow wall
-
- // Draw some cubes around
- for (int i = 0; i < MAX_COLUMNS; i++)
- {
- DrawCube(positions[i], 2.0f, heights[i], 2.0f, colors[i]);
- DrawCubeWires(positions[i], 2.0f, heights[i], 2.0f, MAROON);
- }
-
- EndMode3D();
-
- DrawRectangle( 10, 10, 220, 70, Fade(SKYBLUE, 0.5f));
- DrawRectangleLines( 10, 10, 220, 70, BLUE);
-
- DrawText("First person camera default controls:", 20, 20, 10, BLACK);
- DrawText("- Move with keys: W, A, S, D", 40, 40, 10, DARKGRAY);
- DrawText("- Mouse move to look around", 40, 60, 10, DARKGRAY);
-
- EndDrawing();
- //----------------------------------------------------------------------------------
- }
-
- // De-Initialization
- //--------------------------------------------------------------------------------------
- CloseWindow(); // Close window and OpenGL context
- //--------------------------------------------------------------------------------------
-
- return 0;
-}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/core/core_3d_camera_first_person.cs b/ExampleApplication/Examples/core/core_3d_camera_first_person.cs
new file mode 100644
index 0000000..69a9a68
--- /dev/null
+++ b/ExampleApplication/Examples/core/core_3d_camera_first_person.cs
@@ -0,0 +1,8 @@
+
+using Raylib;
+using static Raylib.rl;
+
+public partial class Examples
+{
+ /*******************************************************************************************
*
* raylib [core] example - 3d camera first person
*
* This example has been created using raylib 1.3 (www.raylib.com)
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
*
* Copyright (c) 2015 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
#define MAX_COLUMNS 20
public static int core_3d_camera_first_person()
{
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 800;
int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "raylib [core] example - 3d camera first person");
// Define the camera to look into our 3d world (position, target, up vector)
Camera camera = { 0 };
camera.position = (Vector3){ 4.0f, 2.0f, 4.0f };
camera.target = (Vector3){ 0.0f, 1.8f, 0.0f };
camera.up = (Vector3){ 0.0f, 1.0f, 0.0f };
camera.fovy = 60.0f;
camera.type = CAMERA_PERSPECTIVE;
// Generates some random columns
float heights[MAX_COLUMNS];
Vector3 positions[MAX_COLUMNS];
Color colors[MAX_COLUMNS];
for (int i = 0; i < MAX_COLUMNS; i++)
{
heights[i] = (float)GetRandomValue(1, 12);
positions[i] = (Vector3){ GetRandomValue(-15, 15), heights[i]/2, GetRandomValue(-15, 15) };
colors[i] = (Color){ GetRandomValue(20, 255), GetRandomValue(10, 55), 30, 255 };
}
SetCameraMode(camera, CAMERA_FIRST_PERSON); // Set a first person camera mode
SetTargetFPS(60); // Set our game to run at 60 frames-per-second
//--------------------------------------------------------------------------------------
// Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key
{
// Update
//----------------------------------------------------------------------------------
UpdateCamera(&camera); // Update camera
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
ClearBackground(RAYWHITE);
BeginMode3D(camera);
DrawPlane((Vector3){ 0.0f, 0.0f, 0.0f }, (Vector2){ 32.0f, 32.0f }, LIGHTGRAY); // Draw ground
DrawCube((Vector3){ -16.0f, 2.5f, 0.0f }, 1.0f, 5.0f, 32.0f, BLUE); // Draw a blue wall
DrawCube((Vector3){ 16.0f, 2.5f, 0.0f }, 1.0f, 5.0f, 32.0f, LIME); // Draw a green wall
DrawCube((Vector3){ 0.0f, 2.5f, 16.0f }, 32.0f, 5.0f, 1.0f, GOLD); // Draw a yellow wall
// Draw some cubes around
for (int i = 0; i < MAX_COLUMNS; i++)
{
DrawCube(positions[i], 2.0f, heights[i], 2.0f, colors[i]);
DrawCubeWires(positions[i], 2.0f, heights[i], 2.0f, MAROON);
}
EndMode3D();
DrawRectangle( 10, 10, 220, 70, Fade(SKYBLUE, 0.5f));
DrawRectangleLines( 10, 10, 220, 70, BLUE);
DrawText("First person camera default controls:", 20, 20, 10, BLACK);
DrawText("- Move with keys: W, A, S, D", 40, 40, 10, DARKGRAY);
DrawText("- Mouse move to look around", 40, 60, 10, DARKGRAY);
EndDrawing();
//----------------------------------------------------------------------------------
}
// De-Initialization
//--------------------------------------------------------------------------------------
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
return 0;
}
+}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/core/core_3d_camera_free.c b/ExampleApplication/Examples/core/core_3d_camera_free.c
deleted file mode 100644
index 9131ddf..0000000
--- a/ExampleApplication/Examples/core/core_3d_camera_free.c
+++ /dev/null
@@ -1,83 +0,0 @@
-/*******************************************************************************************
-*
-* raylib [core] example - Initialize 3d camera free
-*
-* This example has been created using raylib 1.3 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
-*
-* Copyright (c) 2015 Ramon Santamaria (@raysan5)
-*
-********************************************************************************************/
-
-#include "raylib.h"
-
-int main()
-{
- // Initialization
- //--------------------------------------------------------------------------------------
- int screenWidth = 800;
- int screenHeight = 450;
-
- InitWindow(screenWidth, screenHeight, "raylib [core] example - 3d camera free");
-
- // Define the camera to look into our 3d world
- Camera3D camera;
- camera.position = (Vector3){ 10.0f, 10.0f, 10.0f }; // Camera position
- camera.target = (Vector3){ 0.0f, 0.0f, 0.0f }; // Camera looking at point
- camera.up = (Vector3){ 0.0f, 1.0f, 0.0f }; // Camera up vector (rotation towards target)
- camera.fovy = 45.0f; // Camera field-of-view Y
- camera.type = CAMERA_PERSPECTIVE; // Camera mode type
-
- Vector3 cubePosition = { 0.0f, 0.0f, 0.0f };
-
- SetCameraMode(camera, CAMERA_FREE); // Set a free camera mode
-
- SetTargetFPS(60); // Set our game to run at 60 frames-per-second
- //--------------------------------------------------------------------------------------
-
- // Main game loop
- while (!WindowShouldClose()) // Detect window close button or ESC key
- {
- // Update
- //----------------------------------------------------------------------------------
- UpdateCamera(&camera); // Update camera
-
- if (IsKeyDown('Z')) camera.target = (Vector3){ 0.0f, 0.0f, 0.0f };
- //----------------------------------------------------------------------------------
-
- // Draw
- //----------------------------------------------------------------------------------
- BeginDrawing();
-
- ClearBackground(RAYWHITE);
-
- BeginMode3D(camera);
-
- DrawCube(cubePosition, 2.0f, 2.0f, 2.0f, RED);
- DrawCubeWires(cubePosition, 2.0f, 2.0f, 2.0f, MAROON);
-
- DrawGrid(10, 1.0f);
-
- EndMode3D();
-
- DrawRectangle( 10, 10, 320, 133, Fade(SKYBLUE, 0.5f));
- DrawRectangleLines( 10, 10, 320, 133, BLUE);
-
- DrawText("Free camera default controls:", 20, 20, 10, BLACK);
- DrawText("- Mouse Wheel to Zoom in-out", 40, 40, 10, DARKGRAY);
- DrawText("- Mouse Wheel Pressed to Pan", 40, 60, 10, DARKGRAY);
- DrawText("- Alt + Mouse Wheel Pressed to Rotate", 40, 80, 10, DARKGRAY);
- DrawText("- Alt + Ctrl + Mouse Wheel Pressed for Smooth Zoom", 40, 100, 10, DARKGRAY);
- DrawText("- Z to zoom to (0, 0, 0)", 40, 120, 10, DARKGRAY);
-
- EndDrawing();
- //----------------------------------------------------------------------------------
- }
-
- // De-Initialization
- //--------------------------------------------------------------------------------------
- CloseWindow(); // Close window and OpenGL context
- //--------------------------------------------------------------------------------------
-
- return 0;
-}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/core/core_3d_camera_free.cs b/ExampleApplication/Examples/core/core_3d_camera_free.cs
new file mode 100644
index 0000000..221b855
--- /dev/null
+++ b/ExampleApplication/Examples/core/core_3d_camera_free.cs
@@ -0,0 +1,8 @@
+
+using Raylib;
+using static Raylib.rl;
+
+public partial class Examples
+{
+ /*******************************************************************************************
*
* raylib [core] example - Initialize 3d camera free
*
* This example has been created using raylib 1.3 (www.raylib.com)
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
*
* Copyright (c) 2015 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
public static int core_3d_camera_free()
{
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 800;
int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "raylib [core] example - 3d camera free");
// Define the camera to look into our 3d world
Camera3D camera;
camera.position = (Vector3){ 10.0f, 10.0f, 10.0f }; // Camera position
camera.target = (Vector3){ 0.0f, 0.0f, 0.0f }; // Camera looking at point
camera.up = (Vector3){ 0.0f, 1.0f, 0.0f }; // Camera up vector (rotation towards target)
camera.fovy = 45.0f; // Camera field-of-view Y
camera.type = CAMERA_PERSPECTIVE; // Camera mode type
Vector3 cubePosition = { 0.0f, 0.0f, 0.0f };
SetCameraMode(camera, CAMERA_FREE); // Set a free camera mode
SetTargetFPS(60); // Set our game to run at 60 frames-per-second
//--------------------------------------------------------------------------------------
// Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key
{
// Update
//----------------------------------------------------------------------------------
UpdateCamera(&camera); // Update camera
if (IsKeyDown('Z')) camera.target = (Vector3){ 0.0f, 0.0f, 0.0f };
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
ClearBackground(RAYWHITE);
BeginMode3D(camera);
DrawCube(cubePosition, 2.0f, 2.0f, 2.0f, RED);
DrawCubeWires(cubePosition, 2.0f, 2.0f, 2.0f, MAROON);
DrawGrid(10, 1.0f);
EndMode3D();
DrawRectangle( 10, 10, 320, 133, Fade(SKYBLUE, 0.5f));
DrawRectangleLines( 10, 10, 320, 133, BLUE);
DrawText("Free camera default controls:", 20, 20, 10, BLACK);
DrawText("- Mouse Wheel to Zoom in-out", 40, 40, 10, DARKGRAY);
DrawText("- Mouse Wheel Pressed to Pan", 40, 60, 10, DARKGRAY);
DrawText("- Alt + Mouse Wheel Pressed to Rotate", 40, 80, 10, DARKGRAY);
DrawText("- Alt + Ctrl + Mouse Wheel Pressed for Smooth Zoom", 40, 100, 10, DARKGRAY);
DrawText("- Z to zoom to (0, 0, 0)", 40, 120, 10, DARKGRAY);
EndDrawing();
//----------------------------------------------------------------------------------
}
// De-Initialization
//--------------------------------------------------------------------------------------
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
return 0;
}
+}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/core/core_3d_mode.c b/ExampleApplication/Examples/core/core_3d_mode.c
deleted file mode 100644
index 39c0752..0000000
--- a/ExampleApplication/Examples/core/core_3d_mode.c
+++ /dev/null
@@ -1,73 +0,0 @@
-/*******************************************************************************************
-*
-* raylib [core] example - Initialize 3d mode
-*
-* This example has been created using raylib 1.0 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
-*
-* Copyright (c) 2014 Ramon Santamaria (@raysan5)
-*
-********************************************************************************************/
-
-#include "raylib.h"
-
-int main()
-{
- // Initialization
- //--------------------------------------------------------------------------------------
- int screenWidth = 800;
- int screenHeight = 450;
-
- InitWindow(screenWidth, screenHeight, "raylib [core] example - 3d mode");
-
- // Define the camera to look into our 3d world
- Camera3D camera;
- camera.position = (Vector3){ 0.0f, 10.0f, 10.0f }; // Camera position
- camera.target = (Vector3){ 0.0f, 0.0f, 0.0f }; // Camera looking at point
- camera.up = (Vector3){ 0.0f, 1.0f, 0.0f }; // Camera up vector (rotation towards target)
- camera.fovy = 45.0f; // Camera field-of-view Y
- camera.type = CAMERA_PERSPECTIVE; // Camera mode type
-
- Vector3 cubePosition = { 0.0f, 0.0f, 0.0f };
-
- SetTargetFPS(60); // Set our game to run at 60 frames-per-second
- //--------------------------------------------------------------------------------------
-
- // Main game loop
- while (!WindowShouldClose()) // Detect window close button or ESC key
- {
- // Update
- //----------------------------------------------------------------------------------
- // TODO: Update your variables here
- //----------------------------------------------------------------------------------
-
- // Draw
- //----------------------------------------------------------------------------------
- BeginDrawing();
-
- ClearBackground(RAYWHITE);
-
- BeginMode3D(camera);
-
- DrawCube(cubePosition, 2.0f, 2.0f, 2.0f, RED);
- DrawCubeWires(cubePosition, 2.0f, 2.0f, 2.0f, MAROON);
-
- DrawGrid(10, 1.0f);
-
- EndMode3D();
-
- DrawText("Welcome to the third dimension!", 10, 40, 20, DARKGRAY);
-
- DrawFPS(10, 10);
-
- EndDrawing();
- //----------------------------------------------------------------------------------
- }
-
- // De-Initialization
- //--------------------------------------------------------------------------------------
- CloseWindow(); // Close window and OpenGL context
- //--------------------------------------------------------------------------------------
-
- return 0;
-}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/core/core_3d_mode.cs b/ExampleApplication/Examples/core/core_3d_mode.cs
new file mode 100644
index 0000000..045b20a
--- /dev/null
+++ b/ExampleApplication/Examples/core/core_3d_mode.cs
@@ -0,0 +1,8 @@
+
+using Raylib;
+using static Raylib.rl;
+
+public partial class Examples
+{
+ /*******************************************************************************************
*
* raylib [core] example - Initialize 3d mode
*
* This example has been created using raylib 1.0 (www.raylib.com)
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
*
* Copyright (c) 2014 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
public static int core_3d_mode()
{
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 800;
int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "raylib [core] example - 3d mode");
// Define the camera to look into our 3d world
Camera3D camera;
camera.position = (Vector3){ 0.0f, 10.0f, 10.0f }; // Camera position
camera.target = (Vector3){ 0.0f, 0.0f, 0.0f }; // Camera looking at point
camera.up = (Vector3){ 0.0f, 1.0f, 0.0f }; // Camera up vector (rotation towards target)
camera.fovy = 45.0f; // Camera field-of-view Y
camera.type = CAMERA_PERSPECTIVE; // Camera mode type
Vector3 cubePosition = { 0.0f, 0.0f, 0.0f };
SetTargetFPS(60); // Set our game to run at 60 frames-per-second
//--------------------------------------------------------------------------------------
// Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key
{
// Update
//----------------------------------------------------------------------------------
// TODO: Update your variables here
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
ClearBackground(RAYWHITE);
BeginMode3D(camera);
DrawCube(cubePosition, 2.0f, 2.0f, 2.0f, RED);
DrawCubeWires(cubePosition, 2.0f, 2.0f, 2.0f, MAROON);
DrawGrid(10, 1.0f);
EndMode3D();
DrawText("Welcome to the third dimension!", 10, 40, 20, DARKGRAY);
DrawFPS(10, 10);
EndDrawing();
//----------------------------------------------------------------------------------
}
// De-Initialization
//--------------------------------------------------------------------------------------
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
return 0;
}
+}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/core/core_3d_picking.c b/ExampleApplication/Examples/core/core_3d_picking.c
deleted file mode 100644
index 1c63e2a..0000000
--- a/ExampleApplication/Examples/core/core_3d_picking.c
+++ /dev/null
@@ -1,103 +0,0 @@
-/*******************************************************************************************
-*
-* raylib [core] example - Picking in 3d mode
-*
-* This example has been created using raylib 1.3 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
-*
-* Copyright (c) 2015 Ramon Santamaria (@raysan5)
-*
-********************************************************************************************/
-
-#include "raylib.h"
-
-int main()
-{
- // Initialization
- //--------------------------------------------------------------------------------------
- int screenWidth = 800;
- int screenHeight = 450;
-
- InitWindow(screenWidth, screenHeight, "raylib [core] example - 3d picking");
-
- // Define the camera to look into our 3d world
- Camera camera;
- camera.position = (Vector3){ 10.0f, 10.0f, 10.0f }; // Camera position
- camera.target = (Vector3){ 0.0f, 0.0f, 0.0f }; // Camera looking at point
- camera.up = (Vector3){ 0.0f, 1.0f, 0.0f }; // Camera up vector (rotation towards target)
- camera.fovy = 45.0f; // Camera field-of-view Y
- camera.type = CAMERA_PERSPECTIVE; // Camera mode type
-
- Vector3 cubePosition = { 0.0f, 1.0f, 0.0f };
- Vector3 cubeSize = { 2.0f, 2.0f, 2.0f };
-
- Ray ray = {0.0f, 0.0f, 0.0f}; // Picking line ray
-
- bool collision = false;
-
- SetCameraMode(camera, CAMERA_FREE); // Set a free camera mode
-
- SetTargetFPS(60); // Set our game to run at 60 frames-per-second
- //--------------------------------------------------------------------------------------
-
- // Main game loop
- while (!WindowShouldClose()) // Detect window close button or ESC key
- {
- // Update
- //----------------------------------------------------------------------------------
- UpdateCamera(&camera); // Update camera
-
- if (IsMouseButtonPressed(MOUSE_LEFT_BUTTON))
- {
- ray = GetMouseRay(GetMousePosition(), camera);
-
- // Check collision between ray and box
- collision = CheckCollisionRayBox(ray,
- (BoundingBox){(Vector3){ cubePosition.x - cubeSize.x/2, cubePosition.y - cubeSize.y/2, cubePosition.z - cubeSize.z/2 },
- (Vector3){ cubePosition.x + cubeSize.x/2, cubePosition.y + cubeSize.y/2, cubePosition.z + cubeSize.z/2 }});
- }
- //----------------------------------------------------------------------------------
-
- // Draw
- //----------------------------------------------------------------------------------
- BeginDrawing();
-
- ClearBackground(RAYWHITE);
-
- BeginMode3D(camera);
-
- if (collision)
- {
- DrawCube(cubePosition, cubeSize.x, cubeSize.y, cubeSize.z, RED);
- DrawCubeWires(cubePosition, cubeSize.x, cubeSize.y, cubeSize.z, MAROON);
-
- DrawCubeWires(cubePosition, cubeSize.x + 0.2f, cubeSize.y + 0.2f, cubeSize.z + 0.2f, GREEN);
- }
- else
- {
- DrawCube(cubePosition, cubeSize.x, cubeSize.y, cubeSize.z, GRAY);
- DrawCubeWires(cubePosition, cubeSize.x, cubeSize.y, cubeSize.z, DARKGRAY);
- }
-
- DrawRay(ray, MAROON);
- DrawGrid(10, 1.0f);
-
- EndMode3D();
-
- DrawText("Try selecting the box with mouse!", 240, 10, 20, DARKGRAY);
-
- if(collision) DrawText("BOX SELECTED", (screenWidth - MeasureText("BOX SELECTED", 30)) / 2, screenHeight * 0.1f, 30, GREEN);
-
- DrawFPS(10, 10);
-
- EndDrawing();
- //----------------------------------------------------------------------------------
- }
-
- // De-Initialization
- //--------------------------------------------------------------------------------------
- CloseWindow(); // Close window and OpenGL context
- //--------------------------------------------------------------------------------------
-
- return 0;
-}
diff --git a/ExampleApplication/Examples/core/core_3d_picking.cs b/ExampleApplication/Examples/core/core_3d_picking.cs
new file mode 100644
index 0000000..3ce5e50
--- /dev/null
+++ b/ExampleApplication/Examples/core/core_3d_picking.cs
@@ -0,0 +1,8 @@
+
+using Raylib;
+using static Raylib.rl;
+
+public partial class Examples
+{
+ /*******************************************************************************************
*
* raylib [core] example - Picking in 3d mode
*
* This example has been created using raylib 1.3 (www.raylib.com)
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
*
* Copyright (c) 2015 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
public static int core_3d_picking()
{
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 800;
int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "raylib [core] example - 3d picking");
// Define the camera to look into our 3d world
Camera camera;
camera.position = (Vector3){ 10.0f, 10.0f, 10.0f }; // Camera position
camera.target = (Vector3){ 0.0f, 0.0f, 0.0f }; // Camera looking at point
camera.up = (Vector3){ 0.0f, 1.0f, 0.0f }; // Camera up vector (rotation towards target)
camera.fovy = 45.0f; // Camera field-of-view Y
camera.type = CAMERA_PERSPECTIVE; // Camera mode type
Vector3 cubePosition = { 0.0f, 1.0f, 0.0f };
Vector3 cubeSize = { 2.0f, 2.0f, 2.0f };
Ray ray = {0.0f, 0.0f, 0.0f}; // Picking line ray
bool collision = false;
SetCameraMode(camera, CAMERA_FREE); // Set a free camera mode
SetTargetFPS(60); // Set our game to run at 60 frames-per-second
//--------------------------------------------------------------------------------------
// Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key
{
// Update
//----------------------------------------------------------------------------------
UpdateCamera(&camera); // Update camera
if (IsMouseButtonPressed(MOUSE_LEFT_BUTTON))
{
ray = GetMouseRay(GetMousePosition(), camera);
// Check collision between ray and box
collision = CheckCollisionRayBox(ray,
(BoundingBox){(Vector3){ cubePosition.x - cubeSize.x/2, cubePosition.y - cubeSize.y/2, cubePosition.z - cubeSize.z/2 },
(Vector3){ cubePosition.x + cubeSize.x/2, cubePosition.y + cubeSize.y/2, cubePosition.z + cubeSize.z/2 }});
}
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
ClearBackground(RAYWHITE);
BeginMode3D(camera);
if (collision)
{
DrawCube(cubePosition, cubeSize.x, cubeSize.y, cubeSize.z, RED);
DrawCubeWires(cubePosition, cubeSize.x, cubeSize.y, cubeSize.z, MAROON);
DrawCubeWires(cubePosition, cubeSize.x + 0.2f, cubeSize.y + 0.2f, cubeSize.z + 0.2f, GREEN);
}
else
{
DrawCube(cubePosition, cubeSize.x, cubeSize.y, cubeSize.z, GRAY);
DrawCubeWires(cubePosition, cubeSize.x, cubeSize.y, cubeSize.z, DARKGRAY);
}
DrawRay(ray, MAROON);
DrawGrid(10, 1.0f);
EndMode3D();
DrawText("Try selecting the box with mouse!", 240, 10, 20, DARKGRAY);
if(collision) DrawText("BOX SELECTED", (screenWidth - MeasureText("BOX SELECTED", 30)) / 2, screenHeight * 0.1f, 30, GREEN);
DrawFPS(10, 10);
EndDrawing();
//----------------------------------------------------------------------------------
}
// De-Initialization
//--------------------------------------------------------------------------------------
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
return 0;
}
+}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/core/core_basic_window.cs b/ExampleApplication/Examples/core/core_basic_window.cs
index 0d6e012..98e10cb 100644
--- a/ExampleApplication/Examples/core/core_basic_window.cs
+++ b/ExampleApplication/Examples/core/core_basic_window.cs
@@ -1,66 +1,8 @@
-/*******************************************************************************************
-*
-* raylib [core] example - Basic window
-*
-* Welcome to raylib!
-*
-* To test examples, just press F6 and execute raylib_compile_execute script
-* Note that compiled executable is placed in the same folder as .c file
-*
-* You can find all basic examples on C:\raylib\raylib\examples folder or
-* raylib official webpage: www.raylib.com
-*
-* Enjoy using raylib. :)
-*
-* This example has been created using raylib 1.0 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
-*
-* Copyright (c) 2013-2016 Ramon Santamaria (@raysan5)
-*
-********************************************************************************************/
-
-using Raylib;
-using static Raylib.rl;
-
-public partial class Examples
-{
- public static int core_basic_window()
- {
- // Initialization
- //--------------------------------------------------------------------------------------
- int screenWidth = 800;
- int screenHeight = 450;
-
- InitWindow(screenWidth, screenHeight, "raylib [core] example - basic window");
-
- SetTargetFPS(60);
- //--------------------------------------------------------------------------------------
-
- // Main game loop
- while (!WindowShouldClose()) // Detect window close button or ESC key
- {
- // Update
- //----------------------------------------------------------------------------------
- // TODO: Update your variables here
- //----------------------------------------------------------------------------------
-
- // Draw
- //----------------------------------------------------------------------------------
- BeginDrawing();
-
- ClearBackground(RAYWHITE);
-
- DrawText("Congrats! You created your first window!", 190, 200, 20, MAROON);
-
- EndDrawing();
- //----------------------------------------------------------------------------------
- }
-
- // De-Initialization
- //--------------------------------------------------------------------------------------
- CloseWindow(); // Close window and OpenGL context
- //--------------------------------------------------------------------------------------
-
- return 0;
- }
+
+using Raylib;
+using static Raylib.rl;
+
+public partial class Examples
+{
+ /*******************************************************************************************
*
* raylib [core] example - Basic window
*
* Welcome to raylib!
*
* To test examples, just press F6 and execute raylib_compile_execute script
* Note that compiled executable is placed in the same folder as .c file
*
* You can find all basic examples on C:\raylib\raylib\examples folder or
* raylib official webpage: www.raylib.com
*
* Enjoy using raylib. :)
*
* This example has been created using raylib 1.0 (www.raylib.com)
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
*
* Copyright (c) 2013-2016 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
public static int core_basic_window()
{
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 800;
int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "raylib [core] example - basic window");
SetTargetFPS(60);
//--------------------------------------------------------------------------------------
// Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key
{
// Update
//----------------------------------------------------------------------------------
// TODO: Update your variables here
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
ClearBackground(RAYWHITE);
DrawText("Congrats! You created your first window!", 190, 200, 20, MAROON);
EndDrawing();
//----------------------------------------------------------------------------------
}
// De-Initialization
//--------------------------------------------------------------------------------------
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
return 0;
}
}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/core/core_basic_window_web.c b/ExampleApplication/Examples/core/core_basic_window_web.c
deleted file mode 100644
index 1ecb22f..0000000
--- a/ExampleApplication/Examples/core/core_basic_window_web.c
+++ /dev/null
@@ -1,85 +0,0 @@
-/*******************************************************************************************
-*
-* raylib [core] example - Basic window (adapted for HTML5 platform)
-*
-* This example is prepared to compile for PLATFORM_WEB, PLATFORM_DESKTOP and PLATFORM_RPI
-* As you will notice, code structure is slightly diferent to the other examples...
-* To compile it for PLATFORM_WEB just uncomment #define PLATFORM_WEB at beginning
-*
-* This example has been created using raylib 1.3 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
-*
-* Copyright (c) 2015 Ramon Santamaria (@raysan5)
-*
-********************************************************************************************/
-
-#include "raylib.h"
-
-//#define PLATFORM_WEB
-
-#if defined(PLATFORM_WEB)
- #include
-#endif
-
-//----------------------------------------------------------------------------------
-// Global Variables Definition
-//----------------------------------------------------------------------------------
-int screenWidth = 800;
-int screenHeight = 450;
-
-//----------------------------------------------------------------------------------
-// Module Functions Declaration
-//----------------------------------------------------------------------------------
-void UpdateDrawFrame(void); // Update and Draw one frame
-
-//----------------------------------------------------------------------------------
-// Main Enry Point
-//----------------------------------------------------------------------------------
-int main()
-{
- // Initialization
- //--------------------------------------------------------------------------------------
- InitWindow(screenWidth, screenHeight, "raylib [core] example - basic window");
-
-#if defined(PLATFORM_WEB)
- emscripten_set_main_loop(UpdateDrawFrame, 0, 1);
-#else
- SetTargetFPS(60); // Set our game to run at 60 frames-per-second
- //--------------------------------------------------------------------------------------
-
- // Main game loop
- while (!WindowShouldClose()) // Detect window close button or ESC key
- {
- UpdateDrawFrame();
- }
-#endif
-
- // De-Initialization
- //--------------------------------------------------------------------------------------
- CloseWindow(); // Close window and OpenGL context
- //--------------------------------------------------------------------------------------
-
- return 0;
-}
-
-//----------------------------------------------------------------------------------
-// Module Functions Definition
-//----------------------------------------------------------------------------------
-void UpdateDrawFrame(void)
-{
- // Update
- //----------------------------------------------------------------------------------
- // TODO: Update your variables here
- //----------------------------------------------------------------------------------
-
- // Draw
- //----------------------------------------------------------------------------------
- BeginDrawing();
-
- ClearBackground(RAYWHITE);
-
- DrawText("Congrats! You created your first window!", 190, 200, 20, LIGHTGRAY);
-
- EndDrawing();
- //----------------------------------------------------------------------------------
-}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/core/core_color_select.c b/ExampleApplication/Examples/core/core_color_select.c
deleted file mode 100644
index 002a693..0000000
--- a/ExampleApplication/Examples/core/core_color_select.c
+++ /dev/null
@@ -1,94 +0,0 @@
-/*******************************************************************************************
-*
-* raylib [core] example - Color selection by mouse (collision detection)
-*
-* This example has been created using raylib 1.0 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
-*
-* Copyright (c) 2014 Ramon Santamaria (@raysan5)
-*
-********************************************************************************************/
-
-#include "raylib.h"
-
-int main()
-{
- // Initialization
- //--------------------------------------------------------------------------------------
- int screenWidth = 800;
- int screenHeight = 450;
-
- InitWindow(screenWidth, screenHeight, "raylib [core] example - color selection (collision detection)");
-
- Color colors[21] = { DARKGRAY, MAROON, ORANGE, DARKGREEN, DARKBLUE, DARKPURPLE, DARKBROWN,
- GRAY, RED, GOLD, LIME, BLUE, VIOLET, BROWN, LIGHTGRAY, PINK, YELLOW,
- GREEN, SKYBLUE, PURPLE, BEIGE };
-
- Rectangle colorsRecs[21]; // Rectangles array
-
- // Fills colorsRecs data (for every rectangle)
- for (int i = 0; i < 21; i++)
- {
- colorsRecs[i].x = 20 + 100*(i%7) + 10*(i%7);
- colorsRecs[i].y = 60 + 100*(i/7) + 10*(i/7);
- colorsRecs[i].width = 100;
- colorsRecs[i].height = 100;
- }
-
- bool selected[21] = { false }; // Selected rectangles indicator
-
- Vector2 mousePoint;
-
- SetTargetFPS(60); // Set our game to run at 60 frames-per-second
- //--------------------------------------------------------------------------------------
-
- // Main game loop
- while (!WindowShouldClose()) // Detect window close button or ESC key
- {
- // Update
- //----------------------------------------------------------------------------------
- mousePoint = GetMousePosition();
-
- for (int i = 0; i < 21; i++) // Iterate along all the rectangles
- {
- if (CheckCollisionPointRec(mousePoint, colorsRecs[i]))
- {
- colors[i].a = 120;
-
- if (IsMouseButtonPressed(MOUSE_LEFT_BUTTON)) selected[i] = !selected[i];
- }
- else colors[i].a = 255;
- }
- //----------------------------------------------------------------------------------
-
- // Draw
- //----------------------------------------------------------------------------------
- BeginDrawing();
-
- ClearBackground(RAYWHITE);
-
- for (int i = 0; i < 21; i++) // Draw all rectangles
- {
- DrawRectangleRec(colorsRecs[i], colors[i]);
-
- // Draw four rectangles around selected rectangle
- if (selected[i])
- {
- DrawRectangle(colorsRecs[i].x, colorsRecs[i].y, 100, 10, RAYWHITE); // Square top rectangle
- DrawRectangle(colorsRecs[i].x, colorsRecs[i].y, 10, 100, RAYWHITE); // Square left rectangle
- DrawRectangle(colorsRecs[i].x + 90, colorsRecs[i].y, 10, 100, RAYWHITE); // Square right rectangle
- DrawRectangle(colorsRecs[i].x, colorsRecs[i].y + 90, 100, 10, RAYWHITE); // Square bottom rectangle
- }
- }
-
- EndDrawing();
- //----------------------------------------------------------------------------------
- }
-
- // De-Initialization
- //--------------------------------------------------------------------------------------
- CloseWindow(); // Close window and OpenGL context
- //--------------------------------------------------------------------------------------
-
- return 0;
-}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/core/core_color_select.cs b/ExampleApplication/Examples/core/core_color_select.cs
new file mode 100644
index 0000000..6ebe468
--- /dev/null
+++ b/ExampleApplication/Examples/core/core_color_select.cs
@@ -0,0 +1,8 @@
+
+using Raylib;
+using static Raylib.rl;
+
+public partial class Examples
+{
+ /*******************************************************************************************
*
* raylib [core] example - Color selection by mouse (collision detection)
*
* This example has been created using raylib 1.0 (www.raylib.com)
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
*
* Copyright (c) 2014 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
public static int core_color_select()
{
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 800;
int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "raylib [core] example - color selection (collision detection)");
Color colors[21] = { DARKGRAY, MAROON, ORANGE, DARKGREEN, DARKBLUE, DARKPURPLE, DARKBROWN,
GRAY, RED, GOLD, LIME, BLUE, VIOLET, BROWN, LIGHTGRAY, PINK, YELLOW,
GREEN, SKYBLUE, PURPLE, BEIGE };
Rectangle colorsRecs[21]; // Rectangles array
// Fills colorsRecs data (for every rectangle)
for (int i = 0; i < 21; i++)
{
colorsRecs[i].x = 20 + 100*(i%7) + 10*(i%7);
colorsRecs[i].y = 60 + 100*(i/7) + 10*(i/7);
colorsRecs[i].width = 100;
colorsRecs[i].height = 100;
}
bool selected[21] = { false }; // Selected rectangles indicator
Vector2 mousePoint;
SetTargetFPS(60); // Set our game to run at 60 frames-per-second
//--------------------------------------------------------------------------------------
// Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key
{
// Update
//----------------------------------------------------------------------------------
mousePoint = GetMousePosition();
for (int i = 0; i < 21; i++) // Iterate along all the rectangles
{
if (CheckCollisionPointRec(mousePoint, colorsRecs[i]))
{
colors[i].a = 120;
if (IsMouseButtonPressed(MOUSE_LEFT_BUTTON)) selected[i] = !selected[i];
}
else colors[i].a = 255;
}
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
ClearBackground(RAYWHITE);
for (int i = 0; i < 21; i++) // Draw all rectangles
{
DrawRectangleRec(colorsRecs[i], colors[i]);
// Draw four rectangles around selected rectangle
if (selected[i])
{
DrawRectangle(colorsRecs[i].x, colorsRecs[i].y, 100, 10, RAYWHITE); // Square top rectangle
DrawRectangle(colorsRecs[i].x, colorsRecs[i].y, 10, 100, RAYWHITE); // Square left rectangle
DrawRectangle(colorsRecs[i].x + 90, colorsRecs[i].y, 10, 100, RAYWHITE); // Square right rectangle
DrawRectangle(colorsRecs[i].x, colorsRecs[i].y + 90, 100, 10, RAYWHITE); // Square bottom rectangle
}
}
EndDrawing();
//----------------------------------------------------------------------------------
}
// De-Initialization
//--------------------------------------------------------------------------------------
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
return 0;
}
+}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/core/core_drop_files.c b/ExampleApplication/Examples/core/core_drop_files.c
deleted file mode 100644
index 5c1501b..0000000
--- a/ExampleApplication/Examples/core/core_drop_files.c
+++ /dev/null
@@ -1,76 +0,0 @@
-/*******************************************************************************************
-*
-* raylib [core] example - Windows drop files
-*
-* This example only works on platforms that support drag & drop (Windows, Linux, OSX, Html5?)
-*
-* This example has been created using raylib 1.3 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
-*
-* Copyright (c) 2015 Ramon Santamaria (@raysan5)
-*
-********************************************************************************************/
-
-#include "raylib.h"
-
-int main()
-{
- // Initialization
- //--------------------------------------------------------------------------------------
- int screenWidth = 800;
- int screenHeight = 450;
-
- InitWindow(screenWidth, screenHeight, "raylib [core] example - drop files");
-
- int count = 0;
- char **droppedFiles = { 0 };
-
- SetTargetFPS(60);
- //--------------------------------------------------------------------------------------
-
- // Main game loop
- while (!WindowShouldClose()) // Detect window close button or ESC key
- {
- // Update
- //----------------------------------------------------------------------------------
- if (IsFileDropped())
- {
- droppedFiles = GetDroppedFiles(&count);
- }
- //----------------------------------------------------------------------------------
-
- // Draw
- //----------------------------------------------------------------------------------
- BeginDrawing();
-
- ClearBackground(RAYWHITE);
-
- if (count == 0) DrawText("Drop your files to this window!", 100, 40, 20, DARKGRAY);
- else
- {
- DrawText("Dropped files:", 100, 40, 20, DARKGRAY);
-
- for (int i = 0; i < count; i++)
- {
- if (i%2 == 0) DrawRectangle(0, 85 + 40*i, screenWidth, 40, Fade(LIGHTGRAY, 0.5f));
- else DrawRectangle(0, 85 + 40*i, screenWidth, 40, Fade(LIGHTGRAY, 0.3f));
-
- DrawText(droppedFiles[i], 120, 100 + 40*i, 10, GRAY);
- }
-
- DrawText("Drop new files...", 100, 110 + 40*count, 20, DARKGRAY);
- }
-
- EndDrawing();
- //----------------------------------------------------------------------------------
- }
-
- // De-Initialization
- //--------------------------------------------------------------------------------------
- ClearDroppedFiles(); // Clear internal buffers
-
- CloseWindow(); // Close window and OpenGL context
- //--------------------------------------------------------------------------------------
-
- return 0;
-}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/core/core_drop_files.cs b/ExampleApplication/Examples/core/core_drop_files.cs
new file mode 100644
index 0000000..acee51e
--- /dev/null
+++ b/ExampleApplication/Examples/core/core_drop_files.cs
@@ -0,0 +1,8 @@
+
+using Raylib;
+using static Raylib.rl;
+
+public partial class Examples
+{
+ /*******************************************************************************************
*
* raylib [core] example - Windows drop files
*
* This example only works on platforms that support drag & drop (Windows, Linux, OSX, Html5?)
*
* This example has been created using raylib 1.3 (www.raylib.com)
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
*
* Copyright (c) 2015 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
public static int core_drop_files()
{
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 800;
int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "raylib [core] example - drop files");
int count = 0;
char **droppedFiles = { 0 };
SetTargetFPS(60);
//--------------------------------------------------------------------------------------
// Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key
{
// Update
//----------------------------------------------------------------------------------
if (IsFileDropped())
{
droppedFiles = GetDroppedFiles(&count);
}
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
ClearBackground(RAYWHITE);
if (count == 0) DrawText("Drop your files to this window!", 100, 40, 20, DARKGRAY);
else
{
DrawText("Dropped files:", 100, 40, 20, DARKGRAY);
for (int i = 0; i < count; i++)
{
if (i%2 == 0) DrawRectangle(0, 85 + 40*i, screenWidth, 40, Fade(LIGHTGRAY, 0.5f));
else DrawRectangle(0, 85 + 40*i, screenWidth, 40, Fade(LIGHTGRAY, 0.3f));
DrawText(droppedFiles[i], 120, 100 + 40*i, 10, GRAY);
}
DrawText("Drop new files...", 100, 110 + 40*count, 20, DARKGRAY);
}
EndDrawing();
//----------------------------------------------------------------------------------
}
// De-Initialization
//--------------------------------------------------------------------------------------
ClearDroppedFiles(); // Clear internal buffers
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
return 0;
}
+}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/core/core_gestures_detection.c b/ExampleApplication/Examples/core/core_gestures_detection.c
deleted file mode 100644
index 63a1e6b..0000000
--- a/ExampleApplication/Examples/core/core_gestures_detection.c
+++ /dev/null
@@ -1,115 +0,0 @@
-/*******************************************************************************************
-*
-* raylib [core] example - Gestures Detection
-*
-* This example has been created using raylib 1.4 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
-*
-* Copyright (c) 2016 Ramon Santamaria (@raysan5)
-*
-********************************************************************************************/
-
-#include "raylib.h"
-#include
-
-#define MAX_GESTURE_STRINGS 20
-
-int main()
-{
- // Initialization
- //--------------------------------------------------------------------------------------
- int screenWidth = 800;
- int screenHeight = 450;
-
- InitWindow(screenWidth, screenHeight, "raylib [core] example - gestures detection");
-
- Vector2 touchPosition = { 0, 0 };
- Rectangle touchArea = { 220, 10, screenWidth - 230, screenHeight - 20 };
-
- int gesturesCount = 0;
- char gestureStrings[MAX_GESTURE_STRINGS][32];
-
- int currentGesture = GESTURE_NONE;
- int lastGesture = GESTURE_NONE;
-
- //SetGesturesEnabled(0b0000000000001001); // Enable only some gestures to be detected
-
- SetTargetFPS(60);
- //--------------------------------------------------------------------------------------
-
- // Main game loop
- while (!WindowShouldClose()) // Detect window close button or ESC key
- {
- // Update
- //----------------------------------------------------------------------------------
- lastGesture = currentGesture;
- currentGesture = GetGestureDetected();
- touchPosition = GetTouchPosition(0);
-
- if (CheckCollisionPointRec(touchPosition, touchArea) && (currentGesture != GESTURE_NONE))
- {
- if (currentGesture != lastGesture)
- {
- // Store gesture string
- switch (currentGesture)
- {
- case GESTURE_TAP: strcpy(gestureStrings[gesturesCount], "GESTURE TAP"); break;
- case GESTURE_DOUBLETAP: strcpy(gestureStrings[gesturesCount], "GESTURE DOUBLETAP"); break;
- case GESTURE_HOLD: strcpy(gestureStrings[gesturesCount], "GESTURE HOLD"); break;
- case GESTURE_DRAG: strcpy(gestureStrings[gesturesCount], "GESTURE DRAG"); break;
- case GESTURE_SWIPE_RIGHT: strcpy(gestureStrings[gesturesCount], "GESTURE SWIPE RIGHT"); break;
- case GESTURE_SWIPE_LEFT: strcpy(gestureStrings[gesturesCount], "GESTURE SWIPE LEFT"); break;
- case GESTURE_SWIPE_UP: strcpy(gestureStrings[gesturesCount], "GESTURE SWIPE UP"); break;
- case GESTURE_SWIPE_DOWN: strcpy(gestureStrings[gesturesCount], "GESTURE SWIPE DOWN"); break;
- case GESTURE_PINCH_IN: strcpy(gestureStrings[gesturesCount], "GESTURE PINCH IN"); break;
- case GESTURE_PINCH_OUT: strcpy(gestureStrings[gesturesCount], "GESTURE PINCH OUT"); break;
- default: break;
- }
-
- gesturesCount++;
-
- // Reset gestures strings
- if (gesturesCount >= MAX_GESTURE_STRINGS)
- {
- for (int i = 0; i < MAX_GESTURE_STRINGS; i++) strcpy(gestureStrings[i], "\0");
-
- gesturesCount = 0;
- }
- }
- }
- //----------------------------------------------------------------------------------
-
- // Draw
- //----------------------------------------------------------------------------------
- BeginDrawing();
-
- ClearBackground(RAYWHITE);
-
- DrawRectangleRec(touchArea, GRAY);
- DrawRectangle(225, 15, screenWidth - 240, screenHeight - 30, RAYWHITE);
-
- DrawText("GESTURES TEST AREA", screenWidth - 270, screenHeight - 40, 20, Fade(GRAY, 0.5f));
-
- for (int i = 0; i < gesturesCount; i++)
- {
- if (i%2 == 0) DrawRectangle(10, 30 + 20*i, 200, 20, Fade(LIGHTGRAY, 0.5f));
- else DrawRectangle(10, 30 + 20*i, 200, 20, Fade(LIGHTGRAY, 0.3f));
-
- if (i < gesturesCount - 1) DrawText(gestureStrings[i], 35, 36 + 20*i, 10, DARKGRAY);
- else DrawText(gestureStrings[i], 35, 36 + 20*i, 10, MAROON);
- }
-
- DrawRectangleLines(10, 29, 200, screenHeight - 50, GRAY);
- DrawText("DETECTED GESTURES", 50, 15, 10, GRAY);
-
- if (currentGesture != GESTURE_NONE) DrawCircleV(touchPosition, 30, MAROON);
-
- EndDrawing();
- //----------------------------------------------------------------------------------
- }
-
- // De-Initialization
- //--------------------------------------------------------------------------------------
- CloseWindow(); // Close window and OpenGL context
- //--------------------------------------------------------------------------------------
-}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/core/core_gestures_detection.cs b/ExampleApplication/Examples/core/core_gestures_detection.cs
new file mode 100644
index 0000000..3692a4a
--- /dev/null
+++ b/ExampleApplication/Examples/core/core_gestures_detection.cs
@@ -0,0 +1,8 @@
+
+using Raylib;
+using static Raylib.rl;
+
+public partial class Examples
+{
+ /*******************************************************************************************
*
* raylib [core] example - Gestures Detection
*
* This example has been created using raylib 1.4 (www.raylib.com)
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
*
* Copyright (c) 2016 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
#include
#define MAX_GESTURE_STRINGS 20
public static int core_gestures_detection()
{
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 800;
int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "raylib [core] example - gestures detection");
Vector2 touchPosition = { 0, 0 };
Rectangle touchArea = { 220, 10, screenWidth - 230, screenHeight - 20 };
int gesturesCount = 0;
char gestureStrings[MAX_GESTURE_STRINGS][32];
int currentGesture = GESTURE_NONE;
int lastGesture = GESTURE_NONE;
//SetGesturesEnabled(0b0000000000001001); // Enable only some gestures to be detected
SetTargetFPS(60);
//--------------------------------------------------------------------------------------
// Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key
{
// Update
//----------------------------------------------------------------------------------
lastGesture = currentGesture;
currentGesture = GetGestureDetected();
touchPosition = GetTouchPosition(0);
if (CheckCollisionPointRec(touchPosition, touchArea) && (currentGesture != GESTURE_NONE))
{
if (currentGesture != lastGesture)
{
// Store gesture string
switch (currentGesture)
{
case GESTURE_TAP: strcpy(gestureStrings[gesturesCount], "GESTURE TAP"); break;
case GESTURE_DOUBLETAP: strcpy(gestureStrings[gesturesCount], "GESTURE DOUBLETAP"); break;
case GESTURE_HOLD: strcpy(gestureStrings[gesturesCount], "GESTURE HOLD"); break;
case GESTURE_DRAG: strcpy(gestureStrings[gesturesCount], "GESTURE DRAG"); break;
case GESTURE_SWIPE_RIGHT: strcpy(gestureStrings[gesturesCount], "GESTURE SWIPE RIGHT"); break;
case GESTURE_SWIPE_LEFT: strcpy(gestureStrings[gesturesCount], "GESTURE SWIPE LEFT"); break;
case GESTURE_SWIPE_UP: strcpy(gestureStrings[gesturesCount], "GESTURE SWIPE UP"); break;
case GESTURE_SWIPE_DOWN: strcpy(gestureStrings[gesturesCount], "GESTURE SWIPE DOWN"); break;
case GESTURE_PINCH_IN: strcpy(gestureStrings[gesturesCount], "GESTURE PINCH IN"); break;
case GESTURE_PINCH_OUT: strcpy(gestureStrings[gesturesCount], "GESTURE PINCH OUT"); break;
default: break;
}
gesturesCount++;
// Reset gestures strings
if (gesturesCount >= MAX_GESTURE_STRINGS)
{
for (int i = 0; i < MAX_GESTURE_STRINGS; i++) strcpy(gestureStrings[i], "\0");
gesturesCount = 0;
}
}
}
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
ClearBackground(RAYWHITE);
DrawRectangleRec(touchArea, GRAY);
DrawRectangle(225, 15, screenWidth - 240, screenHeight - 30, RAYWHITE);
DrawText("GESTURES TEST AREA", screenWidth - 270, screenHeight - 40, 20, Fade(GRAY, 0.5f));
for (int i = 0; i < gesturesCount; i++)
{
if (i%2 == 0) DrawRectangle(10, 30 + 20*i, 200, 20, Fade(LIGHTGRAY, 0.5f));
else DrawRectangle(10, 30 + 20*i, 200, 20, Fade(LIGHTGRAY, 0.3f));
if (i < gesturesCount - 1) DrawText(gestureStrings[i], 35, 36 + 20*i, 10, DARKGRAY);
else DrawText(gestureStrings[i], 35, 36 + 20*i, 10, MAROON);
}
DrawRectangleLines(10, 29, 200, screenHeight - 50, GRAY);
DrawText("DETECTED GESTURES", 50, 15, 10, GRAY);
if (currentGesture != GESTURE_NONE) DrawCircleV(touchPosition, 30, MAROON);
EndDrawing();
//----------------------------------------------------------------------------------
}
// De-Initialization
//--------------------------------------------------------------------------------------
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
}
+}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/core/core_input_gamepad.c b/ExampleApplication/Examples/core/core_input_gamepad.c
deleted file mode 100644
index 64520a4..0000000
--- a/ExampleApplication/Examples/core/core_input_gamepad.c
+++ /dev/null
@@ -1,194 +0,0 @@
-/*******************************************************************************************
-*
-* raylib [core] example - Gamepad input
-*
-* NOTE: This example requires a Gamepad connected to the system
-* raylib is configured to work with the following gamepads:
-* - Xbox 360 Controller (Xbox 360, Xbox One)
-* - PLAYSTATION(R)3 Controller
-* Check raylib.h for buttons configuration
-*
-* This example has been created using raylib 1.6 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
-*
-* Copyright (c) 2013-2016 Ramon Santamaria (@raysan5)
-*
-********************************************************************************************/
-
-#include "raylib.h"
-
-// NOTE: Gamepad name ID depends on drivers and OS
-#if defined(PLATFORM_RPI)
- #define XBOX360_NAME_ID "Microsoft X-Box 360 pad"
- #define PS3_NAME_ID "PLAYSTATION(R)3 Controller"
-#else
- #define XBOX360_NAME_ID "Xbox 360 Controller"
- #define PS3_NAME_ID "PLAYSTATION(R)3 Controller"
-#endif
-
-int main()
-{
- // Initialization
- //--------------------------------------------------------------------------------------
- int screenWidth = 800;
- int screenHeight = 450;
-
- SetConfigFlags(FLAG_MSAA_4X_HINT); // Set MSAA 4X hint before windows creation
-
- InitWindow(screenWidth, screenHeight, "raylib [core] example - gamepad input");
-
- Texture2D texPs3Pad = LoadTexture("resources/ps3.png");
- Texture2D texXboxPad = LoadTexture("resources/xbox.png");
-
- SetTargetFPS(60);
- //--------------------------------------------------------------------------------------
-
- // Main game loop
- while (!WindowShouldClose()) // Detect window close button or ESC key
- {
- // Update
- //----------------------------------------------------------------------------------
- // ...
- //----------------------------------------------------------------------------------
-
- // Draw
- //----------------------------------------------------------------------------------
- BeginDrawing();
-
- ClearBackground(RAYWHITE);
-
- if (IsGamepadAvailable(GAMEPAD_PLAYER1))
- {
- DrawText(FormatText("GP1: %s", GetGamepadName(GAMEPAD_PLAYER1)), 10, 10, 10, BLACK);
-
- if (IsGamepadName(GAMEPAD_PLAYER1, XBOX360_NAME_ID))
- {
- DrawTexture(texXboxPad, 0, 0, DARKGRAY);
-
- // Draw buttons: xbox home
- if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_XBOX_BUTTON_HOME)) DrawCircle(394, 89, 19, RED);
-
- // Draw buttons: basic
- if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_XBOX_BUTTON_START)) DrawCircle(436, 150, 9, RED);
- if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_XBOX_BUTTON_SELECT)) DrawCircle(352, 150, 9, RED);
- if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_XBOX_BUTTON_X)) DrawCircle(501, 151, 15, BLUE);
- if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_XBOX_BUTTON_A)) DrawCircle(536, 187, 15, LIME);
- if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_XBOX_BUTTON_B)) DrawCircle(572, 151, 15, MAROON);
- if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_XBOX_BUTTON_Y)) DrawCircle(536, 115, 15, GOLD);
-
- // Draw buttons: d-pad
- DrawRectangle(317, 202, 19, 71, BLACK);
- DrawRectangle(293, 228, 69, 19, BLACK);
- if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_XBOX_BUTTON_UP)) DrawRectangle(317, 202, 19, 26, RED);
- if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_XBOX_BUTTON_DOWN)) DrawRectangle(317, 202 + 45, 19, 26, RED);
- if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_XBOX_BUTTON_LEFT)) DrawRectangle(292, 228, 25, 19, RED);
- if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_XBOX_BUTTON_RIGHT)) DrawRectangle(292 + 44, 228, 26, 19, RED);
-
- // Draw buttons: left-right back
- if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_XBOX_BUTTON_LB)) DrawCircle(259, 61, 20, RED);
- if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_XBOX_BUTTON_RB)) DrawCircle(536, 61, 20, RED);
-
- // Draw axis: left joystick
- DrawCircle(259, 152, 39, BLACK);
- DrawCircle(259, 152, 34, LIGHTGRAY);
- DrawCircle(259 + (GetGamepadAxisMovement(GAMEPAD_PLAYER1, GAMEPAD_XBOX_AXIS_LEFT_X)*20),
- 152 - (GetGamepadAxisMovement(GAMEPAD_PLAYER1, GAMEPAD_XBOX_AXIS_LEFT_Y)*20), 25, BLACK);
-
- // Draw axis: right joystick
- DrawCircle(461, 237, 38, BLACK);
- DrawCircle(461, 237, 33, LIGHTGRAY);
- DrawCircle(461 + (GetGamepadAxisMovement(GAMEPAD_PLAYER1, GAMEPAD_XBOX_AXIS_RIGHT_X)*20),
- 237 - (GetGamepadAxisMovement(GAMEPAD_PLAYER1, GAMEPAD_XBOX_AXIS_RIGHT_Y)*20), 25, BLACK);
-
- // Draw axis: left-right triggers
- DrawRectangle(170, 30, 15, 70, GRAY);
- DrawRectangle(604, 30, 15, 70, GRAY);
- DrawRectangle(170, 30, 15, (((1.0f + GetGamepadAxisMovement(GAMEPAD_PLAYER1, GAMEPAD_XBOX_AXIS_LT))/2.0f)*70), RED);
- DrawRectangle(604, 30, 15, (((1.0f + GetGamepadAxisMovement(GAMEPAD_PLAYER1, GAMEPAD_XBOX_AXIS_RT))/2.0f)*70), RED);
-
- //DrawText(FormatText("Xbox axis LT: %02.02f", GetGamepadAxisMovement(GAMEPAD_PLAYER1, GAMEPAD_XBOX_AXIS_LT)), 10, 40, 10, BLACK);
- //DrawText(FormatText("Xbox axis RT: %02.02f", GetGamepadAxisMovement(GAMEPAD_PLAYER1, GAMEPAD_XBOX_AXIS_RT)), 10, 60, 10, BLACK);
- }
- else if (IsGamepadName(GAMEPAD_PLAYER1, PS3_NAME_ID))
- {
- DrawTexture(texPs3Pad, 0, 0, DARKGRAY);
-
- // Draw buttons: ps
- if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_PS3_BUTTON_PS)) DrawCircle(396, 222, 13, RED);
-
- // Draw buttons: basic
- if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_PS3_BUTTON_SELECT)) DrawRectangle(328, 170, 32, 13, RED);
- if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_PS3_BUTTON_START)) DrawTriangle((Vector2){ 436, 168 }, (Vector2){ 436, 185 }, (Vector2){ 464, 177 }, RED);
- if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_PS3_BUTTON_TRIANGLE)) DrawCircle(557, 144, 13, LIME);
- if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_PS3_BUTTON_CIRCLE)) DrawCircle(586, 173, 13, RED);
- if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_PS3_BUTTON_CROSS)) DrawCircle(557, 203, 13, VIOLET);
- if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_PS3_BUTTON_SQUARE)) DrawCircle(527, 173, 13, PINK);
-
- // Draw buttons: d-pad
- DrawRectangle(225, 132, 24, 84, BLACK);
- DrawRectangle(195, 161, 84, 25, BLACK);
- if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_PS3_BUTTON_UP)) DrawRectangle(225, 132, 24, 29, RED);
- if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_PS3_BUTTON_DOWN)) DrawRectangle(225, 132 + 54, 24, 30, RED);
- if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_PS3_BUTTON_LEFT)) DrawRectangle(195, 161, 30, 25, RED);
- if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_PS3_BUTTON_RIGHT)) DrawRectangle(195 + 54, 161, 30, 25, RED);
-
- // Draw buttons: left-right back buttons
- if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_PS3_BUTTON_L1)) DrawCircle(239, 82, 20, RED);
- if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_PS3_BUTTON_R1)) DrawCircle(557, 82, 20, RED);
-
- // Draw axis: left joystick
- DrawCircle(319, 255, 35, BLACK);
- DrawCircle(319, 255, 31, LIGHTGRAY);
- DrawCircle(319 + (GetGamepadAxisMovement(GAMEPAD_PLAYER1, GAMEPAD_PS3_AXIS_LEFT_X)*20),
- 255 + (GetGamepadAxisMovement(GAMEPAD_PLAYER1, GAMEPAD_PS3_AXIS_LEFT_Y)*20), 25, BLACK);
-
- // Draw axis: right joystick
- DrawCircle(475, 255, 35, BLACK);
- DrawCircle(475, 255, 31, LIGHTGRAY);
- DrawCircle(475 + (GetGamepadAxisMovement(GAMEPAD_PLAYER1, GAMEPAD_PS3_AXIS_RIGHT_X)*20),
- 255 + (GetGamepadAxisMovement(GAMEPAD_PLAYER1, GAMEPAD_PS3_AXIS_RIGHT_Y)*20), 25, BLACK);
-
- // Draw axis: left-right triggers
- DrawRectangle(169, 48, 15, 70, GRAY);
- DrawRectangle(611, 48, 15, 70, GRAY);
- DrawRectangle(169, 48, 15, (((1.0f - GetGamepadAxisMovement(GAMEPAD_PLAYER1, GAMEPAD_PS3_AXIS_L2))/2.0f)*70), RED);
- DrawRectangle(611, 48, 15, (((1.0f - GetGamepadAxisMovement(GAMEPAD_PLAYER1, GAMEPAD_PS3_AXIS_R2))/2.0f)*70), RED);
- }
- else
- {
- DrawText("- GENERIC GAMEPAD -", 280, 180, 20, GRAY);
-
- // TODO: Draw generic gamepad
- }
-
- DrawText(FormatText("DETECTED AXIS [%i]:", GetGamepadAxisCount(GAMEPAD_PLAYER1)), 10, 50, 10, MAROON);
-
- for (int i = 0; i < GetGamepadAxisCount(GAMEPAD_PLAYER1); i++)
- {
- DrawText(FormatText("AXIS %i: %.02f", i, GetGamepadAxisMovement(GAMEPAD_PLAYER1, i)), 20, 70 + 20*i, 10, DARKGRAY);
- }
-
- if (GetGamepadButtonPressed() != -1) DrawText(FormatText("DETECTED BUTTON: %i", GetGamepadButtonPressed()), 10, 430, 10, RED);
- else DrawText("DETECTED BUTTON: NONE", 10, 430, 10, GRAY);
- }
- else
- {
- DrawText("GP1: NOT DETECTED", 10, 10, 10, GRAY);
-
- DrawTexture(texXboxPad, 0, 0, LIGHTGRAY);
- }
-
- EndDrawing();
- //----------------------------------------------------------------------------------
- }
-
- // De-Initialization
- //--------------------------------------------------------------------------------------
- UnloadTexture(texPs3Pad);
- UnloadTexture(texXboxPad);
-
- CloseWindow(); // Close window and OpenGL context
- //--------------------------------------------------------------------------------------
-
- return 0;
-}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/core/core_input_gamepad.cs b/ExampleApplication/Examples/core/core_input_gamepad.cs
new file mode 100644
index 0000000..ad5c273
--- /dev/null
+++ b/ExampleApplication/Examples/core/core_input_gamepad.cs
@@ -0,0 +1,8 @@
+
+using Raylib;
+using static Raylib.rl;
+
+public partial class Examples
+{
+ /*******************************************************************************************
*
* raylib [core] example - Gamepad input
*
* NOTE: This example requires a Gamepad connected to the system
* raylib is configured to work with the following gamepads:
* - Xbox 360 Controller (Xbox 360, Xbox One)
* - PLAYSTATION(R)3 Controller
* Check raylib.h for buttons configuration
*
* This example has been created using raylib 1.6 (www.raylib.com)
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
*
* Copyright (c) 2013-2016 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
// NOTE: Gamepad name ID depends on drivers and OS
#if defined(PLATFORM_RPI)
#define XBOX360_NAME_ID "Microsoft X-Box 360 pad"
#define PS3_NAME_ID "PLAYSTATION(R)3 Controller"
#else
#define XBOX360_NAME_ID "Xbox 360 Controller"
#define PS3_NAME_ID "PLAYSTATION(R)3 Controller"
#endif
public static int core_input_gamepad()
{
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 800;
int screenHeight = 450;
SetConfigFlags(FLAG_MSAA_4X_HINT); // Set MSAA 4X hint before windows creation
InitWindow(screenWidth, screenHeight, "raylib [core] example - gamepad input");
Texture2D texPs3Pad = LoadTexture("resources/ps3.png");
Texture2D texXboxPad = LoadTexture("resources/xbox.png");
SetTargetFPS(60);
//--------------------------------------------------------------------------------------
// Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key
{
// Update
//----------------------------------------------------------------------------------
// ...
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
ClearBackground(RAYWHITE);
if (IsGamepadAvailable(GAMEPAD_PLAYER1))
{
DrawText(FormatText("GP1: %s", GetGamepadName(GAMEPAD_PLAYER1)), 10, 10, 10, BLACK);
if (IsGamepadName(GAMEPAD_PLAYER1, XBOX360_NAME_ID))
{
DrawTexture(texXboxPad, 0, 0, DARKGRAY);
// Draw buttons: xbox home
if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_XBOX_BUTTON_HOME)) DrawCircle(394, 89, 19, RED);
// Draw buttons: basic
if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_XBOX_BUTTON_START)) DrawCircle(436, 150, 9, RED);
if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_XBOX_BUTTON_SELECT)) DrawCircle(352, 150, 9, RED);
if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_XBOX_BUTTON_X)) DrawCircle(501, 151, 15, BLUE);
if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_XBOX_BUTTON_A)) DrawCircle(536, 187, 15, LIME);
if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_XBOX_BUTTON_B)) DrawCircle(572, 151, 15, MAROON);
if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_XBOX_BUTTON_Y)) DrawCircle(536, 115, 15, GOLD);
// Draw buttons: d-pad
DrawRectangle(317, 202, 19, 71, BLACK);
DrawRectangle(293, 228, 69, 19, BLACK);
if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_XBOX_BUTTON_UP)) DrawRectangle(317, 202, 19, 26, RED);
if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_XBOX_BUTTON_DOWN)) DrawRectangle(317, 202 + 45, 19, 26, RED);
if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_XBOX_BUTTON_LEFT)) DrawRectangle(292, 228, 25, 19, RED);
if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_XBOX_BUTTON_RIGHT)) DrawRectangle(292 + 44, 228, 26, 19, RED);
// Draw buttons: left-right back
if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_XBOX_BUTTON_LB)) DrawCircle(259, 61, 20, RED);
if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_XBOX_BUTTON_RB)) DrawCircle(536, 61, 20, RED);
// Draw axis: left joystick
DrawCircle(259, 152, 39, BLACK);
DrawCircle(259, 152, 34, LIGHTGRAY);
DrawCircle(259 + (GetGamepadAxisMovement(GAMEPAD_PLAYER1, GAMEPAD_XBOX_AXIS_LEFT_X)*20),
152 - (GetGamepadAxisMovement(GAMEPAD_PLAYER1, GAMEPAD_XBOX_AXIS_LEFT_Y)*20), 25, BLACK);
// Draw axis: right joystick
DrawCircle(461, 237, 38, BLACK);
DrawCircle(461, 237, 33, LIGHTGRAY);
DrawCircle(461 + (GetGamepadAxisMovement(GAMEPAD_PLAYER1, GAMEPAD_XBOX_AXIS_RIGHT_X)*20),
237 - (GetGamepadAxisMovement(GAMEPAD_PLAYER1, GAMEPAD_XBOX_AXIS_RIGHT_Y)*20), 25, BLACK);
// Draw axis: left-right triggers
DrawRectangle(170, 30, 15, 70, GRAY);
DrawRectangle(604, 30, 15, 70, GRAY);
DrawRectangle(170, 30, 15, (((1.0f + GetGamepadAxisMovement(GAMEPAD_PLAYER1, GAMEPAD_XBOX_AXIS_LT))/2.0f)*70), RED);
DrawRectangle(604, 30, 15, (((1.0f + GetGamepadAxisMovement(GAMEPAD_PLAYER1, GAMEPAD_XBOX_AXIS_RT))/2.0f)*70), RED);
//DrawText(FormatText("Xbox axis LT: %02.02f", GetGamepadAxisMovement(GAMEPAD_PLAYER1, GAMEPAD_XBOX_AXIS_LT)), 10, 40, 10, BLACK);
//DrawText(FormatText("Xbox axis RT: %02.02f", GetGamepadAxisMovement(GAMEPAD_PLAYER1, GAMEPAD_XBOX_AXIS_RT)), 10, 60, 10, BLACK);
}
else if (IsGamepadName(GAMEPAD_PLAYER1, PS3_NAME_ID))
{
DrawTexture(texPs3Pad, 0, 0, DARKGRAY);
// Draw buttons: ps
if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_PS3_BUTTON_PS)) DrawCircle(396, 222, 13, RED);
// Draw buttons: basic
if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_PS3_BUTTON_SELECT)) DrawRectangle(328, 170, 32, 13, RED);
if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_PS3_BUTTON_START)) DrawTriangle((Vector2){ 436, 168 }, (Vector2){ 436, 185 }, (Vector2){ 464, 177 }, RED);
if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_PS3_BUTTON_TRIANGLE)) DrawCircle(557, 144, 13, LIME);
if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_PS3_BUTTON_CIRCLE)) DrawCircle(586, 173, 13, RED);
if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_PS3_BUTTON_CROSS)) DrawCircle(557, 203, 13, VIOLET);
if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_PS3_BUTTON_SQUARE)) DrawCircle(527, 173, 13, PINK);
// Draw buttons: d-pad
DrawRectangle(225, 132, 24, 84, BLACK);
DrawRectangle(195, 161, 84, 25, BLACK);
if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_PS3_BUTTON_UP)) DrawRectangle(225, 132, 24, 29, RED);
if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_PS3_BUTTON_DOWN)) DrawRectangle(225, 132 + 54, 24, 30, RED);
if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_PS3_BUTTON_LEFT)) DrawRectangle(195, 161, 30, 25, RED);
if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_PS3_BUTTON_RIGHT)) DrawRectangle(195 + 54, 161, 30, 25, RED);
// Draw buttons: left-right back buttons
if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_PS3_BUTTON_L1)) DrawCircle(239, 82, 20, RED);
if (IsGamepadButtonDown(GAMEPAD_PLAYER1, GAMEPAD_PS3_BUTTON_R1)) DrawCircle(557, 82, 20, RED);
// Draw axis: left joystick
DrawCircle(319, 255, 35, BLACK);
DrawCircle(319, 255, 31, LIGHTGRAY);
DrawCircle(319 + (GetGamepadAxisMovement(GAMEPAD_PLAYER1, GAMEPAD_PS3_AXIS_LEFT_X)*20),
255 + (GetGamepadAxisMovement(GAMEPAD_PLAYER1, GAMEPAD_PS3_AXIS_LEFT_Y)*20), 25, BLACK);
// Draw axis: right joystick
DrawCircle(475, 255, 35, BLACK);
DrawCircle(475, 255, 31, LIGHTGRAY);
DrawCircle(475 + (GetGamepadAxisMovement(GAMEPAD_PLAYER1, GAMEPAD_PS3_AXIS_RIGHT_X)*20),
255 + (GetGamepadAxisMovement(GAMEPAD_PLAYER1, GAMEPAD_PS3_AXIS_RIGHT_Y)*20), 25, BLACK);
// Draw axis: left-right triggers
DrawRectangle(169, 48, 15, 70, GRAY);
DrawRectangle(611, 48, 15, 70, GRAY);
DrawRectangle(169, 48, 15, (((1.0f - GetGamepadAxisMovement(GAMEPAD_PLAYER1, GAMEPAD_PS3_AXIS_L2))/2.0f)*70), RED);
DrawRectangle(611, 48, 15, (((1.0f - GetGamepadAxisMovement(GAMEPAD_PLAYER1, GAMEPAD_PS3_AXIS_R2))/2.0f)*70), RED);
}
else
{
DrawText("- GENERIC GAMEPAD -", 280, 180, 20, GRAY);
// TODO: Draw generic gamepad
}
DrawText(FormatText("DETECTED AXIS [%i]:", GetGamepadAxisCount(GAMEPAD_PLAYER1)), 10, 50, 10, MAROON);
for (int i = 0; i < GetGamepadAxisCount(GAMEPAD_PLAYER1); i++)
{
DrawText(FormatText("AXIS %i: %.02f", i, GetGamepadAxisMovement(GAMEPAD_PLAYER1, i)), 20, 70 + 20*i, 10, DARKGRAY);
}
if (GetGamepadButtonPressed() != -1) DrawText(FormatText("DETECTED BUTTON: %i", GetGamepadButtonPressed()), 10, 430, 10, RED);
else DrawText("DETECTED BUTTON: NONE", 10, 430, 10, GRAY);
}
else
{
DrawText("GP1: NOT DETECTED", 10, 10, 10, GRAY);
DrawTexture(texXboxPad, 0, 0, LIGHTGRAY);
}
EndDrawing();
//----------------------------------------------------------------------------------
}
// De-Initialization
//--------------------------------------------------------------------------------------
UnloadTexture(texPs3Pad);
UnloadTexture(texXboxPad);
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
return 0;
}
+}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/core/core_input_keys.c b/ExampleApplication/Examples/core/core_input_keys.c
deleted file mode 100644
index 69384fd..0000000
--- a/ExampleApplication/Examples/core/core_input_keys.c
+++ /dev/null
@@ -1,59 +0,0 @@
-/*******************************************************************************************
-*
-* raylib [core] example - Keyboard input
-*
-* This example has been created using raylib 1.0 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
-*
-* Copyright (c) 2014 Ramon Santamaria (@raysan5)
-*
-********************************************************************************************/
-
-#include "raylib.h"
-
-int main()
-{
- // Initialization
- //--------------------------------------------------------------------------------------
- int screenWidth = 800;
- int screenHeight = 450;
-
- InitWindow(screenWidth, screenHeight, "raylib [core] example - keyboard input");
-
- Vector2 ballPosition = { (float)screenWidth/2, (float)screenHeight/2 };
-
- SetTargetFPS(60); // Set target frames-per-second
- //--------------------------------------------------------------------------------------
-
- // Main game loop
- while (!WindowShouldClose()) // Detect window close button or ESC key
- {
- // Update
- //----------------------------------------------------------------------------------
- if (IsKeyDown(KEY_RIGHT)) ballPosition.x += 2.0f;
- if (IsKeyDown(KEY_LEFT)) ballPosition.x -= 2.0f;
- if (IsKeyDown(KEY_UP)) ballPosition.y -= 2.0f;
- if (IsKeyDown(KEY_DOWN)) ballPosition.y += 2.0f;
- //----------------------------------------------------------------------------------
-
- // Draw
- //----------------------------------------------------------------------------------
- BeginDrawing();
-
- ClearBackground(RAYWHITE);
-
- DrawText("move the ball with arrow keys", 10, 10, 20, DARKGRAY);
-
- DrawCircleV(ballPosition, 50, MAROON);
-
- EndDrawing();
- //----------------------------------------------------------------------------------
- }
-
- // De-Initialization
- //--------------------------------------------------------------------------------------
- CloseWindow(); // Close window and OpenGL context
- //--------------------------------------------------------------------------------------
-
- return 0;
-}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/core/core_input_keys.cs b/ExampleApplication/Examples/core/core_input_keys.cs
new file mode 100644
index 0000000..089f64c
--- /dev/null
+++ b/ExampleApplication/Examples/core/core_input_keys.cs
@@ -0,0 +1,8 @@
+
+using Raylib;
+using static Raylib.rl;
+
+public partial class Examples
+{
+ /*******************************************************************************************
*
* raylib [core] example - Keyboard input
*
* This example has been created using raylib 1.0 (www.raylib.com)
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
*
* Copyright (c) 2014 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
public static int core_input_keys()
{
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 800;
int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "raylib [core] example - keyboard input");
Vector2 ballPosition = { (float)screenWidth/2, (float)screenHeight/2 };
SetTargetFPS(60); // Set target frames-per-second
//--------------------------------------------------------------------------------------
// Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key
{
// Update
//----------------------------------------------------------------------------------
if (IsKeyDown(KEY_RIGHT)) ballPosition.x += 2.0f;
if (IsKeyDown(KEY_LEFT)) ballPosition.x -= 2.0f;
if (IsKeyDown(KEY_UP)) ballPosition.y -= 2.0f;
if (IsKeyDown(KEY_DOWN)) ballPosition.y += 2.0f;
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
ClearBackground(RAYWHITE);
DrawText("move the ball with arrow keys", 10, 10, 20, DARKGRAY);
DrawCircleV(ballPosition, 50, MAROON);
EndDrawing();
//----------------------------------------------------------------------------------
}
// De-Initialization
//--------------------------------------------------------------------------------------
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
return 0;
}
+}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/core/core_input_mouse.c b/ExampleApplication/Examples/core/core_input_mouse.c
deleted file mode 100644
index 24d2dfc..0000000
--- a/ExampleApplication/Examples/core/core_input_mouse.c
+++ /dev/null
@@ -1,61 +0,0 @@
-/*******************************************************************************************
-*
-* raylib [core] example - Mouse input
-*
-* This example has been created using raylib 1.0 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
-*
-* Copyright (c) 2014 Ramon Santamaria (@raysan5)
-*
-********************************************************************************************/
-
-#include "raylib.h"
-
-int main()
-{
- // Initialization
- //--------------------------------------------------------------------------------------
- int screenWidth = 800;
- int screenHeight = 450;
-
- InitWindow(screenWidth, screenHeight, "raylib [core] example - mouse input");
-
- Vector2 ballPosition = { -100.0f, -100.0f };
- Color ballColor = DARKBLUE;
-
- SetTargetFPS(60);
- //---------------------------------------------------------------------------------------
-
- // Main game loop
- while (!WindowShouldClose()) // Detect window close button or ESC key
- {
- // Update
- //----------------------------------------------------------------------------------
- ballPosition = GetMousePosition();
-
- if (IsMouseButtonPressed(MOUSE_LEFT_BUTTON)) ballColor = MAROON;
- else if (IsMouseButtonPressed(MOUSE_MIDDLE_BUTTON)) ballColor = LIME;
- else if (IsMouseButtonPressed(MOUSE_RIGHT_BUTTON)) ballColor = DARKBLUE;
- //----------------------------------------------------------------------------------
-
- // Draw
- //----------------------------------------------------------------------------------
- BeginDrawing();
-
- ClearBackground(RAYWHITE);
-
- DrawCircleV(ballPosition, 40, ballColor);
-
- DrawText("move ball with mouse and click mouse button to change color", 10, 10, 20, DARKGRAY);
-
- EndDrawing();
- //----------------------------------------------------------------------------------
- }
-
- // De-Initialization
- //--------------------------------------------------------------------------------------
- CloseWindow(); // Close window and OpenGL context
- //--------------------------------------------------------------------------------------
-
- return 0;
-}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/core/core_input_mouse.cs b/ExampleApplication/Examples/core/core_input_mouse.cs
new file mode 100644
index 0000000..8e857ab
--- /dev/null
+++ b/ExampleApplication/Examples/core/core_input_mouse.cs
@@ -0,0 +1,8 @@
+
+using Raylib;
+using static Raylib.rl;
+
+public partial class Examples
+{
+ /*******************************************************************************************
*
* raylib [core] example - Mouse input
*
* This example has been created using raylib 1.0 (www.raylib.com)
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
*
* Copyright (c) 2014 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
public static int core_input_mouse()
{
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 800;
int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "raylib [core] example - mouse input");
Vector2 ballPosition = { -100.0f, -100.0f };
Color ballColor = DARKBLUE;
SetTargetFPS(60);
//---------------------------------------------------------------------------------------
// Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key
{
// Update
//----------------------------------------------------------------------------------
ballPosition = GetMousePosition();
if (IsMouseButtonPressed(MOUSE_LEFT_BUTTON)) ballColor = MAROON;
else if (IsMouseButtonPressed(MOUSE_MIDDLE_BUTTON)) ballColor = LIME;
else if (IsMouseButtonPressed(MOUSE_RIGHT_BUTTON)) ballColor = DARKBLUE;
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
ClearBackground(RAYWHITE);
DrawCircleV(ballPosition, 40, ballColor);
DrawText("move ball with mouse and click mouse button to change color", 10, 10, 20, DARKGRAY);
EndDrawing();
//----------------------------------------------------------------------------------
}
// De-Initialization
//--------------------------------------------------------------------------------------
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
return 0;
}
+}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/core/core_mouse_wheel.c b/ExampleApplication/Examples/core/core_mouse_wheel.c
deleted file mode 100644
index 6a5252e..0000000
--- a/ExampleApplication/Examples/core/core_mouse_wheel.c
+++ /dev/null
@@ -1,58 +0,0 @@
-/*******************************************************************************************
-*
-* raylib [core] examples - Mouse wheel
-*
-* This test has been created using raylib 1.1 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
-*
-* Copyright (c) 2014 Ramon Santamaria (@raysan5)
-*
-********************************************************************************************/
-
-#include "raylib.h"
-
-int main()
-{
- // Initialization
- //--------------------------------------------------------------------------------------
- int screenWidth = 800;
- int screenHeight = 450;
-
- InitWindow(screenWidth, screenHeight, "raylib [core] example - mouse wheel");
-
- int boxPositionY = screenHeight/2 - 40;
- int scrollSpeed = 4; // Scrolling speed in pixels
-
- SetTargetFPS(60);
- //--------------------------------------------------------------------------------------
-
- // Main game loop
- while (!WindowShouldClose()) // Detect window close button or ESC key
- {
- // Update
- //----------------------------------------------------------------------------------
- boxPositionY -= (GetMouseWheelMove()*scrollSpeed);
- //----------------------------------------------------------------------------------
-
- // Draw
- //----------------------------------------------------------------------------------
- BeginDrawing();
-
- ClearBackground(RAYWHITE);
-
- DrawRectangle(screenWidth/2 - 40, boxPositionY, 80, 80, MAROON);
-
- DrawText("Use mouse wheel to move the cube up and down!", 10, 10, 20, GRAY);
- DrawText(FormatText("Box position Y: %03i", boxPositionY), 10, 40, 20, LIGHTGRAY);
-
- EndDrawing();
- //----------------------------------------------------------------------------------
- }
-
- // De-Initialization
- //--------------------------------------------------------------------------------------
- CloseWindow(); // Close window and OpenGL context
- //--------------------------------------------------------------------------------------
-
- return 0;
-}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/core/core_mouse_wheel.cs b/ExampleApplication/Examples/core/core_mouse_wheel.cs
new file mode 100644
index 0000000..3869fdf
--- /dev/null
+++ b/ExampleApplication/Examples/core/core_mouse_wheel.cs
@@ -0,0 +1,8 @@
+
+using Raylib;
+using static Raylib.rl;
+
+public partial class Examples
+{
+ /*******************************************************************************************
*
* raylib [core] examples - Mouse wheel
*
* This test has been created using raylib 1.1 (www.raylib.com)
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
*
* Copyright (c) 2014 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
public static int core_mouse_wheel()
{
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 800;
int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "raylib [core] example - mouse wheel");
int boxPositionY = screenHeight/2 - 40;
int scrollSpeed = 4; // Scrolling speed in pixels
SetTargetFPS(60);
//--------------------------------------------------------------------------------------
// Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key
{
// Update
//----------------------------------------------------------------------------------
boxPositionY -= (GetMouseWheelMove()*scrollSpeed);
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
ClearBackground(RAYWHITE);
DrawRectangle(screenWidth/2 - 40, boxPositionY, 80, 80, MAROON);
DrawText("Use mouse wheel to move the cube up and down!", 10, 10, 20, GRAY);
DrawText(FormatText("Box position Y: %03i", boxPositionY), 10, 40, 20, LIGHTGRAY);
EndDrawing();
//----------------------------------------------------------------------------------
}
// De-Initialization
//--------------------------------------------------------------------------------------
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
return 0;
}
+}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/core/core_random_values.c b/ExampleApplication/Examples/core/core_random_values.c
deleted file mode 100644
index 06e550d..0000000
--- a/ExampleApplication/Examples/core/core_random_values.c
+++ /dev/null
@@ -1,65 +0,0 @@
-/*******************************************************************************************
-*
-* raylib [core] example - Generate random values
-*
-* This example has been created using raylib 1.1 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
-*
-* Copyright (c) 2014 Ramon Santamaria (@raysan5)
-*
-********************************************************************************************/
-
-#include "raylib.h"
-
-int main()
-{
- // Initialization
- //--------------------------------------------------------------------------------------
- int screenWidth = 800;
- int screenHeight = 450;
-
- InitWindow(screenWidth, screenHeight, "raylib [core] example - generate random values");
-
- int framesCounter = 0; // Variable used to count frames
-
- int randValue = GetRandomValue(-8, 5); // Get a random integer number between -8 and 5 (both included)
-
- SetTargetFPS(60); // Set our game to run at 60 frames-per-second
- //--------------------------------------------------------------------------------------
-
- // Main game loop
- while (!WindowShouldClose()) // Detect window close button or ESC key
- {
- // Update
- //----------------------------------------------------------------------------------
- framesCounter++;
-
- // Every two seconds (120 frames) a new random value is generated
- if (((framesCounter/120)%2) == 1)
- {
- randValue = GetRandomValue(-8, 5);
- framesCounter = 0;
- }
- //----------------------------------------------------------------------------------
-
- // Draw
- //----------------------------------------------------------------------------------
- BeginDrawing();
-
- ClearBackground(RAYWHITE);
-
- DrawText("Every 2 seconds a new random value is generated:", 130, 100, 20, MAROON);
-
- DrawText(FormatText("%i", randValue), 360, 180, 80, LIGHTGRAY);
-
- EndDrawing();
- //----------------------------------------------------------------------------------
- }
-
- // De-Initialization
- //--------------------------------------------------------------------------------------
- CloseWindow(); // Close window and OpenGL context
- //--------------------------------------------------------------------------------------
-
- return 0;
-}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/core/core_random_values.cs b/ExampleApplication/Examples/core/core_random_values.cs
new file mode 100644
index 0000000..1df59f4
--- /dev/null
+++ b/ExampleApplication/Examples/core/core_random_values.cs
@@ -0,0 +1,8 @@
+
+using Raylib;
+using static Raylib.rl;
+
+public partial class Examples
+{
+ /*******************************************************************************************
*
* raylib [core] example - Generate random values
*
* This example has been created using raylib 1.1 (www.raylib.com)
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
*
* Copyright (c) 2014 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
public static int core_random_values()
{
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 800;
int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "raylib [core] example - generate random values");
int framesCounter = 0; // Variable used to count frames
int randValue = GetRandomValue(-8, 5); // Get a random integer number between -8 and 5 (both included)
SetTargetFPS(60); // Set our game to run at 60 frames-per-second
//--------------------------------------------------------------------------------------
// Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key
{
// Update
//----------------------------------------------------------------------------------
framesCounter++;
// Every two seconds (120 frames) a new random value is generated
if (((framesCounter/120)%2) == 1)
{
randValue = GetRandomValue(-8, 5);
framesCounter = 0;
}
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
ClearBackground(RAYWHITE);
DrawText("Every 2 seconds a new random value is generated:", 130, 100, 20, MAROON);
DrawText(FormatText("%i", randValue), 360, 180, 80, LIGHTGRAY);
EndDrawing();
//----------------------------------------------------------------------------------
}
// De-Initialization
//--------------------------------------------------------------------------------------
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
return 0;
}
+}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/core/core_storage_values.c b/ExampleApplication/Examples/core/core_storage_values.c
deleted file mode 100644
index 43f0882..0000000
--- a/ExampleApplication/Examples/core/core_storage_values.c
+++ /dev/null
@@ -1,85 +0,0 @@
-/*******************************************************************************************
-*
-* raylib [core] example - Storage save/load values
-*
-* This example has been created using raylib 1.4 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
-*
-* Copyright (c) 2015 Ramon Santamaria (@raysan5)
-*
-********************************************************************************************/
-
-#include "raylib.h"
-
-// NOTE: Storage positions must start with 0, directly related to file memory layout
-typedef enum { STORAGE_SCORE = 0, STORAGE_HISCORE } StorageData;
-
-int main()
-{
- // Initialization
- //--------------------------------------------------------------------------------------
- int screenWidth = 800;
- int screenHeight = 450;
-
- InitWindow(screenWidth, screenHeight, "raylib [core] example - storage save/load values");
-
- int score = 0;
- int hiscore = 0;
-
- int framesCounter = 0;
-
- SetTargetFPS(60);
- //--------------------------------------------------------------------------------------
-
- // Main game loop
- while (!WindowShouldClose()) // Detect window close button or ESC key
- {
- // Update
- //----------------------------------------------------------------------------------
- if (IsKeyPressed(KEY_R))
- {
- score = GetRandomValue(1000, 2000);
- hiscore = GetRandomValue(2000, 4000);
- }
-
- if (IsKeyPressed(KEY_ENTER))
- {
- StorageSaveValue(STORAGE_SCORE, score);
- StorageSaveValue(STORAGE_HISCORE, hiscore);
- }
- else if (IsKeyPressed(KEY_SPACE))
- {
- // NOTE: If requested position could not be found, value 0 is returned
- score = StorageLoadValue(STORAGE_SCORE);
- hiscore = StorageLoadValue(STORAGE_HISCORE);
- }
-
- framesCounter++;
- //----------------------------------------------------------------------------------
-
- // Draw
- //----------------------------------------------------------------------------------
- BeginDrawing();
-
- ClearBackground(RAYWHITE);
-
- DrawText(FormatText("SCORE: %i", score), 280, 130, 40, MAROON);
- DrawText(FormatText("HI-SCORE: %i", hiscore), 210, 200, 50, BLACK);
-
- DrawText(FormatText("frames: %i", framesCounter), 10, 10, 20, LIME);
-
- DrawText("Press R to generate random numbers", 220, 40, 20, LIGHTGRAY);
- DrawText("Press ENTER to SAVE values", 250, 310, 20, LIGHTGRAY);
- DrawText("Press SPACE to LOAD values", 252, 350, 20, LIGHTGRAY);
-
- EndDrawing();
- //----------------------------------------------------------------------------------
- }
-
- // De-Initialization
- //--------------------------------------------------------------------------------------
- CloseWindow(); // Close window and OpenGL context
- //--------------------------------------------------------------------------------------
-
- return 0;
-}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/core/core_storage_values.cs b/ExampleApplication/Examples/core/core_storage_values.cs
new file mode 100644
index 0000000..556e854
--- /dev/null
+++ b/ExampleApplication/Examples/core/core_storage_values.cs
@@ -0,0 +1,8 @@
+
+using Raylib;
+using static Raylib.rl;
+
+public partial class Examples
+{
+ /*******************************************************************************************
*
* raylib [core] example - Storage save/load values
*
* This example has been created using raylib 1.4 (www.raylib.com)
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
*
* Copyright (c) 2015 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
// NOTE: Storage positions must start with 0, directly related to file memory layout
typedef enum { STORAGE_SCORE = 0, STORAGE_HISCORE } StorageData;
public static int core_storage_values()
{
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 800;
int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "raylib [core] example - storage save/load values");
int score = 0;
int hiscore = 0;
int framesCounter = 0;
SetTargetFPS(60);
//--------------------------------------------------------------------------------------
// Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key
{
// Update
//----------------------------------------------------------------------------------
if (IsKeyPressed(KEY_R))
{
score = GetRandomValue(1000, 2000);
hiscore = GetRandomValue(2000, 4000);
}
if (IsKeyPressed(KEY_ENTER))
{
StorageSaveValue(STORAGE_SCORE, score);
StorageSaveValue(STORAGE_HISCORE, hiscore);
}
else if (IsKeyPressed(KEY_SPACE))
{
// NOTE: If requested position could not be found, value 0 is returned
score = StorageLoadValue(STORAGE_SCORE);
hiscore = StorageLoadValue(STORAGE_HISCORE);
}
framesCounter++;
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
ClearBackground(RAYWHITE);
DrawText(FormatText("SCORE: %i", score), 280, 130, 40, MAROON);
DrawText(FormatText("HI-SCORE: %i", hiscore), 210, 200, 50, BLACK);
DrawText(FormatText("frames: %i", framesCounter), 10, 10, 20, LIME);
DrawText("Press R to generate random numbers", 220, 40, 20, LIGHTGRAY);
DrawText("Press ENTER to SAVE values", 250, 310, 20, LIGHTGRAY);
DrawText("Press SPACE to LOAD values", 252, 350, 20, LIGHTGRAY);
EndDrawing();
//----------------------------------------------------------------------------------
}
// De-Initialization
//--------------------------------------------------------------------------------------
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
return 0;
}
+}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/core/core_vr_simulator.c b/ExampleApplication/Examples/core/core_vr_simulator.c
deleted file mode 100644
index 3f59e83..0000000
--- a/ExampleApplication/Examples/core/core_vr_simulator.c
+++ /dev/null
@@ -1,86 +0,0 @@
-/*******************************************************************************************
-*
-* raylib [core] example - VR Simulator (Oculus Rift CV1 parameters)
-*
-* 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)
-*
-********************************************************************************************/
-
-#include "raylib.h"
-
-int main()
-{
- // Initialization
- //--------------------------------------------------------------------------------------
- int screenWidth = 1080;
- int screenHeight = 600;
-
- // NOTE: screenWidth/screenHeight should match VR device aspect ratio
-
- InitWindow(screenWidth, screenHeight, "raylib [core] example - vr simulator");
-
- // Init VR simulator (Oculus Rift CV1 parameters)
- InitVrSimulator(GetVrDeviceInfo(HMD_OCULUS_RIFT_CV1));
-
- // Define the camera to look into our 3d world
- Camera camera;
- camera.position = (Vector3){ 5.0f, 2.0f, 5.0f }; // Camera position
- camera.target = (Vector3){ 0.0f, 2.0f, 0.0f }; // Camera looking at point
- camera.up = (Vector3){ 0.0f, 1.0f, 0.0f }; // Camera up vector (rotation towards target)
- camera.fovy = 60.0f; // Camera field-of-view Y
- camera.type = CAMERA_PERSPECTIVE; // Camera type
-
- Vector3 cubePosition = { 0.0f, 0.0f, 0.0f };
-
- SetCameraMode(camera, CAMERA_FIRST_PERSON); // Set first person camera mode
-
- SetTargetFPS(90); // Set our game to run at 90 frames-per-second
- //--------------------------------------------------------------------------------------
-
- // Main game loop
- while (!WindowShouldClose()) // Detect window close button or ESC key
- {
- // Update
- //----------------------------------------------------------------------------------
- UpdateCamera(&camera); // Update camera (simulator mode)
-
- if (IsKeyPressed(KEY_SPACE)) ToggleVrMode(); // Toggle VR mode
- //----------------------------------------------------------------------------------
-
- // Draw
- //----------------------------------------------------------------------------------
- BeginDrawing();
-
- ClearBackground(RAYWHITE);
-
- BeginVrDrawing();
-
- BeginMode3D(camera);
-
- DrawCube(cubePosition, 2.0f, 2.0f, 2.0f, RED);
- DrawCubeWires(cubePosition, 2.0f, 2.0f, 2.0f, MAROON);
-
- DrawGrid(40, 1.0f);
-
- EndMode3D();
-
- EndVrDrawing();
-
- DrawFPS(10, 10);
-
- EndDrawing();
- //----------------------------------------------------------------------------------
- }
-
- // De-Initialization
- //--------------------------------------------------------------------------------------
- CloseVrSimulator(); // Close VR simulator
-
- CloseWindow(); // Close window and OpenGL context
- //--------------------------------------------------------------------------------------
-
- return 0;
-}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/core/core_vr_simulator.cs b/ExampleApplication/Examples/core/core_vr_simulator.cs
new file mode 100644
index 0000000..af111c5
--- /dev/null
+++ b/ExampleApplication/Examples/core/core_vr_simulator.cs
@@ -0,0 +1,8 @@
+
+using Raylib;
+using static Raylib.rl;
+
+public partial class Examples
+{
+ /*******************************************************************************************
*
* raylib [core] example - VR Simulator (Oculus Rift CV1 parameters)
*
* 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)
*
********************************************************************************************/
public static int core_vr_simulator()
{
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 1080;
int screenHeight = 600;
// NOTE: screenWidth/screenHeight should match VR device aspect ratio
InitWindow(screenWidth, screenHeight, "raylib [core] example - vr simulator");
// Init VR simulator (Oculus Rift CV1 parameters)
InitVrSimulator(GetVrDeviceInfo(HMD_OCULUS_RIFT_CV1));
// Define the camera to look into our 3d world
Camera camera;
camera.position = (Vector3){ 5.0f, 2.0f, 5.0f }; // Camera position
camera.target = (Vector3){ 0.0f, 2.0f, 0.0f }; // Camera looking at point
camera.up = (Vector3){ 0.0f, 1.0f, 0.0f }; // Camera up vector (rotation towards target)
camera.fovy = 60.0f; // Camera field-of-view Y
camera.type = CAMERA_PERSPECTIVE; // Camera type
Vector3 cubePosition = { 0.0f, 0.0f, 0.0f };
SetCameraMode(camera, CAMERA_FIRST_PERSON); // Set first person camera mode
SetTargetFPS(90); // Set our game to run at 90 frames-per-second
//--------------------------------------------------------------------------------------
// Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key
{
// Update
//----------------------------------------------------------------------------------
UpdateCamera(&camera); // Update camera (simulator mode)
if (IsKeyPressed(KEY_SPACE)) ToggleVrMode(); // Toggle VR mode
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
ClearBackground(RAYWHITE);
BeginVrDrawing();
BeginMode3D(camera);
DrawCube(cubePosition, 2.0f, 2.0f, 2.0f, RED);
DrawCubeWires(cubePosition, 2.0f, 2.0f, 2.0f, MAROON);
DrawGrid(40, 1.0f);
EndMode3D();
EndVrDrawing();
DrawFPS(10, 10);
EndDrawing();
//----------------------------------------------------------------------------------
}
// De-Initialization
//--------------------------------------------------------------------------------------
CloseVrSimulator(); // Close VR simulator
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
return 0;
}
+}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/core/core_world_screen.c b/ExampleApplication/Examples/core/core_world_screen.c
deleted file mode 100644
index 460f6b8..0000000
--- a/ExampleApplication/Examples/core/core_world_screen.c
+++ /dev/null
@@ -1,79 +0,0 @@
-/*******************************************************************************************
-*
-* raylib [core] example - World to screen
-*
-* This example has been created using raylib 1.3 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
-*
-* Copyright (c) 2015 Ramon Santamaria (@raysan5)
-*
-********************************************************************************************/
-
-#include "raylib.h"
-
-int main()
-{
- // Initialization
- //--------------------------------------------------------------------------------------
- int screenWidth = 800;
- int screenHeight = 450;
-
- InitWindow(screenWidth, screenHeight, "raylib [core] example - 3d camera free");
-
- // Define the camera to look into our 3d world
- Camera camera = { 0 };
- camera.position = (Vector3){ 10.0f, 10.0f, 10.0f };
- camera.target = (Vector3){ 0.0f, 0.0f, 0.0f };
- camera.up = (Vector3){ 0.0f, 1.0f, 0.0f };
- camera.fovy = 45.0f;
- camera.type = CAMERA_PERSPECTIVE;
-
- Vector3 cubePosition = { 0.0f, 0.0f, 0.0f };
-
- Vector2 cubeScreenPosition;
-
- SetCameraMode(camera, CAMERA_FREE); // Set a free camera mode
-
- SetTargetFPS(60); // Set our game to run at 60 frames-per-second
- //--------------------------------------------------------------------------------------
-
- // Main game loop
- while (!WindowShouldClose()) // Detect window close button or ESC key
- {
- // Update
- //----------------------------------------------------------------------------------
- UpdateCamera(&camera); // Update camera
-
- // Calculate cube screen space position (with a little offset to be in top)
- cubeScreenPosition = GetWorldToScreen((Vector3){cubePosition.x, cubePosition.y + 2.5f, cubePosition.z}, camera);
- //----------------------------------------------------------------------------------
-
- // Draw
- //----------------------------------------------------------------------------------
- BeginDrawing();
-
- ClearBackground(RAYWHITE);
-
- BeginMode3D(camera);
-
- DrawCube(cubePosition, 2.0f, 2.0f, 2.0f, RED);
- DrawCubeWires(cubePosition, 2.0f, 2.0f, 2.0f, MAROON);
-
- DrawGrid(10, 1.0f);
-
- EndMode3D();
-
- DrawText("Enemy: 100 / 100", cubeScreenPosition.x - MeasureText("Enemy: 100 / 100", 20) / 2, cubeScreenPosition.y, 20, BLACK);
- DrawText("Text is always on top of the cube", (screenWidth - MeasureText("Text is always on top of the cube", 20)) / 2, 25, 20, GRAY);
-
- EndDrawing();
- //----------------------------------------------------------------------------------
- }
-
- // De-Initialization
- //--------------------------------------------------------------------------------------
- CloseWindow(); // Close window and OpenGL context
- //--------------------------------------------------------------------------------------
-
- return 0;
-}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/core/core_world_screen.cs b/ExampleApplication/Examples/core/core_world_screen.cs
new file mode 100644
index 0000000..eb79c82
--- /dev/null
+++ b/ExampleApplication/Examples/core/core_world_screen.cs
@@ -0,0 +1,8 @@
+
+using Raylib;
+using static Raylib.rl;
+
+public partial class Examples
+{
+ /*******************************************************************************************
*
* raylib [core] example - World to screen
*
* This example has been created using raylib 1.3 (www.raylib.com)
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
*
* Copyright (c) 2015 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
public static int core_world_screen()
{
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 800;
int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "raylib [core] example - 3d camera free");
// Define the camera to look into our 3d world
Camera camera = { 0 };
camera.position = (Vector3){ 10.0f, 10.0f, 10.0f };
camera.target = (Vector3){ 0.0f, 0.0f, 0.0f };
camera.up = (Vector3){ 0.0f, 1.0f, 0.0f };
camera.fovy = 45.0f;
camera.type = CAMERA_PERSPECTIVE;
Vector3 cubePosition = { 0.0f, 0.0f, 0.0f };
Vector2 cubeScreenPosition;
SetCameraMode(camera, CAMERA_FREE); // Set a free camera mode
SetTargetFPS(60); // Set our game to run at 60 frames-per-second
//--------------------------------------------------------------------------------------
// Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key
{
// Update
//----------------------------------------------------------------------------------
UpdateCamera(&camera); // Update camera
// Calculate cube screen space position (with a little offset to be in top)
cubeScreenPosition = GetWorldToScreen((Vector3){cubePosition.x, cubePosition.y + 2.5f, cubePosition.z}, camera);
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
ClearBackground(RAYWHITE);
BeginMode3D(camera);
DrawCube(cubePosition, 2.0f, 2.0f, 2.0f, RED);
DrawCubeWires(cubePosition, 2.0f, 2.0f, 2.0f, MAROON);
DrawGrid(10, 1.0f);
EndMode3D();
DrawText("Enemy: 100 / 100", cubeScreenPosition.x - MeasureText("Enemy: 100 / 100", 20) / 2, cubeScreenPosition.y, 20, BLACK);
DrawText("Text is always on top of the cube", (screenWidth - MeasureText("Text is always on top of the cube", 20)) / 2, 25, 20, GRAY);
EndDrawing();
//----------------------------------------------------------------------------------
}
// De-Initialization
//--------------------------------------------------------------------------------------
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
return 0;
}
+}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/models/models_billboard.c b/ExampleApplication/Examples/models/models_billboard.c
deleted file mode 100644
index 8ce6a44..0000000
--- a/ExampleApplication/Examples/models/models_billboard.c
+++ /dev/null
@@ -1,76 +0,0 @@
-/*******************************************************************************************
-*
-* raylib [models] example - Drawing billboards
-*
-* This example has been created using raylib 1.3 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
-*
-* Copyright (c) 2015 Ramon Santamaria (@raysan5)
-*
-********************************************************************************************/
-
-#include "raylib.h"
-
-int main()
-{
- // Initialization
- //--------------------------------------------------------------------------------------
- int screenWidth = 800;
- int screenHeight = 450;
-
- InitWindow(screenWidth, screenHeight, "raylib [models] example - drawing billboards");
-
- // Define the camera to look into our 3d world
- Camera camera = { 0 };
- camera.position = (Vector3){ 5.0f, 4.0f, 5.0f };
- camera.target = (Vector3){ 0.0f, 2.0f, 0.0f };
- camera.up = (Vector3){ 0.0f, 1.0f, 0.0f };
- camera.fovy = 45.0f;
- camera.type = CAMERA_PERSPECTIVE;
-
-
- Texture2D bill = LoadTexture("resources/billboard.png"); // Our texture billboard
- Vector3 billPosition = { 0.0f, 2.0f, 0.0f }; // Position where draw billboard
-
- SetCameraMode(camera, CAMERA_ORBITAL); // Set an orbital camera mode
-
- SetTargetFPS(60); // Set our game to run at 60 frames-per-second
- //--------------------------------------------------------------------------------------
-
- // Main game loop
- while (!WindowShouldClose()) // Detect window close button or ESC key
- {
- // Update
- //----------------------------------------------------------------------------------
- UpdateCamera(&camera); // Update camera
- //----------------------------------------------------------------------------------
-
- // Draw
- //----------------------------------------------------------------------------------
- BeginDrawing();
-
- ClearBackground(RAYWHITE);
-
- BeginMode3D(camera);
-
- DrawBillboard(camera, bill, billPosition, 2.0f, WHITE);
-
- DrawGrid(10, 1.0f); // Draw a grid
-
- EndMode3D();
-
- DrawFPS(10, 10);
-
- EndDrawing();
- //----------------------------------------------------------------------------------
- }
-
- // De-Initialization
- //--------------------------------------------------------------------------------------
- UnloadTexture(bill); // Unload texture
-
- CloseWindow(); // Close window and OpenGL context
- //--------------------------------------------------------------------------------------
-
- return 0;
-}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/models/models_billboard.cs b/ExampleApplication/Examples/models/models_billboard.cs
new file mode 100644
index 0000000..0c968ad
--- /dev/null
+++ b/ExampleApplication/Examples/models/models_billboard.cs
@@ -0,0 +1,8 @@
+
+using Raylib;
+using static Raylib.rl;
+
+public partial class Examples
+{
+ /*******************************************************************************************
*
* raylib [models] example - Drawing billboards
*
* This example has been created using raylib 1.3 (www.raylib.com)
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
*
* Copyright (c) 2015 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
public static int models_billboard()
{
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 800;
int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "raylib [models] example - drawing billboards");
// Define the camera to look into our 3d world
Camera camera = { 0 };
camera.position = (Vector3){ 5.0f, 4.0f, 5.0f };
camera.target = (Vector3){ 0.0f, 2.0f, 0.0f };
camera.up = (Vector3){ 0.0f, 1.0f, 0.0f };
camera.fovy = 45.0f;
camera.type = CAMERA_PERSPECTIVE;
Texture2D bill = LoadTexture("resources/billboard.png"); // Our texture billboard
Vector3 billPosition = { 0.0f, 2.0f, 0.0f }; // Position where draw billboard
SetCameraMode(camera, CAMERA_ORBITAL); // Set an orbital camera mode
SetTargetFPS(60); // Set our game to run at 60 frames-per-second
//--------------------------------------------------------------------------------------
// Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key
{
// Update
//----------------------------------------------------------------------------------
UpdateCamera(&camera); // Update camera
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
ClearBackground(RAYWHITE);
BeginMode3D(camera);
DrawBillboard(camera, bill, billPosition, 2.0f, WHITE);
DrawGrid(10, 1.0f); // Draw a grid
EndMode3D();
DrawFPS(10, 10);
EndDrawing();
//----------------------------------------------------------------------------------
}
// De-Initialization
//--------------------------------------------------------------------------------------
UnloadTexture(bill); // Unload texture
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
return 0;
}
+}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/models/models_box_collisions.c b/ExampleApplication/Examples/models/models_box_collisions.c
deleted file mode 100644
index 41f6056..0000000
--- a/ExampleApplication/Examples/models/models_box_collisions.c
+++ /dev/null
@@ -1,121 +0,0 @@
-/*******************************************************************************************
-*
-* raylib [models] example - Detect basic 3d collisions (box vs sphere vs box)
-*
-* This example has been created using raylib 1.3 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
-*
-* Copyright (c) 2015 Ramon Santamaria (@raysan5)
-*
-********************************************************************************************/
-
-#include "raylib.h"
-
-int main()
-{
- // Initialization
- //--------------------------------------------------------------------------------------
- int screenWidth = 800;
- int screenHeight = 450;
-
- InitWindow(screenWidth, screenHeight, "raylib [models] example - box collisions");
-
- // Define the camera to look into our 3d world
- Camera camera = {{ 0.0f, 10.0f, 10.0f }, { 0.0f, 0.0f, 0.0f }, { 0.0f, 1.0f, 0.0f }, 45.0f, 0 };
-
- Vector3 playerPosition = { 0.0f, 1.0f, 2.0f };
- Vector3 playerSize = { 1.0f, 2.0f, 1.0f };
- Color playerColor = GREEN;
-
- Vector3 enemyBoxPos = { -4.0f, 1.0f, 0.0f };
- Vector3 enemyBoxSize = { 2.0f, 2.0f, 2.0f };
-
- Vector3 enemySpherePos = { 4.0f, 0.0f, 0.0f };
- float enemySphereSize = 1.5f;
-
- bool collision = false;
-
- SetTargetFPS(60); // Set our game to run at 60 frames-per-second
- //--------------------------------------------------------------------------------------
-
- // Main game loop
- while (!WindowShouldClose()) // Detect window close button or ESC key
- {
- // Update
- //----------------------------------------------------------------------------------
-
- // Move player
- if (IsKeyDown(KEY_RIGHT)) playerPosition.x += 0.2f;
- else if (IsKeyDown(KEY_LEFT)) playerPosition.x -= 0.2f;
- else if (IsKeyDown(KEY_DOWN)) playerPosition.z += 0.2f;
- else if (IsKeyDown(KEY_UP)) playerPosition.z -= 0.2f;
-
- collision = false;
-
- // Check collisions player vs enemy-box
- if (CheckCollisionBoxes(
- (BoundingBox){(Vector3){ playerPosition.x - playerSize.x/2,
- playerPosition.y - playerSize.y/2,
- playerPosition.z - playerSize.z/2 },
- (Vector3){ playerPosition.x + playerSize.x/2,
- playerPosition.y + playerSize.y/2,
- playerPosition.z + playerSize.z/2 }},
- (BoundingBox){(Vector3){ enemyBoxPos.x - enemyBoxSize.x/2,
- enemyBoxPos.y - enemyBoxSize.y/2,
- enemyBoxPos.z - enemyBoxSize.z/2 },
- (Vector3){ enemyBoxPos.x + enemyBoxSize.x/2,
- enemyBoxPos.y + enemyBoxSize.y/2,
- enemyBoxPos.z + enemyBoxSize.z/2 }})) collision = true;
-
- // Check collisions player vs enemy-sphere
- if (CheckCollisionBoxSphere(
- (BoundingBox){(Vector3){ playerPosition.x - playerSize.x/2,
- playerPosition.y - playerSize.y/2,
- playerPosition.z - playerSize.z/2 },
- (Vector3){ playerPosition.x + playerSize.x/2,
- playerPosition.y + playerSize.y/2,
- playerPosition.z + playerSize.z/2 }},
- enemySpherePos, enemySphereSize)) collision = true;
-
- if (collision) playerColor = RED;
- else playerColor = GREEN;
- //----------------------------------------------------------------------------------
-
- // Draw
- //----------------------------------------------------------------------------------
- BeginDrawing();
-
- ClearBackground(RAYWHITE);
-
- BeginMode3D(camera);
-
- // Draw enemy-box
- DrawCube(enemyBoxPos, enemyBoxSize.x, enemyBoxSize.y, enemyBoxSize.z, GRAY);
- DrawCubeWires(enemyBoxPos, enemyBoxSize.x, enemyBoxSize.y, enemyBoxSize.z, DARKGRAY);
-
- // Draw enemy-sphere
- DrawSphere(enemySpherePos, enemySphereSize, GRAY);
- DrawSphereWires(enemySpherePos, enemySphereSize, 16, 16, DARKGRAY);
-
- // Draw player
- DrawCubeV(playerPosition, playerSize, playerColor);
-
- DrawGrid(10, 1.0f); // Draw a grid
-
- EndMode3D();
-
- DrawText("Move player with cursors to collide", 220, 40, 20, GRAY);
-
- DrawFPS(10, 10);
-
- EndDrawing();
- //----------------------------------------------------------------------------------
- }
-
- // De-Initialization
- //--------------------------------------------------------------------------------------
- CloseWindow(); // Close window and OpenGL context
- //--------------------------------------------------------------------------------------
-
- return 0;
-}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/models/models_box_collisions.cs b/ExampleApplication/Examples/models/models_box_collisions.cs
new file mode 100644
index 0000000..5752f4b
--- /dev/null
+++ b/ExampleApplication/Examples/models/models_box_collisions.cs
@@ -0,0 +1,8 @@
+
+using Raylib;
+using static Raylib.rl;
+
+public partial class Examples
+{
+ /*******************************************************************************************
*
* raylib [models] example - Detect basic 3d collisions (box vs sphere vs box)
*
* This example has been created using raylib 1.3 (www.raylib.com)
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
*
* Copyright (c) 2015 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
public static int models_box_collisions()
{
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 800;
int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "raylib [models] example - box collisions");
// Define the camera to look into our 3d world
Camera camera = {{ 0.0f, 10.0f, 10.0f }, { 0.0f, 0.0f, 0.0f }, { 0.0f, 1.0f, 0.0f }, 45.0f, 0 };
Vector3 playerPosition = { 0.0f, 1.0f, 2.0f };
Vector3 playerSize = { 1.0f, 2.0f, 1.0f };
Color playerColor = GREEN;
Vector3 enemyBoxPos = { -4.0f, 1.0f, 0.0f };
Vector3 enemyBoxSize = { 2.0f, 2.0f, 2.0f };
Vector3 enemySpherePos = { 4.0f, 0.0f, 0.0f };
float enemySphereSize = 1.5f;
bool collision = false;
SetTargetFPS(60); // Set our game to run at 60 frames-per-second
//--------------------------------------------------------------------------------------
// Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key
{
// Update
//----------------------------------------------------------------------------------
// Move player
if (IsKeyDown(KEY_RIGHT)) playerPosition.x += 0.2f;
else if (IsKeyDown(KEY_LEFT)) playerPosition.x -= 0.2f;
else if (IsKeyDown(KEY_DOWN)) playerPosition.z += 0.2f;
else if (IsKeyDown(KEY_UP)) playerPosition.z -= 0.2f;
collision = false;
// Check collisions player vs enemy-box
if (CheckCollisionBoxes(
(BoundingBox){(Vector3){ playerPosition.x - playerSize.x/2,
playerPosition.y - playerSize.y/2,
playerPosition.z - playerSize.z/2 },
(Vector3){ playerPosition.x + playerSize.x/2,
playerPosition.y + playerSize.y/2,
playerPosition.z + playerSize.z/2 }},
(BoundingBox){(Vector3){ enemyBoxPos.x - enemyBoxSize.x/2,
enemyBoxPos.y - enemyBoxSize.y/2,
enemyBoxPos.z - enemyBoxSize.z/2 },
(Vector3){ enemyBoxPos.x + enemyBoxSize.x/2,
enemyBoxPos.y + enemyBoxSize.y/2,
enemyBoxPos.z + enemyBoxSize.z/2 }})) collision = true;
// Check collisions player vs enemy-sphere
if (CheckCollisionBoxSphere(
(BoundingBox){(Vector3){ playerPosition.x - playerSize.x/2,
playerPosition.y - playerSize.y/2,
playerPosition.z - playerSize.z/2 },
(Vector3){ playerPosition.x + playerSize.x/2,
playerPosition.y + playerSize.y/2,
playerPosition.z + playerSize.z/2 }},
enemySpherePos, enemySphereSize)) collision = true;
if (collision) playerColor = RED;
else playerColor = GREEN;
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
ClearBackground(RAYWHITE);
BeginMode3D(camera);
// Draw enemy-box
DrawCube(enemyBoxPos, enemyBoxSize.x, enemyBoxSize.y, enemyBoxSize.z, GRAY);
DrawCubeWires(enemyBoxPos, enemyBoxSize.x, enemyBoxSize.y, enemyBoxSize.z, DARKGRAY);
// Draw enemy-sphere
DrawSphere(enemySpherePos, enemySphereSize, GRAY);
DrawSphereWires(enemySpherePos, enemySphereSize, 16, 16, DARKGRAY);
// Draw player
DrawCubeV(playerPosition, playerSize, playerColor);
DrawGrid(10, 1.0f); // Draw a grid
EndMode3D();
DrawText("Move player with cursors to collide", 220, 40, 20, GRAY);
DrawFPS(10, 10);
EndDrawing();
//----------------------------------------------------------------------------------
}
// De-Initialization
//--------------------------------------------------------------------------------------
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
return 0;
}
+}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/models/models_cubicmap.c b/ExampleApplication/Examples/models/models_cubicmap.c
deleted file mode 100644
index c8d62c4..0000000
--- a/ExampleApplication/Examples/models/models_cubicmap.c
+++ /dev/null
@@ -1,87 +0,0 @@
-/*******************************************************************************************
-*
-* raylib [models] example - Cubicmap loading and drawing
-*
-* This example has been created using raylib 1.8 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
-*
-* Copyright (c) 2015 Ramon Santamaria (@raysan5)
-*
-********************************************************************************************/
-
-#include "raylib.h"
-
-int main()
-{
- // Initialization
- //--------------------------------------------------------------------------------------
- int screenWidth = 800;
- int screenHeight = 450;
-
- InitWindow(screenWidth, screenHeight, "raylib [models] example - cubesmap loading and drawing");
-
- // Define the camera to look into our 3d world
- Camera camera = {{ 16.0f, 14.0f, 16.0f }, { 0.0f, 0.0f, 0.0f }, { 0.0f, 1.0f, 0.0f }, 45.0f, 0 };
-
- Image image = LoadImage("resources/cubicmap.png"); // Load cubicmap image (RAM)
- Texture2D cubicmap = LoadTextureFromImage(image); // Convert image to texture to display (VRAM)
-
- Mesh mesh = GenMeshCubicmap(image, (Vector3){ 1.0f, 1.0f, 1.0f });
- Model model = LoadModelFromMesh(mesh);
-
- // NOTE: By default each cube is mapped to one part of texture atlas
- Texture2D texture = LoadTexture("resources/cubicmap_atlas.png"); // Load map texture
- model.material.maps[MAP_DIFFUSE].texture = texture; // Set map diffuse texture
-
- Vector3 mapPosition = { -16.0f, 0.0f, -8.0f }; // Set model position
-
- UnloadImage(image); // Unload cubesmap image from RAM, already uploaded to VRAM
-
- SetCameraMode(camera, CAMERA_ORBITAL); // Set an orbital camera mode
-
- SetTargetFPS(60); // Set our game to run at 60 frames-per-second
- //--------------------------------------------------------------------------------------
-
- // Main game loop
- while (!WindowShouldClose()) // Detect window close button or ESC key
- {
- // Update
- //----------------------------------------------------------------------------------
- UpdateCamera(&camera); // Update camera
- //----------------------------------------------------------------------------------
-
- // Draw
- //----------------------------------------------------------------------------------
- BeginDrawing();
-
- ClearBackground(RAYWHITE);
-
- BeginMode3D(camera);
-
- DrawModel(model, mapPosition, 1.0f, WHITE);
-
- EndMode3D();
-
- DrawTextureEx(cubicmap, (Vector2){ screenWidth - cubicmap.width*4 - 20, 20 }, 0.0f, 4.0f, WHITE);
- DrawRectangleLines(screenWidth - cubicmap.width*4 - 20, 20, cubicmap.width*4, cubicmap.height*4, GREEN);
-
- DrawText("cubicmap image used to", 658, 90, 10, GRAY);
- DrawText("generate map 3d model", 658, 104, 10, GRAY);
-
- DrawFPS(10, 10);
-
- EndDrawing();
- //----------------------------------------------------------------------------------
- }
-
- // De-Initialization
- //--------------------------------------------------------------------------------------
- UnloadTexture(cubicmap); // Unload cubicmap texture
- UnloadTexture(texture); // Unload map texture
- UnloadModel(model); // Unload map model
-
- CloseWindow(); // Close window and OpenGL context
- //--------------------------------------------------------------------------------------
-
- return 0;
-}
diff --git a/ExampleApplication/Examples/models/models_cubicmap.cs b/ExampleApplication/Examples/models/models_cubicmap.cs
new file mode 100644
index 0000000..62be7e9
--- /dev/null
+++ b/ExampleApplication/Examples/models/models_cubicmap.cs
@@ -0,0 +1,8 @@
+
+using Raylib;
+using static Raylib.rl;
+
+public partial class Examples
+{
+ /*******************************************************************************************
*
* raylib [models] example - Cubicmap loading and drawing
*
* This example has been created using raylib 1.8 (www.raylib.com)
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
*
* Copyright (c) 2015 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
public static int models_cubicmap()
{
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 800;
int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "raylib [models] example - cubesmap loading and drawing");
// Define the camera to look into our 3d world
Camera camera = {{ 16.0f, 14.0f, 16.0f }, { 0.0f, 0.0f, 0.0f }, { 0.0f, 1.0f, 0.0f }, 45.0f, 0 };
Image image = LoadImage("resources/cubicmap.png"); // Load cubicmap image (RAM)
Texture2D cubicmap = LoadTextureFromImage(image); // Convert image to texture to display (VRAM)
Mesh mesh = GenMeshCubicmap(image, (Vector3){ 1.0f, 1.0f, 1.0f });
Model model = LoadModelFromMesh(mesh);
// NOTE: By default each cube is mapped to one part of texture atlas
Texture2D texture = LoadTexture("resources/cubicmap_atlas.png"); // Load map texture
model.material.maps[MAP_DIFFUSE].texture = texture; // Set map diffuse texture
Vector3 mapPosition = { -16.0f, 0.0f, -8.0f }; // Set model position
UnloadImage(image); // Unload cubesmap image from RAM, already uploaded to VRAM
SetCameraMode(camera, CAMERA_ORBITAL); // Set an orbital camera mode
SetTargetFPS(60); // Set our game to run at 60 frames-per-second
//--------------------------------------------------------------------------------------
// Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key
{
// Update
//----------------------------------------------------------------------------------
UpdateCamera(&camera); // Update camera
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
ClearBackground(RAYWHITE);
BeginMode3D(camera);
DrawModel(model, mapPosition, 1.0f, WHITE);
EndMode3D();
DrawTextureEx(cubicmap, (Vector2){ screenWidth - cubicmap.width*4 - 20, 20 }, 0.0f, 4.0f, WHITE);
DrawRectangleLines(screenWidth - cubicmap.width*4 - 20, 20, cubicmap.width*4, cubicmap.height*4, GREEN);
DrawText("cubicmap image used to", 658, 90, 10, GRAY);
DrawText("generate map 3d model", 658, 104, 10, GRAY);
DrawFPS(10, 10);
EndDrawing();
//----------------------------------------------------------------------------------
}
// De-Initialization
//--------------------------------------------------------------------------------------
UnloadTexture(cubicmap); // Unload cubicmap texture
UnloadTexture(texture); // Unload map texture
UnloadModel(model); // Unload map model
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
return 0;
}
+}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/models/models_geometric_shapes.c b/ExampleApplication/Examples/models/models_geometric_shapes.c
deleted file mode 100644
index 82ca4c6..0000000
--- a/ExampleApplication/Examples/models/models_geometric_shapes.c
+++ /dev/null
@@ -1,80 +0,0 @@
-/*******************************************************************************************
-*
-* raylib [models] example - Draw some basic geometric shapes (cube, sphere, cylinder...)
-*
-* This example has been created using raylib 1.0 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
-*
-* Copyright (c) 2014 Ramon Santamaria (@raysan5)
-*
-********************************************************************************************/
-
-#include "raylib.h"
-
-int main()
-{
- // Initialization
- //--------------------------------------------------------------------------------------
- int screenWidth = 800;
- int screenHeight = 450;
-
- InitWindow(screenWidth, screenHeight, "raylib [models] example - geometric shapes");
-
- // Define the camera to look into our 3d world
- Camera camera = { 0 };
- camera.position = (Vector3){ 0.0f, 10.0f, 10.0f };
- camera.target = (Vector3){ 0.0f, 0.0f, 0.0f };
- camera.up = (Vector3){ 0.0f, 1.0f, 0.0f };
- camera.fovy = 45.0f;
- camera.type = CAMERA_PERSPECTIVE;
-
- SetTargetFPS(60); // Set our game to run at 60 frames-per-second
- //--------------------------------------------------------------------------------------
-
- // Main game loop
- while (!WindowShouldClose()) // Detect window close button or ESC key
- {
- // Update
- //----------------------------------------------------------------------------------
- // TODO: Update your variables here
- //----------------------------------------------------------------------------------
-
- // Draw
- //----------------------------------------------------------------------------------
- BeginDrawing();
-
- ClearBackground(RAYWHITE);
-
- BeginMode3D(camera);
-
- DrawCube((Vector3){-4.0f, 0.0f, 2.0f}, 2.0f, 5.0f, 2.0f, RED);
- DrawCubeWires((Vector3){-4.0f, 0.0f, 2.0f}, 2.0f, 5.0f, 2.0f, GOLD);
- DrawCubeWires((Vector3){-4.0f, 0.0f, -2.0f}, 3.0f, 6.0f, 2.0f, MAROON);
-
- DrawSphere((Vector3){-1.0f, 0.0f, -2.0f}, 1.0f, GREEN);
- DrawSphereWires((Vector3){1.0f, 0.0f, 2.0f}, 2.0f, 16, 16, LIME);
-
- DrawCylinder((Vector3){4.0f, 0.0f, -2.0f}, 1.0f, 2.0f, 3.0f, 4, SKYBLUE);
- DrawCylinderWires((Vector3){4.0f, 0.0f, -2.0f}, 1.0f, 2.0f, 3.0f, 4, DARKBLUE);
- DrawCylinderWires((Vector3){4.5f, -1.0f, 2.0f}, 1.0f, 1.0f, 2.0f, 6, BROWN);
-
- DrawCylinder((Vector3){1.0f, 0.0f, -4.0f}, 0.0f, 1.5f, 3.0f, 8, GOLD);
- DrawCylinderWires((Vector3){1.0f, 0.0f, -4.0f}, 0.0f, 1.5f, 3.0f, 8, PINK);
-
- DrawGrid(10, 1.0f); // Draw a grid
-
- EndMode3D();
-
- DrawFPS(10, 10);
-
- EndDrawing();
- //----------------------------------------------------------------------------------
- }
-
- // De-Initialization
- //--------------------------------------------------------------------------------------
- CloseWindow(); // Close window and OpenGL context
- //--------------------------------------------------------------------------------------
-
- return 0;
-}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/models/models_geometric_shapes.cs b/ExampleApplication/Examples/models/models_geometric_shapes.cs
new file mode 100644
index 0000000..f8965ed
--- /dev/null
+++ b/ExampleApplication/Examples/models/models_geometric_shapes.cs
@@ -0,0 +1,8 @@
+
+using Raylib;
+using static Raylib.rl;
+
+public partial class Examples
+{
+ /*******************************************************************************************
*
* raylib [models] example - Draw some basic geometric shapes (cube, sphere, cylinder...)
*
* This example has been created using raylib 1.0 (www.raylib.com)
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
*
* Copyright (c) 2014 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
public static int models_geometric_shapes()
{
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 800;
int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "raylib [models] example - geometric shapes");
// Define the camera to look into our 3d world
Camera camera = { 0 };
camera.position = (Vector3){ 0.0f, 10.0f, 10.0f };
camera.target = (Vector3){ 0.0f, 0.0f, 0.0f };
camera.up = (Vector3){ 0.0f, 1.0f, 0.0f };
camera.fovy = 45.0f;
camera.type = CAMERA_PERSPECTIVE;
SetTargetFPS(60); // Set our game to run at 60 frames-per-second
//--------------------------------------------------------------------------------------
// Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key
{
// Update
//----------------------------------------------------------------------------------
// TODO: Update your variables here
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
ClearBackground(RAYWHITE);
BeginMode3D(camera);
DrawCube((Vector3){-4.0f, 0.0f, 2.0f}, 2.0f, 5.0f, 2.0f, RED);
DrawCubeWires((Vector3){-4.0f, 0.0f, 2.0f}, 2.0f, 5.0f, 2.0f, GOLD);
DrawCubeWires((Vector3){-4.0f, 0.0f, -2.0f}, 3.0f, 6.0f, 2.0f, MAROON);
DrawSphere((Vector3){-1.0f, 0.0f, -2.0f}, 1.0f, GREEN);
DrawSphereWires((Vector3){1.0f, 0.0f, 2.0f}, 2.0f, 16, 16, LIME);
DrawCylinder((Vector3){4.0f, 0.0f, -2.0f}, 1.0f, 2.0f, 3.0f, 4, SKYBLUE);
DrawCylinderWires((Vector3){4.0f, 0.0f, -2.0f}, 1.0f, 2.0f, 3.0f, 4, DARKBLUE);
DrawCylinderWires((Vector3){4.5f, -1.0f, 2.0f}, 1.0f, 1.0f, 2.0f, 6, BROWN);
DrawCylinder((Vector3){1.0f, 0.0f, -4.0f}, 0.0f, 1.5f, 3.0f, 8, GOLD);
DrawCylinderWires((Vector3){1.0f, 0.0f, -4.0f}, 0.0f, 1.5f, 3.0f, 8, PINK);
DrawGrid(10, 1.0f); // Draw a grid
EndMode3D();
DrawFPS(10, 10);
EndDrawing();
//----------------------------------------------------------------------------------
}
// De-Initialization
//--------------------------------------------------------------------------------------
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
return 0;
}
+}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/models/models_heightmap.c b/ExampleApplication/Examples/models/models_heightmap.c
deleted file mode 100644
index d131b12..0000000
--- a/ExampleApplication/Examples/models/models_heightmap.c
+++ /dev/null
@@ -1,82 +0,0 @@
-/*******************************************************************************************
-*
-* raylib [models] example - Heightmap loading and drawing
-*
-* This example has been created using raylib 1.8 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
-*
-* Copyright (c) 2015 Ramon Santamaria (@raysan5)
-*
-********************************************************************************************/
-
-#include "raylib.h"
-
-int main()
-{
- // Initialization
- //--------------------------------------------------------------------------------------
- int screenWidth = 800;
- int screenHeight = 450;
-
- InitWindow(screenWidth, screenHeight, "raylib [models] example - heightmap loading and drawing");
-
- // Define our custom camera to look into our 3d world
- Camera camera = {{ 18.0f, 16.0f, 18.0f }, { 0.0f, 0.0f, 0.0f }, { 0.0f, 1.0f, 0.0f }, 45.0f, 0 };
-
- Image image = LoadImage("resources/heightmap.png"); // Load heightmap image (RAM)
- Texture2D texture = LoadTextureFromImage(image); // Convert image to texture (VRAM)
-
- Mesh mesh = GenMeshHeightmap(image, (Vector3){ 16, 8, 16 }); // Generate heightmap mesh (RAM and VRAM)
- Model model = LoadModelFromMesh(mesh); // Load model from generated mesh
-
- model.material.maps[MAP_DIFFUSE].texture = texture; // Set map diffuse texture
- Vector3 mapPosition = { -8.0f, 0.0f, -8.0f }; // Define model position
-
- UnloadImage(image); // Unload heightmap image from RAM, already uploaded to VRAM
-
- SetCameraMode(camera, CAMERA_ORBITAL); // Set an orbital camera mode
-
- SetTargetFPS(60); // Set our game to run at 60 frames-per-second
- //--------------------------------------------------------------------------------------
-
- // Main game loop
- while (!WindowShouldClose()) // Detect window close button or ESC key
- {
- // Update
- //----------------------------------------------------------------------------------
- UpdateCamera(&camera); // Update camera
- //----------------------------------------------------------------------------------
-
- // Draw
- //----------------------------------------------------------------------------------
- BeginDrawing();
-
- ClearBackground(RAYWHITE);
-
- BeginMode3D(camera);
-
- DrawModel(model, mapPosition, 1.0f, RED);
-
- DrawGrid(20, 1.0f);
-
- EndMode3D();
-
- DrawTexture(texture, screenWidth - texture.width - 20, 20, WHITE);
- DrawRectangleLines(screenWidth - texture.width - 20, 20, texture.width, texture.height, GREEN);
-
- DrawFPS(10, 10);
-
- EndDrawing();
- //----------------------------------------------------------------------------------
- }
-
- // De-Initialization
- //--------------------------------------------------------------------------------------
- UnloadTexture(texture); // Unload texture
- UnloadModel(model); // Unload model
-
- CloseWindow(); // Close window and OpenGL context
- //--------------------------------------------------------------------------------------
-
- return 0;
-}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/models/models_heightmap.cs b/ExampleApplication/Examples/models/models_heightmap.cs
new file mode 100644
index 0000000..ac152a7
--- /dev/null
+++ b/ExampleApplication/Examples/models/models_heightmap.cs
@@ -0,0 +1,8 @@
+
+using Raylib;
+using static Raylib.rl;
+
+public partial class Examples
+{
+ /*******************************************************************************************
*
* raylib [models] example - Heightmap loading and drawing
*
* This example has been created using raylib 1.8 (www.raylib.com)
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
*
* Copyright (c) 2015 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
public static int models_heightmap()
{
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 800;
int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "raylib [models] example - heightmap loading and drawing");
// Define our custom camera to look into our 3d world
Camera camera = {{ 18.0f, 16.0f, 18.0f }, { 0.0f, 0.0f, 0.0f }, { 0.0f, 1.0f, 0.0f }, 45.0f, 0 };
Image image = LoadImage("resources/heightmap.png"); // Load heightmap image (RAM)
Texture2D texture = LoadTextureFromImage(image); // Convert image to texture (VRAM)
Mesh mesh = GenMeshHeightmap(image, (Vector3){ 16, 8, 16 }); // Generate heightmap mesh (RAM and VRAM)
Model model = LoadModelFromMesh(mesh); // Load model from generated mesh
model.material.maps[MAP_DIFFUSE].texture = texture; // Set map diffuse texture
Vector3 mapPosition = { -8.0f, 0.0f, -8.0f }; // Define model position
UnloadImage(image); // Unload heightmap image from RAM, already uploaded to VRAM
SetCameraMode(camera, CAMERA_ORBITAL); // Set an orbital camera mode
SetTargetFPS(60); // Set our game to run at 60 frames-per-second
//--------------------------------------------------------------------------------------
// Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key
{
// Update
//----------------------------------------------------------------------------------
UpdateCamera(&camera); // Update camera
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
ClearBackground(RAYWHITE);
BeginMode3D(camera);
DrawModel(model, mapPosition, 1.0f, RED);
DrawGrid(20, 1.0f);
EndMode3D();
DrawTexture(texture, screenWidth - texture.width - 20, 20, WHITE);
DrawRectangleLines(screenWidth - texture.width - 20, 20, texture.width, texture.height, GREEN);
DrawFPS(10, 10);
EndDrawing();
//----------------------------------------------------------------------------------
}
// De-Initialization
//--------------------------------------------------------------------------------------
UnloadTexture(texture); // Unload texture
UnloadModel(model); // Unload model
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
return 0;
}
+}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/models/models_material_pbr.c b/ExampleApplication/Examples/models/models_material_pbr.c
deleted file mode 100644
index a4a10d6..0000000
--- a/ExampleApplication/Examples/models/models_material_pbr.c
+++ /dev/null
@@ -1,196 +0,0 @@
-/*******************************************************************************************
-*
-* raylib [models] example - PBR material
-*
-* This example has been created using raylib 1.8 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
-*
-* Copyright (c) 2017 Ramon Santamaria (@raysan5)
-*
-********************************************************************************************/
-
-#include "raylib.h"
-#include "raymath.h"
-
-#define RLIGHTS_IMPLEMENTATION
-#include "rlights.h"
-
-#define CUBEMAP_SIZE 512 // Cubemap texture size
-#define IRRADIANCE_SIZE 32 // Irradiance texture size
-#define PREFILTERED_SIZE 256 // Prefiltered HDR environment texture size
-#define BRDF_SIZE 512 // BRDF LUT texture size
-
-// PBR material loading
-static Material LoadMaterialPBR(Color albedo, float metalness, float roughness);
-
-int main()
-{
- // Initialization
- //--------------------------------------------------------------------------------------
- int screenWidth = 800;
- int screenHeight = 450;
-
- SetConfigFlags(FLAG_MSAA_4X_HINT); // Enable Multi Sampling Anti Aliasing 4x (if available)
- InitWindow(screenWidth, screenHeight, "raylib [models] example - pbr material");
-
- // Define the camera to look into our 3d world
- Camera camera = {{ 4.0f, 4.0f, 4.0f }, { 0.0f, 0.5f, 0.0f }, { 0.0f, 1.0f, 0.0f }, 45.0f, 0 };
-
- // Load model and PBR material
- Model model = LoadModel("resources/pbr/trooper.obj");
- MeshTangents(&model.mesh);
- model.material = LoadMaterialPBR((Color){ 255, 255, 255, 255 }, 1.0f, 1.0f);
-
- // Define lights attributes
- // NOTE: Shader is passed to every light on creation to define shader bindings internally
- Light lights[MAX_LIGHTS] = {
- CreateLight(LIGHT_POINT, (Vector3){ LIGHT_DISTANCE, LIGHT_HEIGHT, 0.0f }, (Vector3){ 0.0f, 0.0f, 0.0f }, (Color){ 255, 0, 0, 255 }, model.material.shader),
- CreateLight(LIGHT_POINT, (Vector3){ 0.0f, LIGHT_HEIGHT, LIGHT_DISTANCE }, (Vector3){ 0.0f, 0.0f, 0.0f }, (Color){ 0, 255, 0, 255 }, model.material.shader),
- CreateLight(LIGHT_POINT, (Vector3){ -LIGHT_DISTANCE, LIGHT_HEIGHT, 0.0f }, (Vector3){ 0.0f, 0.0f, 0.0f }, (Color){ 0, 0, 255, 255 }, model.material.shader),
- CreateLight(LIGHT_DIRECTIONAL, (Vector3){ 0.0f, LIGHT_HEIGHT*2.0f, -LIGHT_DISTANCE }, (Vector3){ 0.0f, 0.0f, 0.0f }, (Color){ 255, 0, 255, 255 }, model.material.shader)
- };
-
- SetCameraMode(camera, CAMERA_ORBITAL); // Set an orbital camera mode
-
- SetTargetFPS(60); // Set our game to run at 60 frames-per-second
- //--------------------------------------------------------------------------------------
-
- // Main game loop
- while (!WindowShouldClose()) // Detect window close button or ESC key
- {
- // Update
- //----------------------------------------------------------------------------------
- UpdateCamera(&camera); // Update camera
-
- // Send to material PBR shader camera view position
- float cameraPos[3] = { camera.position.x, camera.position.y, camera.position.z };
- SetShaderValue(model.material.shader, model.material.shader.locs[LOC_VECTOR_VIEW], cameraPos, 3);
- //----------------------------------------------------------------------------------
-
- // Draw
- //----------------------------------------------------------------------------------
- BeginDrawing();
-
- ClearBackground(RAYWHITE);
-
- BeginMode3D(camera);
-
- DrawModel(model, Vector3Zero(), 1.0f, WHITE);
-
- DrawGrid(10, 1.0f);
-
- EndMode3D();
-
- DrawFPS(10, 10);
-
- EndDrawing();
- //----------------------------------------------------------------------------------
- }
-
- // De-Initialization
- //--------------------------------------------------------------------------------------
- UnloadModel(model); // Unload skybox model
-
- CloseWindow(); // Close window and OpenGL context
- //--------------------------------------------------------------------------------------
-
- return 0;
-}
-
-// Load PBR material (Supports: ALBEDO, NORMAL, METALNESS, ROUGHNESS, AO, EMMISIVE, HEIGHT maps)
-// NOTE: PBR shader is loaded inside this function
-static Material LoadMaterialPBR(Color albedo, float metalness, float roughness)
-{
- Material mat = { 0 }; // NOTE: All maps textures are set to { 0 }
-
- #define PATH_PBR_VS "resources/shaders/pbr.vs" // Path to physically based rendering vertex shader
- #define PATH_PBR_FS "resources/shaders/pbr.fs" // Path to physically based rendering fragment shader
-
- mat.shader = LoadShader(PATH_PBR_VS, PATH_PBR_FS);
-
- // Get required locations points for PBR material
- // NOTE: Those location names must be available and used in the shader code
- mat.shader.locs[LOC_MAP_ALBEDO] = GetShaderLocation(mat.shader, "albedo.sampler");
- mat.shader.locs[LOC_MAP_METALNESS] = GetShaderLocation(mat.shader, "metalness.sampler");
- mat.shader.locs[LOC_MAP_NORMAL] = GetShaderLocation(mat.shader, "normals.sampler");
- mat.shader.locs[LOC_MAP_ROUGHNESS] = GetShaderLocation(mat.shader, "roughness.sampler");
- mat.shader.locs[LOC_MAP_OCCLUSION] = GetShaderLocation(mat.shader, "occlusion.sampler");
- //mat.shader.locs[LOC_MAP_EMISSION] = GetShaderLocation(mat.shader, "emission.sampler");
- //mat.shader.locs[LOC_MAP_HEIGHT] = GetShaderLocation(mat.shader, "height.sampler");
- mat.shader.locs[LOC_MAP_IRRADIANCE] = GetShaderLocation(mat.shader, "irradianceMap");
- mat.shader.locs[LOC_MAP_PREFILTER] = GetShaderLocation(mat.shader, "prefilterMap");
- mat.shader.locs[LOC_MAP_BRDF] = GetShaderLocation(mat.shader, "brdfLUT");
-
- // Set view matrix location
- mat.shader.locs[LOC_MATRIX_MODEL] = GetShaderLocation(mat.shader, "matModel");
- mat.shader.locs[LOC_MATRIX_VIEW] = GetShaderLocation(mat.shader, "view");
- mat.shader.locs[LOC_VECTOR_VIEW] = GetShaderLocation(mat.shader, "viewPos");
-
- // Set PBR standard maps
- mat.maps[MAP_ALBEDO].texture = LoadTexture("resources/pbr/trooper_albedo.png");
- mat.maps[MAP_NORMAL].texture = LoadTexture("resources/pbr/trooper_normals.png");
- mat.maps[MAP_METALNESS].texture = LoadTexture("resources/pbr/trooper_metalness.png");
- mat.maps[MAP_ROUGHNESS].texture = LoadTexture("resources/pbr/trooper_roughness.png");
- mat.maps[MAP_OCCLUSION].texture = LoadTexture("resources/pbr/trooper_ao.png");
-
- // Set environment maps
- #define PATH_CUBEMAP_VS "resources/shaders/cubemap.vs" // Path to equirectangular to cubemap vertex shader
- #define PATH_CUBEMAP_FS "resources/shaders/cubemap.fs" // Path to equirectangular to cubemap fragment shader
- #define PATH_SKYBOX_VS "resources/shaders/skybox.vs" // Path to skybox vertex shader
- #define PATH_IRRADIANCE_FS "resources/shaders/irradiance.fs" // Path to irradiance (GI) calculation fragment shader
- #define PATH_PREFILTER_FS "resources/shaders/prefilter.fs" // Path to reflection prefilter calculation fragment shader
- #define PATH_BRDF_VS "resources/shaders/brdf.vs" // Path to bidirectional reflectance distribution function vertex shader
- #define PATH_BRDF_FS "resources/shaders/brdf.fs" // Path to bidirectional reflectance distribution function fragment shader
-
- Shader shdrCubemap = LoadShader(PATH_CUBEMAP_VS, PATH_CUBEMAP_FS);
- Shader shdrIrradiance = LoadShader(PATH_SKYBOX_VS, PATH_IRRADIANCE_FS);
- Shader shdrPrefilter = LoadShader(PATH_SKYBOX_VS, PATH_PREFILTER_FS);
- Shader shdrBRDF = LoadShader(PATH_BRDF_VS, PATH_BRDF_FS);
-
- // Setup required shader locations
- SetShaderValuei(shdrCubemap, GetShaderLocation(shdrCubemap, "equirectangularMap"), (int[1]){ 0 }, 1);
- SetShaderValuei(shdrIrradiance, GetShaderLocation(shdrIrradiance, "environmentMap"), (int[1]){ 0 }, 1);
- SetShaderValuei(shdrPrefilter, GetShaderLocation(shdrPrefilter, "environmentMap"), (int[1]){ 0 }, 1);
-
- Texture2D texHDR = LoadTexture("resources/dresden_square.hdr");
- Texture2D cubemap = GenTextureCubemap(shdrCubemap, texHDR, CUBEMAP_SIZE);
- mat.maps[MAP_IRRADIANCE].texture = GenTextureIrradiance(shdrIrradiance, cubemap, IRRADIANCE_SIZE);
- mat.maps[MAP_PREFILTER].texture = GenTexturePrefilter(shdrPrefilter, cubemap, PREFILTERED_SIZE);
- mat.maps[MAP_BRDF].texture = GenTextureBRDF(shdrBRDF, cubemap, BRDF_SIZE);
- UnloadTexture(cubemap);
- UnloadTexture(texHDR);
-
- // Unload already used shaders (to create specific textures)
- UnloadShader(shdrCubemap);
- UnloadShader(shdrIrradiance);
- UnloadShader(shdrPrefilter);
- UnloadShader(shdrBRDF);
-
- // Set textures filtering for better quality
- SetTextureFilter(mat.maps[MAP_ALBEDO].texture, FILTER_BILINEAR);
- SetTextureFilter(mat.maps[MAP_NORMAL].texture, FILTER_BILINEAR);
- SetTextureFilter(mat.maps[MAP_METALNESS].texture, FILTER_BILINEAR);
- SetTextureFilter(mat.maps[MAP_ROUGHNESS].texture, FILTER_BILINEAR);
- SetTextureFilter(mat.maps[MAP_OCCLUSION].texture, FILTER_BILINEAR);
-
- // Enable sample usage in shader for assigned textures
- SetShaderValuei(mat.shader, GetShaderLocation(mat.shader, "albedo.useSampler"), (int[1]){ 1 }, 1);
- SetShaderValuei(mat.shader, GetShaderLocation(mat.shader, "normals.useSampler"), (int[1]){ 1 }, 1);
- SetShaderValuei(mat.shader, GetShaderLocation(mat.shader, "metalness.useSampler"), (int[1]){ 1 }, 1);
- SetShaderValuei(mat.shader, GetShaderLocation(mat.shader, "roughness.useSampler"), (int[1]){ 1 }, 1);
- SetShaderValuei(mat.shader, GetShaderLocation(mat.shader, "occlusion.useSampler"), (int[1]){ 1 }, 1);
-
- int renderModeLoc = GetShaderLocation(mat.shader, "renderMode");
- SetShaderValuei(mat.shader, renderModeLoc, (int[1]){ 0 }, 1);
-
- // Set up material properties color
- mat.maps[MAP_ALBEDO].color = albedo;
- mat.maps[MAP_NORMAL].color = (Color){ 128, 128, 255, 255 };
- mat.maps[MAP_METALNESS].value = metalness;
- mat.maps[MAP_ROUGHNESS].value = roughness;
- mat.maps[MAP_OCCLUSION].value = 1.0f;
- mat.maps[MAP_EMISSION].value = 0.5f;
- mat.maps[MAP_HEIGHT].value = 0.5f;
-
- return mat;
-}
diff --git a/ExampleApplication/Examples/models/models_material_pbr.cs b/ExampleApplication/Examples/models/models_material_pbr.cs
new file mode 100644
index 0000000..3df2ca9
--- /dev/null
+++ b/ExampleApplication/Examples/models/models_material_pbr.cs
@@ -0,0 +1,8 @@
+
+using Raylib;
+using static Raylib.rl;
+
+public partial class Examples
+{
+ /*******************************************************************************************
*
* raylib [models] example - PBR material
*
* This example has been created using raylib 1.8 (www.raylib.com)
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
*
* Copyright (c) 2017 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
#include "raymath.h"
#define RLIGHTS_IMPLEMENTATION
#include "rlights.h"
#define CUBEMAP_SIZE 512 // Cubemap texture size
#define IRRADIANCE_SIZE 32 // Irradiance texture size
#define PREFILTERED_SIZE 256 // Prefiltered HDR environment texture size
#define BRDF_SIZE 512 // BRDF LUT texture size
// PBR material loading
static Material LoadMaterialPBR(Color albedo, float metalness, float roughness);
public static int models_material_pbr()
{
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 800;
int screenHeight = 450;
SetConfigFlags(FLAG_MSAA_4X_HINT); // Enable Multi Sampling Anti Aliasing 4x (if available)
InitWindow(screenWidth, screenHeight, "raylib [models] example - pbr material");
// Define the camera to look into our 3d world
Camera camera = {{ 4.0f, 4.0f, 4.0f }, { 0.0f, 0.5f, 0.0f }, { 0.0f, 1.0f, 0.0f }, 45.0f, 0 };
// Load model and PBR material
Model model = LoadModel("resources/pbr/trooper.obj");
MeshTangents(&model.mesh);
model.material = LoadMaterialPBR((Color){ 255, 255, 255, 255 }, 1.0f, 1.0f);
// Define lights attributes
// NOTE: Shader is passed to every light on creation to define shader bindings internally
Light lights[MAX_LIGHTS] = {
CreateLight(LIGHT_POINT, (Vector3){ LIGHT_DISTANCE, LIGHT_HEIGHT, 0.0f }, (Vector3){ 0.0f, 0.0f, 0.0f }, (Color){ 255, 0, 0, 255 }, model.material.shader),
CreateLight(LIGHT_POINT, (Vector3){ 0.0f, LIGHT_HEIGHT, LIGHT_DISTANCE }, (Vector3){ 0.0f, 0.0f, 0.0f }, (Color){ 0, 255, 0, 255 }, model.material.shader),
CreateLight(LIGHT_POINT, (Vector3){ -LIGHT_DISTANCE, LIGHT_HEIGHT, 0.0f }, (Vector3){ 0.0f, 0.0f, 0.0f }, (Color){ 0, 0, 255, 255 }, model.material.shader),
CreateLight(LIGHT_DIRECTIONAL, (Vector3){ 0.0f, LIGHT_HEIGHT*2.0f, -LIGHT_DISTANCE }, (Vector3){ 0.0f, 0.0f, 0.0f }, (Color){ 255, 0, 255, 255 }, model.material.shader)
};
SetCameraMode(camera, CAMERA_ORBITAL); // Set an orbital camera mode
SetTargetFPS(60); // Set our game to run at 60 frames-per-second
//--------------------------------------------------------------------------------------
// Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key
{
// Update
//----------------------------------------------------------------------------------
UpdateCamera(&camera); // Update camera
// Send to material PBR shader camera view position
float cameraPos[3] = { camera.position.x, camera.position.y, camera.position.z };
SetShaderValue(model.material.shader, model.material.shader.locs[LOC_VECTOR_VIEW], cameraPos, 3);
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
ClearBackground(RAYWHITE);
BeginMode3D(camera);
DrawModel(model, Vector3Zero(), 1.0f, WHITE);
DrawGrid(10, 1.0f);
EndMode3D();
DrawFPS(10, 10);
EndDrawing();
//----------------------------------------------------------------------------------
}
// De-Initialization
//--------------------------------------------------------------------------------------
UnloadModel(model); // Unload skybox model
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
return 0;
}
// Load PBR material (Supports: ALBEDO, NORMAL, METALNESS, ROUGHNESS, AO, EMMISIVE, HEIGHT maps)
// NOTE: PBR shader is loaded inside this function
static Material LoadMaterialPBR(Color albedo, float metalness, float roughness)
{
Material mat = { 0 }; // NOTE: All maps textures are set to { 0 }
#define PATH_PBR_VS "resources/shaders/pbr.vs" // Path to physically based rendering vertex shader
#define PATH_PBR_FS "resources/shaders/pbr.fs" // Path to physically based rendering fragment shader
mat.shader = LoadShader(PATH_PBR_VS, PATH_PBR_FS);
// Get required locations points for PBR material
// NOTE: Those location names must be available and used in the shader code
mat.shader.locs[LOC_MAP_ALBEDO] = GetShaderLocation(mat.shader, "albedo.sampler");
mat.shader.locs[LOC_MAP_METALNESS] = GetShaderLocation(mat.shader, "metalness.sampler");
mat.shader.locs[LOC_MAP_NORMAL] = GetShaderLocation(mat.shader, "normals.sampler");
mat.shader.locs[LOC_MAP_ROUGHNESS] = GetShaderLocation(mat.shader, "roughness.sampler");
mat.shader.locs[LOC_MAP_OCCLUSION] = GetShaderLocation(mat.shader, "occlusion.sampler");
//mat.shader.locs[LOC_MAP_EMISSION] = GetShaderLocation(mat.shader, "emission.sampler");
//mat.shader.locs[LOC_MAP_HEIGHT] = GetShaderLocation(mat.shader, "height.sampler");
mat.shader.locs[LOC_MAP_IRRADIANCE] = GetShaderLocation(mat.shader, "irradianceMap");
mat.shader.locs[LOC_MAP_PREFILTER] = GetShaderLocation(mat.shader, "prefilterMap");
mat.shader.locs[LOC_MAP_BRDF] = GetShaderLocation(mat.shader, "brdfLUT");
// Set view matrix location
mat.shader.locs[LOC_MATRIX_MODEL] = GetShaderLocation(mat.shader, "matModel");
mat.shader.locs[LOC_MATRIX_VIEW] = GetShaderLocation(mat.shader, "view");
mat.shader.locs[LOC_VECTOR_VIEW] = GetShaderLocation(mat.shader, "viewPos");
// Set PBR standard maps
mat.maps[MAP_ALBEDO].texture = LoadTexture("resources/pbr/trooper_albedo.png");
mat.maps[MAP_NORMAL].texture = LoadTexture("resources/pbr/trooper_normals.png");
mat.maps[MAP_METALNESS].texture = LoadTexture("resources/pbr/trooper_metalness.png");
mat.maps[MAP_ROUGHNESS].texture = LoadTexture("resources/pbr/trooper_roughness.png");
mat.maps[MAP_OCCLUSION].texture = LoadTexture("resources/pbr/trooper_ao.png");
// Set environment maps
#define PATH_CUBEMAP_VS "resources/shaders/cubemap.vs" // Path to equirectangular to cubemap vertex shader
#define PATH_CUBEMAP_FS "resources/shaders/cubemap.fs" // Path to equirectangular to cubemap fragment shader
#define PATH_SKYBOX_VS "resources/shaders/skybox.vs" // Path to skybox vertex shader
#define PATH_IRRADIANCE_FS "resources/shaders/irradiance.fs" // Path to irradiance (GI) calculation fragment shader
#define PATH_PREFILTER_FS "resources/shaders/prefilter.fs" // Path to reflection prefilter calculation fragment shader
#define PATH_BRDF_VS "resources/shaders/brdf.vs" // Path to bidirectional reflectance distribution function vertex shader
#define PATH_BRDF_FS "resources/shaders/brdf.fs" // Path to bidirectional reflectance distribution function fragment shader
Shader shdrCubemap = LoadShader(PATH_CUBEMAP_VS, PATH_CUBEMAP_FS);
Shader shdrIrradiance = LoadShader(PATH_SKYBOX_VS, PATH_IRRADIANCE_FS);
Shader shdrPrefilter = LoadShader(PATH_SKYBOX_VS, PATH_PREFILTER_FS);
Shader shdrBRDF = LoadShader(PATH_BRDF_VS, PATH_BRDF_FS);
// Setup required shader locations
SetShaderValuei(shdrCubemap, GetShaderLocation(shdrCubemap, "equirectangularMap"), (int[1]){ 0 }, 1);
SetShaderValuei(shdrIrradiance, GetShaderLocation(shdrIrradiance, "environmentMap"), (int[1]){ 0 }, 1);
SetShaderValuei(shdrPrefilter, GetShaderLocation(shdrPrefilter, "environmentMap"), (int[1]){ 0 }, 1);
Texture2D texHDR = LoadTexture("resources/dresden_square.hdr");
Texture2D cubemap = GenTextureCubemap(shdrCubemap, texHDR, CUBEMAP_SIZE);
mat.maps[MAP_IRRADIANCE].texture = GenTextureIrradiance(shdrIrradiance, cubemap, IRRADIANCE_SIZE);
mat.maps[MAP_PREFILTER].texture = GenTexturePrefilter(shdrPrefilter, cubemap, PREFILTERED_SIZE);
mat.maps[MAP_BRDF].texture = GenTextureBRDF(shdrBRDF, cubemap, BRDF_SIZE);
UnloadTexture(cubemap);
UnloadTexture(texHDR);
// Unload already used shaders (to create specific textures)
UnloadShader(shdrCubemap);
UnloadShader(shdrIrradiance);
UnloadShader(shdrPrefilter);
UnloadShader(shdrBRDF);
// Set textures filtering for better quality
SetTextureFilter(mat.maps[MAP_ALBEDO].texture, FILTER_BILINEAR);
SetTextureFilter(mat.maps[MAP_NORMAL].texture, FILTER_BILINEAR);
SetTextureFilter(mat.maps[MAP_METALNESS].texture, FILTER_BILINEAR);
SetTextureFilter(mat.maps[MAP_ROUGHNESS].texture, FILTER_BILINEAR);
SetTextureFilter(mat.maps[MAP_OCCLUSION].texture, FILTER_BILINEAR);
// Enable sample usage in shader for assigned textures
SetShaderValuei(mat.shader, GetShaderLocation(mat.shader, "albedo.useSampler"), (int[1]){ 1 }, 1);
SetShaderValuei(mat.shader, GetShaderLocation(mat.shader, "normals.useSampler"), (int[1]){ 1 }, 1);
SetShaderValuei(mat.shader, GetShaderLocation(mat.shader, "metalness.useSampler"), (int[1]){ 1 }, 1);
SetShaderValuei(mat.shader, GetShaderLocation(mat.shader, "roughness.useSampler"), (int[1]){ 1 }, 1);
SetShaderValuei(mat.shader, GetShaderLocation(mat.shader, "occlusion.useSampler"), (int[1]){ 1 }, 1);
int renderModeLoc = GetShaderLocation(mat.shader, "renderMode");
SetShaderValuei(mat.shader, renderModeLoc, (int[1]){ 0 }, 1);
// Set up material properties color
mat.maps[MAP_ALBEDO].color = albedo;
mat.maps[MAP_NORMAL].color = (Color){ 128, 128, 255, 255 };
mat.maps[MAP_METALNESS].value = metalness;
mat.maps[MAP_ROUGHNESS].value = roughness;
mat.maps[MAP_OCCLUSION].value = 1.0f;
mat.maps[MAP_EMISSION].value = 0.5f;
mat.maps[MAP_HEIGHT].value = 0.5f;
return mat;
}
+}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/models/models_mesh_generation.c b/ExampleApplication/Examples/models/models_mesh_generation.c
deleted file mode 100644
index c02bd91..0000000
--- a/ExampleApplication/Examples/models/models_mesh_generation.c
+++ /dev/null
@@ -1,113 +0,0 @@
-/*******************************************************************************************
-*
-* raylib example - procedural mesh generation
-*
-* This example has been created using raylib 1.8 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
-*
-* Copyright (c) 2017 Ramon Santamaria (Ray San)
-*
-********************************************************************************************/
-
-#include "raylib.h"
-
-#define NUM_MODELS 7 // We generate 7 parametric 3d shapes
-
-int main()
-{
- // Initialization
- //--------------------------------------------------------------------------------------
- int screenWidth = 800;
- int screenHeight = 450;
-
- InitWindow(screenWidth, screenHeight, "raylib [models] example - mesh generation");
-
- // We generate a checked image for texturing
- Image checked = GenImageChecked(2, 2, 1, 1, RED, GREEN);
- Texture2D texture = LoadTextureFromImage(checked);
- UnloadImage(checked);
-
- Model models[NUM_MODELS];
-
- models[0] = LoadModelFromMesh(GenMeshPlane(2, 2, 5, 5));
- models[1] = LoadModelFromMesh(GenMeshCube(2.0f, 1.0f, 2.0f));
- models[2] = LoadModelFromMesh(GenMeshSphere(2, 32, 32));
- models[3] = LoadModelFromMesh(GenMeshHemiSphere(2, 16, 16));
- models[4] = LoadModelFromMesh(GenMeshCylinder(1, 2, 16));
- models[5] = LoadModelFromMesh(GenMeshTorus(0.25f, 4.0f, 16, 32));
- models[6] = LoadModelFromMesh(GenMeshKnot(1.0f, 2.0f, 16, 128));
-
- // Set checked texture as default diffuse component for all models material
- for (int i = 0; i < NUM_MODELS; i++) models[i].material.maps[MAP_DIFFUSE].texture = texture;
-
- // Define the camera to look into our 3d world
- Camera camera = {{ 5.0f, 5.0f, 5.0f }, { 0.0f, 0.0f, 0.0f }, { 0.0f, 1.0f, 0.0f }, 45.0f, 0 };
-
- // Model drawing position
- Vector3 position = { 0.0f, 0.0f, 0.0f };
-
- int currentModel = 0;
-
- SetCameraMode(camera, CAMERA_ORBITAL); // Set a orbital camera mode
-
- SetTargetFPS(60); // Set our game to run at 60 frames-per-second
- //--------------------------------------------------------------------------------------
-
- // Main game loop
- while (!WindowShouldClose()) // Detect window close button or ESC key
- {
- // Update
- //----------------------------------------------------------------------------------
- UpdateCamera(&camera); // Update internal camera and our camera
-
- if (IsMouseButtonPressed(MOUSE_LEFT_BUTTON))
- {
- currentModel = (currentModel + 1)%NUM_MODELS; // Cycle between the textures
- }
- //----------------------------------------------------------------------------------
-
- // Draw
- //----------------------------------------------------------------------------------
- BeginDrawing();
-
- ClearBackground(RAYWHITE);
-
- BeginMode3D(camera);
-
- DrawModel(models[currentModel], position, 1.0f, WHITE);
-
- DrawGrid(10, 1.0);
-
- EndMode3D();
-
- DrawRectangle(30, 400, 310, 30, Fade(SKYBLUE, 0.5f));
- DrawRectangleLines(30, 400, 310, 30, Fade(DARKBLUE, 0.5f));
- DrawText("MOUSE LEFT BUTTON to CYCLE PROCEDURAL MODELS", 40, 410, 10, BLUE);
-
- switch(currentModel)
- {
- case 0: DrawText("PLANE", 680, 10, 20, DARKBLUE); break;
- case 1: DrawText("CUBE", 680, 10, 20, DARKBLUE); break;
- case 2: DrawText("SPHERE", 680, 10, 20, DARKBLUE); break;
- case 3: DrawText("HEMISPHERE", 640, 10, 20, DARKBLUE); break;
- case 4: DrawText("CYLINDER", 680, 10, 20, DARKBLUE); break;
- case 5: DrawText("TORUS", 680, 10, 20, DARKBLUE); break;
- case 6: DrawText("KNOT", 680, 10, 20, DARKBLUE); break;
- default: break;
- }
-
- EndDrawing();
- //----------------------------------------------------------------------------------
- }
-
- // De-Initialization
- //--------------------------------------------------------------------------------------
-
- // Unload models data (GPU VRAM)
- for (int i = 0; i < NUM_MODELS; i++) UnloadModel(models[i]);
-
- CloseWindow(); // Close window and OpenGL context
- //--------------------------------------------------------------------------------------
-
- return 0;
-}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/models/models_mesh_generation.cs b/ExampleApplication/Examples/models/models_mesh_generation.cs
new file mode 100644
index 0000000..c74f868
--- /dev/null
+++ b/ExampleApplication/Examples/models/models_mesh_generation.cs
@@ -0,0 +1,8 @@
+
+using Raylib;
+using static Raylib.rl;
+
+public partial class Examples
+{
+ /*******************************************************************************************
*
* raylib example - procedural mesh generation
*
* This example has been created using raylib 1.8 (www.raylib.com)
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
*
* Copyright (c) 2017 Ramon Santamaria (Ray San)
*
********************************************************************************************/
#define NUM_MODELS 7 // We generate 7 parametric 3d shapes
public static int models_mesh_generation()
{
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 800;
int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "raylib [models] example - mesh generation");
// We generate a checked image for texturing
Image checked = GenImageChecked(2, 2, 1, 1, RED, GREEN);
Texture2D texture = LoadTextureFromImage(checked);
UnloadImage(checked);
Model models[NUM_MODELS];
models[0] = LoadModelFromMesh(GenMeshPlane(2, 2, 5, 5));
models[1] = LoadModelFromMesh(GenMeshCube(2.0f, 1.0f, 2.0f));
models[2] = LoadModelFromMesh(GenMeshSphere(2, 32, 32));
models[3] = LoadModelFromMesh(GenMeshHemiSphere(2, 16, 16));
models[4] = LoadModelFromMesh(GenMeshCylinder(1, 2, 16));
models[5] = LoadModelFromMesh(GenMeshTorus(0.25f, 4.0f, 16, 32));
models[6] = LoadModelFromMesh(GenMeshKnot(1.0f, 2.0f, 16, 128));
// Set checked texture as default diffuse component for all models material
for (int i = 0; i < NUM_MODELS; i++) models[i].material.maps[MAP_DIFFUSE].texture = texture;
// Define the camera to look into our 3d world
Camera camera = {{ 5.0f, 5.0f, 5.0f }, { 0.0f, 0.0f, 0.0f }, { 0.0f, 1.0f, 0.0f }, 45.0f, 0 };
// Model drawing position
Vector3 position = { 0.0f, 0.0f, 0.0f };
int currentModel = 0;
SetCameraMode(camera, CAMERA_ORBITAL); // Set a orbital camera mode
SetTargetFPS(60); // Set our game to run at 60 frames-per-second
//--------------------------------------------------------------------------------------
// Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key
{
// Update
//----------------------------------------------------------------------------------
UpdateCamera(&camera); // Update internal camera and our camera
if (IsMouseButtonPressed(MOUSE_LEFT_BUTTON))
{
currentModel = (currentModel + 1)%NUM_MODELS; // Cycle between the textures
}
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
ClearBackground(RAYWHITE);
BeginMode3D(camera);
DrawModel(models[currentModel], position, 1.0f, WHITE);
DrawGrid(10, 1.0);
EndMode3D();
DrawRectangle(30, 400, 310, 30, Fade(SKYBLUE, 0.5f));
DrawRectangleLines(30, 400, 310, 30, Fade(DARKBLUE, 0.5f));
DrawText("MOUSE LEFT BUTTON to CYCLE PROCEDURAL MODELS", 40, 410, 10, BLUE);
switch(currentModel)
{
case 0: DrawText("PLANE", 680, 10, 20, DARKBLUE); break;
case 1: DrawText("CUBE", 680, 10, 20, DARKBLUE); break;
case 2: DrawText("SPHERE", 680, 10, 20, DARKBLUE); break;
case 3: DrawText("HEMISPHERE", 640, 10, 20, DARKBLUE); break;
case 4: DrawText("CYLINDER", 680, 10, 20, DARKBLUE); break;
case 5: DrawText("TORUS", 680, 10, 20, DARKBLUE); break;
case 6: DrawText("KNOT", 680, 10, 20, DARKBLUE); break;
default: break;
}
EndDrawing();
//----------------------------------------------------------------------------------
}
// De-Initialization
//--------------------------------------------------------------------------------------
// Unload models data (GPU VRAM)
for (int i = 0; i < NUM_MODELS; i++) UnloadModel(models[i]);
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
return 0;
}
+}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/models/models_mesh_picking.c b/ExampleApplication/Examples/models/models_mesh_picking.c
deleted file mode 100644
index fb224c7..0000000
--- a/ExampleApplication/Examples/models/models_mesh_picking.c
+++ /dev/null
@@ -1,201 +0,0 @@
-/*******************************************************************************************
-*
-* raylib [models] example - Mesh picking in 3d mode, ground plane, triangle, mesh
-*
-* 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) 2015 Ramon Santamaria (@raysan5)
-* Example contributed by Joel Davis (@joeld42)
-*
-********************************************************************************************/
-
-#include "raylib.h"
-#include "raymath.h"
-
-#define FLT_MAX 3.40282347E+38F // Maximum value of a float, defined in
-
-int main()
-{
- // Initialization
- //--------------------------------------------------------------------------------------
- int screenWidth = 800;
- int screenHeight = 450;
-
- InitWindow(screenWidth, screenHeight, "raylib [models] example - mesh picking");
-
- // Define the camera to look into our 3d world
- Camera camera;
- camera.position = (Vector3){ 20.0f, 20.0f, 20.0f }; // Camera position
- camera.target = (Vector3){ 0.0f, 8.0f, 0.0f }; // Camera looking at point
- camera.up = (Vector3){ 0.0f, 1.6f, 0.0f }; // Camera up vector (rotation towards target)
- camera.fovy = 45.0f; // Camera field-of-view Y
- camera.type = CAMERA_PERSPECTIVE; // Camera mode type
-
- Ray ray; // Picking ray
-
- Model tower = LoadModel("resources/models/turret.obj"); // Load OBJ model
- Texture2D texture = LoadTexture("resources/models/turret_diffuse.png"); // Load model texture
- tower.material.maps[MAP_DIFFUSE].texture = texture; // Set model diffuse texture
-
- Vector3 towerPos = { 0.0f, 0.0f, 0.0f }; // Set model position
- BoundingBox towerBBox = MeshBoundingBox(tower.mesh); // Get mesh bounding box
- bool hitMeshBBox = false;
- bool hitTriangle = false;
-
- // Test triangle
- Vector3 ta = (Vector3){ -25.0, 0.5, 0.0 };
- Vector3 tb = (Vector3){ -4.0, 2.5, 1.0 };
- Vector3 tc = (Vector3){ -8.0, 6.5, 0.0 };
-
- Vector3 bary = { 0.0f, 0.0f, 0.0f };
-
- SetCameraMode(camera, CAMERA_FREE); // Set a free camera mode
-
- SetTargetFPS(60); // Set our game to run at 60 frames-per-second
- //--------------------------------------------------------------------------------------
- // Main game loop
- while (!WindowShouldClose()) // Detect window close button or ESC key
- {
- // Update
- //----------------------------------------------------------------------------------
- UpdateCamera(&camera); // Update camera
-
- // Display information about closest hit
- RayHitInfo nearestHit;
- char *hitObjectName = "None";
- nearestHit.distance = FLT_MAX;
- nearestHit.hit = false;
- Color cursorColor = WHITE;
-
- // Get ray and test against ground, triangle, and mesh
- ray = GetMouseRay(GetMousePosition(), camera);
-
- // Check ray collision aginst ground plane
- RayHitInfo groundHitInfo = GetCollisionRayGround(ray, 0.0f);
-
- if ((groundHitInfo.hit) && (groundHitInfo.distance < nearestHit.distance))
- {
- nearestHit = groundHitInfo;
- cursorColor = GREEN;
- hitObjectName = "Ground";
- }
-
- // Check ray collision against test triangle
- RayHitInfo triHitInfo = GetCollisionRayTriangle(ray, ta, tb, tc);
-
- if ((triHitInfo.hit) && (triHitInfo.distance < nearestHit.distance))
- {
- nearestHit = triHitInfo;
- cursorColor = PURPLE;
- hitObjectName = "Triangle";
-
- bary = Vector3Barycenter(nearestHit.position, ta, tb, tc);
- hitTriangle = true;
- }
- else hitTriangle = false;
-
- RayHitInfo meshHitInfo;
-
- // Check ray collision against bounding box first, before trying the full ray-mesh test
- if (CheckCollisionRayBox(ray, towerBBox))
- {
- hitMeshBBox = true;
-
- // Check ray collision against model
- // NOTE: It considers model.transform matrix!
- meshHitInfo = GetCollisionRayModel(ray, &tower);
-
- if ((meshHitInfo.hit) && (meshHitInfo.distance < nearestHit.distance))
- {
- nearestHit = meshHitInfo;
- cursorColor = ORANGE;
- hitObjectName = "Mesh";
- }
-
- } hitMeshBBox = false;
- //----------------------------------------------------------------------------------
-
- // Draw
- //----------------------------------------------------------------------------------
- BeginDrawing();
-
- ClearBackground(RAYWHITE);
-
- BeginMode3D(camera);
-
- // Draw the tower
- // WARNING: If scale is different than 1.0f,
- // not considered by GetCollisionRayModel()
- DrawModel(tower, towerPos, 1.0f, WHITE);
-
- // Draw the test triangle
- DrawLine3D(ta, tb, PURPLE);
- DrawLine3D(tb, tc, PURPLE);
- DrawLine3D(tc, ta, PURPLE);
-
- // Draw the mesh bbox if we hit it
- if (hitMeshBBox) DrawBoundingBox(towerBBox, LIME);
-
- // If we hit something, draw the cursor at the hit point
- if (nearestHit.hit)
- {
- DrawCube(nearestHit.position, 0.3, 0.3, 0.3, cursorColor);
- DrawCubeWires(nearestHit.position, 0.3, 0.3, 0.3, RED);
-
- Vector3 normalEnd;
- normalEnd.x = nearestHit.position.x + nearestHit.normal.x;
- normalEnd.y = nearestHit.position.y + nearestHit.normal.y;
- normalEnd.z = nearestHit.position.z + nearestHit.normal.z;
-
- DrawLine3D(nearestHit.position, normalEnd, RED);
- }
-
- DrawRay(ray, MAROON);
-
- DrawGrid(10, 10.0f);
-
- EndMode3D();
-
- // Draw some debug GUI text
- DrawText(FormatText("Hit Object: %s", hitObjectName), 10, 50, 10, BLACK);
-
- if (nearestHit.hit)
- {
- int ypos = 70;
-
- DrawText(FormatText("Distance: %3.2f", nearestHit.distance), 10, ypos, 10, BLACK);
-
- DrawText(FormatText("Hit Pos: %3.2f %3.2f %3.2f",
- nearestHit.position.x,
- nearestHit.position.y,
- nearestHit.position.z), 10, ypos + 15, 10, BLACK);
-
- DrawText(FormatText("Hit Norm: %3.2f %3.2f %3.2f",
- nearestHit.normal.x,
- nearestHit.normal.y,
- nearestHit.normal.z), 10, ypos + 30, 10, BLACK);
-
- if (hitTriangle) DrawText(FormatText("Barycenter: %3.2f %3.2f %3.2f", bary.x, bary.y, bary.z), 10, ypos + 45, 10, BLACK);
- }
-
- DrawText("Use Mouse to Move Camera", 10, 430, 10, GRAY);
-
- DrawText("(c) Turret 3D model by Alberto Cano", screenWidth - 200, screenHeight - 20, 10, GRAY);
-
- DrawFPS(10, 10);
-
- EndDrawing();
- //----------------------------------------------------------------------------------
- }
-
- // De-Initialization
- //--------------------------------------------------------------------------------------
- UnloadModel(tower); // Unload model
- UnloadTexture(texture); // Unload texture
-
- CloseWindow(); // Close window and OpenGL context
- //--------------------------------------------------------------------------------------
-
- return 0;
-}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/models/models_mesh_picking.cs b/ExampleApplication/Examples/models/models_mesh_picking.cs
new file mode 100644
index 0000000..e8287d4
--- /dev/null
+++ b/ExampleApplication/Examples/models/models_mesh_picking.cs
@@ -0,0 +1,8 @@
+
+using Raylib;
+using static Raylib.rl;
+
+public partial class Examples
+{
+ /*******************************************************************************************
*
* raylib [models] example - Mesh picking in 3d mode, ground plane, triangle, mesh
*
* 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) 2015 Ramon Santamaria (@raysan5)
* Example contributed by Joel Davis (@joeld42)
*
********************************************************************************************/
#include "raymath.h"
#define FLT_MAX 3.40282347E+38F // Maximum value of a float, defined in
public static int models_mesh_picking()
{
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 800;
int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "raylib [models] example - mesh picking");
// Define the camera to look into our 3d world
Camera camera;
camera.position = (Vector3){ 20.0f, 20.0f, 20.0f }; // Camera position
camera.target = (Vector3){ 0.0f, 8.0f, 0.0f }; // Camera looking at point
camera.up = (Vector3){ 0.0f, 1.6f, 0.0f }; // Camera up vector (rotation towards target)
camera.fovy = 45.0f; // Camera field-of-view Y
camera.type = CAMERA_PERSPECTIVE; // Camera mode type
Ray ray; // Picking ray
Model tower = LoadModel("resources/models/turret.obj"); // Load OBJ model
Texture2D texture = LoadTexture("resources/models/turret_diffuse.png"); // Load model texture
tower.material.maps[MAP_DIFFUSE].texture = texture; // Set model diffuse texture
Vector3 towerPos = { 0.0f, 0.0f, 0.0f }; // Set model position
BoundingBox towerBBox = MeshBoundingBox(tower.mesh); // Get mesh bounding box
bool hitMeshBBox = false;
bool hitTriangle = false;
// Test triangle
Vector3 ta = (Vector3){ -25.0, 0.5, 0.0 };
Vector3 tb = (Vector3){ -4.0, 2.5, 1.0 };
Vector3 tc = (Vector3){ -8.0, 6.5, 0.0 };
Vector3 bary = { 0.0f, 0.0f, 0.0f };
SetCameraMode(camera, CAMERA_FREE); // Set a free camera mode
SetTargetFPS(60); // Set our game to run at 60 frames-per-second
//--------------------------------------------------------------------------------------
// Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key
{
// Update
//----------------------------------------------------------------------------------
UpdateCamera(&camera); // Update camera
// Display information about closest hit
RayHitInfo nearestHit;
char *hitObjectName = "None";
nearestHit.distance = FLT_MAX;
nearestHit.hit = false;
Color cursorColor = WHITE;
// Get ray and test against ground, triangle, and mesh
ray = GetMouseRay(GetMousePosition(), camera);
// Check ray collision aginst ground plane
RayHitInfo groundHitInfo = GetCollisionRayGround(ray, 0.0f);
if ((groundHitInfo.hit) && (groundHitInfo.distance < nearestHit.distance))
{
nearestHit = groundHitInfo;
cursorColor = GREEN;
hitObjectName = "Ground";
}
// Check ray collision against test triangle
RayHitInfo triHitInfo = GetCollisionRayTriangle(ray, ta, tb, tc);
if ((triHitInfo.hit) && (triHitInfo.distance < nearestHit.distance))
{
nearestHit = triHitInfo;
cursorColor = PURPLE;
hitObjectName = "Triangle";
bary = Vector3Barycenter(nearestHit.position, ta, tb, tc);
hitTriangle = true;
}
else hitTriangle = false;
RayHitInfo meshHitInfo;
// Check ray collision against bounding box first, before trying the full ray-mesh test
if (CheckCollisionRayBox(ray, towerBBox))
{
hitMeshBBox = true;
// Check ray collision against model
// NOTE: It considers model.transform matrix!
meshHitInfo = GetCollisionRayModel(ray, &tower);
if ((meshHitInfo.hit) && (meshHitInfo.distance < nearestHit.distance))
{
nearestHit = meshHitInfo;
cursorColor = ORANGE;
hitObjectName = "Mesh";
}
} hitMeshBBox = false;
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
ClearBackground(RAYWHITE);
BeginMode3D(camera);
// Draw the tower
// WARNING: If scale is different than 1.0f,
// not considered by GetCollisionRayModel()
DrawModel(tower, towerPos, 1.0f, WHITE);
// Draw the test triangle
DrawLine3D(ta, tb, PURPLE);
DrawLine3D(tb, tc, PURPLE);
DrawLine3D(tc, ta, PURPLE);
// Draw the mesh bbox if we hit it
if (hitMeshBBox) DrawBoundingBox(towerBBox, LIME);
// If we hit something, draw the cursor at the hit point
if (nearestHit.hit)
{
DrawCube(nearestHit.position, 0.3, 0.3, 0.3, cursorColor);
DrawCubeWires(nearestHit.position, 0.3, 0.3, 0.3, RED);
Vector3 normalEnd;
normalEnd.x = nearestHit.position.x + nearestHit.normal.x;
normalEnd.y = nearestHit.position.y + nearestHit.normal.y;
normalEnd.z = nearestHit.position.z + nearestHit.normal.z;
DrawLine3D(nearestHit.position, normalEnd, RED);
}
DrawRay(ray, MAROON);
DrawGrid(10, 10.0f);
EndMode3D();
// Draw some debug GUI text
DrawText(FormatText("Hit Object: %s", hitObjectName), 10, 50, 10, BLACK);
if (nearestHit.hit)
{
int ypos = 70;
DrawText(FormatText("Distance: %3.2f", nearestHit.distance), 10, ypos, 10, BLACK);
DrawText(FormatText("Hit Pos: %3.2f %3.2f %3.2f",
nearestHit.position.x,
nearestHit.position.y,
nearestHit.position.z), 10, ypos + 15, 10, BLACK);
DrawText(FormatText("Hit Norm: %3.2f %3.2f %3.2f",
nearestHit.normal.x,
nearestHit.normal.y,
nearestHit.normal.z), 10, ypos + 30, 10, BLACK);
if (hitTriangle) DrawText(FormatText("Barycenter: %3.2f %3.2f %3.2f", bary.x, bary.y, bary.z), 10, ypos + 45, 10, BLACK);
}
DrawText("Use Mouse to Move Camera", 10, 430, 10, GRAY);
DrawText("(c) Turret 3D model by Alberto Cano", screenWidth - 200, screenHeight - 20, 10, GRAY);
DrawFPS(10, 10);
EndDrawing();
//----------------------------------------------------------------------------------
}
// De-Initialization
//--------------------------------------------------------------------------------------
UnloadModel(tower); // Unload model
UnloadTexture(texture); // Unload texture
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
return 0;
}
+}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/models/models_obj_loading.c b/ExampleApplication/Examples/models/models_obj_loading.c
deleted file mode 100644
index 7ec2d3f..0000000
--- a/ExampleApplication/Examples/models/models_obj_loading.c
+++ /dev/null
@@ -1,80 +0,0 @@
-/*******************************************************************************************
-*
-* raylib [models] example - Load and draw a 3d model (OBJ)
-*
-* This example has been created using raylib 1.3 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
-*
-* Copyright (c) 2014 Ramon Santamaria (@raysan5)
-*
-********************************************************************************************/
-
-#include "raylib.h"
-
-int main()
-{
- // Initialization
- //--------------------------------------------------------------------------------------
- int screenWidth = 800;
- int screenHeight = 450;
-
- InitWindow(screenWidth, screenHeight, "raylib [models] example - obj model loading");
-
- // Define the camera to look into our 3d world
- Camera camera = { 0 };
- camera.position = (Vector3){ 8.0f, 8.0f, 8.0f }; // Camera position
- camera.target = (Vector3){ 0.0f, 2.5f, 0.0f }; // Camera looking at point
- camera.up = (Vector3){ 0.0f, 1.0f, 0.0f }; // Camera up vector (rotation towards target)
- camera.fovy = 45.0f; // Camera field-of-view Y
- camera.type = CAMERA_PERSPECTIVE; // Camera mode type
-
- Model model = LoadModel("resources/models/castle.obj"); // Load OBJ model
- Texture2D texture = LoadTexture("resources/models/castle_diffuse.png"); // Load model texture
- model.material.maps[MAP_DIFFUSE].texture = texture; // Set map diffuse texture
- Vector3 position = { 0.0f, 0.0f, 0.0f }; // Set model position
-
- SetTargetFPS(60); // Set our game to run at 60 frames-per-second
- //--------------------------------------------------------------------------------------
-
- // Main game loop
- while (!WindowShouldClose()) // Detect window close button or ESC key
- {
- // Update
- //----------------------------------------------------------------------------------
- //...
- //----------------------------------------------------------------------------------
-
- // Draw
- //----------------------------------------------------------------------------------
- BeginDrawing();
-
- ClearBackground(RAYWHITE);
-
- BeginMode3D(camera);
-
- DrawModel(model, position, 0.2f, WHITE); // Draw 3d model with texture
-
- DrawGrid(10, 1.0f); // Draw a grid
-
- DrawGizmo(position); // Draw gizmo
-
- EndMode3D();
-
- DrawText("(c) Castle 3D model by Alberto Cano", screenWidth - 200, screenHeight - 20, 10, GRAY);
-
- DrawFPS(10, 10);
-
- EndDrawing();
- //----------------------------------------------------------------------------------
- }
-
- // De-Initialization
- //--------------------------------------------------------------------------------------
- UnloadTexture(texture); // Unload texture
- UnloadModel(model); // Unload model
-
- CloseWindow(); // Close window and OpenGL context
- //--------------------------------------------------------------------------------------
-
- return 0;
-}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/models/models_obj_loading.cs b/ExampleApplication/Examples/models/models_obj_loading.cs
new file mode 100644
index 0000000..75cdf34
--- /dev/null
+++ b/ExampleApplication/Examples/models/models_obj_loading.cs
@@ -0,0 +1,8 @@
+
+using Raylib;
+using static Raylib.rl;
+
+public partial class Examples
+{
+ /*******************************************************************************************
*
* raylib [models] example - Load and draw a 3d model (OBJ)
*
* This example has been created using raylib 1.3 (www.raylib.com)
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
*
* Copyright (c) 2014 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
public static int models_obj_loading()
{
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 800;
int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "raylib [models] example - obj model loading");
// Define the camera to look into our 3d world
Camera camera = { 0 };
camera.position = (Vector3){ 8.0f, 8.0f, 8.0f }; // Camera position
camera.target = (Vector3){ 0.0f, 2.5f, 0.0f }; // Camera looking at point
camera.up = (Vector3){ 0.0f, 1.0f, 0.0f }; // Camera up vector (rotation towards target)
camera.fovy = 45.0f; // Camera field-of-view Y
camera.type = CAMERA_PERSPECTIVE; // Camera mode type
Model model = LoadModel("resources/models/castle.obj"); // Load OBJ model
Texture2D texture = LoadTexture("resources/models/castle_diffuse.png"); // Load model texture
model.material.maps[MAP_DIFFUSE].texture = texture; // Set map diffuse texture
Vector3 position = { 0.0f, 0.0f, 0.0f }; // Set model position
SetTargetFPS(60); // Set our game to run at 60 frames-per-second
//--------------------------------------------------------------------------------------
// Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key
{
// Update
//----------------------------------------------------------------------------------
//...
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
ClearBackground(RAYWHITE);
BeginMode3D(camera);
DrawModel(model, position, 0.2f, WHITE); // Draw 3d model with texture
DrawGrid(10, 1.0f); // Draw a grid
DrawGizmo(position); // Draw gizmo
EndMode3D();
DrawText("(c) Castle 3D model by Alberto Cano", screenWidth - 200, screenHeight - 20, 10, GRAY);
DrawFPS(10, 10);
EndDrawing();
//----------------------------------------------------------------------------------
}
// De-Initialization
//--------------------------------------------------------------------------------------
UnloadTexture(texture); // Unload texture
UnloadModel(model); // Unload model
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
return 0;
}
+}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/models/models_orthographic_projection.c b/ExampleApplication/Examples/models/models_orthographic_projection.c
deleted file mode 100644
index f9b54b6..0000000
--- a/ExampleApplication/Examples/models/models_orthographic_projection.c
+++ /dev/null
@@ -1,97 +0,0 @@
-/*******************************************************************************************
-*
-* raylib [models] example - Show the difference between perspective and orthographic projection
-*
-* This program is heavily based on the geometric objects example
-*
-* This example has been created using raylib 1.9.7 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
-*
-* Copyright (c) 2018 Max Danielsson & Ramon Santamaria (@raysan5)
-*
-********************************************************************************************/
-
-#include "raylib.h"
-
-#define FOVY_PERSPECTIVE 45.0f
-#define WIDTH_ORTHOGRAPHIC 10.0f
-
-int main()
-{
- // Initialization
- //--------------------------------------------------------------------------------------
- int screenWidth = 800;
- int screenHeight = 450;
-
- InitWindow(screenWidth, screenHeight, "raylib [models] example - geometric shapes");
-
- // Define the camera to look into our 3d world
- Camera camera = {{ 0.0f, 10.0f, 10.0f }, { 0.0f, 0.0f, 0.0f }, { 0.0f, 1.0f, 0.0f }, FOVY_PERSPECTIVE, CAMERA_PERSPECTIVE };
-
- SetTargetFPS(60); // Set our game to run at 60 frames-per-second
- //--------------------------------------------------------------------------------------
-
- // Main game loop
- while (!WindowShouldClose()) // Detect window close button or ESC key
- {
- // Update
- //----------------------------------------------------------------------------------
- if (IsKeyPressed(KEY_SPACE))
- {
- if (camera.type == CAMERA_PERSPECTIVE)
- {
- camera.fovy = WIDTH_ORTHOGRAPHIC;
- camera.type = CAMERA_ORTHOGRAPHIC;
- }
- else
- {
- camera.fovy = FOVY_PERSPECTIVE;
- camera.type = CAMERA_PERSPECTIVE;
- }
- }
- //----------------------------------------------------------------------------------
-
- // Draw
- //----------------------------------------------------------------------------------
- BeginDrawing();
-
- ClearBackground(RAYWHITE);
-
- BeginMode3D(camera);
-
- DrawCube((Vector3){-4.0f, 0.0f, 2.0f}, 2.0f, 5.0f, 2.0f, RED);
- DrawCubeWires((Vector3){-4.0f, 0.0f, 2.0f}, 2.0f, 5.0f, 2.0f, GOLD);
- DrawCubeWires((Vector3){-4.0f, 0.0f, -2.0f}, 3.0f, 6.0f, 2.0f, MAROON);
-
- DrawSphere((Vector3){-1.0f, 0.0f, -2.0f}, 1.0f, GREEN);
- DrawSphereWires((Vector3){1.0f, 0.0f, 2.0f}, 2.0f, 16, 16, LIME);
-
- DrawCylinder((Vector3){4.0f, 0.0f, -2.0f}, 1.0f, 2.0f, 3.0f, 4, SKYBLUE);
- DrawCylinderWires((Vector3){4.0f, 0.0f, -2.0f}, 1.0f, 2.0f, 3.0f, 4, DARKBLUE);
- DrawCylinderWires((Vector3){4.5f, -1.0f, 2.0f}, 1.0f, 1.0f, 2.0f, 6, BROWN);
-
- DrawCylinder((Vector3){1.0f, 0.0f, -4.0f}, 0.0f, 1.5f, 3.0f, 8, GOLD);
- DrawCylinderWires((Vector3){1.0f, 0.0f, -4.0f}, 0.0f, 1.5f, 3.0f, 8, PINK);
-
- DrawGrid(10, 1.0f); // Draw a grid
-
- EndMode3D();
-
- DrawText("Press Spacebar to switch camera type", 10, GetScreenHeight() - 30, 20, DARKGRAY);
-
- if (camera.type == CAMERA_ORTHOGRAPHIC) DrawText("ORTHOGRAPHIC", 10, 40, 20, BLACK);
- else if (camera.type == CAMERA_PERSPECTIVE) DrawText("PERSPECTIVE", 10, 40, 20, BLACK);
-
- DrawFPS(10, 10);
-
- EndDrawing();
- //----------------------------------------------------------------------------------
- }
-
- // De-Initialization
- //--------------------------------------------------------------------------------------
- CloseWindow(); // Close window and OpenGL context
- //--------------------------------------------------------------------------------------
-
- return 0;
-}
diff --git a/ExampleApplication/Examples/models/models_orthographic_projection.cs b/ExampleApplication/Examples/models/models_orthographic_projection.cs
new file mode 100644
index 0000000..da0c9b0
--- /dev/null
+++ b/ExampleApplication/Examples/models/models_orthographic_projection.cs
@@ -0,0 +1,8 @@
+
+using Raylib;
+using static Raylib.rl;
+
+public partial class Examples
+{
+ /*******************************************************************************************
*
* raylib [models] example - Show the difference between perspective and orthographic projection
*
* This program is heavily based on the geometric objects example
*
* This example has been created using raylib 1.9.7 (www.raylib.com)
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
*
* Copyright (c) 2018 Max Danielsson & Ramon Santamaria (@raysan5)
*
********************************************************************************************/
#define FOVY_PERSPECTIVE 45.0f
#define WIDTH_ORTHOGRAPHIC 10.0f
public static int models_orthographic_projection()
{
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 800;
int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "raylib [models] example - geometric shapes");
// Define the camera to look into our 3d world
Camera camera = {{ 0.0f, 10.0f, 10.0f }, { 0.0f, 0.0f, 0.0f }, { 0.0f, 1.0f, 0.0f }, FOVY_PERSPECTIVE, CAMERA_PERSPECTIVE };
SetTargetFPS(60); // Set our game to run at 60 frames-per-second
//--------------------------------------------------------------------------------------
// Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key
{
// Update
//----------------------------------------------------------------------------------
if (IsKeyPressed(KEY_SPACE))
{
if (camera.type == CAMERA_PERSPECTIVE)
{
camera.fovy = WIDTH_ORTHOGRAPHIC;
camera.type = CAMERA_ORTHOGRAPHIC;
}
else
{
camera.fovy = FOVY_PERSPECTIVE;
camera.type = CAMERA_PERSPECTIVE;
}
}
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
ClearBackground(RAYWHITE);
BeginMode3D(camera);
DrawCube((Vector3){-4.0f, 0.0f, 2.0f}, 2.0f, 5.0f, 2.0f, RED);
DrawCubeWires((Vector3){-4.0f, 0.0f, 2.0f}, 2.0f, 5.0f, 2.0f, GOLD);
DrawCubeWires((Vector3){-4.0f, 0.0f, -2.0f}, 3.0f, 6.0f, 2.0f, MAROON);
DrawSphere((Vector3){-1.0f, 0.0f, -2.0f}, 1.0f, GREEN);
DrawSphereWires((Vector3){1.0f, 0.0f, 2.0f}, 2.0f, 16, 16, LIME);
DrawCylinder((Vector3){4.0f, 0.0f, -2.0f}, 1.0f, 2.0f, 3.0f, 4, SKYBLUE);
DrawCylinderWires((Vector3){4.0f, 0.0f, -2.0f}, 1.0f, 2.0f, 3.0f, 4, DARKBLUE);
DrawCylinderWires((Vector3){4.5f, -1.0f, 2.0f}, 1.0f, 1.0f, 2.0f, 6, BROWN);
DrawCylinder((Vector3){1.0f, 0.0f, -4.0f}, 0.0f, 1.5f, 3.0f, 8, GOLD);
DrawCylinderWires((Vector3){1.0f, 0.0f, -4.0f}, 0.0f, 1.5f, 3.0f, 8, PINK);
DrawGrid(10, 1.0f); // Draw a grid
EndMode3D();
DrawText("Press Spacebar to switch camera type", 10, GetScreenHeight() - 30, 20, DARKGRAY);
if (camera.type == CAMERA_ORTHOGRAPHIC) DrawText("ORTHOGRAPHIC", 10, 40, 20, BLACK);
else if (camera.type == CAMERA_PERSPECTIVE) DrawText("PERSPECTIVE", 10, 40, 20, BLACK);
DrawFPS(10, 10);
EndDrawing();
//----------------------------------------------------------------------------------
}
// De-Initialization
//--------------------------------------------------------------------------------------
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
return 0;
}
+}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/models/models_skybox.c b/ExampleApplication/Examples/models/models_skybox.c
deleted file mode 100644
index 6f6002b..0000000
--- a/ExampleApplication/Examples/models/models_skybox.c
+++ /dev/null
@@ -1,90 +0,0 @@
-/*******************************************************************************************
-*
-* raylib [models] example - Skybox loading and drawing
-*
-* This example has been created using raylib 1.8 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
-*
-* Copyright (c) 2017 Ramon Santamaria (@raysan5)
-*
-********************************************************************************************/
-
-#include "raylib.h"
-
-int main()
-{
- // Initialization
- //--------------------------------------------------------------------------------------
- int screenWidth = 800;
- int screenHeight = 450;
-
- InitWindow(screenWidth, screenHeight, "raylib [models] example - skybox loading and drawing");
-
- // Define the camera to look into our 3d world
- Camera camera = {{ 1.0f, 1.0f, 1.0f }, { 0.0f, 0.0f, 0.0f }, { 0.0f, 1.0f, 0.0f }, 45.0f, 0 };
-
- // Load skybox model
- Mesh cube = GenMeshCube(1.0f, 1.0f, 1.0f);
- Model skybox = LoadModelFromMesh(cube);
-
- // Load skybox shader and set required locations
- // NOTE: Some locations are automatically set at shader loading
- skybox.material.shader = LoadShader("resources/shaders/skybox.vs", "resources/shaders/skybox.fs");
- SetShaderValuei(skybox.material.shader, GetShaderLocation(skybox.material.shader, "environmentMap"), (int[1]){ MAP_CUBEMAP }, 1);
-
- // Load cubemap shader and setup required shader locations
- Shader shdrCubemap = LoadShader("resources/shaders/cubemap.vs", "resources/shaders/cubemap.fs");
- SetShaderValuei(shdrCubemap, GetShaderLocation(shdrCubemap, "equirectangularMap"), (int[1]){ 0 }, 1);
-
- // Load HDR panorama (sphere) texture
- Texture2D texHDR = LoadTexture("resources/dresden_square.hdr");
-
- // Generate cubemap (texture with 6 quads-cube-mapping) from panorama HDR texture
- // NOTE: New texture is generated rendering to texture, shader computes the sphre->cube coordinates mapping
- skybox.material.maps[MAP_CUBEMAP].texture = GenTextureCubemap(shdrCubemap, texHDR, 512);
-
- UnloadTexture(texHDR); // Texture not required anymore, cubemap already generated
- UnloadShader(shdrCubemap); // Unload cubemap generation shader, not required anymore
-
- SetCameraMode(camera, CAMERA_FIRST_PERSON); // Set a first person camera mode
-
- SetTargetFPS(60); // Set our game to run at 60 frames-per-second
- //--------------------------------------------------------------------------------------
-
- // Main game loop
- while (!WindowShouldClose()) // Detect window close button or ESC key
- {
- // Update
- //----------------------------------------------------------------------------------
- UpdateCamera(&camera); // Update camera
- //----------------------------------------------------------------------------------
-
- // Draw
- //----------------------------------------------------------------------------------
- BeginDrawing();
-
- ClearBackground(RAYWHITE);
-
- BeginMode3D(camera);
-
- DrawModel(skybox, (Vector3){0, 0, 0}, 1.0f, WHITE);
-
- DrawGrid(10, 1.0f);
-
- EndMode3D();
-
- DrawFPS(10, 10);
-
- EndDrawing();
- //----------------------------------------------------------------------------------
- }
-
- // De-Initialization
- //--------------------------------------------------------------------------------------
- UnloadModel(skybox); // Unload skybox model (and textures)
-
- CloseWindow(); // Close window and OpenGL context
- //--------------------------------------------------------------------------------------
-
- return 0;
-}
diff --git a/ExampleApplication/Examples/models/models_skybox.cs b/ExampleApplication/Examples/models/models_skybox.cs
new file mode 100644
index 0000000..5ae07f4
--- /dev/null
+++ b/ExampleApplication/Examples/models/models_skybox.cs
@@ -0,0 +1,8 @@
+
+using Raylib;
+using static Raylib.rl;
+
+public partial class Examples
+{
+ /*******************************************************************************************
*
* raylib [models] example - Skybox loading and drawing
*
* This example has been created using raylib 1.8 (www.raylib.com)
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
*
* Copyright (c) 2017 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
public static int models_skybox()
{
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 800;
int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "raylib [models] example - skybox loading and drawing");
// Define the camera to look into our 3d world
Camera camera = {{ 1.0f, 1.0f, 1.0f }, { 0.0f, 0.0f, 0.0f }, { 0.0f, 1.0f, 0.0f }, 45.0f, 0 };
// Load skybox model
Mesh cube = GenMeshCube(1.0f, 1.0f, 1.0f);
Model skybox = LoadModelFromMesh(cube);
// Load skybox shader and set required locations
// NOTE: Some locations are automatically set at shader loading
skybox.material.shader = LoadShader("resources/shaders/skybox.vs", "resources/shaders/skybox.fs");
SetShaderValuei(skybox.material.shader, GetShaderLocation(skybox.material.shader, "environmentMap"), (int[1]){ MAP_CUBEMAP }, 1);
// Load cubemap shader and setup required shader locations
Shader shdrCubemap = LoadShader("resources/shaders/cubemap.vs", "resources/shaders/cubemap.fs");
SetShaderValuei(shdrCubemap, GetShaderLocation(shdrCubemap, "equirectangularMap"), (int[1]){ 0 }, 1);
// Load HDR panorama (sphere) texture
Texture2D texHDR = LoadTexture("resources/dresden_square.hdr");
// Generate cubemap (texture with 6 quads-cube-mapping) from panorama HDR texture
// NOTE: New texture is generated rendering to texture, shader computes the sphre->cube coordinates mapping
skybox.material.maps[MAP_CUBEMAP].texture = GenTextureCubemap(shdrCubemap, texHDR, 512);
UnloadTexture(texHDR); // Texture not required anymore, cubemap already generated
UnloadShader(shdrCubemap); // Unload cubemap generation shader, not required anymore
SetCameraMode(camera, CAMERA_FIRST_PERSON); // Set a first person camera mode
SetTargetFPS(60); // Set our game to run at 60 frames-per-second
//--------------------------------------------------------------------------------------
// Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key
{
// Update
//----------------------------------------------------------------------------------
UpdateCamera(&camera); // Update camera
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
ClearBackground(RAYWHITE);
BeginMode3D(camera);
DrawModel(skybox, (Vector3){0, 0, 0}, 1.0f, WHITE);
DrawGrid(10, 1.0f);
EndMode3D();
DrawFPS(10, 10);
EndDrawing();
//----------------------------------------------------------------------------------
}
// De-Initialization
//--------------------------------------------------------------------------------------
UnloadModel(skybox); // Unload skybox model (and textures)
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
return 0;
}
+}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/models/models_yaw_pitch_roll.c b/ExampleApplication/Examples/models/models_yaw_pitch_roll.c
deleted file mode 100644
index 0dcf8c7..0000000
--- a/ExampleApplication/Examples/models/models_yaw_pitch_roll.c
+++ /dev/null
@@ -1,199 +0,0 @@
-/*******************************************************************************************
-*
-* raylib [models] example - Plane rotations (yaw, pitch, roll)
-*
-* This example has been created using raylib 1.8 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
-*
-* Example based on Berni work on Raspberry Pi:
-* http://forum.raylib.com/index.php?p=/discussion/124/line-versus-triangle-drawing-order
-*
-* Copyright (c) 2017 Ramon Santamaria (@raysan5)
-*
-********************************************************************************************/
-
-#include "raylib.h"
-#include "raymath.h"
-
-// Draw angle gauge controls
-void DrawAngleGauge(Texture2D angleGauge, int x, int y, float angle, char title[], Color color);
-
-//----------------------------------------------------------------------------------
-// Main entry point
-//----------------------------------------------------------------------------------
-int main()
-{
- // Initialization
- //--------------------------------------------------------------------------------------
- const int screenWidth = 800;
- const int screenHeight = 450;
-
- InitWindow(screenWidth, screenHeight, "raylib [models] example - plane rotations (yaw, pitch, roll)");
-
- Texture2D texAngleGauge = LoadTexture("resources/angle_gauge.png");
- Texture2D texBackground = LoadTexture("resources/background.png");
- Texture2D texPitch = LoadTexture("resources/pitch.png");
- Texture2D texPlane = LoadTexture("resources/plane.png");
-
- RenderTexture2D framebuffer = LoadRenderTexture(192, 192);
-
- // Model loading
- Model model = LoadModel("resources/plane.obj"); // Load OBJ model
- model.material.maps[MAP_DIFFUSE].texture = LoadTexture("resources/plane_diffuse.png"); // Set map diffuse texture
-
- GenTextureMipmaps(&model.material.maps[MAP_DIFFUSE].texture);
-
- Camera camera = { 0 };
- camera.position = (Vector3){ 0.0f, 60.0f, -120.0f };// Camera position perspective
- camera.target = (Vector3){ 0.0f, 12.0f, 0.0f }; // Camera looking at point
- camera.up = (Vector3){ 0.0f, 1.0f, 0.0f }; // Camera up vector (rotation towards target)
- camera.fovy = 30.0f; // Camera field-of-view Y
- camera.type = CAMERA_PERSPECTIVE; // Camera type
-
- float pitch = 0.0f;
- float roll = 0.0f;
- float yaw = 0.0f;
-
- SetTargetFPS(60);
- //--------------------------------------------------------------------------------------
-
-
- while (!WindowShouldClose()) // Detect window close button or ESC key
- {
- // Update
- //----------------------------------------------------------------------------------
-
- // Plane roll (x-axis) controls
- if (IsKeyDown(KEY_LEFT)) roll += 1.0f;
- else if (IsKeyDown(KEY_RIGHT)) roll -= 1.0f;
- else
- {
- if (roll > 0.0f) roll -= 0.5f;
- else if (roll < 0.0f) roll += 0.5f;
- }
-
- // Plane yaw (y-axis) controls
- if (IsKeyDown(KEY_S)) yaw += 1.0f;
- else if (IsKeyDown(KEY_A)) yaw -= 1.0f;
- else
- {
- if (yaw > 0.0f) yaw -= 0.5f;
- else if (yaw < 0.0f) yaw += 0.5f;
- }
-
- // Plane pitch (z-axis) controls
- if (IsKeyDown(KEY_DOWN)) pitch += 0.6f;
- else if (IsKeyDown(KEY_UP)) pitch -= 0.6f;
- else
- {
- if (pitch > 0.3f) pitch -= 0.3f;
- else if (pitch < -0.3f) pitch += 0.3f;
- }
-
- // Wraps the phase of an angle to fit between -180 and +180 degrees
- int pitchOffset = pitch;
- while (pitchOffset > 180) pitchOffset -= 360;
- while (pitchOffset < -180) pitchOffset += 360;
- pitchOffset *= 10;
-
- Matrix transform = MatrixIdentity();
-
- transform = MatrixMultiply(transform, MatrixRotateZ(DEG2RAD*roll));
- transform = MatrixMultiply(transform, MatrixRotateX(DEG2RAD*pitch));
- transform = MatrixMultiply(transform, MatrixRotateY(DEG2RAD*yaw));
-
- model.transform = transform;
- //----------------------------------------------------------------------------------
-
- // Draw
- //----------------------------------------------------------------------------------
- BeginDrawing();
-
- ClearBackground(RAYWHITE);
-
- // Draw framebuffer texture (Ahrs Display)
- int centerX = framebuffer.texture.width/2;
- int centerY = framebuffer.texture.height/2;
- float scaleFactor = 0.5f;
-
- BeginTextureMode(framebuffer);
-
- BeginBlendMode(BLEND_ALPHA);
-
- DrawTexturePro(texBackground, (Rectangle){ 0, 0, texBackground.width, texBackground.height },
- (Rectangle){ centerX, centerY, texBackground.width*scaleFactor, texBackground.height*scaleFactor},
- (Vector2){ texBackground.width/2*scaleFactor, texBackground.height/2*scaleFactor + pitchOffset*scaleFactor }, roll, WHITE);
-
- DrawTexturePro(texPitch, (Rectangle){ 0, 0, texPitch.width, texPitch.height },
- (Rectangle){ centerX, centerY, texPitch.width*scaleFactor, texPitch.height*scaleFactor },
- (Vector2){ texPitch.width/2*scaleFactor, texPitch.height/2*scaleFactor + pitchOffset*scaleFactor }, roll, WHITE);
-
- DrawTexturePro(texPlane, (Rectangle){ 0, 0, texPlane.width, texPlane.height },
- (Rectangle){ centerX, centerY, texPlane.width*scaleFactor, texPlane.height*scaleFactor },
- (Vector2){ texPlane.width/2*scaleFactor, texPlane.height/2*scaleFactor }, 0, WHITE);
-
- EndBlendMode();
-
- EndTextureMode();
-
- // Draw 3D model (recomended to draw 3D always before 2D)
- BeginMode3D(camera);
-
- DrawModel(model, (Vector3){ 0, 6.0f, 0 }, 1.0f, WHITE); // Draw 3d model with texture
- DrawGrid(10, 10.0f);
-
- EndMode3D();
-
- // Draw 2D GUI stuff
- DrawAngleGauge(texAngleGauge, 80, 70, roll, "roll", RED);
- DrawAngleGauge(texAngleGauge, 190, 70, pitch, "pitch", GREEN);
- DrawAngleGauge(texAngleGauge, 300, 70, yaw, "yaw", SKYBLUE);
-
- DrawRectangle(30, 360, 260, 70, Fade(SKYBLUE, 0.5f));
- DrawRectangleLines(30, 360, 260, 70, Fade(DARKBLUE, 0.5f));
- DrawText("Pitch controlled with: KEY_UP / KEY_DOWN", 40, 370, 10, DARKGRAY);
- DrawText("Roll controlled with: KEY_LEFT / KEY_RIGHT", 40, 390, 10, DARKGRAY);
- DrawText("Yaw controlled with: KEY_A / KEY_S", 40, 410, 10, DARKGRAY);
-
- // Draw framebuffer texture
- DrawTextureRec(framebuffer.texture, (Rectangle){ 0, 0, framebuffer.texture.width, -framebuffer.texture.height },
- (Vector2){ screenWidth - framebuffer.texture.width - 20, 20 }, Fade(WHITE, 0.8f));
-
- DrawRectangleLines(screenWidth - framebuffer.texture.width - 20, 20, framebuffer.texture.width, framebuffer.texture.height, DARKGRAY);
-
- EndDrawing();
- //----------------------------------------------------------------------------------
- }
-
- // De-Initialization
- //--------------------------------------------------------------------------------------
-
- // Unload all loaded data
- UnloadModel(model);
-
- UnloadRenderTexture(framebuffer);
-
- UnloadTexture(texAngleGauge);
- UnloadTexture(texBackground);
- UnloadTexture(texPitch);
- UnloadTexture(texPlane);
-
- CloseWindow(); // Close window and OpenGL context
- //--------------------------------------------------------------------------------------
-
- return 0;
-}
-
-// Draw angle gauge controls
-void DrawAngleGauge(Texture2D angleGauge, int x, int y, float angle, char title[], Color color)
-{
- Rectangle srcRec = { 0, 0, angleGauge.width, angleGauge.height };
- Rectangle dstRec = { x, y, angleGauge.width, angleGauge.height };
- Vector2 origin = { angleGauge.width/2, angleGauge.height/2};
- int textSize = 20;
-
- DrawTexturePro(angleGauge, srcRec, dstRec, origin, angle, color);
-
- DrawText(FormatText("%5.1f", angle), x - MeasureText(FormatText("%5.1f", angle), textSize) / 2, y + 10, textSize, DARKGRAY);
- DrawText(title, x - MeasureText(title, textSize) / 2, y + 60, textSize, DARKGRAY);
-}
diff --git a/ExampleApplication/Examples/models/models_yaw_pitch_roll.cs b/ExampleApplication/Examples/models/models_yaw_pitch_roll.cs
new file mode 100644
index 0000000..7633439
--- /dev/null
+++ b/ExampleApplication/Examples/models/models_yaw_pitch_roll.cs
@@ -0,0 +1,8 @@
+
+using Raylib;
+using static Raylib.rl;
+
+public partial class Examples
+{
+ /*******************************************************************************************
*
* raylib [models] example - Plane rotations (yaw, pitch, roll)
*
* This example has been created using raylib 1.8 (www.raylib.com)
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
*
* Example based on Berni work on Raspberry Pi:
* http://forum.raylib.com/index.php?p=/discussion/124/line-versus-triangle-drawing-order
*
* Copyright (c) 2017 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
#include "raymath.h"
// Draw angle gauge controls
void DrawAngleGauge(Texture2D angleGauge, int x, int y, float angle, char title[], Color color);
//----------------------------------------------------------------------------------
// Main entry point
//----------------------------------------------------------------------------------
public static int models_yaw_pitch_roll()
{
// Initialization
//--------------------------------------------------------------------------------------
const int screenWidth = 800;
const int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "raylib [models] example - plane rotations (yaw, pitch, roll)");
Texture2D texAngleGauge = LoadTexture("resources/angle_gauge.png");
Texture2D texBackground = LoadTexture("resources/background.png");
Texture2D texPitch = LoadTexture("resources/pitch.png");
Texture2D texPlane = LoadTexture("resources/plane.png");
RenderTexture2D framebuffer = LoadRenderTexture(192, 192);
// Model loading
Model model = LoadModel("resources/plane.obj"); // Load OBJ model
model.material.maps[MAP_DIFFUSE].texture = LoadTexture("resources/plane_diffuse.png"); // Set map diffuse texture
GenTextureMipmaps(&model.material.maps[MAP_DIFFUSE].texture);
Camera camera = { 0 };
camera.position = (Vector3){ 0.0f, 60.0f, -120.0f };// Camera position perspective
camera.target = (Vector3){ 0.0f, 12.0f, 0.0f }; // Camera looking at point
camera.up = (Vector3){ 0.0f, 1.0f, 0.0f }; // Camera up vector (rotation towards target)
camera.fovy = 30.0f; // Camera field-of-view Y
camera.type = CAMERA_PERSPECTIVE; // Camera type
float pitch = 0.0f;
float roll = 0.0f;
float yaw = 0.0f;
SetTargetFPS(60);
//--------------------------------------------------------------------------------------
while (!WindowShouldClose()) // Detect window close button or ESC key
{
// Update
//----------------------------------------------------------------------------------
// Plane roll (x-axis) controls
if (IsKeyDown(KEY_LEFT)) roll += 1.0f;
else if (IsKeyDown(KEY_RIGHT)) roll -= 1.0f;
else
{
if (roll > 0.0f) roll -= 0.5f;
else if (roll < 0.0f) roll += 0.5f;
}
// Plane yaw (y-axis) controls
if (IsKeyDown(KEY_S)) yaw += 1.0f;
else if (IsKeyDown(KEY_A)) yaw -= 1.0f;
else
{
if (yaw > 0.0f) yaw -= 0.5f;
else if (yaw < 0.0f) yaw += 0.5f;
}
// Plane pitch (z-axis) controls
if (IsKeyDown(KEY_DOWN)) pitch += 0.6f;
else if (IsKeyDown(KEY_UP)) pitch -= 0.6f;
else
{
if (pitch > 0.3f) pitch -= 0.3f;
else if (pitch < -0.3f) pitch += 0.3f;
}
// Wraps the phase of an angle to fit between -180 and +180 degrees
int pitchOffset = pitch;
while (pitchOffset > 180) pitchOffset -= 360;
while (pitchOffset < -180) pitchOffset += 360;
pitchOffset *= 10;
Matrix transform = MatrixIdentity();
transform = MatrixMultiply(transform, MatrixRotateZ(DEG2RAD*roll));
transform = MatrixMultiply(transform, MatrixRotateX(DEG2RAD*pitch));
transform = MatrixMultiply(transform, MatrixRotateY(DEG2RAD*yaw));
model.transform = transform;
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
ClearBackground(RAYWHITE);
// Draw framebuffer texture (Ahrs Display)
int centerX = framebuffer.texture.width/2;
int centerY = framebuffer.texture.height/2;
float scaleFactor = 0.5f;
BeginTextureMode(framebuffer);
BeginBlendMode(BLEND_ALPHA);
DrawTexturePro(texBackground, (Rectangle){ 0, 0, texBackground.width, texBackground.height },
(Rectangle){ centerX, centerY, texBackground.width*scaleFactor, texBackground.height*scaleFactor},
(Vector2){ texBackground.width/2*scaleFactor, texBackground.height/2*scaleFactor + pitchOffset*scaleFactor }, roll, WHITE);
DrawTexturePro(texPitch, (Rectangle){ 0, 0, texPitch.width, texPitch.height },
(Rectangle){ centerX, centerY, texPitch.width*scaleFactor, texPitch.height*scaleFactor },
(Vector2){ texPitch.width/2*scaleFactor, texPitch.height/2*scaleFactor + pitchOffset*scaleFactor }, roll, WHITE);
DrawTexturePro(texPlane, (Rectangle){ 0, 0, texPlane.width, texPlane.height },
(Rectangle){ centerX, centerY, texPlane.width*scaleFactor, texPlane.height*scaleFactor },
(Vector2){ texPlane.width/2*scaleFactor, texPlane.height/2*scaleFactor }, 0, WHITE);
EndBlendMode();
EndTextureMode();
// Draw 3D model (recomended to draw 3D always before 2D)
BeginMode3D(camera);
DrawModel(model, (Vector3){ 0, 6.0f, 0 }, 1.0f, WHITE); // Draw 3d model with texture
DrawGrid(10, 10.0f);
EndMode3D();
// Draw 2D GUI stuff
DrawAngleGauge(texAngleGauge, 80, 70, roll, "roll", RED);
DrawAngleGauge(texAngleGauge, 190, 70, pitch, "pitch", GREEN);
DrawAngleGauge(texAngleGauge, 300, 70, yaw, "yaw", SKYBLUE);
DrawRectangle(30, 360, 260, 70, Fade(SKYBLUE, 0.5f));
DrawRectangleLines(30, 360, 260, 70, Fade(DARKBLUE, 0.5f));
DrawText("Pitch controlled with: KEY_UP / KEY_DOWN", 40, 370, 10, DARKGRAY);
DrawText("Roll controlled with: KEY_LEFT / KEY_RIGHT", 40, 390, 10, DARKGRAY);
DrawText("Yaw controlled with: KEY_A / KEY_S", 40, 410, 10, DARKGRAY);
// Draw framebuffer texture
DrawTextureRec(framebuffer.texture, (Rectangle){ 0, 0, framebuffer.texture.width, -framebuffer.texture.height },
(Vector2){ screenWidth - framebuffer.texture.width - 20, 20 }, Fade(WHITE, 0.8f));
DrawRectangleLines(screenWidth - framebuffer.texture.width - 20, 20, framebuffer.texture.width, framebuffer.texture.height, DARKGRAY);
EndDrawing();
//----------------------------------------------------------------------------------
}
// De-Initialization
//--------------------------------------------------------------------------------------
// Unload all loaded data
UnloadModel(model);
UnloadRenderTexture(framebuffer);
UnloadTexture(texAngleGauge);
UnloadTexture(texBackground);
UnloadTexture(texPitch);
UnloadTexture(texPlane);
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
return 0;
}
// Draw angle gauge controls
void DrawAngleGauge(Texture2D angleGauge, int x, int y, float angle, char title[], Color color)
{
Rectangle srcRec = { 0, 0, angleGauge.width, angleGauge.height };
Rectangle dstRec = { x, y, angleGauge.width, angleGauge.height };
Vector2 origin = { angleGauge.width/2, angleGauge.height/2};
int textSize = 20;
DrawTexturePro(angleGauge, srcRec, dstRec, origin, angle, color);
DrawText(FormatText("%5.1f", angle), x - MeasureText(FormatText("%5.1f", angle), textSize) / 2, y + 10, textSize, DARKGRAY);
DrawText(title, x - MeasureText(title, textSize) / 2, y + 60, textSize, DARKGRAY);
}
+}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/models/rlights.h b/ExampleApplication/Examples/models/rlights.h
deleted file mode 100644
index 0da3e2c..0000000
--- a/ExampleApplication/Examples/models/rlights.h
+++ /dev/null
@@ -1,177 +0,0 @@
-/**********************************************************************************************
-*
-* raylib.lights - Some useful functions to deal with lights data
-*
-* CONFIGURATION:
-*
-* #define RLIGHTS_IMPLEMENTATION
-* Generates the implementation of the library into the included file.
-* If not defined, the library is in header only mode and can be included in other headers
-* or source files without problems. But only ONE file should hold the implementation.
-*
-* LICENSE: zlib/libpng
-*
-* Copyright (c) 2017 Victor Fisac and Ramon Santamaria
-*
-* This software is provided "as-is", without any express or implied warranty. In no event
-* will the authors be held liable for any damages arising from the use of this software.
-*
-* Permission is granted to anyone to use this software for any purpose, including commercial
-* applications, and to alter it and redistribute it freely, subject to the following restrictions:
-*
-* 1. The origin of this software must not be misrepresented; you must not claim that you
-* wrote the original software. If you use this software in a product, an acknowledgment
-* in the product documentation would be appreciated but is not required.
-*
-* 2. Altered source versions must be plainly marked as such, and must not be misrepresented
-* as being the original software.
-*
-* 3. This notice may not be removed or altered from any source distribution.
-*
-**********************************************************************************************/
-
-#ifndef RLIGHTS_H
-#define RLIGHTS_H
-
-//----------------------------------------------------------------------------------
-// Defines and Macros
-//----------------------------------------------------------------------------------
-#define MAX_LIGHTS 4 // Max lights supported by shader
-#define LIGHT_DISTANCE 3.5f // Light distance from world center
-#define LIGHT_HEIGHT 1.0f // Light height position
-
-//----------------------------------------------------------------------------------
-// Types and Structures Definition
-//----------------------------------------------------------------------------------
-typedef enum {
- LIGHT_DIRECTIONAL,
- LIGHT_POINT
-} LightType;
-
-typedef struct {
- bool enabled;
- LightType type;
- Vector3 position;
- Vector3 target;
- Color color;
- int enabledLoc;
- int typeLoc;
- int posLoc;
- int targetLoc;
- int colorLoc;
-} Light;
-
-#ifdef __cplusplus
-extern "C" { // Prevents name mangling of functions
-#endif
-
-//----------------------------------------------------------------------------------
-// Global Variables Definition
-//----------------------------------------------------------------------------------
-int lightsCount = 0; // Current amount of created lights
-
-//----------------------------------------------------------------------------------
-// Module Functions Declaration
-//----------------------------------------------------------------------------------
-Light CreateLight(int type, Vector3 pos, Vector3 targ, Color color, Shader shader); // Defines a light and get locations from PBR shader
-void UpdateLightValues(Shader shader, Light light); // Send to PBR shader light values
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif // RLIGHTS_H
-
-
-/***********************************************************************************
-*
-* RLIGHTS IMPLEMENTATION
-*
-************************************************************************************/
-
-#if defined(RLIGHTS_IMPLEMENTATION)
-
-#include "raylib.h"
-
-//----------------------------------------------------------------------------------
-// Defines and Macros
-//----------------------------------------------------------------------------------
-// ...
-
-//----------------------------------------------------------------------------------
-// Types and Structures Definition
-//----------------------------------------------------------------------------------
-// ...
-
-//----------------------------------------------------------------------------------
-// Global Variables Definition
-//----------------------------------------------------------------------------------
-// ...
-
-//----------------------------------------------------------------------------------
-// Module specific Functions Declaration
-//----------------------------------------------------------------------------------
-// ...
-
-//----------------------------------------------------------------------------------
-// Module Functions Definition
-//----------------------------------------------------------------------------------
-
-// Defines a light and get locations from PBR shader
-Light CreateLight(int type, Vector3 pos, Vector3 targ, Color color, Shader shader)
-{
- Light light = { 0 };
-
- if (lightsCount < MAX_LIGHTS)
- {
- light.enabled = true;
- light.type = type;
- light.position = pos;
- light.target = targ;
- light.color = color;
-
- char enabledName[32] = "lights[x].enabled\0";
- char typeName[32] = "lights[x].type\0";
- char posName[32] = "lights[x].position\0";
- char targetName[32] = "lights[x].target\0";
- char colorName[32] = "lights[x].color\0";
- enabledName[7] = '0' + lightsCount;
- typeName[7] = '0' + lightsCount;
- posName[7] = '0' + lightsCount;
- targetName[7] = '0' + lightsCount;
- colorName[7] = '0' + lightsCount;
-
- light.enabledLoc = GetShaderLocation(shader, enabledName);
- light.typeLoc = GetShaderLocation(shader, typeName);
- light.posLoc = GetShaderLocation(shader, posName);
- light.targetLoc = GetShaderLocation(shader, targetName);
- light.colorLoc = GetShaderLocation(shader, colorName);
-
- UpdateLightValues(shader, light);
- lightsCount++;
- }
-
- return light;
-}
-
-// Send to PBR shader light values
-void UpdateLightValues(Shader shader, Light light)
-{
- // Send to shader light enabled state and type
- SetShaderValuei(shader, light.enabledLoc, (int[1]){ light.enabled }, 1);
- SetShaderValuei(shader, light.typeLoc, (int[1]){ light.type }, 1);
-
- // Send to shader light position values
- float position[3] = { light.position.x, light.position.y, light.position.z };
- SetShaderValue(shader, light.posLoc, position, 3);
-
- // Send to shader light target position values
- float target[3] = { light.target.x, light.target.y, light.target.z };
- SetShaderValue(shader, light.targetLoc, target, 3);
-
- // Send to shader light color values
- float diff[4] = { (float)light.color.r/(float)255, (float)light.color.g/(float)255, (float)light.color.b/(float)255, (float)light.color.a/(float)255 };
- SetShaderValue(shader, light.colorLoc, diff, 4);
-}
-
-#endif // RLIGHTS_IMPLEMENTATION
\ No newline at end of file
diff --git a/ExampleApplication/Examples/physac/physics_demo.c b/ExampleApplication/Examples/physac/physics_demo.c
deleted file mode 100644
index 273b993..0000000
--- a/ExampleApplication/Examples/physac/physics_demo.c
+++ /dev/null
@@ -1,137 +0,0 @@
-/*******************************************************************************************
-*
-* Physac - Physics demo
-*
-* NOTE 1: Physac requires multi-threading, when InitPhysics() a second thread is created to manage physics calculations.
-* NOTE 2: Physac requires static C library linkage to avoid dependency on MinGW DLL (-static -lpthread)
-*
-* Use the following line to compile:
-*
-* gcc -o $(NAME_PART).exe $(FILE_NAME) -s $(RAYLIB_DIR)\raylib\raylib.rc.o -static -lraylib -lpthread
-* -lglfw3 -lopengl32 -lgdi32 -lopenal32 -lwinmm -std=c99 -Wl,--subsystem,windows -Wl,-allow-multiple-definition
-*
-* Copyright (c) 2016-2018 Victor Fisac
-*
-********************************************************************************************/
-
-#include "raylib.h"
-
-#define PHYSAC_IMPLEMENTATION
-#include "physac.h"
-
-int main()
-{
- // Initialization
- //--------------------------------------------------------------------------------------
- int screenWidth = 800;
- int screenHeight = 450;
-
- SetConfigFlags(FLAG_MSAA_4X_HINT);
- InitWindow(screenWidth, screenHeight, "Physac [raylib] - Physics demo");
-
- // Physac logo drawing position
- int logoX = screenWidth - MeasureText("Physac", 30) - 10;
- int logoY = 15;
- bool needsReset = false;
-
- // Initialize physics and default physics bodies
- InitPhysics();
-
- // Create floor rectangle physics body
- PhysicsBody floor = CreatePhysicsBodyRectangle((Vector2){ screenWidth/2, screenHeight }, 500, 100, 10);
- floor->enabled = false; // Disable body state to convert it to static (no dynamics, but collisions)
-
- // Create obstacle circle physics body
- PhysicsBody circle = CreatePhysicsBodyCircle((Vector2){ screenWidth/2, screenHeight/2 }, 45, 10);
- circle->enabled = false; // Disable body state to convert it to static (no dynamics, but collisions)
-
- SetTargetFPS(60);
- //--------------------------------------------------------------------------------------
-
- // Main game loop
- while (!WindowShouldClose()) // Detect window close button or ESC key
- {
- // Update
- //----------------------------------------------------------------------------------
- // Delay initialization of variables due to physics reset async
- if (needsReset)
- {
- floor = CreatePhysicsBodyRectangle((Vector2){ screenWidth/2, screenHeight }, 500, 100, 10);
- floor->enabled = false;
-
- circle = CreatePhysicsBodyCircle((Vector2){ screenWidth/2, screenHeight/2 }, 45, 10);
- circle->enabled = false;
- }
-
- // Reset physics input
- if (IsKeyPressed('R'))
- {
- ResetPhysics();
- needsReset = true;
- }
-
- // Physics body creation inputs
- if (IsMouseButtonPressed(MOUSE_LEFT_BUTTON)) CreatePhysicsBodyPolygon(GetMousePosition(), GetRandomValue(20, 80), GetRandomValue(3, 8), 10);
- else if (IsMouseButtonPressed(MOUSE_RIGHT_BUTTON)) CreatePhysicsBodyCircle(GetMousePosition(), GetRandomValue(10, 45), 10);
-
- // Destroy falling physics bodies
- int bodiesCount = GetPhysicsBodiesCount();
- for (int i = bodiesCount - 1; i >= 0; i--)
- {
- PhysicsBody body = GetPhysicsBody(i);
- if (body != NULL && (body->position.y > screenHeight*2)) DestroyPhysicsBody(body);
- }
- //----------------------------------------------------------------------------------
-
- // Draw
- //----------------------------------------------------------------------------------
- BeginDrawing();
-
- ClearBackground(BLACK);
-
- DrawFPS(screenWidth - 90, screenHeight - 30);
-
- // Draw created physics bodies
- bodiesCount = GetPhysicsBodiesCount();
- for (int i = 0; i < bodiesCount; i++)
- {
- PhysicsBody body = GetPhysicsBody(i);
-
- if (body != NULL)
- {
- int vertexCount = GetPhysicsShapeVerticesCount(i);
- for (int j = 0; j < vertexCount; j++)
- {
- // Get physics bodies shape vertices to draw lines
- // Note: GetPhysicsShapeVertex() already calculates rotation transformations
- Vector2 vertexA = GetPhysicsShapeVertex(body, j);
-
- int jj = (((j + 1) < vertexCount) ? (j + 1) : 0); // Get next vertex or first to close the shape
- Vector2 vertexB = GetPhysicsShapeVertex(body, jj);
-
- DrawLineV(vertexA, vertexB, GREEN); // Draw a line between two vertex positions
- }
- }
- }
-
- DrawText("Left mouse button to create a polygon", 10, 10, 10, WHITE);
- DrawText("Right mouse button to create a circle", 10, 25, 10, WHITE);
- DrawText("Press 'R' to reset example", 10, 40, 10, WHITE);
-
- DrawText("Physac", logoX, logoY, 30, WHITE);
- DrawText("Powered by", logoX + 50, logoY - 7, 10, WHITE);
-
- EndDrawing();
- //----------------------------------------------------------------------------------
- }
-
- // De-Initialization
- //--------------------------------------------------------------------------------------
- ClosePhysics(); // Unitialize physics
-
- CloseWindow(); // Close window and OpenGL context
- //--------------------------------------------------------------------------------------
-
- return 0;
-}
-
diff --git a/ExampleApplication/Examples/physac/physics_demo.cs b/ExampleApplication/Examples/physac/physics_demo.cs
new file mode 100644
index 0000000..6cdf35c
--- /dev/null
+++ b/ExampleApplication/Examples/physac/physics_demo.cs
@@ -0,0 +1,8 @@
+
+using Raylib;
+using static Raylib.rl;
+
+public partial class Examples
+{
+ /*******************************************************************************************
*
* Physac - Physics demo
*
* NOTE 1: Physac requires multi-threading, when InitPhysics() a second thread is created to manage physics calculations.
* NOTE 2: Physac requires static C library linkage to avoid dependency on MinGW DLL (-static -lpthread)
*
* Use the following line to compile:
*
* gcc -o $(NAME_PART).exe $(FILE_NAME) -s $(RAYLIB_DIR)\raylib\raylib.rc.o -static -lraylib -lpthread
* -lglfw3 -lopengl32 -lgdi32 -lopenal32 -lwinmm -std=c99 -Wl,--subsystem,windows -Wl,-allow-multiple-definition
*
* Copyright (c) 2016-2018 Victor Fisac
*
********************************************************************************************/
#define PHYSAC_IMPLEMENTATION
#include "physac.h"
public static int physics_demo()
{
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 800;
int screenHeight = 450;
SetConfigFlags(FLAG_MSAA_4X_HINT);
InitWindow(screenWidth, screenHeight, "Physac [raylib] - Physics demo");
// Physac logo drawing position
int logoX = screenWidth - MeasureText("Physac", 30) - 10;
int logoY = 15;
bool needsReset = false;
// Initialize physics and default physics bodies
InitPhysics();
// Create floor rectangle physics body
PhysicsBody floor = CreatePhysicsBodyRectangle((Vector2){ screenWidth/2, screenHeight }, 500, 100, 10);
floor->enabled = false; // Disable body state to convert it to static (no dynamics, but collisions)
// Create obstacle circle physics body
PhysicsBody circle = CreatePhysicsBodyCircle((Vector2){ screenWidth/2, screenHeight/2 }, 45, 10);
circle->enabled = false; // Disable body state to convert it to static (no dynamics, but collisions)
SetTargetFPS(60);
//--------------------------------------------------------------------------------------
// Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key
{
// Update
//----------------------------------------------------------------------------------
// Delay initialization of variables due to physics reset async
if (needsReset)
{
floor = CreatePhysicsBodyRectangle((Vector2){ screenWidth/2, screenHeight }, 500, 100, 10);
floor->enabled = false;
circle = CreatePhysicsBodyCircle((Vector2){ screenWidth/2, screenHeight/2 }, 45, 10);
circle->enabled = false;
}
// Reset physics input
if (IsKeyPressed('R'))
{
ResetPhysics();
needsReset = true;
}
// Physics body creation inputs
if (IsMouseButtonPressed(MOUSE_LEFT_BUTTON)) CreatePhysicsBodyPolygon(GetMousePosition(), GetRandomValue(20, 80), GetRandomValue(3, 8), 10);
else if (IsMouseButtonPressed(MOUSE_RIGHT_BUTTON)) CreatePhysicsBodyCircle(GetMousePosition(), GetRandomValue(10, 45), 10);
// Destroy falling physics bodies
int bodiesCount = GetPhysicsBodiesCount();
for (int i = bodiesCount - 1; i >= 0; i--)
{
PhysicsBody body = GetPhysicsBody(i);
if (body != NULL && (body->position.y > screenHeight*2)) DestroyPhysicsBody(body);
}
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
ClearBackground(BLACK);
DrawFPS(screenWidth - 90, screenHeight - 30);
// Draw created physics bodies
bodiesCount = GetPhysicsBodiesCount();
for (int i = 0; i < bodiesCount; i++)
{
PhysicsBody body = GetPhysicsBody(i);
if (body != NULL)
{
int vertexCount = GetPhysicsShapeVerticesCount(i);
for (int j = 0; j < vertexCount; j++)
{
// Get physics bodies shape vertices to draw lines
// Note: GetPhysicsShapeVertex() already calculates rotation transformations
Vector2 vertexA = GetPhysicsShapeVertex(body, j);
int jj = (((j + 1) < vertexCount) ? (j + 1) : 0); // Get next vertex or first to close the shape
Vector2 vertexB = GetPhysicsShapeVertex(body, jj);
DrawLineV(vertexA, vertexB, GREEN); // Draw a line between two vertex positions
}
}
}
DrawText("Left mouse button to create a polygon", 10, 10, 10, WHITE);
DrawText("Right mouse button to create a circle", 10, 25, 10, WHITE);
DrawText("Press 'R' to reset example", 10, 40, 10, WHITE);
DrawText("Physac", logoX, logoY, 30, WHITE);
DrawText("Powered by", logoX + 50, logoY - 7, 10, WHITE);
EndDrawing();
//----------------------------------------------------------------------------------
}
// De-Initialization
//--------------------------------------------------------------------------------------
ClosePhysics(); // Unitialize physics
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
return 0;
}
+}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/physac/physics_friction.c b/ExampleApplication/Examples/physac/physics_friction.c
deleted file mode 100644
index b4cc571..0000000
--- a/ExampleApplication/Examples/physac/physics_friction.c
+++ /dev/null
@@ -1,144 +0,0 @@
-/*******************************************************************************************
-*
-* Physac - Physics friction
-*
-* NOTE 1: Physac requires multi-threading, when InitPhysics() a second thread is created to manage physics calculations.
-* NOTE 2: Physac requires static C library linkage to avoid dependency on MinGW DLL (-static -lpthread)
-*
-* Use the following line to compile:
-*
-* gcc -o $(NAME_PART).exe $(FILE_NAME) -s $(RAYLIB_DIR)\raylib\raylib.rc.o -static -lraylib -lpthread
-* -lglfw3 -lopengl32 -lgdi32 -lopenal32 -lwinmm -std=c99 -Wl,--subsystem,windows -Wl,-allow-multiple-definition
-*
-* Copyright (c) 2016-2018 Victor Fisac
-*
-********************************************************************************************/
-
-#include "raylib.h"
-
-#define PHYSAC_IMPLEMENTATION
-#include "physac.h"
-
-int main()
-{
- // Initialization
- //--------------------------------------------------------------------------------------
- int screenWidth = 800;
- int screenHeight = 450;
-
- SetConfigFlags(FLAG_MSAA_4X_HINT);
- InitWindow(screenWidth, screenHeight, "Physac [raylib] - Physics friction");
-
- // Physac logo drawing position
- int logoX = screenWidth - MeasureText("Physac", 30) - 10;
- int logoY = 15;
-
- // Initialize physics and default physics bodies
- InitPhysics();
-
- // Create floor rectangle physics body
- PhysicsBody floor = CreatePhysicsBodyRectangle((Vector2){ screenWidth/2, screenHeight }, screenWidth, 100, 10);
- floor->enabled = false; // Disable body state to convert it to static (no dynamics, but collisions)
- PhysicsBody wall = CreatePhysicsBodyRectangle((Vector2){ screenWidth/2, screenHeight*0.8f }, 10, 80, 10);
- wall->enabled = false; // Disable body state to convert it to static (no dynamics, but collisions)
-
- // Create left ramp physics body
- PhysicsBody rectLeft = CreatePhysicsBodyRectangle((Vector2){ 25, screenHeight - 5 }, 250, 250, 10);
- rectLeft->enabled = false; // Disable body state to convert it to static (no dynamics, but collisions)
- SetPhysicsBodyRotation(rectLeft, 30*DEG2RAD);
-
- // Create right ramp physics body
- PhysicsBody rectRight = CreatePhysicsBodyRectangle((Vector2){ screenWidth - 25, screenHeight - 5 }, 250, 250, 10);
- rectRight->enabled = false; // Disable body state to convert it to static (no dynamics, but collisions)
- SetPhysicsBodyRotation(rectRight, 330*DEG2RAD);
-
- // Create dynamic physics bodies
- PhysicsBody bodyA = CreatePhysicsBodyRectangle((Vector2){ 35, screenHeight*0.6f }, 40, 40, 10);
- bodyA->staticFriction = 0.1f;
- bodyA->dynamicFriction = 0.1f;
- SetPhysicsBodyRotation(bodyA, 30*DEG2RAD);
-
- PhysicsBody bodyB = CreatePhysicsBodyRectangle((Vector2){ screenWidth - 35, screenHeight*0.6f }, 40, 40, 10);
- bodyB->staticFriction = 1;
- bodyB->dynamicFriction = 1;
- SetPhysicsBodyRotation(bodyB, 330*DEG2RAD);
-
- SetTargetFPS(60);
- //--------------------------------------------------------------------------------------
-
- // Main game loop
- while (!WindowShouldClose()) // Detect window close button or ESC key
- {
- // Update
- //----------------------------------------------------------------------------------
- if (IsKeyPressed('R')) // Reset physics input
- {
- // Reset dynamic physics bodies position, velocity and rotation
- bodyA->position = (Vector2){ 35, screenHeight*0.6f };
- bodyA->velocity = (Vector2){ 0, 0 };
- bodyA->angularVelocity = 0;
- SetPhysicsBodyRotation(bodyA, 30*DEG2RAD);
-
- bodyB->position = (Vector2){ screenWidth - 35, screenHeight*0.6f };
- bodyB->velocity = (Vector2){ 0, 0 };
- bodyB->angularVelocity = 0;
- SetPhysicsBodyRotation(bodyB, 330*DEG2RAD);
- }
- //----------------------------------------------------------------------------------
-
- // Draw
- //----------------------------------------------------------------------------------
- BeginDrawing();
-
- ClearBackground(BLACK);
-
- DrawFPS(screenWidth - 90, screenHeight - 30);
-
- // Draw created physics bodies
- int bodiesCount = GetPhysicsBodiesCount();
- for (int i = 0; i < bodiesCount; i++)
- {
- PhysicsBody body = GetPhysicsBody(i);
-
- if (body != NULL)
- {
- int vertexCount = GetPhysicsShapeVerticesCount(i);
- for (int j = 0; j < vertexCount; j++)
- {
- // Get physics bodies shape vertices to draw lines
- // Note: GetPhysicsShapeVertex() already calculates rotation transformations
- Vector2 vertexA = GetPhysicsShapeVertex(body, j);
-
- int jj = (((j + 1) < vertexCount) ? (j + 1) : 0); // Get next vertex or first to close the shape
- Vector2 vertexB = GetPhysicsShapeVertex(body, jj);
-
- DrawLineV(vertexA, vertexB, GREEN); // Draw a line between two vertex positions
- }
- }
- }
-
- DrawRectangle(0, screenHeight - 49, screenWidth, 49, BLACK);
-
- DrawText("Friction amount", (screenWidth - MeasureText("Friction amount", 30))/2, 75, 30, WHITE);
- DrawText("0.1", bodyA->position.x - MeasureText("0.1", 20)/2, bodyA->position.y - 7, 20, WHITE);
- DrawText("1", bodyB->position.x - MeasureText("1", 20)/2, bodyB->position.y - 7, 20, WHITE);
-
- DrawText("Press 'R' to reset example", 10, 10, 10, WHITE);
-
- DrawText("Physac", logoX, logoY, 30, WHITE);
- DrawText("Powered by", logoX + 50, logoY - 7, 10, WHITE);
-
- EndDrawing();
- //----------------------------------------------------------------------------------
- }
-
- // De-Initialization
- //--------------------------------------------------------------------------------------
- ClosePhysics(); // Unitialize physics
-
- CloseWindow(); // Close window and OpenGL context
- //--------------------------------------------------------------------------------------
-
- return 0;
-}
-
diff --git a/ExampleApplication/Examples/physac/physics_friction.cs b/ExampleApplication/Examples/physac/physics_friction.cs
new file mode 100644
index 0000000..2b17992
--- /dev/null
+++ b/ExampleApplication/Examples/physac/physics_friction.cs
@@ -0,0 +1,8 @@
+
+using Raylib;
+using static Raylib.rl;
+
+public partial class Examples
+{
+ /*******************************************************************************************
*
* Physac - Physics friction
*
* NOTE 1: Physac requires multi-threading, when InitPhysics() a second thread is created to manage physics calculations.
* NOTE 2: Physac requires static C library linkage to avoid dependency on MinGW DLL (-static -lpthread)
*
* Use the following line to compile:
*
* gcc -o $(NAME_PART).exe $(FILE_NAME) -s $(RAYLIB_DIR)\raylib\raylib.rc.o -static -lraylib -lpthread
* -lglfw3 -lopengl32 -lgdi32 -lopenal32 -lwinmm -std=c99 -Wl,--subsystem,windows -Wl,-allow-multiple-definition
*
* Copyright (c) 2016-2018 Victor Fisac
*
********************************************************************************************/
#define PHYSAC_IMPLEMENTATION
#include "physac.h"
public static int physics_friction()
{
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 800;
int screenHeight = 450;
SetConfigFlags(FLAG_MSAA_4X_HINT);
InitWindow(screenWidth, screenHeight, "Physac [raylib] - Physics friction");
// Physac logo drawing position
int logoX = screenWidth - MeasureText("Physac", 30) - 10;
int logoY = 15;
// Initialize physics and default physics bodies
InitPhysics();
// Create floor rectangle physics body
PhysicsBody floor = CreatePhysicsBodyRectangle((Vector2){ screenWidth/2, screenHeight }, screenWidth, 100, 10);
floor->enabled = false; // Disable body state to convert it to static (no dynamics, but collisions)
PhysicsBody wall = CreatePhysicsBodyRectangle((Vector2){ screenWidth/2, screenHeight*0.8f }, 10, 80, 10);
wall->enabled = false; // Disable body state to convert it to static (no dynamics, but collisions)
// Create left ramp physics body
PhysicsBody rectLeft = CreatePhysicsBodyRectangle((Vector2){ 25, screenHeight - 5 }, 250, 250, 10);
rectLeft->enabled = false; // Disable body state to convert it to static (no dynamics, but collisions)
SetPhysicsBodyRotation(rectLeft, 30*DEG2RAD);
// Create right ramp physics body
PhysicsBody rectRight = CreatePhysicsBodyRectangle((Vector2){ screenWidth - 25, screenHeight - 5 }, 250, 250, 10);
rectRight->enabled = false; // Disable body state to convert it to static (no dynamics, but collisions)
SetPhysicsBodyRotation(rectRight, 330*DEG2RAD);
// Create dynamic physics bodies
PhysicsBody bodyA = CreatePhysicsBodyRectangle((Vector2){ 35, screenHeight*0.6f }, 40, 40, 10);
bodyA->staticFriction = 0.1f;
bodyA->dynamicFriction = 0.1f;
SetPhysicsBodyRotation(bodyA, 30*DEG2RAD);
PhysicsBody bodyB = CreatePhysicsBodyRectangle((Vector2){ screenWidth - 35, screenHeight*0.6f }, 40, 40, 10);
bodyB->staticFriction = 1;
bodyB->dynamicFriction = 1;
SetPhysicsBodyRotation(bodyB, 330*DEG2RAD);
SetTargetFPS(60);
//--------------------------------------------------------------------------------------
// Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key
{
// Update
//----------------------------------------------------------------------------------
if (IsKeyPressed('R')) // Reset physics input
{
// Reset dynamic physics bodies position, velocity and rotation
bodyA->position = (Vector2){ 35, screenHeight*0.6f };
bodyA->velocity = (Vector2){ 0, 0 };
bodyA->angularVelocity = 0;
SetPhysicsBodyRotation(bodyA, 30*DEG2RAD);
bodyB->position = (Vector2){ screenWidth - 35, screenHeight*0.6f };
bodyB->velocity = (Vector2){ 0, 0 };
bodyB->angularVelocity = 0;
SetPhysicsBodyRotation(bodyB, 330*DEG2RAD);
}
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
ClearBackground(BLACK);
DrawFPS(screenWidth - 90, screenHeight - 30);
// Draw created physics bodies
int bodiesCount = GetPhysicsBodiesCount();
for (int i = 0; i < bodiesCount; i++)
{
PhysicsBody body = GetPhysicsBody(i);
if (body != NULL)
{
int vertexCount = GetPhysicsShapeVerticesCount(i);
for (int j = 0; j < vertexCount; j++)
{
// Get physics bodies shape vertices to draw lines
// Note: GetPhysicsShapeVertex() already calculates rotation transformations
Vector2 vertexA = GetPhysicsShapeVertex(body, j);
int jj = (((j + 1) < vertexCount) ? (j + 1) : 0); // Get next vertex or first to close the shape
Vector2 vertexB = GetPhysicsShapeVertex(body, jj);
DrawLineV(vertexA, vertexB, GREEN); // Draw a line between two vertex positions
}
}
}
DrawRectangle(0, screenHeight - 49, screenWidth, 49, BLACK);
DrawText("Friction amount", (screenWidth - MeasureText("Friction amount", 30))/2, 75, 30, WHITE);
DrawText("0.1", bodyA->position.x - MeasureText("0.1", 20)/2, bodyA->position.y - 7, 20, WHITE);
DrawText("1", bodyB->position.x - MeasureText("1", 20)/2, bodyB->position.y - 7, 20, WHITE);
DrawText("Press 'R' to reset example", 10, 10, 10, WHITE);
DrawText("Physac", logoX, logoY, 30, WHITE);
DrawText("Powered by", logoX + 50, logoY - 7, 10, WHITE);
EndDrawing();
//----------------------------------------------------------------------------------
}
// De-Initialization
//--------------------------------------------------------------------------------------
ClosePhysics(); // Unitialize physics
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
return 0;
}
+}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/physac/physics_movement.c b/ExampleApplication/Examples/physac/physics_movement.c
deleted file mode 100644
index 3ca6967..0000000
--- a/ExampleApplication/Examples/physac/physics_movement.c
+++ /dev/null
@@ -1,130 +0,0 @@
-/*******************************************************************************************
-*
-* Physac - Physics movement
-*
-* NOTE 1: Physac requires multi-threading, when InitPhysics() a second thread is created to manage physics calculations.
-* NOTE 2: Physac requires static C library linkage to avoid dependency on MinGW DLL (-static -lpthread)
-*
-* Use the following line to compile:
-*
-* gcc -o $(NAME_PART).exe $(FILE_NAME) -s $(RAYLIB_DIR)\raylib\raylib.rc.o -static -lraylib -lpthread
-* -lglfw3 -lopengl32 -lgdi32 -lopenal32 -lwinmm -std=c99 -Wl,--subsystem,windows -Wl,-allow-multiple-definition
-*
-* Copyright (c) 2016-2018 Victor Fisac
-*
-********************************************************************************************/
-
-#include "raylib.h"
-
-#define PHYSAC_IMPLEMENTATION
-#include "physac.h"
-
-#define VELOCITY 0.5f
-
-int main()
-{
- // Initialization
- //--------------------------------------------------------------------------------------
- int screenWidth = 800;
- int screenHeight = 450;
-
- SetConfigFlags(FLAG_MSAA_4X_HINT);
- InitWindow(screenWidth, screenHeight, "Physac [raylib] - Physics movement");
-
- // Physac logo drawing position
- int logoX = screenWidth - MeasureText("Physac", 30) - 10;
- int logoY = 15;
-
- // Initialize physics and default physics bodies
- InitPhysics();
-
- // Create floor and walls rectangle physics body
- PhysicsBody floor = CreatePhysicsBodyRectangle((Vector2){ screenWidth/2, screenHeight }, screenWidth, 100, 10);
- PhysicsBody platformLeft = CreatePhysicsBodyRectangle((Vector2){ screenWidth*0.25f, screenHeight*0.6f }, screenWidth*0.25f, 10, 10);
- PhysicsBody platformRight = CreatePhysicsBodyRectangle((Vector2){ screenWidth*0.75f, screenHeight*0.6f }, screenWidth*0.25f, 10, 10);
- PhysicsBody wallLeft = CreatePhysicsBodyRectangle((Vector2){ -5, screenHeight/2 }, 10, screenHeight, 10);
- PhysicsBody wallRight = CreatePhysicsBodyRectangle((Vector2){ screenWidth + 5, screenHeight/2 }, 10, screenHeight, 10);
-
- // Disable dynamics to floor and walls physics bodies
- floor->enabled = false;
- platformLeft->enabled = false;
- platformRight->enabled = false;
- wallLeft->enabled = false;
- wallRight->enabled = false;
-
- // Create movement physics body
- PhysicsBody body = CreatePhysicsBodyRectangle((Vector2){ screenWidth/2, screenHeight/2 }, 50, 50, 1);
- body->freezeOrient = true; // Constrain body rotation to avoid little collision torque amounts
-
- SetTargetFPS(60);
- //--------------------------------------------------------------------------------------
-
- // Main game loop
- while (!WindowShouldClose()) // Detect window close button or ESC key
- {
- // Update
- //----------------------------------------------------------------------------------
- if (IsKeyPressed('R')) // Reset physics input
- {
- // Reset movement physics body position, velocity and rotation
- body->position = (Vector2){ screenWidth/2, screenHeight/2 };
- body->velocity = (Vector2){ 0, 0 };
- SetPhysicsBodyRotation(body, 0);
- }
-
- // Horizontal movement input
- if (IsKeyDown(KEY_RIGHT)) body->velocity.x = VELOCITY;
- else if (IsKeyDown(KEY_LEFT)) body->velocity.x = -VELOCITY;
-
- // Vertical movement input checking if player physics body is grounded
- if (IsKeyDown(KEY_UP) && body->isGrounded) body->velocity.y = -VELOCITY*4;
- //----------------------------------------------------------------------------------
-
- // Draw
- //----------------------------------------------------------------------------------
- BeginDrawing();
-
- ClearBackground(BLACK);
-
- DrawFPS(screenWidth - 90, screenHeight - 30);
-
- // Draw created physics bodies
- int bodiesCount = GetPhysicsBodiesCount();
- for (int i = 0; i < bodiesCount; i++)
- {
- PhysicsBody body = GetPhysicsBody(i);
-
- int vertexCount = GetPhysicsShapeVerticesCount(i);
- for (int j = 0; j < vertexCount; j++)
- {
- // Get physics bodies shape vertices to draw lines
- // Note: GetPhysicsShapeVertex() already calculates rotation transformations
- Vector2 vertexA = GetPhysicsShapeVertex(body, j);
-
- int jj = (((j + 1) < vertexCount) ? (j + 1) : 0); // Get next vertex or first to close the shape
- Vector2 vertexB = GetPhysicsShapeVertex(body, jj);
-
- DrawLineV(vertexA, vertexB, GREEN); // Draw a line between two vertex positions
- }
- }
-
- DrawText("Use 'ARROWS' to move player", 10, 10, 10, WHITE);
- DrawText("Press 'R' to reset example", 10, 30, 10, WHITE);
-
- DrawText("Physac", logoX, logoY, 30, WHITE);
- DrawText("Powered by", logoX + 50, logoY - 7, 10, WHITE);
-
- EndDrawing();
- //----------------------------------------------------------------------------------
- }
-
- // De-Initialization
- //--------------------------------------------------------------------------------------
- ClosePhysics(); // Unitialize physics
-
- CloseWindow(); // Close window and OpenGL context
- //--------------------------------------------------------------------------------------
-
- return 0;
-}
-
diff --git a/ExampleApplication/Examples/physac/physics_movement.cs b/ExampleApplication/Examples/physac/physics_movement.cs
new file mode 100644
index 0000000..ec9d78a
--- /dev/null
+++ b/ExampleApplication/Examples/physac/physics_movement.cs
@@ -0,0 +1,8 @@
+
+using Raylib;
+using static Raylib.rl;
+
+public partial class Examples
+{
+ /*******************************************************************************************
*
* Physac - Physics movement
*
* NOTE 1: Physac requires multi-threading, when InitPhysics() a second thread is created to manage physics calculations.
* NOTE 2: Physac requires static C library linkage to avoid dependency on MinGW DLL (-static -lpthread)
*
* Use the following line to compile:
*
* gcc -o $(NAME_PART).exe $(FILE_NAME) -s $(RAYLIB_DIR)\raylib\raylib.rc.o -static -lraylib -lpthread
* -lglfw3 -lopengl32 -lgdi32 -lopenal32 -lwinmm -std=c99 -Wl,--subsystem,windows -Wl,-allow-multiple-definition
*
* Copyright (c) 2016-2018 Victor Fisac
*
********************************************************************************************/
#define PHYSAC_IMPLEMENTATION
#include "physac.h"
#define VELOCITY 0.5f
public static int physics_movement()
{
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 800;
int screenHeight = 450;
SetConfigFlags(FLAG_MSAA_4X_HINT);
InitWindow(screenWidth, screenHeight, "Physac [raylib] - Physics movement");
// Physac logo drawing position
int logoX = screenWidth - MeasureText("Physac", 30) - 10;
int logoY = 15;
// Initialize physics and default physics bodies
InitPhysics();
// Create floor and walls rectangle physics body
PhysicsBody floor = CreatePhysicsBodyRectangle((Vector2){ screenWidth/2, screenHeight }, screenWidth, 100, 10);
PhysicsBody platformLeft = CreatePhysicsBodyRectangle((Vector2){ screenWidth*0.25f, screenHeight*0.6f }, screenWidth*0.25f, 10, 10);
PhysicsBody platformRight = CreatePhysicsBodyRectangle((Vector2){ screenWidth*0.75f, screenHeight*0.6f }, screenWidth*0.25f, 10, 10);
PhysicsBody wallLeft = CreatePhysicsBodyRectangle((Vector2){ -5, screenHeight/2 }, 10, screenHeight, 10);
PhysicsBody wallRight = CreatePhysicsBodyRectangle((Vector2){ screenWidth + 5, screenHeight/2 }, 10, screenHeight, 10);
// Disable dynamics to floor and walls physics bodies
floor->enabled = false;
platformLeft->enabled = false;
platformRight->enabled = false;
wallLeft->enabled = false;
wallRight->enabled = false;
// Create movement physics body
PhysicsBody body = CreatePhysicsBodyRectangle((Vector2){ screenWidth/2, screenHeight/2 }, 50, 50, 1);
body->freezeOrient = true; // Constrain body rotation to avoid little collision torque amounts
SetTargetFPS(60);
//--------------------------------------------------------------------------------------
// Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key
{
// Update
//----------------------------------------------------------------------------------
if (IsKeyPressed('R')) // Reset physics input
{
// Reset movement physics body position, velocity and rotation
body->position = (Vector2){ screenWidth/2, screenHeight/2 };
body->velocity = (Vector2){ 0, 0 };
SetPhysicsBodyRotation(body, 0);
}
// Horizontal movement input
if (IsKeyDown(KEY_RIGHT)) body->velocity.x = VELOCITY;
else if (IsKeyDown(KEY_LEFT)) body->velocity.x = -VELOCITY;
// Vertical movement input checking if player physics body is grounded
if (IsKeyDown(KEY_UP) && body->isGrounded) body->velocity.y = -VELOCITY*4;
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
ClearBackground(BLACK);
DrawFPS(screenWidth - 90, screenHeight - 30);
// Draw created physics bodies
int bodiesCount = GetPhysicsBodiesCount();
for (int i = 0; i < bodiesCount; i++)
{
PhysicsBody body = GetPhysicsBody(i);
int vertexCount = GetPhysicsShapeVerticesCount(i);
for (int j = 0; j < vertexCount; j++)
{
// Get physics bodies shape vertices to draw lines
// Note: GetPhysicsShapeVertex() already calculates rotation transformations
Vector2 vertexA = GetPhysicsShapeVertex(body, j);
int jj = (((j + 1) < vertexCount) ? (j + 1) : 0); // Get next vertex or first to close the shape
Vector2 vertexB = GetPhysicsShapeVertex(body, jj);
DrawLineV(vertexA, vertexB, GREEN); // Draw a line between two vertex positions
}
}
DrawText("Use 'ARROWS' to move player", 10, 10, 10, WHITE);
DrawText("Press 'R' to reset example", 10, 30, 10, WHITE);
DrawText("Physac", logoX, logoY, 30, WHITE);
DrawText("Powered by", logoX + 50, logoY - 7, 10, WHITE);
EndDrawing();
//----------------------------------------------------------------------------------
}
// De-Initialization
//--------------------------------------------------------------------------------------
ClosePhysics(); // Unitialize physics
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
return 0;
}
+}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/physac/physics_restitution.c b/ExampleApplication/Examples/physac/physics_restitution.c
deleted file mode 100644
index 8e26c93..0000000
--- a/ExampleApplication/Examples/physac/physics_restitution.c
+++ /dev/null
@@ -1,123 +0,0 @@
-/*******************************************************************************************
-*
-* Physac - Physics restitution
-*
-* NOTE 1: Physac requires multi-threading, when InitPhysics() a second thread is created to manage physics calculations.
-* NOTE 2: Physac requires static C library linkage to avoid dependency on MinGW DLL (-static -lpthread)
-*
-* Use the following line to compile:
-*
-* gcc -o $(NAME_PART).exe $(FILE_NAME) -s $(RAYLIB_DIR)\raylib\raylib.rc.o -static -lraylib -lpthread
-* -lglfw3 -lopengl32 -lgdi32 -lopenal32 -lwinmm -std=c99 -Wl,--subsystem,windows -Wl,-allow-multiple-definition
-*
-* Copyright (c) 2016-2018 Victor Fisac
-*
-********************************************************************************************/
-
-#include "raylib.h"
-
-#define PHYSAC_IMPLEMENTATION
-#include "physac.h"
-
-int main()
-{
- // Initialization
- //--------------------------------------------------------------------------------------
- int screenWidth = 800;
- int screenHeight = 450;
-
- SetConfigFlags(FLAG_MSAA_4X_HINT);
- InitWindow(screenWidth, screenHeight, "Physac [raylib] - Physics restitution");
-
- // Physac logo drawing position
- int logoX = screenWidth - MeasureText("Physac", 30) - 10;
- int logoY = 15;
-
- // Initialize physics and default physics bodies
- InitPhysics();
-
- // Create floor rectangle physics body
- PhysicsBody floor = CreatePhysicsBodyRectangle((Vector2){ screenWidth/2, screenHeight }, screenWidth, 100, 10);
- floor->enabled = false; // Disable body state to convert it to static (no dynamics, but collisions)
- floor->restitution = 1;
-
- // Create circles physics body
- PhysicsBody circleA = CreatePhysicsBodyCircle((Vector2){ screenWidth*0.25f, screenHeight/2 }, 30, 10);
- circleA->restitution = 0;
- PhysicsBody circleB = CreatePhysicsBodyCircle((Vector2){ screenWidth*0.5f, screenHeight/2 }, 30, 10);
- circleB->restitution = 0.5f;
- PhysicsBody circleC = CreatePhysicsBodyCircle((Vector2){ screenWidth*0.75f, screenHeight/2 }, 30, 10);
- circleC->restitution = 1;
-
- SetTargetFPS(60);
- //--------------------------------------------------------------------------------------
-
- // Main game loop
- while (!WindowShouldClose()) // Detect window close button or ESC key
- {
- // Update
- //----------------------------------------------------------------------------------
- if (IsKeyPressed('R')) // Reset physics input
- {
- // Reset circles physics bodies position and velocity
- circleA->position = (Vector2){ screenWidth*0.25f, screenHeight/2 };
- circleA->velocity = (Vector2){ 0, 0 };
- circleB->position = (Vector2){ screenWidth*0.5f, screenHeight/2 };
- circleB->velocity = (Vector2){ 0, 0 };
- circleC->position = (Vector2){ screenWidth*0.75f, screenHeight/2 };
- circleC->velocity = (Vector2){ 0, 0 };
- }
- //----------------------------------------------------------------------------------
-
- // Draw
- //----------------------------------------------------------------------------------
- BeginDrawing();
-
- ClearBackground(BLACK);
-
- DrawFPS(screenWidth - 90, screenHeight - 30);
-
- // Draw created physics bodies
- int bodiesCount = GetPhysicsBodiesCount();
- for (int i = 0; i < bodiesCount; i++)
- {
- PhysicsBody body = GetPhysicsBody(i);
-
- int vertexCount = GetPhysicsShapeVerticesCount(i);
- for (int j = 0; j < vertexCount; j++)
- {
- // Get physics bodies shape vertices to draw lines
- // Note: GetPhysicsShapeVertex() already calculates rotation transformations
- Vector2 vertexA = GetPhysicsShapeVertex(body, j);
-
- int jj = (((j + 1) < vertexCount) ? (j + 1) : 0); // Get next vertex or first to close the shape
- Vector2 vertexB = GetPhysicsShapeVertex(body, jj);
-
- DrawLineV(vertexA, vertexB, GREEN); // Draw a line between two vertex positions
- }
- }
-
- DrawText("Restitution amount", (screenWidth - MeasureText("Restitution amount", 30))/2, 75, 30, WHITE);
- DrawText("0", circleA->position.x - MeasureText("0", 20)/2, circleA->position.y - 7, 20, WHITE);
- DrawText("0.5", circleB->position.x - MeasureText("0.5", 20)/2, circleB->position.y - 7, 20, WHITE);
- DrawText("1", circleC->position.x - MeasureText("1", 20)/2, circleC->position.y - 7, 20, WHITE);
-
- DrawText("Press 'R' to reset example", 10, 10, 10, WHITE);
-
- DrawText("Physac", logoX, logoY, 30, WHITE);
- DrawText("Powered by", logoX + 50, logoY - 7, 10, WHITE);
-
- EndDrawing();
- //----------------------------------------------------------------------------------
- }
-
- // De-Initialization
- //--------------------------------------------------------------------------------------
- ClosePhysics(); // Unitialize physics
-
- CloseWindow(); // Close window and OpenGL context
- //--------------------------------------------------------------------------------------
-
- return 0;
-}
-
diff --git a/ExampleApplication/Examples/physac/physics_restitution.cs b/ExampleApplication/Examples/physac/physics_restitution.cs
new file mode 100644
index 0000000..6531286
--- /dev/null
+++ b/ExampleApplication/Examples/physac/physics_restitution.cs
@@ -0,0 +1,8 @@
+
+using Raylib;
+using static Raylib.rl;
+
+public partial class Examples
+{
+ /*******************************************************************************************
*
* Physac - Physics restitution
*
* NOTE 1: Physac requires multi-threading, when InitPhysics() a second thread is created to manage physics calculations.
* NOTE 2: Physac requires static C library linkage to avoid dependency on MinGW DLL (-static -lpthread)
*
* Use the following line to compile:
*
* gcc -o $(NAME_PART).exe $(FILE_NAME) -s $(RAYLIB_DIR)\raylib\raylib.rc.o -static -lraylib -lpthread
* -lglfw3 -lopengl32 -lgdi32 -lopenal32 -lwinmm -std=c99 -Wl,--subsystem,windows -Wl,-allow-multiple-definition
*
* Copyright (c) 2016-2018 Victor Fisac
*
********************************************************************************************/
#define PHYSAC_IMPLEMENTATION
#include "physac.h"
public static int physics_restitution()
{
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 800;
int screenHeight = 450;
SetConfigFlags(FLAG_MSAA_4X_HINT);
InitWindow(screenWidth, screenHeight, "Physac [raylib] - Physics restitution");
// Physac logo drawing position
int logoX = screenWidth - MeasureText("Physac", 30) - 10;
int logoY = 15;
// Initialize physics and default physics bodies
InitPhysics();
// Create floor rectangle physics body
PhysicsBody floor = CreatePhysicsBodyRectangle((Vector2){ screenWidth/2, screenHeight }, screenWidth, 100, 10);
floor->enabled = false; // Disable body state to convert it to static (no dynamics, but collisions)
floor->restitution = 1;
// Create circles physics body
PhysicsBody circleA = CreatePhysicsBodyCircle((Vector2){ screenWidth*0.25f, screenHeight/2 }, 30, 10);
circleA->restitution = 0;
PhysicsBody circleB = CreatePhysicsBodyCircle((Vector2){ screenWidth*0.5f, screenHeight/2 }, 30, 10);
circleB->restitution = 0.5f;
PhysicsBody circleC = CreatePhysicsBodyCircle((Vector2){ screenWidth*0.75f, screenHeight/2 }, 30, 10);
circleC->restitution = 1;
SetTargetFPS(60);
//--------------------------------------------------------------------------------------
// Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key
{
// Update
//----------------------------------------------------------------------------------
if (IsKeyPressed('R')) // Reset physics input
{
// Reset circles physics bodies position and velocity
circleA->position = (Vector2){ screenWidth*0.25f, screenHeight/2 };
circleA->velocity = (Vector2){ 0, 0 };
circleB->position = (Vector2){ screenWidth*0.5f, screenHeight/2 };
circleB->velocity = (Vector2){ 0, 0 };
circleC->position = (Vector2){ screenWidth*0.75f, screenHeight/2 };
circleC->velocity = (Vector2){ 0, 0 };
}
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
ClearBackground(BLACK);
DrawFPS(screenWidth - 90, screenHeight - 30);
// Draw created physics bodies
int bodiesCount = GetPhysicsBodiesCount();
for (int i = 0; i < bodiesCount; i++)
{
PhysicsBody body = GetPhysicsBody(i);
int vertexCount = GetPhysicsShapeVerticesCount(i);
for (int j = 0; j < vertexCount; j++)
{
// Get physics bodies shape vertices to draw lines
// Note: GetPhysicsShapeVertex() already calculates rotation transformations
Vector2 vertexA = GetPhysicsShapeVertex(body, j);
int jj = (((j + 1) < vertexCount) ? (j + 1) : 0); // Get next vertex or first to close the shape
Vector2 vertexB = GetPhysicsShapeVertex(body, jj);
DrawLineV(vertexA, vertexB, GREEN); // Draw a line between two vertex positions
}
}
DrawText("Restitution amount", (screenWidth - MeasureText("Restitution amount", 30))/2, 75, 30, WHITE);
DrawText("0", circleA->position.x - MeasureText("0", 20)/2, circleA->position.y - 7, 20, WHITE);
DrawText("0.5", circleB->position.x - MeasureText("0.5", 20)/2, circleB->position.y - 7, 20, WHITE);
DrawText("1", circleC->position.x - MeasureText("1", 20)/2, circleC->position.y - 7, 20, WHITE);
DrawText("Press 'R' to reset example", 10, 10, 10, WHITE);
DrawText("Physac", logoX, logoY, 30, WHITE);
DrawText("Powered by", logoX + 50, logoY - 7, 10, WHITE);
EndDrawing();
//----------------------------------------------------------------------------------
}
// De-Initialization
//--------------------------------------------------------------------------------------
ClosePhysics(); // Unitialize physics
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
return 0;
}
+}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/physac/physics_shatter.c b/ExampleApplication/Examples/physac/physics_shatter.c
deleted file mode 100644
index e34d6ce..0000000
--- a/ExampleApplication/Examples/physac/physics_shatter.c
+++ /dev/null
@@ -1,121 +0,0 @@
-/*******************************************************************************************
-*
-* Physac - Body shatter
-*
-* NOTE 1: Physac requires multi-threading, when InitPhysics() a second thread is created to manage physics calculations.
-* NOTE 2: Physac requires static C library linkage to avoid dependency on MinGW DLL (-static -lpthread)
-*
-* Use the following line to compile:
-*
-* gcc -o $(NAME_PART).exe $(FILE_NAME) -s $(RAYLIB_DIR)\raylib\raylib.rc.o -static -lraylib -lpthread
-* -lglfw3 -lopengl32 -lgdi32 -lopenal32 -lwinmm -std=c99 -Wl,--subsystem,windows -Wl,-allow-multiple-definition
-*
-* Copyright (c) 2016-2018 Victor Fisac
-*
-********************************************************************************************/
-
-#include "raylib.h"
-
-#define PHYSAC_IMPLEMENTATION
-#include "physac.h"
-
-int main()
-{
- // Initialization
- //--------------------------------------------------------------------------------------
- int screenWidth = 800;
- int screenHeight = 450;
-
- SetConfigFlags(FLAG_MSAA_4X_HINT);
- InitWindow(screenWidth, screenHeight, "Physac [raylib] - Body shatter");
-
- // Physac logo drawing position
- int logoX = screenWidth - MeasureText("Physac", 30) - 10;
- int logoY = 15;
- bool needsReset = false;
-
- // Initialize physics and default physics bodies
- InitPhysics();
- SetPhysicsGravity(0, 0);
-
- // Create random polygon physics body to shatter
- CreatePhysicsBodyPolygon((Vector2){ screenWidth/2, screenHeight/2 }, GetRandomValue(80, 200), GetRandomValue(3, 8), 10);
-
- SetTargetFPS(60);
- //--------------------------------------------------------------------------------------
-
- // Main game loop
- while (!WindowShouldClose()) // Detect window close button or ESC key
- {
- // Update
- //----------------------------------------------------------------------------------
- // Delay initialization of variables due to physics reset asynchronous
- if (needsReset)
- {
- // Create random polygon physics body to shatter
- CreatePhysicsBodyPolygon((Vector2){ screenWidth/2, screenHeight/2 }, GetRandomValue(80, 200), GetRandomValue(3, 8), 10);
- }
-
- if (IsKeyPressed('R')) // Reset physics input
- {
- ResetPhysics();
- needsReset = true;
- }
-
- if (IsMouseButtonPressed(MOUSE_LEFT_BUTTON)) // Physics shatter input
- {
- // Note: some values need to be stored in variables due to asynchronous changes during main thread
- int count = GetPhysicsBodiesCount();
- for (int i = count - 1; i >= 0; i--)
- {
- PhysicsBody currentBody = GetPhysicsBody(i);
- if (currentBody != NULL) PhysicsShatter(currentBody, GetMousePosition(), 10/currentBody->inverseMass);
- }
- }
- //----------------------------------------------------------------------------------
-
- // Draw
- //----------------------------------------------------------------------------------
- BeginDrawing();
-
- ClearBackground(BLACK);
-
- // Draw created physics bodies
- int bodiesCount = GetPhysicsBodiesCount();
- for (int i = 0; i < bodiesCount; i++)
- {
- PhysicsBody currentBody = GetPhysicsBody(i);
-
- int vertexCount = GetPhysicsShapeVerticesCount(i);
- for (int j = 0; j < vertexCount; j++)
- {
- // Get physics bodies shape vertices to draw lines
- // Note: GetPhysicsShapeVertex() already calculates rotation transformations
- Vector2 vertexA = GetPhysicsShapeVertex(currentBody, j);
-
- int jj = (((j + 1) < vertexCount) ? (j + 1) : 0); // Get next vertex or first to close the shape
- Vector2 vertexB = GetPhysicsShapeVertex(currentBody, jj);
-
- DrawLineV(vertexA, vertexB, GREEN); // Draw a line between two vertex positions
- }
- }
-
- DrawText("Left mouse button in polygon area to shatter body\nPress 'R' to reset example", 10, 10, 10, WHITE);
-
- DrawText("Physac", logoX, logoY, 30, WHITE);
- DrawText("Powered by", logoX + 50, logoY - 7, 10, WHITE);
-
- EndDrawing();
- //----------------------------------------------------------------------------------
- }
-
- // De-Initialization
- //--------------------------------------------------------------------------------------
- ClosePhysics(); // Unitialize physics
-
- CloseWindow(); // Close window and OpenGL context
- //--------------------------------------------------------------------------------------
-
- return 0;
-}
-
diff --git a/ExampleApplication/Examples/physac/physics_shatter.cs b/ExampleApplication/Examples/physac/physics_shatter.cs
new file mode 100644
index 0000000..21dfd9a
--- /dev/null
+++ b/ExampleApplication/Examples/physac/physics_shatter.cs
@@ -0,0 +1,8 @@
+
+using Raylib;
+using static Raylib.rl;
+
+public partial class Examples
+{
+ /*******************************************************************************************
*
* Physac - Body shatter
*
* NOTE 1: Physac requires multi-threading, when InitPhysics() a second thread is created to manage physics calculations.
* NOTE 2: Physac requires static C library linkage to avoid dependency on MinGW DLL (-static -lpthread)
*
* Use the following line to compile:
*
* gcc -o $(NAME_PART).exe $(FILE_NAME) -s $(RAYLIB_DIR)\raylib\raylib.rc.o -static -lraylib -lpthread
* -lglfw3 -lopengl32 -lgdi32 -lopenal32 -lwinmm -std=c99 -Wl,--subsystem,windows -Wl,-allow-multiple-definition
*
* Copyright (c) 2016-2018 Victor Fisac
*
********************************************************************************************/
#define PHYSAC_IMPLEMENTATION
#include "physac.h"
public static int physics_shatter()
{
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 800;
int screenHeight = 450;
SetConfigFlags(FLAG_MSAA_4X_HINT);
InitWindow(screenWidth, screenHeight, "Physac [raylib] - Body shatter");
// Physac logo drawing position
int logoX = screenWidth - MeasureText("Physac", 30) - 10;
int logoY = 15;
bool needsReset = false;
// Initialize physics and default physics bodies
InitPhysics();
SetPhysicsGravity(0, 0);
// Create random polygon physics body to shatter
CreatePhysicsBodyPolygon((Vector2){ screenWidth/2, screenHeight/2 }, GetRandomValue(80, 200), GetRandomValue(3, 8), 10);
SetTargetFPS(60);
//--------------------------------------------------------------------------------------
// Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key
{
// Update
//----------------------------------------------------------------------------------
// Delay initialization of variables due to physics reset asynchronous
if (needsReset)
{
// Create random polygon physics body to shatter
CreatePhysicsBodyPolygon((Vector2){ screenWidth/2, screenHeight/2 }, GetRandomValue(80, 200), GetRandomValue(3, 8), 10);
}
if (IsKeyPressed('R')) // Reset physics input
{
ResetPhysics();
needsReset = true;
}
if (IsMouseButtonPressed(MOUSE_LEFT_BUTTON)) // Physics shatter input
{
// Note: some values need to be stored in variables due to asynchronous changes during main thread
int count = GetPhysicsBodiesCount();
for (int i = count - 1; i >= 0; i--)
{
PhysicsBody currentBody = GetPhysicsBody(i);
if (currentBody != NULL) PhysicsShatter(currentBody, GetMousePosition(), 10/currentBody->inverseMass);
}
}
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
ClearBackground(BLACK);
// Draw created physics bodies
int bodiesCount = GetPhysicsBodiesCount();
for (int i = 0; i < bodiesCount; i++)
{
PhysicsBody currentBody = GetPhysicsBody(i);
int vertexCount = GetPhysicsShapeVerticesCount(i);
for (int j = 0; j < vertexCount; j++)
{
// Get physics bodies shape vertices to draw lines
// Note: GetPhysicsShapeVertex() already calculates rotation transformations
Vector2 vertexA = GetPhysicsShapeVertex(currentBody, j);
int jj = (((j + 1) < vertexCount) ? (j + 1) : 0); // Get next vertex or first to close the shape
Vector2 vertexB = GetPhysicsShapeVertex(currentBody, jj);
DrawLineV(vertexA, vertexB, GREEN); // Draw a line between two vertex positions
}
}
DrawText("Left mouse button in polygon area to shatter body\nPress 'R' to reset example", 10, 10, 10, WHITE);
DrawText("Physac", logoX, logoY, 30, WHITE);
DrawText("Powered by", logoX + 50, logoY - 7, 10, WHITE);
EndDrawing();
//----------------------------------------------------------------------------------
}
// De-Initialization
//--------------------------------------------------------------------------------------
ClosePhysics(); // Unitialize physics
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
return 0;
}
+}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/shaders/shaders_custom_uniform.c b/ExampleApplication/Examples/shaders/shaders_custom_uniform.c
deleted file mode 100644
index 32fbab9..0000000
--- a/ExampleApplication/Examples/shaders/shaders_custom_uniform.c
+++ /dev/null
@@ -1,126 +0,0 @@
-/*******************************************************************************************
-*
-* raylib [shaders] example - Apply a postprocessing shader and connect a custom uniform variable
-*
-* NOTE: This example requires raylib OpenGL 3.3 or ES2 versions for shaders support,
-* OpenGL 1.1 does not support shaders, recompile raylib to OpenGL 3.3 version.
-*
-* NOTE: Shaders used in this example are #version 330 (OpenGL 3.3), to test this example
-* on OpenGL ES 2.0 platforms (Android, Raspberry Pi, HTML5), use #version 100 shaders
-* raylib comes with shaders ready for both versions, check raylib/shaders install folder
-*
-* This example has been created using raylib 1.3 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
-*
-* Copyright (c) 2015 Ramon Santamaria (@raysan5)
-*
-********************************************************************************************/
-
-#include "raylib.h"
-
-int main()
-{
- // Initialization
- //--------------------------------------------------------------------------------------
- int screenWidth = 800;
- int screenHeight = 450;
-
- SetConfigFlags(FLAG_MSAA_4X_HINT); // Enable Multi Sampling Anti Aliasing 4x (if available)
-
- InitWindow(screenWidth, screenHeight, "raylib [shaders] example - custom uniform variable");
-
- // Define the camera to look into our 3d world
- Camera camera = { 0 };
- camera.position = (Vector3){ 8.0f, 8.0f, 8.0f };
- camera.target = (Vector3){ 0.0f, 1.5f, 0.0f };
- camera.up = (Vector3){ 0.0f, 1.0f, 0.0f };
- camera.fovy = 45.0f;
- camera.type = CAMERA_PERSPECTIVE;
-
- Model model = LoadModel("resources/models/barracks.obj"); // Load OBJ model
- Texture2D texture = LoadTexture("resources/models/barracks_diffuse.png"); // Load model texture (diffuse map)
- model.material.maps[MAP_DIFFUSE].texture = texture; // Set model diffuse texture
-
- Vector3 position = { 0.0f, 0.0f, 0.0f }; // Set model position
-
- Shader shader = LoadShader("resources/shaders/glsl330/base.vs",
- "resources/shaders/glsl330/swirl.fs"); // Load postpro shader
-
- // Get variable (uniform) location on the shader to connect with the program
- // NOTE: If uniform variable could not be found in the shader, function returns -1
- int swirlCenterLoc = GetShaderLocation(shader, "center");
-
- float swirlCenter[2] = { (float)screenWidth/2, (float)screenHeight/2 };
-
- // Create a RenderTexture2D to be used for render to texture
- RenderTexture2D target = LoadRenderTexture(screenWidth, screenHeight);
-
- // Setup orbital camera
- SetCameraMode(camera, CAMERA_ORBITAL); // Set an orbital camera mode
-
- SetTargetFPS(60); // Set our game to run at 60 frames-per-second
- //--------------------------------------------------------------------------------------
-
- // Main game loop
- while (!WindowShouldClose()) // Detect window close button or ESC key
- {
- // Update
- //----------------------------------------------------------------------------------
- Vector2 mousePosition = GetMousePosition();
-
- swirlCenter[0] = mousePosition.x;
- swirlCenter[1] = screenHeight - mousePosition.y;
-
- // Send new value to the shader to be used on drawing
- SetShaderValue(shader, swirlCenterLoc, swirlCenter, 2);
-
- UpdateCamera(&camera); // Update camera
- //----------------------------------------------------------------------------------
-
- // Draw
- //----------------------------------------------------------------------------------
- BeginDrawing();
-
- ClearBackground(RAYWHITE);
-
- BeginTextureMode(target); // Enable drawing to texture
-
- BeginMode3D(camera);
-
- DrawModel(model, position, 0.5f, WHITE); // Draw 3d model with texture
-
- DrawGrid(10, 1.0f); // Draw a grid
-
- EndMode3D();
-
- DrawText("TEXT DRAWN IN RENDER TEXTURE", 200, 10, 30, RED);
-
- EndTextureMode(); // End drawing to texture (now we have a texture available for next passes)
-
- BeginShaderMode(shader);
-
- // NOTE: Render texture must be y-flipped due to default OpenGL coordinates (left-bottom)
- DrawTextureRec(target.texture, (Rectangle){ 0, 0, target.texture.width, -target.texture.height }, (Vector2){ 0, 0 }, WHITE);
-
- EndShaderMode();
-
- DrawText("(c) Barracks 3D model by Alberto Cano", screenWidth - 220, screenHeight - 20, 10, GRAY);
-
- DrawFPS(10, 10);
-
- EndDrawing();
- //----------------------------------------------------------------------------------
- }
-
- // De-Initialization
- //--------------------------------------------------------------------------------------
- UnloadShader(shader); // Unload shader
- UnloadTexture(texture); // Unload texture
- UnloadModel(model); // Unload model
- UnloadRenderTexture(target); // Unload render texture
-
- CloseWindow(); // Close window and OpenGL context
- //--------------------------------------------------------------------------------------
-
- return 0;
-}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/shaders/shaders_custom_uniform.cs b/ExampleApplication/Examples/shaders/shaders_custom_uniform.cs
new file mode 100644
index 0000000..49464e6
--- /dev/null
+++ b/ExampleApplication/Examples/shaders/shaders_custom_uniform.cs
@@ -0,0 +1,8 @@
+
+using Raylib;
+using static Raylib.rl;
+
+public partial class Examples
+{
+ /*******************************************************************************************
*
* raylib [shaders] example - Apply a postprocessing shader and connect a custom uniform variable
*
* NOTE: This example requires raylib OpenGL 3.3 or ES2 versions for shaders support,
* OpenGL 1.1 does not support shaders, recompile raylib to OpenGL 3.3 version.
*
* NOTE: Shaders used in this example are #version 330 (OpenGL 3.3), to test this example
* on OpenGL ES 2.0 platforms (Android, Raspberry Pi, HTML5), use #version 100 shaders
* raylib comes with shaders ready for both versions, check raylib/shaders install folder
*
* This example has been created using raylib 1.3 (www.raylib.com)
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
*
* Copyright (c) 2015 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
public static int shaders_custom_uniform()
{
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 800;
int screenHeight = 450;
SetConfigFlags(FLAG_MSAA_4X_HINT); // Enable Multi Sampling Anti Aliasing 4x (if available)
InitWindow(screenWidth, screenHeight, "raylib [shaders] example - custom uniform variable");
// Define the camera to look into our 3d world
Camera camera = { 0 };
camera.position = (Vector3){ 8.0f, 8.0f, 8.0f };
camera.target = (Vector3){ 0.0f, 1.5f, 0.0f };
camera.up = (Vector3){ 0.0f, 1.0f, 0.0f };
camera.fovy = 45.0f;
camera.type = CAMERA_PERSPECTIVE;
Model model = LoadModel("resources/models/barracks.obj"); // Load OBJ model
Texture2D texture = LoadTexture("resources/models/barracks_diffuse.png"); // Load model texture (diffuse map)
model.material.maps[MAP_DIFFUSE].texture = texture; // Set model diffuse texture
Vector3 position = { 0.0f, 0.0f, 0.0f }; // Set model position
Shader shader = LoadShader("resources/shaders/glsl330/base.vs",
"resources/shaders/glsl330/swirl.fs"); // Load postpro shader
// Get variable (uniform) location on the shader to connect with the program
// NOTE: If uniform variable could not be found in the shader, function returns -1
int swirlCenterLoc = GetShaderLocation(shader, "center");
float swirlCenter[2] = { (float)screenWidth/2, (float)screenHeight/2 };
// Create a RenderTexture2D to be used for render to texture
RenderTexture2D target = LoadRenderTexture(screenWidth, screenHeight);
// Setup orbital camera
SetCameraMode(camera, CAMERA_ORBITAL); // Set an orbital camera mode
SetTargetFPS(60); // Set our game to run at 60 frames-per-second
//--------------------------------------------------------------------------------------
// Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key
{
// Update
//----------------------------------------------------------------------------------
Vector2 mousePosition = GetMousePosition();
swirlCenter[0] = mousePosition.x;
swirlCenter[1] = screenHeight - mousePosition.y;
// Send new value to the shader to be used on drawing
SetShaderValue(shader, swirlCenterLoc, swirlCenter, 2);
UpdateCamera(&camera); // Update camera
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
ClearBackground(RAYWHITE);
BeginTextureMode(target); // Enable drawing to texture
BeginMode3D(camera);
DrawModel(model, position, 0.5f, WHITE); // Draw 3d model with texture
DrawGrid(10, 1.0f); // Draw a grid
EndMode3D();
DrawText("TEXT DRAWN IN RENDER TEXTURE", 200, 10, 30, RED);
EndTextureMode(); // End drawing to texture (now we have a texture available for next passes)
BeginShaderMode(shader);
// NOTE: Render texture must be y-flipped due to default OpenGL coordinates (left-bottom)
DrawTextureRec(target.texture, (Rectangle){ 0, 0, target.texture.width, -target.texture.height }, (Vector2){ 0, 0 }, WHITE);
EndShaderMode();
DrawText("(c) Barracks 3D model by Alberto Cano", screenWidth - 220, screenHeight - 20, 10, GRAY);
DrawFPS(10, 10);
EndDrawing();
//----------------------------------------------------------------------------------
}
// De-Initialization
//--------------------------------------------------------------------------------------
UnloadShader(shader); // Unload shader
UnloadTexture(texture); // Unload texture
UnloadModel(model); // Unload model
UnloadRenderTexture(target); // Unload render texture
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
return 0;
}
+}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/shaders/shaders_model_shader.c b/ExampleApplication/Examples/shaders/shaders_model_shader.c
deleted file mode 100644
index e80d1fd..0000000
--- a/ExampleApplication/Examples/shaders/shaders_model_shader.c
+++ /dev/null
@@ -1,98 +0,0 @@
-/*******************************************************************************************
-*
-* raylib [shaders] example - Apply a shader to a 3d model
-*
-* NOTE: This example requires raylib OpenGL 3.3 or ES2 versions for shaders support,
-* OpenGL 1.1 does not support shaders, recompile raylib to OpenGL 3.3 version.
-*
-* NOTE: Shaders used in this example are #version 330 (OpenGL 3.3), to test this example
-* on OpenGL ES 2.0 platforms (Android, Raspberry Pi, HTML5), use #version 100 shaders
-* raylib comes with shaders ready for both versions, check raylib/shaders install folder
-*
-* This example has been created using raylib 1.3 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
-*
-* Copyright (c) 2014 Ramon Santamaria (@raysan5)
-*
-********************************************************************************************/
-
-#include "raylib.h"
-
-int main()
-{
- // Initialization
- //--------------------------------------------------------------------------------------
- int screenWidth = 800;
- int screenHeight = 450;
-
- SetConfigFlags(FLAG_MSAA_4X_HINT); // Enable Multi Sampling Anti Aliasing 4x (if available)
-
- InitWindow(screenWidth, screenHeight, "raylib [shaders] example - model shader");
-
- // Define the camera to look into our 3d world
- Camera camera = { 0 };
- camera.position = (Vector3){ 4.0f, 4.0f, 4.0f };
- camera.target = (Vector3){ 0.0f, 1.0f, -1.0f };
- camera.up = (Vector3){ 0.0f, 1.0f, 0.0f };
- camera.fovy = 45.0f;
- camera.type = CAMERA_PERSPECTIVE;
-
- Model model = LoadModel("resources/models/watermill.obj"); // Load OBJ model
- Texture2D texture = LoadTexture("resources/models/watermill_diffuse.png"); // Load model texture
- Shader shader = LoadShader("resources/shaders/glsl330/base.vs",
- "resources/shaders/glsl330/grayscale.fs"); // Load model shader
-
- model.material.shader = shader; // Set shader effect to 3d model
- model.material.maps[MAP_DIFFUSE].texture = texture; // Bind texture to model
-
- Vector3 position = { 0.0f, 0.0f, 0.0f }; // Set model position
-
- SetCameraMode(camera, CAMERA_FREE); // Set an orbital camera mode
-
- SetTargetFPS(60); // Set our game to run at 60 frames-per-second
- //--------------------------------------------------------------------------------------
-
- // Main game loop
- while (!WindowShouldClose()) // Detect window close button or ESC key
- {
- // Update
- //----------------------------------------------------------------------------------
- UpdateCamera(&camera); // Update camera
- //----------------------------------------------------------------------------------
-
- // Draw
- //----------------------------------------------------------------------------------
- BeginDrawing();
-
- ClearBackground(RAYWHITE);
-
- BeginMode3D(camera);
-
- DrawModel(model, position, 0.2f, WHITE); // Draw 3d model with texture
-
- DrawGrid(10, 1.0f); // Draw a grid
-
- EndMode3D();
-
- DrawText("(c) Watermill 3D model by Alberto Cano", screenWidth - 210, screenHeight - 20, 10, GRAY);
-
- DrawText(FormatText("Camera position: (%.2f, %.2f, %.2f)", camera.position.x, camera.position.y, camera.position.z), 600, 20, 10, BLACK);
- DrawText(FormatText("Camera target: (%.2f, %.2f, %.2f)", camera.target.x, camera.target.y, camera.target.z), 600, 40, 10, GRAY);
-
- DrawFPS(10, 10);
-
- EndDrawing();
- //----------------------------------------------------------------------------------
- }
-
- // De-Initialization
- //--------------------------------------------------------------------------------------
- UnloadShader(shader); // Unload shader
- UnloadTexture(texture); // Unload texture
- UnloadModel(model); // Unload model
-
- CloseWindow(); // Close window and OpenGL context
- //--------------------------------------------------------------------------------------
-
- return 0;
-}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/shaders/shaders_model_shader.cs b/ExampleApplication/Examples/shaders/shaders_model_shader.cs
new file mode 100644
index 0000000..5d3c630
--- /dev/null
+++ b/ExampleApplication/Examples/shaders/shaders_model_shader.cs
@@ -0,0 +1,8 @@
+
+using Raylib;
+using static Raylib.rl;
+
+public partial class Examples
+{
+ /*******************************************************************************************
*
* raylib [shaders] example - Apply a shader to a 3d model
*
* NOTE: This example requires raylib OpenGL 3.3 or ES2 versions for shaders support,
* OpenGL 1.1 does not support shaders, recompile raylib to OpenGL 3.3 version.
*
* NOTE: Shaders used in this example are #version 330 (OpenGL 3.3), to test this example
* on OpenGL ES 2.0 platforms (Android, Raspberry Pi, HTML5), use #version 100 shaders
* raylib comes with shaders ready for both versions, check raylib/shaders install folder
*
* This example has been created using raylib 1.3 (www.raylib.com)
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
*
* Copyright (c) 2014 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
public static int shaders_model_shader()
{
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 800;
int screenHeight = 450;
SetConfigFlags(FLAG_MSAA_4X_HINT); // Enable Multi Sampling Anti Aliasing 4x (if available)
InitWindow(screenWidth, screenHeight, "raylib [shaders] example - model shader");
// Define the camera to look into our 3d world
Camera camera = { 0 };
camera.position = (Vector3){ 4.0f, 4.0f, 4.0f };
camera.target = (Vector3){ 0.0f, 1.0f, -1.0f };
camera.up = (Vector3){ 0.0f, 1.0f, 0.0f };
camera.fovy = 45.0f;
camera.type = CAMERA_PERSPECTIVE;
Model model = LoadModel("resources/models/watermill.obj"); // Load OBJ model
Texture2D texture = LoadTexture("resources/models/watermill_diffuse.png"); // Load model texture
Shader shader = LoadShader("resources/shaders/glsl330/base.vs",
"resources/shaders/glsl330/grayscale.fs"); // Load model shader
model.material.shader = shader; // Set shader effect to 3d model
model.material.maps[MAP_DIFFUSE].texture = texture; // Bind texture to model
Vector3 position = { 0.0f, 0.0f, 0.0f }; // Set model position
SetCameraMode(camera, CAMERA_FREE); // Set an orbital camera mode
SetTargetFPS(60); // Set our game to run at 60 frames-per-second
//--------------------------------------------------------------------------------------
// Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key
{
// Update
//----------------------------------------------------------------------------------
UpdateCamera(&camera); // Update camera
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
ClearBackground(RAYWHITE);
BeginMode3D(camera);
DrawModel(model, position, 0.2f, WHITE); // Draw 3d model with texture
DrawGrid(10, 1.0f); // Draw a grid
EndMode3D();
DrawText("(c) Watermill 3D model by Alberto Cano", screenWidth - 210, screenHeight - 20, 10, GRAY);
DrawText(FormatText("Camera position: (%.2f, %.2f, %.2f)", camera.position.x, camera.position.y, camera.position.z), 600, 20, 10, BLACK);
DrawText(FormatText("Camera target: (%.2f, %.2f, %.2f)", camera.target.x, camera.target.y, camera.target.z), 600, 40, 10, GRAY);
DrawFPS(10, 10);
EndDrawing();
//----------------------------------------------------------------------------------
}
// De-Initialization
//--------------------------------------------------------------------------------------
UnloadShader(shader); // Unload shader
UnloadTexture(texture); // Unload texture
UnloadModel(model); // Unload model
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
return 0;
}
+}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/shaders/shaders_postprocessing.c b/ExampleApplication/Examples/shaders/shaders_postprocessing.c
deleted file mode 100644
index d3f78fd..0000000
--- a/ExampleApplication/Examples/shaders/shaders_postprocessing.c
+++ /dev/null
@@ -1,179 +0,0 @@
-/*******************************************************************************************
-*
-* raylib [shaders] example - Apply a postprocessing shader to a scene
-*
-* NOTE: This example requires raylib OpenGL 3.3 or ES2 versions for shaders support,
-* OpenGL 1.1 does not support shaders, recompile raylib to OpenGL 3.3 version.
-*
-* NOTE: Shaders used in this example are #version 330 (OpenGL 3.3), to test this example
-* on OpenGL ES 2.0 platforms (Android, Raspberry Pi, HTML5), use #version 100 shaders
-* raylib comes with shaders ready for both versions, check raylib/shaders install folder
-*
-* This example has been created using raylib 1.3 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
-*
-* Copyright (c) 2015 Ramon Santamaria (@raysan5)
-*
-********************************************************************************************/
-
-#include "raylib.h"
-
-#if defined(PLATFORM_DESKTOP)
- #define GLSL_VERSION 330
-#else // PLATFORM_RPI, PLATFORM_ANDROID, PLATFORM_WEB
- #define GLSL_VERSION 100
-#endif
-
-#define MAX_POSTPRO_SHADERS 12
-
-typedef enum {
- FX_GRAYSCALE = 0,
- FX_POSTERIZATION,
- FX_DREAM_VISION,
- FX_PIXELIZER,
- FX_CROSS_HATCHING,
- FX_CROSS_STITCHING,
- FX_PREDATOR_VIEW,
- FX_SCANLINES,
- FX_FISHEYE,
- FX_SOBEL,
- FX_BLOOM,
- FX_BLUR,
- //FX_FXAA
-} PostproShader;
-
-static const char *postproShaderText[] = {
- "GRAYSCALE",
- "POSTERIZATION",
- "DREAM_VISION",
- "PIXELIZER",
- "CROSS_HATCHING",
- "CROSS_STITCHING",
- "PREDATOR_VIEW",
- "SCANLINES",
- "FISHEYE",
- "SOBEL",
- "BLOOM",
- "BLUR",
- //"FXAA"
-};
-
-int main()
-{
- // Initialization
- //--------------------------------------------------------------------------------------
- int screenWidth = 800;
- int screenHeight = 450;
-
- SetConfigFlags(FLAG_MSAA_4X_HINT); // Enable Multi Sampling Anti Aliasing 4x (if available)
-
- InitWindow(screenWidth, screenHeight, "raylib [shaders] example - postprocessing shader");
-
- // Define the camera to look into our 3d world
- Camera camera = {{ 2.0f, 3.0f, 2.0f }, { 0.0f, 1.0f, 0.0f }, { 0.0f, 1.0f, 0.0f }, 45.0f, 0 };
-
- Model model = LoadModel("resources/models/church.obj"); // Load OBJ model
- Texture2D texture = LoadTexture("resources/models/church_diffuse.png"); // Load model texture (diffuse map)
- model.material.maps[MAP_DIFFUSE].texture = texture; // Set model diffuse texture
-
- Vector3 position = { 0.0f, 0.0f, 0.0f }; // Set model position
-
- // Load all postpro shaders
- // NOTE 1: All postpro shader use the base vertex shader (DEFAULT_VERTEX_SHADER)
- // NOTE 2: We load the correct shader depending on GLSL version
- Shader shaders[MAX_POSTPRO_SHADERS];
-
- // NOTE: Defining 0 (NULL) for vertex shader forces usage of internal default vertex shader
- shaders[FX_GRAYSCALE] = LoadShader(0, FormatText("resources/shaders/glsl%i/grayscale.fs", GLSL_VERSION));
- shaders[FX_POSTERIZATION] = LoadShader(0, FormatText("resources/shaders/glsl%i/posterization.fs", GLSL_VERSION));
- shaders[FX_DREAM_VISION] = LoadShader(0, FormatText("resources/shaders/glsl%i/dream_vision.fs", GLSL_VERSION));
- shaders[FX_PIXELIZER] = LoadShader(0, FormatText("resources/shaders/glsl%i/pixelizer.fs", GLSL_VERSION));
- shaders[FX_CROSS_HATCHING] = LoadShader(0, FormatText("resources/shaders/glsl%i/cross_hatching.fs", GLSL_VERSION));
- shaders[FX_CROSS_STITCHING] = LoadShader(0, FormatText("resources/shaders/glsl%i/cross_stitching.fs", GLSL_VERSION));
- shaders[FX_PREDATOR_VIEW] = LoadShader(0, FormatText("resources/shaders/glsl%i/predator.fs", GLSL_VERSION));
- shaders[FX_SCANLINES] = LoadShader(0, FormatText("resources/shaders/glsl%i/scanlines.fs", GLSL_VERSION));
- shaders[FX_FISHEYE] = LoadShader(0, FormatText("resources/shaders/glsl%i/fisheye.fs", GLSL_VERSION));
- shaders[FX_SOBEL] = LoadShader(0, FormatText("resources/shaders/glsl%i/sobel.fs", GLSL_VERSION));
- shaders[FX_BLOOM] = LoadShader(0, FormatText("resources/shaders/glsl%i/bloom.fs", GLSL_VERSION));
- shaders[FX_BLUR] = LoadShader(0, FormatText("resources/shaders/glsl%i/blur.fs", GLSL_VERSION));
-
- int currentShader = FX_GRAYSCALE;
-
- // Create a RenderTexture2D to be used for render to texture
- RenderTexture2D target = LoadRenderTexture(screenWidth, screenHeight);
-
- // Setup orbital camera
- SetCameraMode(camera, CAMERA_ORBITAL); // Set an orbital camera mode
-
- SetTargetFPS(60); // Set our game to run at 60 frames-per-second
- //--------------------------------------------------------------------------------------
-
- // Main game loop
- while (!WindowShouldClose()) // Detect window close button or ESC key
- {
- // Update
- //----------------------------------------------------------------------------------
- UpdateCamera(&camera); // Update camera
-
- if (IsKeyPressed(KEY_RIGHT)) currentShader++;
- else if (IsKeyPressed(KEY_LEFT)) currentShader--;
-
- if (currentShader >= MAX_POSTPRO_SHADERS) currentShader = 0;
- else if (currentShader < 0) currentShader = MAX_POSTPRO_SHADERS - 1;
- //----------------------------------------------------------------------------------
-
- // Draw
- //----------------------------------------------------------------------------------
- BeginDrawing();
-
- ClearBackground(RAYWHITE);
-
- BeginTextureMode(target); // Enable drawing to texture
-
- BeginMode3D(camera);
-
- DrawModel(model, position, 0.1f, WHITE); // Draw 3d model with texture
-
- DrawGrid(10, 1.0f); // Draw a grid
-
- EndMode3D();
-
- EndTextureMode(); // End drawing to texture (now we have a texture available for next passes)
-
- // Render previously generated texture using selected postpro shader
- BeginShaderMode(shaders[currentShader]);
-
- // NOTE: Render texture must be y-flipped due to default OpenGL coordinates (left-bottom)
- DrawTextureRec(target.texture, (Rectangle){ 0, 0, target.texture.width, -target.texture.height }, (Vector2){ 0, 0 }, WHITE);
-
- EndShaderMode();
-
- DrawRectangle(0, 9, 580, 30, Fade(LIGHTGRAY, 0.7f));
-
- DrawText("(c) Church 3D model by Alberto Cano", screenWidth - 200, screenHeight - 20, 10, GRAY);
-
- DrawText("CURRENT POSTPRO SHADER:", 10, 15, 20, BLACK);
- DrawText(postproShaderText[currentShader], 330, 15, 20, RED);
- DrawText("< >", 540, 10, 30, DARKBLUE);
-
- DrawFPS(700, 15);
-
- EndDrawing();
- //----------------------------------------------------------------------------------
- }
-
- // De-Initialization
- //--------------------------------------------------------------------------------------
-
- // Unload all postpro shaders
- for (int i = 0; i < MAX_POSTPRO_SHADERS; i++) UnloadShader(shaders[i]);
-
- UnloadTexture(texture); // Unload texture
- UnloadModel(model); // Unload model
- UnloadRenderTexture(target); // Unload render texture
-
- CloseWindow(); // Close window and OpenGL context
- //--------------------------------------------------------------------------------------
-
- return 0;
-}
diff --git a/ExampleApplication/Examples/shaders/shaders_postprocessing.cs b/ExampleApplication/Examples/shaders/shaders_postprocessing.cs
new file mode 100644
index 0000000..291d25c
--- /dev/null
+++ b/ExampleApplication/Examples/shaders/shaders_postprocessing.cs
@@ -0,0 +1,8 @@
+
+using Raylib;
+using static Raylib.rl;
+
+public partial class Examples
+{
+ /*******************************************************************************************
*
* raylib [shaders] example - Apply a postprocessing shader to a scene
*
* NOTE: This example requires raylib OpenGL 3.3 or ES2 versions for shaders support,
* OpenGL 1.1 does not support shaders, recompile raylib to OpenGL 3.3 version.
*
* NOTE: Shaders used in this example are #version 330 (OpenGL 3.3), to test this example
* on OpenGL ES 2.0 platforms (Android, Raspberry Pi, HTML5), use #version 100 shaders
* raylib comes with shaders ready for both versions, check raylib/shaders install folder
*
* This example has been created using raylib 1.3 (www.raylib.com)
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
*
* Copyright (c) 2015 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
#if defined(PLATFORM_DESKTOP)
#define GLSL_VERSION 330
#else // PLATFORM_RPI, PLATFORM_ANDROID, PLATFORM_WEB
#define GLSL_VERSION 100
#endif
#define MAX_POSTPRO_SHADERS 12
typedef enum {
FX_GRAYSCALE = 0,
FX_POSTERIZATION,
FX_DREAM_VISION,
FX_PIXELIZER,
FX_CROSS_HATCHING,
FX_CROSS_STITCHING,
FX_PREDATOR_VIEW,
FX_SCANLINES,
FX_FISHEYE,
FX_SOBEL,
FX_BLOOM,
FX_BLUR,
//FX_FXAA
} PostproShader;
static const char *postproShaderText[] = {
"GRAYSCALE",
"POSTERIZATION",
"DREAM_VISION",
"PIXELIZER",
"CROSS_HATCHING",
"CROSS_STITCHING",
"PREDATOR_VIEW",
"SCANLINES",
"FISHEYE",
"SOBEL",
"BLOOM",
"BLUR",
//"FXAA"
};
public static int shaders_postprocessing()
{
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 800;
int screenHeight = 450;
SetConfigFlags(FLAG_MSAA_4X_HINT); // Enable Multi Sampling Anti Aliasing 4x (if available)
InitWindow(screenWidth, screenHeight, "raylib [shaders] example - postprocessing shader");
// Define the camera to look into our 3d world
Camera camera = {{ 2.0f, 3.0f, 2.0f }, { 0.0f, 1.0f, 0.0f }, { 0.0f, 1.0f, 0.0f }, 45.0f, 0 };
Model model = LoadModel("resources/models/church.obj"); // Load OBJ model
Texture2D texture = LoadTexture("resources/models/church_diffuse.png"); // Load model texture (diffuse map)
model.material.maps[MAP_DIFFUSE].texture = texture; // Set model diffuse texture
Vector3 position = { 0.0f, 0.0f, 0.0f }; // Set model position
// Load all postpro shaders
// NOTE 1: All postpro shader use the base vertex shader (DEFAULT_VERTEX_SHADER)
// NOTE 2: We load the correct shader depending on GLSL version
Shader shaders[MAX_POSTPRO_SHADERS];
// NOTE: Defining 0 (NULL) for vertex shader forces usage of internal default vertex shader
shaders[FX_GRAYSCALE] = LoadShader(0, FormatText("resources/shaders/glsl%i/grayscale.fs", GLSL_VERSION));
shaders[FX_POSTERIZATION] = LoadShader(0, FormatText("resources/shaders/glsl%i/posterization.fs", GLSL_VERSION));
shaders[FX_DREAM_VISION] = LoadShader(0, FormatText("resources/shaders/glsl%i/dream_vision.fs", GLSL_VERSION));
shaders[FX_PIXELIZER] = LoadShader(0, FormatText("resources/shaders/glsl%i/pixelizer.fs", GLSL_VERSION));
shaders[FX_CROSS_HATCHING] = LoadShader(0, FormatText("resources/shaders/glsl%i/cross_hatching.fs", GLSL_VERSION));
shaders[FX_CROSS_STITCHING] = LoadShader(0, FormatText("resources/shaders/glsl%i/cross_stitching.fs", GLSL_VERSION));
shaders[FX_PREDATOR_VIEW] = LoadShader(0, FormatText("resources/shaders/glsl%i/predator.fs", GLSL_VERSION));
shaders[FX_SCANLINES] = LoadShader(0, FormatText("resources/shaders/glsl%i/scanlines.fs", GLSL_VERSION));
shaders[FX_FISHEYE] = LoadShader(0, FormatText("resources/shaders/glsl%i/fisheye.fs", GLSL_VERSION));
shaders[FX_SOBEL] = LoadShader(0, FormatText("resources/shaders/glsl%i/sobel.fs", GLSL_VERSION));
shaders[FX_BLOOM] = LoadShader(0, FormatText("resources/shaders/glsl%i/bloom.fs", GLSL_VERSION));
shaders[FX_BLUR] = LoadShader(0, FormatText("resources/shaders/glsl%i/blur.fs", GLSL_VERSION));
int currentShader = FX_GRAYSCALE;
// Create a RenderTexture2D to be used for render to texture
RenderTexture2D target = LoadRenderTexture(screenWidth, screenHeight);
// Setup orbital camera
SetCameraMode(camera, CAMERA_ORBITAL); // Set an orbital camera mode
SetTargetFPS(60); // Set our game to run at 60 frames-per-second
//--------------------------------------------------------------------------------------
// Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key
{
// Update
//----------------------------------------------------------------------------------
UpdateCamera(&camera); // Update camera
if (IsKeyPressed(KEY_RIGHT)) currentShader++;
else if (IsKeyPressed(KEY_LEFT)) currentShader--;
if (currentShader >= MAX_POSTPRO_SHADERS) currentShader = 0;
else if (currentShader < 0) currentShader = MAX_POSTPRO_SHADERS - 1;
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
ClearBackground(RAYWHITE);
BeginTextureMode(target); // Enable drawing to texture
BeginMode3D(camera);
DrawModel(model, position, 0.1f, WHITE); // Draw 3d model with texture
DrawGrid(10, 1.0f); // Draw a grid
EndMode3D();
EndTextureMode(); // End drawing to texture (now we have a texture available for next passes)
// Render previously generated texture using selected postpro shader
BeginShaderMode(shaders[currentShader]);
// NOTE: Render texture must be y-flipped due to default OpenGL coordinates (left-bottom)
DrawTextureRec(target.texture, (Rectangle){ 0, 0, target.texture.width, -target.texture.height }, (Vector2){ 0, 0 }, WHITE);
EndShaderMode();
DrawRectangle(0, 9, 580, 30, Fade(LIGHTGRAY, 0.7f));
DrawText("(c) Church 3D model by Alberto Cano", screenWidth - 200, screenHeight - 20, 10, GRAY);
DrawText("CURRENT POSTPRO SHADER:", 10, 15, 20, BLACK);
DrawText(postproShaderText[currentShader], 330, 15, 20, RED);
DrawText("< >", 540, 10, 30, DARKBLUE);
DrawFPS(700, 15);
EndDrawing();
//----------------------------------------------------------------------------------
}
// De-Initialization
//--------------------------------------------------------------------------------------
// Unload all postpro shaders
for (int i = 0; i < MAX_POSTPRO_SHADERS; i++) UnloadShader(shaders[i]);
UnloadTexture(texture); // Unload texture
UnloadModel(model); // Unload model
UnloadRenderTexture(target); // Unload render texture
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
return 0;
}
+}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/shaders/shaders_shapes_textures.c b/ExampleApplication/Examples/shaders/shaders_shapes_textures.c
deleted file mode 100644
index e8c36a1..0000000
--- a/ExampleApplication/Examples/shaders/shaders_shapes_textures.c
+++ /dev/null
@@ -1,109 +0,0 @@
-/*******************************************************************************************
-*
-* raylib [shaders] example - Apply a shader to some shape or texture
-*
-* NOTE: This example requires raylib OpenGL 3.3 or ES2 versions for shaders support,
-* OpenGL 1.1 does not support shaders, recompile raylib to OpenGL 3.3 version.
-*
-* NOTE: Shaders used in this example are #version 330 (OpenGL 3.3), to test this example
-* on OpenGL ES 2.0 platforms (Android, Raspberry Pi, HTML5), use #version 100 shaders
-* raylib comes with shaders ready for both versions, check raylib/shaders install folder
-*
-* 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) 2015 Ramon Santamaria (@raysan5)
-*
-********************************************************************************************/
-
-#include "raylib.h"
-
-int main()
-{
- // Initialization
- //--------------------------------------------------------------------------------------
- int screenWidth = 800;
- int screenHeight = 450;
-
- InitWindow(screenWidth, screenHeight, "raylib [shaders] example - shapes and texture shaders");
-
- Texture2D fudesumi = LoadTexture("resources/fudesumi.png");
-
- // NOTE: Using GLSL 330 shader version, on OpenGL ES 2.0 use GLSL 100 shader version
- Shader shader = LoadShader("resources/shaders/glsl330/base.vs",
- "resources/shaders/glsl330/grayscale.fs");
-
- SetTargetFPS(60);
- //--------------------------------------------------------------------------------------
-
- // Main game loop
- while (!WindowShouldClose()) // Detect window close button or ESC key
- {
- // Update
- //----------------------------------------------------------------------------------
- // TODO: Update your variables here
- //----------------------------------------------------------------------------------
-
- // Draw
- //----------------------------------------------------------------------------------
- BeginDrawing();
-
- ClearBackground(RAYWHITE);
-
- // Start drawing with default shader
-
- DrawText("USING DEFAULT SHADER", 20, 40, 10, RED);
-
- DrawCircle(80, 120, 35, DARKBLUE);
- DrawCircleGradient(80, 220, 60, GREEN, SKYBLUE);
- DrawCircleLines(80, 340, 80, DARKBLUE);
-
-
- // Activate our custom shader to be applied on next shapes/textures drawings
- BeginShaderMode(shader);
-
- DrawText("USING CUSTOM SHADER", 190, 40, 10, RED);
-
- DrawRectangle(250 - 60, 90, 120, 60, RED);
- DrawRectangleGradientH(250 - 90, 170, 180, 130, MAROON, GOLD);
- DrawRectangleLines(250 - 40, 320, 80, 60, ORANGE);
-
- // Activate our default shader for next drawings
- EndShaderMode();
-
- DrawText("USING DEFAULT SHADER", 370, 40, 10, RED);
-
- DrawTriangle((Vector2){430, 80},
- (Vector2){430 - 60, 150},
- (Vector2){430 + 60, 150}, VIOLET);
-
- DrawTriangleLines((Vector2){430, 160},
- (Vector2){430 - 20, 230},
- (Vector2){430 + 20, 230}, DARKBLUE);
-
- DrawPoly((Vector2){430, 320}, 6, 80, 0, BROWN);
-
- // Activate our custom shader to be applied on next shapes/textures drawings
- BeginShaderMode(shader);
-
- DrawTexture(fudesumi, 500, -30, WHITE); // Using custom shader
-
- // Activate our default shader for next drawings
- EndShaderMode();
-
- DrawText("(c) Fudesumi sprite by Eiden Marsal", 380, screenHeight - 20, 10, GRAY);
-
- EndDrawing();
- //----------------------------------------------------------------------------------
- }
-
- // De-Initialization
- //--------------------------------------------------------------------------------------
- UnloadShader(shader); // Unload shader
- UnloadTexture(fudesumi); // Unload texture
-
- CloseWindow(); // Close window and OpenGL context
- //--------------------------------------------------------------------------------------
-
- return 0;
-}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/shaders/shaders_shapes_textures.cs b/ExampleApplication/Examples/shaders/shaders_shapes_textures.cs
new file mode 100644
index 0000000..5362f33
--- /dev/null
+++ b/ExampleApplication/Examples/shaders/shaders_shapes_textures.cs
@@ -0,0 +1,8 @@
+
+using Raylib;
+using static Raylib.rl;
+
+public partial class Examples
+{
+ /*******************************************************************************************
*
* raylib [shaders] example - Apply a shader to some shape or texture
*
* NOTE: This example requires raylib OpenGL 3.3 or ES2 versions for shaders support,
* OpenGL 1.1 does not support shaders, recompile raylib to OpenGL 3.3 version.
*
* NOTE: Shaders used in this example are #version 330 (OpenGL 3.3), to test this example
* on OpenGL ES 2.0 platforms (Android, Raspberry Pi, HTML5), use #version 100 shaders
* raylib comes with shaders ready for both versions, check raylib/shaders install folder
*
* 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) 2015 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
public static int shaders_shapes_textures()
{
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 800;
int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "raylib [shaders] example - shapes and texture shaders");
Texture2D fudesumi = LoadTexture("resources/fudesumi.png");
// NOTE: Using GLSL 330 shader version, on OpenGL ES 2.0 use GLSL 100 shader version
Shader shader = LoadShader("resources/shaders/glsl330/base.vs",
"resources/shaders/glsl330/grayscale.fs");
SetTargetFPS(60);
//--------------------------------------------------------------------------------------
// Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key
{
// Update
//----------------------------------------------------------------------------------
// TODO: Update your variables here
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
ClearBackground(RAYWHITE);
// Start drawing with default shader
DrawText("USING DEFAULT SHADER", 20, 40, 10, RED);
DrawCircle(80, 120, 35, DARKBLUE);
DrawCircleGradient(80, 220, 60, GREEN, SKYBLUE);
DrawCircleLines(80, 340, 80, DARKBLUE);
// Activate our custom shader to be applied on next shapes/textures drawings
BeginShaderMode(shader);
DrawText("USING CUSTOM SHADER", 190, 40, 10, RED);
DrawRectangle(250 - 60, 90, 120, 60, RED);
DrawRectangleGradientH(250 - 90, 170, 180, 130, MAROON, GOLD);
DrawRectangleLines(250 - 40, 320, 80, 60, ORANGE);
// Activate our default shader for next drawings
EndShaderMode();
DrawText("USING DEFAULT SHADER", 370, 40, 10, RED);
DrawTriangle((Vector2){430, 80},
(Vector2){430 - 60, 150},
(Vector2){430 + 60, 150}, VIOLET);
DrawTriangleLines((Vector2){430, 160},
(Vector2){430 - 20, 230},
(Vector2){430 + 20, 230}, DARKBLUE);
DrawPoly((Vector2){430, 320}, 6, 80, 0, BROWN);
// Activate our custom shader to be applied on next shapes/textures drawings
BeginShaderMode(shader);
DrawTexture(fudesumi, 500, -30, WHITE); // Using custom shader
// Activate our default shader for next drawings
EndShaderMode();
DrawText("(c) Fudesumi sprite by Eiden Marsal", 380, screenHeight - 20, 10, GRAY);
EndDrawing();
//----------------------------------------------------------------------------------
}
// De-Initialization
//--------------------------------------------------------------------------------------
UnloadShader(shader); // Unload shader
UnloadTexture(fudesumi); // Unload texture
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
return 0;
}
+}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/shapes/shapes_basic_shapes.cs b/ExampleApplication/Examples/shapes/shapes_basic_shapes.cs
index 08bb01d..d1cdd31 100644
--- a/ExampleApplication/Examples/shapes/shapes_basic_shapes.cs
+++ b/ExampleApplication/Examples/shapes/shapes_basic_shapes.cs
@@ -1,76 +1,8 @@
-/*******************************************************************************************
-*
-* raylib [shapes] example - Draw basic shapes 2d (rectangle, circle, line...)
-*
-* This example has been created using raylib 1.0 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
-*
-* Copyright (c) 2014 Ramon Santamaria (@raysan5)
-*
-********************************************************************************************/
-
-using Raylib;
-using static Raylib.rl;
-
-public partial class Examples
-{
- public static int shapes_basic_shapes()
- {
- // Initialization
- //--------------------------------------------------------------------------------------
- int screenWidth = 800;
- int screenHeight = 450;
-
- InitWindow(screenWidth, screenHeight, "raylib [shapes] example - basic shapes drawing");
-
- SetTargetFPS(60);
- //--------------------------------------------------------------------------------------
-
- // Main game loop
- while (!WindowShouldClose()) // Detect window close button or ESC key
- {
- // Update
- //----------------------------------------------------------------------------------
- // TODO: Update your variables here
- //----------------------------------------------------------------------------------
-
- // Draw
- //----------------------------------------------------------------------------------
- BeginDrawing();
-
- ClearBackground(RAYWHITE);
-
- DrawText("some basic shapes available on raylib", 20, 20, 20, DARKGRAY);
-
- DrawLine(18, 42, screenWidth - 18, 42, BLACK);
-
- DrawCircle(screenWidth / 4, 120, 35, DARKBLUE);
- DrawCircleGradient(screenWidth / 4, 220, 60, GREEN, SKYBLUE);
- DrawCircleLines(screenWidth / 4, 340, 80, DARKBLUE);
-
- DrawRectangle(screenWidth / 4 * 2 - 60, 100, 120, 60, RED);
- DrawRectangleGradientH(screenWidth / 4 * 2 - 90, 170, 180, 130, MAROON, GOLD);
- DrawRectangleLines(screenWidth / 4 * 2 - 40, 320, 80, 60, ORANGE);
-
- DrawTriangle(new Vector2(screenWidth, 80),
- new Vector2(screenWidth / 4 * 3 - 60, 150),
- new Vector2(screenWidth / 4 * 3 + 60, 150), VIOLET);
-
- DrawTriangleLines(new Vector2(screenWidth / 4 * 3, 160),
- new Vector2(screenWidth / 4 * 3 - 20, 230),
- new Vector2(screenWidth / 4 * 3 + 20, 230), DARKBLUE);
-
- DrawPoly(new Vector2(screenWidth / 4 * 3, 320), 6, 80, 0, BROWN);
-
- EndDrawing();
- //----------------------------------------------------------------------------------
- }
-
- // De-Initialization
- //--------------------------------------------------------------------------------------
- CloseWindow(); // Close window and OpenGL context
- //--------------------------------------------------------------------------------------
-
- return 0;
- }
+
+using Raylib;
+using static Raylib.rl;
+
+public partial class Examples
+{
+ /*******************************************************************************************
*
* raylib [shapes] example - Draw basic shapes 2d (rectangle, circle, line...)
*
* This example has been created using raylib 1.0 (www.raylib.com)
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
*
* Copyright (c) 2014 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
public static int shapes_basic_shapes()
{
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 800;
int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "raylib [shapes] example - basic shapes drawing");
SetTargetFPS(60);
//--------------------------------------------------------------------------------------
// Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key
{
// Update
//----------------------------------------------------------------------------------
// TODO: Update your variables here
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
ClearBackground(RAYWHITE);
DrawText("some basic shapes available on raylib", 20, 20, 20, DARKGRAY);
DrawLine(18, 42, screenWidth - 18, 42, BLACK);
DrawCircle(screenWidth/4, 120, 35, DARKBLUE);
DrawCircleGradient(screenWidth/4, 220, 60, GREEN, SKYBLUE);
DrawCircleLines(screenWidth/4, 340, 80, DARKBLUE);
DrawRectangle(screenWidth/4*2 - 60, 100, 120, 60, RED);
DrawRectangleGradientH(screenWidth/4*2 - 90, 170, 180, 130, MAROON, GOLD);
DrawRectangleLines(screenWidth/4*2 - 40, 320, 80, 60, ORANGE);
DrawTriangle((Vector2){screenWidth/4*3, 80},
(Vector2){screenWidth/4*3 - 60, 150},
(Vector2){screenWidth/4*3 + 60, 150}, VIOLET);
DrawTriangleLines((Vector2){screenWidth/4*3, 160},
(Vector2){screenWidth/4*3 - 20, 230},
(Vector2){screenWidth/4*3 + 20, 230}, DARKBLUE);
DrawPoly((Vector2){screenWidth/4*3, 320}, 6, 80, 0, BROWN);
EndDrawing();
//----------------------------------------------------------------------------------
}
// De-Initialization
//--------------------------------------------------------------------------------------
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
return 0;
}
}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/shapes/shapes_colors_palette.c b/ExampleApplication/Examples/shapes/shapes_colors_palette.c
deleted file mode 100644
index dcab862..0000000
--- a/ExampleApplication/Examples/shapes/shapes_colors_palette.c
+++ /dev/null
@@ -1,97 +0,0 @@
-/*******************************************************************************************
-*
-* raylib [shapes] example - Draw raylib custom color palette
-*
-* This example has been created using raylib 1.0 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
-*
-* Copyright (c) 2014 Ramon Santamaria (@raysan5)
-*
-********************************************************************************************/
-
-#include "raylib.h"
-
-int main()
-{
- // Initialization
- //--------------------------------------------------------------------------------------
- int screenWidth = 800;
- int screenHeight = 450;
-
- InitWindow(screenWidth, screenHeight, "raylib [shapes] example - raylib color palette");
-
- SetTargetFPS(60);
- //--------------------------------------------------------------------------------------
-
- // Main game loop
- while (!WindowShouldClose()) // Detect window close button or ESC key
- {
- // Update
- //----------------------------------------------------------------------------------
- // TODO: Update your variables here
- //----------------------------------------------------------------------------------
-
- // Draw
- //----------------------------------------------------------------------------------
- BeginDrawing();
-
- ClearBackground(RAYWHITE);
-
- DrawText("raylib color palette", 28, 42, 20, BLACK);
-
- DrawRectangle(26, 80, 100, 100, DARKGRAY);
- DrawRectangle(26, 188, 100, 100, GRAY);
- DrawRectangle(26, 296, 100, 100, LIGHTGRAY);
- DrawRectangle(134, 80, 100, 100, MAROON);
- DrawRectangle(134, 188, 100, 100, RED);
- DrawRectangle(134, 296, 100, 100, PINK);
- DrawRectangle(242, 80, 100, 100, ORANGE);
- DrawRectangle(242, 188, 100, 100, GOLD);
- DrawRectangle(242, 296, 100, 100, YELLOW);
- DrawRectangle(350, 80, 100, 100, DARKGREEN);
- DrawRectangle(350, 188, 100, 100, LIME);
- DrawRectangle(350, 296, 100, 100, GREEN);
- DrawRectangle(458, 80, 100, 100, DARKBLUE);
- DrawRectangle(458, 188, 100, 100, BLUE);
- DrawRectangle(458, 296, 100, 100, SKYBLUE);
- DrawRectangle(566, 80, 100, 100, DARKPURPLE);
- DrawRectangle(566, 188, 100, 100, VIOLET);
- DrawRectangle(566, 296, 100, 100, PURPLE);
- DrawRectangle(674, 80, 100, 100, DARKBROWN);
- DrawRectangle(674, 188, 100, 100, BROWN);
- DrawRectangle(674, 296, 100, 100, BEIGE);
-
-
- DrawText("DARKGRAY", 65, 166, 10, BLACK);
- DrawText("GRAY", 93, 274, 10, BLACK);
- DrawText("LIGHTGRAY", 61, 382, 10, BLACK);
- DrawText("MAROON", 186, 166, 10, BLACK);
- DrawText("RED", 208, 274, 10, BLACK);
- DrawText("PINK", 204, 382, 10, BLACK);
- DrawText("ORANGE", 295, 166, 10, BLACK);
- DrawText("GOLD", 310, 274, 10, BLACK);
- DrawText("YELLOW", 300, 382, 10, BLACK);
- DrawText("DARKGREEN", 382, 166, 10, BLACK);
- DrawText("LIME", 420, 274, 10, BLACK);
- DrawText("GREEN", 410, 382, 10, BLACK);
- DrawText("DARKBLUE", 498, 166, 10, BLACK);
- DrawText("BLUE", 526, 274, 10, BLACK);
- DrawText("SKYBLUE", 505, 382, 10, BLACK);
- DrawText("DARKPURPLE", 592, 166, 10, BLACK);
- DrawText("VIOLET", 621, 274, 10, BLACK);
- DrawText("PURPLE", 620, 382, 10, BLACK);
- DrawText("DARKBROWN", 705, 166, 10, BLACK);
- DrawText("BROWN", 733, 274, 10, BLACK);
- DrawText("BEIGE", 737, 382, 10, BLACK);
-
- EndDrawing();
- //----------------------------------------------------------------------------------
- }
-
- // De-Initialization
- //--------------------------------------------------------------------------------------
- CloseWindow(); // Close window and OpenGL context
- //--------------------------------------------------------------------------------------
-
- return 0;
-}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/shapes/shapes_colors_palette.cs b/ExampleApplication/Examples/shapes/shapes_colors_palette.cs
new file mode 100644
index 0000000..8e42dd2
--- /dev/null
+++ b/ExampleApplication/Examples/shapes/shapes_colors_palette.cs
@@ -0,0 +1,8 @@
+
+using Raylib;
+using static Raylib.rl;
+
+public partial class Examples
+{
+ /*******************************************************************************************
*
* raylib [shapes] example - Draw raylib custom color palette
*
* This example has been created using raylib 1.0 (www.raylib.com)
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
*
* Copyright (c) 2014 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
public static int shapes_colors_palette()
{
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 800;
int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "raylib [shapes] example - raylib color palette");
SetTargetFPS(60);
//--------------------------------------------------------------------------------------
// Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key
{
// Update
//----------------------------------------------------------------------------------
// TODO: Update your variables here
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
ClearBackground(RAYWHITE);
DrawText("raylib color palette", 28, 42, 20, BLACK);
DrawRectangle(26, 80, 100, 100, DARKGRAY);
DrawRectangle(26, 188, 100, 100, GRAY);
DrawRectangle(26, 296, 100, 100, LIGHTGRAY);
DrawRectangle(134, 80, 100, 100, MAROON);
DrawRectangle(134, 188, 100, 100, RED);
DrawRectangle(134, 296, 100, 100, PINK);
DrawRectangle(242, 80, 100, 100, ORANGE);
DrawRectangle(242, 188, 100, 100, GOLD);
DrawRectangle(242, 296, 100, 100, YELLOW);
DrawRectangle(350, 80, 100, 100, DARKGREEN);
DrawRectangle(350, 188, 100, 100, LIME);
DrawRectangle(350, 296, 100, 100, GREEN);
DrawRectangle(458, 80, 100, 100, DARKBLUE);
DrawRectangle(458, 188, 100, 100, BLUE);
DrawRectangle(458, 296, 100, 100, SKYBLUE);
DrawRectangle(566, 80, 100, 100, DARKPURPLE);
DrawRectangle(566, 188, 100, 100, VIOLET);
DrawRectangle(566, 296, 100, 100, PURPLE);
DrawRectangle(674, 80, 100, 100, DARKBROWN);
DrawRectangle(674, 188, 100, 100, BROWN);
DrawRectangle(674, 296, 100, 100, BEIGE);
DrawText("DARKGRAY", 65, 166, 10, BLACK);
DrawText("GRAY", 93, 274, 10, BLACK);
DrawText("LIGHTGRAY", 61, 382, 10, BLACK);
DrawText("MAROON", 186, 166, 10, BLACK);
DrawText("RED", 208, 274, 10, BLACK);
DrawText("PINK", 204, 382, 10, BLACK);
DrawText("ORANGE", 295, 166, 10, BLACK);
DrawText("GOLD", 310, 274, 10, BLACK);
DrawText("YELLOW", 300, 382, 10, BLACK);
DrawText("DARKGREEN", 382, 166, 10, BLACK);
DrawText("LIME", 420, 274, 10, BLACK);
DrawText("GREEN", 410, 382, 10, BLACK);
DrawText("DARKBLUE", 498, 166, 10, BLACK);
DrawText("BLUE", 526, 274, 10, BLACK);
DrawText("SKYBLUE", 505, 382, 10, BLACK);
DrawText("DARKPURPLE", 592, 166, 10, BLACK);
DrawText("VIOLET", 621, 274, 10, BLACK);
DrawText("PURPLE", 620, 382, 10, BLACK);
DrawText("DARKBROWN", 705, 166, 10, BLACK);
DrawText("BROWN", 733, 274, 10, BLACK);
DrawText("BEIGE", 737, 382, 10, BLACK);
EndDrawing();
//----------------------------------------------------------------------------------
}
// De-Initialization
//--------------------------------------------------------------------------------------
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
return 0;
}
+}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/shapes/shapes_lines_bezier.c b/ExampleApplication/Examples/shapes/shapes_lines_bezier.c
deleted file mode 100644
index f413345..0000000
--- a/ExampleApplication/Examples/shapes/shapes_lines_bezier.c
+++ /dev/null
@@ -1,59 +0,0 @@
-/*******************************************************************************************
-*
-* raylib [shapes] example - Cubic-bezier lines
-*
-* 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)
-*
-********************************************************************************************/
-
-#include "raylib.h"
-
-int main()
-{
- // Initialization
- //--------------------------------------------------------------------------------------
- int screenWidth = 800;
- int screenHeight = 450;
-
- SetConfigFlags(FLAG_MSAA_4X_HINT);
- InitWindow(screenWidth, screenHeight, "raylib [shapes] example - cubic-bezier lines");
-
- Vector2 start = { 0, 0 };
- Vector2 end = { screenWidth, screenHeight };
-
- SetTargetFPS(60);
- //--------------------------------------------------------------------------------------
-
- // Main game loop
- while (!WindowShouldClose()) // Detect window close button or ESC key
- {
- // Update
- //----------------------------------------------------------------------------------
- if (IsMouseButtonDown(MOUSE_LEFT_BUTTON)) start = GetMousePosition();
- else if (IsMouseButtonDown(MOUSE_RIGHT_BUTTON)) end = GetMousePosition();
- //----------------------------------------------------------------------------------
-
- // Draw
- //----------------------------------------------------------------------------------
- BeginDrawing();
-
- ClearBackground(RAYWHITE);
-
- DrawText("USE MOUSE LEFT-RIGHT CLICK to DEFINE LINE START and END POINTS", 15, 20, 20, GRAY);
-
- DrawLineBezier(start, end, 2.0f, RED);
-
- EndDrawing();
- //----------------------------------------------------------------------------------
- }
-
- // De-Initialization
- //--------------------------------------------------------------------------------------
- CloseWindow(); // Close window and OpenGL context
- //--------------------------------------------------------------------------------------
-
- return 0;
-}
diff --git a/ExampleApplication/Examples/shapes/shapes_lines_bezier.cs b/ExampleApplication/Examples/shapes/shapes_lines_bezier.cs
new file mode 100644
index 0000000..d01cd68
--- /dev/null
+++ b/ExampleApplication/Examples/shapes/shapes_lines_bezier.cs
@@ -0,0 +1,8 @@
+
+using Raylib;
+using static Raylib.rl;
+
+public partial class Examples
+{
+ /*******************************************************************************************
*
* raylib [shapes] example - Cubic-bezier lines
*
* 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)
*
********************************************************************************************/
public static int shapes_lines_bezier()
{
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 800;
int screenHeight = 450;
SetConfigFlags(FLAG_MSAA_4X_HINT);
InitWindow(screenWidth, screenHeight, "raylib [shapes] example - cubic-bezier lines");
Vector2 start = { 0, 0 };
Vector2 end = { screenWidth, screenHeight };
SetTargetFPS(60);
//--------------------------------------------------------------------------------------
// Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key
{
// Update
//----------------------------------------------------------------------------------
if (IsMouseButtonDown(MOUSE_LEFT_BUTTON)) start = GetMousePosition();
else if (IsMouseButtonDown(MOUSE_RIGHT_BUTTON)) end = GetMousePosition();
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
ClearBackground(RAYWHITE);
DrawText("USE MOUSE LEFT-RIGHT CLICK to DEFINE LINE START and END POINTS", 15, 20, 20, GRAY);
DrawLineBezier(start, end, 2.0f, RED);
EndDrawing();
//----------------------------------------------------------------------------------
}
// De-Initialization
//--------------------------------------------------------------------------------------
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
return 0;
}
+}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/shapes/shapes_logo_raylib.c b/ExampleApplication/Examples/shapes/shapes_logo_raylib.c
deleted file mode 100644
index be94988..0000000
--- a/ExampleApplication/Examples/shapes/shapes_logo_raylib.c
+++ /dev/null
@@ -1,56 +0,0 @@
-/*******************************************************************************************
-*
-* raylib [shapes] example - Draw raylib logo using basic shapes
-*
-* This example has been created using raylib 1.0 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
-*
-* Copyright (c) 2014 Ramon Santamaria (@raysan5)
-*
-********************************************************************************************/
-
-#include "raylib.h"
-
-int main()
-{
- // Initialization
- //--------------------------------------------------------------------------------------
- int screenWidth = 800;
- int screenHeight = 450;
-
- InitWindow(screenWidth, screenHeight, "raylib [shapes] example - raylib logo using shapes");
-
- SetTargetFPS(60);
- //--------------------------------------------------------------------------------------
-
- // Main game loop
- while (!WindowShouldClose()) // Detect window close button or ESC key
- {
- // Update
- //----------------------------------------------------------------------------------
- // TODO: Update your variables here
- //----------------------------------------------------------------------------------
-
- // Draw
- //----------------------------------------------------------------------------------
- BeginDrawing();
-
- ClearBackground(RAYWHITE);
-
- DrawRectangle(screenWidth/2 - 128, screenHeight/2 - 128, 256, 256, BLACK);
- DrawRectangle(screenWidth/2 - 112, screenHeight/2 - 112, 224, 224, RAYWHITE);
- DrawText("raylib", screenWidth/2 - 44, screenHeight/2 + 48, 50, BLACK);
-
- DrawText("this is NOT a texture!", 350, 370, 10, GRAY);
-
- EndDrawing();
- //----------------------------------------------------------------------------------
- }
-
- // De-Initialization
- //--------------------------------------------------------------------------------------
- CloseWindow(); // Close window and OpenGL context
- //--------------------------------------------------------------------------------------
-
- return 0;
-}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/shapes/shapes_logo_raylib.cs b/ExampleApplication/Examples/shapes/shapes_logo_raylib.cs
new file mode 100644
index 0000000..a56e667
--- /dev/null
+++ b/ExampleApplication/Examples/shapes/shapes_logo_raylib.cs
@@ -0,0 +1,8 @@
+
+using Raylib;
+using static Raylib.rl;
+
+public partial class Examples
+{
+ /*******************************************************************************************
*
* raylib [shapes] example - Draw raylib logo using basic shapes
*
* This example has been created using raylib 1.0 (www.raylib.com)
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
*
* Copyright (c) 2014 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
public static int shapes_logo_raylib()
{
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 800;
int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "raylib [shapes] example - raylib logo using shapes");
SetTargetFPS(60);
//--------------------------------------------------------------------------------------
// Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key
{
// Update
//----------------------------------------------------------------------------------
// TODO: Update your variables here
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
ClearBackground(RAYWHITE);
DrawRectangle(screenWidth/2 - 128, screenHeight/2 - 128, 256, 256, BLACK);
DrawRectangle(screenWidth/2 - 112, screenHeight/2 - 112, 224, 224, RAYWHITE);
DrawText("raylib", screenWidth/2 - 44, screenHeight/2 + 48, 50, BLACK);
DrawText("this is NOT a texture!", 350, 370, 10, GRAY);
EndDrawing();
//----------------------------------------------------------------------------------
}
// De-Initialization
//--------------------------------------------------------------------------------------
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
return 0;
}
+}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/shapes/shapes_logo_raylib_anim.c b/ExampleApplication/Examples/shapes/shapes_logo_raylib_anim.c
deleted file mode 100644
index c6d3796..0000000
--- a/ExampleApplication/Examples/shapes/shapes_logo_raylib_anim.c
+++ /dev/null
@@ -1,160 +0,0 @@
-/*******************************************************************************************
-*
-* raylib [shapes] example - raylib logo animation
-*
-* This example has been created using raylib 1.4 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
-*
-* Copyright (c) 2014 Ramon Santamaria (@raysan5)
-*
-********************************************************************************************/
-
-#include "raylib.h"
-
-int main()
-{
- // Initialization
- //--------------------------------------------------------------------------------------
- int screenWidth = 800;
- int screenHeight = 450;
-
- InitWindow(screenWidth, screenHeight, "raylib [shapes] example - raylib logo animation");
-
- int logoPositionX = screenWidth/2 - 128;
- int logoPositionY = screenHeight/2 - 128;
-
- int framesCounter = 0;
- int lettersCount = 0;
-
- int topSideRecWidth = 16;
- int leftSideRecHeight = 16;
-
- int bottomSideRecWidth = 16;
- int rightSideRecHeight = 16;
-
- int state = 0; // Tracking animation states (State Machine)
- float alpha = 1.0f; // Useful for fading
-
- SetTargetFPS(60);
- //--------------------------------------------------------------------------------------
-
- // Main game loop
- while (!WindowShouldClose()) // Detect window close button or ESC key
- {
- // Update
- //----------------------------------------------------------------------------------
- if (state == 0) // State 0: Small box blinking
- {
- framesCounter++;
-
- if (framesCounter == 120)
- {
- state = 1;
- framesCounter = 0; // Reset counter... will be used later...
- }
- }
- else if (state == 1) // State 1: Top and left bars growing
- {
- topSideRecWidth += 4;
- leftSideRecHeight += 4;
-
- if (topSideRecWidth == 256) state = 2;
- }
- else if (state == 2) // State 2: Bottom and right bars growing
- {
- bottomSideRecWidth += 4;
- rightSideRecHeight += 4;
-
- if (bottomSideRecWidth == 256) state = 3;
- }
- else if (state == 3) // State 3: Letters appearing (one by one)
- {
- framesCounter++;
-
- if (framesCounter/12) // Every 12 frames, one more letter!
- {
- lettersCount++;
- framesCounter = 0;
- }
-
- if (lettersCount >= 10) // When all letters have appeared, just fade out everything
- {
- alpha -= 0.02f;
-
- if (alpha <= 0.0f)
- {
- alpha = 0.0f;
- state = 4;
- }
- }
- }
- else if (state == 4) // State 4: Reset and Replay
- {
- if (IsKeyPressed('R'))
- {
- framesCounter = 0;
- lettersCount = 0;
-
- topSideRecWidth = 16;
- leftSideRecHeight = 16;
-
- bottomSideRecWidth = 16;
- rightSideRecHeight = 16;
-
- alpha = 1.0f;
- state = 0; // Return to State 0
- }
- }
- //----------------------------------------------------------------------------------
-
- // Draw
- //----------------------------------------------------------------------------------
- BeginDrawing();
-
- ClearBackground(RAYWHITE);
-
- if (state == 0)
- {
- if ((framesCounter/15)%2) DrawRectangle(logoPositionX, logoPositionY, 16, 16, BLACK);
- }
- else if (state == 1)
- {
- DrawRectangle(logoPositionX, logoPositionY, topSideRecWidth, 16, BLACK);
- DrawRectangle(logoPositionX, logoPositionY, 16, leftSideRecHeight, BLACK);
- }
- else if (state == 2)
- {
- DrawRectangle(logoPositionX, logoPositionY, topSideRecWidth, 16, BLACK);
- DrawRectangle(logoPositionX, logoPositionY, 16, leftSideRecHeight, BLACK);
-
- DrawRectangle(logoPositionX + 240, logoPositionY, 16, rightSideRecHeight, BLACK);
- DrawRectangle(logoPositionX, logoPositionY + 240, bottomSideRecWidth, 16, BLACK);
- }
- else if (state == 3)
- {
- DrawRectangle(logoPositionX, logoPositionY, topSideRecWidth, 16, Fade(BLACK, alpha));
- DrawRectangle(logoPositionX, logoPositionY + 16, 16, leftSideRecHeight - 32, Fade(BLACK, alpha));
-
- DrawRectangle(logoPositionX + 240, logoPositionY + 16, 16, rightSideRecHeight - 32, Fade(BLACK, alpha));
- DrawRectangle(logoPositionX, logoPositionY + 240, bottomSideRecWidth, 16, Fade(BLACK, alpha));
-
- DrawRectangle(screenWidth/2 - 112, screenHeight/2 - 112, 224, 224, Fade(RAYWHITE, alpha));
-
- DrawText(SubText("raylib", 0, lettersCount), screenWidth/2 - 44, screenHeight/2 + 48, 50, Fade(BLACK, alpha));
- }
- else if (state == 4)
- {
- DrawText("[R] REPLAY", 340, 200, 20, GRAY);
- }
-
- EndDrawing();
- //----------------------------------------------------------------------------------
- }
-
- // De-Initialization
- //--------------------------------------------------------------------------------------
- CloseWindow(); // Close window and OpenGL context
- //--------------------------------------------------------------------------------------
-
- return 0;
-}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/shapes/shapes_logo_raylib_anim.cs b/ExampleApplication/Examples/shapes/shapes_logo_raylib_anim.cs
new file mode 100644
index 0000000..c7c3625
--- /dev/null
+++ b/ExampleApplication/Examples/shapes/shapes_logo_raylib_anim.cs
@@ -0,0 +1,8 @@
+
+using Raylib;
+using static Raylib.rl;
+
+public partial class Examples
+{
+ /*******************************************************************************************
*
* raylib [shapes] example - raylib logo animation
*
* This example has been created using raylib 1.4 (www.raylib.com)
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
*
* Copyright (c) 2014 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
public static int shapes_logo_raylib_anim()
{
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 800;
int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "raylib [shapes] example - raylib logo animation");
int logoPositionX = screenWidth/2 - 128;
int logoPositionY = screenHeight/2 - 128;
int framesCounter = 0;
int lettersCount = 0;
int topSideRecWidth = 16;
int leftSideRecHeight = 16;
int bottomSideRecWidth = 16;
int rightSideRecHeight = 16;
int state = 0; // Tracking animation states (State Machine)
float alpha = 1.0f; // Useful for fading
SetTargetFPS(60);
//--------------------------------------------------------------------------------------
// Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key
{
// Update
//----------------------------------------------------------------------------------
if (state == 0) // State 0: Small box blinking
{
framesCounter++;
if (framesCounter == 120)
{
state = 1;
framesCounter = 0; // Reset counter... will be used later...
}
}
else if (state == 1) // State 1: Top and left bars growing
{
topSideRecWidth += 4;
leftSideRecHeight += 4;
if (topSideRecWidth == 256) state = 2;
}
else if (state == 2) // State 2: Bottom and right bars growing
{
bottomSideRecWidth += 4;
rightSideRecHeight += 4;
if (bottomSideRecWidth == 256) state = 3;
}
else if (state == 3) // State 3: Letters appearing (one by one)
{
framesCounter++;
if (framesCounter/12) // Every 12 frames, one more letter!
{
lettersCount++;
framesCounter = 0;
}
if (lettersCount >= 10) // When all letters have appeared, just fade out everything
{
alpha -= 0.02f;
if (alpha <= 0.0f)
{
alpha = 0.0f;
state = 4;
}
}
}
else if (state == 4) // State 4: Reset and Replay
{
if (IsKeyPressed('R'))
{
framesCounter = 0;
lettersCount = 0;
topSideRecWidth = 16;
leftSideRecHeight = 16;
bottomSideRecWidth = 16;
rightSideRecHeight = 16;
alpha = 1.0f;
state = 0; // Return to State 0
}
}
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
ClearBackground(RAYWHITE);
if (state == 0)
{
if ((framesCounter/15)%2) DrawRectangle(logoPositionX, logoPositionY, 16, 16, BLACK);
}
else if (state == 1)
{
DrawRectangle(logoPositionX, logoPositionY, topSideRecWidth, 16, BLACK);
DrawRectangle(logoPositionX, logoPositionY, 16, leftSideRecHeight, BLACK);
}
else if (state == 2)
{
DrawRectangle(logoPositionX, logoPositionY, topSideRecWidth, 16, BLACK);
DrawRectangle(logoPositionX, logoPositionY, 16, leftSideRecHeight, BLACK);
DrawRectangle(logoPositionX + 240, logoPositionY, 16, rightSideRecHeight, BLACK);
DrawRectangle(logoPositionX, logoPositionY + 240, bottomSideRecWidth, 16, BLACK);
}
else if (state == 3)
{
DrawRectangle(logoPositionX, logoPositionY, topSideRecWidth, 16, Fade(BLACK, alpha));
DrawRectangle(logoPositionX, logoPositionY + 16, 16, leftSideRecHeight - 32, Fade(BLACK, alpha));
DrawRectangle(logoPositionX + 240, logoPositionY + 16, 16, rightSideRecHeight - 32, Fade(BLACK, alpha));
DrawRectangle(logoPositionX, logoPositionY + 240, bottomSideRecWidth, 16, Fade(BLACK, alpha));
DrawRectangle(screenWidth/2 - 112, screenHeight/2 - 112, 224, 224, Fade(RAYWHITE, alpha));
DrawText(SubText("raylib", 0, lettersCount), screenWidth/2 - 44, screenHeight/2 + 48, 50, Fade(BLACK, alpha));
}
else if (state == 4)
{
DrawText("[R] REPLAY", 340, 200, 20, GRAY);
}
EndDrawing();
//----------------------------------------------------------------------------------
}
// De-Initialization
//--------------------------------------------------------------------------------------
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
return 0;
}
+}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/text/text_bmfont_ttf.c b/ExampleApplication/Examples/text/text_bmfont_ttf.c
deleted file mode 100644
index f71f5dd..0000000
--- a/ExampleApplication/Examples/text/text_bmfont_ttf.c
+++ /dev/null
@@ -1,68 +0,0 @@
-/*******************************************************************************************
-*
-* raylib [text] example - BMFont and TTF Fonts loading
-*
-* This example has been created using raylib 1.4 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
-*
-* Copyright (c) 2016 Ramon Santamaria (@raysan5)
-*
-********************************************************************************************/
-
-#include "raylib.h"
-
-int main()
-{
- // Initialization
- //--------------------------------------------------------------------------------------
- int screenWidth = 800;
- int screenHeight = 450;
-
- InitWindow(screenWidth, screenHeight, "raylib [text] example - bmfont and ttf sprite fonts loading");
-
- const char msgBm[64] = "THIS IS AN AngelCode SPRITE FONT";
- const char msgTtf[64] = "THIS SPRITE FONT has been GENERATED from a TTF";
-
- // NOTE: Textures/Fonts MUST be loaded after Window initialization (OpenGL context is required)
- Font fontBm = LoadFont("resources/bmfont.fnt"); // BMFont (AngelCode)
- Font fontTtf = LoadFont("resources/pixantiqua.ttf"); // TTF font
-
- Vector2 fontPosition;
-
- fontPosition.x = screenWidth/2 - MeasureTextEx(fontBm, msgBm, fontBm.baseSize, 0).x/2;
- fontPosition.y = screenHeight/2 - fontBm.baseSize/2 - 80;
-
- SetTargetFPS(60);
- //--------------------------------------------------------------------------------------
-
- // Main game loop
- while (!WindowShouldClose()) // Detect window close button or ESC key
- {
- // Update
- //----------------------------------------------------------------------------------
- // TODO: Update variables here...
- //----------------------------------------------------------------------------------
-
- // Draw
- //----------------------------------------------------------------------------------
- BeginDrawing();
-
- ClearBackground(RAYWHITE);
-
- DrawTextEx(fontBm, msgBm, fontPosition, fontBm.baseSize, 0, MAROON);
- DrawTextEx(fontTtf, msgTtf, (Vector2){ 75.0f, 240.0f }, fontTtf.baseSize*0.8f, 2, LIME);
-
- EndDrawing();
- //----------------------------------------------------------------------------------
- }
-
- // De-Initialization
- //--------------------------------------------------------------------------------------
- UnloadFont(fontBm); // AngelCode Font unloading
- UnloadFont(fontTtf); // TTF Font unloading
-
- CloseWindow(); // Close window and OpenGL context
- //--------------------------------------------------------------------------------------
-
- return 0;
-}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/text/text_bmfont_ttf.cs b/ExampleApplication/Examples/text/text_bmfont_ttf.cs
new file mode 100644
index 0000000..5e2563c
--- /dev/null
+++ b/ExampleApplication/Examples/text/text_bmfont_ttf.cs
@@ -0,0 +1,8 @@
+
+using Raylib;
+using static Raylib.rl;
+
+public partial class Examples
+{
+ /*******************************************************************************************
*
* raylib [text] example - BMFont and TTF Fonts loading
*
* This example has been created using raylib 1.4 (www.raylib.com)
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
*
* Copyright (c) 2016 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
public static int text_bmfont_ttf()
{
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 800;
int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "raylib [text] example - bmfont and ttf sprite fonts loading");
const char msgBm[64] = "THIS IS AN AngelCode SPRITE FONT";
const char msgTtf[64] = "THIS SPRITE FONT has been GENERATED from a TTF";
// NOTE: Textures/Fonts MUST be loaded after Window initialization (OpenGL context is required)
Font fontBm = LoadFont("resources/bmfont.fnt"); // BMFont (AngelCode)
Font fontTtf = LoadFont("resources/pixantiqua.ttf"); // TTF font
Vector2 fontPosition;
fontPosition.x = screenWidth/2 - MeasureTextEx(fontBm, msgBm, fontBm.baseSize, 0).x/2;
fontPosition.y = screenHeight/2 - fontBm.baseSize/2 - 80;
SetTargetFPS(60);
//--------------------------------------------------------------------------------------
// Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key
{
// Update
//----------------------------------------------------------------------------------
// TODO: Update variables here...
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
ClearBackground(RAYWHITE);
DrawTextEx(fontBm, msgBm, fontPosition, fontBm.baseSize, 0, MAROON);
DrawTextEx(fontTtf, msgTtf, (Vector2){ 75.0f, 240.0f }, fontTtf.baseSize*0.8f, 2, LIME);
EndDrawing();
//----------------------------------------------------------------------------------
}
// De-Initialization
//--------------------------------------------------------------------------------------
UnloadFont(fontBm); // AngelCode Font unloading
UnloadFont(fontTtf); // TTF Font unloading
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
return 0;
}
+}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/text/text_bmfont_unordered.c b/ExampleApplication/Examples/text/text_bmfont_unordered.c
deleted file mode 100644
index a514761..0000000
--- a/ExampleApplication/Examples/text/text_bmfont_unordered.c
+++ /dev/null
@@ -1,65 +0,0 @@
-/*******************************************************************************************
-*
-* raylib [text] example - BMFont unordered chars loading and drawing
-*
-* This example has been created using raylib 1.4 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
-*
-* Copyright (c) 2016 Ramon Santamaria (@raysan5)
-*
-********************************************************************************************/
-
-#include "raylib.h"
-
-int main()
-{
- // Initialization
- //--------------------------------------------------------------------------------------
- int screenWidth = 800;
- int screenHeight = 450;
-
- InitWindow(screenWidth, screenHeight, "raylib [text] example - bmfont unordered loading and drawing");
-
- // NOTE: Using chars outside the [32..127] limits!
- // NOTE: If a character is not found in the font, it just renders a space
- const char msg[256] = "ASCII extended characters:\n¡¢£¤¥¦§¨©ª«¬®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆ\nÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖ×ØÙÚÛÜÝÞßàáâãäåæ\nçèéêëìíîïðñòóôõö÷øùúûüýþÿ";
-
- // NOTE: Loaded font has an unordered list of characters (chars in the range 32..255)
- Font font = LoadFont("resources/pixantiqua.fnt"); // BMFont (AngelCode)
-
- SetTargetFPS(60);
- //--------------------------------------------------------------------------------------
-
- // Main game loop
- while (!WindowShouldClose()) // Detect window close button or ESC key
- {
- // Update
- //----------------------------------------------------------------------------------
- // TODO: Update variables here...
- //----------------------------------------------------------------------------------
-
- // Draw
- //----------------------------------------------------------------------------------
- BeginDrawing();
-
- ClearBackground(RAYWHITE);
-
- DrawText("Font name: PixAntiqua", 40, 50, 20, GRAY);
- DrawText(FormatText("Font base size: %i", font.baseSize), 40, 80, 20, GRAY);
- DrawText(FormatText("Font chars number: %i", font.charsCount), 40, 110, 20, GRAY);
-
- DrawTextEx(font, msg, (Vector2){ 40, 180 }, font.baseSize, 0, MAROON);
-
- EndDrawing();
- //----------------------------------------------------------------------------------
- }
-
- // De-Initialization
- //--------------------------------------------------------------------------------------
- UnloadFont(font); // AngelCode Font unloading
-
- CloseWindow(); // Close window and OpenGL context
- //--------------------------------------------------------------------------------------
-
- return 0;
-}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/text/text_bmfont_unordered.cs b/ExampleApplication/Examples/text/text_bmfont_unordered.cs
new file mode 100644
index 0000000..b9649bf
--- /dev/null
+++ b/ExampleApplication/Examples/text/text_bmfont_unordered.cs
@@ -0,0 +1,8 @@
+
+using Raylib;
+using static Raylib.rl;
+
+public partial class Examples
+{
+ /*******************************************************************************************
*
* raylib [text] example - BMFont unordered chars loading and drawing
*
* This example has been created using raylib 1.4 (www.raylib.com)
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
*
* Copyright (c) 2016 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
public static int text_bmfont_unordered()
{
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 800;
int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "raylib [text] example - bmfont unordered loading and drawing");
// NOTE: Using chars outside the [32..127] limits!
// NOTE: If a character is not found in the font, it just renders a space
const char msg[256] = "ASCII extended characters:\n¡¢£¤¥¦§¨©ª«¬®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆ\nÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖ×ØÙÚÛÜÝÞßàáâãäåæ\nçèéêëìíîïðñòóôõö÷øùúûüýþÿ";
// NOTE: Loaded font has an unordered list of characters (chars in the range 32..255)
Font font = LoadFont("resources/pixantiqua.fnt"); // BMFont (AngelCode)
SetTargetFPS(60);
//--------------------------------------------------------------------------------------
// Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key
{
// Update
//----------------------------------------------------------------------------------
// TODO: Update variables here...
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
ClearBackground(RAYWHITE);
DrawText("Font name: PixAntiqua", 40, 50, 20, GRAY);
DrawText(FormatText("Font base size: %i", font.baseSize), 40, 80, 20, GRAY);
DrawText(FormatText("Font chars number: %i", font.charsCount), 40, 110, 20, GRAY);
DrawTextEx(font, msg, (Vector2){ 40, 180 }, font.baseSize, 0, MAROON);
EndDrawing();
//----------------------------------------------------------------------------------
}
// De-Initialization
//--------------------------------------------------------------------------------------
UnloadFont(font); // AngelCode Font unloading
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
return 0;
}
+}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/text/text_font_sdf.c b/ExampleApplication/Examples/text/text_font_sdf.c
deleted file mode 100644
index c23a1e2..0000000
--- a/ExampleApplication/Examples/text/text_font_sdf.c
+++ /dev/null
@@ -1,126 +0,0 @@
-/*******************************************************************************************
-*
-* raylib [text] example - TTF loading and usage
-*
-* This example has been created using raylib 1.3.0 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
-*
-* Copyright (c) 2015 Ramon Santamaria (@raysan5)
-*
-********************************************************************************************/
-
-#include "raylib.h"
-
-int main()
-{
- // Initialization
- //--------------------------------------------------------------------------------------
- int screenWidth = 800;
- int screenHeight = 450;
-
- InitWindow(screenWidth, screenHeight, "raylib [text] example - SDF fonts");
-
- // NOTE: Textures/Fonts MUST be loaded after Window initialization (OpenGL context is required)
-
- const char msg[50] = "Signed Distance Fields";
-
- // Default font generation from TTF font
- Font fontDefault = { 0 };
- fontDefault.baseSize = 16;
- fontDefault.charsCount = 95;
- // Parameters > font size: 16, no chars array provided (0), chars count: 95 (autogenerate chars array)
- fontDefault.chars = LoadFontData("resources/AnonymousPro-Bold.ttf", 16, 0, 95, false);
- // Parameters > chars count: 95, font size: 16, chars padding in image: 4 px, pack method: 0 (default)
- Image atlas = GenImageFontAtlas(fontDefault.chars, 95, 16, 4, 0);
- fontDefault.texture = LoadTextureFromImage(atlas);
- UnloadImage(atlas);
-
- // SDF font generation from TTF font
- // NOTE: SDF chars data is generated with LoadFontData(), it's just a bool option
- Font fontSDF = { 0 };
- fontSDF.baseSize = 16;
- fontSDF.charsCount = 95;
- // Parameters > font size: 16, no chars array provided (0), chars count: 0 (defaults to 95)
- fontSDF.chars = LoadFontData("resources/AnonymousPro-Bold.ttf", 16, 0, 0, true);
- // Parameters > chars count: 95, font size: 16, chars padding in image: 0 px, pack method: 1 (Skyline algorythm)
- atlas = GenImageFontAtlas(fontSDF.chars, 95, 16, 0, 1);
- fontSDF.texture = LoadTextureFromImage(atlas);
- UnloadImage(atlas);
-
- // Load SDF required shader (we use default vertex shader)
- Shader shader = LoadShader(0, "resources/shaders/sdf.fs");
- SetTextureFilter(fontSDF.texture, FILTER_BILINEAR); // Required for SDF font
-
- Vector2 fontPosition = { 40, screenHeight/2 - 50 };
- Vector2 textSize = { 0.0f };
- float fontSize = 16.0f;
- int currentFont = 0; // 0 - fontDefault, 1 - fontSDF
-
- SetTargetFPS(60);
- //--------------------------------------------------------------------------------------
-
- // Main game loop
- while (!WindowShouldClose()) // Detect window close button or ESC key
- {
- // Update
- //----------------------------------------------------------------------------------
- fontSize += GetMouseWheelMove()*8.0f;
-
- if (fontSize < 6) fontSize = 6;
-
- if (IsKeyDown(KEY_SPACE)) currentFont = 1;
- else currentFont = 0;
-
- if (currentFont == 0) textSize = MeasureTextEx(fontDefault, msg, fontSize, 0);
- else textSize = MeasureTextEx(fontSDF, msg, fontSize, 0);
-
- fontPosition.x = GetScreenWidth()/2 - textSize.x/2;
- fontPosition.y = GetScreenHeight()/2 - textSize.y/2 + 80;
- //----------------------------------------------------------------------------------
-
- // Draw
- //----------------------------------------------------------------------------------
- BeginDrawing();
-
- ClearBackground(RAYWHITE);
-
- if (currentFont == 1)
- {
- // NOTE: SDF fonts require a custom SDf shader to compute fragment color
- BeginShaderMode(shader); // Activate SDF font shader
- DrawTextEx(fontSDF, msg, fontPosition, fontSize, 0, BLACK);
- EndShaderMode(); // Activate our default shader for next drawings
-
- DrawTexture(fontSDF.texture, 10, 10, BLACK);
- }
- else
- {
- DrawTextEx(fontDefault, msg, fontPosition, fontSize, 0, BLACK);
- DrawTexture(fontDefault.texture, 10, 10, BLACK);
- }
-
- if (currentFont == 1) DrawText("SDF!", 320, 20, 80, RED);
- else DrawText("default font", 315, 40, 30, GRAY);
-
- DrawText("FONT SIZE: 16.0", GetScreenWidth() - 240, 20, 20, DARKGRAY);
- DrawText(FormatText("RENDER SIZE: %02.02f", fontSize), GetScreenWidth() - 240, 50, 20, DARKGRAY);
- DrawText("Use MOUSE WHEEL to SCALE TEXT!", GetScreenWidth() - 240, 90, 10, DARKGRAY);
-
- DrawText("PRESS SPACE to USE SDF FONT VERSION!", 340, GetScreenHeight() - 30, 20, MAROON);
-
- EndDrawing();
- //----------------------------------------------------------------------------------
- }
-
- // De-Initialization
- //--------------------------------------------------------------------------------------
- UnloadFont(fontDefault); // Default font unloading
- UnloadFont(fontSDF); // SDF font unloading
-
- UnloadShader(shader); // Unload SDF shader
-
- CloseWindow(); // Close window and OpenGL context
- //--------------------------------------------------------------------------------------
-
- return 0;
-}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/text/text_font_sdf.cs b/ExampleApplication/Examples/text/text_font_sdf.cs
new file mode 100644
index 0000000..ec6e2fd
--- /dev/null
+++ b/ExampleApplication/Examples/text/text_font_sdf.cs
@@ -0,0 +1,8 @@
+
+using Raylib;
+using static Raylib.rl;
+
+public partial class Examples
+{
+ /*******************************************************************************************
*
* raylib [text] example - TTF loading and usage
*
* This example has been created using raylib 1.3.0 (www.raylib.com)
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
*
* Copyright (c) 2015 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
public static int text_font_sdf()
{
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 800;
int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "raylib [text] example - SDF fonts");
// NOTE: Textures/Fonts MUST be loaded after Window initialization (OpenGL context is required)
const char msg[50] = "Signed Distance Fields";
// Default font generation from TTF font
Font fontDefault = { 0 };
fontDefault.baseSize = 16;
fontDefault.charsCount = 95;
// Parameters > font size: 16, no chars array provided (0), chars count: 95 (autogenerate chars array)
fontDefault.chars = LoadFontData("resources/AnonymousPro-Bold.ttf", 16, 0, 95, false);
// Parameters > chars count: 95, font size: 16, chars padding in image: 4 px, pack method: 0 (default)
Image atlas = GenImageFontAtlas(fontDefault.chars, 95, 16, 4, 0);
fontDefault.texture = LoadTextureFromImage(atlas);
UnloadImage(atlas);
// SDF font generation from TTF font
// NOTE: SDF chars data is generated with LoadFontData(), it's just a bool option
Font fontSDF = { 0 };
fontSDF.baseSize = 16;
fontSDF.charsCount = 95;
// Parameters > font size: 16, no chars array provided (0), chars count: 0 (defaults to 95)
fontSDF.chars = LoadFontData("resources/AnonymousPro-Bold.ttf", 16, 0, 0, true);
// Parameters > chars count: 95, font size: 16, chars padding in image: 0 px, pack method: 1 (Skyline algorythm)
atlas = GenImageFontAtlas(fontSDF.chars, 95, 16, 0, 1);
fontSDF.texture = LoadTextureFromImage(atlas);
UnloadImage(atlas);
// Load SDF required shader (we use default vertex shader)
Shader shader = LoadShader(0, "resources/shaders/sdf.fs");
SetTextureFilter(fontSDF.texture, FILTER_BILINEAR); // Required for SDF font
Vector2 fontPosition = { 40, screenHeight/2 - 50 };
Vector2 textSize = { 0.0f };
float fontSize = 16.0f;
int currentFont = 0; // 0 - fontDefault, 1 - fontSDF
SetTargetFPS(60);
//--------------------------------------------------------------------------------------
// Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key
{
// Update
//----------------------------------------------------------------------------------
fontSize += GetMouseWheelMove()*8.0f;
if (fontSize < 6) fontSize = 6;
if (IsKeyDown(KEY_SPACE)) currentFont = 1;
else currentFont = 0;
if (currentFont == 0) textSize = MeasureTextEx(fontDefault, msg, fontSize, 0);
else textSize = MeasureTextEx(fontSDF, msg, fontSize, 0);
fontPosition.x = GetScreenWidth()/2 - textSize.x/2;
fontPosition.y = GetScreenHeight()/2 - textSize.y/2 + 80;
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
ClearBackground(RAYWHITE);
if (currentFont == 1)
{
// NOTE: SDF fonts require a custom SDf shader to compute fragment color
BeginShaderMode(shader); // Activate SDF font shader
DrawTextEx(fontSDF, msg, fontPosition, fontSize, 0, BLACK);
EndShaderMode(); // Activate our default shader for next drawings
DrawTexture(fontSDF.texture, 10, 10, BLACK);
}
else
{
DrawTextEx(fontDefault, msg, fontPosition, fontSize, 0, BLACK);
DrawTexture(fontDefault.texture, 10, 10, BLACK);
}
if (currentFont == 1) DrawText("SDF!", 320, 20, 80, RED);
else DrawText("default font", 315, 40, 30, GRAY);
DrawText("FONT SIZE: 16.0", GetScreenWidth() - 240, 20, 20, DARKGRAY);
DrawText(FormatText("RENDER SIZE: %02.02f", fontSize), GetScreenWidth() - 240, 50, 20, DARKGRAY);
DrawText("Use MOUSE WHEEL to SCALE TEXT!", GetScreenWidth() - 240, 90, 10, DARKGRAY);
DrawText("PRESS SPACE to USE SDF FONT VERSION!", 340, GetScreenHeight() - 30, 20, MAROON);
EndDrawing();
//----------------------------------------------------------------------------------
}
// De-Initialization
//--------------------------------------------------------------------------------------
UnloadFont(fontDefault); // Default font unloading
UnloadFont(fontSDF); // SDF font unloading
UnloadShader(shader); // Unload SDF shader
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
return 0;
}
+}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/text/text_format_text.c b/ExampleApplication/Examples/text/text_format_text.c
deleted file mode 100644
index ca28be7..0000000
--- a/ExampleApplication/Examples/text/text_format_text.c
+++ /dev/null
@@ -1,62 +0,0 @@
-/*******************************************************************************************
-*
-* raylib [text] example - Text formatting
-*
-* This example has been created using raylib 1.1 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
-*
-* Copyright (c) 2014 Ramon Santamaria (@raysan5)
-*
-********************************************************************************************/
-
-#include "raylib.h"
-
-int main()
-{
- // Initialization
- //--------------------------------------------------------------------------------------
- int screenWidth = 800;
- int screenHeight = 450;
-
- InitWindow(screenWidth, screenHeight, "raylib [text] example - text formatting");
-
- int score = 100020;
- int hiscore = 200450;
- int lives = 5;
-
- SetTargetFPS(60);
- //--------------------------------------------------------------------------------------
-
- // Main game loop
- while (!WindowShouldClose()) // Detect window close button or ESC key
- {
- // Update
- //----------------------------------------------------------------------------------
- // TODO: Update your variables here
- //----------------------------------------------------------------------------------
-
- // Draw
- //----------------------------------------------------------------------------------
- BeginDrawing();
-
- ClearBackground(RAYWHITE);
-
- DrawText(FormatText("Score: %08i", score), 200, 80, 20, RED);
-
- DrawText(FormatText("HiScore: %08i", hiscore), 200, 120, 20, GREEN);
-
- DrawText(FormatText("Lives: %02i", lives), 200, 160, 40, BLUE);
-
- DrawText(FormatText("Elapsed Time: %02.02f ms", GetFrameTime()*1000), 200, 220, 20, BLACK);
-
- EndDrawing();
- //----------------------------------------------------------------------------------
- }
-
- // De-Initialization
- //--------------------------------------------------------------------------------------
- CloseWindow(); // Close window and OpenGL context
- //--------------------------------------------------------------------------------------
-
- return 0;
-}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/text/text_format_text.cs b/ExampleApplication/Examples/text/text_format_text.cs
new file mode 100644
index 0000000..0c6dc61
--- /dev/null
+++ b/ExampleApplication/Examples/text/text_format_text.cs
@@ -0,0 +1,8 @@
+
+using Raylib;
+using static Raylib.rl;
+
+public partial class Examples
+{
+ /*******************************************************************************************
*
* raylib [text] example - Text formatting
*
* This example has been created using raylib 1.1 (www.raylib.com)
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
*
* Copyright (c) 2014 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
public static int text_format_text()
{
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 800;
int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "raylib [text] example - text formatting");
int score = 100020;
int hiscore = 200450;
int lives = 5;
SetTargetFPS(60);
//--------------------------------------------------------------------------------------
// Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key
{
// Update
//----------------------------------------------------------------------------------
// TODO: Update your variables here
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
ClearBackground(RAYWHITE);
DrawText(FormatText("Score: %08i", score), 200, 80, 20, RED);
DrawText(FormatText("HiScore: %08i", hiscore), 200, 120, 20, GREEN);
DrawText(FormatText("Lives: %02i", lives), 200, 160, 40, BLUE);
DrawText(FormatText("Elapsed Time: %02.02f ms", GetFrameTime()*1000), 200, 220, 20, BLACK);
EndDrawing();
//----------------------------------------------------------------------------------
}
// De-Initialization
//--------------------------------------------------------------------------------------
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
return 0;
}
+}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/text/text_input_box.c b/ExampleApplication/Examples/text/text_input_box.c
deleted file mode 100644
index 5f8d1c0..0000000
--- a/ExampleApplication/Examples/text/text_input_box.c
+++ /dev/null
@@ -1,116 +0,0 @@
-/*******************************************************************************************
-*
-* 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)
-*
-********************************************************************************************/
-
-#include "raylib.h"
-
-#define MAX_INPUT_CHARS 9
-
-int main()
-{
- // Initialization
- //--------------------------------------------------------------------------------------
- int screenWidth = 800;
- int screenHeight = 450;
-
- InitWindow(screenWidth, screenHeight, "raylib [text] example - input box");
-
- char name[MAX_INPUT_CHARS + 1] = "\0"; // NOTE: One extra space required for line ending char '\0'
- int letterCount = 0;
-
- Rectangle textBox = { screenWidth/2 - 100, 180, 225, 50 };
- bool mouseOnText = false;
-
- int framesCounter = 0;
-
- SetTargetFPS(60);
- //--------------------------------------------------------------------------------------
-
- // Main game loop
- while (!WindowShouldClose()) // Detect window close button or ESC key
- {
- // Update
- //----------------------------------------------------------------------------------
- if (CheckCollisionPointRec(GetMousePosition(), textBox)) mouseOnText = true;
- else mouseOnText = false;
-
- if (mouseOnText)
- {
- int key = GetKeyPressed();
-
- // NOTE: Only allow keys in range [32..125]
- if ((key >= 32) && (key <= 125) && (letterCount < MAX_INPUT_CHARS))
- {
- name[letterCount] = (char)key;
- letterCount++;
- }
-
- if (IsKeyPressed(KEY_BACKSPACE))
- {
- letterCount--;
- name[letterCount] = '\0';
-
- if (letterCount < 0) letterCount = 0;
- }
- }
-
- if (mouseOnText) framesCounter++;
- else framesCounter = 0;
- //----------------------------------------------------------------------------------
-
- // Draw
- //----------------------------------------------------------------------------------
- BeginDrawing();
-
- ClearBackground(RAYWHITE);
-
- DrawText("PLACE MOUSE OVER INPUT BOX!", 240, 140, 20, GRAY);
-
- DrawRectangleRec(textBox, LIGHTGRAY);
- if (mouseOnText) DrawRectangleLines(textBox.x, textBox.y, textBox.width, textBox.height, RED);
- else DrawRectangleLines(textBox.x, textBox.y, textBox.width, textBox.height, DARKGRAY);
-
- DrawText(name, textBox.x + 5, textBox.y + 8, 40, MAROON);
-
- DrawText(FormatText("INPUT CHARS: %i/%i", letterCount, MAX_INPUT_CHARS), 315, 250, 20, DARKGRAY);
-
- if (mouseOnText)
- {
- if (letterCount < MAX_INPUT_CHARS)
- {
- // Draw blinking underscore char
- if (((framesCounter/20)%2) == 0) DrawText("_", textBox.x + 8 + MeasureText(name, 40), textBox.y + 12, 40, MAROON);
- }
- else DrawText("Press BACKSPACE to delete chars...", 230, 300, 20, GRAY);
- }
-
- EndDrawing();
- //----------------------------------------------------------------------------------
- }
-
- // De-Initialization
- //--------------------------------------------------------------------------------------
- CloseWindow(); // Close window and OpenGL context
- //--------------------------------------------------------------------------------------
-
- return 0;
-}
-
-// Check if any key is pressed
-// NOTE: We limit keys check to keys between 32 (KEY_SPACE) and 126
-bool IsAnyKeyPressed()
-{
- bool keyPressed = false;
- int key = GetKeyPressed();
-
- if ((key >= 32) && (key <= 126)) keyPressed = true;
-
- return keyPressed;
-}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/text/text_input_box.cs b/ExampleApplication/Examples/text/text_input_box.cs
new file mode 100644
index 0000000..a046b59
--- /dev/null
+++ b/ExampleApplication/Examples/text/text_input_box.cs
@@ -0,0 +1,8 @@
+
+using Raylib;
+using static Raylib.rl;
+
+public partial class Examples
+{
+ /*******************************************************************************************
*
* 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)
*
********************************************************************************************/
#define MAX_INPUT_CHARS 9
public static int text_input_box()
{
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 800;
int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "raylib [text] example - input box");
char name[MAX_INPUT_CHARS + 1] = "\0"; // NOTE: One extra space required for line ending char '\0'
int letterCount = 0;
Rectangle textBox = { screenWidth/2 - 100, 180, 225, 50 };
bool mouseOnText = false;
int framesCounter = 0;
SetTargetFPS(60);
//--------------------------------------------------------------------------------------
// Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key
{
// Update
//----------------------------------------------------------------------------------
if (CheckCollisionPointRec(GetMousePosition(), textBox)) mouseOnText = true;
else mouseOnText = false;
if (mouseOnText)
{
int key = GetKeyPressed();
// NOTE: Only allow keys in range [32..125]
if ((key >= 32) && (key <= 125) && (letterCount < MAX_INPUT_CHARS))
{
name[letterCount] = (char)key;
letterCount++;
}
if (IsKeyPressed(KEY_BACKSPACE))
{
letterCount--;
name[letterCount] = '\0';
if (letterCount < 0) letterCount = 0;
}
}
if (mouseOnText) framesCounter++;
else framesCounter = 0;
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
ClearBackground(RAYWHITE);
DrawText("PLACE MOUSE OVER INPUT BOX!", 240, 140, 20, GRAY);
DrawRectangleRec(textBox, LIGHTGRAY);
if (mouseOnText) DrawRectangleLines(textBox.x, textBox.y, textBox.width, textBox.height, RED);
else DrawRectangleLines(textBox.x, textBox.y, textBox.width, textBox.height, DARKGRAY);
DrawText(name, textBox.x + 5, textBox.y + 8, 40, MAROON);
DrawText(FormatText("INPUT CHARS: %i/%i", letterCount, MAX_INPUT_CHARS), 315, 250, 20, DARKGRAY);
if (mouseOnText)
{
if (letterCount < MAX_INPUT_CHARS)
{
// Draw blinking underscore char
if (((framesCounter/20)%2) == 0) DrawText("_", textBox.x + 8 + MeasureText(name, 40), textBox.y + 12, 40, MAROON);
}
else DrawText("Press BACKSPACE to delete chars...", 230, 300, 20, GRAY);
}
EndDrawing();
//----------------------------------------------------------------------------------
}
// De-Initialization
//--------------------------------------------------------------------------------------
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
return 0;
}
// Check if any key is pressed
// NOTE: We limit keys check to keys between 32 (KEY_SPACE) and 126
bool IsAnyKeyPressed()
{
bool keyPressed = false;
int key = GetKeyPressed();
if ((key >= 32) && (key <= 126)) keyPressed = true;
return keyPressed;
}
+}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/text/text_raylib_fonts.c b/ExampleApplication/Examples/text/text_raylib_fonts.c
deleted file mode 100644
index 3c930ac..0000000
--- a/ExampleApplication/Examples/text/text_raylib_fonts.c
+++ /dev/null
@@ -1,103 +0,0 @@
-/*******************************************************************************************
-*
-* raylib [text] example - raylib font loading and usage
-*
-* NOTE: raylib is distributed with some free to use fonts (even for commercial pourposes!)
-* To view details and credits for those fonts, check raylib license file
-*
-* 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)
-*
-********************************************************************************************/
-
-#include "raylib.h"
-
-#define MAX_FONTS 8
-
-int main()
-{
- // Initialization
- //--------------------------------------------------------------------------------------
- int screenWidth = 800;
- int screenHeight = 450;
-
- InitWindow(screenWidth, screenHeight, "raylib [text] example - raylib fonts");
-
- // NOTE: Textures MUST be loaded after Window initialization (OpenGL context is required)
- Font fonts[MAX_FONTS];
-
- fonts[0] = LoadFont("resources/fonts/alagard.png");
- fonts[1] = LoadFont("resources/fonts/pixelplay.png");
- fonts[2] = LoadFont("resources/fonts/mecha.png");
- fonts[3] = LoadFont("resources/fonts/setback.png");
- fonts[4] = LoadFont("resources/fonts/romulus.png");
- fonts[5] = LoadFont("resources/fonts/pixantiqua.png");
- fonts[6] = LoadFont("resources/fonts/alpha_beta.png");
- fonts[7] = LoadFont("resources/fonts/jupiter_crash.png");
-
- const char *messages[MAX_FONTS] = { "ALAGARD FONT designed by Hewett Tsoi",
- "PIXELPLAY FONT designed by Aleksander Shevchuk",
- "MECHA FONT designed by Captain Falcon",
- "SETBACK FONT designed by Brian Kent (AEnigma)",
- "ROMULUS FONT designed by Hewett Tsoi",
- "PIXANTIQUA FONT designed by Gerhard Grossmann",
- "ALPHA_BETA FONT designed by Brian Kent (AEnigma)",
- "JUPITER_CRASH FONT designed by Brian Kent (AEnigma)" };
-
- const int spacings[MAX_FONTS] = { 2, 4, 8, 4, 3, 4, 4, 1 };
-
- Vector2 positions[MAX_FONTS];
-
- for (int i = 0; i < MAX_FONTS; i++)
- {
- positions[i].x = screenWidth/2 - MeasureTextEx(fonts[i], messages[i], fonts[i].baseSize*2, spacings[i]).x/2;
- positions[i].y = 60 + fonts[i].baseSize + 45*i;
- }
-
- // Small Y position corrections
- positions[3].y += 8;
- positions[4].y += 2;
- positions[7].y -= 8;
-
- Color colors[MAX_FONTS] = { MAROON, ORANGE, DARKGREEN, DARKBLUE, DARKPURPLE, LIME, GOLD, RED };
- //--------------------------------------------------------------------------------------
-
- // Main game loop
- while (!WindowShouldClose()) // Detect window close button or ESC key
- {
- // Update
- //----------------------------------------------------------------------------------
- // TODO: Update your variables here
- //----------------------------------------------------------------------------------
-
- // Draw
- //----------------------------------------------------------------------------------
- BeginDrawing();
-
- ClearBackground(RAYWHITE);
-
- DrawText("free fonts included with raylib", 250, 20, 20, DARKGRAY);
- DrawLine(220, 50, 590, 50, DARKGRAY);
-
- for (int i = 0; i < MAX_FONTS; i++)
- {
- DrawTextEx(fonts[i], messages[i], positions[i], fonts[i].baseSize*2, spacings[i], colors[i]);
- }
-
- EndDrawing();
- //----------------------------------------------------------------------------------
- }
-
- // De-Initialization
- //--------------------------------------------------------------------------------------
-
- // Fonts unloading
- for (int i = 0; i < MAX_FONTS; i++) UnloadFont(fonts[i]);
-
- CloseWindow(); // Close window and OpenGL context
- //--------------------------------------------------------------------------------------
-
- return 0;
-}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/text/text_raylib_fonts.cs b/ExampleApplication/Examples/text/text_raylib_fonts.cs
new file mode 100644
index 0000000..9f13233
--- /dev/null
+++ b/ExampleApplication/Examples/text/text_raylib_fonts.cs
@@ -0,0 +1,8 @@
+
+using Raylib;
+using static Raylib.rl;
+
+public partial class Examples
+{
+ /*******************************************************************************************
*
* raylib [text] example - raylib font loading and usage
*
* NOTE: raylib is distributed with some free to use fonts (even for commercial pourposes!)
* To view details and credits for those fonts, check raylib license file
*
* 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)
*
********************************************************************************************/
#define MAX_FONTS 8
public static int text_raylib_fonts()
{
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 800;
int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "raylib [text] example - raylib fonts");
// NOTE: Textures MUST be loaded after Window initialization (OpenGL context is required)
Font fonts[MAX_FONTS];
fonts[0] = LoadFont("resources/fonts/alagard.png");
fonts[1] = LoadFont("resources/fonts/pixelplay.png");
fonts[2] = LoadFont("resources/fonts/mecha.png");
fonts[3] = LoadFont("resources/fonts/setback.png");
fonts[4] = LoadFont("resources/fonts/romulus.png");
fonts[5] = LoadFont("resources/fonts/pixantiqua.png");
fonts[6] = LoadFont("resources/fonts/alpha_beta.png");
fonts[7] = LoadFont("resources/fonts/jupiter_crash.png");
const char *messages[MAX_FONTS] = { "ALAGARD FONT designed by Hewett Tsoi",
"PIXELPLAY FONT designed by Aleksander Shevchuk",
"MECHA FONT designed by Captain Falcon",
"SETBACK FONT designed by Brian Kent (AEnigma)",
"ROMULUS FONT designed by Hewett Tsoi",
"PIXANTIQUA FONT designed by Gerhard Grossmann",
"ALPHA_BETA FONT designed by Brian Kent (AEnigma)",
"JUPITER_CRASH FONT designed by Brian Kent (AEnigma)" };
const int spacings[MAX_FONTS] = { 2, 4, 8, 4, 3, 4, 4, 1 };
Vector2 positions[MAX_FONTS];
for (int i = 0; i < MAX_FONTS; i++)
{
positions[i].x = screenWidth/2 - MeasureTextEx(fonts[i], messages[i], fonts[i].baseSize*2, spacings[i]).x/2;
positions[i].y = 60 + fonts[i].baseSize + 45*i;
}
// Small Y position corrections
positions[3].y += 8;
positions[4].y += 2;
positions[7].y -= 8;
Color colors[MAX_FONTS] = { MAROON, ORANGE, DARKGREEN, DARKBLUE, DARKPURPLE, LIME, GOLD, RED };
//--------------------------------------------------------------------------------------
// Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key
{
// Update
//----------------------------------------------------------------------------------
// TODO: Update your variables here
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
ClearBackground(RAYWHITE);
DrawText("free fonts included with raylib", 250, 20, 20, DARKGRAY);
DrawLine(220, 50, 590, 50, DARKGRAY);
for (int i = 0; i < MAX_FONTS; i++)
{
DrawTextEx(fonts[i], messages[i], positions[i], fonts[i].baseSize*2, spacings[i], colors[i]);
}
EndDrawing();
//----------------------------------------------------------------------------------
}
// De-Initialization
//--------------------------------------------------------------------------------------
// Fonts unloading
for (int i = 0; i < MAX_FONTS; i++) UnloadFont(fonts[i]);
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
return 0;
}
+}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/text/text_sprite_fonts.c b/ExampleApplication/Examples/text/text_sprite_fonts.c
deleted file mode 100644
index 7ce2fef..0000000
--- a/ExampleApplication/Examples/text/text_sprite_fonts.c
+++ /dev/null
@@ -1,77 +0,0 @@
-/*******************************************************************************************
-*
-* raylib [text] example - Font loading and usage
-*
-* This example has been created using raylib 1.0 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
-*
-* Copyright (c) 2014 Ramon Santamaria (@raysan5)
-*
-********************************************************************************************/
-
-#include "raylib.h"
-
-int main()
-{
- // Initialization
- //--------------------------------------------------------------------------------------
- int screenWidth = 800;
- int screenHeight = 450;
-
- InitWindow(screenWidth, screenHeight, "raylib [text] example - sprite fonts usage");
-
- const char msg1[50] = "THIS IS A custom SPRITE FONT...";
- const char msg2[50] = "...and this is ANOTHER CUSTOM font...";
- const char msg3[50] = "...and a THIRD one! GREAT! :D";
-
- // NOTE: Textures/Fonts MUST be loaded after Window initialization (OpenGL context is required)
- Font font1 = LoadFont("resources/custom_mecha.png"); // Font loading
- Font font2 = LoadFont("resources/custom_alagard.png"); // Font loading
- Font font3 = LoadFont("resources/custom_jupiter_crash.png"); // Font loading
-
- Vector2 fontPosition1, fontPosition2, fontPosition3;
-
- fontPosition1.x = screenWidth/2 - MeasureTextEx(font1, msg1, font1.baseSize, -3).x/2;
- fontPosition1.y = screenHeight/2 - font1.baseSize/2 - 80;
-
- fontPosition2.x = screenWidth/2 - MeasureTextEx(font2, msg2, font2.baseSize, -2).x/2;
- fontPosition2.y = screenHeight/2 - font2.baseSize/2 - 10;
-
- fontPosition3.x = screenWidth/2 - MeasureTextEx(font3, msg3, font3.baseSize, 2).x/2;
- fontPosition3.y = screenHeight/2 - font3.baseSize/2 + 50;
-
- //--------------------------------------------------------------------------------------
-
- // Main game loop
- while (!WindowShouldClose()) // Detect window close button or ESC key
- {
- // Update
- //----------------------------------------------------------------------------------
- // TODO: Update variables here...
- //----------------------------------------------------------------------------------
-
- // Draw
- //----------------------------------------------------------------------------------
- BeginDrawing();
-
- ClearBackground(RAYWHITE);
-
- DrawTextEx(font1, msg1, fontPosition1, font1.baseSize, -3, WHITE);
- DrawTextEx(font2, msg2, fontPosition2, font2.baseSize, -2, WHITE);
- DrawTextEx(font3, msg3, fontPosition3, font3.baseSize, 2, WHITE);
-
- EndDrawing();
- //----------------------------------------------------------------------------------
- }
-
- // De-Initialization
- //--------------------------------------------------------------------------------------
- UnloadFont(font1); // Font unloading
- UnloadFont(font2); // Font unloading
- UnloadFont(font3); // Font unloading
-
- CloseWindow(); // Close window and OpenGL context
- //--------------------------------------------------------------------------------------
-
- return 0;
-}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/text/text_sprite_fonts.cs b/ExampleApplication/Examples/text/text_sprite_fonts.cs
new file mode 100644
index 0000000..b130ddd
--- /dev/null
+++ b/ExampleApplication/Examples/text/text_sprite_fonts.cs
@@ -0,0 +1,8 @@
+
+using Raylib;
+using static Raylib.rl;
+
+public partial class Examples
+{
+ /*******************************************************************************************
*
* raylib [text] example - Font loading and usage
*
* This example has been created using raylib 1.0 (www.raylib.com)
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
*
* Copyright (c) 2014 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
public static int text_sprite_fonts()
{
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 800;
int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "raylib [text] example - sprite fonts usage");
const char msg1[50] = "THIS IS A custom SPRITE FONT...";
const char msg2[50] = "...and this is ANOTHER CUSTOM font...";
const char msg3[50] = "...and a THIRD one! GREAT! :D";
// NOTE: Textures/Fonts MUST be loaded after Window initialization (OpenGL context is required)
Font font1 = LoadFont("resources/custom_mecha.png"); // Font loading
Font font2 = LoadFont("resources/custom_alagard.png"); // Font loading
Font font3 = LoadFont("resources/custom_jupiter_crash.png"); // Font loading
Vector2 fontPosition1, fontPosition2, fontPosition3;
fontPosition1.x = screenWidth/2 - MeasureTextEx(font1, msg1, font1.baseSize, -3).x/2;
fontPosition1.y = screenHeight/2 - font1.baseSize/2 - 80;
fontPosition2.x = screenWidth/2 - MeasureTextEx(font2, msg2, font2.baseSize, -2).x/2;
fontPosition2.y = screenHeight/2 - font2.baseSize/2 - 10;
fontPosition3.x = screenWidth/2 - MeasureTextEx(font3, msg3, font3.baseSize, 2).x/2;
fontPosition3.y = screenHeight/2 - font3.baseSize/2 + 50;
//--------------------------------------------------------------------------------------
// Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key
{
// Update
//----------------------------------------------------------------------------------
// TODO: Update variables here...
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
ClearBackground(RAYWHITE);
DrawTextEx(font1, msg1, fontPosition1, font1.baseSize, -3, WHITE);
DrawTextEx(font2, msg2, fontPosition2, font2.baseSize, -2, WHITE);
DrawTextEx(font3, msg3, fontPosition3, font3.baseSize, 2, WHITE);
EndDrawing();
//----------------------------------------------------------------------------------
}
// De-Initialization
//--------------------------------------------------------------------------------------
UnloadFont(font1); // Font unloading
UnloadFont(font2); // Font unloading
UnloadFont(font3); // Font unloading
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
return 0;
}
+}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/text/text_ttf_loading.c b/ExampleApplication/Examples/text/text_ttf_loading.c
deleted file mode 100644
index 0e964eb..0000000
--- a/ExampleApplication/Examples/text/text_ttf_loading.c
+++ /dev/null
@@ -1,136 +0,0 @@
-/*******************************************************************************************
-*
-* raylib [text] example - TTF loading and usage
-*
-* This example has been created using raylib 1.3.0 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
-*
-* Copyright (c) 2015 Ramon Santamaria (@raysan5)
-*
-********************************************************************************************/
-
-#include "raylib.h"
-
-int main()
-{
- // Initialization
- //--------------------------------------------------------------------------------------
- int screenWidth = 800;
- int screenHeight = 450;
-
- InitWindow(screenWidth, screenHeight, "raylib [text] example - ttf loading");
-
- const char msg[50] = "TTF Font";
-
- // NOTE: Textures/Fonts MUST be loaded after Window initialization (OpenGL context is required)
-
- // TTF Font loading with custom generation parameters
- Font font = LoadFontEx("resources/KAISG.ttf", 96, 0, 0);
-
- // Generate mipmap levels to use trilinear filtering
- // NOTE: On 2D drawing it won't be noticeable, it looks like FILTER_BILINEAR
- GenTextureMipmaps(&font.texture);
-
- float fontSize = font.baseSize;
- Vector2 fontPosition = { 40, screenHeight/2 - 80 };
- Vector2 textSize;
-
- SetTextureFilter(font.texture, FILTER_POINT);
- int currentFontFilter = 0; // FILTER_POINT
-
- // NOTE: Drag and drop support only available for desktop platforms: Windows, Linux, OSX
-#if defined(PLATFORM_DESKTOP)
- int count = 0;
- char **droppedFiles;
-#endif
-
- SetTargetFPS(60);
- //--------------------------------------------------------------------------------------
-
- // Main game loop
- while (!WindowShouldClose()) // Detect window close button or ESC key
- {
- // Update
- //----------------------------------------------------------------------------------
- fontSize += GetMouseWheelMove()*4.0f;
-
- // Choose font texture filter method
- if (IsKeyPressed(KEY_ONE))
- {
- SetTextureFilter(font.texture, FILTER_POINT);
- currentFontFilter = 0;
- }
- else if (IsKeyPressed(KEY_TWO))
- {
- SetTextureFilter(font.texture, FILTER_BILINEAR);
- currentFontFilter = 1;
- }
- else if (IsKeyPressed(KEY_THREE))
- {
- // NOTE: Trilinear filter won't be noticed on 2D drawing
- SetTextureFilter(font.texture, FILTER_TRILINEAR);
- currentFontFilter = 2;
- }
-
- textSize = MeasureTextEx(font, msg, fontSize, 0);
-
- if (IsKeyDown(KEY_LEFT)) fontPosition.x -= 10;
- else if (IsKeyDown(KEY_RIGHT)) fontPosition.x += 10;
-
-#if defined(PLATFORM_DESKTOP)
- // Load a dropped TTF file dynamically (at current fontSize)
- if (IsFileDropped())
- {
- droppedFiles = GetDroppedFiles(&count);
-
- if (count == 1) // Only support one ttf file dropped
- {
- UnloadFont(font);
- font = LoadFontEx(droppedFiles[0], fontSize, 0, 0);
- ClearDroppedFiles();
- }
- }
-#endif
- //----------------------------------------------------------------------------------
-
- // Draw
- //----------------------------------------------------------------------------------
- BeginDrawing();
-
- ClearBackground(RAYWHITE);
-
- DrawText("Use mouse wheel to change font size", 20, 20, 10, GRAY);
- DrawText("Use KEY_RIGHT and KEY_LEFT to move text", 20, 40, 10, GRAY);
- DrawText("Use 1, 2, 3 to change texture filter", 20, 60, 10, GRAY);
- DrawText("Drop a new TTF font for dynamic loading", 20, 80, 10, DARKGRAY);
-
- DrawTextEx(font, msg, fontPosition, fontSize, 0, BLACK);
-
- // TODO: It seems texSize measurement is not accurate due to chars offsets...
- //DrawRectangleLines(fontPosition.x, fontPosition.y, textSize.x, textSize.y, RED);
-
- DrawRectangle(0, screenHeight - 80, screenWidth, 80, LIGHTGRAY);
- DrawText(FormatText("Font size: %02.02f", fontSize), 20, screenHeight - 50, 10, DARKGRAY);
- DrawText(FormatText("Text size: [%02.02f, %02.02f]", textSize.x, textSize.y), 20, screenHeight - 30, 10, DARKGRAY);
- DrawText("CURRENT TEXTURE FILTER:", 250, 400, 20, GRAY);
-
- if (currentFontFilter == 0) DrawText("POINT", 570, 400, 20, BLACK);
- else if (currentFontFilter == 1) DrawText("BILINEAR", 570, 400, 20, BLACK);
- else if (currentFontFilter == 2) DrawText("TRILINEAR", 570, 400, 20, BLACK);
-
- EndDrawing();
- //----------------------------------------------------------------------------------
- }
-
- // De-Initialization
- //--------------------------------------------------------------------------------------
-#if defined(PLATFORM_DESKTOP)
- ClearDroppedFiles(); // Clear internal buffers
-#endif
- UnloadFont(font); // Font unloading
-
- CloseWindow(); // Close window and OpenGL context
- //--------------------------------------------------------------------------------------
-
- return 0;
-}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/text/text_ttf_loading.cs b/ExampleApplication/Examples/text/text_ttf_loading.cs
new file mode 100644
index 0000000..02bb935
--- /dev/null
+++ b/ExampleApplication/Examples/text/text_ttf_loading.cs
@@ -0,0 +1,8 @@
+
+using Raylib;
+using static Raylib.rl;
+
+public partial class Examples
+{
+ /*******************************************************************************************
*
* raylib [text] example - TTF loading and usage
*
* This example has been created using raylib 1.3.0 (www.raylib.com)
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
*
* Copyright (c) 2015 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
public static int text_ttf_loading()
{
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 800;
int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "raylib [text] example - ttf loading");
const char msg[50] = "TTF Font";
// NOTE: Textures/Fonts MUST be loaded after Window initialization (OpenGL context is required)
// TTF Font loading with custom generation parameters
Font font = LoadFontEx("resources/KAISG.ttf", 96, 0, 0);
// Generate mipmap levels to use trilinear filtering
// NOTE: On 2D drawing it won't be noticeable, it looks like FILTER_BILINEAR
GenTextureMipmaps(&font.texture);
float fontSize = font.baseSize;
Vector2 fontPosition = { 40, screenHeight/2 - 80 };
Vector2 textSize;
SetTextureFilter(font.texture, FILTER_POINT);
int currentFontFilter = 0; // FILTER_POINT
// NOTE: Drag and drop support only available for desktop platforms: Windows, Linux, OSX
#if defined(PLATFORM_DESKTOP)
int count = 0;
char **droppedFiles;
#endif
SetTargetFPS(60);
//--------------------------------------------------------------------------------------
// Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key
{
// Update
//----------------------------------------------------------------------------------
fontSize += GetMouseWheelMove()*4.0f;
// Choose font texture filter method
if (IsKeyPressed(KEY_ONE))
{
SetTextureFilter(font.texture, FILTER_POINT);
currentFontFilter = 0;
}
else if (IsKeyPressed(KEY_TWO))
{
SetTextureFilter(font.texture, FILTER_BILINEAR);
currentFontFilter = 1;
}
else if (IsKeyPressed(KEY_THREE))
{
// NOTE: Trilinear filter won't be noticed on 2D drawing
SetTextureFilter(font.texture, FILTER_TRILINEAR);
currentFontFilter = 2;
}
textSize = MeasureTextEx(font, msg, fontSize, 0);
if (IsKeyDown(KEY_LEFT)) fontPosition.x -= 10;
else if (IsKeyDown(KEY_RIGHT)) fontPosition.x += 10;
#if defined(PLATFORM_DESKTOP)
// Load a dropped TTF file dynamically (at current fontSize)
if (IsFileDropped())
{
droppedFiles = GetDroppedFiles(&count);
if (count == 1) // Only support one ttf file dropped
{
UnloadFont(font);
font = LoadFontEx(droppedFiles[0], fontSize, 0, 0);
ClearDroppedFiles();
}
}
#endif
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
ClearBackground(RAYWHITE);
DrawText("Use mouse wheel to change font size", 20, 20, 10, GRAY);
DrawText("Use KEY_RIGHT and KEY_LEFT to move text", 20, 40, 10, GRAY);
DrawText("Use 1, 2, 3 to change texture filter", 20, 60, 10, GRAY);
DrawText("Drop a new TTF font for dynamic loading", 20, 80, 10, DARKGRAY);
DrawTextEx(font, msg, fontPosition, fontSize, 0, BLACK);
// TODO: It seems texSize measurement is not accurate due to chars offsets...
//DrawRectangleLines(fontPosition.x, fontPosition.y, textSize.x, textSize.y, RED);
DrawRectangle(0, screenHeight - 80, screenWidth, 80, LIGHTGRAY);
DrawText(FormatText("Font size: %02.02f", fontSize), 20, screenHeight - 50, 10, DARKGRAY);
DrawText(FormatText("Text size: [%02.02f, %02.02f]", textSize.x, textSize.y), 20, screenHeight - 30, 10, DARKGRAY);
DrawText("CURRENT TEXTURE FILTER:", 250, 400, 20, GRAY);
if (currentFontFilter == 0) DrawText("POINT", 570, 400, 20, BLACK);
else if (currentFontFilter == 1) DrawText("BILINEAR", 570, 400, 20, BLACK);
else if (currentFontFilter == 2) DrawText("TRILINEAR", 570, 400, 20, BLACK);
EndDrawing();
//----------------------------------------------------------------------------------
}
// De-Initialization
//--------------------------------------------------------------------------------------
#if defined(PLATFORM_DESKTOP)
ClearDroppedFiles(); // Clear internal buffers
#endif
UnloadFont(font); // Font unloading
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
return 0;
}
+}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/text/text_writing_anim.c b/ExampleApplication/Examples/text/text_writing_anim.c
deleted file mode 100644
index 5563b56..0000000
--- a/ExampleApplication/Examples/text/text_writing_anim.c
+++ /dev/null
@@ -1,62 +0,0 @@
-/*******************************************************************************************
-*
-* raylib [text] example - Text Writing Animation
-*
-* This example has been created using raylib 1.4 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
-*
-* Copyright (c) 2016 Ramon Santamaria (@raysan5)
-*
-********************************************************************************************/
-
-#include "raylib.h"
-
-int main()
-{
- // Initialization
- //--------------------------------------------------------------------------------------
- int screenWidth = 800;
- int screenHeight = 450;
-
- InitWindow(screenWidth, screenHeight, "raylib [text] example - text writing anim");
-
- const char message[128] = "This sample illustrates a text writing\nanimation effect! Check it out! ;)";
-
- int framesCounter = 0;
-
- SetTargetFPS(60);
- //--------------------------------------------------------------------------------------
-
- // Main game loop
- while (!WindowShouldClose()) // Detect window close button or ESC key
- {
- // Update
- //----------------------------------------------------------------------------------
- if (IsKeyDown(KEY_SPACE)) framesCounter += 8;
- else framesCounter++;
-
- if (IsKeyPressed(KEY_ENTER)) framesCounter = 0;
- //----------------------------------------------------------------------------------
-
- // Draw
- //----------------------------------------------------------------------------------
- BeginDrawing();
-
- ClearBackground(RAYWHITE);
-
- DrawText(SubText(message, 0, framesCounter/10), 210, 160, 20, MAROON);
-
- DrawText("PRESS [ENTER] to RESTART!", 240, 260, 20, LIGHTGRAY);
- DrawText("PRESS [SPACE] to SPEED UP!", 239, 300, 20, LIGHTGRAY);
-
- EndDrawing();
- //----------------------------------------------------------------------------------
- }
-
- // De-Initialization
- //--------------------------------------------------------------------------------------
- CloseWindow(); // Close window and OpenGL context
- //--------------------------------------------------------------------------------------
-
- return 0;
-}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/text/text_writing_anim.cs b/ExampleApplication/Examples/text/text_writing_anim.cs
new file mode 100644
index 0000000..62bc89b
--- /dev/null
+++ b/ExampleApplication/Examples/text/text_writing_anim.cs
@@ -0,0 +1,8 @@
+
+using Raylib;
+using static Raylib.rl;
+
+public partial class Examples
+{
+ /*******************************************************************************************
*
* raylib [text] example - Text Writing Animation
*
* This example has been created using raylib 1.4 (www.raylib.com)
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
*
* Copyright (c) 2016 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
public static int text_writing_anim()
{
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 800;
int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "raylib [text] example - text writing anim");
const char message[128] = "This sample illustrates a text writing\nanimation effect! Check it out! ;)";
int framesCounter = 0;
SetTargetFPS(60);
//--------------------------------------------------------------------------------------
// Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key
{
// Update
//----------------------------------------------------------------------------------
if (IsKeyDown(KEY_SPACE)) framesCounter += 8;
else framesCounter++;
if (IsKeyPressed(KEY_ENTER)) framesCounter = 0;
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
ClearBackground(RAYWHITE);
DrawText(SubText(message, 0, framesCounter/10), 210, 160, 20, MAROON);
DrawText("PRESS [ENTER] to RESTART!", 240, 260, 20, LIGHTGRAY);
DrawText("PRESS [SPACE] to SPEED UP!", 239, 300, 20, LIGHTGRAY);
EndDrawing();
//----------------------------------------------------------------------------------
}
// De-Initialization
//--------------------------------------------------------------------------------------
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
return 0;
}
+}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/textures/textures_image_drawing.cs b/ExampleApplication/Examples/textures/textures_image_drawing.cs
index d53ed8d..ce8c8b4 100644
--- a/ExampleApplication/Examples/textures/textures_image_drawing.cs
+++ b/ExampleApplication/Examples/textures/textures_image_drawing.cs
@@ -1,90 +1,8 @@
-/*******************************************************************************************
-*
-* raylib [textures] example - Image loading and drawing on it
-*
-* NOTE: Images are loaded in CPU memory (RAM); textures are loaded in GPU memory (VRAM)
-*
-* This example has been created using raylib 1.4 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
-*
-* Copyright (c) 2016 Ramon Santamaria (@raysan5)
-*
-********************************************************************************************/
-
-using Raylib;
-using static Raylib.rl;
-
-public partial class Examples
-{
- public static int textures_image_drawing()
- {
- // Initialization
- //--------------------------------------------------------------------------------------
- int screenWidth = 800;
- int screenHeight = 450;
-
- InitWindow(screenWidth, screenHeight, "raylib [textures] example - image drawing");
-
- // NOTE: Textures MUST be loaded after Window initialization (OpenGL context is required)
-
- Image cat = LoadImage("resources/cat.png"); // Load image in CPU memory (RAM)
- ImageCrop(cat, new Rectangle(100, 10, 280, 380)); // Crop an image piece
- ImageFlipHorizontal(ref cat); // Flip cropped image horizontally
- ImageResize(ref cat, 150, 200); // Resize flipped-cropped image
-
- Image parrots = LoadImage("resources/parrots.png"); // Load image in CPU memory (RAM)
-
- // Draw one image over the other with a scaling of 1.5f
- ImageDraw(parrots, cat, new Rectangle(0, 0, cat.width, cat.height), new Rectangle(30, 40, cat.width * 1.5f, cat.height * 1.5f));
- ImageCrop(parrots, new Rectangle(0, 50, parrots.width, parrots.height - 100)); // Crop resulting image
-
- UnloadImage(cat); // Unload image from RAM
-
- // Load custom font for frawing on image
- Font font = LoadFont("resources/custom_jupiter_crash.png");
-
- // Draw over image using custom font
- ImageDrawTextEx(parrots, new Vector2(300, 230), font, "PARROTS CAT", font.baseSize, -2, WHITE);
-
- UnloadFont(font); // Unload custom spritefont (already drawn used on image)
-
- Texture2D texture = LoadTextureFromImage(parrots); // Image converted to texture, uploaded to GPU memory (VRAM)
- UnloadImage(parrots); // Once image has been converted to texture and uploaded to VRAM, it can be unloaded from RAM
-
- SetTargetFPS(60);
- //---------------------------------------------------------------------------------------
-
- // Main game loop
- while (!WindowShouldClose()) // Detect window close button or ESC key
- {
- // Update
- //----------------------------------------------------------------------------------
- // TODO: Update your variables here
- //----------------------------------------------------------------------------------
-
- // Draw
- //----------------------------------------------------------------------------------
- BeginDrawing();
-
- ClearBackground(RAYWHITE);
-
- DrawTexture(texture, screenWidth / 2 - texture.width / 2, screenHeight / 2 - texture.height / 2 - 40, WHITE);
- DrawRectangleLines(screenWidth / 2 - texture.width / 2, screenHeight / 2 - texture.height / 2 - 40, texture.width, texture.height, DARKGRAY);
-
- DrawText("We are drawing only one texture from various images composed!", 240, 350, 10, DARKGRAY);
- DrawText("Source images have been cropped, scaled, flipped and copied one over the other.", 190, 370, 10, DARKGRAY);
-
- EndDrawing();
- //----------------------------------------------------------------------------------
- }
-
- // De-Initialization
- //--------------------------------------------------------------------------------------
- UnloadTexture(texture); // Texture unloading
-
- CloseWindow(); // Close window and OpenGL context
- //--------------------------------------------------------------------------------------
-
- return 0;
- }
+
+using Raylib;
+using static Raylib.rl;
+
+public partial class Examples
+{
+ /*******************************************************************************************
*
* raylib [textures] example - Image loading and drawing on it
*
* NOTE: Images are loaded in CPU memory (RAM); textures are loaded in GPU memory (VRAM)
*
* This example has been created using raylib 1.4 (www.raylib.com)
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
*
* Copyright (c) 2016 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
public static int textures_image_drawing()
{
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 800;
int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "raylib [textures] example - image drawing");
// NOTE: Textures MUST be loaded after Window initialization (OpenGL context is required)
Image cat = LoadImage("resources/cat.png"); // Load image in CPU memory (RAM)
ImageCrop(&cat, (Rectangle){ 100, 10, 280, 380 }); // Crop an image piece
ImageFlipHorizontal(&cat); // Flip cropped image horizontally
ImageResize(&cat, 150, 200); // Resize flipped-cropped image
Image parrots = LoadImage("resources/parrots.png"); // Load image in CPU memory (RAM)
// Draw one image over the other with a scaling of 1.5f
ImageDraw(&parrots, cat, (Rectangle){ 0, 0, cat.width, cat.height }, (Rectangle){ 30, 40, cat.width*1.5f, cat.height*1.5f });
ImageCrop(&parrots, (Rectangle){ 0, 50, parrots.width, parrots.height - 100 }); // Crop resulting image
UnloadImage(cat); // Unload image from RAM
// Load custom font for frawing on image
Font font = LoadFont("resources/custom_jupiter_crash.png");
// Draw over image using custom font
ImageDrawTextEx(&parrots, (Vector2){ 300, 230 }, font, "PARROTS & CAT", font.baseSize, -2, WHITE);
UnloadFont(font); // Unload custom spritefont (already drawn used on image)
Texture2D texture = LoadTextureFromImage(parrots); // Image converted to texture, uploaded to GPU memory (VRAM)
UnloadImage(parrots); // Once image has been converted to texture and uploaded to VRAM, it can be unloaded from RAM
SetTargetFPS(60);
//---------------------------------------------------------------------------------------
// Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key
{
// Update
//----------------------------------------------------------------------------------
// TODO: Update your variables here
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
ClearBackground(RAYWHITE);
DrawTexture(texture, screenWidth/2 - texture.width/2, screenHeight/2 - texture.height/2 - 40, WHITE);
DrawRectangleLines(screenWidth/2 - texture.width/2, screenHeight/2 - texture.height/2 - 40, texture.width, texture.height, DARKGRAY);
DrawText("We are drawing only one texture from various images composed!", 240, 350, 10, DARKGRAY);
DrawText("Source images have been cropped, scaled, flipped and copied one over the other.", 190, 370, 10, DARKGRAY);
EndDrawing();
//----------------------------------------------------------------------------------
}
// De-Initialization
//--------------------------------------------------------------------------------------
UnloadTexture(texture); // Texture unloading
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
return 0;
}
}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/textures/textures_image_generation.c b/ExampleApplication/Examples/textures/textures_image_generation.c
deleted file mode 100644
index b9608c8..0000000
--- a/ExampleApplication/Examples/textures/textures_image_generation.c
+++ /dev/null
@@ -1,105 +0,0 @@
-/*******************************************************************************************
-*
-* raylib [textures] example - Procedural images generation
-*
-* This example has been created using raylib 1.8 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
-*
-* Copyright (c) 2O17 Wilhem Barbier (@nounoursheureux)
-*
-********************************************************************************************/
-
-#include "raylib.h"
-
-#define NUM_TEXTURES 7 // Currently we have 7 generation algorithms
-
-int main()
-{
- // Initialization
- //--------------------------------------------------------------------------------------
- int screenWidth = 800;
- int screenHeight = 450;
-
- InitWindow(screenWidth, screenHeight, "raylib [textures] example - procedural images generation");
-
- Image verticalGradient = GenImageGradientV(screenWidth, screenHeight, RED, BLUE);
- Image horizontalGradient = GenImageGradientH(screenWidth, screenHeight, RED, BLUE);
- Image radialGradient = GenImageGradientRadial(screenWidth, screenHeight, 0.0f, WHITE, BLACK);
- Image checked = GenImageChecked(screenWidth, screenHeight, 32, 32, RED, BLUE);
- Image whiteNoise = GenImageWhiteNoise(screenWidth, screenHeight, 0.5f);
- Image perlinNoise = GenImagePerlinNoise(screenWidth, screenHeight, 50, 50, 4.0f);
- Image cellular = GenImageCellular(screenWidth, screenHeight, 32);
-
- Texture2D textures[NUM_TEXTURES];
- textures[0] = LoadTextureFromImage(verticalGradient);
- textures[1] = LoadTextureFromImage(horizontalGradient);
- textures[2] = LoadTextureFromImage(radialGradient);
- textures[3] = LoadTextureFromImage(checked);
- textures[4] = LoadTextureFromImage(whiteNoise);
- textures[5] = LoadTextureFromImage(perlinNoise);
- textures[6] = LoadTextureFromImage(cellular);
-
- // Unload image data (CPU RAM)
- UnloadImage(verticalGradient);
- UnloadImage(horizontalGradient);
- UnloadImage(radialGradient);
- UnloadImage(checked);
- UnloadImage(whiteNoise);
- UnloadImage(perlinNoise);
- UnloadImage(cellular);
-
- int currentTexture = 0;
-
- SetTargetFPS(60);
- //---------------------------------------------------------------------------------------
-
- // Main game loop
- while (!WindowShouldClose())
- {
- // Update
- //----------------------------------------------------------------------------------
- if (IsMouseButtonPressed(MOUSE_LEFT_BUTTON) || IsKeyPressed(KEY_RIGHT))
- {
- currentTexture = (currentTexture + 1)%NUM_TEXTURES; // Cycle between the textures
- }
- //----------------------------------------------------------------------------------
-
- // Draw
- //----------------------------------------------------------------------------------
- BeginDrawing();
-
- ClearBackground(RAYWHITE);
-
- DrawTexture(textures[currentTexture], 0, 0, WHITE);
-
- DrawRectangle(30, 400, 325, 30, Fade(SKYBLUE, 0.5f));
- DrawRectangleLines(30, 400, 325, 30, Fade(WHITE, 0.5f));
- DrawText("MOUSE LEFT BUTTON to CYCLE PROCEDURAL TEXTURES", 40, 410, 10, WHITE);
-
- switch(currentTexture)
- {
- case 0: DrawText("VERTICAL GRADIENT", 560, 10, 20, RAYWHITE); break;
- case 1: DrawText("HORIZONTAL GRADIENT", 540, 10, 20, RAYWHITE); break;
- case 2: DrawText("RADIAL GRADIENT", 580, 10, 20, LIGHTGRAY); break;
- case 3: DrawText("CHECKED", 680, 10, 20, RAYWHITE); break;
- case 4: DrawText("WHITE NOISE", 640, 10, 20, RED); break;
- case 5: DrawText("PERLIN NOISE", 630, 10, 20, RAYWHITE); break;
- case 6: DrawText("CELLULAR", 670, 10, 20, RAYWHITE); break;
- default: break;
- }
-
- EndDrawing();
- //----------------------------------------------------------------------------------
- }
-
- // De-Initialization
- //--------------------------------------------------------------------------------------
-
- // Unload textures data (GPU VRAM)
- for (int i = 0; i < NUM_TEXTURES; i++) UnloadTexture(textures[i]);
-
- CloseWindow(); // Close window and OpenGL context
- //--------------------------------------------------------------------------------------
-
- return 0;
-}
diff --git a/ExampleApplication/Examples/textures/textures_image_generation.cs b/ExampleApplication/Examples/textures/textures_image_generation.cs
new file mode 100644
index 0000000..972a2a1
--- /dev/null
+++ b/ExampleApplication/Examples/textures/textures_image_generation.cs
@@ -0,0 +1,8 @@
+
+using Raylib;
+using static Raylib.rl;
+
+public partial class Examples
+{
+ /*******************************************************************************************
*
* raylib [textures] example - Procedural images generation
*
* This example has been created using raylib 1.8 (www.raylib.com)
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
*
* Copyright (c) 2O17 Wilhem Barbier (@nounoursheureux)
*
********************************************************************************************/
#define NUM_TEXTURES 7 // Currently we have 7 generation algorithms
public static int textures_image_generation()
{
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 800;
int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "raylib [textures] example - procedural images generation");
Image verticalGradient = GenImageGradientV(screenWidth, screenHeight, RED, BLUE);
Image horizontalGradient = GenImageGradientH(screenWidth, screenHeight, RED, BLUE);
Image radialGradient = GenImageGradientRadial(screenWidth, screenHeight, 0.0f, WHITE, BLACK);
Image checked = GenImageChecked(screenWidth, screenHeight, 32, 32, RED, BLUE);
Image whiteNoise = GenImageWhiteNoise(screenWidth, screenHeight, 0.5f);
Image perlinNoise = GenImagePerlinNoise(screenWidth, screenHeight, 50, 50, 4.0f);
Image cellular = GenImageCellular(screenWidth, screenHeight, 32);
Texture2D textures[NUM_TEXTURES];
textures[0] = LoadTextureFromImage(verticalGradient);
textures[1] = LoadTextureFromImage(horizontalGradient);
textures[2] = LoadTextureFromImage(radialGradient);
textures[3] = LoadTextureFromImage(checked);
textures[4] = LoadTextureFromImage(whiteNoise);
textures[5] = LoadTextureFromImage(perlinNoise);
textures[6] = LoadTextureFromImage(cellular);
// Unload image data (CPU RAM)
UnloadImage(verticalGradient);
UnloadImage(horizontalGradient);
UnloadImage(radialGradient);
UnloadImage(checked);
UnloadImage(whiteNoise);
UnloadImage(perlinNoise);
UnloadImage(cellular);
int currentTexture = 0;
SetTargetFPS(60);
//---------------------------------------------------------------------------------------
// Main game loop
while (!WindowShouldClose())
{
// Update
//----------------------------------------------------------------------------------
if (IsMouseButtonPressed(MOUSE_LEFT_BUTTON) || IsKeyPressed(KEY_RIGHT))
{
currentTexture = (currentTexture + 1)%NUM_TEXTURES; // Cycle between the textures
}
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
ClearBackground(RAYWHITE);
DrawTexture(textures[currentTexture], 0, 0, WHITE);
DrawRectangle(30, 400, 325, 30, Fade(SKYBLUE, 0.5f));
DrawRectangleLines(30, 400, 325, 30, Fade(WHITE, 0.5f));
DrawText("MOUSE LEFT BUTTON to CYCLE PROCEDURAL TEXTURES", 40, 410, 10, WHITE);
switch(currentTexture)
{
case 0: DrawText("VERTICAL GRADIENT", 560, 10, 20, RAYWHITE); break;
case 1: DrawText("HORIZONTAL GRADIENT", 540, 10, 20, RAYWHITE); break;
case 2: DrawText("RADIAL GRADIENT", 580, 10, 20, LIGHTGRAY); break;
case 3: DrawText("CHECKED", 680, 10, 20, RAYWHITE); break;
case 4: DrawText("WHITE NOISE", 640, 10, 20, RED); break;
case 5: DrawText("PERLIN NOISE", 630, 10, 20, RAYWHITE); break;
case 6: DrawText("CELLULAR", 670, 10, 20, RAYWHITE); break;
default: break;
}
EndDrawing();
//----------------------------------------------------------------------------------
}
// De-Initialization
//--------------------------------------------------------------------------------------
// Unload textures data (GPU VRAM)
for (int i = 0; i < NUM_TEXTURES; i++) UnloadTexture(textures[i]);
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
return 0;
}
+}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/textures/textures_image_loading.c b/ExampleApplication/Examples/textures/textures_image_loading.c
deleted file mode 100644
index 54c7358..0000000
--- a/ExampleApplication/Examples/textures/textures_image_loading.c
+++ /dev/null
@@ -1,63 +0,0 @@
-/*******************************************************************************************
-*
-* raylib [textures] example - Image loading and texture creation
-*
-* NOTE: Images are loaded in CPU memory (RAM); textures are loaded in GPU memory (VRAM)
-*
-* This example has been created using raylib 1.3 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
-*
-* Copyright (c) 2015 Ramon Santamaria (@raysan5)
-*
-********************************************************************************************/
-
-#include "raylib.h"
-
-int main()
-{
- // Initialization
- //--------------------------------------------------------------------------------------
- int screenWidth = 800;
- int screenHeight = 450;
-
- InitWindow(screenWidth, screenHeight, "raylib [textures] example - image loading");
-
- // NOTE: Textures MUST be loaded after Window initialization (OpenGL context is required)
-
- Image image = LoadImage("resources/raylib_logo.png"); // Loaded in CPU memory (RAM)
- Texture2D texture = LoadTextureFromImage(image); // Image converted to texture, GPU memory (VRAM)
-
- UnloadImage(image); // Once image has been converted to texture and uploaded to VRAM, it can be unloaded from RAM
- //---------------------------------------------------------------------------------------
-
- // Main game loop
- while (!WindowShouldClose()) // Detect window close button or ESC key
- {
- // Update
- //----------------------------------------------------------------------------------
- // TODO: Update your variables here
- //----------------------------------------------------------------------------------
-
- // Draw
- //----------------------------------------------------------------------------------
- BeginDrawing();
-
- ClearBackground(RAYWHITE);
-
- DrawTexture(texture, screenWidth/2 - texture.width/2, screenHeight/2 - texture.height/2, WHITE);
-
- DrawText("this IS a texture loaded from an image!", 300, 370, 10, GRAY);
-
- EndDrawing();
- //----------------------------------------------------------------------------------
- }
-
- // De-Initialization
- //--------------------------------------------------------------------------------------
- UnloadTexture(texture); // Texture unloading
-
- CloseWindow(); // Close window and OpenGL context
- //--------------------------------------------------------------------------------------
-
- return 0;
-}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/textures/textures_image_loading.cs b/ExampleApplication/Examples/textures/textures_image_loading.cs
new file mode 100644
index 0000000..ff53071
--- /dev/null
+++ b/ExampleApplication/Examples/textures/textures_image_loading.cs
@@ -0,0 +1,8 @@
+
+using Raylib;
+using static Raylib.rl;
+
+public partial class Examples
+{
+ /*******************************************************************************************
*
* raylib [textures] example - Image loading and texture creation
*
* NOTE: Images are loaded in CPU memory (RAM); textures are loaded in GPU memory (VRAM)
*
* This example has been created using raylib 1.3 (www.raylib.com)
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
*
* Copyright (c) 2015 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
public static int textures_image_loading()
{
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 800;
int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "raylib [textures] example - image loading");
// NOTE: Textures MUST be loaded after Window initialization (OpenGL context is required)
Image image = LoadImage("resources/raylib_logo.png"); // Loaded in CPU memory (RAM)
Texture2D texture = LoadTextureFromImage(image); // Image converted to texture, GPU memory (VRAM)
UnloadImage(image); // Once image has been converted to texture and uploaded to VRAM, it can be unloaded from RAM
//---------------------------------------------------------------------------------------
// Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key
{
// Update
//----------------------------------------------------------------------------------
// TODO: Update your variables here
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
ClearBackground(RAYWHITE);
DrawTexture(texture, screenWidth/2 - texture.width/2, screenHeight/2 - texture.height/2, WHITE);
DrawText("this IS a texture loaded from an image!", 300, 370, 10, GRAY);
EndDrawing();
//----------------------------------------------------------------------------------
}
// De-Initialization
//--------------------------------------------------------------------------------------
UnloadTexture(texture); // Texture unloading
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
return 0;
}
+}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/textures/textures_image_processing.c b/ExampleApplication/Examples/textures/textures_image_processing.c
deleted file mode 100644
index 427faa6..0000000
--- a/ExampleApplication/Examples/textures/textures_image_processing.c
+++ /dev/null
@@ -1,145 +0,0 @@
-/*******************************************************************************************
-*
-* raylib [textures] example - Image processing
-*
-* NOTE: Images are loaded in CPU memory (RAM); textures are loaded in GPU memory (VRAM)
-*
-* This example has been created using raylib 1.4 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
-*
-* Copyright (c) 2016 Ramon Santamaria (@raysan5)
-*
-********************************************************************************************/
-
-#include "raylib.h"
-
-#include // Required for: free()
-
-#define NUM_PROCESSES 8
-
-typedef enum {
- NONE = 0,
- COLOR_GRAYSCALE,
- COLOR_TINT,
- COLOR_INVERT,
- COLOR_CONTRAST,
- COLOR_BRIGHTNESS,
- FLIP_VERTICAL,
- FLIP_HORIZONTAL
-} ImageProcess;
-
-static const char *processText[] = {
- "NO PROCESSING",
- "COLOR GRAYSCALE",
- "COLOR TINT",
- "COLOR INVERT",
- "COLOR CONTRAST",
- "COLOR BRIGHTNESS",
- "FLIP VERTICAL",
- "FLIP HORIZONTAL"
-};
-
-int main()
-{
- // Initialization
- //--------------------------------------------------------------------------------------
- int screenWidth = 800;
- int screenHeight = 450;
-
- InitWindow(screenWidth, screenHeight, "raylib [textures] example - image processing");
-
- // NOTE: Textures MUST be loaded after Window initialization (OpenGL context is required)
-
- Image image = LoadImage("resources/parrots.png"); // Loaded in CPU memory (RAM)
- ImageFormat(&image, UNCOMPRESSED_R8G8B8A8); // Format image to RGBA 32bit (required for texture update) <-- ISSUE
- Texture2D texture = LoadTextureFromImage(image); // Image converted to texture, GPU memory (VRAM)
-
- int currentProcess = NONE;
- bool textureReload = false;
-
- Rectangle selectRecs[NUM_PROCESSES];
-
- for (int i = 0; i < NUM_PROCESSES; i++) selectRecs[i] = (Rectangle){ 40, 50 + 32*i, 150, 30 };
-
- SetTargetFPS(60);
- //---------------------------------------------------------------------------------------
-
- // Main game loop
- while (!WindowShouldClose()) // Detect window close button or ESC key
- {
- // Update
- //----------------------------------------------------------------------------------
- if (IsKeyPressed(KEY_DOWN))
- {
- currentProcess++;
- if (currentProcess > 7) currentProcess = 0;
- textureReload = true;
- }
- else if (IsKeyPressed(KEY_UP))
- {
- currentProcess--;
- if (currentProcess < 0) currentProcess = 7;
- textureReload = true;
- }
-
- if (textureReload)
- {
- UnloadImage(image); // Unload current image data
- image = LoadImage("resources/parrots.png"); // Re-load image data
-
- // NOTE: Image processing is a costly CPU process to be done every frame,
- // If image processing is required in a frame-basis, it should be done
- // with a texture and by shaders
- switch (currentProcess)
- {
- case COLOR_GRAYSCALE: ImageColorGrayscale(&image); break;
- case COLOR_TINT: ImageColorTint(&image, GREEN); break;
- case COLOR_INVERT: ImageColorInvert(&image); break;
- case COLOR_CONTRAST: ImageColorContrast(&image, -40); break;
- case COLOR_BRIGHTNESS: ImageColorBrightness(&image, -80); break;
- case FLIP_VERTICAL: ImageFlipVertical(&image); break;
- case FLIP_HORIZONTAL: ImageFlipHorizontal(&image); break;
- default: break;
- }
-
- Color *pixels = GetImageData(image); // Get pixel data from image (RGBA 32bit)
- UpdateTexture(texture, pixels); // Update texture with new image data
- free(pixels); // Unload pixels data from RAM
-
- textureReload = false;
- }
- //----------------------------------------------------------------------------------
-
- // Draw
- //----------------------------------------------------------------------------------
- BeginDrawing();
-
- ClearBackground(RAYWHITE);
-
- DrawText("IMAGE PROCESSING:", 40, 30, 10, DARKGRAY);
-
- // Draw rectangles
- for (int i = 0; i < NUM_PROCESSES; i++)
- {
- DrawRectangleRec(selectRecs[i], (i == currentProcess) ? SKYBLUE : LIGHTGRAY);
- DrawRectangleLines(selectRecs[i].x, selectRecs[i].y, selectRecs[i].width, selectRecs[i].height, (i == currentProcess) ? BLUE : GRAY);
- DrawText(processText[i], selectRecs[i].x + selectRecs[i].width/2 - MeasureText(processText[i], 10)/2, selectRecs[i].y + 11, 10, (i == currentProcess) ? DARKBLUE : DARKGRAY);
- }
-
- DrawTexture(texture, screenWidth - texture.width - 60, screenHeight/2 - texture.height/2, WHITE);
- DrawRectangleLines(screenWidth - texture.width - 60, screenHeight/2 - texture.height/2, texture.width, texture.height, BLACK);
-
- EndDrawing();
- //----------------------------------------------------------------------------------
- }
-
- // De-Initialization
- //--------------------------------------------------------------------------------------
- UnloadTexture(texture); // Unload texture from VRAM
- UnloadImage(image); // Unload image from RAM
-
- CloseWindow(); // Close window and OpenGL context
- //--------------------------------------------------------------------------------------
-
- return 0;
-}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/textures/textures_image_processing.cs b/ExampleApplication/Examples/textures/textures_image_processing.cs
new file mode 100644
index 0000000..62dfd16
--- /dev/null
+++ b/ExampleApplication/Examples/textures/textures_image_processing.cs
@@ -0,0 +1,8 @@
+
+using Raylib;
+using static Raylib.rl;
+
+public partial class Examples
+{
+ /*******************************************************************************************
*
* raylib [textures] example - Image processing
*
* NOTE: Images are loaded in CPU memory (RAM); textures are loaded in GPU memory (VRAM)
*
* This example has been created using raylib 1.4 (www.raylib.com)
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
*
* Copyright (c) 2016 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
#include // Required for: free()
#define NUM_PROCESSES 8
typedef enum {
NONE = 0,
COLOR_GRAYSCALE,
COLOR_TINT,
COLOR_INVERT,
COLOR_CONTRAST,
COLOR_BRIGHTNESS,
FLIP_VERTICAL,
FLIP_HORIZONTAL
} ImageProcess;
static const char *processText[] = {
"NO PROCESSING",
"COLOR GRAYSCALE",
"COLOR TINT",
"COLOR INVERT",
"COLOR CONTRAST",
"COLOR BRIGHTNESS",
"FLIP VERTICAL",
"FLIP HORIZONTAL"
};
public static int textures_image_processing()
{
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 800;
int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "raylib [textures] example - image processing");
// NOTE: Textures MUST be loaded after Window initialization (OpenGL context is required)
Image image = LoadImage("resources/parrots.png"); // Loaded in CPU memory (RAM)
ImageFormat(&image, UNCOMPRESSED_R8G8B8A8); // Format image to RGBA 32bit (required for texture update) <-- ISSUE
Texture2D texture = LoadTextureFromImage(image); // Image converted to texture, GPU memory (VRAM)
int currentProcess = NONE;
bool textureReload = false;
Rectangle selectRecs[NUM_PROCESSES];
for (int i = 0; i < NUM_PROCESSES; i++) selectRecs[i] = (Rectangle){ 40, 50 + 32*i, 150, 30 };
SetTargetFPS(60);
//---------------------------------------------------------------------------------------
// Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key
{
// Update
//----------------------------------------------------------------------------------
if (IsKeyPressed(KEY_DOWN))
{
currentProcess++;
if (currentProcess > 7) currentProcess = 0;
textureReload = true;
}
else if (IsKeyPressed(KEY_UP))
{
currentProcess--;
if (currentProcess < 0) currentProcess = 7;
textureReload = true;
}
if (textureReload)
{
UnloadImage(image); // Unload current image data
image = LoadImage("resources/parrots.png"); // Re-load image data
// NOTE: Image processing is a costly CPU process to be done every frame,
// If image processing is required in a frame-basis, it should be done
// with a texture and by shaders
switch (currentProcess)
{
case COLOR_GRAYSCALE: ImageColorGrayscale(&image); break;
case COLOR_TINT: ImageColorTint(&image, GREEN); break;
case COLOR_INVERT: ImageColorInvert(&image); break;
case COLOR_CONTRAST: ImageColorContrast(&image, -40); break;
case COLOR_BRIGHTNESS: ImageColorBrightness(&image, -80); break;
case FLIP_VERTICAL: ImageFlipVertical(&image); break;
case FLIP_HORIZONTAL: ImageFlipHorizontal(&image); break;
default: break;
}
Color *pixels = GetImageData(image); // Get pixel data from image (RGBA 32bit)
UpdateTexture(texture, pixels); // Update texture with new image data
free(pixels); // Unload pixels data from RAM
textureReload = false;
}
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
ClearBackground(RAYWHITE);
DrawText("IMAGE PROCESSING:", 40, 30, 10, DARKGRAY);
// Draw rectangles
for (int i = 0; i < NUM_PROCESSES; i++)
{
DrawRectangleRec(selectRecs[i], (i == currentProcess) ? SKYBLUE : LIGHTGRAY);
DrawRectangleLines(selectRecs[i].x, selectRecs[i].y, selectRecs[i].width, selectRecs[i].height, (i == currentProcess) ? BLUE : GRAY);
DrawText(processText[i], selectRecs[i].x + selectRecs[i].width/2 - MeasureText(processText[i], 10)/2, selectRecs[i].y + 11, 10, (i == currentProcess) ? DARKBLUE : DARKGRAY);
}
DrawTexture(texture, screenWidth - texture.width - 60, screenHeight/2 - texture.height/2, WHITE);
DrawRectangleLines(screenWidth - texture.width - 60, screenHeight/2 - texture.height/2, texture.width, texture.height, BLACK);
EndDrawing();
//----------------------------------------------------------------------------------
}
// De-Initialization
//--------------------------------------------------------------------------------------
UnloadTexture(texture); // Unload texture from VRAM
UnloadImage(image); // Unload image from RAM
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
return 0;
}
+}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/textures/textures_image_text.c b/ExampleApplication/Examples/textures/textures_image_text.c
deleted file mode 100644
index 78d25c1..0000000
--- a/ExampleApplication/Examples/textures/textures_image_text.c
+++ /dev/null
@@ -1,83 +0,0 @@
-/*******************************************************************************************
-*
-* raylib [texture] example - Image text drawing using TTF generated spritefont
-*
-* This example has been created using raylib 1.8 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
-*
-* Copyright (c) 2017 Ramon Santamaria (@raysan5)
-*
-********************************************************************************************/
-
-#include "raylib.h"
-
-int main()
-{
- // Initialization
- //--------------------------------------------------------------------------------------
- int screenWidth = 800;
- int screenHeight = 450;
-
- InitWindow(screenWidth, screenHeight, "raylib [texture] example - image text drawing");
-
- // TTF Font loading with custom generation parameters
- Font font = LoadFontEx("resources/KAISG.ttf", 64, 95, 0);
-
- Image parrots = LoadImage("resources/parrots.png"); // Load image in CPU memory (RAM)
-
- // Draw over image using custom font
- ImageDrawTextEx(&parrots, (Vector2){ 20, 20 }, font, "[Parrots font drawing]", font.baseSize, 0, WHITE);
-
- Texture2D texture = LoadTextureFromImage(parrots); // Image converted to texture, uploaded to GPU memory (VRAM)
- UnloadImage(parrots); // Once image has been converted to texture and uploaded to VRAM, it can be unloaded from RAM
-
- Vector2 position = { screenWidth/2 - texture.width/2, screenHeight/2 - texture.height/2 - 20 };
-
- bool showFont = false;
-
- SetTargetFPS(60);
- //--------------------------------------------------------------------------------------
-
- // Main game loop
- while (!WindowShouldClose()) // Detect window close button or ESC key
- {
- // Update
- //----------------------------------------------------------------------------------
- if (IsKeyDown(KEY_SPACE)) showFont = true;
- else showFont = false;
- //----------------------------------------------------------------------------------
-
- // Draw
- //----------------------------------------------------------------------------------
- BeginDrawing();
-
- ClearBackground(RAYWHITE);
-
- if (!showFont)
- {
- // Draw texture with text already drawn inside
- DrawTextureV(texture, position, WHITE);
-
- // Draw text directly using sprite font
- DrawTextEx(font, "[Parrots font drawing]", (Vector2){ position.x + 20,
- position.y + 20 + 280 }, font.baseSize, 0, WHITE);
- }
- else DrawTexture(font.texture, screenWidth/2 - font.texture.width/2, 50, BLACK);
-
- DrawText("PRESS SPACE to SEE USED SPRITEFONT ", 290, 420, 10, DARKGRAY);
-
- EndDrawing();
- //----------------------------------------------------------------------------------
- }
-
- // De-Initialization
- //--------------------------------------------------------------------------------------
- UnloadTexture(texture); // Texture unloading
-
- UnloadFont(font); // Unload custom spritefont
-
- CloseWindow(); // Close window and OpenGL context
- //--------------------------------------------------------------------------------------
-
- return 0;
-}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/textures/textures_image_text.cs b/ExampleApplication/Examples/textures/textures_image_text.cs
new file mode 100644
index 0000000..0398618
--- /dev/null
+++ b/ExampleApplication/Examples/textures/textures_image_text.cs
@@ -0,0 +1,8 @@
+
+using Raylib;
+using static Raylib.rl;
+
+public partial class Examples
+{
+ /*******************************************************************************************
*
* raylib [texture] example - Image text drawing using TTF generated spritefont
*
* This example has been created using raylib 1.8 (www.raylib.com)
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
*
* Copyright (c) 2017 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
public static int textures_image_text()
{
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 800;
int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "raylib [texture] example - image text drawing");
// TTF Font loading with custom generation parameters
Font font = LoadFontEx("resources/KAISG.ttf", 64, 95, 0);
Image parrots = LoadImage("resources/parrots.png"); // Load image in CPU memory (RAM)
// Draw over image using custom font
ImageDrawTextEx(&parrots, (Vector2){ 20, 20 }, font, "[Parrots font drawing]", font.baseSize, 0, WHITE);
Texture2D texture = LoadTextureFromImage(parrots); // Image converted to texture, uploaded to GPU memory (VRAM)
UnloadImage(parrots); // Once image has been converted to texture and uploaded to VRAM, it can be unloaded from RAM
Vector2 position = { screenWidth/2 - texture.width/2, screenHeight/2 - texture.height/2 - 20 };
bool showFont = false;
SetTargetFPS(60);
//--------------------------------------------------------------------------------------
// Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key
{
// Update
//----------------------------------------------------------------------------------
if (IsKeyDown(KEY_SPACE)) showFont = true;
else showFont = false;
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
ClearBackground(RAYWHITE);
if (!showFont)
{
// Draw texture with text already drawn inside
DrawTextureV(texture, position, WHITE);
// Draw text directly using sprite font
DrawTextEx(font, "[Parrots font drawing]", (Vector2){ position.x + 20,
position.y + 20 + 280 }, font.baseSize, 0, WHITE);
}
else DrawTexture(font.texture, screenWidth/2 - font.texture.width/2, 50, BLACK);
DrawText("PRESS SPACE to SEE USED SPRITEFONT ", 290, 420, 10, DARKGRAY);
EndDrawing();
//----------------------------------------------------------------------------------
}
// De-Initialization
//--------------------------------------------------------------------------------------
UnloadTexture(texture); // Texture unloading
UnloadFont(font); // Unload custom spritefont
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
return 0;
}
+}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/textures/textures_logo_raylib.c b/ExampleApplication/Examples/textures/textures_logo_raylib.c
deleted file mode 100644
index f2f9312..0000000
--- a/ExampleApplication/Examples/textures/textures_logo_raylib.c
+++ /dev/null
@@ -1,57 +0,0 @@
-/*******************************************************************************************
-*
-* raylib [textures] example - Texture loading and drawing
-*
-* This example has been created using raylib 1.0 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
-*
-* Copyright (c) 2014 Ramon Santamaria (@raysan5)
-*
-********************************************************************************************/
-
-#include "raylib.h"
-
-int main()
-{
- // Initialization
- //--------------------------------------------------------------------------------------
- int screenWidth = 800;
- int screenHeight = 450;
-
- InitWindow(screenWidth, screenHeight, "raylib [textures] example - texture loading and drawing");
-
- // NOTE: Textures MUST be loaded after Window initialization (OpenGL context is required)
- Texture2D texture = LoadTexture("resources/raylib_logo.png"); // Texture loading
- //---------------------------------------------------------------------------------------
-
- // Main game loop
- while (!WindowShouldClose()) // Detect window close button or ESC key
- {
- // Update
- //----------------------------------------------------------------------------------
- // TODO: Update your variables here
- //----------------------------------------------------------------------------------
-
- // Draw
- //----------------------------------------------------------------------------------
- BeginDrawing();
-
- ClearBackground(RAYWHITE);
-
- DrawTexture(texture, screenWidth/2 - texture.width/2, screenHeight/2 - texture.height/2, WHITE);
-
- DrawText("this IS a texture!", 360, 370, 10, GRAY);
-
- EndDrawing();
- //----------------------------------------------------------------------------------
- }
-
- // De-Initialization
- //--------------------------------------------------------------------------------------
- UnloadTexture(texture); // Texture unloading
-
- CloseWindow(); // Close window and OpenGL context
- //--------------------------------------------------------------------------------------
-
- return 0;
-}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/textures/textures_logo_raylib.cs b/ExampleApplication/Examples/textures/textures_logo_raylib.cs
new file mode 100644
index 0000000..01658e0
--- /dev/null
+++ b/ExampleApplication/Examples/textures/textures_logo_raylib.cs
@@ -0,0 +1,8 @@
+
+using Raylib;
+using static Raylib.rl;
+
+public partial class Examples
+{
+ /*******************************************************************************************
*
* raylib [textures] example - Texture loading and drawing
*
* This example has been created using raylib 1.0 (www.raylib.com)
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
*
* Copyright (c) 2014 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
public static int textures_logo_raylib()
{
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 800;
int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "raylib [textures] example - texture loading and drawing");
// NOTE: Textures MUST be loaded after Window initialization (OpenGL context is required)
Texture2D texture = LoadTexture("resources/raylib_logo.png"); // Texture loading
//---------------------------------------------------------------------------------------
// Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key
{
// Update
//----------------------------------------------------------------------------------
// TODO: Update your variables here
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
ClearBackground(RAYWHITE);
DrawTexture(texture, screenWidth/2 - texture.width/2, screenHeight/2 - texture.height/2, WHITE);
DrawText("this IS a texture!", 360, 370, 10, GRAY);
EndDrawing();
//----------------------------------------------------------------------------------
}
// De-Initialization
//--------------------------------------------------------------------------------------
UnloadTexture(texture); // Texture unloading
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
return 0;
}
+}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/textures/textures_particles_blending.c b/ExampleApplication/Examples/textures/textures_particles_blending.c
deleted file mode 100644
index 842ac77..0000000
--- a/ExampleApplication/Examples/textures/textures_particles_blending.c
+++ /dev/null
@@ -1,135 +0,0 @@
-/*******************************************************************************************
-*
-* raylib example - particles blending
-*
-* 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)
-*
-********************************************************************************************/
-
-#include "raylib.h"
-
-#define MAX_PARTICLES 200
-
-// Particle structure with basic data
-typedef struct {
- Vector2 position;
- Color color;
- float alpha;
- float size;
- float rotation;
- bool active; // NOTE: Use it to activate/deactive particle
-} Particle;
-
-int main()
-{
- // Initialization
- //--------------------------------------------------------------------------------------
- int screenWidth = 800;
- int screenHeight = 450;
-
- InitWindow(screenWidth, screenHeight, "raylib [textures] example - particles blending");
-
- // Particles pool, reuse them!
- Particle mouseTail[MAX_PARTICLES];
-
- // Initialize particles
- for (int i = 0; i < MAX_PARTICLES; i++)
- {
- mouseTail[i].position = (Vector2){ 0, 0 };
- mouseTail[i].color = (Color){ GetRandomValue(0, 255), GetRandomValue(0, 255), GetRandomValue(0, 255), 255 };
- mouseTail[i].alpha = 1.0f;
- mouseTail[i].size = (float)GetRandomValue(1, 30)/20.0f;
- mouseTail[i].rotation = GetRandomValue(0, 360);
- mouseTail[i].active = false;
- }
-
- float gravity = 3.0f;
-
- Texture2D smoke = LoadTexture("resources/smoke.png");
-
- int blending = BLEND_ALPHA;
-
- SetTargetFPS(60);
- //--------------------------------------------------------------------------------------
-
- // Main game loop
- while (!WindowShouldClose()) // Detect window close button or ESC key
- {
- // Update
- //----------------------------------------------------------------------------------
-
- // Activate one particle every frame and Update active particles
- // NOTE: Particles initial position should be mouse position when activated
- // NOTE: Particles fall down with gravity and rotation... and disappear after 2 seconds (alpha = 0)
- // NOTE: When a particle disappears, active = false and it can be reused.
- for (int i = 0; i < MAX_PARTICLES; i++)
- {
- if (!mouseTail[i].active)
- {
- mouseTail[i].active = true;
- mouseTail[i].alpha = 1.0f;
- mouseTail[i].position = GetMousePosition();
- i = MAX_PARTICLES;
- }
- }
-
- for (int i = 0; i < MAX_PARTICLES; i++)
- {
- if (mouseTail[i].active)
- {
- mouseTail[i].position.y += gravity;
- mouseTail[i].alpha -= 0.01f;
-
- if (mouseTail[i].alpha <= 0.0f) mouseTail[i].active = false;
-
- mouseTail[i].rotation += 5.0f;
- }
- }
-
- if (IsKeyPressed(KEY_SPACE))
- {
- if (blending == BLEND_ALPHA) blending = BLEND_ADDITIVE;
- else blending = BLEND_ALPHA;
- }
- //----------------------------------------------------------------------------------
-
- // Draw
- //----------------------------------------------------------------------------------
- BeginDrawing();
-
- ClearBackground(DARKGRAY);
-
- BeginBlendMode(blending);
-
- // Draw active particles
- for (int i = 0; i < MAX_PARTICLES; i++)
- {
- if (mouseTail[i].active) DrawTexturePro(smoke, (Rectangle){ 0, 0, smoke.width, smoke.height },
- (Rectangle){ mouseTail[i].position.x, mouseTail[i].position.y, smoke.width*mouseTail[i].size, smoke.height*mouseTail[i].size },
- (Vector2){ smoke.width*mouseTail[i].size/2, smoke.height*mouseTail[i].size/2 }, mouseTail[i].rotation,
- Fade(mouseTail[i].color, mouseTail[i].alpha));
- }
-
- EndBlendMode();
-
- DrawText("PRESS SPACE to CHANGE BLENDING MODE", 180, 20, 20, BLACK);
-
- if (blending == BLEND_ALPHA) DrawText("ALPHA BLENDING", 290, screenHeight - 40, 20, BLACK);
- else DrawText("ADDITIVE BLENDING", 280, screenHeight - 40, 20, RAYWHITE);
-
- EndDrawing();
- //----------------------------------------------------------------------------------
- }
-
- // De-Initialization
- //--------------------------------------------------------------------------------------
- UnloadTexture(smoke);
-
- CloseWindow(); // Close window and OpenGL context
- //--------------------------------------------------------------------------------------
-
- return 0;
-}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/textures/textures_particles_blending.cs b/ExampleApplication/Examples/textures/textures_particles_blending.cs
new file mode 100644
index 0000000..0ea6ded
--- /dev/null
+++ b/ExampleApplication/Examples/textures/textures_particles_blending.cs
@@ -0,0 +1,8 @@
+
+using Raylib;
+using static Raylib.rl;
+
+public partial class Examples
+{
+ /*******************************************************************************************
*
* raylib example - particles blending
*
* 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)
*
********************************************************************************************/
#define MAX_PARTICLES 200
// Particle structure with basic data
typedef struct {
Vector2 position;
Color color;
float alpha;
float size;
float rotation;
bool active; // NOTE: Use it to activate/deactive particle
} Particle;
public static int textures_particles_blending()
{
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 800;
int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "raylib [textures] example - particles blending");
// Particles pool, reuse them!
Particle mouseTail[MAX_PARTICLES];
// Initialize particles
for (int i = 0; i < MAX_PARTICLES; i++)
{
mouseTail[i].position = (Vector2){ 0, 0 };
mouseTail[i].color = (Color){ GetRandomValue(0, 255), GetRandomValue(0, 255), GetRandomValue(0, 255), 255 };
mouseTail[i].alpha = 1.0f;
mouseTail[i].size = (float)GetRandomValue(1, 30)/20.0f;
mouseTail[i].rotation = GetRandomValue(0, 360);
mouseTail[i].active = false;
}
float gravity = 3.0f;
Texture2D smoke = LoadTexture("resources/smoke.png");
int blending = BLEND_ALPHA;
SetTargetFPS(60);
//--------------------------------------------------------------------------------------
// Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key
{
// Update
//----------------------------------------------------------------------------------
// Activate one particle every frame and Update active particles
// NOTE: Particles initial position should be mouse position when activated
// NOTE: Particles fall down with gravity and rotation... and disappear after 2 seconds (alpha = 0)
// NOTE: When a particle disappears, active = false and it can be reused.
for (int i = 0; i < MAX_PARTICLES; i++)
{
if (!mouseTail[i].active)
{
mouseTail[i].active = true;
mouseTail[i].alpha = 1.0f;
mouseTail[i].position = GetMousePosition();
i = MAX_PARTICLES;
}
}
for (int i = 0; i < MAX_PARTICLES; i++)
{
if (mouseTail[i].active)
{
mouseTail[i].position.y += gravity;
mouseTail[i].alpha -= 0.01f;
if (mouseTail[i].alpha <= 0.0f) mouseTail[i].active = false;
mouseTail[i].rotation += 5.0f;
}
}
if (IsKeyPressed(KEY_SPACE))
{
if (blending == BLEND_ALPHA) blending = BLEND_ADDITIVE;
else blending = BLEND_ALPHA;
}
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
ClearBackground(DARKGRAY);
BeginBlendMode(blending);
// Draw active particles
for (int i = 0; i < MAX_PARTICLES; i++)
{
if (mouseTail[i].active) DrawTexturePro(smoke, (Rectangle){ 0, 0, smoke.width, smoke.height },
(Rectangle){ mouseTail[i].position.x, mouseTail[i].position.y, smoke.width*mouseTail[i].size, smoke.height*mouseTail[i].size },
(Vector2){ smoke.width*mouseTail[i].size/2, smoke.height*mouseTail[i].size/2 }, mouseTail[i].rotation,
Fade(mouseTail[i].color, mouseTail[i].alpha));
}
EndBlendMode();
DrawText("PRESS SPACE to CHANGE BLENDING MODE", 180, 20, 20, BLACK);
if (blending == BLEND_ALPHA) DrawText("ALPHA BLENDING", 290, screenHeight - 40, 20, BLACK);
else DrawText("ADDITIVE BLENDING", 280, screenHeight - 40, 20, RAYWHITE);
EndDrawing();
//----------------------------------------------------------------------------------
}
// De-Initialization
//--------------------------------------------------------------------------------------
UnloadTexture(smoke);
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
return 0;
}
+}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/textures/textures_raw_data.c b/ExampleApplication/Examples/textures/textures_raw_data.c
deleted file mode 100644
index b038792..0000000
--- a/ExampleApplication/Examples/textures/textures_raw_data.c
+++ /dev/null
@@ -1,95 +0,0 @@
-/*******************************************************************************************
-*
-* raylib [textures] example - Load textures from raw data
-*
-* NOTE: Images are loaded in CPU memory (RAM); textures are loaded in GPU memory (VRAM)
-*
-* This example has been created using raylib 1.3 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
-*
-* Copyright (c) 2015 Ramon Santamaria (@raysan5)
-*
-********************************************************************************************/
-
-#include "raylib.h"
-
-#include // Required for malloc() and free()
-
-int main()
-{
- // Initialization
- //--------------------------------------------------------------------------------------
- int screenWidth = 800;
- int screenHeight = 450;
-
- InitWindow(screenWidth, screenHeight, "raylib [textures] example - texture from raw data");
-
- // NOTE: Textures MUST be loaded after Window initialization (OpenGL context is required)
-
- // Load RAW image data (512x512, 32bit RGBA, no file header)
- Image fudesumiRaw = LoadImageRaw("resources/fudesumi.raw", 384, 512, UNCOMPRESSED_R8G8B8A8, 0);
- Texture2D fudesumi = LoadTextureFromImage(fudesumiRaw); // Upload CPU (RAM) image to GPU (VRAM)
- UnloadImage(fudesumiRaw); // Unload CPU (RAM) image data
-
- // Generate a checked texture by code (1024x1024 pixels)
- int width = 1024;
- int height = 1024;
-
- // Dynamic memory allocation to store pixels data (Color type)
- Color *pixels = (Color *)malloc(width*height*sizeof(Color));
-
- for (int y = 0; y < height; y++)
- {
- for (int x = 0; x < width; x++)
- {
- if (((x/32+y/32)/1)%2 == 0) pixels[y*height + x] = ORANGE;
- else pixels[y*height + x] = GOLD;
- }
- }
-
- // Load pixels data into an image structure and create texture
- Image checkedIm = LoadImageEx(pixels, width, height);
- Texture2D checked = LoadTextureFromImage(checkedIm);
- UnloadImage(checkedIm); // Unload CPU (RAM) image data
-
- // Dynamic memory must be freed after using it
- free(pixels); // Unload CPU (RAM) pixels data
- //---------------------------------------------------------------------------------------
-
- // Main game loop
- while (!WindowShouldClose()) // Detect window close button or ESC key
- {
- // Update
- //----------------------------------------------------------------------------------
- // TODO: Update your variables here
- //----------------------------------------------------------------------------------
-
- // Draw
- //----------------------------------------------------------------------------------
- BeginDrawing();
-
- ClearBackground(RAYWHITE);
-
- DrawTexture(checked, screenWidth/2 - checked.width/2, screenHeight/2 - checked.height/2, Fade(WHITE, 0.5f));
- DrawTexture(fudesumi, 430, -30, WHITE);
-
- DrawText("CHECKED TEXTURE ", 84, 100, 30, BROWN);
- DrawText("GENERATED by CODE", 72, 164, 30, BROWN);
- DrawText("and RAW IMAGE LOADING", 46, 226, 30, BROWN);
-
- DrawText("(c) Fudesumi sprite by Eiden Marsal", 310, screenHeight - 20, 10, BROWN);
-
- EndDrawing();
- //----------------------------------------------------------------------------------
- }
-
- // De-Initialization
- //--------------------------------------------------------------------------------------
- UnloadTexture(fudesumi); // Texture unloading
- UnloadTexture(checked); // Texture unloading
-
- CloseWindow(); // Close window and OpenGL context
- //--------------------------------------------------------------------------------------
-
- return 0;
-}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/textures/textures_raw_data.cs b/ExampleApplication/Examples/textures/textures_raw_data.cs
new file mode 100644
index 0000000..ab04008
--- /dev/null
+++ b/ExampleApplication/Examples/textures/textures_raw_data.cs
@@ -0,0 +1,8 @@
+
+using Raylib;
+using static Raylib.rl;
+
+public partial class Examples
+{
+ /*******************************************************************************************
*
* raylib [textures] example - Load textures from raw data
*
* NOTE: Images are loaded in CPU memory (RAM); textures are loaded in GPU memory (VRAM)
*
* This example has been created using raylib 1.3 (www.raylib.com)
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
*
* Copyright (c) 2015 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
#include // Required for malloc() and free()
public static int textures_raw_data()
{
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 800;
int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "raylib [textures] example - texture from raw data");
// NOTE: Textures MUST be loaded after Window initialization (OpenGL context is required)
// Load RAW image data (512x512, 32bit RGBA, no file header)
Image fudesumiRaw = LoadImageRaw("resources/fudesumi.raw", 384, 512, UNCOMPRESSED_R8G8B8A8, 0);
Texture2D fudesumi = LoadTextureFromImage(fudesumiRaw); // Upload CPU (RAM) image to GPU (VRAM)
UnloadImage(fudesumiRaw); // Unload CPU (RAM) image data
// Generate a checked texture by code (1024x1024 pixels)
int width = 1024;
int height = 1024;
// Dynamic memory allocation to store pixels data (Color type)
Color *pixels = (Color *)malloc(width*height*sizeof(Color));
for (int y = 0; y < height; y++)
{
for (int x = 0; x < width; x++)
{
if (((x/32+y/32)/1)%2 == 0) pixels[y*height + x] = ORANGE;
else pixels[y*height + x] = GOLD;
}
}
// Load pixels data into an image structure and create texture
Image checkedIm = LoadImageEx(pixels, width, height);
Texture2D checked = LoadTextureFromImage(checkedIm);
UnloadImage(checkedIm); // Unload CPU (RAM) image data
// Dynamic memory must be freed after using it
free(pixels); // Unload CPU (RAM) pixels data
//---------------------------------------------------------------------------------------
// Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key
{
// Update
//----------------------------------------------------------------------------------
// TODO: Update your variables here
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
ClearBackground(RAYWHITE);
DrawTexture(checked, screenWidth/2 - checked.width/2, screenHeight/2 - checked.height/2, Fade(WHITE, 0.5f));
DrawTexture(fudesumi, 430, -30, WHITE);
DrawText("CHECKED TEXTURE ", 84, 100, 30, BROWN);
DrawText("GENERATED by CODE", 72, 164, 30, BROWN);
DrawText("and RAW IMAGE LOADING", 46, 226, 30, BROWN);
DrawText("(c) Fudesumi sprite by Eiden Marsal", 310, screenHeight - 20, 10, BROWN);
EndDrawing();
//----------------------------------------------------------------------------------
}
// De-Initialization
//--------------------------------------------------------------------------------------
UnloadTexture(fudesumi); // Texture unloading
UnloadTexture(checked); // Texture unloading
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
return 0;
}
+}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/textures/textures_rectangle.c b/ExampleApplication/Examples/textures/textures_rectangle.c
deleted file mode 100644
index e124774..0000000
--- a/ExampleApplication/Examples/textures/textures_rectangle.c
+++ /dev/null
@@ -1,99 +0,0 @@
-/*******************************************************************************************
-*
-* raylib [textures] example - Texture loading and drawing a part defined by a rectangle
-*
-* This example has been created using raylib 1.3 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
-*
-* Copyright (c) 2014 Ramon Santamaria (@raysan5)
-*
-********************************************************************************************/
-
-#include "raylib.h"
-
-#define MAX_FRAME_SPEED 15
-#define MIN_FRAME_SPEED 1
-
-int main()
-{
- // Initialization
- //--------------------------------------------------------------------------------------
- int screenWidth = 800;
- int screenHeight = 450;
-
- InitWindow(screenWidth, screenHeight, "raylib [texture] example - texture rectangle");
-
- // NOTE: Textures MUST be loaded after Window initialization (OpenGL context is required)
- Texture2D scarfy = LoadTexture("resources/scarfy.png"); // Texture loading
-
- Vector2 position = { 350.0f, 280.0f };
- Rectangle frameRec = { 0.0f, 0.0f, (float)scarfy.width/6, (float)scarfy.height };
- int currentFrame = 0;
-
- int framesCounter = 0;
- int framesSpeed = 8; // Number of spritesheet frames shown by second
-
- SetTargetFPS(60); // Set our game to run at 60 frames-per-second
- //--------------------------------------------------------------------------------------
-
- // Main game loop
- while (!WindowShouldClose()) // Detect window close button or ESC key
- {
- // Update
- //----------------------------------------------------------------------------------
- framesCounter++;
-
- if (framesCounter >= (60/framesSpeed))
- {
- framesCounter = 0;
- currentFrame++;
-
- if (currentFrame > 5) currentFrame = 0;
-
- frameRec.x = (float)currentFrame*(float)scarfy.width/6;
- }
-
- if (IsKeyPressed(KEY_RIGHT)) framesSpeed++;
- else if (IsKeyPressed(KEY_LEFT)) framesSpeed--;
-
- if (framesSpeed > MAX_FRAME_SPEED) framesSpeed = MAX_FRAME_SPEED;
- else if (framesSpeed < MIN_FRAME_SPEED) framesSpeed = MIN_FRAME_SPEED;
- //----------------------------------------------------------------------------------
-
- // Draw
- //----------------------------------------------------------------------------------
- BeginDrawing();
-
- ClearBackground(RAYWHITE);
-
- DrawTexture(scarfy, 15, 40, WHITE);
- DrawRectangleLines(15, 40, scarfy.width, scarfy.height, LIME);
- DrawRectangleLines(15 + frameRec.x, 40 + frameRec.y, frameRec.width, frameRec.height, RED);
-
- DrawText("FRAME SPEED: ", 165, 210, 10, DARKGRAY);
- DrawText(FormatText("%02i FPS", framesSpeed), 575, 210, 10, DARKGRAY);
- DrawText("PRESS RIGHT/LEFT KEYS to CHANGE SPEED!", 290, 240, 10, DARKGRAY);
-
- for (int i = 0; i < MAX_FRAME_SPEED; i++)
- {
- if (i < framesSpeed) DrawRectangle(250 + 21*i, 205, 20, 20, RED);
- DrawRectangleLines(250 + 21*i, 205, 20, 20, MAROON);
- }
-
- DrawTextureRec(scarfy, frameRec, position, WHITE); // Draw part of the texture
-
- DrawText("(c) Scarfy sprite by Eiden Marsal", screenWidth - 200, screenHeight - 20, 10, GRAY);
-
- EndDrawing();
- //----------------------------------------------------------------------------------
- }
-
- // De-Initialization
- //--------------------------------------------------------------------------------------
- UnloadTexture(scarfy); // Texture unloading
-
- CloseWindow(); // Close window and OpenGL context
- //--------------------------------------------------------------------------------------
-
- return 0;
-}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/textures/textures_rectangle.cs b/ExampleApplication/Examples/textures/textures_rectangle.cs
new file mode 100644
index 0000000..e02c061
--- /dev/null
+++ b/ExampleApplication/Examples/textures/textures_rectangle.cs
@@ -0,0 +1,8 @@
+
+using Raylib;
+using static Raylib.rl;
+
+public partial class Examples
+{
+ /*******************************************************************************************
*
* raylib [textures] example - Texture loading and drawing a part defined by a rectangle
*
* This example has been created using raylib 1.3 (www.raylib.com)
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
*
* Copyright (c) 2014 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
#define MAX_FRAME_SPEED 15
#define MIN_FRAME_SPEED 1
public static int textures_rectangle()
{
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 800;
int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "raylib [texture] example - texture rectangle");
// NOTE: Textures MUST be loaded after Window initialization (OpenGL context is required)
Texture2D scarfy = LoadTexture("resources/scarfy.png"); // Texture loading
Vector2 position = { 350.0f, 280.0f };
Rectangle frameRec = { 0.0f, 0.0f, (float)scarfy.width/6, (float)scarfy.height };
int currentFrame = 0;
int framesCounter = 0;
int framesSpeed = 8; // Number of spritesheet frames shown by second
SetTargetFPS(60); // Set our game to run at 60 frames-per-second
//--------------------------------------------------------------------------------------
// Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key
{
// Update
//----------------------------------------------------------------------------------
framesCounter++;
if (framesCounter >= (60/framesSpeed))
{
framesCounter = 0;
currentFrame++;
if (currentFrame > 5) currentFrame = 0;
frameRec.x = (float)currentFrame*(float)scarfy.width/6;
}
if (IsKeyPressed(KEY_RIGHT)) framesSpeed++;
else if (IsKeyPressed(KEY_LEFT)) framesSpeed--;
if (framesSpeed > MAX_FRAME_SPEED) framesSpeed = MAX_FRAME_SPEED;
else if (framesSpeed < MIN_FRAME_SPEED) framesSpeed = MIN_FRAME_SPEED;
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
ClearBackground(RAYWHITE);
DrawTexture(scarfy, 15, 40, WHITE);
DrawRectangleLines(15, 40, scarfy.width, scarfy.height, LIME);
DrawRectangleLines(15 + frameRec.x, 40 + frameRec.y, frameRec.width, frameRec.height, RED);
DrawText("FRAME SPEED: ", 165, 210, 10, DARKGRAY);
DrawText(FormatText("%02i FPS", framesSpeed), 575, 210, 10, DARKGRAY);
DrawText("PRESS RIGHT/LEFT KEYS to CHANGE SPEED!", 290, 240, 10, DARKGRAY);
for (int i = 0; i < MAX_FRAME_SPEED; i++)
{
if (i < framesSpeed) DrawRectangle(250 + 21*i, 205, 20, 20, RED);
DrawRectangleLines(250 + 21*i, 205, 20, 20, MAROON);
}
DrawTextureRec(scarfy, frameRec, position, WHITE); // Draw part of the texture
DrawText("(c) Scarfy sprite by Eiden Marsal", screenWidth - 200, screenHeight - 20, 10, GRAY);
EndDrawing();
//----------------------------------------------------------------------------------
}
// De-Initialization
//--------------------------------------------------------------------------------------
UnloadTexture(scarfy); // Texture unloading
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
return 0;
}
+}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/textures/textures_srcrec_dstrec.c b/ExampleApplication/Examples/textures/textures_srcrec_dstrec.c
deleted file mode 100644
index 53ffd1d..0000000
--- a/ExampleApplication/Examples/textures/textures_srcrec_dstrec.c
+++ /dev/null
@@ -1,81 +0,0 @@
-/*******************************************************************************************
-*
-* raylib [textures] example - Texture source and destination rectangles
-*
-* This example has been created using raylib 1.3 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
-*
-* Copyright (c) 2015 Ramon Santamaria (@raysan5)
-*
-********************************************************************************************/
-
-#include "raylib.h"
-
-int main()
-{
- // Initialization
- //--------------------------------------------------------------------------------------
- int screenWidth = 800;
- int screenHeight = 450;
-
- InitWindow(screenWidth, screenHeight, "raylib [textures] examples - texture source and destination rectangles");
-
- // NOTE: Textures MUST be loaded after Window initialization (OpenGL context is required)
- Texture2D scarfy = LoadTexture("resources/scarfy.png"); // Texture loading
-
- int frameWidth = scarfy.width/6;
- int frameHeight = scarfy.height;
-
- // NOTE: Source rectangle (part of the texture to use for drawing)
- Rectangle sourceRec = { 0, 0, frameWidth, frameHeight };
-
- // NOTE: Destination rectangle (screen rectangle where drawing part of texture)
- Rectangle destRec = { screenWidth/2, screenHeight/2, frameWidth*2, frameHeight*2 };
-
- // NOTE: Origin of the texture (rotation/scale point), it's relative to destination rectangle size
- Vector2 origin = { frameWidth, frameHeight };
-
- int rotation = 0;
-
- SetTargetFPS(60);
- //--------------------------------------------------------------------------------------
-
- // Main game loop
- while (!WindowShouldClose()) // Detect window close button or ESC key
- {
- // Update
- //----------------------------------------------------------------------------------
- rotation++;
- //----------------------------------------------------------------------------------
-
- // Draw
- //----------------------------------------------------------------------------------
- BeginDrawing();
-
- ClearBackground(RAYWHITE);
-
- // NOTE: Using DrawTexturePro() we can easily rotate and scale the part of the texture we draw
- // sourceRec defines the part of the texture we use for drawing
- // destRec defines the rectangle where our texture part will fit (scaling it to fit)
- // origin defines the point of the texture used as reference for rotation and scaling
- // rotation defines the texture rotation (using origin as rotation point)
- DrawTexturePro(scarfy, sourceRec, destRec, origin, rotation, WHITE);
-
- DrawLine(destRec.x, 0, destRec.x, screenHeight, GRAY);
- DrawLine(0, destRec.y, screenWidth, destRec.y, GRAY);
-
- DrawText("(c) Scarfy sprite by Eiden Marsal", screenWidth - 200, screenHeight - 20, 10, GRAY);
-
- EndDrawing();
- //----------------------------------------------------------------------------------
- }
-
- // De-Initialization
- //--------------------------------------------------------------------------------------
- UnloadTexture(scarfy); // Texture unloading
-
- CloseWindow(); // Close window and OpenGL context
- //--------------------------------------------------------------------------------------
-
- return 0;
-}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/textures/textures_srcrec_dstrec.cs b/ExampleApplication/Examples/textures/textures_srcrec_dstrec.cs
new file mode 100644
index 0000000..a0d45df
--- /dev/null
+++ b/ExampleApplication/Examples/textures/textures_srcrec_dstrec.cs
@@ -0,0 +1,8 @@
+
+using Raylib;
+using static Raylib.rl;
+
+public partial class Examples
+{
+ /*******************************************************************************************
*
* raylib [textures] example - Texture source and destination rectangles
*
* This example has been created using raylib 1.3 (www.raylib.com)
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
*
* Copyright (c) 2015 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
public static int textures_srcrec_dstrec()
{
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 800;
int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "raylib [textures] examples - texture source and destination rectangles");
// NOTE: Textures MUST be loaded after Window initialization (OpenGL context is required)
Texture2D scarfy = LoadTexture("resources/scarfy.png"); // Texture loading
int frameWidth = scarfy.width/6;
int frameHeight = scarfy.height;
// NOTE: Source rectangle (part of the texture to use for drawing)
Rectangle sourceRec = { 0, 0, frameWidth, frameHeight };
// NOTE: Destination rectangle (screen rectangle where drawing part of texture)
Rectangle destRec = { screenWidth/2, screenHeight/2, frameWidth*2, frameHeight*2 };
// NOTE: Origin of the texture (rotation/scale point), it's relative to destination rectangle size
Vector2 origin = { frameWidth, frameHeight };
int rotation = 0;
SetTargetFPS(60);
//--------------------------------------------------------------------------------------
// Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key
{
// Update
//----------------------------------------------------------------------------------
rotation++;
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
ClearBackground(RAYWHITE);
// NOTE: Using DrawTexturePro() we can easily rotate and scale the part of the texture we draw
// sourceRec defines the part of the texture we use for drawing
// destRec defines the rectangle where our texture part will fit (scaling it to fit)
// origin defines the point of the texture used as reference for rotation and scaling
// rotation defines the texture rotation (using origin as rotation point)
DrawTexturePro(scarfy, sourceRec, destRec, origin, rotation, WHITE);
DrawLine(destRec.x, 0, destRec.x, screenHeight, GRAY);
DrawLine(0, destRec.y, screenWidth, destRec.y, GRAY);
DrawText("(c) Scarfy sprite by Eiden Marsal", screenWidth - 200, screenHeight - 20, 10, GRAY);
EndDrawing();
//----------------------------------------------------------------------------------
}
// De-Initialization
//--------------------------------------------------------------------------------------
UnloadTexture(scarfy); // Texture unloading
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
return 0;
}
+}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/textures/textures_to_image.c b/ExampleApplication/Examples/textures/textures_to_image.c
deleted file mode 100644
index 37c3b5a..0000000
--- a/ExampleApplication/Examples/textures/textures_to_image.c
+++ /dev/null
@@ -1,68 +0,0 @@
-/*******************************************************************************************
-*
-* raylib [textures] example - Retrieve image data from texture: GetTextureData()
-*
-* NOTE: Images are loaded in CPU memory (RAM); textures are loaded in GPU memory (VRAM)
-*
-* This example has been created using raylib 1.3 (www.raylib.com)
-* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
-*
-* Copyright (c) 2015 Ramon Santamaria (@raysan5)
-*
-********************************************************************************************/
-
-#include "raylib.h"
-
-int main()
-{
- // Initialization
- //--------------------------------------------------------------------------------------
- int screenWidth = 800;
- int screenHeight = 450;
-
- InitWindow(screenWidth, screenHeight, "raylib [textures] example - texture to image");
-
- // NOTE: Textures MUST be loaded after Window initialization (OpenGL context is required)
-
- Image image = LoadImage("resources/raylib_logo.png"); // Load image data into CPU memory (RAM)
- Texture2D texture = LoadTextureFromImage(image); // Image converted to texture, GPU memory (RAM -> VRAM)
- UnloadImage(image); // Unload image data from CPU memory (RAM)
-
- image = GetTextureData(texture); // Retrieve image data from GPU memory (VRAM -> RAM)
- UnloadTexture(texture); // Unload texture from GPU memory (VRAM)
-
- texture = LoadTextureFromImage(image); // Recreate texture from retrieved image data (RAM -> VRAM)
- UnloadImage(image); // Unload retrieved image data from CPU memory (RAM)
- //---------------------------------------------------------------------------------------
-
- // Main game loop
- while (!WindowShouldClose()) // Detect window close button or ESC key
- {
- // Update
- //----------------------------------------------------------------------------------
- // TODO: Update your variables here
- //----------------------------------------------------------------------------------
-
- // Draw
- //----------------------------------------------------------------------------------
- BeginDrawing();
-
- ClearBackground(RAYWHITE);
-
- DrawTexture(texture, screenWidth/2 - texture.width/2, screenHeight/2 - texture.height/2, WHITE);
-
- DrawText("this IS a texture loaded from an image!", 300, 370, 10, GRAY);
-
- EndDrawing();
- //----------------------------------------------------------------------------------
- }
-
- // De-Initialization
- //--------------------------------------------------------------------------------------
- UnloadTexture(texture); // Texture unloading
-
- CloseWindow(); // Close window and OpenGL context
- //--------------------------------------------------------------------------------------
-
- return 0;
-}
\ No newline at end of file
diff --git a/ExampleApplication/Examples/textures/textures_to_image.cs b/ExampleApplication/Examples/textures/textures_to_image.cs
new file mode 100644
index 0000000..3fbab99
--- /dev/null
+++ b/ExampleApplication/Examples/textures/textures_to_image.cs
@@ -0,0 +1,8 @@
+
+using Raylib;
+using static Raylib.rl;
+
+public partial class Examples
+{
+ /*******************************************************************************************
*
* raylib [textures] example - Retrieve image data from texture: GetTextureData()
*
* NOTE: Images are loaded in CPU memory (RAM); textures are loaded in GPU memory (VRAM)
*
* This example has been created using raylib 1.3 (www.raylib.com)
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
*
* Copyright (c) 2015 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
public static int textures_to_image()
{
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 800;
int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "raylib [textures] example - texture to image");
// NOTE: Textures MUST be loaded after Window initialization (OpenGL context is required)
Image image = LoadImage("resources/raylib_logo.png"); // Load image data into CPU memory (RAM)
Texture2D texture = LoadTextureFromImage(image); // Image converted to texture, GPU memory (RAM -> VRAM)
UnloadImage(image); // Unload image data from CPU memory (RAM)
image = GetTextureData(texture); // Retrieve image data from GPU memory (VRAM -> RAM)
UnloadTexture(texture); // Unload texture from GPU memory (VRAM)
texture = LoadTextureFromImage(image); // Recreate texture from retrieved image data (RAM -> VRAM)
UnloadImage(image); // Unload retrieved image data from CPU memory (RAM)
//---------------------------------------------------------------------------------------
// Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key
{
// Update
//----------------------------------------------------------------------------------
// TODO: Update your variables here
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
ClearBackground(RAYWHITE);
DrawTexture(texture, screenWidth/2 - texture.width/2, screenHeight/2 - texture.height/2, WHITE);
DrawText("this IS a texture loaded from an image!", 300, 370, 10, GRAY);
EndDrawing();
//----------------------------------------------------------------------------------
}
// De-Initialization
//--------------------------------------------------------------------------------------
UnloadTexture(texture); // Texture unloading
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
return 0;
}
+}
\ No newline at end of file
diff --git a/ExampleApplication/Physac.cs b/ExampleApplication/Physac.cs
new file mode 100644
index 0000000..6899bd3
--- /dev/null
+++ b/ExampleApplication/Physac.cs
@@ -0,0 +1,168 @@
+
+using System.Runtime.InteropServices;
+
+namespace Raylib
+{
+ #region Raylib-cs Enums
+
+ public enum PhysicsShapeType
+ {
+ PHYSICS_CIRCLE,
+ PHYSICS_POLYGON
+ }
+
+ #endregion
+
+ #region Raylib-cs Types
+
+ // Mat2 type (used for polygon shape rotation matrix)
+ [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
+ public struct Mat2
+ {
+ public float m00;
+ public float m01;
+ public float m10;
+ public float m11;
+ }
+
+ [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
+ public struct PolygonData
+ {
+ public uint vertexCount; // Current used vertex and normals count
+ //public Vector2 positions[PHYSAC_MAX_VERTICES]; // Polygon vertex positions vectors
+ //public Vector2 normals[PHYSAC_MAX_VERTICES]; // Polygon vertex normals vectors
+ }
+
+ [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
+ public struct PhysicsShape
+ {
+ public PhysicsShapeType type; // Physics shape type (circle or polygon)
+ //public PhysicsBodyData body; // Shape physics body reference
+ public float radius; // Circle shape radius (used for circle shapes)
+ public Mat2 transform; // Vertices transform matrix 2x2
+ public PolygonData vertexData; // Polygon shape vertices position and normals data (just used for polygon shapes)
+ }
+
+ [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
+ public struct PhysicsBodyData
+ {
+ public uint id; // Reference unique identifier
+ public bool enabled; // Enabled dynamics state (collisions are calculated anyway)
+ public Vector2 position; // Physics body shape pivot
+ public Vector2 velocity; // Current linear velocity applied to position
+ public Vector2 force; // Current linear force (reset to 0 every step)
+ public float angularVelocity; // Current angular velocity applied to orient
+ public float torque; // Current angular force (reset to 0 every step)
+ public float orient; // Rotation in radians
+ public float inertia; // Moment of inertia
+ public float inverseInertia; // Inverse value of inertia
+ public float mass; // Physics body mass
+ public float inverseMass; // Inverse value of mass
+ public float staticFriction; // Friction when the body has not movement (0 to 1)
+ public float dynamicFriction; // Friction when the body has movement (0 to 1)
+ public float restitution; // Restitution coefficient of the body (0 to 1)
+ public bool useGravity; // Apply gravity force to dynamics
+ public bool isGrounded; // Physics grounded on other body state
+ public bool freezeOrient; // Physics rotation constraint
+ public PhysicsShape shape; // Physics body shape information (type, radius, vertices, normals)
+ }
+
+ [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
+ public struct PhysicsManifoldData
+ {
+ public uint id; // Reference unique identifier
+ //public PhysicsBody bodyA; // Manifold first physics body reference
+ //public PhysicsBody bodyB; // Manifold second physics body reference
+ public float penetration; // Depth of penetration from collision
+ public Vector2 normal; // Normal direction vector from 'a' to 'b'
+ //public Vector2 contacts[2]; // Points of contact during collision
+ public uint contactsCount; // Current collision number of contacts
+ public float restitution; // Mixed restitution during collision
+ public float dynamicFriction; // Mixed dynamic friction during collision
+ public float staticFriction; // Mixed static friction during collision
+ }
+
+ #endregion
+
+ public static partial class rl
+ {
+ #region Raylib-cs Variables
+
+ // Used by DllImport to load the native library.
+ // private const string nativeLibName = "raylib.dll";
+ public const int PHYSAC_MAX_BODIES = 64;
+ public const int PHYSAC_MAX_MANIFOLDS = 4096;
+ public const int PHYSAC_MAX_VERTICES = 24;
+ public const int PHYSAC_CIRCLE_VERTICES = 24;
+
+ public const float PHYSAC_DESIRED_DELTATIME = 1.0f / 60.0f;
+ public const float PHYSAC_MAX_TIMESTEP = 0.02f;
+ public const int PHYSAC_COLLISION_ITERATIONS = 100;
+ public const float PHYSAC_PENETRATION_ALLOWANCE = 0.05f;
+ public const float PHYSAC_PENETRATION_CORRECTION = 0.4f;
+
+ public const float PHYSAC_PI = 3.14159265358979323846f;
+ public const float PHYSAC_DEG2RAD = (PHYSAC_PI / 180.0f);
+
+ #endregion
+
+ #region Raylib-cs Functions
+
+ [DllImport(nativeLibName)]
+ public static extern void InitPhysics(); // Initializes physics values, pointers and creates physics loop thread
+
+ [DllImport(nativeLibName)]
+ public static extern bool IsPhysicsEnabled(); // Returns true if physics thread is currently enabled
+
+ [DllImport(nativeLibName)]
+ public static extern void SetPhysicsGravity(float x, float y); // Sets physics global gravity force
+
+ [DllImport(nativeLibName)]
+ public static extern PhysicsBodyData CreatePhysicsBodyCircle(Vector2 pos, float radius, float density); // Creates a new circle physics body with generic parameters
+
+ [DllImport(nativeLibName)]
+ public static extern PhysicsBodyData CreatePhysicsBodyRectangle(Vector2 pos, float width, float height, float density); // Creates a new rectangle physics body with generic parameters
+
+ [DllImport(nativeLibName)]
+ public static extern PhysicsBodyData CreatePhysicsBodyPolygon(Vector2 pos, float radius, int sides, float density); // Creates a new polygon physics body with generic parameters
+
+ [DllImport(nativeLibName)]
+ public static extern void PhysicsAddForce(PhysicsBodyData body, Vector2 force); // Adds a force to a physics body
+
+ [DllImport(nativeLibName)]
+ public static extern void PhysicsAddTorque(PhysicsBodyData body, float amount); // Adds an angular force to a physics body
+
+ [DllImport(nativeLibName)]
+ public static extern void PhysicsShatter(PhysicsBodyData body, Vector2 position, float force); // Shatters a polygon shape physics body to little physics bodies with explosion force
+
+ [DllImport(nativeLibName)]
+ public static extern int GetPhysicsBodiesCount(); // Returns the current amount of created physics bodies
+
+ [DllImport(nativeLibName)]
+ public static extern PhysicsBodyData GetPhysicsBody(int index); // Returns a physics body of the bodies pool at a specific index
+
+ [DllImport(nativeLibName)]
+ public static extern int GetPhysicsShapeType(int index); // Returns the physics body shape type (PHYSICS_CIRCLE or PHYSICS_POLYGON)
+
+ [DllImport(nativeLibName)]
+ public static extern int GetPhysicsShapeVerticesCount(int index); // Returns the amount of vertices of a physics body shape
+
+ [DllImport(nativeLibName)]
+ public static extern Vector2 GetPhysicsShapeVertex(PhysicsBodyData body, int vertex); // Returns transformed position of a body shape (body position + vertex transformed position)
+
+ [DllImport(nativeLibName)]
+ public static extern void SetPhysicsBodyRotation(PhysicsBodyData body, float radians); // Sets physics body shape transform based on radians parameter
+
+ [DllImport(nativeLibName)]
+ public static extern void DestroyPhysicsBody(PhysicsBodyData body); // Unitializes and destroy a physics body
+
+ [DllImport(nativeLibName)]
+ public static extern void ResetPhysics(); // Destroys created physics bodies and manifolds and resets global values
+
+ [DllImport(nativeLibName)]
+ public static extern void ClosePhysics(); // Unitializes physics pointers and closes physics loop thread
+
+ #endregion
+
+ }
+}
diff --git a/ExampleApplication/Program.cs b/ExampleApplication/Program.cs
index c458356..220b87b 100644
--- a/ExampleApplication/Program.cs
+++ b/ExampleApplication/Program.cs
@@ -6,9 +6,11 @@ namespace ExampleApplication
static class Program
{
static void Main(string[] args)
- {
+ {
+ var a = new Vector2(100, 30);
+ var b = new Vector2(100, 30);
+ var c = Vector2Add(a, b);
Examples.core_basic_window();
- // DrawControl.Run();
}
}
}
\ No newline at end of file
diff --git a/ExampleApplication/Raygui.cs b/ExampleApplication/Raygui.cs
new file mode 100644
index 0000000..94f2d16
--- /dev/null
+++ b/ExampleApplication/Raygui.cs
@@ -0,0 +1,27 @@
+
+using System;
+using System.Runtime.InteropServices;
+
+namespace Raylib
+{
+ #region Raylib-cs Enums
+
+ #endregion
+
+ #region Raylib-cs Types
+
+
+ #endregion
+
+ public static partial class rl
+ {
+ #region Raylib-cs Variables
+
+ #endregion
+
+ #region Raylib-cs Functions
+
+ #endregion
+
+ }
+}
diff --git a/ExampleApplication/Raylib-cs/Raylib.cs b/ExampleApplication/Raylib-cs/Raylib.cs
deleted file mode 100644
index 6588608..0000000
--- a/ExampleApplication/Raylib-cs/Raylib.cs
+++ /dev/null
@@ -1,1841 +0,0 @@
-using System;
-using System.Runtime.InteropServices;
-
-// quick reference
-// http://www.raylib.com/cheatsheet/cheatsheet.html
-namespace Raylib
-{
- #region Raylib# Enums
-
- public enum LogType
- {
- LOG_INFO = 1,
- LOG_WARNING = 2,
- LOG_ERROR = 4,
- LOG_DEBUG = 8,
- LOG_OTHER = 16
- }
-
- public enum ShaderLocationIndex
- {
- LOC_VERTEX_POSITION = 0,
- LOC_VERTEX_TEXCOORD01 = 1,
- LOC_VERTEX_TEXCOORD02 = 2,
- LOC_VERTEX_NORMAL = 3,
- LOC_VERTEX_TANGENT = 4,
- LOC_VERTEX_COLOR = 5,
- LOC_MATRIX_MVP = 6,
- LOC_MATRIX_MODEL = 7,
- LOC_MATRIX_VIEW = 8,
- LOC_MATRIX_PROJECTION = 9,
- LOC_VECTOR_VIEW = 10,
- LOC_COLOR_DIFFUSE = 11,
- LOC_COLOR_SPECULAR = 12,
- LOC_COLOR_AMBIENT = 13,
- LOC_MAP_ALBEDO = 14,
- LOC_MAP_METALNESS = 15,
- LOC_MAP_NORMAL = 16,
- LOC_MAP_ROUGHNESS = 17,
- LOC_MAP_OCCLUSION = 18,
- LOC_MAP_EMISSION = 19,
- LOC_MAP_HEIGHT = 20,
- LOC_MAP_CUBEMAP = 21,
- LOC_MAP_IRRADIANCE = 22,
- LOC_MAP_PREFILTER = 23,
- LOC_MAP_BRDF = 24
- }
-
- public enum TexmapIndex
- {
- MAP_ALBEDO = 0,
- MAP_METALNESS = 1,
- MAP_NORMAL = 2,
- MAP_ROUGHNESS = 3,
- MAP_OCCLUSION = 4,
- MAP_EMISSION = 5,
- MAP_HEIGHT = 6,
- MAP_CUBEMAP = 7,
- MAP_IRRADIANCE = 8,
- MAP_PREFILTER = 9,
- MAP_BRDF = 10
- }
-
- public enum PixelFormat
- {
- UNCOMPRESSED_GRAYSCALE = 1,
- UNCOMPRESSED_GRAY_ALPHA = 2,
- UNCOMPRESSED_R5G6B5 = 3,
- UNCOMPRESSED_R8G8B8 = 4,
- UNCOMPRESSED_R5G5B5A1 = 5,
- UNCOMPRESSED_R4G4B4A4 = 6,
- UNCOMPRESSED_R8G8B8A8 = 7,
- UNCOMPRESSED_R32 = 8,
- UNCOMPRESSED_R32G32B32 = 9,
- UNCOMPRESSED_R32G32B32A32 = 10,
- COMPRESSED_DXT1RGB = 11,
- COMPRESSED_DXT1RGBA = 12,
- COMPRESSED_DXT3RGBA = 13,
- COMPRESSED_DXT5RGBA = 14,
- COMPRESSED_ETC1RGB = 15,
- COMPRESSED_ETC2RGB = 16,
- COMPRESSED_ETC2EAC_RGBA = 17,
- COMPRESSED_PVRT_RGB = 18,
- COMPRESSED_PVRT_RGBA = 19,
- COMPRESSED_ASTC_4x4RGBA = 20,
- COMPRESSED_ASTC_8x8RGBA = 21
- }
-
- public enum TextureFilterMode
- {
- FILTER_POINT = 0,
- FILTER_BILINEAR = 1,
- FILTER_TRILINEAR = 2,
- FILTER_ANISOTROPIC_4X = 3,
- FILTER_ANISOTROPIC_8X = 4,
- FILTER_ANISOTROPIC_16X = 5
- }
-
- public enum TextureWrapMode
- {
- WRAP_REPEAT = 0,
- WRAP_CLAMP = 1,
- WRAP_MIRROR = 2
- }
-
- public enum BlendMode
- {
- BLEND_ALPHA = 0,
- BLEND_ADDITIVE = 1,
- BLEND_MULTIPLIED = 2
- }
-
- [Flags]
- public enum Gestures
- {
- GESTURE_NONE = 0,
- GESTURE_TAP = 1,
- GESTURE_DOUBLETAP = 2,
- GESTURE_HOLD = 4,
- GESTURE_DRAG = 8,
- GESTURE_SWIPE_RIGHT = 16,
- GESTURE_SWIPE_LEFT = 32,
- GESTURE_SWIPE_UP = 64,
- GESTURE_SWIPE_DOWN = 128,
- GESTURE_PINCH_IN = 256,
- GESTURE_PINCH_OUT = 512
- }
-
- public enum CameraMode
- {
- CAMERA_CUSTOM = 0,
- CAMERA_FREE = 1,
- CAMERA_ORBITAL = 2,
- CAMERA_FIRST_PERSON = 3,
- CAMERA_THIRD_PERSON = 4
- }
-
- public enum CameraType
- {
- CAMERA_PERSPECTIVE = 0,
- CAMERA_ORTHOGRAPHIC = 1
- }
-
- public enum VrDeviceType
- {
- HMD_DEFAULT_DEVICE = 0,
- HMD_OCULUS_RIFT_DK2 = 1,
- HMD_OCULUS_RIFT_CV1 = 2,
- HMD_OCULUS_GO = 3,
- HMD_VALVE_HTC_VIVE = 4,
- HMD_SONY_PSVR = 5
- }
-
- [Flags]
- public enum Flag
- {
- SHOW_LOGO = 1,
- FULLSCREEN_MODE = 2,
- WINDOW_RESIZABLE = 4,
- WINDOW_UNDECORATED = 8,
- WINDOW_TRANSPARENT = 16,
- MSAA_4X_HINT = 32,
- VSYNC_HINT = 64
- }
-
- // Keyboard Function Keys
- public enum Key
- {
- SPACE = 32,
- ESCAPE = 256,
- ENTER = 257,
- TAB = 258,
- BACKSPACE = 259,
- INSERT = 260,
- DELETE = 261,
- RIGHT = 262,
- LEFT = 263,
- DOWN = 264,
- UP = 265,
- PAGE_UP = 266,
- PAGE_DOWN = 267,
- HOME = 268,
- END = 269,
- CAPS_LOCK = 280,
- SCROLL_LOCK = 281,
- NUM_LOCK = 282,
- PRINT_SCREEN = 283,
- PAUSE = 284,
- F1 = 290,
- F2 = 291,
- F3 = 292,
- F4 = 293,
- F5 = 294,
- F6 = 295,
- F7 = 296,
- F8 = 297,
- F9 = 298,
- F10 = 299,
- F11 = 300,
- F12 = 301,
- LEFT_SHIFT = 340,
- LEFT_CONTROL = 341,
- LEFT_ALT = 342,
- RIGHT_SHIFT = 344,
- RIGHT_CONTROL = 345,
- RIGHT_ALT = 346,
- GRAVE = 96,
- SLASH = 47,
- BACKSLASH = 92,
-
- // Keyboard Alpha Numeric Keys
- ZERO = 48,
- ONE = 49,
- TWO = 50,
- THREE = 51,
- FOUR = 52,
- FIVE = 53,
- SIX = 54,
- SEVEN = 55,
- EIGHT = 56,
- NINE = 57,
- A = 65,
- B = 66,
- C = 67,
- D = 68,
- E = 69,
- F = 70,
- G = 71,
- H = 72,
- I = 73,
- J = 74,
- K = 75,
- L = 76,
- M = 77,
- N = 78,
- O = 79,
- P = 80,
- Q = 81,
- R = 82,
- S = 83,
- T = 84,
- U = 85,
- V = 86,
- W = 87,
- X = 88,
- Y = 89,
- Z = 90,
-
- // Android Physical Buttons
- BACK = 4,
- MENU = 82,
- VOLUME_UP = 24,
- VOLUME_DOWN = 25
- }
-
- // Mouse Buttons
- public enum Mouse
- {
- LEFT_BUTTON = 0,
- RIGHT_BUTTON = 1,
- MIDDLE_BUTTON = 2
- }
-
- public enum Gamepad
- {
- PLAYER1 = 0,
- PLAYER2 = 1,
- PLAYER3 = 2,
- PLAYER4 = 3,
- PS3BUTTON_TRIANGLE = 0,
- PS3BUTTON_CIRCLE = 1,
- PS3BUTTON_CROSS = 2,
- PS3BUTTON_SQUARE = 3,
- PS3BUTTON_L1 = 6,
- PS3BUTTON_R1 = 7,
- PS3BUTTON_L2 = 4,
- PS3BUTTON_R2 = 5,
- PS3BUTTON_START = 8,
- PS3BUTTON_SELECT = 9,
- PS3BUTTON_UP = 24,
- PS3BUTTON_RIGHT = 25,
- PS3BUTTON_DOWN = 26,
- PS3BUTTON_LEFT = 27,
- PS3BUTTON_PS = 12,
- PS3AXIS_LEFT_X = 0,
- PS3AXIS_LEFT_Y = 1,
- PS3AXIS_RIGHT_X = 2,
- PS3AXIS_RIGHT_Y = 5,
- PS3AXIS_L2 = 3,
- PS3AXIS_R2 = 4,
- XBOX_BUTTON_A = 0,
- XBOX_BUTTON_B = 1,
- XBOX_BUTTON_X = 2,
- XBOX_BUTTON_Y = 3,
- XBOX_BUTTON_LB = 4,
- XBOX_BUTTON_RB = 5,
- XBOX_BUTTON_SELECT = 6,
- XBOX_BUTTON_START = 7,
- XBOX_BUTTON_UP = 10,
- XBOX_BUTTON_RIGHT = 11,
- XBOX_BUTTON_DOWN = 12,
- XBOX_BUTTON_LEFT = 13,
- XBOX_BUTTON_HOME = 8,
- ANDROID_DPAD_UP = 19,
- ANDROID_DPAD_DOWN = 20,
- ANDROID_DPAD_LEFT = 21,
- ANDROID_DPAD_RIGHT = 22,
- ANDROID_DPAD_CENTER = 23,
- ANDROID_BUTTON_A = 96,
- ANDROID_BUTTON_B = 97,
- ANDROID_BUTTON_C = 98,
- ANDROID_BUTTON_X = 99,
- ANDROID_BUTTON_Y = 100,
- ANDROID_BUTTON_Z = 101,
- ANDROID_BUTTON_L1 = 102,
- ANDROID_BUTTON_R1 = 103,
- ANDROID_BUTTON_L2 = 104,
- ANDROID_BUTTON_R2 = 105,
- XBOX_AXIS_LEFT_X = 0,
- XBOX_AXIS_LEFT_Y = 1,
- XBOX_AXIS_RIGHT_X = 2,
- XBOX_AXIS_RIGHT_Y = 3,
- XBOX_AXIS_LT = 4,
- XBOX_AXIS_RT = 5
- }
-
- #endregion
-
- #region Raylib# Types
-
- // Vector2 type
- public struct Vector2
- {
- public float x;
- public float y;
-
- public Vector2(float x, float y)
- {
- this.x = x;
- this.y = y;
- }
- }
-
- // Vector3 type
- public struct Vector3
- {
- public float x;
- public float y;
- public float z;
-
- public Vector3(float x, float y, float z)
- {
- this.x = x;
- this.y = y;
- this.z = z;
- }
- }
-
- // Vector4 type
- public struct Vector4
- {
- public float x;
- public float y;
- public float z;
- public float w;
-
- public Vector4(float x, float y, float z, float w)
- {
- this.x = x;
- this.y = y;
- this.z = z;
- this.w = w;
- }
- }
-
- // Matrix type (OpenGL style 4x4 - right handed, column major)
- public struct Matrix
- {
- public float m0, m4, m8, m12;
- public float m1, m5, m9, m13;
- public float m2, m6, m10, m14;
- public float m3, m7, m11, m15;
- }
-
- // Color type, RGBA (32bit)
- [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
- public struct Color
- {
- public byte r;
- public byte g;
- public byte b;
- public byte a;
-
- public Color(byte r, byte g, byte b, byte a)
- {
- this.r = r;
- this.g = g;
- this.b = b;
- this.a = a;
- }
- }
-
- // Rectangle type
- [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
- public struct Rectangle
- {
- public float x;
- public float y;
- public float width;
- public float height;
-
- public Rectangle(float x, float y, float width, float height)
- {
- this.x = x;
- this.y = y;
- this.width = width;
- this.height = height;
- }
- }
-
- // Image type, bpp always RGBA (32bit)
- // NOTE: Data stored in CPU memory (RAM)
- [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
- public struct Image
- {
- public IntPtr data; // Image raw data
- public int width; // Image base width
- public int height; // Image base height
- public int mipmaps; // Mipmap levels, 1 by default
- public int format; // Data format (PixelFormat type)
- }
-
- // Texture2D type
- // NOTE: Data stored in GPU memory
- [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
- public struct Texture2D
- {
- public uint id; // OpenGL texture id
- public int width; // Texture base width
- public int height; // Texture base height
- public int mipmaps; // Mipmap levels, 1 by default
- public int format; // Data format (PixelFormat type)
- }
-
- // RenderTexture2D type, for texture rendering
- [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
- public struct RenderTexture2D
- {
- public uint id; // OpenGL Framebuffer Object (FBO) id
- public Texture2D texture; // Color buffer attachment texture
- public Texture2D depth; // Depth buffer attachment texture
- }
-
- // RenderTexture type, same as RenderTexture2D
- // typedef RenderTexture2D RenderTexture;
-
- // Font character info
- [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
- public struct CharInfo
- {
- public int value; // Character value (Unicode)
- public Rectangle rec; // Character rectangle in sprite font
- public int offsetX; // Character offset X when drawing
- public int offsetY; // Character offset Y when drawing
- public int advanceX; // Character advance position X
- public byte[] data; // Character pixel data (grayscale)
- }
-
- // Font type, includes texture and charSet array data
- [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
- public struct Font
- {
- public Texture2D texture; // Font texture
- public int baseSize; // Base size (default chars height)
- public int charsCount; // Number of characters
- public CharInfo[] chars; // Characters info data
- }
-
- // public static Color Font Font // Font type fallback, defaults to Font
-
- // Camera type, defines a camera position/orientation in 3d space
- [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
- public struct Camera3D
- {
- public Vector3 position; // Camera position
- public Vector3 target; // Camera target it looks-at
- public Vector3 up; // Camera up vector (rotation over its axis)
-
- public float fovy; // Camera field-of-view apperture in Y (degrees) in perspective, used as near plane width in orthographic
-
- public CameraType type; // Camera type, defines projection type: CAMERA_PERSPECTIVE or CAMERA_ORTHOGRAPHIC
-
- public Camera3D(Vector3 position, Vector3 target, Vector3 up, float fovy = 90,
- CameraType type = CameraType.CAMERA_PERSPECTIVE)
- {
- this.position = position;
- this.target = target;
- this.up = up;
- this.fovy = fovy;
- this.type = type;
- }
- }
-
- // public static Color Camera Camera3D // Camera type fallback, defaults to Camera3D
-
- // Camera2D type, defines a 2d camera
- [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
- public struct Camera2D
- {
- public Vector2 offset; // Camera offset (displacement from target)
- public Vector2 target; // Camera target (rotation and zoom origin)
- public float rotation; // Camera rotation in degrees
- public float zoom; // Camera zoom (scaling), should be 1.0f by default
- }
-
- // Bounding box type
- [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
- public struct BoundingBox
- {
- public Vector3 min; // Minimum vertex box-corner
- public Vector3 max; // Maximum vertex box-corner
- }
-
- // Vertex data definning a mesh
- // NOTE: Data stored in CPU memory (and GPU)
- [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
- public struct Mesh
- {
- public int vertexCount; // Number of vertices stored in arrays
- public int triangleCount; // Number of triangles stored (indexed or not)
-
- public float[] vertices; // Vertex position (XYZ - 3 components per vertex) (shader-location = 0)
- public float[] texcoords; // Vertex texture coordinates (UV - 2 components per vertex) (shader-location = 1)
- public float[] texcoords2; // Vertex second texture coordinates (useful for lightmaps) (shader-location = 5)
- public float[] normals; // Vertex normals (XYZ - 3 components per vertex) (shader-location = 2)
- public float[] tangents; // Vertex tangents (XYZW - 4 components per vertex) (shader-location = 4)
- public byte[] colors; // Vertex colors (RGBA - 4 components per vertex) (shader-location = 3)
- public ushort[] indices; // Vertex indices (in case vertex data comes indexed)
-
- public uint vaoId; // OpenGL Vertex Array Object id
- public unsafe fixed uint vboId[7]; // OpenGL Vertex Buffer Objects id (7 types of vertex data)
- }
-
- // Shader type (generic)
- [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
- public unsafe struct Shader
- {
- public uint id; // Shader program id
- public fixed int locs[rl.MAX_SHADER_LOCATIONS]; // Shader locations array
- }
-
- // Material texture map
- [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
- public struct MaterialMap
- {
- public Texture2D texture; // Material map texture
- public Color color; // Material map color
- public float value; // Material map value
- }
-
- // Material type (generic)
- [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
- public struct Material
- {
- public Shader shader; // Material shader
- // public MaterialMap[] maps = new MaterialMap[rl.MAX_MATERIAL_MAPS]; // Material maps
- public float[] param; // Material generic parameters (if required)
- }
-
- // Model type
- [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
- public struct Model
- {
- public Mesh mesh; // Vertex data buffers (RAM and VRAM)
- public Matrix transform; // Local transform matrix
- public Material material; // Shader and textures data
- }
-
- // Ray type (useful for raycast)
- [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
- public struct Ray
- {
- public Vector3 position; // Ray position (origin)
- public Vector3 direction; // Ray direction
-
- public Ray(Vector3 position, Vector3 direction)
- {
- this.position = position;
- this.direction = direction;
- }
- }
-
- // Raycast hit information
- [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
- public struct RayHitInfo
- {
- public bool hit; // Did the ray hit something?
- public float distance; // Distance to nearest hit
- public Vector3 position; // Position of nearest hit
- public Vector3 normal; // Surface normal of hit
- }
-
- // Wave type, defines audio wave data
- [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
- public struct Wave
- {
- public uint sampleCount; // Number of samples
- public uint sampleRate; // Frequency (samples per second)
- public uint sampleSize; // Bit depth (bits per sample): 8, 16, 32 (24 not supported)
- public uint channels; // Number of channels (1-mono, 2-stereo)
- public IntPtr data; // Buffer data pointer
- }
-
- // Sound source type
- [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
- public struct Sound
- {
- public IntPtr audioBuffer; // Pointer to internal data used by the audio system
- public uint source; // Audio source id
- public uint buffer; // Audio buffer id
- public int format; // Audio format specifier
- }
-
- // Audio stream type
- // NOTE: Useful to create custom audio streams not bound to a specific file
- [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
- public class AudioStream
- {
- public uint sampleRate; // Frequency (samples per second)
- public uint sampleSize; // Bit depth (bits per sample): 8, 16, 32 (24 not supported)
- public uint channels; // Number of channels (1-mono, 2-stereo)
- public IntPtr audioBuffer; // Pointer to internal data used by the audio system.
- public int format; // Audio format specifier
-
- public uint source; // Audio source id
- public uint[] buffers = new uint[2]; // Audio buffers (double buffering)
- }
-
- // Head-Mounted-Display device parameters
- [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
- public class VrDeviceInfo
- {
- public int hResolution; // HMD horizontal resolution in pixels
- public int vResolution; // HMD vertical resolution in pixels
- public float hScreenSize; // HMD horizontal size in meters
- public float vScreenSize; // HMD vertical size in meters
- public float vScreenCenter; // HMD screen center in meters
- public float eyeToScreenDistance; // HMD distance between eye and display in meters
- public float lensSeparationDistance; // HMD lens separation distance in meters
-
- public float interpupillaryDistance; // HMD IPD (distance between pupils) in meters
- public float[] lensDistortionValues = new float[4]; // HMD lens distortion constant parameters
- public float[] chromaAbCorrection = new float[4]; // HMD chromatic aberration correction parameters
- }
-
- #endregion
-
- public static partial class rl
- {
- #region Raylib# Variables
-
- /* Used by DllImport to load the native library. */
- private const string nativeLibName = "raylib.dll";
- public const int MAX_SHADER_LOCATIONS = 32;
- public const int MAX_MATERIAL_MAPS = 12;
-
- // colors
-
- // Custom raylib color palette for amazing visuals
- public static Color LIGHTGRAY = new Color(200, 200, 200, 255); // Light Gray
- public static Color GRAY = new Color(130, 130, 130, 255); // Gray
- public static Color DARKGRAY = new Color(80, 80, 80, 255); // Dark Gray
- public static Color YELLOW = new Color(253, 249, 0, 255); // Yellow
- public static Color GOLD = new Color(255, 203, 0, 255); // Gold
- public static Color ORANGE = new Color(255, 161, 0, 255); // Orange
- public static Color PINK = new Color(255, 109, 194, 255); // Pink
- public static Color RED = new Color(230, 41, 55, 255); // Red
- public static Color MAROON = new Color(190, 33, 55, 255); // Maroon
- public static Color GREEN = new Color(0, 228, 48, 255); // Green
- public static Color LIME = new Color(0, 158, 47, 255); // Lime
- public static Color DARKGREEN = new Color(0, 117, 44, 255); // Dark Green
- public static Color SKYBLUE = new Color(102, 191, 255, 255); // Sky Blue
- public static Color BLUE = new Color(0, 121, 241, 255); // Blue
- public static Color DARKBLUE = new Color(0, 82, 172, 255); // Dark Blue
- public static Color PURPLE = new Color(200, 122, 255, 255); // Purple
- public static Color VIOLET = new Color(135, 60, 190, 255); // Violet
- public static Color DARKPURPLE = new Color(112, 31, 126, 255); // Dark Purple
- public static Color BEIGE = new Color(211, 176, 131, 255); // Beige
- public static Color BROWN = new Color(127, 106, 79, 255); // Brown
- public static Color DARKBROWN = new Color(76, 63, 47, 255); // Dark Brown
- public static Color WHITE = new Color(255, 255, 255, 255); // White
- public static Color BLACK = new Color(0, 0, 0, 255); // Black
- public static Color BLANK = new Color(0, 0, 0, 0); // Transparent
- public static Color MAGENTA = new Color(255, 0, 255, 255); // Magenta
- public static Color RAYWHITE = new Color(245, 245, 245, 255); // Ray White
-
- #endregion
-
- #region Raylib.h
-
- // Window-related functions
- [DllImport(nativeLibName)]
- public static extern void
- InitWindow(int width, int height, string title); // Initialize Window and Graphics Context (OpenGL)
-
- [DllImport(nativeLibName)]
- public static extern void CloseWindow(); // Close window and unload OpenGL context
-
- [DllImport(nativeLibName)]
- public static extern bool WindowShouldClose(); // Check if KEY_ESCAPE pressed or Close icon pressed
-
- [DllImport(nativeLibName)]
- public static extern bool IsWindowMinimized(); // Check if window has been minimized (or lost focus)
-
- [DllImport(nativeLibName)]
- public static extern void ToggleFullscreen(); // Toggle fullscreen mode (only PLATFORM_DESKTOP)
-
- [DllImport(nativeLibName)]
- public static extern void SetWindowIcon(Image image); // Set icon for window (only PLATFORM_DESKTOP)
-
- [DllImport(nativeLibName)]
- public static extern void SetWindowTitle(string title); // Set title for window (only PLATFORM_DESKTOP)
-
- [DllImport(nativeLibName)]
- public static extern void
- SetWindowPosition(int x, int y); // Set window position on screen (only PLATFORM_DESKTOP)
-
- [DllImport(nativeLibName)]
- public static extern void SetWindowMonitor(int monitor); // Set monitor for the current window (fullscreen mode)
-
- [DllImport(nativeLibName)]
- public static extern void
- SetWindowMinSize(int width, int height); // Set window minimum dimensions (for FLAG_WINDOW_RESIZABLE)
-
- [DllImport(nativeLibName)]
- public static extern int GetScreenWidth(); // Get current screen width
-
- [DllImport(nativeLibName)]
- public static extern int GetScreenHeight(); // Get current screen height
-
- // Cursor-related functions
- [DllImport(nativeLibName)]
- public static extern void ShowCursor(); // Shows cursor
-
- [DllImport(nativeLibName)]
- public static extern void HideCursor(); // Hides cursor
-
- [DllImport(nativeLibName)]
- public static extern bool IsCursorHidden(); // Check if cursor is not visible
-
- [DllImport(nativeLibName)]
- public static extern void EnableCursor(); // Enables cursor (unlock cursor)
-
- [DllImport(nativeLibName)]
- public static extern void DisableCursor(); // Disables cursor (lock cursor)
-
- // Drawing-related functions
- [DllImport(nativeLibName)]
- public static extern void ClearBackground(Color color); // Set background color (framebuffer clear color)
-
- [DllImport(nativeLibName)]
- public static extern void BeginDrawing(); // Setup canvas (framebuffer) to start drawing
-
- [DllImport(nativeLibName)]
- public static extern void EndDrawing(); // End canvas drawing and swap buffers (double buffering)
-
- [DllImport(nativeLibName)]
- public static extern void Begin2dMode(Camera2D camera); // Initialize 2D mode with custom camera (2D)
-
- [DllImport(nativeLibName)]
- public static extern void End2dMode(); // Ends 2D mode with custom camera
-
- [DllImport(nativeLibName)]
- public static extern void Begin3dMode(Camera3D camera3D); // Initializes 3D mode with custom camera (3D)
-
- [DllImport(nativeLibName)]
- public static extern void End3dMode(); // Ends 3D mode and returns to default 2D orthographic mode
-
- [DllImport(nativeLibName)]
- public static extern void BeginTextureMode(RenderTexture2D target); // Initializes render texture for drawing
-
- [DllImport(nativeLibName)]
- public static extern void EndTextureMode(); // Ends drawing to render texture
-
- // Screen-space-related functions
- [DllImport(nativeLibName)]
- public static extern Ray
- GetMouseRay(Vector2 mousePosition, Camera3D camera3D); // Returns a ray trace from mouse position
-
- [DllImport(nativeLibName)]
- public static extern Vector2
- GetWorldToScreen(Vector3 position,
- Camera3D camera3D); // Returns the screen space position for a 3d world space position
-
- [DllImport(nativeLibName)]
- public static extern Matrix GetCameraMatrix(Camera3D camera3D); // Returns camera transform matrix (view matrix)
-
- // Timming-related functions
- [DllImport(nativeLibName)]
- public static extern void SetTargetFPS(int fps); // Set target FPS (maximum)
-
- [DllImport(nativeLibName)]
- public static extern int GetFPS(); // Returns current FPS
-
- [DllImport(nativeLibName)]
- public static extern float GetFrameTime(); // Returns time in seconds for last frame drawn
-
- // Color-related functions
- [DllImport(nativeLibName)]
- public static extern int GetHexValue(Color color); // Returns hexadecimal value for a Color
-
- [DllImport(nativeLibName)]
- public static extern Color GetColor(int hexValue); // Returns a Color struct from hexadecimal value
-
- [DllImport(nativeLibName)]
- public static extern Color
- Fade(Color color, float alpha); // Color fade-in or fade-out, alpha goes from 0.0f to 1.0f
-
- [DllImport(nativeLibName)]
- public static extern float[] ColorToFloat(Color color); // Converts Color to float array and normalizes
-
- // Math useful functions (available from raymath.h)
- [DllImport(nativeLibName)]
- public static extern float[] VectorToFloat(Vector3 vec); // Returns Vector3 as float array
-
- [DllImport(nativeLibName)]
- public static extern float[] MatrixToFloat(Matrix mat); // Returns Matrix as float array
-
- [DllImport(nativeLibName)]
- public static extern Vector3 Vector3Zero(); // Vector with components value 0.0f
-
- [DllImport(nativeLibName)]
- public static extern Vector3 Vector3One(); // Vector with components value 1.0f
-
- [DllImport(nativeLibName)]
- public static extern Matrix MatrixIdentity(); // Returns identity matrix
-
- // Misc. functions
- [DllImport(nativeLibName)]
- public static extern void ShowLogo(); // Activate raylib logo at startup (can be done with flags)
-
- [DllImport(nativeLibName)]
- public static extern void SetConfigFlags(char flags); // Setup window configuration flags (view FLAGS)
-
- [DllImport(nativeLibName)]
- public static extern void
- TraceLog(int logType, string text, object[] args); // Show trace log messages (INFO, WARNING, ERROR, DEBUG)
-
- [DllImport(nativeLibName)]
- public static extern void
- TakeScreenshot(string fileName); // Takes a screenshot of current screen (saved a .png)
-
- [DllImport(nativeLibName)]
- public static extern int
- GetRandomValue(int min, int max); // Returns a random value between min and max (both included)
-
- // Files management functions
- [DllImport(nativeLibName)]
- public static extern bool IsFileExtension(string fileName, string ext); // Check file extension
-
- [DllImport(nativeLibName)]
- public static extern string GetExtension(string fileName); // Get file extension
-
- [DllImport(nativeLibName)]
- public static extern string GetDirectoryPath(string fileName); // Get directory for a given fileName (with path)
-
- [DllImport(nativeLibName)]
- public static extern string GetWorkingDirectory(); // Get current working directory
-
- [DllImport(nativeLibName)]
- public static extern bool ChangeDirectory(string dir); // Change working directory, returns true if success
-
- [DllImport(nativeLibName)]
- public static extern bool IsFileDropped(); // Check if a file has been dropped into window
-
- [DllImport(nativeLibName)]
- public static extern char[][] GetDroppedFiles(int[] count); // Get dropped files names
-
- [DllImport(nativeLibName)]
- public static extern void ClearDroppedFiles(); // Clear dropped files paths buffer
-
- // Persistent storage management
- [DllImport(nativeLibName)]
- public static extern void
- StorageSaveValue(int position, int value); // Save integer value to storage file (to defined position)
-
- [DllImport(nativeLibName)]
- public static extern int
- StorageLoadValue(int position); // Load integer value from storage file (from defined position)
-
- // Input-related functions: keyboard
- [DllImport(nativeLibName)]
- public static extern bool IsKeyPressed(int key); // Detect if a key has been pressed once
-
- [DllImport(nativeLibName)]
- public static extern bool IsKeyDown(int key); // Detect if a key is being pressed
-
- [DllImport(nativeLibName)]
- public static extern bool IsKeyReleased(int key); // Detect if a key has been released once
-
- [DllImport(nativeLibName)]
- public static extern bool IsKeyUp(int key); // Detect if a key is NOT being pressed
-
- [DllImport(nativeLibName)]
- public static extern int GetKeyPressed(); // Get latest key pressed
-
- [DllImport(nativeLibName)]
- public static extern void SetExitKey(int key); // Set a custom key to exit program (default is ESC)
-
- // Input-related functions: gamepads
- [DllImport(nativeLibName)]
- public static extern bool IsGamepadAvailable(int gamepad); // Detect if a gamepad is available
-
- [DllImport(nativeLibName)]
- public static extern bool IsGamepadName(int gamepad, string name); // Check gamepad name (if available)
-
- [DllImport(nativeLibName)]
- public static extern string GetGamepadName(int gamepad); // Return gamepad internal name id
-
- [DllImport(nativeLibName)]
- public static extern bool
- IsGamepadButtonPressed(int gamepad, int button); // Detect if a gamepad button has been pressed once
-
- [DllImport(nativeLibName)]
- public static extern bool
- IsGamepadButtonDown(int gamepad, int button); // Detect if a gamepad button is being pressed
-
- [DllImport(nativeLibName)]
- public static extern bool
- IsGamepadButtonReleased(int gamepad, int button); // Detect if a gamepad button has been released once
-
- [DllImport(nativeLibName)]
- public static extern bool
- IsGamepadButtonUp(int gamepad, int button); // Detect if a gamepad button is NOT being pressed
-
- [DllImport(nativeLibName)]
- public static extern int GetGamepadButtonPressed(); // Get the last gamepad button pressed
-
- [DllImport(nativeLibName)]
- public static extern int GetGamepadAxisCount(int gamepad); // Return gamepad axis count for a gamepad
-
- [DllImport(nativeLibName)]
- public static extern float
- GetGamepadAxisMovement(int gamepad, int axis); // Return axis movement value for a gamepad axis
-
- // Input-related functions: mouse
- [DllImport(nativeLibName)]
- public static extern bool IsMouseButtonPressed(int button); // Detect if a mouse button has been pressed once
-
- [DllImport(nativeLibName)]
- public static extern bool IsMouseButtonDown(int button); // Detect if a mouse button is being pressed
-
- [DllImport(nativeLibName)]
- public static extern bool IsMouseButtonReleased(int button); // Detect if a mouse button has been released once
-
- [DllImport(nativeLibName)]
- public static extern bool IsMouseButtonUp(int button); // Detect if a mouse button is NOT being pressed
-
- [DllImport(nativeLibName)]
- public static extern int GetMouseX(); // Returns mouse position X
-
- [DllImport(nativeLibName)]
- public static extern int GetMouseY(); // Returns mouse position Y
-
- [DllImport(nativeLibName)]
- public static extern Vector2 GetMousePosition(); // Returns mouse position XY
-
- [DllImport(nativeLibName)]
- public static extern void SetMousePosition(Vector2 position); // Set mouse position XY
-
- [DllImport(nativeLibName)]
- public static extern int GetMouseWheelMove(); // Returns mouse wheel movement Y
-
- // Input-related functions: touch
- [DllImport(nativeLibName)]
- public static extern int GetTouchX(); // Get touch position X for touch point 0 (relative to screen size)
-
- [DllImport(nativeLibName)]
- public static extern int GetTouchY(); // Get touch position Y for touch point 0 (relative to screen size)
-
- [DllImport(nativeLibName)]
- public static extern Vector2
- GetTouchPosition(int index); // Get touch position XY for a touch point index (relative to screen size)
-
- // Gestures-related functions
- [DllImport(nativeLibName)]
- public static extern void SetGesturesEnabled(uint gestureFlags); // Enable a set of gestures using flags
-
- [DllImport(nativeLibName)]
- public static extern bool IsGestureDetected(int gesture); // Check if a gesture have been detected
-
- [DllImport(nativeLibName)]
- public static extern int GetGestureDetected(); // Get latest detected gesture
-
- // Get touch points count
- [DllImport(nativeLibName)]
- public static extern int GetTouchPointsCount();
-
- // Get gesture hold time in milliseconds
- [DllImport(nativeLibName)]
- public static extern float GetGestureHoldDuration();
-
- // Get gesture drag vector
- [DllImport(nativeLibName)]
- public static extern Vector2 GetGestureDragVector();
-
- // Get gesture drag angle
- [DllImport(nativeLibName)]
- public static extern float GetGestureDragAngle();
-
- // Get gesture pinch delta
- [DllImport(nativeLibName)]
- public static extern Vector2 GetGesturePinchVector();
-
- // Get gesture pinch angle
- [DllImport(nativeLibName)]
- public static extern float GetGesturePinchAngle();
-
- // Camera-related functions
-
- // Set camera mode (multiple camera modes available)
- [DllImport(nativeLibName)]
- public static extern void SetCameraMode(Camera3D camera3D, int mode);
-
- // Update camera position for selected mode
- [DllImport(nativeLibName)]
- public static extern void UpdateCamera(Camera3D camera3D);
-
- // Set camera pan key to combine with mouse movement (free camera)
- [DllImport(nativeLibName)]
- public static extern void SetCameraPanControl(int panKey);
-
- [DllImport(nativeLibName)]
- public static extern void
- SetCameraAltControl(int altKey); // Set camera alt key to combine with mouse movement (free camera)
-
- [DllImport(nativeLibName)]
- public static extern void
- SetCameraSmoothZoomControl(int szKey); // Set camera smooth zoom key to combine with mouse (free camera)
-
- [DllImport(nativeLibName)]
- public static extern void SetCameraMoveControls(int frontKey, int backKey, int rightKey, int leftKey, int upKey,
- int downKey); // Set camera move controls (1st person and 3rd person cameras)
-
- // module: shapes
-
- // Basic shapes drawing functions
- [DllImport(nativeLibName)]
- public static extern void DrawPixel(int posX, int posY, Color color); // Draw a pixel
-
- [DllImport(nativeLibName)]
- public static extern void DrawPixelV(Vector2 position, Color color); // Draw a pixel (Vector version)
-
- [DllImport(nativeLibName)]
- public static extern void
- DrawLine(int startPosX, int startPosY, int endPosX, int endPosY, Color color); // Draw a line
-
- [DllImport(nativeLibName)]
- public static extern void
- DrawLineV(Vector2 startPos, Vector2 endPos, Color color); // Draw a line (Vector version)
-
- [DllImport(nativeLibName)]
- public static extern void
- DrawLineEx(Vector2 startPos, Vector2 endPos, float thick, Color color); // Draw a line defining thickness
-
- [DllImport(nativeLibName)]
- public static extern void
- DrawLineBezier(Vector2 startPos, Vector2 endPos, float thick,
- Color color); // Draw a line using cubic-bezier curves in-out
-
- [DllImport(nativeLibName)]
- public static extern void
- DrawCircle(int centerX, int centerY, float radius, Color color); // Draw a color-filled circle
-
- [DllImport(nativeLibName)]
- public static extern void
- DrawCircleGradient(int centerX, int centerY, float radius, Color color1,
- Color color2); // Draw a gradient-filled circle
-
- [DllImport(nativeLibName)]
- public static extern void
- DrawCircleV(Vector2 center, float radius, Color color); // Draw a color-filled circle (Vector version)
-
- [DllImport(nativeLibName)]
- public static extern void
- DrawCircleLines(int centerX, int centerY, float radius, Color color); // Draw circle outline
-
- [DllImport(nativeLibName)]
- public static extern void
- DrawRectangle(int posX, int posY, int width, int height, Color color); // Draw a color-filled rectangle
-
- [DllImport(nativeLibName)]
- public static extern void DrawRectangleRec(Rectangle rec, Color color); // Draw a color-filled rectangle
-
- [DllImport(nativeLibName)]
- public static extern void
- DrawRectanglePro(Rectangle rec, Vector2 origin, float rotation,
- Color color); // Draw a color-filled rectangle with pro parameters
-
- [DllImport(nativeLibName)]
- public static extern void DrawRectangleGradientV(int posX, int posY, int width, int height, Color color1,
- Color color2); // Draw a vertical-gradient-filled rectangle
-
- [DllImport(nativeLibName)]
- public static extern void DrawRectangleGradientH(int posX, int posY, int width, int height, Color color1,
- Color color2); // Draw a horizontal-gradient-filled rectangle
-
- [DllImport(nativeLibName)]
- public static extern void
- DrawRectangleGradientEx(Rectangle rec, Color col1, Color col2, Color col3,
- Color col4); // Draw a gradient-filled rectangle with custom vertex colors
-
- [DllImport(nativeLibName)]
- public static extern void
- DrawRectangleV(Vector2 position, Vector2 size,
- Color color); // Draw a color-filled rectangle (Vector version)
-
- [DllImport(nativeLibName)]
- public static extern void
- DrawRectangleLines(int posX, int posY, int width, int height, Color color); // Draw rectangle outline
-
- [DllImport(nativeLibName)]
- public static extern void
- DrawRectangleT(int posX, int posY, int width, int height,
- Color color); // Draw rectangle using text character
-
- [DllImport(nativeLibName)]
- public static extern void
- DrawTriangle(Vector2 v1, Vector2 v2, Vector2 v3, Color color); // Draw a color-filled triangle
-
- [DllImport(nativeLibName)]
- public static extern void
- DrawTriangleLines(Vector2 v1, Vector2 v2, Vector2 v3, Color color); // Draw triangle outline
-
- [DllImport(nativeLibName)]
- public static extern void
- DrawPoly(Vector2 center, int sides, float radius, float rotation,
- Color color); // Draw a regular polygon (Vector version)
-
- [DllImport(nativeLibName)]
- public static extern void
- DrawPolyEx(Vector2[] points, int numPoints, Color color); // Draw a closed polygon defined by points
-
- [DllImport(nativeLibName)]
- public static extern void DrawPolyExLines(Vector2[] points, int numPoints, Color color); // Draw polygon lines
-
- // Basic shapes collision detection functions
- [DllImport(nativeLibName)]
- public static extern bool
- CheckCollisionRecs(Rectangle rec1, Rectangle rec2); // Check collision between two rectangles
-
- [DllImport(nativeLibName)]
- public static extern bool
- CheckCollisionCircles(Vector2 center1, float radius1, Vector2 center2,
- float radius2); // Check collision between two circles
-
- [DllImport(nativeLibName)]
- public static extern bool
- CheckCollisionCircleRec(Vector2 center, float radius,
- Rectangle rec); // Check collision between circle and rectangle
-
- [DllImport(nativeLibName)]
- public static extern Rectangle
- GetCollisionRec(Rectangle rec1, Rectangle rec2); // Get collision rectangle for two rectangles collision
-
- [DllImport(nativeLibName)]
- public static extern bool
- CheckCollisionPointRec(Vector2 point, Rectangle rec); // Check if point is inside rectangle
-
- [DllImport(nativeLibName)]
- public static extern bool
- CheckCollisionPointCircle(Vector2 point, Vector2 center, float radius); // Check if point is inside circle
-
- [DllImport(nativeLibName)]
- public static extern bool
- CheckCollisionPointTriangle(Vector2 point, Vector2 p1, Vector2 p2,
- Vector2 p3); // Check if point is inside a triangle
-
- // module: textures
-
- // Image/Texture2D data loading/unloading functions
- [DllImport(nativeLibName)]
- public static extern Image LoadImage(string fileName); // Load an image into CPU memory (RAM)
-
- [DllImport(nativeLibName)]
- public static extern Image
- LoadImageEx(Color[] pixels, int width, int height); // Load image data from Color array data (RGBA - 32bit)
-
- [DllImport(nativeLibName)]
- public static extern Image
- LoadImagePro(IntPtr data, int width, int height, int format); // Load image from raw data with parameters
-
- [DllImport(nativeLibName)]
- public static extern Image
- LoadImageRaw(string fileName, int width, int height, int format,
- int headerSize); // Load image data from RAW file
-
- [DllImport(nativeLibName)]
- public static extern Texture2D LoadTexture(string fileName); // Load an image as texture into GPU memory
-
- [DllImport(nativeLibName)]
- public static extern Texture2D LoadTextureFromImage(Image image); // Load a texture from image data
-
- [DllImport(nativeLibName)]
- public static extern RenderTexture2D
- LoadRenderTexture(int width, int height); // Load a texture to be used for rendering
-
- [DllImport(nativeLibName)]
- public static extern void UnloadImage(Image image); // Unload image from CPU memory (RAM)
-
- [DllImport(nativeLibName)]
- public static extern void UnloadTexture(Texture2D texture); // Unload texture from GPU memory
-
- [DllImport(nativeLibName)]
- public static extern void UnloadRenderTexture(RenderTexture2D target); // Unload render texture from GPU memory
-
- [DllImport(nativeLibName)]
- public static extern Color[] GetImageData(Image image); // Get pixel data from image as a Color struct array
-
- [DllImport(nativeLibName)]
- public static extern Image
- GetTextureData(Texture2D texture); // Get pixel data from GPU texture and return an Image
-
- [DllImport(nativeLibName)]
- public static extern void UpdateTexture(Texture2D texture, IntPtr pixels); // Update GPU texture with new data
-
- [DllImport(nativeLibName)]
- public static extern void SaveImageAs(string fileName, Image image); // Save image to a PNG file
-
- // Image manipulation functions
-
- [DllImport(nativeLibName)]
- public static extern void ImageToPOT(Image image, Color fillColor); // Convert image to POT (power-of-two)
-
- [DllImport(nativeLibName)]
- public static extern void ImageFormat(Image image, int newFormat); // Convert image data to desired format
-
- [DllImport(nativeLibName)]
- public static extern void ImageAlphaMask(Image image, Image alphaMask); // Apply alpha mask to image
-
- [DllImport(nativeLibName)]
- public static extern void
- ImageDither(Image image, int rBpp, int gBpp, int bBpp,
- int aBpp); // Dither image data to 16bpp or lower (Floyd-Steinberg dithering)
-
- [DllImport(nativeLibName)]
- public static extern Image ImageCopy(Image image); // Create an image duplicate (useful for transformations)
-
- [DllImport(nativeLibName)]
- public static extern void ImageCrop( Image image, Rectangle crop); // Crop an image to a defined rectangle
-
- [DllImport(nativeLibName)]
- public static extern void
- ImageResize(ref Image image, int newWidth, int newHeight); // Resize and image (bilinear filtering)
-
- [DllImport(nativeLibName)]
- public static extern void
- ImageResizeNN(Image image, int newWidth,
- int newHeight); // Resize and image (Nearest-Neighbor scaling algorithm)
-
- [DllImport(nativeLibName)]
- public static extern Image
- ImageText(string text, int fontSize, Color color); // Create an image from text (default font)
-
- [DllImport(nativeLibName)]
- public static extern Image
- ImageTextEx(Font font, string text, int fontSize, int spacing,
- Color tint); // Create an image from text (custom sprite font)
-
- [DllImport(nativeLibName)]
- public static extern void
- ImageDraw(Image dst, Image src, Rectangle srcRec,
- Rectangle dstRec); // Draw a source image within a destination image
-
- [DllImport(nativeLibName)]
- public static extern void
- ImageDrawText(Image dst, Vector2 position, string text, int fontSize,
- Color color); // Draw text (default font) within an image (destination)
-
- [DllImport(nativeLibName)]
- public static extern void ImageDrawTextEx(Image dst, Vector2 position, Font font, string text,
- int fontSize, int spacing, Color color); // Draw text (custom sprite font) within image
-
- [DllImport(nativeLibName)]
- public static extern void ImageFlipVertical(Image image); // Flip image vertically
-
- [DllImport(nativeLibName)]
- public static extern void ImageFlipHorizontal(ref Image image); // Flip image horizontally
-
- [DllImport(nativeLibName)]
- public static extern void ImageColorTint(Image image, Color color); // Modify image color: tint
-
- [DllImport(nativeLibName)]
- public static extern void ImageColorInvert(Image image); // Modify image color: invert
-
- [DllImport(nativeLibName)]
- public static extern void ImageColorGrayscale(Image image); // Modify bimage color: grayscale
-
- [DllImport(nativeLibName)]
- public static extern void
- ImageColorContrast(Image image, float contrast); // Modify image color: contrast (-100 to 100)
-
- [DllImport(nativeLibName)]
- public static extern void
- ImageColorBrightness(Image image, int brightness); // Modify image color: brightness (-255 to 255)
-
- // Image generation functions
- [DllImport(nativeLibName)]
- public static extern Image
- GenImageGradientV(int width, int height, Color top, Color bottom); // Generate image: vertical gradient
-
- [DllImport(nativeLibName)]
- public static extern Image
- GenImageGradientH(int width, int height, Color left, Color right); // Generate image: horizontal gradient
-
- [DllImport(nativeLibName)]
- public static extern Image GenImageGradientRadial(int width, int height, float density, Color inner,
- Color outer); // Generate image: radial gradient
-
- [DllImport(nativeLibName)]
- public static extern Image GenImageChecked(int width, int height, int checksX, int checksY, Color col1,
- Color col2); // Generate image: checked
-
- [DllImport(nativeLibName)]
- public static extern Image
- GenImageWhiteNoise(int width, int height, float factor); // Generate image: white noise
-
- [DllImport(nativeLibName)]
- public static extern Image
- GenImagePerlinNoise(int width, int height, float scale); // Generate image: perlin noise
-
- [DllImport(nativeLibName)]
- public static extern Image
- GenImageCellular(int width, int height,
- int tileSize); // Generate image: cellular algorithm. Bigger tileSize means bigger cells
-
- // Texture2D configuration functions
- [DllImport(nativeLibName)]
- public static extern void GenTextureMipmaps(Texture2D texture); // Generate GPU mipmaps for a texture
-
- [DllImport(nativeLibName)]
- public static extern void
- SetTextureFilter(Texture2D texture, int filterMode); // Set texture scaling filter mode
-
- [DllImport(nativeLibName)]
- public static extern void SetTextureWrap(Texture2D texture, int wrapMode); // Set texture wrapping mode
-
- // Texture2D drawing functions
- [DllImport(nativeLibName)]
- public static extern void DrawTexture(Texture2D texture, int posX, int posY, Color tint); // Draw a Texture2D
-
- [DllImport(nativeLibName)]
- public static extern void
- DrawTextureV(Texture2D texture, Vector2 position,
- Color tint); // Draw a Texture2D with position defined as Vector2
-
- [DllImport(nativeLibName)]
- public static extern void DrawTextureEx(Texture2D texture, Vector2 position, float rotation, float scale,
- Color tint); // Draw a Texture2D with extended parameters
-
- [DllImport(nativeLibName)]
- public static extern void
- DrawTextureRec(Texture2D texture, Rectangle sourceRec, Vector2 position,
- Color tint); // Draw a part of a texture defined by a rectangle
-
- [DllImport(nativeLibName)]
- public static extern void DrawTexturePro(Texture2D texture, Rectangle sourceRec, Rectangle destRec,
- Vector2 origin, // Draw a part of a texture defined by a rectangle with 'pro' parameters
- float rotation, Color tint);
-
- // module: text
-
- // Font loading/unloading functions
- [DllImport(nativeLibName)]
- public static extern Font GetDefaultFont(); // Get the default Font
-
- [DllImport(nativeLibName)]
- public static extern Font LoadFont(string fileName); // Load a Font image into GPU memory
-
- [DllImport(nativeLibName)]
- public static extern Font
- LoadFontEx(string fileName, int fontSize, int numChars,
- int fontChars); // Load a Font from TTF font with parameters
-
- [DllImport(nativeLibName)]
- public static extern void UnloadFont(Font spriteFont); // Unload Font from GPU memory
-
- // Text drawing functions
- [DllImport(nativeLibName)]
- public static extern void DrawFPS(int posX, int posY); // Shows current FPS on top-left corner
-
- [DllImport(nativeLibName)]
- public static extern void
- DrawText(string text, int posX, int posY, int fontSize, Color color); // Draw text (using default font)
-
- [DllImport(nativeLibName)]
- public static extern void DrawTextEx(Font spriteFont, string text, Vector2 position, int fontSize,
- int spacing, Color tint); // Draw text using Font and additional parameters
-
- // Text misc. functions
- [DllImport(nativeLibName)]
- public static extern int MeasureText(string text, int fontSize); // Measure string width for default font
-
- [DllImport(nativeLibName)]
- public static extern Vector2
- MeasureTextEx(Font spriteFont, string text, int fontSize,
- int spacing); // Measure string size for Font
-
- [DllImport(nativeLibName)]
- public static extern string
- FormatText(string text, object[] args); // Formatting of text with variables to 'embed'
-
- [DllImport(nativeLibName)]
- public static extern string SubText(string text, int position, int length); // Get a piece of a text string
-
- // module: models
-
- // Basic geometric 3D shapes drawing functions
- [DllImport(nativeLibName)]
- public static extern void
- DrawLine3D(Vector3 startPos, Vector3 endPos, Color color); // Draw a line in 3D world space
-
- [DllImport(nativeLibName)]
- public static extern void DrawCircle3D(Vector3 center, float radius, Vector3 rotationAxis, float rotationAngle,
- Color color); // Draw a circle in 3D world space
-
- [DllImport(nativeLibName)]
- public static extern void
- DrawCube(Vector3 position, float width, float height, float length, Color color); // Draw cube
-
- [DllImport(nativeLibName)]
- public static extern void DrawCubeV(Vector3 position, Vector3 size, Color color); // Draw cube (Vector version)
-
- [DllImport(nativeLibName)]
- public static extern void
- DrawCubeWires(Vector3 position, float width, float height, float length, Color color); // Draw cube wires
-
- [DllImport(nativeLibName)]
- public static extern void DrawCubeTexture(Texture2D texture, Vector3 position, float width, float height,
- float length, Color color); // Draw cube textured
-
- [DllImport(nativeLibName)]
- public static extern void DrawSphere(Vector3 centerPos, float radius, Color color); // Draw sphere
-
- [DllImport(nativeLibName)]
- public static extern void
- DrawSphereEx(Vector3 centerPos, float radius, int rings, int slices,
- Color color); // Draw sphere with extended parameters
-
- [DllImport(nativeLibName)]
- public static extern void
- DrawSphereWires(Vector3 centerPos, float radius, int rings, int slices, Color color); // Draw sphere wires
-
- [DllImport(nativeLibName)]
- public static extern void DrawCylinder(Vector3 position, float radiusTop, float radiusBottom, float height,
- int slices, Color color); // Draw a cylinder/cone
-
- [DllImport(nativeLibName)]
- public static extern void DrawCylinderWires(Vector3 position, float radiusTop, float radiusBottom, float height,
- int slices, Color color); // Draw a cylinder/cone wires
-
- [DllImport(nativeLibName)]
- public static extern void DrawPlane(Vector3 centerPos, Vector2 size, Color color); // Draw a plane XZ
-
- [DllImport(nativeLibName)]
- public static extern void DrawRay(Ray ray, Color color); // Draw a ray line
-
- [DllImport(nativeLibName)]
- public static extern void DrawGrid(int slices, float spacing); // Draw a grid (centered at (0, 0, 0))
-
- [DllImport(nativeLibName)]
- public static extern void DrawGizmo(Vector3 position); // Draw simple gizmo
-
- // Model loading/unloading functions
- [DllImport(nativeLibName)]
- public static extern Model LoadModel(string fileName); // Load model from files (mesh and material)
-
- [DllImport(nativeLibName)]
- public static extern Model LoadModelFromMesh(Mesh mesh); // Load model from generated mesh
-
- [DllImport(nativeLibName)]
- public static extern void UnloadModel(Model model); // Unload model from memory (RAM and/or VRAM)
-
- // Mesh loading/unloading functions
- [DllImport(nativeLibName)]
- public static extern Mesh LoadMesh(string fileName); // Load mesh from file
-
- [DllImport(nativeLibName)]
- public static extern void UnloadMesh(Mesh mesh); // Unload mesh from memory (RAM and/or VRAM)
-
- // Mesh generation functions
- [DllImport(nativeLibName)]
- public static extern Mesh
- GenMeshPlane(float width, float length, int resX, int resZ); // Generate plane mesh (with subdivisions)
-
- [DllImport(nativeLibName)]
- public static extern Mesh GenMeshCube(float width, float height, float length); // Generate cuboid mesh
-
- [DllImport(nativeLibName)]
- public static extern Mesh
- GenMeshSphere(float radius, int rings, int slices); // Generate sphere mesh (standard sphere)
-
- [DllImport(nativeLibName)]
- public static extern Mesh
- GenMeshHemiSphere(float radius, int rings, int slices); // Generate half-sphere mesh (no bottom cap)
-
- [DllImport(nativeLibName)]
- public static extern Mesh GenMeshCylinder(float radius, float height, int slices); // Generate cylinder mesh
-
- [DllImport(nativeLibName)]
- public static extern Mesh GenMeshTorus(float radius, float size, int radSeg, int sides); // Generate torus mesh
-
- [DllImport(nativeLibName)]
- public static extern Mesh
- GenMeshKnot(float radius, float size, int radSeg, int sides); // Generate trefoil knot mesh
-
- [DllImport(nativeLibName)]
- public static extern Mesh
- GenMeshHeightmap(Image heightmap, Vector3 size); // Generate heightmap mesh from image data
-
- [DllImport(nativeLibName)]
- public static extern Mesh
- GenMeshCubicmap(Image cubicmap, Vector3 cubeSize); // Generate cubes-based map mesh from image data
-
- // Material loading/unloading functions
- [DllImport(nativeLibName)]
- public static extern Material LoadMaterial(string fileName); // Load material from file
-
- [DllImport(nativeLibName)]
- public static extern Material
- LoadMaterialDefault(); // Load default material (Supports: DIFFUSE, SPECULAR, NORMAL maps)
-
- [DllImport(nativeLibName)]
- public static extern void UnloadMaterial(Material material); // Unload material from GPU memory (VRAM)
-
- // Model drawing functions
- [DllImport(nativeLibName)]
- public static extern void
- DrawModel(Model model, Vector3 position, float scale, Color tint); // Draw a model (with texture if set)
-
- [DllImport(nativeLibName)]
- public static extern void DrawModelEx(Model model, Vector3 position, Vector3 rotationAxis, float rotationAngle,
- Vector3 scale, Color tint); // Draw a model with extended parameters
-
- [DllImport(nativeLibName)]
- public static extern void
- DrawModelWires(Model model, Vector3 position, float scale,
- Color tint); // Draw a model wires (with texture if set)
-
- [DllImport(nativeLibName)]
- public static extern void DrawModelWiresEx(Model model, Vector3 position, Vector3 rotationAxis,
- float rotationAngle, Vector3 scale, Color tint); // Draw a model wires
-
- [DllImport(nativeLibName)]
- public static extern void DrawBoundingBox(BoundingBox box, Color color); // Draw bounding box (wires)
-
- [DllImport(nativeLibName)]
- public static extern void DrawBillboard(Camera3D camera3D, Texture2D texture, Vector3 center, float size,
- Color tint); // Draw a billboard texture
-
- [DllImport(nativeLibName)]
- public static extern void DrawBillboardRec(Camera3D camera3D, Texture2D texture, Rectangle sourceRec,
- Vector3 center, float size, Color tint); // Draw a billboard texture defined by sourceRec
-
- // Collision detection functions
- [DllImport(nativeLibName)]
- public static extern bool
- CheckCollisionSpheres(Vector3 centerA, float radiusA, Vector3 centerB,
- float radiusB); // Detect collision between two spheres
-
- [DllImport(nativeLibName)]
- public static extern bool CheckCollisionBoxes(Vector3 minBBox1, Vector3 maxBBox1, Vector3 minBBox2,
- Vector3 maxBBox2); // Detect collision between two boxes
-
- [DllImport(nativeLibName)]
- public static extern bool CheckCollisionBoxSphere(Vector3 minBBox, Vector3 maxBBox, Vector3 centerSphere,
- float radiusSphere); // Detect collision between box and sphere
-
- [DllImport(nativeLibName)]
- public static extern bool
- CheckCollisionRaySphere(Ray ray, Vector3 spherePosition,
- float sphereRadius); // Detect collision between ray and sphere
-
- [DllImport(nativeLibName)]
- public static extern bool CheckCollisionRaySphereEx(Ray ray, Vector3 spherePosition, float sphereRadius,
- ref Vector3 collisionPoint); // Detect collision between ray and sphere ex.
-
- [DllImport(nativeLibName)]
- public static extern bool
- CheckCollisionRayBox(Ray ray, Vector3 minBBox, Vector3 maxBBox); // Detect collision between ray and box
-
- [DllImport(nativeLibName)]
- public static extern BoundingBox CalculateBoundingBox(Mesh mesh); // Calculate mesh bounding box limits
-
- [DllImport(nativeLibName)]
- public static extern RayHitInfo
- GetCollisionRayMesh(Ray ray, ref Mesh mesh); // Get collision info between ray and mesh
-
- [DllImport(nativeLibName)]
- public static extern RayHitInfo
- GetCollisionRayTriangle(Ray ray, Vector3 p1, Vector3 p2,
- Vector3 p3); // Get collision info between ray and triangle
-
- [DllImport(nativeLibName)]
- public static extern RayHitInfo
- GetCollisionRayGround(Ray ray,
- float groundHeight); // Get collision info between ray and ground plane (Y-normal plane)
-
- // module: shaders (rlgl)
-
- // Shader loading/unloading functions
- [DllImport(nativeLibName)]
- public static extern string LoadText(string fileName); // Load chars array from text file
-
- [DllImport(nativeLibName)]
- public static extern Shader
- LoadShader(string vsFileName, string fsFileName); // Load a custom shader and bind default locations
-
- [DllImport(nativeLibName)]
- public static extern void UnloadShader(Shader shader); // Unload a custom shader from memory
-
- [DllImport(nativeLibName)]
- public static extern Shader GetDefaultShader(); // Get default shader
-
- [DllImport(nativeLibName)]
- public static extern Texture2D GetDefaultTexture(); // Get default texture
-
- // Shader access functions
- [DllImport(nativeLibName)]
- public static extern int GetShaderLocation(Shader shader, string uniformName); // Get shader uniform location
-
- [DllImport(nativeLibName)]
- public static extern void
- SetShaderValue(Shader shader, int uniformLoc, float[] value, int size); // Set shader uniform value (float)
-
- [DllImport(nativeLibName)]
- public static extern void
- SetShaderValuei(Shader shader, int uniformLoc, int[] value, int size); // Set shader uniform value (int)
-
- [DllImport(nativeLibName)]
- public static extern void
- SetShaderValueMatrix(Shader shader, int uniformLoc, Matrix mat); // Set shader uniform value (matrix 4x4)
-
- [DllImport(nativeLibName)]
- public static extern void
- SetMatrixProjection(Matrix proj); // Set a custom projection matrix (replaces internal projection matrix)
-
- [DllImport(nativeLibName)]
- public static extern void
- SetMatrixModelview(Matrix view); // Set a custom modelview matrix (replaces internal modelview matrix)
-
- // Shading beegin/end functions
- [DllImport(nativeLibName)]
- public static extern void BeginShaderMode(Shader shader); // Begin custom shader drawing
-
- [DllImport(nativeLibName)]
- public static extern void EndShaderMode(); // End custom shader drawing (use default shader)
-
- [DllImport(nativeLibName)]
- public static extern void BeginBlendMode(int mode); // Begin blending mode (alpha, additive, multiplied)
-
- [DllImport(nativeLibName)]
- public static extern void EndBlendMode(); // End blending mode (reset to default: alpha blending)
-
- // VR control functions
- [DllImport(nativeLibName)]
- public static extern VrDeviceInfo
- GetVrDeviceInfo(int vrDeviceType); // Get VR device information for some standard devices
-
- [DllImport(nativeLibName)]
- public static extern void
- InitVrSimulator(VrDeviceInfo info); // Init VR simulator for selected device parameters
-
- [DllImport(nativeLibName)]
- public static extern void CloseVrSimulator(); // Close VR simulator for current device
-
- [DllImport(nativeLibName)]
- public static extern bool IsVrSimulatorReady(); // Detect if VR simulator is ready
-
- [DllImport(nativeLibName)]
- public static extern void
- UpdateVrTracking(Camera3D camera3D); // Update VR tracking (position and orientation) and camera
-
- [DllImport(nativeLibName)]
- public static extern void ToggleVrMode(); // Enable/Disable VR experience
-
- [DllImport(nativeLibName)]
- public static extern void BeginVrDrawing(); // Begin VR simulator stereo rendering
-
- [DllImport(nativeLibName)]
- public static extern void EndVrDrawing(); // End VR simulator stereo rendering
-
- //module: audio
-
- // Audio device management functions
- [DllImport(nativeLibName)]
- public static extern void InitAudioDevice(); // Initialize audio device and context
-
- [DllImport(nativeLibName)]
- public static extern void CloseAudioDevice(); // Close the audio device and context (and music stream)
-
- [DllImport(nativeLibName)]
- public static extern bool IsAudioDeviceReady(); // Check if audio device is ready
-
- [DllImport(nativeLibName)]
- public static extern void SetMasterVolume(float volume); // Set master volume (listener)
-
- // Wave/Sound loading/unloading functions
- [DllImport(nativeLibName)]
- public static extern Wave LoadWave(string fileName); // Load wave data from file into RAM
-
- [DllImport(nativeLibName)]
- public static extern Wave LoadWaveEx(float[] data, int sampleCount, int sampleRate, int sampleSize,
- int channels); // Load wave data from float array data (32bit)
-
- [DllImport(nativeLibName)]
- public static extern Sound LoadSound(string fileName); // Load sound to memory
-
- [DllImport(nativeLibName)]
- public static extern Sound LoadSoundFromWave(Wave wave); // Load sound to memory from wave data
-
- [DllImport(nativeLibName)]
- public static extern void
- UpdateSound(Sound sound, IntPtr data, int numSamples); // Update sound buffer with new data
-
- [DllImport(nativeLibName)]
- public static extern void UnloadWave(Wave wave); // Unload wave data
-
- [DllImport(nativeLibName)]
- public static extern void UnloadSound(Sound sound); // Unload sound
-
- // Wave/Sound management functions
-
- [DllImport(nativeLibName)]
- public static extern void PlaySound(Sound sound); // Play a sound
-
- [DllImport(nativeLibName)]
- public static extern void PauseSound(Sound sound); // Pause a sound
-
- [DllImport(nativeLibName)]
- public static extern void ResumeSound(Sound sound); // Resume a paused sound
-
- [DllImport(nativeLibName)]
- public static extern void StopSound(Sound sound); // Stop playing a sound
-
- [DllImport(nativeLibName)]
- public static extern bool IsSoundPlaying(Sound sound); // Check if a sound is currently playing
-
- [DllImport(nativeLibName)]
- public static extern void
- SetSoundVolume(Sound sound, float volume); // Set volume for a sound (1.0 is max level)
-
- [DllImport(nativeLibName)]
- public static extern void SetSoundPitch(Sound sound, float pitch); // Set pitch for a sound (1.0 is base level)
-
- [DllImport(nativeLibName)]
- public static extern void
- WaveFormat(Wave wave, int sampleRate, int sampleSize,
- int channels); // Convert wave data to desired format
-
- [DllImport(nativeLibName)]
- public static extern Wave WaveCopy(Wave wave); // Copy a wave to a new wave
-
- [DllImport(nativeLibName)]
- public static extern void
- WaveCrop(Wave wave, int initSample, int finalSample); // Crop a wave to defined samples range
-
- [DllImport(nativeLibName)]
- public static extern float[] GetWaveData(Wave wave); // Get samples data from wave as a floats array
-
- // Music management functions
- [DllImport(nativeLibName)]
- public static extern IntPtr LoadMusicStream(string fileName); // Load music stream from file
-
- [DllImport(nativeLibName)]
- public static extern void UnloadMusicStream(IntPtr music); // Unload music stream
-
- [DllImport(nativeLibName)]
- public static extern void PlayMusicStream(IntPtr music); // Start music playing
-
- [DllImport(nativeLibName)]
- public static extern void UpdateMusicStream(IntPtr music); // Updates buffers for music streaming
-
- [DllImport(nativeLibName)]
- public static extern void StopMusicStream(IntPtr music); // Stop music playing
-
- [DllImport(nativeLibName)]
- public static extern void PauseMusicStream(IntPtr music); // Pause music playing
-
- [DllImport(nativeLibName)]
- public static extern void ResumeMusicStream(IntPtr music); // Resume playing paused music
-
- [DllImport(nativeLibName)]
- public static extern bool IsMusicPlaying(IntPtr music); // Check if music is playing
-
- [DllImport(nativeLibName)]
- public static extern void SetMusicVolume(IntPtr music, float volume); // Set volume for music (1.0 is max level)
-
- [DllImport(nativeLibName)]
- public static extern void SetMusicPitch(IntPtr music, float pitch); // Set pitch for a music (1.0 is base level)
-
- [DllImport(nativeLibName)]
- public static extern void SetMusicLoopCount(IntPtr music, float count); // Set music loop count (loop repeats)
-
- [DllImport(nativeLibName)]
- public static extern float GetMusicTimeLength(IntPtr music); // Get music time length (in seconds)
-
- [DllImport(nativeLibName)]
- public static extern float GetMusicTimePlayed(IntPtr music); // Get current music time played (in seconds)
-
- // AudioStream management functions
- [DllImport(nativeLibName)]
- public static extern AudioStream
- InitAudioStream(uint sampleRate, uint sampleSize,
- uint channels); // Init audio stream (to stream raw audio pcm data)
-
- [DllImport(nativeLibName)]
- public static extern void
- UpdateAudioStream(AudioStream stream, IntPtr data, int numSamples); // Update audio stream buffers with data
-
- [DllImport(nativeLibName)]
- public static extern void CloseAudioStream(AudioStream stream); // Close audio stream and free memory
-
- [DllImport(nativeLibName)]
- public static extern bool
- IsAudioBufferProcessed(AudioStream stream); // Check if any audio stream buffers requires refill
-
- [DllImport(nativeLibName)]
- public static extern void PlayAudioStream(AudioStream stream); // Play audio stream
-
- [DllImport(nativeLibName)]
- public static extern void PauseAudioStream(AudioStream stream); // Pause audio stream
-
- [DllImport(nativeLibName)]
- public static extern void ResumeAudioStream(AudioStream stream); // Resume audio stream
-
- [DllImport(nativeLibName)]
- public static extern void StopAudioStream(AudioStream stream); // Stop audio stream
-
- #endregion
- }
-}
\ No newline at end of file
diff --git a/ExampleApplication/Raylib.cs b/ExampleApplication/Raylib.cs
new file mode 100644
index 0000000..0bbcd46
--- /dev/null
+++ b/ExampleApplication/Raylib.cs
@@ -0,0 +1,1654 @@
+
+using System;
+using System.Runtime.InteropServices;
+
+namespace Raylib
+{
+ #region Raylib-cs Enums
+
+ public enum LogType
+ {
+ LOG_INFO = 1,
+ LOG_WARNING = 2,
+ LOG_ERROR = 4,
+ LOG_DEBUG = 8,
+ LOG_OTHER = 16
+ }
+
+ public enum ShaderLocationIndex
+ {
+ LOC_VERTEX_POSITION = 0,
+ LOC_VERTEX_TEXCOORD01 = 1,
+ LOC_VERTEX_TEXCOORD02 = 2,
+ LOC_VERTEX_NORMAL = 3,
+ LOC_VERTEX_TANGENT = 4,
+ LOC_VERTEX_COLOR = 5,
+ LOC_MATRIX_MVP = 6,
+ LOC_MATRIX_MODEL = 7,
+ LOC_MATRIX_VIEW = 8,
+ LOC_MATRIX_PROJECTION = 9,
+ LOC_VECTOR_VIEW = 10,
+ LOC_COLOR_DIFFUSE = 11,
+ LOC_COLOR_SPECULAR = 12,
+ LOC_COLOR_AMBIENT = 13,
+ LOC_MAP_ALBEDO = 14,
+ LOC_MAP_METALNESS = 15,
+ LOC_MAP_NORMAL = 16,
+ LOC_MAP_ROUGHNESS = 17,
+ LOC_MAP_OCCLUSION = 18,
+ LOC_MAP_EMISSION = 19,
+ LOC_MAP_HEIGHT = 20,
+ LOC_MAP_CUBEMAP = 21,
+ LOC_MAP_IRRADIANCE = 22,
+ LOC_MAP_PREFILTER = 23,
+ LOC_MAP_BRDF = 24
+ }
+
+ public enum TexmapIndex
+ {
+ MAP_ALBEDO = 0,
+ MAP_METALNESS = 1,
+ MAP_NORMAL = 2,
+ MAP_ROUGHNESS = 3,
+ MAP_OCCLUSION = 4,
+ MAP_EMISSION = 5,
+ MAP_HEIGHT = 6,
+ MAP_CUBEMAP = 7,
+ MAP_IRRADIANCE = 8,
+ MAP_PREFILTER = 9,
+ MAP_BRDF = 10
+ }
+
+ public enum PixelFormat
+ {
+ UNCOMPRESSED_GRAYSCALE = 1,
+ UNCOMPRESSED_GRAY_ALPHA = 2,
+ UNCOMPRESSED_R5G6B5 = 3,
+ UNCOMPRESSED_R8G8B8 = 4,
+ UNCOMPRESSED_R5G5B5A1 = 5,
+ UNCOMPRESSED_R4G4B4A4 = 6,
+ UNCOMPRESSED_R8G8B8A8 = 7,
+ UNCOMPRESSED_R32 = 8,
+ UNCOMPRESSED_R32G32B32 = 9,
+ UNCOMPRESSED_R32G32B32A32 = 10,
+ COMPRESSED_DXT1RGB = 11,
+ COMPRESSED_DXT1RGBA = 12,
+ COMPRESSED_DXT3RGBA = 13,
+ COMPRESSED_DXT5RGBA = 14,
+ COMPRESSED_ETC1RGB = 15,
+ COMPRESSED_ETC2RGB = 16,
+ COMPRESSED_ETC2EAC_RGBA = 17,
+ COMPRESSED_PVRT_RGB = 18,
+ COMPRESSED_PVRT_RGBA = 19,
+ COMPRESSED_ASTC_4x4RGBA = 20,
+ COMPRESSED_ASTC_8x8RGBA = 21
+ }
+
+ public enum TextureFilterMode
+ {
+ FILTER_POINT = 0,
+ FILTER_BILINEAR = 1,
+ FILTER_TRILINEAR = 2,
+ FILTER_ANISOTROPIC_4X = 3,
+ FILTER_ANISOTROPIC_8X = 4,
+ FILTER_ANISOTROPIC_16X = 5
+ }
+
+ public enum TextureWrapMode
+ {
+ WRAP_REPEAT = 0,
+ WRAP_CLAMP = 1,
+ WRAP_MIRROR = 2
+ }
+
+ public enum BlendMode
+ {
+ BLEND_ALPHA = 0,
+ BLEND_ADDITIVE = 1,
+ BLEND_MULTIPLIED = 2
+ }
+
+ [Flags]
+ public enum Gestures
+ {
+ GESTURE_NONE = 0,
+ GESTURE_TAP = 1,
+ GESTURE_DOUBLETAP = 2,
+ GESTURE_HOLD = 4,
+ GESTURE_DRAG = 8,
+ GESTURE_SWIPE_RIGHT = 16,
+ GESTURE_SWIPE_LEFT = 32,
+ GESTURE_SWIPE_UP = 64,
+ GESTURE_SWIPE_DOWN = 128,
+ GESTURE_PINCH_IN = 256,
+ GESTURE_PINCH_OUT = 512
+ }
+
+ public enum CameraMode
+ {
+ CAMERA_CUSTOM = 0,
+ CAMERA_FREE = 1,
+ CAMERA_ORBITAL = 2,
+ CAMERA_FIRST_PERSON = 3,
+ CAMERA_THIRD_PERSON = 4
+ }
+
+ public enum CameraType
+ {
+ CAMERA_PERSPECTIVE = 0,
+ CAMERA_ORTHOGRAPHIC = 1
+ }
+
+ public enum VrDeviceType
+ {
+ HMD_DEFAULT_DEVICE = 0,
+ HMD_OCULUS_RIFT_DK2 = 1,
+ HMD_OCULUS_RIFT_CV1 = 2,
+ HMD_OCULUS_GO = 3,
+ HMD_VALVE_HTC_VIVE = 4,
+ HMD_SONY_PSVR = 5
+ }
+
+ [Flags]
+ public enum Flag
+ {
+ SHOW_LOGO = 1,
+ FULLSCREEN_MODE = 2,
+ WINDOW_RESIZABLE = 4,
+ WINDOW_UNDECORATED = 8,
+ WINDOW_TRANSPARENT = 16,
+ MSAA_4X_HINT = 32,
+ VSYNC_HINT = 64
+ }
+
+ // Keyboard Function Keys
+ public enum Key
+ {
+ SPACE = 32,
+ ESCAPE = 256,
+ ENTER = 257,
+ TAB = 258,
+ BACKSPACE = 259,
+ INSERT = 260,
+ DELETE = 261,
+ RIGHT = 262,
+ LEFT = 263,
+ DOWN = 264,
+ UP = 265,
+ PAGE_UP = 266,
+ PAGE_DOWN = 267,
+ HOME = 268,
+ END = 269,
+ CAPS_LOCK = 280,
+ SCROLL_LOCK = 281,
+ NUM_LOCK = 282,
+ PRINT_SCREEN = 283,
+ PAUSE = 284,
+ F1 = 290,
+ F2 = 291,
+ F3 = 292,
+ F4 = 293,
+ F5 = 294,
+ F6 = 295,
+ F7 = 296,
+ F8 = 297,
+ F9 = 298,
+ F10 = 299,
+ F11 = 300,
+ F12 = 301,
+ LEFT_SHIFT = 340,
+ LEFT_CONTROL = 341,
+ LEFT_ALT = 342,
+ RIGHT_SHIFT = 344,
+ RIGHT_CONTROL = 345,
+ RIGHT_ALT = 346,
+ GRAVE = 96,
+ SLASH = 47,
+ BACKSLASH = 92,
+
+ // Keyboard Alpha Numeric Keys
+ ZERO = 48,
+ ONE = 49,
+ TWO = 50,
+ THREE = 51,
+ FOUR = 52,
+ FIVE = 53,
+ SIX = 54,
+ SEVEN = 55,
+ EIGHT = 56,
+ NINE = 57,
+ A = 65,
+ B = 66,
+ C = 67,
+ D = 68,
+ E = 69,
+ F = 70,
+ G = 71,
+ H = 72,
+ I = 73,
+ J = 74,
+ K = 75,
+ L = 76,
+ M = 77,
+ N = 78,
+ O = 79,
+ P = 80,
+ Q = 81,
+ R = 82,
+ S = 83,
+ T = 84,
+ U = 85,
+ V = 86,
+ W = 87,
+ X = 88,
+ Y = 89,
+ Z = 90,
+
+ // Android Physical Buttons
+ BACK = 4,
+ MENU = 82,
+ VOLUME_UP = 24,
+ VOLUME_DOWN = 25
+ }
+
+ // Mouse Buttons
+ public enum Mouse
+ {
+ LEFT_BUTTON = 0,
+ RIGHT_BUTTON = 1,
+ MIDDLE_BUTTON = 2
+ }
+
+ public enum Gamepad
+ {
+ PLAYER1 = 0,
+ PLAYER2 = 1,
+ PLAYER3 = 2,
+ PLAYER4 = 3,
+ PS3BUTTON_TRIANGLE = 0,
+ PS3BUTTON_CIRCLE = 1,
+ PS3BUTTON_CROSS = 2,
+ PS3BUTTON_SQUARE = 3,
+ PS3BUTTON_L1 = 6,
+ PS3BUTTON_R1 = 7,
+ PS3BUTTON_L2 = 4,
+ PS3BUTTON_R2 = 5,
+ PS3BUTTON_START = 8,
+ PS3BUTTON_SELECT = 9,
+ PS3BUTTON_UP = 24,
+ PS3BUTTON_RIGHT = 25,
+ PS3BUTTON_DOWN = 26,
+ PS3BUTTON_LEFT = 27,
+ PS3BUTTON_PS = 12,
+ PS3AXIS_LEFT_X = 0,
+ PS3AXIS_LEFT_Y = 1,
+ PS3AXIS_RIGHT_X = 2,
+ PS3AXIS_RIGHT_Y = 5,
+ PS3AXIS_L2 = 3,
+ PS3AXIS_R2 = 4,
+ XBOX_BUTTON_A = 0,
+ XBOX_BUTTON_B = 1,
+ XBOX_BUTTON_X = 2,
+ XBOX_BUTTON_Y = 3,
+ XBOX_BUTTON_LB = 4,
+ XBOX_BUTTON_RB = 5,
+ XBOX_BUTTON_SELECT = 6,
+ XBOX_BUTTON_START = 7,
+ XBOX_BUTTON_UP = 10,
+ XBOX_BUTTON_RIGHT = 11,
+ XBOX_BUTTON_DOWN = 12,
+ XBOX_BUTTON_LEFT = 13,
+ XBOX_BUTTON_HOME = 8,
+ ANDROID_DPAD_UP = 19,
+ ANDROID_DPAD_DOWN = 20,
+ ANDROID_DPAD_LEFT = 21,
+ ANDROID_DPAD_RIGHT = 22,
+ ANDROID_DPAD_CENTER = 23,
+ ANDROID_BUTTON_A = 96,
+ ANDROID_BUTTON_B = 97,
+ ANDROID_BUTTON_C = 98,
+ ANDROID_BUTTON_X = 99,
+ ANDROID_BUTTON_Y = 100,
+ ANDROID_BUTTON_Z = 101,
+ ANDROID_BUTTON_L1 = 102,
+ ANDROID_BUTTON_R1 = 103,
+ ANDROID_BUTTON_L2 = 104,
+ ANDROID_BUTTON_R2 = 105,
+ XBOX_AXIS_LEFT_X = 0,
+ XBOX_AXIS_LEFT_Y = 1,
+ XBOX_AXIS_RIGHT_X = 2,
+ XBOX_AXIS_RIGHT_Y = 3,
+ XBOX_AXIS_LT = 4,
+ XBOX_AXIS_RT = 5
+ }
+
+ #endregion
+
+ #region Raylib-cs Types
+
+ // Color type, RGBA (32bit)
+ [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
+ public struct Color
+ {
+ public byte r;
+ public byte g;
+ public byte b;
+ public byte a;
+
+ public Color(byte r, byte g, byte b, byte a)
+ {
+ this.r = r;
+ this.g = g;
+ this.b = b;
+ this.a = a;
+ }
+ }
+
+ // Rectangle type
+ [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
+ public struct Rectangle
+ {
+ public float x;
+ public float y;
+ public float width;
+ public float height;
+
+ public Rectangle(float x, float y, float width, float height)
+ {
+ this.x = x;
+ this.y = y;
+ this.width = width;
+ this.height = height;
+ }
+ }
+
+ // Image type, bpp always RGBA (32bit)
+ // NOTE: Data stored in CPU memory (RAM)
+ [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
+ public struct Image
+ {
+ public IntPtr data; // Image raw data
+ public int width; // Image base width
+ public int height; // Image base height
+ public int mipmaps; // Mipmap levels, 1 by default
+ public int format; // Data format (PixelFormat type)
+ }
+
+ // Texture2D type
+ // NOTE: Data stored in GPU memory
+ [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
+ public struct Texture2D
+ {
+ public uint id; // OpenGL texture id
+ public int width; // Texture base width
+ public int height; // Texture base height
+ public int mipmaps; // Mipmap levels, 1 by default
+ public int format; // Data format (PixelFormat type)
+ }
+
+ // RenderTexture2D type, for texture rendering
+ [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
+ public struct RenderTexture2D
+ {
+ public uint id; // OpenGL Framebuffer Object (FBO) id
+ public Texture2D texture; // Color buffer attachment texture
+ public Texture2D depth; // Depth buffer attachment texture
+ }
+
+ // RenderTexture type, same as RenderTexture2D
+ // typedef RenderTexture2D RenderTexture;
+
+ // Font character info
+ [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
+ public struct CharInfo
+ {
+ public int value; // Character value (Unicode)
+ public Rectangle rec; // Character rectangle in sprite font
+ public int offsetX; // Character offset X when drawing
+ public int offsetY; // Character offset Y when drawing
+ public int advanceX; // Character advance position X
+ public byte[] data; // Character pixel data (grayscale)
+ }
+
+ // Font type, includes texture and charSet array data
+ [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
+ public struct Font
+ {
+ public Texture2D texture; // Font texture
+ public int baseSize; // Base size (default chars height)
+ public int charsCount; // Number of characters
+ public CharInfo[] chars; // Characters info data
+ }
+
+ // Camera type, defines a camera position/orientation in 3d space
+ [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
+ public struct Camera3D
+ {
+ public Vector3 position; // Camera position
+ public Vector3 target; // Camera target it looks-at
+ public Vector3 up; // Camera up vector (rotation over its axis)
+
+ public float fovy; // Camera field-of-view apperture in Y (degrees) in perspective, used as near plane width in orthographic
+
+ public CameraType type; // Camera type, defines projection type: CAMERA_PERSPECTIVE or CAMERA_ORTHOGRAPHIC
+
+ public Camera3D(Vector3 position, Vector3 target, Vector3 up, float fovy = 90,
+ CameraType type = CameraType.CAMERA_PERSPECTIVE)
+ {
+ this.position = position;
+ this.target = target;
+ this.up = up;
+ this.fovy = fovy;
+ this.type = type;
+ }
+ }
+
+ // Camera2D type, defines a 2d camera
+ [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
+ public struct Camera2D
+ {
+ public Vector2 offset; // Camera offset (displacement from target)
+ public Vector2 target; // Camera target (rotation and zoom origin)
+ public float rotation; // Camera rotation in degrees
+ public float zoom; // Camera zoom (scaling), should be 1.0f by default
+ }
+
+ // Bounding box type
+ [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
+ public struct BoundingBox
+ {
+ public Vector3 min; // Minimum vertex box-corner
+ public Vector3 max; // Maximum vertex box-corner
+ }
+
+ // Vertex data definning a mesh
+ // NOTE: Data stored in CPU memory (and GPU)
+ [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
+ public struct Mesh
+ {
+ public int vertexCount; // Number of vertices stored in arrays
+ public int triangleCount; // Number of triangles stored (indexed or not)
+
+ public float[] vertices; // Vertex position (XYZ - 3 components per vertex) (shader-location = 0)
+ public float[] texcoords; // Vertex texture coordinates (UV - 2 components per vertex) (shader-location = 1)
+ public float[] texcoords2; // Vertex second texture coordinates (useful for lightmaps) (shader-location = 5)
+ public float[] normals; // Vertex normals (XYZ - 3 components per vertex) (shader-location = 2)
+ public float[] tangents; // Vertex tangents (XYZW - 4 components per vertex) (shader-location = 4)
+ public byte[] colors; // Vertex colors (RGBA - 4 components per vertex) (shader-location = 3)
+ public ushort[] indices; // Vertex indices (in case vertex data comes indexed)
+
+ public uint vaoId; // OpenGL Vertex Array Object id
+ public unsafe fixed uint vboId[7]; // OpenGL Vertex Buffer Objects id (7 types of vertex data)
+ }
+
+ // Shader type (generic)
+ [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
+ public unsafe struct Shader
+ {
+ public uint id; // Shader program id
+ public fixed int locs[rl.MAX_SHADER_LOCATIONS]; // Shader locations array
+ }
+
+ // Material texture map
+ [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
+ public struct MaterialMap
+ {
+ public Texture2D texture; // Material map texture
+ public Color color; // Material map color
+ public float value; // Material map value
+ }
+
+ // Material type (generic)
+ [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
+ public struct Material
+ {
+ public Shader shader; // Material shader
+ // public MaterialMap[] maps = new MaterialMap[rl.MAX_MATERIAL_MAPS]; // Material maps
+ public float[] param; // Material generic parameters (if required)
+ }
+
+ // Model type
+ [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
+ public struct Model
+ {
+ public Mesh mesh; // Vertex data buffers (RAM and VRAM)
+ public Matrix transform; // Local transform matrix
+ public Material material; // Shader and textures data
+ }
+
+ // Ray type (useful for raycast)
+ [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
+ public struct Ray
+ {
+ public Vector3 position; // Ray position (origin)
+ public Vector3 direction; // Ray direction
+
+ public Ray(Vector3 position, Vector3 direction)
+ {
+ this.position = position;
+ this.direction = direction;
+ }
+ }
+
+ // Raycast hit information
+ [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
+ public struct RayHitInfo
+ {
+ public bool hit; // Did the ray hit something?
+ public float distance; // Distance to nearest hit
+ public Vector3 position; // Position of nearest hit
+ public Vector3 normal; // Surface normal of hit
+ }
+
+ // Wave type, defines audio wave data
+ [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
+ public struct Wave
+ {
+ public uint sampleCount; // Number of samples
+ public uint sampleRate; // Frequency (samples per second)
+ public uint sampleSize; // Bit depth (bits per sample): 8, 16, 32 (24 not supported)
+ public uint channels; // Number of channels (1-mono, 2-stereo)
+ public IntPtr data; // Buffer data pointer
+ }
+
+ // Sound source type
+ [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
+ public struct Sound
+ {
+ public IntPtr audioBuffer; // Pointer to internal data used by the audio system
+ public uint source; // Audio source id
+ public uint buffer; // Audio buffer id
+ public int format; // Audio format specifier
+ }
+
+ // Audio stream type
+ // NOTE: Useful to create custom audio streams not bound to a specific file
+ [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
+ public class AudioStream
+ {
+ public uint sampleRate; // Frequency (samples per second)
+ public uint sampleSize; // Bit depth (bits per sample): 8, 16, 32 (24 not supported)
+ public uint channels; // Number of channels (1-mono, 2-stereo)
+ public IntPtr audioBuffer; // Pointer to internal data used by the audio system.
+ public int format; // Audio format specifier
+
+ public uint source; // Audio source id
+ public uint[] buffers = new uint[2]; // Audio buffers (double buffering)
+ }
+
+ // Head-Mounted-Display device parameters
+ [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
+ public class VrDeviceInfo
+ {
+ public int hResolution; // HMD horizontal resolution in pixels
+ public int vResolution; // HMD vertical resolution in pixels
+ public float hScreenSize; // HMD horizontal size in meters
+ public float vScreenSize; // HMD vertical size in meters
+ public float vScreenCenter; // HMD screen center in meters
+ public float eyeToScreenDistance; // HMD distance between eye and display in meters
+ public float lensSeparationDistance; // HMD lens separation distance in meters
+
+ public float interpupillaryDistance; // HMD IPD (distance between pupils) in meters
+ public float[] lensDistortionValues = new float[4]; // HMD lens distortion constant parameters
+ public float[] chromaAbCorrection = new float[4]; // HMD chromatic aberration correction parameters
+ }
+
+ #endregion
+
+ public static partial class rl
+ {
+ #region Raylib-cs Variables
+
+ // Used by DllImport to load the native library.
+ public const string nativeLibName = "raylib.dll";
+ public const int MAX_SHADER_LOCATIONS = 32;
+ public const int MAX_MATERIAL_MAPS = 12;
+
+ // colors
+
+ // Custom raylib color palette for amazing visuals
+ public static Color LIGHTGRAY = new Color(200, 200, 200, 255); // Light Gray
+ public static Color GRAY = new Color(130, 130, 130, 255); // Gray
+ public static Color DARKGRAY = new Color(80, 80, 80, 255); // Dark Gray
+ public static Color YELLOW = new Color(253, 249, 0, 255); // Yellow
+ public static Color GOLD = new Color(255, 203, 0, 255); // Gold
+ public static Color ORANGE = new Color(255, 161, 0, 255); // Orange
+ public static Color PINK = new Color(255, 109, 194, 255); // Pink
+ public static Color RED = new Color(230, 41, 55, 255); // Red
+ public static Color MAROON = new Color(190, 33, 55, 255); // Maroon
+ public static Color GREEN = new Color(0, 228, 48, 255); // Green
+ public static Color LIME = new Color(0, 158, 47, 255); // Lime
+ public static Color DARKGREEN = new Color(0, 117, 44, 255); // Dark Green
+ public static Color SKYBLUE = new Color(102, 191, 255, 255); // Sky Blue
+ public static Color BLUE = new Color(0, 121, 241, 255); // Blue
+ public static Color DARKBLUE = new Color(0, 82, 172, 255); // Dark Blue
+ public static Color PURPLE = new Color(200, 122, 255, 255); // Purple
+ public static Color VIOLET = new Color(135, 60, 190, 255); // Violet
+ public static Color DARKPURPLE = new Color(112, 31, 126, 255); // Dark Purple
+ public static Color BEIGE = new Color(211, 176, 131, 255); // Beige
+ public static Color BROWN = new Color(127, 106, 79, 255); // Brown
+ public static Color DARKBROWN = new Color(76, 63, 47, 255); // Dark Brown
+ public static Color WHITE = new Color(255, 255, 255, 255); // White
+ public static Color BLACK = new Color(0, 0, 0, 255); // Black
+ public static Color BLANK = new Color(0, 0, 0, 0); // Transparent
+ public static Color MAGENTA = new Color(255, 0, 255, 255); // Magenta
+ public static Color RAYWHITE = new Color(245, 245, 245, 255); // Ray White
+
+ #endregion
+
+ #region Raylib-cs Functions
+
+ [DllImport(nativeLibName)]
+ public static extern IntPtr InitWindow(int width, int height, string title); // Initialize window and OpenGL context
+
+ [DllImport(nativeLibName)]
+ public static extern void CloseWindow(); // Close window and unload OpenGL context
+
+ [DllImport(nativeLibName)]
+ public static extern bool IsWindowReady(); // Check if window has been initialized successfully
+
+ [DllImport(nativeLibName)]
+ public static extern bool WindowShouldClose(); // Check if KEY_ESCAPE pressed or Close icon pressed
+
+ [DllImport(nativeLibName)]
+ public static extern bool IsWindowMinimized(); // Check if window has been minimized (or lost focus)
+
+ [DllImport(nativeLibName)]
+ public static extern void ToggleFullscreen(); // Toggle fullscreen mode (only PLATFORM_DESKTOP)
+
+ [DllImport(nativeLibName)]
+ public static extern void SetWindowIcon(Image image); // Set icon for window (only PLATFORM_DESKTOP)
+
+ [DllImport(nativeLibName)]
+ public static extern void SetWindowTitle(string title); // Set title for window (only PLATFORM_DESKTOP)
+
+ [DllImport(nativeLibName)]
+ public static extern void SetWindowPosition(int x, int y); // Set window position on screen (only PLATFORM_DESKTOP)
+
+ [DllImport(nativeLibName)]
+ public static extern void SetWindowMonitor(int monitor); // Set monitor for the current window (fullscreen mode)
+
+ [DllImport(nativeLibName)]
+ public static extern void SetWindowMinSize(int width, int height); // Set window minimum dimensions (for FLAG_WINDOW_RESIZABLE)
+
+ [DllImport(nativeLibName)]
+ public static extern void SetWindowSize(int width, int height); // Set window dimensions
+
+ [DllImport(nativeLibName)]
+ public static extern int GetScreenWidth(); // Get current screen width
+
+ [DllImport(nativeLibName)]
+ public static extern int GetScreenHeight(); // Get current screen height
+
+ [DllImport(nativeLibName)]
+ public static extern string GetClipboard(); // Get current clipboard text
+
+ [DllImport(nativeLibName)]
+ public static extern void SetClipboard(string text); // Set current clipboard text
+
+ [DllImport(nativeLibName)]
+ public static extern void ShowCursor(); // Shows cursor
+
+ [DllImport(nativeLibName)]
+ public static extern void HideCursor(); // Hides cursor
+
+ [DllImport(nativeLibName)]
+ public static extern bool IsCursorHidden(); // Check if cursor is not visible
+
+ [DllImport(nativeLibName)]
+ public static extern void EnableCursor(); // Enables cursor (unlock cursor)
+
+ [DllImport(nativeLibName)]
+ public static extern void DisableCursor(); // Disables cursor (lock cursor)
+
+ [DllImport(nativeLibName)]
+ public static extern void ClearBackground(Color color); // Set background color (framebuffer clear color)
+
+ [DllImport(nativeLibName)]
+ public static extern void BeginDrawing(); // Setup canvas (framebuffer) to start drawing
+
+ [DllImport(nativeLibName)]
+ public static extern void EndDrawing(); // End canvas drawing and swap buffers (double buffering)
+
+ [DllImport(nativeLibName)]
+ public static extern void BeginMode2D(Camera2D camera); // Initialize 2D mode with custom camera (2D)
+
+ [DllImport(nativeLibName)]
+ public static extern void EndMode2D(); // Ends 2D mode with custom camera
+
+ [DllImport(nativeLibName)]
+ public static extern void BeginMode3D(Camera3D camera); // Initializes 3D mode with custom camera (3D)
+
+ [DllImport(nativeLibName)]
+ public static extern void EndMode3D(); // Ends 3D mode and returns to default 2D orthographic mode
+
+ [DllImport(nativeLibName)]
+ public static extern void BeginTextureMode(RenderTexture2D target); // Initializes render texture for drawing
+
+ [DllImport(nativeLibName)]
+ public static extern void EndTextureMode(); // Ends drawing to render texture
+
+ [DllImport(nativeLibName)]
+ public static extern Ray GetMouseRay(Vector2 mousePosition, Camera3D camera); // Returns a ray trace from mouse position
+
+ [DllImport(nativeLibName)]
+ public static extern Vector2 GetWorldToScreen(Vector3 position, Camera3D camera); // Returns the screen space position for a 3d world space position
+
+ [DllImport(nativeLibName)]
+ public static extern Matrix GetCameraMatrix(Camera3D camera); // Returns camera transform matrix (view matrix)
+
+ [DllImport(nativeLibName)]
+ public static extern void SetTargetFPS(int fps); // Set target FPS (maximum)
+
+ [DllImport(nativeLibName)]
+ public static extern int GetFPS(); // Returns current FPS
+
+ [DllImport(nativeLibName)]
+ public static extern float GetFrameTime(); // Returns time in seconds for last frame drawn
+
+ [DllImport(nativeLibName)]
+ public static extern double GetTime(); // Returns elapsed time in seconds since InitWindow()
+
+ [DllImport(nativeLibName)]
+ public static extern int ColorToInt(Color color); // Returns hexadecimal value for a Color
+
+ [DllImport(nativeLibName)]
+ public static extern Vector4 ColorNormalize(Color color); // Returns color normalized as float [0..1]
+
+ [DllImport(nativeLibName)]
+ public static extern Vector3 ColorToHSV(Color color); // Returns HSV values for a Color
+
+ [DllImport(nativeLibName)]
+ public static extern Color GetColor(int hexValue); // Returns a Color struct from hexadecimal value
+
+ [DllImport(nativeLibName)]
+ public static extern Color Fade(Color color, float alpha); // Color fade-in or fade-out, alpha goes from 0.0f to 1.0f
+
+ [DllImport(nativeLibName)]
+ public static extern void ShowLogo(); // Activate raylib logo at startup (can be done with flags)
+
+ [DllImport(nativeLibName)]
+ public static extern void SetConfigFlags(byte flags); // Setup window configuration flags (view FLAGS)
+
+ [DllImport(nativeLibName)]
+ public static extern void SetTraceLog(byte types); // Enable trace log message types (bit flags based)
+
+ [DllImport(nativeLibName)]
+ public static extern void TraceLog(int logType, string text, params object[] args); // Show trace log messages (LOG_INFO, LOG_WARNING, LOG_ERROR, LOG_DEBUG)
+
+ [DllImport(nativeLibName)]
+ public static extern void TakeScreenshot(string fileName); // Takes a screenshot of current screen (saved a .png)
+
+ [DllImport(nativeLibName)]
+ public static extern int GetRandomValue(int min, int max); // Returns a random value between min and max (both included)
+
+ [DllImport(nativeLibName)]
+ public static extern bool IsFileExtension(string fileName, string ext);// Check file extension
+
+ [DllImport(nativeLibName)]
+ public static extern string GetExtension(string fileName); // Get pointer to extension for a filename string
+
+ [DllImport(nativeLibName)]
+ public static extern string GetFileName(string filePath); // Get pointer to filename for a path string
+
+ [DllImport(nativeLibName)]
+ public static extern string GetDirectoryPath(string fileName); // Get full path for a given fileName (uses static string)
+
+ [DllImport(nativeLibName)]
+ public static extern string GetWorkingDirectory(); // Get current working directory (uses static string)
+
+ [DllImport(nativeLibName)]
+ public static extern bool ChangeDirectory(string dir); // Change working directory, returns true if success
+
+ [DllImport(nativeLibName)]
+ public static extern bool IsFileDropped(); // Check if a file has been dropped into window
+
+ [DllImport(nativeLibName)]
+ public static extern char[] GetDroppedFiles(int[] count); // Get dropped files names
+
+ [DllImport(nativeLibName)]
+ public static extern void ClearDroppedFiles(); // Clear dropped files paths buffer
+
+ [DllImport(nativeLibName)]
+ public static extern void StorageSaveValue(int position, int value); // Save integer value to storage file (to defined position)
+
+ [DllImport(nativeLibName)]
+ public static extern int StorageLoadValue(int position); // Load integer value from storage file (from defined position)
+
+ [DllImport(nativeLibName)]
+ public static extern bool IsKeyPressed(int key); // Detect if a key has been pressed once
+
+ [DllImport(nativeLibName)]
+ public static extern bool IsKeyDown(int key); // Detect if a key is being pressed
+
+ [DllImport(nativeLibName)]
+ public static extern bool IsKeyReleased(int key); // Detect if a key has been released once
+
+ [DllImport(nativeLibName)]
+ public static extern bool IsKeyUp(int key); // Detect if a key is NOT being pressed
+
+ [DllImport(nativeLibName)]
+ public static extern int GetKeyPressed(); // Get latest key pressed
+
+ [DllImport(nativeLibName)]
+ public static extern void SetExitKey(int key); // Set a custom key to exit program (default is ESC)
+
+ [DllImport(nativeLibName)]
+ public static extern bool IsGamepadAvailable(int gamepad); // Detect if a gamepad is available
+
+ [DllImport(nativeLibName)]
+ public static extern bool IsGamepadName(int gamepad, string name); // Check gamepad name (if available)
+
+ [DllImport(nativeLibName)]
+ public static extern string GetGamepadName(int gamepad); // Return gamepad internal name id
+
+ [DllImport(nativeLibName)]
+ public static extern bool IsGamepadButtonPressed(int gamepad, int button); // Detect if a gamepad button has been pressed once
+
+ [DllImport(nativeLibName)]
+ public static extern bool IsGamepadButtonDown(int gamepad, int button); // Detect if a gamepad button is being pressed
+
+ [DllImport(nativeLibName)]
+ public static extern bool IsGamepadButtonReleased(int gamepad, int button); // Detect if a gamepad button has been released once
+
+ [DllImport(nativeLibName)]
+ public static extern bool IsGamepadButtonUp(int gamepad, int button); // Detect if a gamepad button is NOT being pressed
+
+ [DllImport(nativeLibName)]
+ public static extern int GetGamepadButtonPressed(); // Get the last gamepad button pressed
+
+ [DllImport(nativeLibName)]
+ public static extern int GetGamepadAxisCount(int gamepad); // Return gamepad axis count for a gamepad
+
+ [DllImport(nativeLibName)]
+ public static extern float GetGamepadAxisMovement(int gamepad, int axis); // Return axis movement value for a gamepad axis
+
+ [DllImport(nativeLibName)]
+ public static extern bool IsMouseButtonPressed(int button); // Detect if a mouse button has been pressed once
+
+ [DllImport(nativeLibName)]
+ public static extern bool IsMouseButtonDown(int button); // Detect if a mouse button is being pressed
+
+ [DllImport(nativeLibName)]
+ public static extern bool IsMouseButtonReleased(int button); // Detect if a mouse button has been released once
+
+ [DllImport(nativeLibName)]
+ public static extern bool IsMouseButtonUp(int button); // Detect if a mouse button is NOT being pressed
+
+ [DllImport(nativeLibName)]
+ public static extern int GetMouseX(); // Returns mouse position X
+
+ [DllImport(nativeLibName)]
+ public static extern int GetMouseY(); // Returns mouse position Y
+
+ [DllImport(nativeLibName)]
+ public static extern Vector2 GetMousePosition(); // Returns mouse position XY
+
+ [DllImport(nativeLibName)]
+ public static extern void SetMousePosition(Vector2 position); // Set mouse position XY
+
+ [DllImport(nativeLibName)]
+ public static extern void SetMouseScale(float scale); // Set mouse scaling
+
+ [DllImport(nativeLibName)]
+ public static extern int GetMouseWheelMove(); // Returns mouse wheel movement Y
+
+ [DllImport(nativeLibName)]
+ public static extern int GetTouchX(); // Returns touch position X for touch point 0 (relative to screen size)
+
+ [DllImport(nativeLibName)]
+ public static extern int GetTouchY(); // Returns touch position Y for touch point 0 (relative to screen size)
+
+ [DllImport(nativeLibName)]
+ public static extern Vector2 GetTouchPosition(int index); // Returns touch position XY for a touch point index (relative to screen size)
+
+ [DllImport(nativeLibName)]
+ public static extern void SetGesturesEnabled(uint gestureFlags); // Enable a set of gestures using flags
+
+ [DllImport(nativeLibName)]
+ public static extern bool IsGestureDetected(int gesture); // Check if a gesture have been detected
+
+ [DllImport(nativeLibName)]
+ public static extern int GetGestureDetected(); // Get latest detected gesture
+
+ [DllImport(nativeLibName)]
+ public static extern int GetTouchPointsCount(); // Get touch points count
+
+ [DllImport(nativeLibName)]
+ public static extern float GetGestureHoldDuration(); // Get gesture hold time in milliseconds
+
+ [DllImport(nativeLibName)]
+ public static extern Vector2 GetGestureDragVector(); // Get gesture drag vector
+
+ [DllImport(nativeLibName)]
+ public static extern float GetGestureDragAngle(); // Get gesture drag angle
+
+ [DllImport(nativeLibName)]
+ public static extern Vector2 GetGesturePinchVector(); // Get gesture pinch delta
+
+ [DllImport(nativeLibName)]
+ public static extern float GetGesturePinchAngle(); // Get gesture pinch angle
+
+ [DllImport(nativeLibName)]
+ public static extern void SetCameraMode(Camera3D camera, int mode); // Set camera mode (multiple camera modes available)
+
+ [DllImport(nativeLibName)]
+ public static extern void UpdateCamera(Camera3D camera); // Update camera position for selected mode
+
+ [DllImport(nativeLibName)]
+ public static extern void SetCameraPanControl(int panKey); // Set camera pan key to combine with mouse movement (free camera)
+
+ [DllImport(nativeLibName)]
+ public static extern void SetCameraAltControl(int altKey); // Set camera alt key to combine with mouse movement (free camera)
+
+ [DllImport(nativeLibName)]
+ public static extern void SetCameraSmoothZoomControl(int szKey); // Set camera smooth zoom key to combine with mouse (free camera)
+
+ [DllImport(nativeLibName)]
+ public static extern void SetCameraMoveControls(int frontKey, int backKey, int rightKey, int leftKey, int upKey, int downKey); // Set camera move controls (1st person and 3rd person cameras)
+
+ [DllImport(nativeLibName)]
+ public static extern void DrawPixel(int posX, int posY, Color color); // Draw a pixel
+
+ [DllImport(nativeLibName)]
+ public static extern void DrawPixelV(Vector2 position, Color color); // Draw a pixel (Vector version)
+
+ [DllImport(nativeLibName)]
+ public static extern void DrawLine(int startPosX, int startPosY, int endPosX, int endPosY, Color color); // Draw a line
+
+ [DllImport(nativeLibName)]
+ public static extern void DrawLineV(Vector2 startPos, Vector2 endPos, Color color); // Draw a line (Vector version)
+
+ [DllImport(nativeLibName)]
+ public static extern void DrawLineEx(Vector2 startPos, Vector2 endPos, float thick, Color color); // Draw a line defining thickness
+
+ [DllImport(nativeLibName)]
+ public static extern void DrawLineBezier(Vector2 startPos, Vector2 endPos, float thick, Color color); // Draw a line using cubic-bezier curves in-out
+
+ [DllImport(nativeLibName)]
+ public static extern void DrawCircle(int centerX, int centerY, float radius, Color color); // Draw a color-filled circle
+
+ [DllImport(nativeLibName)]
+ public static extern void DrawCircleGradient(int centerX, int centerY, float radius, Color color1, Color color2); // Draw a gradient-filled circle
+
+ [DllImport(nativeLibName)]
+ public static extern void DrawCircleV(Vector2 center, float radius, Color color); // Draw a color-filled circle (Vector version)
+
+ [DllImport(nativeLibName)]
+ public static extern void DrawCircleLines(int centerX, int centerY, float radius, Color color); // Draw circle outline
+
+ [DllImport(nativeLibName)]
+ public static extern void DrawRectangle(int posX, int posY, int width, int height, Color color); // Draw a color-filled rectangle
+
+ [DllImport(nativeLibName)]
+ public static extern void DrawRectangleV(Vector2 position, Vector2 size, Color color); // Draw a color-filled rectangle (Vector version)
+
+ [DllImport(nativeLibName)]
+ public static extern void DrawRectangleRec(Rectangle rec, Color color); // Draw a color-filled rectangle
+
+ [DllImport(nativeLibName)]
+ public static extern void DrawRectanglePro(Rectangle rec, Vector2 origin, float rotation, Color color); // Draw a color-filled rectangle with pro parameters
+
+ [DllImport(nativeLibName)]
+ public static extern void DrawRectangleGradientV(int posX, int posY, int width, int height, Color color1, Color color2);// Draw a vertical-gradient-filled rectangle
+
+ [DllImport(nativeLibName)]
+ public static extern void DrawRectangleGradientH(int posX, int posY, int width, int height, Color color1, Color color2);// Draw a horizontal-gradient-filled rectangle
+
+ [DllImport(nativeLibName)]
+ public static extern void DrawRectangleGradientEx(Rectangle rec, Color col1, Color col2, Color col3, Color col4); // Draw a gradient-filled rectangle with custom vertex colors
+
+ [DllImport(nativeLibName)]
+ public static extern void DrawRectangleLines(int posX, int posY, int width, int height, Color color); // Draw rectangle outline
+
+ [DllImport(nativeLibName)]
+ public static extern void DrawRectangleLinesEx(Rectangle rec, int lineThick, Color color); // Draw rectangle outline with extended parameters
+
+ [DllImport(nativeLibName)]
+ public static extern void DrawTriangle(Vector2 v1, Vector2 v2, Vector2 v3, Color color); // Draw a color-filled triangle
+
+ [DllImport(nativeLibName)]
+ public static extern void DrawTriangleLines(Vector2 v1, Vector2 v2, Vector2 v3, Color color); // Draw triangle outline
+
+ [DllImport(nativeLibName)]
+ public static extern void DrawPoly(Vector2 center, int sides, float radius, float rotation, Color color); // Draw a regular polygon (Vector version)
+
+ [DllImport(nativeLibName)]
+ public static extern void DrawPolyEx(Vector2[] points, int numPoints, Color color); // Draw a closed polygon defined by points
+
+ [DllImport(nativeLibName)]
+ public static extern void DrawPolyExLines(Vector2[] points, int numPoints, Color color); // Draw polygon lines
+
+ [DllImport(nativeLibName)]
+ public static extern bool CheckCollisionRecs(Rectangle rec1, Rectangle rec2); // Check collision between two rectangles
+
+ [DllImport(nativeLibName)]
+ public static extern bool CheckCollisionCircles(Vector2 center1, float radius1, Vector2 center2, float radius2); // Check collision between two circles
+
+ [DllImport(nativeLibName)]
+ public static extern bool CheckCollisionCircleRec(Vector2 center, float radius, Rectangle rec); // Check collision between circle and rectangle
+
+ [DllImport(nativeLibName)]
+ public static extern Rectangle GetCollisionRec(Rectangle rec1, Rectangle rec2); // Get collision rectangle for two rectangles collision
+
+ [DllImport(nativeLibName)]
+ public static extern bool CheckCollisionPointRec(Vector2 point, Rectangle rec); // Check if point is inside rectangle
+
+ [DllImport(nativeLibName)]
+ public static extern bool CheckCollisionPointCircle(Vector2 point, Vector2 center, float radius); // Check if point is inside circle
+
+ [DllImport(nativeLibName)]
+ public static extern bool CheckCollisionPointTriangle(Vector2 point, Vector2 p1, Vector2 p2, Vector2 p3); // Check if point is inside a triangle
+
+ [DllImport(nativeLibName)]
+ public static extern Image LoadImage(string fileName); // Load image from file into CPU memory (RAM)
+
+ [DllImport(nativeLibName)]
+ public static extern Image LoadImageEx(Color pixels, int width, int height); // Load image from Color array data (RGBA - 32bit)
+
+ [DllImport(nativeLibName)]
+ public static extern Image LoadImagePro(IntPtr data, int width, int height, int format); // Load image from raw data with parameters
+
+ [DllImport(nativeLibName)]
+ public static extern Image LoadImageRaw(string fileName, int width, int height, int format, int headerSize); // Load image from RAW file data
+
+ [DllImport(nativeLibName)]
+ public static extern void ExportImage(string fileName, Image image); // Export image as a PNG file
+
+ [DllImport(nativeLibName)]
+ public static extern Texture2D LoadTexture(string fileName); // Load texture from file into GPU memory (VRAM)
+
+ [DllImport(nativeLibName)]
+ public static extern Texture2D LoadTextureFromImage(Image image); // Load texture from image data
+
+ [DllImport(nativeLibName)]
+ public static extern RenderTexture2D LoadRenderTexture(int width, int height); // Load texture for rendering (framebuffer)
+
+ [DllImport(nativeLibName)]
+ public static extern void UnloadImage(Image image); // Unload image from CPU memory (RAM)
+
+ [DllImport(nativeLibName)]
+ public static extern void UnloadTexture(Texture2D texture); // Unload texture from GPU memory (VRAM)
+
+ [DllImport(nativeLibName)]
+ public static extern void UnloadRenderTexture(RenderTexture2D target); // Unload render texture from GPU memory (VRAM)
+
+ [DllImport(nativeLibName)]
+ public static extern Color[] GetImageData(Image image); // Get pixel data from image as a Color struct array
+
+ [DllImport(nativeLibName)]
+ public static extern Vector4[] GetImageDataNormalized(Image image); // Get pixel data from image as Vector4 array (float normalized)
+
+ [DllImport(nativeLibName)]
+ public static extern int GetPixelDataSize(int width, int height, int format); // Get pixel data size in bytes (image or texture)
+
+ [DllImport(nativeLibName)]
+ public static extern Image GetTextureData(Texture2D texture); // Get pixel data from GPU texture and return an Image
+
+ [DllImport(nativeLibName)]
+ public static extern void UpdateTexture(Texture2D texture, byte[] pixels); // Update GPU texture with new data
+
+ [DllImport(nativeLibName)]
+ public static extern Image ImageCopy(Image image); // Create an image duplicate (useful for transformations)
+
+ [DllImport(nativeLibName)]
+ public static extern void ImageToPOT(Image image, Color fillColor); // Convert image to POT (power-of-two)
+
+ [DllImport(nativeLibName)]
+ public static extern void ImageFormat(Image image, int newFormat); // Convert image data to desired format
+
+ [DllImport(nativeLibName)]
+ public static extern void ImageAlphaMask(Image image, Image alphaMask); // Apply alpha mask to image
+
+ [DllImport(nativeLibName)]
+ public static extern void ImageAlphaClear(Image image, Color color, float threshold); // Clear alpha channel to desired color
+
+ [DllImport(nativeLibName)]
+ public static extern void ImageAlphaCrop(Image image, float threshold); // Crop image depending on alpha value
+
+ [DllImport(nativeLibName)]
+ public static extern void ImageAlphaPremultiply(Image image); // Premultiply alpha channel
+
+ [DllImport(nativeLibName)]
+ public static extern void ImageCrop(Image image, Rectangle crop); // Crop an image to a defined rectangle
+
+ [DllImport(nativeLibName)]
+ public static extern void ImageResize(Image image, int newWidth, int newHeight); // Resize image (bilinear filtering)
+
+ [DllImport(nativeLibName)]
+ public static extern void ImageResizeNN(Image image, int newWidth,int newHeight); // Resize image (Nearest-Neighbor scaling algorithm)
+
+ [DllImport(nativeLibName)]
+ public static extern void ImageResizeCanvas(Image image, int newWidth, int newHeight, int offsetX, int offsetY, Color color); // Resize canvas and fill with color
+
+ [DllImport(nativeLibName)]
+ public static extern void ImageMipmaps(Image image); // Generate all mipmap levels for a provided image
+
+ [DllImport(nativeLibName)]
+ public static extern void ImageDither(Image image, int rBpp, int gBpp, int bBpp, int aBpp); // Dither image data to 16bpp or lower (Floyd-Steinberg dithering)
+
+ [DllImport(nativeLibName)]
+ public static extern Image ImageText(string text, int fontSize, Color color); // Create an image from text (default font)
+
+ [DllImport(nativeLibName)]
+ public static extern Image ImageTextEx(Font font, string text, float fontSize, float spacing, Color tint); // Create an image from text (custom sprite font)
+
+ [DllImport(nativeLibName)]
+ public static extern void ImageDraw(Image dst, Image src, Rectangle srcRec, Rectangle dstRec); // Draw a source image within a destination image
+
+ [DllImport(nativeLibName)]
+ public static extern void ImageDrawRectangle(Image dst, Vector2 position, Rectangle rec, Color color); // Draw rectangle within an image
+
+ [DllImport(nativeLibName)]
+ public static extern void ImageDrawText(Image dst, Vector2 position, string text, int fontSize, Color color); // Draw text (default font) within an image (destination)
+
+ [DllImport(nativeLibName)]
+ public static extern void ImageDrawTextEx(Image dst, Vector2 position, Font font, string text, float fontSize, float spacing, Color color); // Draw text (custom sprite font) within an image (destination)
+
+ [DllImport(nativeLibName)]
+ public static extern void ImageFlipVertical(Image image); // Flip image vertically
+
+ [DllImport(nativeLibName)]
+ public static extern void ImageFlipHorizontal(Image image); // Flip image horizontally
+
+ [DllImport(nativeLibName)]
+ public static extern void ImageRotateCW(Image image); // Rotate image clockwise 90deg
+
+ [DllImport(nativeLibName)]
+ public static extern void ImageRotateCCW(Image image); // Rotate image counter-clockwise 90deg
+
+ [DllImport(nativeLibName)]
+ public static extern void ImageColorTint(Image image, Color color); // Modify image color: tint
+
+ [DllImport(nativeLibName)]
+ public static extern void ImageColorInvert(Image image); // Modify image color: invert
+
+ [DllImport(nativeLibName)]
+ public static extern void ImageColorGrayscale(Image image); // Modify image color: grayscale
+
+ [DllImport(nativeLibName)]
+ public static extern void ImageColorContrast(Image image, float contrast); // Modify image color: contrast (-100 to 100)
+
+ [DllImport(nativeLibName)]
+ public static extern void ImageColorBrightness(Image image, int brightness); // Modify image color: brightness (-255 to 255)
+
+ [DllImport(nativeLibName)]
+ public static extern void ImageColorReplace(Image image, Color color, Color replace); // Modify image color: replace color
+
+ [DllImport(nativeLibName)]
+ public static extern Image GenImageColor(int width, int height, Color color); // Generate image: plain color
+
+ [DllImport(nativeLibName)]
+ public static extern Image GenImageGradientV(int width, int height, Color top, Color bottom); // Generate image: vertical gradient
+
+ [DllImport(nativeLibName)]
+ public static extern Image GenImageGradientH(int width, int height, Color left, Color right); // Generate image: horizontal gradient
+
+ [DllImport(nativeLibName)]
+ public static extern Image GenImageGradientRadial(int width, int height, float density, Color inner, Color outer); // Generate image: radial gradient
+
+ [DllImport(nativeLibName)]
+ public static extern Image GenImageChecked(int width, int height, int checksX, int checksY, Color col1, Color col2); // Generate image: checked
+
+ [DllImport(nativeLibName)]
+ public static extern Image GenImageWhiteNoise(int width, int height, float factor); // Generate image: white noise
+
+ [DllImport(nativeLibName)]
+ public static extern Image GenImagePerlinNoise(int width, int height, int offsetX, int offsetY, float scale); // Generate image: perlin noise
+
+ [DllImport(nativeLibName)]
+ public static extern Image GenImageCellular(int width, int height, int tileSize); // Generate image: cellular algorithm. Bigger tileSize means bigger cells
+
+ [DllImport(nativeLibName)]
+ public static extern void GenTextureMipmaps(Texture2D texture); // Generate GPU mipmaps for a texture
+
+ [DllImport(nativeLibName)]
+ public static extern void SetTextureFilter(Texture2D texture, int filterMode); // Set texture scaling filter mode
+
+ [DllImport(nativeLibName)]
+ public static extern void SetTextureWrap(Texture2D texture, int wrapMode); // Set texture wrapping mode
+
+ [DllImport(nativeLibName)]
+ public static extern void DrawTexture(Texture2D texture, int posX, int posY, Color tint); // Draw a Texture2D
+
+ [DllImport(nativeLibName)]
+ public static extern void DrawTextureV(Texture2D texture, Vector2 position, Color tint); // Draw a Texture2D with position defined as Vector2
+
+ [DllImport(nativeLibName)]
+ public static extern void DrawTextureEx(Texture2D texture, Vector2 position, float rotation, float scale, Color tint); // Draw a Texture2D with extended parameters
+
+ [DllImport(nativeLibName)]
+ public static extern void DrawTextureRec(Texture2D texture, Rectangle sourceRec, Vector2 position, Color tint); // Draw a part of a texture defined by a rectangle
+
+ [DllImport(nativeLibName)]
+ public static extern void DrawTexturePro(Texture2D texture, Rectangle sourceRec, Rectangle destRec, Vector2 origin, float rotation, Color tint); // Draw a part of a texture defined by a rectangle with 'pro' parameters
+
+ [DllImport(nativeLibName)]
+ public static extern Font GetFontDefault(); // Get the default Font
+
+ [DllImport(nativeLibName)]
+ public static extern Font LoadFont(string fileName); // Load font from file into GPU memory (VRAM)
+
+ [DllImport(nativeLibName)]
+ public static extern Font LoadFontEx(string fileName, int fontSize, int charsCount, int[] fontChars); // Load font from file with extended parameters
+
+ [DllImport(nativeLibName)]
+ public static extern CharInfo[] LoadFontData(string fileName, int fontSize, int[] fontChars, int charsCount, bool sdf); // Load font data for further use
+
+ [DllImport(nativeLibName)]
+ public static extern Image GenImageFontAtlas(CharInfo[] chars, int fontSize, int charsCount, int padding, int packMethod); // Generate image font atlas using chars info
+
+ [DllImport(nativeLibName)]
+ public static extern void UnloadFont(Font font); // Unload Font from GPU memory (VRAM)
+
+ [DllImport(nativeLibName)]
+ public static extern void DrawFPS(int posX, int posY); // Shows current FPS
+
+ [DllImport(nativeLibName)]
+ public static extern void DrawText(string text, int posX, int posY, int fontSize, Color color); // Draw text (using default font)
+
+ [DllImport(nativeLibName)]
+ public static extern void DrawTextEx(Font font, string text, Vector2 position, float fontSize, float spacing, Color tint); // Draw text using font and additional parameters
+
+ [DllImport(nativeLibName)]
+ public static extern int MeasureText(string text, int fontSize); // Measure string width for default font
+
+ [DllImport(nativeLibName)]
+ public static extern Vector2 MeasureTextEx(Font font, string text, float fontSize, float spacing); // Measure string size for Font
+
+ [DllImport(nativeLibName)]
+ public static extern string FormatText(string text, params object[] args); // Formatting of text with variables to 'embed'
+
+ [DllImport(nativeLibName)]
+ public static extern string SubText(string text, int position, int length); // Get a piece of a text string
+
+ [DllImport(nativeLibName)]
+ public static extern int GetGlyphIndex(Font font, int character); // Get index position for a unicode character on font
+
+ [DllImport(nativeLibName)]
+ public static extern void DrawLine3D(Vector3 startPos, Vector3 endPos, Color color); // Draw a line in 3D world space
+
+ [DllImport(nativeLibName)]
+ public static extern void DrawCircle3D(Vector3 center, float radius, Vector3 rotationAxis, float rotationAngle, Color color); // Draw a circle in 3D world space
+
+ [DllImport(nativeLibName)]
+ public static extern void DrawCube(Vector3 position, float width, float height, float length, Color color); // Draw cube
+
+ [DllImport(nativeLibName)]
+ public static extern void DrawCubeV(Vector3 position, Vector3 size, Color color); // Draw cube (Vector version)
+
+ [DllImport(nativeLibName)]
+ public static extern void DrawCubeWires(Vector3 position, float width, float height, float length, Color color); // Draw cube wires
+
+ [DllImport(nativeLibName)]
+ public static extern void DrawCubeTexture(Texture2D texture, Vector3 position, float width, float height, float length, Color color); // Draw cube textured
+
+ [DllImport(nativeLibName)]
+ public static extern void DrawSphere(Vector3 centerPos, float radius, Color color); // Draw sphere
+
+ [DllImport(nativeLibName)]
+ public static extern void DrawSphereEx(Vector3 centerPos, float radius, int rings, int slices, Color color); // Draw sphere with extended parameters
+
+ [DllImport(nativeLibName)]
+ public static extern void DrawSphereWires(Vector3 centerPos, float radius, int rings, int slices, Color color); // Draw sphere wires
+
+ [DllImport(nativeLibName)]
+ public static extern void DrawCylinder(Vector3 position, float radiusTop, float radiusBottom, float height, int slices, Color color); // Draw a cylinder/cone
+
+ [DllImport(nativeLibName)]
+ public static extern void DrawCylinderWires(Vector3 position, float radiusTop, float radiusBottom, float height, int slices, Color color); // Draw a cylinder/cone wires
+
+ [DllImport(nativeLibName)]
+ public static extern void DrawPlane(Vector3 centerPos, Vector2 size, Color color); // Draw a plane XZ
+
+ [DllImport(nativeLibName)]
+ public static extern void DrawRay(Ray ray, Color color); // Draw a ray line
+
+ [DllImport(nativeLibName)]
+ public static extern void DrawGrid(int slices, float spacing); // Draw a grid (centered at (0, 0, 0))
+
+ [DllImport(nativeLibName)]
+ public static extern void DrawGizmo(Vector3 position); // Draw simple gizmo
+
+ [DllImport(nativeLibName)]
+ public static extern Model LoadModel(string fileName); // Load model from files (mesh and material)
+
+ [DllImport(nativeLibName)]
+ public static extern Model LoadModelFromMesh(Mesh mesh); // Load model from generated mesh
+
+ [DllImport(nativeLibName)]
+ public static extern void UnloadModel(Model model); // Unload model from memory (RAM and/or VRAM)
+
+ [DllImport(nativeLibName)]
+ public static extern Mesh LoadMesh(string fileName); // Load mesh from file
+
+ [DllImport(nativeLibName)]
+ public static extern void UnloadMesh(Mesh mesh); // Unload mesh from memory (RAM and/or VRAM)
+
+ [DllImport(nativeLibName)]
+ public static extern void ExportMesh(string fileName, Mesh mesh); // Export mesh as an OBJ file
+
+ [DllImport(nativeLibName)]
+ public static extern BoundingBox MeshBoundingBox(Mesh mesh); // Compute mesh bounding box limits
+
+ [DllImport(nativeLibName)]
+ public static extern void MeshTangents(Mesh mesh); // Compute mesh tangents
+
+ [DllImport(nativeLibName)]
+ public static extern void MeshBinormals(Mesh mesh); // Compute mesh binormals
+
+ [DllImport(nativeLibName)]
+ public static extern Mesh GenMeshPlane(float width, float length, int resX, int resZ); // Generate plane mesh (with subdivisions)
+
+ [DllImport(nativeLibName)]
+ public static extern Mesh GenMeshCube(float width, float height, float length); // Generate cuboid mesh
+
+ [DllImport(nativeLibName)]
+ public static extern Mesh GenMeshSphere(float radius, int rings, int slices); // Generate sphere mesh (standard sphere)
+
+ [DllImport(nativeLibName)]
+ public static extern Mesh GenMeshHemiSphere(float radius, int rings, int slices); // Generate half-sphere mesh (no bottom cap)
+
+ [DllImport(nativeLibName)]
+ public static extern Mesh GenMeshCylinder(float radius, float height, int slices); // Generate cylinder mesh
+
+ [DllImport(nativeLibName)]
+ public static extern Mesh GenMeshTorus(float radius, float size, int radSeg, int sides); // Generate torus mesh
+
+ [DllImport(nativeLibName)]
+ public static extern Mesh GenMeshKnot(float radius, float size, int radSeg, int sides); // Generate trefoil knot mesh
+
+ [DllImport(nativeLibName)]
+ public static extern Mesh GenMeshHeightmap(Image heightmap, Vector3 size); // Generate heightmap mesh from image data
+
+ [DllImport(nativeLibName)]
+ public static extern Mesh GenMeshCubicmap(Image cubicmap, Vector3 cubeSize); // Generate cubes-based map mesh from image data
+
+ [DllImport(nativeLibName)]
+ public static extern Material LoadMaterial(string fileName); // Load material from file
+
+ [DllImport(nativeLibName)]
+ public static extern Material LoadMaterialDefault(); // Load default material (Supports: DIFFUSE, SPECULAR, NORMAL maps)
+
+ [DllImport(nativeLibName)]
+ public static extern void UnloadMaterial(Material material); // Unload material from GPU memory (VRAM)
+
+ [DllImport(nativeLibName)]
+ public static extern void DrawModel(Model model, Vector3 position, float scale, Color tint); // Draw a model (with texture if set)
+
+ [DllImport(nativeLibName)]
+ public static extern void DrawModelEx(Model model, Vector3 position, Vector3 rotationAxis, float rotationAngle, Vector3 scale, Color tint); // Draw a model with extended parameters
+
+ [DllImport(nativeLibName)]
+ public static extern void DrawModelWires(Model model, Vector3 position, float scale, Color tint); // Draw a model wires (with texture if set)
+
+ [DllImport(nativeLibName)]
+ public static extern void DrawModelWiresEx(Model model, Vector3 position, Vector3 rotationAxis, float rotationAngle, Vector3 scale, Color tint); // Draw a model wires (with texture if set) with extended parameters
+
+ [DllImport(nativeLibName)]
+ public static extern void DrawBoundingBox(BoundingBox box, Color color); // Draw bounding box (wires)
+
+ [DllImport(nativeLibName)]
+ public static extern void DrawBillboard(Camera3D camera, Texture2D texture, Vector3 center, float size, Color tint); // Draw a billboard texture
+
+ [DllImport(nativeLibName)]
+ public static extern void DrawBillboardRec(Camera3D camera, Texture2D texture, Rectangle sourceRec, Vector3 center, float size, Color tint); // Draw a billboard texture defined by sourceRec
+
+ [DllImport(nativeLibName)]
+ public static extern bool CheckCollisionSpheres(Vector3 centerA, float radiusA, Vector3 centerB, float radiusB); // Detect collision between two spheres
+
+ [DllImport(nativeLibName)]
+ public static extern bool CheckCollisionBoxes(BoundingBox box1, BoundingBox box2); // Detect collision between two bounding boxes
+
+ [DllImport(nativeLibName)]
+ public static extern bool CheckCollisionBoxSphere(BoundingBox box, Vector3 centerSphere, float radiusSphere); // Detect collision between box and sphere
+
+ [DllImport(nativeLibName)]
+ public static extern bool CheckCollisionRaySphere(Ray ray, Vector3 spherePosition, float sphereRadius); // Detect collision between ray and sphere
+
+ [DllImport(nativeLibName)]
+ public static extern bool CheckCollisionRaySphereEx(Ray ray, Vector3 spherePosition, float sphereRadius, Vector3 collisionPoint); // Detect collision between ray and sphere, returns collision point
+
+ [DllImport(nativeLibName)]
+ public static extern bool CheckCollisionRayBox(Ray ray, BoundingBox box); // Detect collision between ray and box
+
+ [DllImport(nativeLibName)]
+ public static extern RayHitInfo GetCollisionRayModel(Ray ray, Model model); // Get collision info between ray and model
+
+ [DllImport(nativeLibName)]
+ public static extern RayHitInfo GetCollisionRayTriangle(Ray ray, Vector3 p1, Vector3 p2, Vector3 p3); // Get collision info between ray and triangle
+
+ [DllImport(nativeLibName)]
+ public static extern RayHitInfo GetCollisionRayGround(Ray ray, float groundHeight); // Get collision info between ray and ground plane (Y-normal plane)
+
+ [DllImport(nativeLibName)]
+ public static extern string LoadText(string fileName); // Load chars array from text file
+
+ [DllImport(nativeLibName)]
+ public static extern Shader LoadShader(string vsFileName, string fsFileName); // Load shader from files and bind default locations
+
+ [DllImport(nativeLibName)]
+ public static extern Shader LoadShaderCode(string vsCode, string fsCode); // Load shader from code strings and bind default locations
+
+ [DllImport(nativeLibName)]
+ public static extern void UnloadShader(Shader shader); // Unload shader from GPU memory (VRAM)
+
+ [DllImport(nativeLibName)]
+ public static extern Shader GetShaderDefault(); // Get default shader
+
+ [DllImport(nativeLibName)]
+ public static extern Texture2D GetTextureDefault(); // Get default texture
+
+ [DllImport(nativeLibName)]
+ public static extern int GetShaderLocation(Shader shader, string uniformName); // Get shader uniform location
+
+ [DllImport(nativeLibName)]
+ public static extern void SetShaderValue(Shader shader, int uniformLoc, float[] value, int size); // Set shader uniform value (float)
+
+ [DllImport(nativeLibName)]
+ public static extern void SetShaderValuei(Shader shader, int uniformLoc, int[] value, int size); // Set shader uniform value (int)
+
+ [DllImport(nativeLibName)]
+ public static extern void SetShaderValueMatrix(Shader shader, int uniformLoc, Matrix mat); // Set shader uniform value (matrix 4x4)
+
+ [DllImport(nativeLibName)]
+ public static extern void SetMatrixProjection(Matrix proj); // Set a custom projection matrix (replaces internal projection matrix)
+
+ [DllImport(nativeLibName)]
+ public static extern void SetMatrixModelview(Matrix view); // Set a custom modelview matrix (replaces internal modelview matrix)
+
+ [DllImport(nativeLibName)]
+ public static extern Matrix GetMatrixModelview(); // Get internal modelview matrix
+
+ [DllImport(nativeLibName)]
+ public static extern Texture2D GenTextureCubemap(Shader shader, Texture2D skyHDR, int size); // Generate cubemap texture from HDR texture
+
+ [DllImport(nativeLibName)]
+ public static extern Texture2D GenTextureIrradiance(Shader shader, Texture2D cubemap, int size); // Generate irradiance texture using cubemap data
+
+ [DllImport(nativeLibName)]
+ public static extern Texture2D GenTexturePrefilter(Shader shader, Texture2D cubemap, int size); // Generate prefilter texture using cubemap data
+
+ [DllImport(nativeLibName)]
+ public static extern Texture2D GenTextureBRDF(Shader shader, Texture2D cubemap, int size); // Generate BRDF texture using cubemap data
+
+ [DllImport(nativeLibName)]
+ public static extern void BeginShaderMode(Shader shader); // Begin custom shader drawing
+
+ [DllImport(nativeLibName)]
+ public static extern void EndShaderMode(); // End custom shader drawing (use default shader)
+
+ [DllImport(nativeLibName)]
+ public static extern void BeginBlendMode(int mode); // Begin blending mode (alpha, additive, multiplied)
+
+ [DllImport(nativeLibName)]
+ public static extern void EndBlendMode(); // End blending mode (reset to default: alpha blending)
+
+ [DllImport(nativeLibName)]
+ public static extern VrDeviceInfo GetVrDeviceInfo(int vrDeviceType); // Get VR device information for some standard devices
+
+ [DllImport(nativeLibName)]
+ public static extern void InitVrSimulator(VrDeviceInfo info); // Init VR simulator for selected device parameters
+
+ [DllImport(nativeLibName)]
+ public static extern void CloseVrSimulator(); // Close VR simulator for current device
+
+ [DllImport(nativeLibName)]
+ public static extern bool IsVrSimulatorReady(); // Detect if VR simulator is ready
+
+ [DllImport(nativeLibName)]
+ public static extern void SetVrDistortionShader(Shader shader); // Set VR distortion shader for stereoscopic rendering
+
+ [DllImport(nativeLibName)]
+ public static extern void UpdateVrTracking(Camera3D camera); // Update VR tracking (position and orientation) and camera
+
+ [DllImport(nativeLibName)]
+ public static extern void ToggleVrMode(); // Enable/Disable VR experience
+
+ [DllImport(nativeLibName)]
+ public static extern void BeginVrDrawing(); // Begin VR simulator stereo rendering
+
+ [DllImport(nativeLibName)]
+ public static extern void EndVrDrawing(); // End VR simulator stereo rendering
+
+ [DllImport(nativeLibName)]
+ public static extern void InitAudioDevice(); // Initialize audio device and context
+
+ [DllImport(nativeLibName)]
+ public static extern void CloseAudioDevice(); // Close the audio device and context
+
+ [DllImport(nativeLibName)]
+ public static extern bool IsAudioDeviceReady(); // Check if audio device has been initialized successfully
+
+ [DllImport(nativeLibName)]
+ public static extern void SetMasterVolume(float volume); // Set master volume (listener)
+
+ [DllImport(nativeLibName)]
+ public static extern Wave LoadWave(string fileName); // Load wave data from file
+
+ [DllImport(nativeLibName)]
+ public static extern Wave LoadWaveEx(IntPtr data, int sampleCount, int sampleRate, int sampleSize, int channels); // Load wave data from raw array data
+
+ [DllImport(nativeLibName)]
+ public static extern Sound LoadSound(string fileName); // Load sound from file
+
+ [DllImport(nativeLibName)]
+ public static extern Sound LoadSoundFromWave(Wave wave); // Load sound from wave data
+
+ [DllImport(nativeLibName)]
+ public static extern void UpdateSound(Sound sound, byte[] data, int samplesCount);// Update sound buffer with new data
+
+ [DllImport(nativeLibName)]
+ public static extern void UnloadWave(Wave wave); // Unload wave data
+
+ [DllImport(nativeLibName)]
+ public static extern void UnloadSound(Sound sound); // Unload sound
+
+ [DllImport(nativeLibName)]
+ public static extern void PlaySound(Sound sound); // Play a sound
+
+ [DllImport(nativeLibName)]
+ public static extern void PauseSound(Sound sound); // Pause a sound
+
+ [DllImport(nativeLibName)]
+ public static extern void ResumeSound(Sound sound); // Resume a paused sound
+
+ [DllImport(nativeLibName)]
+ public static extern void StopSound(Sound sound); // Stop playing a sound
+
+ [DllImport(nativeLibName)]
+ public static extern bool IsSoundPlaying(Sound sound); // Check if a sound is currently playing
+
+ [DllImport(nativeLibName)]
+ public static extern void SetSoundVolume(Sound sound, float volume); // Set volume for a sound (1.0 is max level)
+
+ [DllImport(nativeLibName)]
+ public static extern void SetSoundPitch(Sound sound, float pitch); // Set pitch for a sound (1.0 is base level)
+
+ [DllImport(nativeLibName)]
+ public static extern void WaveFormat(out Wave wave, int sampleRate, int sampleSize, int channels); // Convert wave data to desired format
+
+ [DllImport(nativeLibName)]
+ public static extern Wave WaveCopy(Wave wave); // Copy a wave to a new wave
+
+ [DllImport(nativeLibName)]
+ public static extern void WaveCrop(out Wave wave, int initSample, int finalSample); // Crop a wave to defined samples range
+
+ [DllImport(nativeLibName)]
+ public static extern float[] GetWaveData(Wave wave); // Get samples data from wave as a floats array
+
+ [DllImport(nativeLibName)]
+ public static extern IntPtr LoadMusicStream(string fileName); // Load IntPtr stream from file
+
+ [DllImport(nativeLibName)]
+ public static extern void UnloadMusicStream(IntPtr music); // Unload IntPtr stream
+
+ [DllImport(nativeLibName)]
+ public static extern void PlayMusicStream(IntPtr music); // Start IntPtr playing
+
+ [DllImport(nativeLibName)]
+ public static extern void UpdateMusicStream(IntPtr music); // Updates buffers for IntPtr streaming
+
+ [DllImport(nativeLibName)]
+ public static extern void StopMusicStream(IntPtr music); // Stop IntPtr playing
+
+ [DllImport(nativeLibName)]
+ public static extern void PauseMusicStream(IntPtr music); // Pause IntPtr playing
+
+ [DllImport(nativeLibName)]
+ public static extern void ResumeMusicStream(IntPtr music); // Resume playing paused music
+
+ [DllImport(nativeLibName)]
+ public static extern bool IsMusicPlaying(IntPtr music); // Check if IntPtr is playing
+
+ [DllImport(nativeLibName)]
+ public static extern void SetMusicVolume(IntPtr music, float volume); // Set volume for IntPtr (1.0 is max level)
+
+ [DllImport(nativeLibName)]
+ public static extern void SetMusicPitch(IntPtr music, float pitch); // Set pitch for a IntPtr (1.0 is base level)
+
+ [DllImport(nativeLibName)]
+ public static extern void SetMusicLoopCount(IntPtr music, int count); // Set IntPtr loop count (loop repeats)
+
+ [DllImport(nativeLibName)]
+ public static extern float GetMusicTimeLength(IntPtr music); // Get IntPtr time length (in seconds)
+
+ [DllImport(nativeLibName)]
+ public static extern float GetMusicTimePlayed(IntPtr music); // Get current IntPtr time played (in seconds)
+
+ [DllImport(nativeLibName)]
+ public static extern AudioStream InitAudioStream(uint sampleRate, uint sampleSize, uint channels); // Init audio stream (to stream raw audio pcm data)
+
+ [DllImport(nativeLibName)]
+ public static extern void UpdateAudioStream(AudioStream stream, byte[] data, int samplesCount); // Update audio stream buffers with data
+
+ [DllImport(nativeLibName)]
+ public static extern void CloseAudioStream(AudioStream stream); // Close audio stream and free memory
+
+ [DllImport(nativeLibName)]
+ public static extern bool IsAudioBufferProcessed(AudioStream stream); // Check if any audio stream buffers requires refill
+
+ [DllImport(nativeLibName)]
+ public static extern void PlayAudioStream(AudioStream stream); // Play audio stream
+
+ [DllImport(nativeLibName)]
+ public static extern void PauseAudioStream(AudioStream stream); // Pause audio stream
+
+ [DllImport(nativeLibName)]
+ public static extern void ResumeAudioStream(AudioStream stream); // Resume audio stream
+
+ [DllImport(nativeLibName)]
+ public static extern bool IsAudioStreamPlaying(AudioStream stream); // Check if audio stream is playing
+
+ [DllImport(nativeLibName)]
+ public static extern void StopAudioStream(AudioStream stream); // Stop audio stream
+
+ [DllImport(nativeLibName)]
+ public static extern void SetAudioStreamVolume(AudioStream stream, float volume); // Set volume for audio stream (1.0 is max level)
+
+ [DllImport(nativeLibName)]
+ public static extern void SetAudioStreamPitch(AudioStream stream, float pitch); // Set pitch for audio stream (1.0 is base level)
+
+ #endregion
+ }
+}
diff --git a/ExampleApplication/Raymath.cs b/ExampleApplication/Raymath.cs
new file mode 100644
index 0000000..a327f2c
--- /dev/null
+++ b/ExampleApplication/Raymath.cs
@@ -0,0 +1,462 @@
+
+using System.Runtime.InteropServices;
+
+namespace Raylib
+{
+ #region Raylib-cs Types
+
+ // Vector2 type
+ public struct Vector2
+ {
+ public float x;
+ public float y;
+
+ public Vector2(float x, float y)
+ {
+ this.x = x;
+ this.y = y;
+ }
+
+ public override bool Equals(object obj)
+ {
+ return (obj is Vector2) && Equals((Vector2)obj);
+ }
+
+ public override int GetHashCode()
+ {
+ return x.GetHashCode() + y.GetHashCode();
+ }
+
+ // utility for c functions Vector2Zero -> Zero etc
+ [DllImport(rl.nativeLibName, EntryPoint = "Vector2Zero")]
+ public static extern Vector2 Zero();
+
+ [DllImport(rl.nativeLibName, EntryPoint = "Vector2One")]
+ public static extern Vector2 One();
+
+ [DllImport(rl.nativeLibName, EntryPoint = "Vector2Add")]
+ public static extern Vector2 operator +(Vector2 v1, Vector2 v2);
+
+ [DllImport(rl.nativeLibName, EntryPoint = "Vector2Subtract")]
+ public static extern Vector2 operator -(Vector2 v1, Vector2 v2);
+
+ [DllImport(rl.nativeLibName, EntryPoint = "Vector2Length")]
+ public static extern float Length(Vector2 v);
+
+ [DllImport(rl.nativeLibName, EntryPoint = "Vector2DotProduct")]
+ public static extern float DotProduct(Vector2 v1, Vector2 v2);
+
+ [DllImport(rl.nativeLibName, EntryPoint = "Vector2Distance")]
+ public static extern float Distance(Vector2 v1, Vector2 v2);
+
+ [DllImport(rl.nativeLibName, EntryPoint = "Vector2Angle")]
+ public static extern float Angle(Vector2 v1, Vector2 v2);
+
+ [DllImport(rl.nativeLibName, EntryPoint = "Vector2Scale")]
+ public static extern Vector2 Scale(Vector2 v, float scale);
+
+ [DllImport(rl.nativeLibName, EntryPoint = "Vector2Negate")]
+ public static extern Vector2 Negate(Vector2 v);
+
+ [DllImport(rl.nativeLibName, EntryPoint = "Vector2Divide")]
+ public static extern Vector2 Divide(Vector2 v, float div);
+
+ [DllImport(rl.nativeLibName, EntryPoint = "Vector2Normalize")]
+ public static extern Vector2 Normalize(Vector2 v);
+
+ public static bool operator ==(Vector2 v1, Vector2 v2)
+ {
+ return (v1.x == v2.x && v1.y == v2.y);
+ }
+
+ public static bool operator !=(Vector2 v1, Vector2 v2)
+ {
+ return !(v1 == v2);
+ }
+ }
+
+ // Vector3 type
+ public struct Vector3
+ {
+ public float x;
+ public float y;
+ public float z;
+
+ public Vector3(float x, float y, float z)
+ {
+ this.x = x;
+ this.y = y;
+ this.z = z;
+ }
+
+ public override bool Equals(object obj)
+ {
+ return (obj is Vector3) && Equals((Vector3)obj);
+ }
+
+ public override int GetHashCode()
+ {
+ return x.GetHashCode() + y.GetHashCode() + z.GetHashCode();
+ }
+
+ // utility for c functions Vector3Zero -> Zero etc
+ [DllImport(rl.nativeLibName, EntryPoint = "Vector3Zero")]
+ public static extern Vector3 Zero();
+
+ [DllImport(rl.nativeLibName, EntryPoint = "Vector3One")]
+ public static extern Vector3 One();
+
+ [DllImport(rl.nativeLibName, EntryPoint = "Vector3Add")]
+ public static extern Vector3 operator +(Vector3 v1, Vector3 v3);
+
+ [DllImport(rl.nativeLibName, EntryPoint = "Vector3Subtract")]
+ public static extern Vector3 operator -(Vector3 v1, Vector3 v3);
+
+ [DllImport(rl.nativeLibName, EntryPoint = "Vector3Length")]
+ public static extern float Length(Vector3 v);
+
+ [DllImport(rl.nativeLibName, EntryPoint = "Vector3DotProduct")]
+ public static extern float DotProduct(Vector3 v1, Vector3 v3);
+
+ [DllImport(rl.nativeLibName, EntryPoint = "Vector3Distance")]
+ public static extern float Distance(Vector3 v1, Vector3 v3);
+
+ [DllImport(rl.nativeLibName, EntryPoint = "Vector3Angle")]
+ public static extern float Angle(Vector3 v1, Vector3 v3);
+
+ [DllImport(rl.nativeLibName, EntryPoint = "Vector3Scale")]
+ public static extern Vector3 Scale(Vector3 v, float scale);
+
+ [DllImport(rl.nativeLibName, EntryPoint = "Vector3Negate")]
+ public static extern Vector3 Negate(Vector3 v);
+
+ [DllImport(rl.nativeLibName, EntryPoint = "Vector3Divide")]
+ public static extern Vector3 Divide(Vector3 v, float div);
+
+ [DllImport(rl.nativeLibName, EntryPoint = "Vector3Normalize")]
+ public static extern Vector3 Normalize(Vector3 v);
+
+ // operators
+ [DllImport(rl.nativeLibName, EntryPoint = "Vector3Scale")]
+ public static extern Vector3 operator *(Vector3 v1, Vector3 v3);
+
+ [DllImport(rl.nativeLibName, EntryPoint = "Vector3Divide")]
+ public static extern Vector3 operator /(Vector3 v1, Vector3 v3);
+
+ [DllImport(rl.nativeLibName, EntryPoint = "Vector3Negate")]
+ public static extern Vector3 operator -(Vector3 v1);
+
+ public static bool operator ==(Vector3 v1, Vector3 v2)
+ {
+ return (v1.x == v2.x && v1.y == v2.y && v1.z == v2.z);
+ }
+
+ public static bool operator !=(Vector3 v1, Vector3 v2)
+ {
+ return !(v1 == v2);
+ }
+ }
+
+ // Vector4 type
+ public struct Vector4
+ {
+ public float x;
+ public float y;
+ public float z;
+ public float w;
+
+ public Vector4(float x, float y, float z, float w)
+ {
+ this.x = x;
+ this.y = y;
+ this.z = z;
+ this.w = w;
+ }
+ }
+
+ // Matrix type (OpenGL style 4x4 - right handed, column major)
+ [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
+ public struct Matrix
+ {
+ public float m0, m4, m8, m12;
+ public float m1, m5, m9, m13;
+ public float m2, m6, m10, m14;
+ public float m3, m7, m11, m15;
+ }
+
+ // Quaternion type
+ [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
+ public struct Quaternion
+ {
+ public float x;
+ public float y;
+ public float z;
+ public float w;
+ }
+
+ #endregion
+
+ public static partial class rl
+ {
+ #region Raylib-cs Functions
+
+ // Clamp float value
+ [DllImport(nativeLibName)]
+ public static extern float Clamp(float value, float min, float max);
+
+ // Vector with components value 0.0f
+ [DllImport(nativeLibName)]
+ public static extern Vector2 Vector2Zero();
+
+ // Vector with components value 1.0f
+ [DllImport(nativeLibName)]
+ public static extern Vector2 Vector2One();
+
+ // Add two vectors (v1 + v2)
+ [DllImport(nativeLibName)]
+ public static extern Vector2 Vector2Add(Vector2 v1, Vector2 v2);
+
+ // Subtract two vectors (v1 - v2)
+ [DllImport(nativeLibName)]
+ public static extern Vector2 Vector2Subtract(Vector2 v1, Vector2 v2);
+
+ // Calculate vector length
+ [DllImport(nativeLibName)]
+ public static extern float Vector2Length(Vector2 v);
+
+ // Calculate two vectors dot product
+ [DllImport(nativeLibName)]
+ public static extern float Vector2DotProduct(Vector2 v1, Vector2 v2);
+
+ // Calculate distance between two vectors
+ [DllImport(nativeLibName)]
+ public static extern float Vector2Distance(Vector2 v1, Vector2 v2);
+
+ // Calculate angle from two vectors in X-axis
+ [DllImport(nativeLibName)]
+ public static extern float Vector2Angle(Vector2 v1, Vector2 v2);
+
+ // Scale vector (multiply by value)
+ [DllImport(nativeLibName)]
+ public static extern Vector2 Vector2Scale(Vector2 v, float scale);
+
+ // Negate vector
+ [DllImport(nativeLibName)]
+ public static extern Vector2 Vector2Negate(Vector2 v);
+
+ // Divide vector by a float value
+ [DllImport(nativeLibName)]
+ public static extern Vector2 Vector2Divide(Vector2 v, float div);
+
+ // Normalize provided vector
+ [DllImport(nativeLibName)]
+ public static extern Vector2 Vector2Normalize(Vector2 v);
+
+
+ // Vector with components value 0.0f
+ [DllImport(nativeLibName)]
+ public static extern Vector3 Vector3Zero();
+
+ // Vector with components value 1.0f
+ [DllImport(nativeLibName)]
+ public static extern Vector3 Vector3One();
+
+ // Add two vectors
+ [DllImport(nativeLibName)]
+ public static extern Vector3 Vector3Add(Vector3 v1, Vector3 v2);
+
+ // Substract two vectors
+ [DllImport(nativeLibName)]
+ public static extern Vector3 Vector3Subtract(Vector3 v1, Vector3 v2);
+
+ // Multiply vector by scalar
+ [DllImport(nativeLibName)]
+ public static extern Vector3 Vector3Multiply(Vector3 v, float scalar);
+
+ // Multiply vector by vector
+ [DllImport(nativeLibName)]
+ public static extern Vector3 Vector3MultiplyV(Vector3 v1, Vector3 v2);
+
+ // Calculate two vectors cross product
+ [DllImport(nativeLibName)]
+ public static extern Vector3 Vector3CrossProduct(Vector3 v1, Vector3 v2);
+
+ // Calculate one vector perpendicular vector
+ [DllImport(nativeLibName)]
+ public static extern Vector3 Vector3Perpendicular(Vector3 v);
+
+ // Calculate vector length
+ [DllImport(nativeLibName)]
+ public static extern float Vector3Length(Vector3 v);
+
+ // Calculate two vectors dot product
+ [DllImport(nativeLibName)]
+ public static extern float Vector3DotProduct(Vector3 v1, Vector3 v2);
+
+ // Calculate distance between two vectors
+ [DllImport(nativeLibName)]
+ public static extern float Vector3Distance(Vector3 v1, Vector3 v2);
+
+ // Scale provided vector
+ [DllImport(nativeLibName)]
+ public static extern Vector3 Vector3Scale(Vector3 v, float scale);
+
+ // Negate provided vector (invert direction)
+ [DllImport(nativeLibName)]
+ public static extern Vector3 Vector3Negate(Vector3 v);
+
+ // Normalize provided vector
+ [DllImport(nativeLibName)]
+ public static extern Vector3 Vector3Normalize(Vector3 v);
+
+ // Orthonormalize provided vectors
+ // Makes vectors normalized and orthogonal to each other
+ // Gram-Schmidt function implementation
+ [DllImport(nativeLibName)]
+ public static extern void Vector3OrthoNormalize(out Vector3 v1, out Vector3 v2);
+
+ // Transforms a Vector3 by a given Matrix
+ [DllImport(nativeLibName)]
+ public static extern Vector3 Vector3Transform(Vector3 v, Matrix mat);
+
+ // Transform a vector by quaternion rotation
+ [DllImport(nativeLibName)]
+ public static extern Vector3 Vector3RotateByQuaternion(Vector3 v, Quaternion q);
+
+ // Calculate linear interpolation between two vectors
+ [DllImport(nativeLibName)]
+ public static extern Vector3 Vector3Lerp(Vector3 v1, Vector3 v2, float amount);
+
+ // Calculate reflected vector to normal
+ [DllImport(nativeLibName)]
+ public static extern Vector3 Vector3Reflect(Vector3 v, Vector3 normal);
+
+ // Return min value for each pair of components
+ [DllImport(nativeLibName)]
+ public static extern Vector3 Vector3Min(Vector3 v1, Vector3 v2);
+
+ // Return max value for each pair of components
+ [DllImport(nativeLibName)]
+ public static extern Vector3 Vector3Max(Vector3 v1, Vector3 v2);
+
+ // Compute barycenter coordinates (u, v, w) for point p with respect to triangle (a, b, c)
+ // NOTE: Assumes P is on the plane of the triangle
+ [DllImport(nativeLibName)]
+ public static extern Vector3 Vector3Barycenter(Vector3 p, Vector3 a, Vector3 b, Vector3 c);
+
+ // Returns Vector3 as float array
+ [DllImport(nativeLibName)]
+ public static extern float[] Vector3ToFloatV(Vector3 v);
+
+ [DllImport(nativeLibName)]
+ public static extern float MatrixDeterminant(Matrix mat);
+
+ [DllImport(nativeLibName)]
+ public static extern float MatrixTrace(Matrix mat);
+
+ [DllImport(nativeLibName)]
+ public static extern Matrix MatrixTranspose(Matrix mat);
+
+ [DllImport(nativeLibName)]
+ public static extern Matrix MatrixInvert(Matrix mat);
+
+ [DllImport(nativeLibName)]
+ public static extern Matrix MatrixNormalize(Matrix mat);
+
+ [DllImport(nativeLibName)]
+ public static extern Matrix MatrixIdentity();
+
+ [DllImport(nativeLibName)]
+ public static extern Matrix MatrixAdd(Matrix left, Matrix right);
+
+ [DllImport(nativeLibName)]
+ public static extern Matrix MatrixSubstract(Matrix left, Matrix right);
+
+ [DllImport(nativeLibName)]
+ public static extern Matrix MatrixTranslate(float x, float y, float z);
+
+ [DllImport(nativeLibName)]
+ public static extern Matrix MatrixRotate(Vector3 axis, float angle);
+
+ [DllImport(nativeLibName)]
+ public static extern Matrix MatrixRotateX(float angle);
+
+ [DllImport(nativeLibName)]
+ public static extern Matrix MatrixRotateY(float angle);
+
+ [DllImport(nativeLibName)]
+ public static extern Matrix MatrixRotateZ(float angle);
+
+ [DllImport(nativeLibName)]
+ public static extern Matrix MatrixScale(float x, float y, float z);
+
+ [DllImport(nativeLibName)]
+ public static extern Matrix MatrixMultiply(Matrix left, Matrix right);
+
+ [DllImport(nativeLibName)]
+ public static extern Matrix MatrixFrustum(double left, double right, double bottom, double top, double near, double far);
+
+ [DllImport(nativeLibName)]
+ public static extern Matrix MatrixPerspective(double fovy, double aspect, double near, double far);
+
+ [DllImport(nativeLibName)]
+ public static extern Matrix MatrixOrtho(double left, double right, double bottom, double top, double near, double far);
+
+ [DllImport(nativeLibName)]
+ public static extern Matrix MatrixLookAt(Vector3 eye, Vector3 target, Vector3 up);
+
+ [DllImport(nativeLibName)]
+ public static extern float[] MatrixToFloatV(Matrix mat);
+
+ [DllImport(nativeLibName)]
+ public static extern Quaternion QuaternionIdentity();
+
+ [DllImport(nativeLibName)]
+ public static extern float QuaternionLength(Quaternion q);
+
+ [DllImport(nativeLibName)]
+ public static extern Quaternion QuaternionNormalize(Quaternion q);
+
+ [DllImport(nativeLibName)]
+ public static extern Quaternion QuaternionInvert(Quaternion q);
+
+ [DllImport(nativeLibName)]
+ public static extern Quaternion QuaternionMultiply(Quaternion q1, Quaternion q2);
+
+ [DllImport(nativeLibName)]
+ public static extern Quaternion QuaternionLerp(Quaternion q1, Quaternion q2, float amount);
+
+ [DllImport(nativeLibName)]
+ public static extern Quaternion QuaternionNlerp(Quaternion q1, Quaternion q2, float amount);
+
+ [DllImport(nativeLibName)]
+ public static extern Quaternion QuaternionSlerp(Quaternion q1, Quaternion q2, float amount);
+
+ [DllImport(nativeLibName)]
+ public static extern Quaternion QuaternionFromVector3ToVector3(Vector3 from, Vector3 to);
+
+ [DllImport(nativeLibName)]
+ public static extern Quaternion QuaternionFromMatrix(Matrix mat);
+
+ [DllImport(nativeLibName)]
+ public static extern Matrix QuaternionToMatrix(Quaternion q);
+
+ [DllImport(nativeLibName)]
+ public static extern Quaternion QuaternionFromAxisAngle(Vector3 axis, float angle);
+
+ [DllImport(nativeLibName)]
+ public static extern void QuaternionToAxisAngle(Quaternion q, out Vector3 outAxis, float[] outAngle);
+
+ [DllImport(nativeLibName)]
+ public static extern Quaternion QuaternionFromEuler(float roll, float pitch, float yaw);
+
+ [DllImport(nativeLibName)]
+ public static extern Vector3 QuaternionToEuler(Quaternion q);
+
+ [DllImport(nativeLibName)]
+ public static extern Quaternion QuaternionTransform(Quaternion q, Matrix mat);
+
+ #endregion
+
+ }
+}
diff --git a/ExampleApplication/Rlgl.cs b/ExampleApplication/Rlgl.cs
new file mode 100644
index 0000000..94f2d16
--- /dev/null
+++ b/ExampleApplication/Rlgl.cs
@@ -0,0 +1,27 @@
+
+using System;
+using System.Runtime.InteropServices;
+
+namespace Raylib
+{
+ #region Raylib-cs Enums
+
+ #endregion
+
+ #region Raylib-cs Types
+
+
+ #endregion
+
+ public static partial class rl
+ {
+ #region Raylib-cs Variables
+
+ #endregion
+
+ #region Raylib-cs Functions
+
+ #endregion
+
+ }
+}
diff --git a/ExampleApplication/bin/Debug/ExampleApplication.exe b/ExampleApplication/bin/Debug/ExampleApplication.exe
index 77c36c1..bace953 100644
Binary files a/ExampleApplication/bin/Debug/ExampleApplication.exe and b/ExampleApplication/bin/Debug/ExampleApplication.exe differ
diff --git a/ExampleApplication/bin/Debug/raylib.dll b/ExampleApplication/bin/Debug/raylib.dll
index 6a9ef2b..b2c8d51 100644
Binary files a/ExampleApplication/bin/Debug/raylib.dll and b/ExampleApplication/bin/Debug/raylib.dll differ
diff --git a/ExampleApplication/core_basic_window.cs b/ExampleApplication/core_basic_window.cs
new file mode 100644
index 0000000..98e10cb
--- /dev/null
+++ b/ExampleApplication/core_basic_window.cs
@@ -0,0 +1,8 @@
+
+using Raylib;
+using static Raylib.rl;
+
+public partial class Examples
+{
+ /*******************************************************************************************
*
* raylib [core] example - Basic window
*
* Welcome to raylib!
*
* To test examples, just press F6 and execute raylib_compile_execute script
* Note that compiled executable is placed in the same folder as .c file
*
* You can find all basic examples on C:\raylib\raylib\examples folder or
* raylib official webpage: www.raylib.com
*
* Enjoy using raylib. :)
*
* This example has been created using raylib 1.0 (www.raylib.com)
* raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details)
*
* Copyright (c) 2013-2016 Ramon Santamaria (@raysan5)
*
********************************************************************************************/
public static int core_basic_window()
{
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 800;
int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "raylib [core] example - basic window");
SetTargetFPS(60);
//--------------------------------------------------------------------------------------
// Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key
{
// Update
//----------------------------------------------------------------------------------
// TODO: Update your variables here
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
ClearBackground(RAYWHITE);
DrawText("Congrats! You created your first window!", 190, 200, 20, MAROON);
EndDrawing();
//----------------------------------------------------------------------------------
}
// De-Initialization
//--------------------------------------------------------------------------------------
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
return 0;
}
+}
\ No newline at end of file
diff --git a/Generator/Generator.cs b/Generator/Generator.cs
index e88fcc1..4310a1f 100644
--- a/Generator/Generator.cs
+++ b/Generator/Generator.cs
@@ -1,69 +1,178 @@
-using CppSharp;
-using CppSharp.AST;
-using CppSharp.Generators;
-using System;
+using System;
using System.IO;
+using System.Text;
+using System.Text.RegularExpressions;
namespace Raylibcs
{
- ///
- /// Generates the bindings for raylib(WIP)
- /// ConsoleDriver.Run(new SampleLibrary());
- ///
- public class SampleLibrary : ILibrary
+ static class Generator
{
- void ILibrary.Setup(Driver driver)
- {
- var options = driver.Options;
- options.GeneratorKind = GeneratorKind.CSharp;
- options.OutputDir = Path.Combine(Environment.CurrentDirectory, "Raylib-cs");
- options.Verbose = true;
- // options.UseHeaderDirectories = true;
+ static string template = @"
+using System;
+using System.Runtime.InteropServices;
- var module = options.AddModule("raylib");
- module.IncludeDirs.Add("C:\\raylib\\raylib\\src");
- module.Headers.Add("raylib.h");
- // module.Headers.Add("rlgl.h");
- // module.Headers.Add("raymath.h");
- module.LibraryDirs.Add("C:\\raylib\\raylib\\projects\\VS2017\\x64\\Debug.DLL");
- module.Libraries.Add("raylib.lib");
- // module.OutputNamespace = "Raylib";
- // module.internalNamespace = "rl";
- }
+namespace Raylib
+{
+ public static partial class rl
+ {
+ #region Raylib-cs Variables
- void ILibrary.SetupPasses(Driver driver)
- {
- // driver.Context.TranslationUnitPasses.RenameDeclsUpperCase(RenameTargets.Any);
- // driver.AddTranslationUnitPass(new FunctionToInstanceMethodPass());
- // driver.AddTranslationUnitPass(new CheckOperatorsOverloadsPass());
- /*driver.Context.TranslationUnitPasses.RemovePrefix("FLAG_");
- driver.Context.TranslationUnitPasses.RemovePrefix("KEY_");
- driver.Context.TranslationUnitPasses.RemovePrefix("MOUSE_");
- driver.Context.TranslationUnitPasses.RemovePrefix("GAMEPAD_");
- driver.Context.TranslationUnitPasses.RemovePrefix("GAMEPAD_PS3_");
- driver.Context.TranslationUnitPasses.RemovePrefix("GAMEPAD_PS3_AXIS_");
- driver.Context.TranslationUnitPasses.RemovePrefix("GAMEPAD_XBOX_AXIS_");
- driver.Context.TranslationUnitPasses.RemovePrefix("GAMEPAD_ANDORID_");*/
- }
+ // Used by DllImport to load the native library.
+ private const string nativeLibName = 'raylib.dll';
- public void Preprocess(Driver driver, ASTContext ctx)
- {
- ctx.SetNameOfEnumWithMatchingItem("KEY_UNKOWN", "Key");
- ctx.GenerateEnumFromMacros("Flag", "FLAG_(.*)");
- ctx.GenerateEnumFromMacros("Key", "KEY_(.*)");
- ctx.GenerateEnumFromMacros("Mouse", "MOUSE_(.*)");
- ctx.GenerateEnumFromMacros("Gamepad", "GAMEPAD_(.*)");
- ctx.GenerateEnumFromMacros("GamepadPS3", "GAMEPAD_PS3_(.*)");
- ctx.GenerateEnumFromMacros("GamepadPS3Axis", "GAMEPAD_PS3_AXIS_(.*)");
- ctx.GenerateEnumFromMacros("GamepadXbox", "GAMEPAD_XBOX_(.*)");
- ctx.GenerateEnumFromMacros("GamepadXboxAxis", "GAMEPAD_XBOX_AXIS_(.*)");
- ctx.GenerateEnumFromMacros("GamepadAndroid", "GAMEPAD_ANDROID_(.*)");
- // TODO: MaxTouchPoints, MaxShaderLocations, MaxMateiralMaps
- }
+ #endregion
- public void Postprocess(Driver driver, ASTContext ctx)
- {
-
- }
+ #region Raylib-cs Functions
+
+{{ CONTENT }}
}
-}
\ No newline at end of file
+}
+";
+
+ static string exampleTemplate = @"
+using Raylib;
+using static Raylib.rl;
+
+public partial class Examples
+{
+{{ CONTENT }}
+}";
+
+ public static string InstallDirectory = "C:\\raylib\\raylib\\src\\";
+ public static string ExamplesDirectory = "C:\\raylib\\raylib\\examples\\";
+
+ // string extensions
+ private static string CapitalizeFirstCharacter(string format)
+ {
+ if (string.IsNullOrEmpty(format))
+ return string.Empty;
+ else
+ return char.ToUpper(format[0]) + format.ToLower().Substring(1);
+ }
+
+ public static string Indent(this string value, int size)
+ {
+ var strArray = value.Split('\n');
+ var sb = new StringBuilder();
+ foreach (var s in strArray)
+ sb.Append(new string(' ', size)).Append(s);
+ return sb.ToString();
+ }
+
+ public static string ReplaceEx(this string input, string pattern, string replacement)
+ {
+ input = input.Replace("\r", "\r\n");
+ foreach (Match match in Regex.Matches(input, pattern))
+ {
+ Console.WriteLine(match.Value);
+ }
+ //return input;
+
+ //var match = Regex.IsMatch(input, pattern);
+ return Regex.Replace(input, pattern, replacement);
+ }
+
+ ///
+ /// Proocess raylib file
+ ///
+ ///
+ ///
+ public static void Process(string filePath, string api)
+ {
+ var lines = File.ReadAllLines(InstallDirectory + filePath);
+ var output = "";
+
+ // convert functions to c#
+ foreach (string line in lines)
+ {
+ if (line.StartsWith(api))
+ {
+ output += "\t\t[DllImport(nativeLibName)]\n";
+ string newLine = line.Clone().ToString();
+ newLine = newLine.Replace(api, "public static extern");
+
+ // add converted function
+ output += "\t\t" + newLine + "\n\n";
+ }
+ }
+ output += "\t\t#endregion\n";
+
+ // convert syntax to c#
+ output = template.Replace("{{ CONTENT }}", output);
+
+ output = output.Replace("(void)", "()");
+ output = output.Replace("const char *", "string ");
+ output = output.Replace("const char * ", "string");
+ output = output.Replace("const char*", "string");
+ output = output.Replace("unsigned int", "uint");
+ output = output.Replace("unsigned char", "byte");
+ output = output.Replace("const void *", "byte[] ");
+ output = output.Replace("const float *", "float[] ");
+ output = output.Replace("const int *", "int[] ");
+ output = output.Replace("...", "params object[] args");
+ output = output.Replace("Music ", "IntPtr ");
+
+ Console.WriteLine(output);
+
+ filePath = Path.GetFileNameWithoutExtension(filePath);
+ filePath = CapitalizeFirstCharacter(filePath);
+
+ Directory.CreateDirectory("Raylib-cs");
+ File.WriteAllText("Raylib-cs/ " + filePath + ".cs", output);
+ }
+
+ ///
+ /// Process raylib examples
+ ///
+ public static void ProcessExamples()
+ {
+ // create directory in output folder with same layout as raylib examples
+
+ Directory.CreateDirectory("Examples");
+
+ var dirs = Directory.GetDirectories(ExamplesDirectory);
+ foreach (var dir in dirs)
+ {
+ var dirName = new DirectoryInfo(dir).Name;
+ var files = Directory.GetFiles(dir);
+ Directory.CreateDirectory("Examples\\" + dirName);
+
+ foreach (var file in files)
+ {
+ if (Path.GetExtension(file) != ".c")
+ continue;
+
+ var fileName = Path.GetFileNameWithoutExtension(file);
+ var text = File.ReadAllText(file);
+
+ // indent since example will be in Examples namespace
+ text = text.Indent(4);
+
+ // add template and fill in content
+ var output = exampleTemplate;
+ output = output.Replace("{{ CONTENT }}", text);
+ output = output.Replace("int main()", "public static int " + fileName + "()");
+ output = output.Replace("#include \"raylib.h\"", "");
+
+ // REGEX WHYYYYYYY!!!
+ //if (fileName == "core_2d_camera")
+ {
+ // remove #include lines
+
+ // #define x y -> private const int x = y;
+ output = output.ReplaceEx(@"#define (\w+).*?(\d+)", "private const int $1 = $2;");
+
+ // (Type){...} -> new Type(...);
+ // output = output.ReplaceEx(@"(\((\w+)\).*?{.*})", @"");
+ // output = output.ReplaceEx(@"\((\w +)\).*{ (.*)}", @"new $1($2)");
+ }
+
+ //output = output.ReplaceEx(@"#define (\w+) (\w+)", @"struct 1 public 2 public 3 public 4");
+
+ var path = "Examples\\" + dirName + "\\" + fileName + ".cs";
+ File.WriteAllText(path, output);
+ }
+ }
+ }
+ }
+}
diff --git a/Generator/Generator.csproj b/Generator/Generator.csproj
index a9b40b0..ed1eb63 100644
--- a/Generator/Generator.csproj
+++ b/Generator/Generator.csproj
@@ -4,15 +4,13 @@
Debug
AnyCPU
- {3B25D9D6-17A6-4A32-B9D1-C637002BD554}
+ {063F21F1-12D3-41C6-B598-125C725955B1}
Exe
- Raylibcs
- Raylibcs
+ Generator
+ Generator
v4.6.1
512
true
-
-
AnyCPU
@@ -33,74 +31,15 @@
prompt
4
-
- true
- bin\x64\Debug\
- DEBUG;TRACE
- full
- x64
- prompt
- MinimumRecommendedRules.ruleset
- true
- true
-
-
- bin\x64\Release\
- TRACE
- true
- pdbonly
- x64
- prompt
- MinimumRecommendedRules.ruleset
- true
-
-
- true
- bin\x86\Debug\
- DEBUG;TRACE
- full
- x86
- prompt
- MinimumRecommendedRules.ruleset
- true
- true
-
-
- bin\x86\Release\
- TRACE
- true
- pdbonly
- x86
- prompt
- MinimumRecommendedRules.ruleset
- true
-
-
- packages\CppSharp.0.8.20\lib\CppSharp.dll
-
-
- packages\CppSharp.0.8.20\lib\CppSharp.AST.dll
-
-
- packages\CppSharp.0.8.20\lib\CppSharp.Generator.dll
-
-
- packages\CppSharp.0.8.20\lib\CppSharp.Parser.dll
-
-
- packages\CppSharp.0.8.20\lib\CppSharp.Parser.CLI.dll
-
-
- packages\CppSharp.0.8.20\lib\CppSharp.Parser.CSharp.dll
-
-
- packages\CppSharp.0.8.20\lib\CppSharp.Runtime.dll
-
-
+
+
+
+
+
@@ -109,18 +48,6 @@
-
-
-
-
- This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Generator/Program.cs b/Generator/Program.cs
index 598a56f..4c03b90 100644
--- a/Generator/Program.cs
+++ b/Generator/Program.cs
@@ -1,16 +1,16 @@
using System;
-using CppSharp;
namespace Raylibcs
{
- static class Program
+ class Program
{
static void Main(string[] args)
{
- Console.WriteLine("Raylib-cs binding generator");
- ConsoleDriver.Run(new SampleLibrary());
+ Console.WriteLine("Raylib-cs generator");
+ // Generator.Process("raylib.h", "RLAPI");
+ Generator.ProcessExamples();
Console.WriteLine("Press enter to exit");
- Console.ReadLine();
+ Console.Read();
}
}
-}
\ No newline at end of file
+}
diff --git a/Generator/Properties/AssemblyInfo.cs b/Generator/Properties/AssemblyInfo.cs
index 6ff3e83..171731b 100644
--- a/Generator/Properties/AssemblyInfo.cs
+++ b/Generator/Properties/AssemblyInfo.cs
@@ -5,11 +5,11 @@ using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
-[assembly: AssemblyTitle("Raylibcs")]
+[assembly: AssemblyTitle("Generator")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
-[assembly: AssemblyProduct("Raylibcs")]
+[assembly: AssemblyProduct("Generator")]
[assembly: AssemblyCopyright("Copyright © 2018")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
@@ -20,7 +20,7 @@ using System.Runtime.InteropServices;
[assembly: ComVisible(false)]
// The following GUID is for the ID of the typelib if this project is exposed to COM
-[assembly: Guid("3b25d9d6-17a6-4a32-b9d1-c637002bd554")]
+[assembly: Guid("063f21f1-12d3-41c6-b598-125c725955b1")]
// Version information for an assembly consists of the following four values:
//
diff --git a/Generator/packages.config b/Generator/packages.config
deleted file mode 100644
index 8472b34..0000000
--- a/Generator/packages.config
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/README.md b/README.md
index 1cb2bb1..4926c2f 100644
--- a/README.md
+++ b/README.md
@@ -3,17 +3,40 @@
C# bindings for raylib 2.0, a simple and easy-to-use library to learn videogames programming (www.raylib.com)
## Installation
-- Download the repository
-- Run ExampleApplication.exe in ExampleApplication/bin/Debug/
+Tested on windows 10 64 bit.
+
+1. Download the repository
+2. Run ExampleApplication.exe in ExampleApplication/bin/Debug/
+
+```
+using Raylib;
+using static Raylib.rl;
+
+static class Program
+{
+ public static void Main()
+ {
+ InitWindow(640, 480, "Raylib-cs");
+
+ while (!WindowShouldClose())
+ {
+ BeginDraw();
+
+ ClearBackground(WHITE);
+ DrawText("Hello, world!", 12, 12, 20, BLACK);
+
+ EndDrawing();
+ }
+
+ CloseWindow();
+ }
+}
+```
# TODO:
-## Cppsharp generator:
-- Add utility constructors for types -> Vector3(x, y, z).
-- Add utility for cleaning up types so they are destroyed with the type.
-
-## General
-- Allow raylib to be used inside windows forms
-- Convert across raylib examples
+- Finish binding generator
+- Use raylib in windows forms
+- Bind physac, raygui, easings
## Contributing
If you have any ideas, feel free to open an issue and tell me what you think.
diff --git a/Raylib-cs.sln b/Raylib-cs.sln
index ff687c0..2925e0f 100644
--- a/Raylib-cs.sln
+++ b/Raylib-cs.sln
@@ -5,7 +5,7 @@ VisualStudioVersion = 15.0.27703.2035
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ExampleApplication", "ExampleApplication\ExampleApplication.csproj", "{A2B3BBC8-3D48-46DD-B3CF-263F554E4474}"
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Generator", "Generator\Generator.csproj", "{3B25D9D6-17A6-4A32-B9D1-C637002BD554}"
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Generator", "Generator\Generator.csproj", "{063F21F1-12D3-41C6-B598-125C725955B1}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -29,18 +29,18 @@ Global
{A2B3BBC8-3D48-46DD-B3CF-263F554E4474}.Release|x64.Build.0 = Release|x64
{A2B3BBC8-3D48-46DD-B3CF-263F554E4474}.Release|x86.ActiveCfg = Release|x86
{A2B3BBC8-3D48-46DD-B3CF-263F554E4474}.Release|x86.Build.0 = Release|x86
- {3B25D9D6-17A6-4A32-B9D1-C637002BD554}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {3B25D9D6-17A6-4A32-B9D1-C637002BD554}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {3B25D9D6-17A6-4A32-B9D1-C637002BD554}.Debug|x64.ActiveCfg = Debug|x64
- {3B25D9D6-17A6-4A32-B9D1-C637002BD554}.Debug|x64.Build.0 = Debug|x64
- {3B25D9D6-17A6-4A32-B9D1-C637002BD554}.Debug|x86.ActiveCfg = Debug|x86
- {3B25D9D6-17A6-4A32-B9D1-C637002BD554}.Debug|x86.Build.0 = Debug|x86
- {3B25D9D6-17A6-4A32-B9D1-C637002BD554}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {3B25D9D6-17A6-4A32-B9D1-C637002BD554}.Release|Any CPU.Build.0 = Release|Any CPU
- {3B25D9D6-17A6-4A32-B9D1-C637002BD554}.Release|x64.ActiveCfg = Release|x64
- {3B25D9D6-17A6-4A32-B9D1-C637002BD554}.Release|x64.Build.0 = Release|x64
- {3B25D9D6-17A6-4A32-B9D1-C637002BD554}.Release|x86.ActiveCfg = Release|x86
- {3B25D9D6-17A6-4A32-B9D1-C637002BD554}.Release|x86.Build.0 = Release|x86
+ {063F21F1-12D3-41C6-B598-125C725955B1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {063F21F1-12D3-41C6-B598-125C725955B1}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {063F21F1-12D3-41C6-B598-125C725955B1}.Debug|x64.ActiveCfg = Debug|Any CPU
+ {063F21F1-12D3-41C6-B598-125C725955B1}.Debug|x64.Build.0 = Debug|Any CPU
+ {063F21F1-12D3-41C6-B598-125C725955B1}.Debug|x86.ActiveCfg = Debug|Any CPU
+ {063F21F1-12D3-41C6-B598-125C725955B1}.Debug|x86.Build.0 = Debug|Any CPU
+ {063F21F1-12D3-41C6-B598-125C725955B1}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {063F21F1-12D3-41C6-B598-125C725955B1}.Release|Any CPU.Build.0 = Release|Any CPU
+ {063F21F1-12D3-41C6-B598-125C725955B1}.Release|x64.ActiveCfg = Release|Any CPU
+ {063F21F1-12D3-41C6-B598-125C725955B1}.Release|x64.Build.0 = Release|Any CPU
+ {063F21F1-12D3-41C6-B598-125C725955B1}.Release|x86.ActiveCfg = Release|Any CPU
+ {063F21F1-12D3-41C6-B598-125C725955B1}.Release|x86.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
diff --git a/header.png b/header.png
deleted file mode 100644
index c4b467d..0000000
Binary files a/header.png and /dev/null differ