From 6a02bb9d08447296094c6dee605d4ddcd801fa67 Mon Sep 17 00:00:00 2001 From: ChrisDill Date: Mon, 22 Oct 2018 16:10:20 +0100 Subject: [PATCH] Porting examples - Test.Common now used for Examples project. - Testing examples alot. --- .gitignore | 1 - Examples/Examples.projitems | 81 +++++++++ .../Examples.shproj | 2 +- Examples/RayForm.cs | 102 ----------- Examples/audio/audio_module_playing.cs | 8 +- Examples/audio/audio_music_stream.cs | 4 +- Examples/audio/audio_raw_stream.cs | 10 +- Examples/audio/audio_sound_loading.cs | 4 +- Examples/core/core_2d_camera.cs | 6 +- Examples/core/core_3d_camera_first_person.cs | 6 +- Examples/core/core_3d_camera_free.cs | 6 +- Examples/core/core_3d_mode.cs | 5 +- Examples/core/core_3d_picking.cs | 6 +- Examples/core/core_basic_window.cs | 2 +- Examples/core/core_color_select.cs | 4 +- Examples/core/core_drop_files.cs | 4 +- Examples/core/core_gestures_detection.cs | 7 +- Examples/core/core_input_gamepad.cs | 171 +++++++++++++++++- Examples/core/core_input_keys.cs | 8 +- Examples/core/core_input_mouse.cs | 8 +- Examples/core/core_mouse_wheel.cs | 12 +- Examples/core/core_random_values.cs | 5 +- Examples/core/core_storage_values.cs | 14 +- Examples/core/core_vr_simulator.cs | 7 +- Examples/core/core_world_screen.cs | 6 +- Examples/iqm_loader/models_iqm_animation.cs | 7 - Examples/models/models_billboard.cs | 6 +- Examples/models/models_box_collisions.cs | 4 +- Examples/models/models_cubicmap.cs | 6 +- Examples/models/models_geometric_shapes.cs | 5 +- Examples/models/models_heightmap.cs | 6 +- Examples/models/models_material_pbr.cs | 4 +- Examples/models/models_mesh_generation.cs | 6 +- Examples/models/models_mesh_picking.cs | 7 +- Examples/models/models_obj_loading.cs | 6 +- .../models/models_orthographic_projection.cs | 6 +- Examples/models/models_skybox.cs | 6 +- Examples/models/models_yaw_pitch_roll.cs | 7 +- Examples/others/audio_standalone.cs | 7 - Examples/others/bunnymark.cs | 11 +- Examples/others/resources/wabbit_alpha.png | Bin 0 -> 449 bytes Examples/others/rlgl_standalone.cs | 7 - Examples/others/standard_lighting.cs | 7 - Examples/physac/physics_demo.cs | 4 +- Examples/physac/physics_friction.cs | 4 +- Examples/physac/physics_movement.cs | 7 +- Examples/physac/physics_restitution.cs | 4 +- Examples/physac/physics_shatter.cs | 5 +- Examples/raylib-cs.ico | Bin 0 -> 142667 bytes .../resources/shaders/glsl100/swirl.fs | 6 +- Examples/shaders/shaders_custom_uniform.cs | 7 +- Examples/shaders/shaders_model_shader.cs | 7 +- Examples/shaders/shaders_postprocessing.cs | 7 +- Examples/shaders/shaders_shapes_textures.cs | 4 +- Examples/shapes/shapes_basic_shapes.cs | 4 +- Examples/shapes/shapes_colors_palette.cs | 4 +- Examples/shapes/shapes_lines_bezier.cs | 4 +- Examples/shapes/shapes_logo_raylib.cs | 4 +- Examples/shapes/shapes_logo_raylib_anim.cs | 5 +- Examples/text/resources/custom_alagard.png | Bin 37935 -> 45351 bytes .../text/resources/custom_jupiter_crash.png | Bin 23596 -> 29128 bytes Examples/text/resources/custom_mecha.png | Bin 26597 -> 32399 bytes Examples/text/resources/fonts/alagard.png | Bin 4424 -> 3626 bytes Examples/text/resources/fonts/alpha_beta.png | Bin 2442 -> 2424 bytes .../text/resources/fonts/jupiter_crash.png | Bin 3478 -> 2975 bytes Examples/text/resources/fonts/mecha.png | Bin 2399 -> 2355 bytes Examples/text/resources/fonts/pixantiqua.png | Bin 3003 -> 2739 bytes Examples/text/resources/fonts/pixelplay.png | Bin 2912 -> 2835 bytes Examples/text/resources/fonts/romulus.png | Bin 2932 -> 2702 bytes Examples/text/resources/fonts/setback.png | Bin 2539 -> 2517 bytes Examples/text/text_bmfont_ttf.cs | 4 +- Examples/text/text_bmfont_unordered.cs | 4 +- Examples/text/text_font_sdf.cs | 17 +- Examples/text/text_format_text.cs | 4 +- Examples/text/text_input_box.cs | 7 +- Examples/text/text_raylib_fonts.cs | 4 +- Examples/text/text_sprite_fonts.cs | 4 +- Examples/text/text_ttf_loading.cs | 5 +- Examples/text/text_writing_anim.cs | 4 +- .../resources/custom_jupiter_crash.png | Bin 23596 -> 29128 bytes .../textures/resources/ninepatch_button.png | Bin 0 -> 5923 bytes Examples/textures/resources/scarfy.png | Bin 33146 -> 10495 bytes Examples/textures/textures_image_drawing.cs | 4 +- .../textures/textures_image_generation.cs | 4 +- Examples/textures/textures_image_loading.cs | 4 +- .../textures/textures_image_processing.cs | 6 +- Examples/textures/textures_image_text.cs | 4 +- Examples/textures/textures_logo_raylib.cs | 4 +- .../textures/textures_particles_blending.cs | 10 +- Examples/textures/textures_raw_data.cs | 5 +- Examples/textures/textures_rectangle.cs | 4 +- Examples/textures/textures_srcrec_dstrec.cs | 4 +- Examples/textures/textures_to_image.cs | 4 +- Raylib-cs.sln | 32 +--- Test.Common/Test.Common.projitems | 14 -- Test.Common/Test.cs | 52 ------ Test.NetCore/Program.cs | 5 +- 97 files changed, 516 insertions(+), 366 deletions(-) create mode 100644 Examples/Examples.projitems rename Test.Common/Test.Common.shproj => Examples/Examples.shproj (94%) delete mode 100644 Examples/RayForm.cs delete mode 100644 Examples/iqm_loader/models_iqm_animation.cs delete mode 100644 Examples/others/audio_standalone.cs create mode 100644 Examples/others/resources/wabbit_alpha.png delete mode 100644 Examples/others/rlgl_standalone.cs delete mode 100644 Examples/others/standard_lighting.cs create mode 100644 Examples/raylib-cs.ico create mode 100644 Examples/textures/resources/ninepatch_button.png delete mode 100644 Test.Common/Test.Common.projitems delete mode 100644 Test.Common/Test.cs diff --git a/.gitignore b/.gitignore index e31b171..bae0d48 100644 --- a/.gitignore +++ b/.gitignore @@ -31,7 +31,6 @@ bld/ [Dd]ebug [Oo]bj/ [Ll]og/ -[Ee]xamples/ # Visual Studio 2015 cache/options directory .vs/ diff --git a/Examples/Examples.projitems b/Examples/Examples.projitems new file mode 100644 index 0000000..376dd80 --- /dev/null +++ b/Examples/Examples.projitems @@ -0,0 +1,81 @@ + + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + true + 36e54e2a-5899-4d4d-9d78-120db1b4c7b2 + + + Test.Common + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Test.Common/Test.Common.shproj b/Examples/Examples.shproj similarity index 94% rename from Test.Common/Test.Common.shproj rename to Examples/Examples.shproj index 0bc18d0..5949e1d 100644 --- a/Test.Common/Test.Common.shproj +++ b/Examples/Examples.shproj @@ -8,6 +8,6 @@ - + diff --git a/Examples/RayForm.cs b/Examples/RayForm.cs deleted file mode 100644 index 434d804..0000000 --- a/Examples/RayForm.cs +++ /dev/null @@ -1,102 +0,0 @@ -using System; -using System.Drawing; -using System.Runtime.InteropServices; -using System.Threading; -using System.Windows.Forms; -using static Raylib.Raylib; - -namespace Raylib -{ - public partial class RayForms : Form - { - private Panel gamePanel; - private bool windowAttached = false; - - #region WinAPI Entry Points - - [DllImport("user32.dll")] - private static extern IntPtr SetWindowPos(IntPtr handle, IntPtr handleAfter, int x, int y, int cx, int cy, uint flags); - [DllImport("user32.dll")] - private static extern IntPtr SetParent(IntPtr child, IntPtr newParent); - [DllImport("user32.dll")] - private static extern IntPtr ShowWindow(IntPtr handle, int command); - - #endregion - - public RayForms() - { - Size = new Size(1024, 700); - Text = "Rayforms"; - - gamePanel = new Panel(); - gamePanel.Size = new Size(800, 500); - gamePanel.Location = new Point(50, 50); - - Button button = new Button(); - button.Text = "Attach window"; - button.Size = new Size(150, 20); - button.Location = new Point( - (Size.Width / 2) - (button.Size.Width / 2), - gamePanel.Location.Y + gamePanel.Size.Height + 10 - ); - button.Click += new EventHandler(ClickedButton); - Controls.Add(button); - Controls.Add(gamePanel); - } - - private void ClickedButton(object sender, EventArgs e) - { - if (!windowAttached) - { - // new Thread(Test).Start(); - Test(); - } - } - - private void Test() - { - SetConfigFlags((int)Flag.WINDOW_UNDECORATED); - InitWindow(800, 480, "Rayforms test"); - SetTargetFPS(60); - - IntPtr winHandle = GetWindowHandle(); - Invoke(new Action(() => - { - SetWindowPos(winHandle, Handle, 0, 0, 0, 0, 0x0401 /*NOSIZE | SHOWWINDOW */); - SetParent(winHandle, gamePanel.Handle); - ShowWindow(winHandle, 1); - windowAttached = true; - })); - - // 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); - - DrawText(GetFrameTime().ToString(), 100, 10, 15, MAROON); - - DrawFPS(10, 10); - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - CloseWindow(); - } - - public static void Run() - { - Application.Run(new RayForms()); - } - } -} diff --git a/Examples/audio/audio_module_playing.cs b/Examples/audio/audio_module_playing.cs index f35fb95..7f0e842 100644 --- a/Examples/audio/audio_module_playing.cs +++ b/Examples/audio/audio_module_playing.cs @@ -1,7 +1,11 @@ using Raylib; using static Raylib.Raylib; -public partial class Examples +public partial class audio_module_playing { - /******************************************************************************************* * * 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) * ********************************************************************************************/ public const #define MAX_CIRCLES 64 struct CircleWave { public Vector2 position; public float radius; public float alpha; public float speed; public Color color; public } CircleWave; public static void Main() { // Initialization //-------------------------------------------------------------------------------------- int screenWidth = 800; int screenHeight = 450; 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[14] = { 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].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)]; } IntPtr 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(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; } + /******************************************************************************************* * * 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) * ********************************************************************************************/ public const int MAX_CIRCLES = 64; + + struct CircleWave { + public Vector2 position; public float radius; public float alpha; public float speed; public Color color; + } public static int Main() { // 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 = new Color[14] { 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].alpha = 0.0f; circles[i].radius = GetRandomValue(10, 40); circles[i].position.x = GetRandomValue((int)circles[i].radius, screenWidth - (int)circles[i].radius); circles[i].position.y = GetRandomValue((int)circles[i].radius, screenHeight - (int)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(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((int)circles[i].radius, screenWidth - (int)circles[i].radius); circles[i].position.y = GetRandomValue((int)circles[i].radius, screenHeight - (int)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; } } diff --git a/Examples/audio/audio_music_stream.cs b/Examples/audio/audio_music_stream.cs index 701b006..5c8b8cf 100644 --- a/Examples/audio/audio_music_stream.cs +++ b/Examples/audio/audio_music_stream.cs @@ -1,7 +1,7 @@ using Raylib; using static Raylib.Raylib; -public partial class Examples +public partial class audio_music_stream { - /******************************************************************************************* * * raylib [audio] example - IntPtr 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 void Main() { // Initialization //-------------------------------------------------------------------------------------- int screenWidth = 800; int screenHeight = 450; InitWindow(screenWidth, screenHeight, "raylib [audio] example - music playing (streaming)"); InitAudioDevice(); // Initialize audio device IntPtr 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((int)Key.SPACE)) { StopMusicStream(music); PlayMusicStream(music); } // Pause/Resume music playing if (IsKeyPressed((int)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; } + /******************************************************************************************* * * raylib [audio] example - IntPtr 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 Main() { // Initialization //-------------------------------------------------------------------------------------- int screenWidth = 800; int screenHeight = 450; InitWindow(screenWidth, screenHeight, "raylib [audio] example - music playing (streaming)"); InitAudioDevice(); // Initialize audio device var 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; } } diff --git a/Examples/audio/audio_raw_stream.cs b/Examples/audio/audio_raw_stream.cs index 2f30dfe..5d1f988 100644 --- a/Examples/audio/audio_raw_stream.cs +++ b/Examples/audio/audio_raw_stream.cs @@ -1,7 +1,11 @@ -using Raylib; +using System; +using Raylib; using static Raylib.Raylib; -public partial class Examples +public partial class audio_raw_stream { - /******************************************************************************************* * * 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) * ********************************************************************************************/ public const #define MAX_SAMPLES 22050 public const #define MAX_SAMPLES_PER_UPDATE 4096 public static void 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; } + /******************************************************************************************* * * 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) * ********************************************************************************************/ public const int MAX_SAMPLES = 22050; public const int MAX_SAMPLES_PER_UPDATE = 4096; public static 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 = new short[MAX_SAMPLES]; //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)(Math.Sin(((2*Math.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 = new Vector2( 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; } } diff --git a/Examples/audio/audio_sound_loading.cs b/Examples/audio/audio_sound_loading.cs index ea71524..dd53263 100644 --- a/Examples/audio/audio_sound_loading.cs +++ b/Examples/audio/audio_sound_loading.cs @@ -1,7 +1,7 @@ using Raylib; using static Raylib.Raylib; -public partial class Examples +public partial class audio_sound_loading { - /******************************************************************************************* * * 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 void 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((int)Key.SPACE)) PlaySound(fxWav); // Play WAV sound if (IsKeyPressed((int)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; } + /******************************************************************************************* * * 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 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; } } diff --git a/Examples/core/core_2d_camera.cs b/Examples/core/core_2d_camera.cs index e57f2fd..3a3bc4e 100644 --- a/Examples/core/core_2d_camera.cs +++ b/Examples/core/core_2d_camera.cs @@ -1,7 +1,9 @@ using Raylib; using static Raylib.Raylib; +//using static Raylib.Key; +//using static Raylib.Mouse; -public partial class Examples +public partial class core_2d_camera { - /******************************************************************************************* * * 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) * ********************************************************************************************/ public const #define MAX_BUILDINGS 100 public static void Main() { // Initialization //-------------------------------------------------------------------------------------- int screenWidth = 800; int screenHeight = 450; InitWindow(screenWidth, screenHeight, "raylib [core] example - 2d camera"); Rectangle player = { 400, 280, 40, 40 }; Rectangle[] buildings = new Rectangle[MAX_BUILDINGS]; Color[] buildColors = new Color[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] = new Color( GetRandomValue(200, 240), GetRandomValue(200, 240), GetRandomValue(200, 250), 255 );; } Camera2D camera; camera.target = new Vector2( player.x + 20, player.y + 20 );; camera.offset = new 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((int)Key.RIGHT)) { player.x += 2; // Player movement camera.offset.x -= 2; // Camera displacement with player movement } else if (IsKeyDown((int)Key.LEFT)) { player.x -= 2; // Player movement camera.offset.x += 2; // Camera displacement with player movement } // Camera target follows player camera.target = new Vector2( player.x + 20, player.y + 20 );; // Camera rotation controls if (IsKeyDown((int)Key.A)) camera.rotation--; else if (IsKeyDown((int)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((int)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; } + /******************************************************************************************* * * 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) * ********************************************************************************************/ public const int MAX_BUILDINGS = 100; public static int Main() { // Initialization //-------------------------------------------------------------------------------------- int screenWidth = 800; int screenHeight = 450; InitWindow(screenWidth, screenHeight, "raylib [core] example - 2d camera"); Rectangle player = new Rectangle( 400, 280, 40, 40 ); Rectangle[] buildings = new Rectangle[MAX_BUILDINGS]; Color[] buildColors = new Color[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 += (int)buildings[i].width; buildColors[i] = new Color( GetRandomValue(200, 240), GetRandomValue(200, 240), GetRandomValue(200, 250), 255 ); } Camera2D camera; camera.target = new Vector2( player.x + 20, player.y + 20 ); camera.offset = new 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; // Camera3D displacement with player movement } else if (IsKeyDown(KEY_LEFT)) { player.x -= 2; // Player movement camera.offset.x += 2; // Camera3D displacement with player movement } // Camera3D target follows player camera.target = new Vector2( player.x + 20, player.y + 20 ); // Camera3D 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; // Camera3D 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; // Camera3D reset (zoom and rotation) if (IsKeyPressed((int)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((int)camera.target.x, -500, 1, screenHeight*4, GREEN); DrawRectangle(-500, (int)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; } } diff --git a/Examples/core/core_3d_camera_first_person.cs b/Examples/core/core_3d_camera_first_person.cs index 8b51ac1..0cd362a 100644 --- a/Examples/core/core_3d_camera_first_person.cs +++ b/Examples/core/core_3d_camera_first_person.cs @@ -1,7 +1,9 @@ using Raylib; using static Raylib.Raylib; +using static Raylib.CameraType; +using static Raylib.CameraMode; -public partial class Examples +public partial class core_3d_camera_first_person { - /******************************************************************************************* * * 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) * ********************************************************************************************/ public const #define MAX_COLUMNS 20 public static void 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 = new Vector3( 4.0f, 2.0f, 4.0f );; camera.target = new Vector3( 0.0f, 1.8f, 0.0f );; camera.up = new Vector3( 0.0f, 1.0f, 0.0f );; camera.fovy = 60.0f; camera.type = CAMERA_PERSPECTIVE; // Generates some random columns float[] heights = new float[MAX_COLUMNS]; Vector3[] positions = new Vector3[MAX_COLUMNS]; Color[] colors = new Color[MAX_COLUMNS]; for (int i = 0; i < MAX_COLUMNS; i++) { heights[i] = (float)GetRandomValue(1, 12); positions[i] = new Vector3( GetRandomValue(-15, 15), heights[i]/2, GetRandomValue(-15, 15) );; colors[i] = new 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(new Vector3( 0.0f, 0.0f, 0.0f }, (Vector2){ 32.0f, 32.0f );, LIGHTGRAY); // Draw ground DrawCube(new Vector3( -16.0f, 2.5f, 0.0f );, 1.0f, 5.0f, 32.0f, BLUE); // Draw a blue wall DrawCube(new Vector3( 16.0f, 2.5f, 0.0f );, 1.0f, 5.0f, 32.0f, LIME); // Draw a green wall DrawCube(new 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; } + /******************************************************************************************* * * 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) * ********************************************************************************************/ public const int MAX_COLUMNS = 20; public static 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) Camera3D camera = new Camera3D(); camera.position = new Vector3( 4.0f, 2.0f, 4.0f ); camera.target = new Vector3( 0.0f, 1.8f, 0.0f ); camera.up = new Vector3( 0.0f, 1.0f, 0.0f ); camera.fovy = 60.0f; camera.type = (int)CAMERA_PERSPECTIVE; // Generates some random columns float[] heights = new float[MAX_COLUMNS]; Vector3[] positions = new Vector3[MAX_COLUMNS]; Color[] colors = new Color[MAX_COLUMNS]; for (int i = 0; i < MAX_COLUMNS; i++) { heights[i] = (float)GetRandomValue(1, 12); positions[i] = new Vector3( GetRandomValue(-15, 15), heights[i]/2, GetRandomValue(-15, 15) ); colors[i] = new Color( GetRandomValue(20, 255), GetRandomValue(10, 55), 30, 255 ); } SetCameraMode(camera, (int)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(ref camera); // Update camera //---------------------------------------------------------------------------------- // Draw //---------------------------------------------------------------------------------- BeginDrawing(); ClearBackground(RAYWHITE); BeginMode3D(camera); DrawPlane(new Vector3( 0.0f, 0.0f, 0.0f ), new Vector2( 32.0f, 32.0f ), LIGHTGRAY); // Draw ground DrawCube(new Vector3( -16.0f, 2.5f, 0.0f ), 1.0f, 5.0f, 32.0f, BLUE); // Draw a blue wall DrawCube(new Vector3( 16.0f, 2.5f, 0.0f ), 1.0f, 5.0f, 32.0f, LIME); // Draw a green wall DrawCube(new 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; } } diff --git a/Examples/core/core_3d_camera_free.cs b/Examples/core/core_3d_camera_free.cs index 1f4f1cc..a513b2a 100644 --- a/Examples/core/core_3d_camera_free.cs +++ b/Examples/core/core_3d_camera_free.cs @@ -1,7 +1,9 @@ using Raylib; using static Raylib.Raylib; +using static Raylib.CameraType; +using static Raylib.CameraMode; -public partial class Examples +public partial class core_3d_camera_free { - /******************************************************************************************* * * 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 void 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 = new Vector3( 10.0f, 10.0f, 10.0f );; // Camera position camera.target = new Vector3( 0.0f, 0.0f, 0.0f );; // Camera looking at point camera.up = new 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 = new 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; } + /******************************************************************************************* * * 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 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 = new Vector3( 10.0f, 10.0f, 10.0f ); // Camera3D position camera.target = new Vector3( 0.0f, 0.0f, 0.0f ); // Camera3D looking at point camera.up = new Vector3( 0.0f, 1.0f, 0.0f ); // Camera3D up vector (rotation towards target) camera.fovy = 45.0f; // Camera3D field-of-view Y camera.type = (int)CAMERA_PERSPECTIVE; // Camera3D mode type Vector3 cubePosition = new Vector3( 0.0f, 0.0f, 0.0f ); SetCameraMode(camera, (int)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(ref camera); // Update camera if (IsKeyDown('Z')) camera.target = new 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; } } diff --git a/Examples/core/core_3d_mode.cs b/Examples/core/core_3d_mode.cs index 24f882c..c65ec20 100644 --- a/Examples/core/core_3d_mode.cs +++ b/Examples/core/core_3d_mode.cs @@ -1,7 +1,8 @@ using Raylib; using static Raylib.Raylib; +using static Raylib.CameraType; -public partial class Examples +public partial class core_3d_mode { - /******************************************************************************************* * * 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 void 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 = new Vector3( 0.0f, 10.0f, 10.0f );; // Camera position camera.target = new Vector3( 0.0f, 0.0f, 0.0f );; // Camera looking at point camera.up = new 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; } + /******************************************************************************************* * * 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 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 = new Vector3( 0.0f, 10.0f, 10.0f ); // Camera3D position camera.target = new Vector3( 0.0f, 0.0f, 0.0f ); // Camera3D looking at point camera.up = new Vector3( 0.0f, 1.0f, 0.0f ); // Camera3D up vector (rotation towards target) camera.fovy = 45.0f; // Camera3D field-of-view Y camera.type = CAMERA_PERSPECTIVE; // Camera3D mode type Vector3 cubePosition = new Vector3( 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; } } diff --git a/Examples/core/core_3d_picking.cs b/Examples/core/core_3d_picking.cs index 0709b95..11267df 100644 --- a/Examples/core/core_3d_picking.cs +++ b/Examples/core/core_3d_picking.cs @@ -1,7 +1,9 @@ using Raylib; using static Raylib.Raylib; +using static Raylib.CameraType; +using static Raylib.CameraMode; -public partial class Examples +public partial class core_3d_picking { - /******************************************************************************************* * * 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 void 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 = new Vector3( 10.0f, 10.0f, 10.0f );; // Camera position camera.target = new Vector3( 0.0f, 0.0f, 0.0f );; // Camera looking at point camera.up = new 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((int)Mouse.LEFT_BUTTON)) { ray = GetMouseRay(GetMousePosition(), camera); // Check collision between ray and box collision = CheckCollisionRayBox(ray, new BoundingBox((Vector3){ cubePosition.x - cubeSize.x/2, cubePosition.y - cubeSize.y/2, cubePosition.z - cubeSize.z/2 );, new 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; } + /******************************************************************************************* * * 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 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 Camera3D camera; camera.position = new Vector3( 10.0f, 10.0f, 10.0f ); // Camera3D position camera.target = new Vector3( 0.0f, 0.0f, 0.0f ); // Camera3D looking at point camera.up = new Vector3( 0.0f, 1.0f, 0.0f ); // Camera3D up vector (rotation towards target) camera.fovy = 45.0f; // Camera3D field-of-view Y camera.type = (int)CAMERA_PERSPECTIVE; // Camera3D mode type Vector3 cubePosition = new Vector3( 0.0f, 1.0f, 0.0f ); Vector3 cubeSize = new Vector3( 2.0f, 2.0f, 2.0f ); Ray ray = new Ray(new Vector3(0.0f, 0.0f, 0.0f), Vector3.Zero); // Picking line ray bool collision = false; SetCameraMode(camera, (int)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(ref camera); // Update camera if (IsMouseButtonPressed(MOUSE_LEFT_BUTTON)) { ray = GetMouseRay(GetMousePosition(), camera); // Check collision between ray and box collision = CheckCollisionRayBox(ray, new BoundingBox(new Vector3( cubePosition.x - cubeSize.x/2, cubePosition.y - cubeSize.y/2, cubePosition.z - cubeSize.z/2 ), new 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, (int)(screenHeight * 0.1f), 30, GREEN); DrawFPS(10, 10); EndDrawing(); //---------------------------------------------------------------------------------- } // De-Initialization //-------------------------------------------------------------------------------------- CloseWindow(); // Close window and OpenGL context //-------------------------------------------------------------------------------------- return 0; } } diff --git a/Examples/core/core_basic_window.cs b/Examples/core/core_basic_window.cs index f46086c..08c34f3 100644 --- a/Examples/core/core_basic_window.cs +++ b/Examples/core/core_basic_window.cs @@ -1 +1 @@ -using Raylib; using static Raylib.Raylib; 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 void Main() { // 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 //-------------------------------------------------------------------------------------- } } \ No newline at end of file +using Raylib; using static Raylib.Raylib; public partial class core_basic_window { /******************************************************************************************* * * 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 Main() { // 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/Examples/core/core_color_select.cs b/Examples/core/core_color_select.cs index fc6e2ed..f926470 100644 --- a/Examples/core/core_color_select.cs +++ b/Examples/core/core_color_select.cs @@ -1,7 +1,7 @@ using Raylib; using static Raylib.Raylib; -public partial class Examples +public partial class core_color_select { - /******************************************************************************************* * * 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 void 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 = new Rectangle[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((int)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; } + /******************************************************************************************* * * 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 Main() { // Initialization //-------------------------------------------------------------------------------------- int screenWidth = 800; int screenHeight = 450; InitWindow(screenWidth, screenHeight, "raylib [core] example - color selection (collision detection)"); Color[] colors = new Color[21] { DARKGRAY, MAROON, ORANGE, DARKGREEN, DARKBLUE, DARKPURPLE, DARKBROWN, GRAY, RED, GOLD, LIME, BLUE, VIOLET, BROWN, LIGHTGRAY, PINK, YELLOW, GREEN, SKYBLUE, PURPLE, BEIGE }; Rectangle[] colorsRecs = new Rectangle[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 = new bool[21]; // 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((int)colorsRecs[i].x, (int)colorsRecs[i].y, 100, 10, RAYWHITE); // Square top rectangle DrawRectangle((int)colorsRecs[i].x, (int)colorsRecs[i].y, 10, 100, RAYWHITE); // Square left rectangle DrawRectangle((int)colorsRecs[i].x + 90, (int)colorsRecs[i].y, 10, 100, RAYWHITE); // Square right rectangle DrawRectangle((int)colorsRecs[i].x, (int)colorsRecs[i].y + 90, 100, 10, RAYWHITE); // Square bottom rectangle } } EndDrawing(); //---------------------------------------------------------------------------------- } // De-Initialization //-------------------------------------------------------------------------------------- CloseWindow(); // Close window and OpenGL context //-------------------------------------------------------------------------------------- return 0; } } diff --git a/Examples/core/core_drop_files.cs b/Examples/core/core_drop_files.cs index 1d92e10..abe12a1 100644 --- a/Examples/core/core_drop_files.cs +++ b/Examples/core/core_drop_files.cs @@ -1,7 +1,7 @@ using Raylib; using static Raylib.Raylib; -public partial class Examples +public partial class core_drop_files { - /******************************************************************************************* * * 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 void 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; } + /******************************************************************************************* * * raylib [core] example - Windows drop files * * This example only works on platforms that support drag ref 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 Main() { // Initialization //-------------------------------------------------------------------------------------- int screenWidth = 800; int screenHeight = 450; InitWindow(screenWidth, screenHeight, "raylib [core] example - drop files"); int count = 0; string[] droppedFiles = { }; SetTargetFPS(60); //-------------------------------------------------------------------------------------- // Main game loop while (!WindowShouldClose()) // Detect window close button or ESC key { // Update //---------------------------------------------------------------------------------- if (IsFileDropped()) { droppedFiles = GetDroppedFiles(ref 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; } } diff --git a/Examples/core/core_gestures_detection.cs b/Examples/core/core_gestures_detection.cs index aaff242..670ed6a 100644 --- a/Examples/core/core_gestures_detection.cs +++ b/Examples/core/core_gestures_detection.cs @@ -1,7 +1,10 @@ using Raylib; using static Raylib.Raylib; +using static Raylib.Gestures; -public partial class Examples +public partial class core_gestures_detection { - /******************************************************************************************* * * 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) * ********************************************************************************************/ public const #define MAX_GESTURE_STRINGS 20 public static void 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 = new char[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 //-------------------------------------------------------------------------------------- } + /******************************************************************************************* * * 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) * ********************************************************************************************/ public const int MAX_GESTURE_STRINGS = 20; public static int Main() { // Initialization //-------------------------------------------------------------------------------------- int screenWidth = 800; int screenHeight = 450; InitWindow(screenWidth, screenHeight, "raylib [core] example - gestures detection"); Vector2 touchPosition = new Vector2( 0, 0 ); Rectangle touchArea = new Rectangle( 220, 10, screenWidth - 230, screenHeight - 20 ); int gesturesCount = 0; string[] gestureStrings = new string[MAX_GESTURE_STRINGS]; int currentGesture = (int)GESTURE_NONE; int lastGesture = (int)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 != (int)GESTURE_NONE)) { if (currentGesture != lastGesture) { // Store gesture string switch (currentGesture) { case (int)GESTURE_TAP: gestureStrings[gesturesCount] = "GESTURE TAP"; break; case (int)GESTURE_DOUBLETAP: gestureStrings[gesturesCount] = "GESTURE DOUBLETAP"; break; case (int)GESTURE_HOLD: gestureStrings[gesturesCount] = "GESTURE HOLD"; break; case (int)GESTURE_DRAG: gestureStrings[gesturesCount] = "GESTURE DRAG"; break; case (int)GESTURE_SWIPE_RIGHT: gestureStrings[gesturesCount] = "GESTURE SWIPE RIGHT"; break; case (int)GESTURE_SWIPE_LEFT: gestureStrings[gesturesCount] = "GESTURE SWIPE LEFT"; break; case (int)GESTURE_SWIPE_UP: gestureStrings[gesturesCount] = "GESTURE SWIPE UP"; break; case (int)GESTURE_SWIPE_DOWN: gestureStrings[gesturesCount] = "GESTURE SWIPE DOWN"; break; case (int)GESTURE_PINCH_IN: gestureStrings[gesturesCount] = "GESTURE PINCH IN"; break; case (int)GESTURE_PINCH_OUT: 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++) gestureStrings[i] = " "; 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 != (int)GESTURE_NONE) DrawCircleV(touchPosition, 30, MAROON); EndDrawing(); //---------------------------------------------------------------------------------- } // De-Initialization //-------------------------------------------------------------------------------------- CloseWindow(); // Close window and OpenGL context + //-------------------------------------------------------------------------------------- + return 0; } } diff --git a/Examples/core/core_input_gamepad.cs b/Examples/core/core_input_gamepad.cs index e9ddeb6..d07ade7 100644 --- a/Examples/core/core_input_gamepad.cs +++ b/Examples/core/core_input_gamepad.cs @@ -1,7 +1,172 @@ using Raylib; using static Raylib.Raylib; +// using static Raylib.Gamepad; -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 #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" public static void Main() { // Initialization //-------------------------------------------------------------------------------------- int screenWidth = 800; int screenHeight = 450; SetConfigFlags((int)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(new 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; } +public partial class core_input_gamepad +{ + /******************************************************************************************* * * 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 + //public const string XBOX360_NAME_ID = "Microsoft; //public const string PS3_NAME_ID = "PLAYSTATION(R)3; public const string XBOX360_NAME_ID = "Xbox"; public const string PS3_NAME_ID = "PLAYSTATION(R)3"; + public static 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 + (int)(GetGamepadAxisMovement(GAMEPAD_PLAYER1, GAMEPAD_XBOX_AXIS_LEFT_X) * 20), + 152 - (int)(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 + (int)(GetGamepadAxisMovement(GAMEPAD_PLAYER1, GAMEPAD_XBOX_AXIS_RIGHT_X) * 20), + 237 - (int)(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, (int)(((1.0f + GetGamepadAxisMovement(GAMEPAD_PLAYER1, GAMEPAD_XBOX_AXIS_LT)) / 2.0f) * 70), RED); + DrawRectangle(604, 30, 15, (int)(((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(new Vector2(436, 168), new Vector2(436, 185), new 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 + (int)(GetGamepadAxisMovement(GAMEPAD_PLAYER1, GAMEPAD_PS3_AXIS_LEFT_X) * 20), + 255 + (int)(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 + (int)(GetGamepadAxisMovement(GAMEPAD_PLAYER1, GAMEPAD_PS3_AXIS_RIGHT_X) * 20), + 255 + (int)(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, (int)(((1.0f - GetGamepadAxisMovement(GAMEPAD_PLAYER1, GAMEPAD_PS3_AXIS_L2)) / 2.0f) * 70), RED); + DrawRectangle(611, 48, 15, (int)(((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; } } diff --git a/Examples/core/core_input_keys.cs b/Examples/core/core_input_keys.cs index 77c9506..8352f36 100644 --- a/Examples/core/core_input_keys.cs +++ b/Examples/core/core_input_keys.cs @@ -1 +1,7 @@ -using Raylib; using static Raylib.Raylib; 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 void Main() { // Initialization //-------------------------------------------------------------------------------------- int screenWidth = 800; int screenHeight = 450; InitWindow(screenWidth, screenHeight, "raylib [core] example - keyboard input"); Vector2 ballPosition = new Vector2( (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((int)Key.RIGHT)) ballPosition.x += 2.0f; if (IsKeyDown((int)Key.LEFT)) ballPosition.x -= 2.0f; if (IsKeyDown((int)Key.UP)) ballPosition.y -= 2.0f; if (IsKeyDown((int)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 //-------------------------------------------------------------------------------------- } } \ No newline at end of file +using Raylib; +using static Raylib.Raylib; + +public partial class core_input_keys +{ + /******************************************************************************************* * * 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 Main() { // Initialization //-------------------------------------------------------------------------------------- int screenWidth = 800; int screenHeight = 450; InitWindow(screenWidth, screenHeight, "raylib [core] example - keyboard input"); Vector2 ballPosition = new Vector2( (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; } +} diff --git a/Examples/core/core_input_mouse.cs b/Examples/core/core_input_mouse.cs index dedb8af..be8c047 100644 --- a/Examples/core/core_input_mouse.cs +++ b/Examples/core/core_input_mouse.cs @@ -1 +1,7 @@ -using Raylib; using static Raylib.Raylib; 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 void Main() { // Initialization //-------------------------------------------------------------------------------------- int screenWidth = 800; int screenHeight = 450; InitWindow(screenWidth, screenHeight, "raylib [core] example - mouse input"); Vector2 ballPosition = new Vector2( -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((int)Mouse.LEFT_BUTTON)) ballColor = MAROON; else if (IsMouseButtonPressed((int)Mouse.MIDDLE_BUTTON)) ballColor = LIME; else if (IsMouseButtonPressed((int)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 //-------------------------------------------------------------------------------------- } } \ No newline at end of file +using Raylib; +using static Raylib.Raylib; + +public partial class core_input_mouse +{ + /******************************************************************************************* * * 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 Main() { // Initialization //-------------------------------------------------------------------------------------- int screenWidth = 800; int screenHeight = 450; InitWindow(screenWidth, screenHeight, "raylib [core] example - mouse input"); Vector2 ballPosition = new Vector2( -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; } +} diff --git a/Examples/core/core_mouse_wheel.cs b/Examples/core/core_mouse_wheel.cs index 162eaab..2a35557 100644 --- a/Examples/core/core_mouse_wheel.cs +++ b/Examples/core/core_mouse_wheel.cs @@ -1 +1,11 @@ -using Raylib; using static Raylib.Raylib; 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 void 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 //-------------------------------------------------------------------------------------- } } \ No newline at end of file +using Raylib; +using static Raylib.Raylib; + +public partial class core_mouse_wheel +{ + /******************************************************************************************* * * 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 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); + DrawText($"Box position Y: {boxPositionY}", 10, 40, 20, LIGHTGRAY); + + EndDrawing(); //---------------------------------------------------------------------------------- } // De-Initialization //-------------------------------------------------------------------------------------- CloseWindow(); // Close window and OpenGL context //-------------------------------------------------------------------------------------- return 0; } +} diff --git a/Examples/core/core_random_values.cs b/Examples/core/core_random_values.cs index 57bd0d2..080a1e9 100644 --- a/Examples/core/core_random_values.cs +++ b/Examples/core/core_random_values.cs @@ -1,7 +1,8 @@ using Raylib; using static Raylib.Raylib; -public partial class Examples +public partial class core_random_values { - /******************************************************************************************* * * 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 void 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; } + /******************************************************************************************* * * 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 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); + DrawText($"{randValue}", 360, 180, 80, LIGHTGRAY); EndDrawing(); //---------------------------------------------------------------------------------- } // De-Initialization //-------------------------------------------------------------------------------------- CloseWindow(); // Close window and OpenGL context //-------------------------------------------------------------------------------------- return 0; } } diff --git a/Examples/core/core_storage_values.cs b/Examples/core/core_storage_values.cs index e4ebb80..589aa20 100644 --- a/Examples/core/core_storage_values.cs +++ b/Examples/core/core_storage_values.cs @@ -1,7 +1,17 @@ using Raylib; using static Raylib.Raylib; -public partial class Examples +public partial class core_storage_values { - /******************************************************************************************* * * 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 void 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((int)Key.R)) { score = GetRandomValue(1000, 2000); hiscore = GetRandomValue(2000, 4000); } if (IsKeyPressed((int)Key.ENTER)) { StorageSaveValue(STORAGE_SCORE, score); StorageSaveValue(STORAGE_HISCORE, hiscore); } else if (IsKeyPressed((int)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; } + /******************************************************************************************* * * 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 enum StorageData { STORAGE_SCORE = 0, STORAGE_HISCORE }; public static 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((int)StorageData.STORAGE_SCORE, score); StorageSaveValue((int)StorageData.STORAGE_HISCORE, hiscore); } else if (IsKeyPressed(KEY_SPACE)) { // NOTE: If requested position could not be found, value 0 is returned score = StorageLoadValue((int)StorageData.STORAGE_SCORE); hiscore = StorageLoadValue((int)StorageData.STORAGE_HISCORE); } framesCounter++; //---------------------------------------------------------------------------------- // Draw //---------------------------------------------------------------------------------- BeginDrawing(); ClearBackground(RAYWHITE); + + // DrawText(FormatText("SCORE: %i", score), 280, 130, 40, MAROON); + DrawText($"SCORE: {score}", 280, 130, 40, MAROON); + // DrawText(FormatText("HI-SCORE: %i", hiscore), 210, 200, 50, BLACK); + DrawText($"HI-SCORE: {hiscore}", 210, 200, 50, BLACK); + + // DrawText(FormatText("frames: %i", framesCounter), 10, 10, 20, LIME); + DrawText($"frames: {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; } } diff --git a/Examples/core/core_vr_simulator.cs b/Examples/core/core_vr_simulator.cs index 4d6947b..0c1398a 100644 --- a/Examples/core/core_vr_simulator.cs +++ b/Examples/core/core_vr_simulator.cs @@ -1,7 +1,10 @@ using Raylib; using static Raylib.Raylib; +using static Raylib.CameraType; +using static Raylib.CameraMode; +using static Raylib.VrDeviceType; -public partial class Examples +public partial class core_vr_simulator { - /******************************************************************************************* * * 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 void 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 = new Vector3( 5.0f, 2.0f, 5.0f );; // Camera position camera.target = new Vector3( 0.0f, 2.0f, 0.0f );; // Camera looking at point camera.up = new 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((int)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; } + /******************************************************************************************* * * 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 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) // fails? InitVrSimulator(GetVrDeviceInfo((int)HMD_OCULUS_RIFT_CV1)); // Define the camera to look into our 3d world Camera3D camera; camera.position = new Vector3( 5.0f, 2.0f, 5.0f ); // Camera3D position camera.target = new Vector3( 0.0f, 2.0f, 0.0f ); // Camera3D looking at point camera.up = new Vector3( 0.0f, 1.0f, 0.0f ); // Camera3D up vector (rotation towards target) camera.fovy = 60.0f; // Camera3D field-of-view Y camera.type = (int)CAMERA_PERSPECTIVE; // Camera3D type Vector3 cubePosition = new Vector3( 0.0f, 0.0f, 0.0f ); SetCameraMode(camera, (int)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(ref 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; } } diff --git a/Examples/core/core_world_screen.cs b/Examples/core/core_world_screen.cs index 9ad38a7..b4b583a 100644 --- a/Examples/core/core_world_screen.cs +++ b/Examples/core/core_world_screen.cs @@ -1,7 +1,9 @@ using Raylib; using static Raylib.Raylib; +using static Raylib.CameraType; +using static Raylib.CameraMode; -public partial class Examples +public partial class core_world_screen { - /******************************************************************************************* * * 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 void 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 = new Vector3( 10.0f, 10.0f, 10.0f );; camera.target = new Vector3( 0.0f, 0.0f, 0.0f );; camera.up = new 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(new 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; } + /******************************************************************************************* * * 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 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 = new Camera3D(); camera.position = new Vector3( 10.0f, 10.0f, 10.0f ); camera.target = new Vector3( 0.0f, 0.0f, 0.0f ); camera.up = new Vector3( 0.0f, 1.0f, 0.0f ); camera.fovy = 45.0f; camera.type = (int)CAMERA_PERSPECTIVE; Vector3 cubePosition = new Vector3( 0.0f, 0.0f, 0.0f ); Vector2 cubeScreenPosition; SetCameraMode(camera, (int)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(ref camera); // Update camera // Calculate cube screen space position (with a little offset to be in top) cubeScreenPosition = GetWorldToScreen(new 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", (int)cubeScreenPosition.x - MeasureText("Enemy: 100 / 100", 20) / 2, (int)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; } } diff --git a/Examples/iqm_loader/models_iqm_animation.cs b/Examples/iqm_loader/models_iqm_animation.cs deleted file mode 100644 index 2b46a3c..0000000 --- a/Examples/iqm_loader/models_iqm_animation.cs +++ /dev/null @@ -1,7 +0,0 @@ -using Raylib; -using static Raylib.Raylib; - -public partial class Examples -{ - /******************************************************************************************* * * raylib [models] example - Load IQM 3d model with animations and play them * * This example has been created using raylib 2.0 (www.raylib.com) * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) * * Copyright (c) 2018 @culacant and @raysan5 * ********************************************************************************************/ public const #define RIQM_IMPLEMENTATION public static int models_iqm_animation() { // Initialization //-------------------------------------------------------------------------------------- int screenWidth = 800; int screenHeight = 450; InitWindow(screenWidth, screenHeight, "raylib [models] example - iqm animation"); // Define the camera to look into our 3d world Camera camera = { 0 }; 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 // Load the animated model mesh and basic data AnimatedModel model = LoadAnimatedModel("resources/guy.iqm"); // Load model texture and set material // NOTE: There is only 1 mesh and 1 material (both at index 0), thats what the 2 0's are model = AnimatedModelAddTexture(model, "resources/guytex.png"); // REPLACE! model = SetMeshMaterial(model, 0, 0); // REPLACE! // Load animation data Animation anim = LoadAnimationFromIQM("resources/guyanim.iqm"); int animFrameCounter = 0; SetCameraMode(camera, CAMERA_FREE); // Set 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); // Play animation when spacebar is held down if (IsKeyDown(KEY_SPACE)) { animFrameCounter++; AnimateModel(model, anim, animFrameCounter); // Animate the model with animation data and frame } //---------------------------------------------------------------------------------- // Draw //---------------------------------------------------------------------------------- BeginDrawing(); ClearBackground(RAYWHITE); BeginMode3D(camera); DrawAnimatedModel(model, Vector3Zero(), 1.0f, WHITE); // Draw animated model DrawGrid(10, 1.0f); // Draw a grid EndMode3D(); DrawText("PRESS SPACE to PLAY IQM MODEL ANIMATION", 10, 10, 20, MAROON); DrawText("(c) Guy IQM 3D model by @culacant", screenWidth - 200, screenHeight - 20, 10, GRAY); EndDrawing(); //---------------------------------------------------------------------------------- } // De-Initialization //-------------------------------------------------------------------------------------- UnloadAnimation(anim); // Unload animation data UnloadAnimatedModel(model); // Unload animated model CloseWindow(); // Close window and OpenGL context //-------------------------------------------------------------------------------------- return 0; } -} diff --git a/Examples/models/models_billboard.cs b/Examples/models/models_billboard.cs index b38c9f5..44cab88 100644 --- a/Examples/models/models_billboard.cs +++ b/Examples/models/models_billboard.cs @@ -1,7 +1,9 @@ using Raylib; using static Raylib.Raylib; +using static Raylib.CameraType; +using static Raylib.CameraMode; -public partial class Examples +public partial class models_billboard { - /******************************************************************************************* * * 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 void 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 = new Vector3( 5.0f, 4.0f, 5.0f );; camera.target = new Vector3( 0.0f, 2.0f, 0.0f );; camera.up = new 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; } + /******************************************************************************************* * * 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 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 Camera3D camera = new Camera3D(); camera.position = new Vector3( 5.0f, 4.0f, 5.0f ); camera.target = new Vector3( 0.0f, 2.0f, 0.0f ); camera.up = new 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 = new Vector3( 0.0f, 2.0f, 0.0f ); // Position where draw billboard SetCameraMode(camera, (int)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(ref 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; } } diff --git a/Examples/models/models_box_collisions.cs b/Examples/models/models_box_collisions.cs index 16f99be..8ae2674 100644 --- a/Examples/models/models_box_collisions.cs +++ b/Examples/models/models_box_collisions.cs @@ -1,7 +1,7 @@ using Raylib; using static Raylib.Raylib; -public partial class Examples +public partial class models_box_collisions { - /******************************************************************************************* * * 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 void 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((int)Key.RIGHT)) playerPosition.x += 0.2f; else if (IsKeyDown((int)Key.LEFT)) playerPosition.x -= 0.2f; else if (IsKeyDown((int)Key.DOWN)) playerPosition.z += 0.2f; else if (IsKeyDown((int)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; } + /******************************************************************************************* * * 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 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 Camera3D camera = new Camera3D(new Vector3( 0.0f, 10.0f, 10.0f ), new Vector3( 0.0f, 0.0f, 0.0f ), new Vector3( 0.0f, 1.0f, 0.0f ), 45.0f, 0 ); Vector3 playerPosition = new Vector3( 0.0f, 1.0f, 2.0f ); Vector3 playerSize = new Vector3( 1.0f, 2.0f, 1.0f ); Color playerColor = GREEN; Vector3 enemyBoxPos = new Vector3( -4.0f, 1.0f, 0.0f ); Vector3 enemyBoxSize = new Vector3( 2.0f, 2.0f, 2.0f ); Vector3 enemySpherePos = new Vector3( 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( new BoundingBox(new Vector3( playerPosition.x - playerSize.x/2, playerPosition.y - playerSize.y/2, playerPosition.z - playerSize.z/2 ), new Vector3( playerPosition.x + playerSize.x/2, playerPosition.y + playerSize.y/2, playerPosition.z + playerSize.z/2 )), new BoundingBox(new Vector3( enemyBoxPos.x - enemyBoxSize.x/2, enemyBoxPos.y - enemyBoxSize.y/2, enemyBoxPos.z - enemyBoxSize.z/2 ), new 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( new BoundingBox(new Vector3( playerPosition.x - playerSize.x/2, playerPosition.y - playerSize.y/2, playerPosition.z - playerSize.z/2 ), new 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; } } diff --git a/Examples/models/models_cubicmap.cs b/Examples/models/models_cubicmap.cs index 29b5b5a..6c4110d 100644 --- a/Examples/models/models_cubicmap.cs +++ b/Examples/models/models_cubicmap.cs @@ -1,7 +1,9 @@ using Raylib; using static Raylib.Raylib; +using static Raylib.CameraMode; +using static Raylib.TexmapIndex; -public partial class Examples +public partial class models_cubicmap { - /******************************************************************************************* * * 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 void 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, new 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, new 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; } + /******************************************************************************************* * * 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 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 Camera3D camera = new Camera3D(new Vector3( 16.0f, 14.0f, 16.0f ), new Vector3( 0.0f, 0.0f, 0.0f ), new Vector3( 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, new 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[(int)MAP_ALBEDO].texture = texture; // Set map diffuse texture Vector3 mapPosition = new Vector3( -16.0f, 0.0f, -8.0f ); // Set model position UnloadImage(image); // Unload cubesmap image from RAM, already uploaded to VRAM SetCameraMode(camera, (int)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(ref camera); // Update camera //---------------------------------------------------------------------------------- // Draw //---------------------------------------------------------------------------------- BeginDrawing(); ClearBackground(RAYWHITE); BeginMode3D(camera); DrawModel(model, mapPosition, 1.0f, WHITE); EndMode3D(); DrawTextureEx(cubicmap, new 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/Examples/models/models_geometric_shapes.cs b/Examples/models/models_geometric_shapes.cs index b25fa4c..6c57bf3 100644 --- a/Examples/models/models_geometric_shapes.cs +++ b/Examples/models/models_geometric_shapes.cs @@ -1,7 +1,8 @@ using Raylib; using static Raylib.Raylib; +using static Raylib.CameraType; -public partial class Examples +public partial class models_geometric_shapes { - /******************************************************************************************* * * 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 void 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 = new Vector3( 0.0f, 10.0f, 10.0f );; camera.target = new Vector3( 0.0f, 0.0f, 0.0f );; camera.up = new 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(new Vector3(-4.0f, 0.0f, 2.0f);, 2.0f, 5.0f, 2.0f, RED); DrawCubeWires(new Vector3(-4.0f, 0.0f, 2.0f);, 2.0f, 5.0f, 2.0f, GOLD); DrawCubeWires(new Vector3(-4.0f, 0.0f, -2.0f);, 3.0f, 6.0f, 2.0f, MAROON); DrawSphere(new Vector3(-1.0f, 0.0f, -2.0f);, 1.0f, GREEN); DrawSphereWires(new Vector3(1.0f, 0.0f, 2.0f);, 2.0f, 16, 16, LIME); DrawCylinder(new Vector3(4.0f, 0.0f, -2.0f);, 1.0f, 2.0f, 3.0f, 4, SKYBLUE); DrawCylinderWires(new Vector3(4.0f, 0.0f, -2.0f);, 1.0f, 2.0f, 3.0f, 4, DARKBLUE); DrawCylinderWires(new Vector3(4.5f, -1.0f, 2.0f);, 1.0f, 1.0f, 2.0f, 6, BROWN); DrawCylinder(new Vector3(1.0f, 0.0f, -4.0f);, 0.0f, 1.5f, 3.0f, 8, GOLD); DrawCylinderWires(new 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; } + /******************************************************************************************* * * 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 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 Camera3D camera = new Camera3D(); camera.position = new Vector3( 0.0f, 10.0f, 10.0f ); camera.target = new Vector3( 0.0f, 0.0f, 0.0f ); camera.up = new 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(new Vector3(-4.0f, 0.0f, 2.0f), 2.0f, 5.0f, 2.0f, RED); DrawCubeWires(new Vector3(-4.0f, 0.0f, 2.0f), 2.0f, 5.0f, 2.0f, GOLD); DrawCubeWires(new Vector3(-4.0f, 0.0f, -2.0f), 3.0f, 6.0f, 2.0f, MAROON); DrawSphere(new Vector3(-1.0f, 0.0f, -2.0f), 1.0f, GREEN); DrawSphereWires(new Vector3(1.0f, 0.0f, 2.0f), 2.0f, 16, 16, LIME); DrawCylinder(new Vector3(4.0f, 0.0f, -2.0f), 1.0f, 2.0f, 3.0f, 4, SKYBLUE); DrawCylinderWires(new Vector3(4.0f, 0.0f, -2.0f), 1.0f, 2.0f, 3.0f, 4, DARKBLUE); DrawCylinderWires(new Vector3(4.5f, -1.0f, 2.0f), 1.0f, 1.0f, 2.0f, 6, BROWN); DrawCylinder(new Vector3(1.0f, 0.0f, -4.0f), 0.0f, 1.5f, 3.0f, 8, GOLD); DrawCylinderWires(new 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; } } diff --git a/Examples/models/models_heightmap.cs b/Examples/models/models_heightmap.cs index 7bae543..c208dfd 100644 --- a/Examples/models/models_heightmap.cs +++ b/Examples/models/models_heightmap.cs @@ -1,7 +1,9 @@ using Raylib; using static Raylib.Raylib; +using static Raylib.CameraMode; +using static Raylib.TexmapIndex; -public partial class Examples +public partial class models_heightmap { - /******************************************************************************************* * * 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 void 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, new 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; } + /******************************************************************************************* * * 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 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 Camera3D camera = new Camera3D(new Vector3( 18.0f, 16.0f, 18.0f ), new Vector3( 0.0f, 0.0f, 0.0f ), new Vector3( 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, new Vector3( 16, 8, 16 )); // Generate heightmap mesh (RAM and VRAM) Model model = LoadModelFromMesh(mesh); // Load model from generated mesh model.material.maps[(int)MAP_ALBEDO].texture = texture; // Set map diffuse texture Vector3 mapPosition = new Vector3( -8.0f, 0.0f, -8.0f ); // Define model position UnloadImage(image); // Unload heightmap image from RAM, already uploaded to VRAM SetCameraMode(camera, (int)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(ref 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; } } diff --git a/Examples/models/models_material_pbr.cs b/Examples/models/models_material_pbr.cs index 0689316..db6bf2e 100644 --- a/Examples/models/models_material_pbr.cs +++ b/Examples/models/models_material_pbr.cs @@ -1,7 +1,7 @@ using Raylib; using static Raylib.Raylib; -public partial class Examples +public partial class models_material_pbr { - /******************************************************************************************* * * 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) * ********************************************************************************************/ public const #define RLIGHTS_IMPLEMENTATION public const #define CUBEMAP_SIZE 512 // Cubemap texture size public const #define IRRADIANCE_SIZE 32 // Irradiance texture size public const #define PREFILTERED_SIZE 256 // Prefiltered HDR environment texture size public const #define BRDF_SIZE 512 // BRDF LUT texture size // PBR material loading static Material LoadMaterialPBR(Color albedo, float metalness, float roughness); public static void Main() { // Initialization //-------------------------------------------------------------------------------------- int screenWidth = 800; int screenHeight = 450; SetConfigFlags((int)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(new 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, new 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, new 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, new 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, new 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 = new 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; } + /******************************************************************************************* * * 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) * ********************************************************************************************/ public const int CUBEMAP_SIZE = 512; public const int IRRADIANCE_SIZE = 32; public const int PREFILTERED_SIZE = 256; public const int BRDF_SIZE = 512; // PBR material loading /*static Material LoadMaterialPBR(Color albedo, float metalness, float roughness); public static 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 Camera3D camera = new Camera3D(new Vector3( 4.0f, 4.0f, 4.0f ), new Vector3( 0.0f, 0.5f, 0.0f ), new Vector3( 0.0f, 1.0f, 0.0f ), 45.0f, 0 ); // Load model and PBR material Model model = LoadModel("resources/pbr/trooper.obj"); MeshTangents(ref model.mesh); model.material = LoadMaterialPBR(new 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, new 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, new 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, new 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, new 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(ref amera); // 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 = new Material( 0 }; // NOTE: All maps textures are set to { 0 ) public const string PATH_PBR_VS = "resources/shaders/pbr.vs"; public const string PATH_PBR_FS = "resources/shaders/pbr.fs"; 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 public const string PATH_CUBEMAP_VS = "resources/shaders/cubemap.vs"; public const string PATH_CUBEMAP_FS = "resources/shaders/cubemap.fs"; public const string PATH_SKYBOX_VS = "resources/shaders/skybox.vs"; public const string PATH_IRRADIANCE_FS = "resources/shaders/irradiance.fs"; public const string PATH_PREFILTER_FS = "resources/shaders/prefilter.fs"; public const string PATH_BRDF_VS = "resources/shaders/brdf.vs"; public const string PATH_BRDF_FS = "resources/shaders/brdf.fs"; 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 = new 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/Examples/models/models_mesh_generation.cs b/Examples/models/models_mesh_generation.cs index 3f07304..4a4dc63 100644 --- a/Examples/models/models_mesh_generation.cs +++ b/Examples/models/models_mesh_generation.cs @@ -1,7 +1,9 @@ using Raylib; using static Raylib.Raylib; +using static Raylib.CameraMode; +using static Raylib.TexmapIndex; -public partial class Examples +public partial class models_mesh_generation { - /******************************************************************************************* * * 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) * ********************************************************************************************/ public const #define NUM_MODELS 7 // We generate 7 parametric 3d shapes public static void 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 = new Model[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((int)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; } + /******************************************************************************************* * * 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) * ********************************************************************************************/ public const int NUM_MODELS = 7; public static int Main() { // Initialization //-------------------------------------------------------------------------------------- int screenWidth = 800; int screenHeight = 450; InitWindow(screenWidth, screenHeight, "raylib [models] example - mesh generation"); // We generate a isChecked image for texturing Image isChecked = GenImageChecked(2, 2, 1, 1, RED, GREEN); Texture2D texture = LoadTextureFromImage(isChecked); UnloadImage(isChecked); Model[] models = new Model[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 isChecked texture as default diffuse component for all models material for (int i = 0; i < NUM_MODELS; i++) models[i].material.maps[(int)MAP_ALBEDO].texture = texture; // Define the camera to look into our 3d world Camera3D camera = new Camera3D(new Vector3( 5.0f, 5.0f, 5.0f ), new Vector3( 0.0f, 0.0f, 0.0f ), new Vector3( 0.0f, 1.0f, 0.0f ), 45.0f, 0 ); // Model drawing position Vector3 position = new Vector3( 0.0f, 0.0f, 0.0f ); int currentModel = 0; SetCameraMode(camera, (int)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(ref 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.0f); 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; } } diff --git a/Examples/models/models_mesh_picking.cs b/Examples/models/models_mesh_picking.cs index 1c0def2..bdd58a4 100644 --- a/Examples/models/models_mesh_picking.cs +++ b/Examples/models/models_mesh_picking.cs @@ -1,7 +1,10 @@ using Raylib; using static Raylib.Raylib; +using static Raylib.CameraType; +using static Raylib.CameraMode; +using static Raylib.TexmapIndex; -public partial class Examples +public partial class models_mesh_picking { - /******************************************************************************************* * * 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) * ********************************************************************************************/ public const #define FLT_MAX 3.40282347E+38F // Maximum value of a float, defined in public static void 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 = new Vector3( 20.0f, 20.0f, 20.0f );; // Camera position camera.target = new Vector3( 0.0f, 8.0f, 0.0f );; // Camera looking at point camera.up = new 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 = new Vector3( -25.0, 0.5, 0.0 );; Vector3 tb = new Vector3( -4.0, 2.5, 1.0 );; Vector3 tc = new 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; } + /******************************************************************************************* * * 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) * ********************************************************************************************/ public const float FLT_MAX = 3.40282347E+38F; public static 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 Camera3D camera; camera.position = new Vector3( 20.0f, 20.0f, 20.0f ); // Camera3D position camera.target = new Vector3( 0.0f, 8.0f, 0.0f ); // Camera3D looking at point camera.up = new Vector3( 0.0f, 1.6f, 0.0f ); // Camera3D up vector (rotation towards target) camera.fovy = 45.0f; // Camera3D field-of-view Y camera.type = CAMERA_PERSPECTIVE; // Camera3D 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[(int)MAP_ALBEDO].texture = texture; // Set model diffuse texture Vector3 towerPos = new Vector3( 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 = new Vector3( -25.0f, 0.5f, 0.0f ); Vector3 tb = new Vector3( -4.0f, 2.5f, 1.0f ); Vector3 tc = new Vector3( -8.0f, 6.5f, 0.0f ); Vector3 bary = new Vector3( 0.0f, 0.0f, 0.0f ); SetCameraMode(camera, (int)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(ref camera); // Update camera // Display information about closest hit RayHitInfo nearestHit = new RayHitInfo(); string 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, ref 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.3f, 0.3f, 0.3f, cursorColor); DrawCubeWires(nearestHit.position, 0.3f, 0.3f, 0.3f, 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; } } diff --git a/Examples/models/models_obj_loading.cs b/Examples/models/models_obj_loading.cs index a5aac57..bc5c85a 100644 --- a/Examples/models/models_obj_loading.cs +++ b/Examples/models/models_obj_loading.cs @@ -1,7 +1,9 @@ using Raylib; using static Raylib.Raylib; +using static Raylib.CameraType; +using static Raylib.TexmapIndex; -public partial class Examples +public partial class models_obj_loading { - /******************************************************************************************* * * 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 void 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 = new Vector3( 8.0f, 8.0f, 8.0f );; // Camera position camera.target = new Vector3( 0.0f, 2.5f, 0.0f );; // Camera looking at point camera.up = new 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; } + /******************************************************************************************* * * 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 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 Camera3D camera = new Camera3D(); camera.position = new Vector3( 8.0f, 8.0f, 8.0f ); // Camera3D position camera.target = new Vector3( 0.0f, 2.5f, 0.0f ); // Camera3D looking at point camera.up = new Vector3( 0.0f, 1.0f, 0.0f ); // Camera3D up vector (rotation towards target) camera.fovy = 45.0f; // Camera3D field-of-view Y camera.type = CAMERA_PERSPECTIVE; // Camera3D 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[(int)MAP_ALBEDO].texture = texture; // Set map diffuse texture Vector3 position = new Vector3( 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; } } diff --git a/Examples/models/models_orthographic_projection.cs b/Examples/models/models_orthographic_projection.cs index 74ee184..84eeee0 100644 --- a/Examples/models/models_orthographic_projection.cs +++ b/Examples/models/models_orthographic_projection.cs @@ -1,7 +1,9 @@ using Raylib; using static Raylib.Raylib; +using static Raylib.CameraType; +using static Raylib.CameraMode; -public partial class Examples +public partial class models_orthographic_projection { - /******************************************************************************************* * * 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) * ********************************************************************************************/ public const #define FOVY_PERSPECTIVE 45.0f public const #define WIDTH_ORTHOGRAPHIC 10.0f public static void 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((int)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(new Vector3(-4.0f, 0.0f, 2.0f);, 2.0f, 5.0f, 2.0f, RED); DrawCubeWires(new Vector3(-4.0f, 0.0f, 2.0f);, 2.0f, 5.0f, 2.0f, GOLD); DrawCubeWires(new Vector3(-4.0f, 0.0f, -2.0f);, 3.0f, 6.0f, 2.0f, MAROON); DrawSphere(new Vector3(-1.0f, 0.0f, -2.0f);, 1.0f, GREEN); DrawSphereWires(new Vector3(1.0f, 0.0f, 2.0f);, 2.0f, 16, 16, LIME); DrawCylinder(new Vector3(4.0f, 0.0f, -2.0f);, 1.0f, 2.0f, 3.0f, 4, SKYBLUE); DrawCylinderWires(new Vector3(4.0f, 0.0f, -2.0f);, 1.0f, 2.0f, 3.0f, 4, DARKBLUE); DrawCylinderWires(new Vector3(4.5f, -1.0f, 2.0f);, 1.0f, 1.0f, 2.0f, 6, BROWN); DrawCylinder(new Vector3(1.0f, 0.0f, -4.0f);, 0.0f, 1.5f, 3.0f, 8, GOLD); DrawCylinderWires(new 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; } + /******************************************************************************************* * * 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 ref Ramon Santamaria (@raysan5) * ********************************************************************************************/ public const float FOVY_PERSPECTIVE = 45.0f; public const float WIDTH_ORTHOGRAPHIC = 10.0f; public static 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 Camera3D camera = new Camera3D(new Vector3( 0.0f, 10.0f, 10.0f ), new Vector3( 0.0f, 0.0f, 0.0f ), new Vector3( 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(new Vector3(-4.0f, 0.0f, 2.0f), 2.0f, 5.0f, 2.0f, RED); DrawCubeWires(new Vector3(-4.0f, 0.0f, 2.0f), 2.0f, 5.0f, 2.0f, GOLD); DrawCubeWires(new Vector3(-4.0f, 0.0f, -2.0f), 3.0f, 6.0f, 2.0f, MAROON); DrawSphere(new Vector3(-1.0f, 0.0f, -2.0f), 1.0f, GREEN); DrawSphereWires(new Vector3(1.0f, 0.0f, 2.0f), 2.0f, 16, 16, LIME); DrawCylinder(new Vector3(4.0f, 0.0f, -2.0f), 1.0f, 2.0f, 3.0f, 4, SKYBLUE); DrawCylinderWires(new Vector3(4.0f, 0.0f, -2.0f), 1.0f, 2.0f, 3.0f, 4, DARKBLUE); DrawCylinderWires(new Vector3(4.5f, -1.0f, 2.0f), 1.0f, 1.0f, 2.0f, 6, BROWN); DrawCylinder(new Vector3(1.0f, 0.0f, -4.0f), 0.0f, 1.5f, 3.0f, 8, GOLD); DrawCylinderWires(new 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/Examples/models/models_skybox.cs b/Examples/models/models_skybox.cs index 09d7ab8..8c677aa 100644 --- a/Examples/models/models_skybox.cs +++ b/Examples/models/models_skybox.cs @@ -1,7 +1,9 @@ using Raylib; using static Raylib.Raylib; +using static Raylib.CameraMode; +using static Raylib.TexmapIndex; -public partial class Examples +public partial class models_skybox { - /******************************************************************************************* * * 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 void 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, new 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; } + /******************************************************************************************* * * 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 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 Camera3D camera = new Camera3D(new Vector3( 1.0f, 1.0f, 1.0f ), new Vector3( 0.0f, 0.0f, 0.0f ), new Vector3( 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"), new int[]{ (int)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"), new int[]{ 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[(int)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, (int)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(ref camera); // Update camera //---------------------------------------------------------------------------------- // Draw //---------------------------------------------------------------------------------- BeginDrawing(); ClearBackground(RAYWHITE); BeginMode3D(camera); DrawModel(skybox, new 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/Examples/models/models_yaw_pitch_roll.cs b/Examples/models/models_yaw_pitch_roll.cs index 49758a3..531fdfe 100644 --- a/Examples/models/models_yaw_pitch_roll.cs +++ b/Examples/models/models_yaw_pitch_roll.cs @@ -1,7 +1,10 @@ using Raylib; using static Raylib.Raylib; +using static Raylib.CameraType; +using static Raylib.TexmapIndex; +using static Raylib.BlendMode; -public partial class Examples +public partial class models_yaw_pitch_roll { - /******************************************************************************************* * * 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) * ********************************************************************************************/ // Draw angle gauge controls void DrawAngleGauge(Texture2D angleGauge, int x, int y, float angle, char title[], Color color); //---------------------------------------------------------------------------------- // Main entry point //---------------------------------------------------------------------------------- public static void 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 = new Vector3( 0.0f, 60.0f, -120.0f );;// Camera position perspective camera.target = new Vector3( 0.0f, 12.0f, 0.0f );; // Camera looking at point camera.up = new 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((int)Key.LEFT)) roll += 1.0f; else if (IsKeyDown((int)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((int)Key.S)) yaw += 1.0f; else if (IsKeyDown((int)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((int)Key.DOWN)) pitch += 0.6f; else if (IsKeyDown((int)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, new Rectangle( 0, 0, texBackground.width, texBackground.height );, new Rectangle( centerX, centerY, texBackground.width*scaleFactor, texBackground.height*scaleFactor);, new Vector2( texBackground.width/2*scaleFactor, texBackground.height/2*scaleFactor + pitchOffset*scaleFactor );, roll, WHITE); DrawTexturePro(texPitch, new Rectangle( 0, 0, texPitch.width, texPitch.height );, new Rectangle( centerX, centerY, texPitch.width*scaleFactor, texPitch.height*scaleFactor );, new Vector2( texPitch.width/2*scaleFactor, texPitch.height/2*scaleFactor + pitchOffset*scaleFactor );, roll, WHITE); DrawTexturePro(texPlane, new Rectangle( 0, 0, texPlane.width, texPlane.height );, new Rectangle( centerX, centerY, texPlane.width*scaleFactor, texPlane.height*scaleFactor );, new 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, new 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: (int)Key.UP / (int)Key.DOWN", 40, 370, 10, DARKGRAY); DrawText("Roll controlled with: (int)Key.LEFT / (int)Key.RIGHT", 40, 390, 10, DARKGRAY); DrawText("Yaw controlled with: (int)Key.A / (int)Key.S", 40, 410, 10, DARKGRAY); // Draw framebuffer texture DrawTextureRec(framebuffer.texture, new Rectangle( 0, 0, framebuffer.texture.width, -framebuffer.texture.height );, new 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); } + /******************************************************************************************* * * 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) * ********************************************************************************************/ // Draw angle gauge controls //void DrawAngleGauge(Texture2D angleGauge, int x, int y, float angle, char title[], Color color); //---------------------------------------------------------------------------------- // Main entry point //---------------------------------------------------------------------------------- public static 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[(int)MAP_ALBEDO].texture = LoadTexture("resources/plane_diffuse.png"); // Set map diffuse texture GenTextureMipmaps(ref model.material.maps[(int)MAP_ALBEDO].texture); Camera3D camera = new Camera3D(); camera.position = new Vector3( 0.0f, 60.0f, -120.0f );// Camera3D position perspective camera.target = new Vector3( 0.0f, 12.0f, 0.0f ); // Camera3D looking at point camera.up = new Vector3( 0.0f, 1.0f, 0.0f ); // Camera3D up vector (rotation towards target) camera.fovy = 30.0f; // Camera3D field-of-view Y camera.type = CAMERA_PERSPECTIVE; // Camera3D 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 = (int)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((int)BLEND_ALPHA); DrawTexturePro(texBackground, new Rectangle( 0, 0, texBackground.width, texBackground.height ), new Rectangle( centerX, centerY, texBackground.width*scaleFactor, texBackground.height*scaleFactor), new Vector2( texBackground.width/2*scaleFactor, texBackground.height/2*scaleFactor + pitchOffset*scaleFactor ), roll, WHITE); DrawTexturePro(texPitch, new Rectangle( 0, 0, texPitch.width, texPitch.height ), new Rectangle( centerX, centerY, texPitch.width*scaleFactor, texPitch.height*scaleFactor ), new Vector2( texPitch.width/2*scaleFactor, texPitch.height/2*scaleFactor + pitchOffset*scaleFactor ), roll, WHITE); DrawTexturePro(texPlane, new Rectangle( 0, 0, texPlane.width, texPlane.height ), new Rectangle( centerX, centerY, texPlane.width*scaleFactor, texPlane.height*scaleFactor ), new 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, new 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, new Rectangle( 0, 0, framebuffer.texture.width, -framebuffer.texture.height ), new 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 static void DrawAngleGauge(Texture2D angleGauge, int x, int y, float angle, string title, Color color) { Rectangle srcRec = new Rectangle( 0, 0, angleGauge.width, angleGauge.height ); Rectangle dstRec = new Rectangle( x, y, angleGauge.width, angleGauge.height ); Vector2 origin = new Vector2( 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/Examples/others/audio_standalone.cs b/Examples/others/audio_standalone.cs deleted file mode 100644 index 664a8d9..0000000 --- a/Examples/others/audio_standalone.cs +++ /dev/null @@ -1,7 +0,0 @@ -using Raylib; -using static Raylib.Raylib; - -public partial class Examples -{ - /******************************************************************************************* * * raylib [audio] example - Using audio module as standalone module * * NOTE: This example does not require any graphic device, it can run directly on console. * * DEPENDENCIES: * mini_al.h - Audio device management lib (http://kcat.strangesoft.net/openal.html) * stb_vorbis.c - Ogg audio files loading (http://www.nothings.org/stb_vorbis/) * jar_xm.h - XM module file loading * jar_mod.h - MOD audio file loading * dr_flac.h - FLAC audio file loading * * COMPILATION: * gcc -c ..\..\src\external\mini_al.c -Wall -I. * gcc -o audio_standalone.exe audio_standalone.c ..\..\src\audio.c ..\..\src\external\stb_vorbis.c mini_al.o / * -I..\..\src -I..\..\src\external -L. -Wall -std=c99 / * -DAUDIO_STANDALONE -DSUPPORT_FILEFORMAT_WAV -DSUPPORT_FILEFORMAT_OGG * * LICENSE: zlib/libpng * * This example is licensed under an unmodified zlib/libpng license, which is an OSI-certified, * BSD-like license that allows static linking with closed source software: * * Copyright (c) 2014-2018 Ramon Santamaria (@raysan5) * * 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. * ********************************************************************************************/ #include // Windows only, no stardard library #else // Provide kbhit() function in non-Windows platforms // Check if a key has been pressed static int kbhit(void) { struct termios oldt, newt; int ch; int oldf; tcgetattr(STDIN_FILENO, &oldt); newt = oldt; newt.c_lflag &= ~(ICANON | ECHO); tcsetattr(STDIN_FILENO, TCSANOW, &newt); oldf = fcntl(STDIN_FILENO, F_GETFL, 0); fcntl(STDIN_FILENO, F_SETFL, oldf | O_NONBLOCK); ch = getchar(); tcsetattr(STDIN_FILENO, TCSANOW, &oldt); fcntl(STDIN_FILENO, F_SETFL, oldf); if (ch != EOF) { ungetc(ch, stdin); return 1; } return 0; } // Get pressed character static char getch() { return getchar(); } public const #define (int)Key.ESCAPE 27 public static void Main() { // Initialization //-------------------------------------------------------------------------------------- static unsigned char key; InitAudioDevice(); Sound fxWav = LoadSound("resources/audio/weird.wav"); // Load WAV audio file Sound fxOgg = LoadSound("resources/audio/tanatana.ogg"); // Load OGG audio file IntPtr music = LoadMusicStream("resources/audio/guitar_noodling.ogg"); PlayMusicStream(music); printf("\nPress s or d to play sounds...\n"); //-------------------------------------------------------------------------------------- // Main loop while (key != (int)Key.ESCAPE) { if (kbhit()) key = getch(); if (key == 's') { PlaySound(fxWav); key = 0; } if (key == 'd') { PlaySound(fxOgg); key = 0; } UpdateMusicStream(music); } // De-Initialization //-------------------------------------------------------------------------------------- UnloadSound(fxWav); // Unload sound data UnloadSound(fxOgg); // Unload sound data UnloadMusicStream(music); // Unload music stream data CloseAudioDevice(); //-------------------------------------------------------------------------------------- return 0; } -} diff --git a/Examples/others/bunnymark.cs b/Examples/others/bunnymark.cs index 4fa6cce..7152bf6 100644 --- a/Examples/others/bunnymark.cs +++ b/Examples/others/bunnymark.cs @@ -1,7 +1,14 @@ using Raylib; using static Raylib.Raylib; -public partial class Examples +public partial class bunnymark { - /******************************************************************************************* * * raylib example - Bunnymark * * 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) 2014 Ramon Santamaria (@raysan5) * ********************************************************************************************/ public const #define MAX_BUNNIES 100000 // 100K bunnies struct Bunny { public Vector2 position; public Vector2 speed; public Color color; public } Bunny; public static int bunnymark() { // Initialization //-------------------------------------------------------------------------------------- int screenWidth = 1280; int screenHeight = 960; InitWindow(screenWidth, screenHeight, "raylib example - Bunnymark"); Texture2D texBunny = LoadTexture("resources/wabbit_alpha.png"); Bunny *bunnies = (Bunny *)malloc(MAX_BUNNIES*sizeof(Bunny)); // Bunnies array int bunniesCount = 0; // Bunnies counter SetTargetFPS(60); //-------------------------------------------------------------------------------------- // Main game loop while (!WindowShouldClose()) // Detect window close button or ESC key { // Update //---------------------------------------------------------------------------------- if (IsMouseButtonDown(MOUSE_LEFT_BUTTON)) { // Create more bunnies for (int i = 0; i < 100; i++) { bunnies[bunniesCount].position = GetMousePosition(); bunnies[bunniesCount].speed.x = (float)GetRandomValue(250, 500)/60.0f; bunnies[bunniesCount].speed.y = (float)(GetRandomValue(250, 500) - 500)/60.0f; bunniesCount++; } } // Update bunnies for (int i = 0; i < bunniesCount; i++) { bunnies[i].position.x += bunnies[i].speed.x; bunnies[i].position.y += bunnies[i].speed.y; if ((bunnies[i].position.x > GetScreenWidth()) || (bunnies[i].position.x < 0)) bunnies[i].speed.x *= -1; if ((bunnies[i].position.y > GetScreenHeight()) || (bunnies[i].position.y < 0)) bunnies[i].speed.y *= -1; } //---------------------------------------------------------------------------------- // Draw //---------------------------------------------------------------------------------- BeginDrawing(); ClearBackground(RAYWHITE); for (int i = 0; i < bunniesCount; i++) { // NOTE: When internal QUADS batch limit is reached, a draw call is launched and // batching buffer starts being filled again; before launching the draw call, // updated vertex data from internal buffer is send to GPU... it seems it generates // a stall and consequently a frame drop, limiting number of bunnies drawn at 60 fps DrawTexture(texBunny, bunnies[i].position.x, bunnies[i].position.y, RAYWHITE); } DrawRectangle(0, 0, screenWidth, 40, LIGHTGRAY); DrawText("raylib bunnymark", 10, 10, 20, DARKGRAY); DrawText(FormatText("bunnies: %i", bunniesCount), 400, 10, 20, RED); DrawFPS(260, 10); EndDrawing(); //---------------------------------------------------------------------------------- } // De-Initialization //-------------------------------------------------------------------------------------- free(bunnies); CloseWindow(); // Close window and OpenGL context //-------------------------------------------------------------------------------------- return 0; } + /******************************************************************************************* * * raylib example - Bunnymark * * 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) 2014 Ramon Santamaria (@raysan5) * ********************************************************************************************/ public const int MAX_BUNNIES = 100000; + + struct Bunny { + public Vector2 position; public Vector2 speed; public Color color; } public static int Main() { + // Initialization + //-------------------------------------------------------------------------------------- + int screenWidth = 1280; int screenHeight = 960; InitWindow(screenWidth, screenHeight, "raylib example - Bunnymark"); Texture2D texBunny = LoadTexture("resources/wabbit_alpha.png"); Bunny[] bunnies = new Bunny[MAX_BUNNIES]; // Bunnies array int bunniesCount = 0; // Bunnies counter SetTargetFPS(60); //-------------------------------------------------------------------------------------- // Main game loop while (!WindowShouldClose()) // Detect window close button or ESC key { // Update //---------------------------------------------------------------------------------- if (IsMouseButtonDown(MOUSE_LEFT_BUTTON)) { // Create more bunnies for (int i = 0; i < 100; i++) { bunnies[bunniesCount].position = GetMousePosition(); bunnies[bunniesCount].speed.x = (float)GetRandomValue(250, 500)/60.0f; bunnies[bunniesCount].speed.y = (float)(GetRandomValue(250, 500) - 500)/60.0f; bunniesCount++; } } // Update bunnies for (int i = 0; i < bunniesCount; i++) { bunnies[i].position.x += bunnies[i].speed.x; bunnies[i].position.y += bunnies[i].speed.y; if ((bunnies[i].position.x > GetScreenWidth()) || (bunnies[i].position.x < 0)) bunnies[i].speed.x *= -1; if ((bunnies[i].position.y > GetScreenHeight()) || (bunnies[i].position.y < 0)) bunnies[i].speed.y *= -1; } //---------------------------------------------------------------------------------- // Draw //---------------------------------------------------------------------------------- BeginDrawing(); ClearBackground(RAYWHITE); for (int i = 0; i < bunniesCount; i++) { // NOTE: When internal QUADS batch limit is reached, a draw call is launched and // batching buffer starts being filled again; before launching the draw call, // updated vertex data from internal buffer is send to GPU... it seems it generates // a stall and consequently a frame drop, limiting number of bunnies drawn at 60 fps DrawTexture(texBunny, (int)bunnies[i].position.x, (int)bunnies[i].position.y, RAYWHITE); } DrawRectangle(0, 0, screenWidth, 40, LIGHTGRAY); DrawText("raylib bunnymark", 10, 10, 20, DARKGRAY); // DrawText(FormatText("bunnies: %i", bunniesCount), 400, 10, 20, RED); + DrawText($"bunnies: {bunniesCount}", 400, 10, 20, RED); DrawFPS(260, 10); EndDrawing(); //---------------------------------------------------------------------------------- } // De-Initialization //-------------------------------------------------------------------------------------- CloseWindow(); // Close window and OpenGL context //-------------------------------------------------------------------------------------- return 0; } } diff --git a/Examples/others/resources/wabbit_alpha.png b/Examples/others/resources/wabbit_alpha.png new file mode 100644 index 0000000000000000000000000000000000000000..79c31675083b7ffc272a6370bc189360bde484d0 GIT binary patch literal 449 zcmV;y0Y3hTP)SOJFMz`0@qn1GK$9W|wOohG3Lai}FkWLtiT<2<{JbM8>W7|R$! zUuNqg#gmKmsTnILy&K;zJjd^_40xy)%EA1>FWWk~LFpr>Et|!Hv(V>Hs9!2xEQJ>~!qz76HLsxFXdG zs5~GjUDeD6dXvG$_#HtoUok|M-X@BSTy{VK4P?TJZcz}O&FVzD0fZu8Yajr@?2aYL r_Q@_>J=ju&>AqoA-=wzwF98MsNX4 scale -> translate) rlTranslatef(position.x, position.y, position.z); //rlScalef(2.0f, 2.0f, 2.0f); //rlRotatef(45, 0, 1, 0); rlBegin(RL_TRIANGLES); rlColor4ub(color.r, color.g, color.b, color.a); // Front Face ----------------------------------------------------- rlVertex3f(x-width/2, y-height/2, z+length/2); // Bottom Left rlVertex3f(x+width/2, y-height/2, z+length/2); // Bottom Right rlVertex3f(x-width/2, y+height/2, z+length/2); // Top Left rlVertex3f(x+width/2, y+height/2, z+length/2); // Top Right rlVertex3f(x-width/2, y+height/2, z+length/2); // Top Left rlVertex3f(x+width/2, y-height/2, z+length/2); // Bottom Right // Back Face ------------------------------------------------------ rlVertex3f(x-width/2, y-height/2, z-length/2); // Bottom Left rlVertex3f(x-width/2, y+height/2, z-length/2); // Top Left rlVertex3f(x+width/2, y-height/2, z-length/2); // Bottom Right rlVertex3f(x+width/2, y+height/2, z-length/2); // Top Right rlVertex3f(x+width/2, y-height/2, z-length/2); // Bottom Right rlVertex3f(x-width/2, y+height/2, z-length/2); // Top Left // Top Face ------------------------------------------------------- rlVertex3f(x-width/2, y+height/2, z-length/2); // Top Left rlVertex3f(x-width/2, y+height/2, z+length/2); // Bottom Left rlVertex3f(x+width/2, y+height/2, z+length/2); // Bottom Right rlVertex3f(x+width/2, y+height/2, z-length/2); // Top Right rlVertex3f(x-width/2, y+height/2, z-length/2); // Top Left rlVertex3f(x+width/2, y+height/2, z+length/2); // Bottom Right // Bottom Face ---------------------------------------------------- rlVertex3f(x-width/2, y-height/2, z-length/2); // Top Left rlVertex3f(x+width/2, y-height/2, z+length/2); // Bottom Right rlVertex3f(x-width/2, y-height/2, z+length/2); // Bottom Left rlVertex3f(x+width/2, y-height/2, z-length/2); // Top Right rlVertex3f(x+width/2, y-height/2, z+length/2); // Bottom Right rlVertex3f(x-width/2, y-height/2, z-length/2); // Top Left // Right face ----------------------------------------------------- rlVertex3f(x+width/2, y-height/2, z-length/2); // Bottom Right rlVertex3f(x+width/2, y+height/2, z-length/2); // Top Right rlVertex3f(x+width/2, y+height/2, z+length/2); // Top Left rlVertex3f(x+width/2, y-height/2, z+length/2); // Bottom Left rlVertex3f(x+width/2, y-height/2, z-length/2); // Bottom Right rlVertex3f(x+width/2, y+height/2, z+length/2); // Top Left // Left Face ------------------------------------------------------ rlVertex3f(x-width/2, y-height/2, z-length/2); // Bottom Right rlVertex3f(x-width/2, y+height/2, z+length/2); // Top Left rlVertex3f(x-width/2, y+height/2, z-length/2); // Top Right rlVertex3f(x-width/2, y-height/2, z+length/2); // Bottom Left rlVertex3f(x-width/2, y+height/2, z+length/2); // Top Left rlVertex3f(x-width/2, y-height/2, z-length/2); // Bottom Right rlEnd(); rlPopMatrix(); } // Draw cube wires void DrawCubeWires(Vector3 position, float width, float height, float length, Color color) { float x = 0.0f; float y = 0.0f; float z = 0.0f; rlPushMatrix(); rlTranslatef(position.x, position.y, position.z); //rlRotatef(45, 0, 1, 0); rlBegin(RL_LINES); rlColor4ub(color.r, color.g, color.b, color.a); // Front Face ----------------------------------------------------- // Bottom Line rlVertex3f(x-width/2, y-height/2, z+length/2); // Bottom Left rlVertex3f(x+width/2, y-height/2, z+length/2); // Bottom Right // Left Line rlVertex3f(x+width/2, y-height/2, z+length/2); // Bottom Right rlVertex3f(x+width/2, y+height/2, z+length/2); // Top Right // Top Line rlVertex3f(x+width/2, y+height/2, z+length/2); // Top Right rlVertex3f(x-width/2, y+height/2, z+length/2); // Top Left // Right Line rlVertex3f(x-width/2, y+height/2, z+length/2); // Top Left rlVertex3f(x-width/2, y-height/2, z+length/2); // Bottom Left // Back Face ------------------------------------------------------ // Bottom Line rlVertex3f(x-width/2, y-height/2, z-length/2); // Bottom Left rlVertex3f(x+width/2, y-height/2, z-length/2); // Bottom Right // Left Line rlVertex3f(x+width/2, y-height/2, z-length/2); // Bottom Right rlVertex3f(x+width/2, y+height/2, z-length/2); // Top Right // Top Line rlVertex3f(x+width/2, y+height/2, z-length/2); // Top Right rlVertex3f(x-width/2, y+height/2, z-length/2); // Top Left // Right Line rlVertex3f(x-width/2, y+height/2, z-length/2); // Top Left rlVertex3f(x-width/2, y-height/2, z-length/2); // Bottom Left // Top Face ------------------------------------------------------- // Left Line rlVertex3f(x-width/2, y+height/2, z+length/2); // Top Left Front rlVertex3f(x-width/2, y+height/2, z-length/2); // Top Left Back // Right Line rlVertex3f(x+width/2, y+height/2, z+length/2); // Top Right Front rlVertex3f(x+width/2, y+height/2, z-length/2); // Top Right Back // Bottom Face --------------------------------------------------- // Left Line rlVertex3f(x-width/2, y-height/2, z+length/2); // Top Left Front rlVertex3f(x-width/2, y-height/2, z-length/2); // Top Left Back // Right Line rlVertex3f(x+width/2, y-height/2, z+length/2); // Top Right Front rlVertex3f(x+width/2, y-height/2, z-length/2); // Top Right Back rlEnd(); rlPopMatrix(); } -} diff --git a/Examples/others/standard_lighting.cs b/Examples/others/standard_lighting.cs deleted file mode 100644 index 40a2d94..0000000 --- a/Examples/others/standard_lighting.cs +++ /dev/null @@ -1,7 +0,0 @@ -using Raylib; -using static Raylib.Raylib; - -public partial class Examples -{ - /******************************************************************************************* * * raylib [shaders] example - Standard lighting (materials and lights) * * 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) 2016-2017 Ramon Santamaria (@raysan5) * ********************************************************************************************/ //---------------------------------------------------------------------------------- // Defines and Macros //---------------------------------------------------------------------------------- public const #define MAX_LIGHTS 8 // Max lights supported by standard shader //---------------------------------------------------------------------------------- // Types and Structures Definition //---------------------------------------------------------------------------------- // Light type struct LightData,*Light { public unsigned int id; // Light unique id public bool enabled; // Light enabled public int type; // Light type: LIGHT_POINT, LIGHT_DIRECTIONAL, LIGHT_SPOT public public Vector3 position; // Light position public Vector3 target; // Light direction: LIGHT_DIRECTIONAL and LIGHT_SPOT (cone direction target) public float radius; // Light attenuation radius light intensity reduced with distance (world distance) public public Color diffuse; // Light diffuse color public float intensity; // Light intensity level public public float coneAngle; // Light cone max angle: LIGHT_SPOT public } LightData, *Light; // Light types typedef enum { LIGHT_POINT, LIGHT_DIRECTIONAL, LIGHT_SPOT } LightType; //---------------------------------------------------------------------------------- // Global Variables Definition //---------------------------------------------------------------------------------- static Light[] lights = new Light[MAX_LIGHTS]; // Lights pool static int lightsCount = 0; // Enabled lights counter static int[] lightsLocs = new int[MAX_LIGHTS][8]; // Lights location points in shader: 8 possible points per light: // enabled, type, position, target, radius, diffuse, intensity, coneAngle //---------------------------------------------------------------------------------- // Module Functions Declaration //---------------------------------------------------------------------------------- static Light CreateLight(int type, Vector3 position, Color diffuse); // Create a new light, initialize it and add to pool static void DestroyLight(Light light); // Destroy a light and take it out of the list static void DrawLight(Light light); // Draw light in 3D world static void GetShaderLightsLocations(Shader shader); // Get shader locations for lights (up to MAX_LIGHTS) static void SetShaderLightsValues(Shader shader); // Set shader uniform values for lights // Vector3 math functions static float VectorLength(const Vector3 v); // Calculate vector length static void VectorNormalize(Vector3 *v); // Normalize provided vector static Vector3 VectorSubtract(Vector3 v1, Vector3 v2); // Substract two vectors //https://www.gamedev.net/topic/655969-speed-gluniform-vs-uniform-buffer-objects/ //https://www.reddit.com/r/opengl/comments/4ri20g/is_gluniform_more_expensive_than_glprogramuniform/ //http://cg.alexandra.dk/?p=3778 - AZDO //https://developer.apple.com/library/content/documentation/3DDrawing/Conceptual/OpenGLES_ProgrammingGuide/BestPracticesforShaders/BestPracticesforShaders.html //------------------------------------------------------------------------------------ // Program main entry point //------------------------------------------------------------------------------------ public static void Main() { // Initialization //-------------------------------------------------------------------------------------- int screenWidth = 800; int screenHeight = 450; SetConfigFlags((int)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 = {{ 4.0f, 4.0f, 4.0f }, { 0.0f, 1.5f, 0.0f }, { 0.0f, 1.0f, 0.0f }, 45.0f }; Vector3 position = { 0.0f, 0.0f, 0.0f }; // Set model position Model dwarf = LoadModel("resources/model/dwarf.obj"); // Load OBJ model Material material;// = LoadStandardMaterial(); material.shader = LoadShader("resources/shaders/glsl330/standard.vs", "resources/shaders/glsl330/standard.fs"); // Try to get lights location points (if available) GetShaderLightsLocations(material.shader); material.maps[MAP_DIFFUSE].texture = LoadTexture("resources/model/dwarf_diffuse.png"); // Load model diffuse texture material.maps[MAP_NORMAL].texture = LoadTexture("resources/model/dwarf_normal.png"); // Load model normal texture material.maps[MAP_SPECULAR].texture = LoadTexture("resources/model/dwarf_specular.png"); // Load model specular texture material.maps[MAP_DIFFUSE].color = WHITE; material.maps[MAP_SPECULAR].color = WHITE; dwarf.material = material; // Apply material to model Light spotLight = CreateLight(LIGHT_SPOT, new Vector3(3.0f, 5.0f, 2.0f}, (Color){255, 255, 255, 255);); spotLight->target = new Vector3(0.0f, 0.0f, 0.0f);; spotLight->intensity = 2.0f; spotLight->diffuse = new Color(255, 100, 100, 255);; spotLight->coneAngle = 60.0f; Light dirLight = CreateLight(LIGHT_DIRECTIONAL, new Vector3(0.0f, -3.0f, -3.0f}, (Color){255, 255, 255, 255);); dirLight->target = new Vector3(1.0f, -2.0f, -2.0f);; dirLight->intensity = 2.0f; dirLight->diffuse = new Color(100, 255, 100, 255);; Light pointLight = CreateLight(LIGHT_POINT, new Vector3(0.0f, 4.0f, 5.0f}, (Color){255, 255, 255, 255);); pointLight->intensity = 2.0f; pointLight->diffuse = new Color(100, 100, 255, 255);; pointLight->radius = 3.0f; // Set shader lights values for enabled lights // NOTE: If values are not changed in real time, they can be set at initialization!!! SetShaderLightsValues(material.shader); //SetShaderActive(0); // 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 //---------------------------------------------------------------------------------- // Draw //---------------------------------------------------------------------------------- BeginDrawing(); ClearBackground(RAYWHITE); BeginMode3D(camera); DrawModel(dwarf, position, 2.0f, WHITE); // Draw 3d model with texture DrawLight(spotLight); // Draw spot light DrawLight(dirLight); // Draw directional light DrawLight(pointLight); // Draw point light DrawGrid(10, 1.0f); // Draw a grid EndMode3D(); DrawText("(c) Dwarf 3D model by David Moreno", screenWidth - 200, screenHeight - 20, 10, GRAY); DrawFPS(10, 10); EndDrawing(); //---------------------------------------------------------------------------------- } // De-Initialization //-------------------------------------------------------------------------------------- UnloadMaterial(material); // Unload material and assigned textures UnloadModel(dwarf); // Unload model // Destroy all created lights DestroyLight(pointLight); DestroyLight(dirLight); DestroyLight(spotLight); // Unload lights if (lightsCount > 0) { for (int i = 0; i < lightsCount; i++) free(lights[i]); lightsCount = 0; } CloseWindow(); // Close window and OpenGL context //-------------------------------------------------------------------------------------- return 0; } //-------------------------------------------------------------------------------------------- // Module Functions Definitions //-------------------------------------------------------------------------------------------- // Create a new light, initialize it and add to pool Light CreateLight(int type, Vector3 position, Color diffuse) { Light light = NULL; if (lightsCount < MAX_LIGHTS) { // Allocate dynamic memory light = (Light)malloc(sizeof(LightData)); // Initialize light values with generic values light->id = lightsCount; light->type = type; light->enabled = true; light->position = position; light->target = new Vector3( 0.0f, 0.0f, 0.0f );; light->intensity = 1.0f; light->diffuse = diffuse; // Add new light to the array lights[lightsCount] = light; // Increase enabled lights count lightsCount++; } else { // NOTE: Returning latest created light to avoid crashes light = lights[lightsCount]; } return light; } // Destroy a light and take it out of the list void DestroyLight(Light light) { if (light != NULL) { int lightId = light->id; // Free dynamic memory allocation free(lights[lightId]); // Remove *obj from the pointers array for (int i = lightId; i < lightsCount; i++) { // Resort all the following pointers of the array if ((i + 1) < lightsCount) { lights[i] = lights[i + 1]; lights[i]->id = lights[i + 1]->id; } } // Decrease enabled physic objects count lightsCount--; } } // Draw light in 3D world void DrawLight(Light light) { switch (light->type) { case LIGHT_POINT: { DrawSphereWires(light->position, 0.3f*light->intensity, 8, 8, (light->enabled ? light->diffuse : GRAY)); DrawCircle3D(light->position, light->radius, new Vector3( 0, 0, 0 );, 0.0f, (light->enabled ? light->diffuse : GRAY)); DrawCircle3D(light->position, light->radius, new Vector3( 1, 0, 0 );, 90.0f, (light->enabled ? light->diffuse : GRAY)); DrawCircle3D(light->position, light->radius, new Vector3( 0, 1, 0 );,90.0f, (light->enabled ? light->diffuse : GRAY)); } break; case LIGHT_DIRECTIONAL: { DrawLine3D(light->position, light->target, (light->enabled ? light->diffuse : GRAY)); DrawSphereWires(light->position, 0.3f*light->intensity, 8, 8, (light->enabled ? light->diffuse : GRAY)); DrawCubeWires(light->target, 0.3f, 0.3f, 0.3f, (light->enabled ? light->diffuse : GRAY)); } break; case LIGHT_SPOT: { DrawLine3D(light->position, light->target, (light->enabled ? light->diffuse : GRAY)); Vector3 dir = VectorSubtract(light->target, light->position); VectorNormalize(&dir); DrawCircle3D(light->position, 0.5f, dir, 0.0f, (light->enabled ? light->diffuse : GRAY)); //DrawCylinderWires(light->position, 0.0f, 0.3f*light->coneAngle/50, 0.6f, 5, (light->enabled ? light->diffuse : GRAY)); DrawCubeWires(light->target, 0.3f, 0.3f, 0.3f, (light->enabled ? light->diffuse : GRAY)); } break; default: break; } } // Get shader locations for lights (up to MAX_LIGHTS) static void GetShaderLightsLocations(Shader shader) { char locName[32] = "lights[x].\0"; char[] locNameUpdated = new char[64]; for (int i = 0; i < MAX_LIGHTS; i++) { locName[7] = '0' + i; strcpy(locNameUpdated, locName); strcat(locNameUpdated, "enabled\0"); lightsLocs[i][0] = GetShaderLocation(shader, locNameUpdated); locNameUpdated[0] = '\0'; strcpy(locNameUpdated, locName); strcat(locNameUpdated, "type\0"); lightsLocs[i][1] = GetShaderLocation(shader, locNameUpdated); locNameUpdated[0] = '\0'; strcpy(locNameUpdated, locName); strcat(locNameUpdated, "position\0"); lightsLocs[i][2] = GetShaderLocation(shader, locNameUpdated); locNameUpdated[0] = '\0'; strcpy(locNameUpdated, locName); strcat(locNameUpdated, "direction\0"); lightsLocs[i][3] = GetShaderLocation(shader, locNameUpdated); locNameUpdated[0] = '\0'; strcpy(locNameUpdated, locName); strcat(locNameUpdated, "radius\0"); lightsLocs[i][4] = GetShaderLocation(shader, locNameUpdated); locNameUpdated[0] = '\0'; strcpy(locNameUpdated, locName); strcat(locNameUpdated, "diffuse\0"); lightsLocs[i][5] = GetShaderLocation(shader, locNameUpdated); locNameUpdated[0] = '\0'; strcpy(locNameUpdated, locName); strcat(locNameUpdated, "intensity\0"); lightsLocs[i][6] = GetShaderLocation(shader, locNameUpdated); locNameUpdated[0] = '\0'; strcpy(locNameUpdated, locName); strcat(locNameUpdated, "coneAngle\0"); lightsLocs[i][7] = GetShaderLocation(shader, locNameUpdated); } } // Set shader uniform values for lights // NOTE: It would be far easier with shader UBOs but are not supported on OpenGL ES 2.0 // TODO: Replace glUniform1i(), glUniform1f(), glUniform3f(), glUniform4f(): //SetShaderValue(Shader shader, int uniformLoc, float *value, int size) //SetShaderValuei(Shader shader, int uniformLoc, int *value, int size) static void SetShaderLightsValues(Shader shader) { int tempInt[8] = { 0 }; float tempFloat[8] = { 0.0f }; for (int i = 0; i < MAX_LIGHTS; i++) { if (i < lightsCount) { tempInt[0] = lights[i]->enabled; SetShaderValuei(shader, lightsLocs[i][0], tempInt, 1); //glUniform1i(lightsLocs[i][0], lights[i]->enabled); tempInt[0] = lights[i]->type; SetShaderValuei(shader, lightsLocs[i][1], tempInt, 1); //glUniform1i(lightsLocs[i][1], lights[i]->type); tempFloat[0] = (float)lights[i]->diffuse.r/255.0f; tempFloat[1] = (float)lights[i]->diffuse.g/255.0f; tempFloat[2] = (float)lights[i]->diffuse.b/255.0f; tempFloat[3] = (float)lights[i]->diffuse.a/255.0f; SetShaderValue(shader, lightsLocs[i][5], tempFloat, 4); //glUniform4f(lightsLocs[i][5], (float)lights[i]->diffuse.r/255, (float)lights[i]->diffuse.g/255, (float)lights[i]->diffuse.b/255, (float)lights[i]->diffuse.a/255); tempFloat[0] = lights[i]->intensity; SetShaderValue(shader, lightsLocs[i][6], tempFloat, 1); switch (lights[i]->type) { case LIGHT_POINT: { tempFloat[0] = lights[i]->position.x; tempFloat[1] = lights[i]->position.y; tempFloat[2] = lights[i]->position.z; SetShaderValue(shader, lightsLocs[i][2], tempFloat, 3); tempFloat[0] = lights[i]->radius; SetShaderValue(shader, lightsLocs[i][4], tempFloat, 1); //glUniform3f(lightsLocs[i][2], lights[i]->position.x, lights[i]->position.y, lights[i]->position.z); //glUniform1f(lightsLocs[i][4], lights[i]->radius); } break; case LIGHT_DIRECTIONAL: { Vector3 direction = VectorSubtract(lights[i]->target, lights[i]->position); VectorNormalize(&direction); tempFloat[0] = direction.x; tempFloat[1] = direction.y; tempFloat[2] = direction.z; SetShaderValue(shader, lightsLocs[i][3], tempFloat, 3); //glUniform3f(lightsLocs[i][3], direction.x, direction.y, direction.z); } break; case LIGHT_SPOT: { tempFloat[0] = lights[i]->position.x; tempFloat[1] = lights[i]->position.y; tempFloat[2] = lights[i]->position.z; SetShaderValue(shader, lightsLocs[i][2], tempFloat, 3); //glUniform3f(lightsLocs[i][2], lights[i]->position.x, lights[i]->position.y, lights[i]->position.z); Vector3 direction = VectorSubtract(lights[i]->target, lights[i]->position); VectorNormalize(&direction); tempFloat[0] = direction.x; tempFloat[1] = direction.y; tempFloat[2] = direction.z; SetShaderValue(shader, lightsLocs[i][3], tempFloat, 3); //glUniform3f(lightsLocs[i][3], direction.x, direction.y, direction.z); tempFloat[0] = lights[i]->coneAngle; SetShaderValue(shader, lightsLocs[i][7], tempFloat, 1); //glUniform1f(lightsLocs[i][7], lights[i]->coneAngle); } break; default: break; } } else { tempInt[0] = 0; SetShaderValuei(shader, lightsLocs[i][0], tempInt, 1); //glUniform1i(lightsLocs[i][0], 0); // Light disabled } } } // Calculate vector length float VectorLength(const Vector3 v) { float length; length = sqrtf(v.x*v.x + v.y*v.y + v.z*v.z); return length; } // Normalize provided vector void VectorNormalize(Vector3 *v) { float length, ilength; length = VectorLength(*v); if (length == 0.0f) length = 1.0f; ilength = 1.0f/length; v->x *= ilength; v->y *= ilength; v->z *= ilength; } // Substract two vectors Vector3 VectorSubtract(Vector3 v1, Vector3 v2) { Vector3 result; result.x = v1.x - v2.x; result.y = v1.y - v2.y; result.z = v1.z - v2.z; return result; } -} diff --git a/Examples/physac/physics_demo.cs b/Examples/physac/physics_demo.cs index 1b7c5bb..6d56111 100644 --- a/Examples/physac/physics_demo.cs +++ b/Examples/physac/physics_demo.cs @@ -1,7 +1,7 @@ using Raylib; using static Raylib.Raylib; -public partial class Examples +public partial class physics_demo { - /******************************************************************************************* * * 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 * ********************************************************************************************/ public const #define PHYSAC_IMPLEMENTATION public static void Main() { // Initialization //-------------------------------------------------------------------------------------- int screenWidth = 800; int screenHeight = 450; SetConfigFlags((int)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(new 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(new 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(new Vector2( screenWidth/2, screenHeight );, 500, 100, 10); floor->enabled = false; circle = CreatePhysicsBodyCircle(new 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((int)Mouse.LEFT_BUTTON)) CreatePhysicsBodyPolygon(GetMousePosition(), GetRandomValue(20, 80), GetRandomValue(3, 8), 10); else if (IsMouseButtonPressed((int)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; } + /******************************************************************************************* * * 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 * ********************************************************************************************/ public static 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 var floor = CreatePhysicsBodyRectangle(new 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 var circle = CreatePhysicsBodyCircle(new 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(new Vector2( screenWidth/2, screenHeight ), 500, 100, 10); floor.enabled = false; circle = CreatePhysicsBodyCircle(new 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--) { var body = GetPhysicsBody(i); if (body.id != 0 && (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++) { var body = GetPhysicsBody(i); if (body.id != 0) // can't check struct for 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/Examples/physac/physics_friction.cs b/Examples/physac/physics_friction.cs index a761d66..0ee20c4 100644 --- a/Examples/physac/physics_friction.cs +++ b/Examples/physac/physics_friction.cs @@ -1,7 +1,7 @@ using Raylib; using static Raylib.Raylib; -public partial class Examples +public partial class physics_friction { - /******************************************************************************************* * * 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 * ********************************************************************************************/ public const #define PHYSAC_IMPLEMENTATION public static void Main() { // Initialization //-------------------------------------------------------------------------------------- int screenWidth = 800; int screenHeight = 450; SetConfigFlags((int)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(new 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(new 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(new 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(new 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(new Vector2( 35, screenHeight*0.6f );, 40, 40, 10); bodyA->staticFriction = 0.1f; bodyA->dynamicFriction = 0.1f; SetPhysicsBodyRotation(bodyA, 30*DEG2RAD); PhysicsBody bodyB = CreatePhysicsBodyRectangle(new 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 = new Vector2( 35, screenHeight*0.6f );; bodyA->velocity = new Vector2( 0, 0 );; bodyA->angularVelocity = 0; SetPhysicsBodyRotation(bodyA, 30*DEG2RAD); bodyB->position = new Vector2( screenWidth - 35, screenHeight*0.6f );; bodyB->velocity = new 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; } + /******************************************************************************************* * * 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 * ********************************************************************************************/ public static 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 PhysicsBodyData floor = CreatePhysicsBodyRectangle(new Vector2( screenWidth/2, screenHeight ), screenWidth, 100, 10); floor.enabled = false; // Disable body state to convert it to static (no dynamics, but collisions) PhysicsBodyData wall = CreatePhysicsBodyRectangle(new 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 PhysicsBodyData rectLeft = CreatePhysicsBodyRectangle(new 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 PhysicsBodyData rectRight = CreatePhysicsBodyRectangle(new 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 PhysicsBodyData bodyA = CreatePhysicsBodyRectangle(new Vector2( 35, screenHeight*0.6f ), 40, 40, 10); bodyA.staticFriction = 0.1f; bodyA.dynamicFriction = 0.1f; SetPhysicsBodyRotation(bodyA, 30*DEG2RAD); PhysicsBodyData bodyB = CreatePhysicsBodyRectangle(new 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 = new Vector2( 35, screenHeight*0.6f ); bodyA.velocity = new Vector2( 0, 0 ); bodyA.angularVelocity = 0; SetPhysicsBodyRotation(bodyA, 30*DEG2RAD); bodyB.position = new Vector2( screenWidth - 35, screenHeight*0.6f ); bodyB.velocity = new 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++) { PhysicsBodyData body = GetPhysicsBody(i); if (body.id != 0) // check for 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", (int)bodyA.position.x - MeasureText("0.1", 20)/2, (int)bodyA.position.y - 7, 20, WHITE); DrawText("1", (int)bodyB.position.x - MeasureText("1", 20)/2, (int)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/Examples/physac/physics_movement.cs b/Examples/physac/physics_movement.cs index a158757..2a855b7 100644 --- a/Examples/physac/physics_movement.cs +++ b/Examples/physac/physics_movement.cs @@ -1,7 +1,10 @@ using Raylib; using static Raylib.Raylib; -public partial class Examples +public partial class physics_movement { - /******************************************************************************************* * * 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 * ********************************************************************************************/ public const #define PHYSAC_IMPLEMENTATION public const #define VELOCITY 0.5f public static void Main() { // Initialization //-------------------------------------------------------------------------------------- int screenWidth = 800; int screenHeight = 450; SetConfigFlags((int)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(new Vector2( screenWidth/2, screenHeight );, screenWidth, 100, 10); PhysicsBody platformLeft = CreatePhysicsBodyRectangle(new Vector2( screenWidth*0.25f, screenHeight*0.6f );, screenWidth*0.25f, 10, 10); PhysicsBody platformRight = CreatePhysicsBodyRectangle(new Vector2( screenWidth*0.75f, screenHeight*0.6f );, screenWidth*0.25f, 10, 10); PhysicsBody wallLeft = CreatePhysicsBodyRectangle(new Vector2( -5, screenHeight/2 );, 10, screenHeight, 10); PhysicsBody wallRight = CreatePhysicsBodyRectangle(new 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(new 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 = new Vector2( screenWidth/2, screenHeight/2 );; body->velocity = new Vector2( 0, 0 );; SetPhysicsBodyRotation(body, 0); } // Horizontal movement input if (IsKeyDown((int)Key.RIGHT)) body->velocity.x = VELOCITY; else if (IsKeyDown((int)Key.LEFT)) body->velocity.x = -VELOCITY; // Vertical movement input checking if player physics body is grounded if (IsKeyDown((int)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; } + /******************************************************************************************* * * 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 * ********************************************************************************************/ public const float VELOCITY = 0.5f; public static 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 + PhysicsBodyData floor = CreatePhysicsBodyRectangle(new Vector2( screenWidth/2, screenHeight ), screenWidth, 100, 10); PhysicsBodyData platformLeft = CreatePhysicsBodyRectangle(new Vector2( screenWidth*0.25f, screenHeight*0.6f ), screenWidth*0.25f, 10, 10); PhysicsBodyData platformRight = CreatePhysicsBodyRectangle(new Vector2( screenWidth*0.75f, screenHeight*0.6f ), screenWidth*0.25f, 10, 10); PhysicsBodyData wallLeft = CreatePhysicsBodyRectangle(new Vector2( -5, screenHeight/2 ), 10, screenHeight, 10); PhysicsBodyData wallRight = CreatePhysicsBodyRectangle(new 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 PhysicsBodyData body = CreatePhysicsBodyRectangle(new 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 = new Vector2( screenWidth/2, screenHeight/2 ); body.velocity = new 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++) { var ibody = 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(ibody, j); int jj = (((j + 1) < vertexCount) ? (j + 1) : 0); // Get next vertex or first to close the shape Vector2 vertexB = GetPhysicsShapeVertex(ibody, 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/Examples/physac/physics_restitution.cs b/Examples/physac/physics_restitution.cs index 3fdb997..4993809 100644 --- a/Examples/physac/physics_restitution.cs +++ b/Examples/physac/physics_restitution.cs @@ -1,7 +1,7 @@ using Raylib; using static Raylib.Raylib; -public partial class Examples +public partial class physics_restitution { - /******************************************************************************************* * * 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 * ********************************************************************************************/ public const #define PHYSAC_IMPLEMENTATION public static void Main() { // Initialization //-------------------------------------------------------------------------------------- int screenWidth = 800; int screenHeight = 450; SetConfigFlags((int)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(new 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(new Vector2( screenWidth*0.25f, screenHeight/2 );, 30, 10); circleA->restitution = 0; PhysicsBody circleB = CreatePhysicsBodyCircle(new Vector2( screenWidth*0.5f, screenHeight/2 );, 30, 10); circleB->restitution = 0.5f; PhysicsBody circleC = CreatePhysicsBodyCircle(new 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 = new Vector2( screenWidth*0.25f, screenHeight/2 );; circleA->velocity = new Vector2( 0, 0 );; circleB->position = new Vector2( screenWidth*0.5f, screenHeight/2 );; circleB->velocity = new Vector2( 0, 0 );; circleC->position = new Vector2( screenWidth*0.75f, screenHeight/2 );; circleC->velocity = new 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; } + /******************************************************************************************* * * 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 * ********************************************************************************************/ public static 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 PhysicsBodyData floor = CreatePhysicsBodyRectangle(new 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 PhysicsBodyData circleA = CreatePhysicsBodyCircle(new Vector2( screenWidth*0.25f, screenHeight/2 ), 30, 10); circleA.restitution = 0; PhysicsBodyData circleB = CreatePhysicsBodyCircle(new Vector2( screenWidth*0.5f, screenHeight/2 ), 30, 10); circleB.restitution = 0.5f; PhysicsBodyData circleC = CreatePhysicsBodyCircle(new 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 = new Vector2( screenWidth*0.25f, screenHeight/2 ); circleA.velocity = new Vector2( 0, 0 ); circleB.position = new Vector2( screenWidth*0.5f, screenHeight/2 ); circleB.velocity = new Vector2( 0, 0 ); circleC.position = new Vector2( screenWidth*0.75f, screenHeight/2 ); circleC.velocity = new 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++) { PhysicsBodyData 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", (int)circleA.position.x - MeasureText("0", 20)/2, (int)circleA.position.y - 7, 20, WHITE); DrawText("0.5", (int)circleB.position.x - MeasureText("0.5", 20)/2, (int)circleB.position.y - 7, 20, WHITE); DrawText("1", (int)circleC.position.x - MeasureText("1", 20)/2, (int)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/Examples/physac/physics_shatter.cs b/Examples/physac/physics_shatter.cs index 830c96f..d232b77 100644 --- a/Examples/physac/physics_shatter.cs +++ b/Examples/physac/physics_shatter.cs @@ -1,7 +1,8 @@ using Raylib; using static Raylib.Raylib; -public partial class Examples +public partial class physics_shatter { - /******************************************************************************************* * * 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 * ********************************************************************************************/ public const #define PHYSAC_IMPLEMENTATION public static void Main() { // Initialization //-------------------------------------------------------------------------------------- int screenWidth = 800; int screenHeight = 450; SetConfigFlags((int)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(new 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(new Vector2( screenWidth/2, screenHeight/2 );, GetRandomValue(80, 200), GetRandomValue(3, 8), 10); } if (IsKeyPressed('R')) // Reset physics input { ResetPhysics(); needsReset = true; } if (IsMouseButtonPressed((int)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; } + /******************************************************************************************* * * 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 * ********************************************************************************************/ public static 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(new 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(new 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--) { PhysicsBodyData currentBody = GetPhysicsBody(i); if (currentBody.id != 0) PhysicsShatter(currentBody, GetMousePosition(), 10/currentBody.inverseMass); } } //---------------------------------------------------------------------------------- // Draw //---------------------------------------------------------------------------------- BeginDrawing(); ClearBackground(BLACK); // Draw created physics bodies int bodiesCount = GetPhysicsBodiesCount(); for (int i = 0; i < bodiesCount; i++) { + PhysicsBodyData 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/Examples/raylib-cs.ico b/Examples/raylib-cs.ico new file mode 100644 index 0000000000000000000000000000000000000000..296d5dd59c742944d814a44152a05b1d2a8018f1 GIT binary patch literal 142667 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 literal 0 HcmV?d00001 diff --git a/Examples/shaders/resources/shaders/glsl100/swirl.fs b/Examples/shaders/resources/shaders/glsl100/swirl.fs index b969aab..7807b80 100644 --- a/Examples/shaders/resources/shaders/glsl100/swirl.fs +++ b/Examples/shaders/resources/shaders/glsl100/swirl.fs @@ -13,8 +13,8 @@ uniform vec4 colDiffuse; // NOTE: Add here your custom variables // NOTE: Render size values should be passed from code -const float renderWidth = 800; -const float renderHeight = 450; +const float renderWidth = 800.0; +const float renderHeight = 450.0; float radius = 250.0; float angle = 0.8; @@ -43,4 +43,4 @@ void main() vec4 color = texture2D(texture0, tc/texSize)*colDiffuse*fragColor;; gl_FragColor = vec4(color.rgb, 1.0);; -} \ No newline at end of file +} diff --git a/Examples/shaders/shaders_custom_uniform.cs b/Examples/shaders/shaders_custom_uniform.cs index a45fccf..ccae21d 100644 --- a/Examples/shaders/shaders_custom_uniform.cs +++ b/Examples/shaders/shaders_custom_uniform.cs @@ -1,7 +1,10 @@ using Raylib; using static Raylib.Raylib; +using static Raylib.CameraType; +using static Raylib.CameraMode; +using static Raylib.TexmapIndex; -public partial class Examples +public partial class shaders_custom_uniform { - /******************************************************************************************* * * 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 void Main() { // Initialization //-------------------------------------------------------------------------------------- int screenWidth = 800; int screenHeight = 450; SetConfigFlags((int)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 = new Vector3( 8.0f, 8.0f, 8.0f );; camera.target = new Vector3( 0.0f, 1.5f, 0.0f );; camera.up = new 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, new 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; } + /******************************************************************************************* * * 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 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 Camera3D camera = new Camera3D(); camera.position = new Vector3( 8.0f, 8.0f, 8.0f ); camera.target = new Vector3( 0.0f, 1.5f, 0.0f ); camera.up = new 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[(int)MAP_ALBEDO].texture = texture; // Set model diffuse texture Vector3 position = new Vector3( 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 = new float[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, (int)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(ref 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, new Rectangle( 0, 0, target.texture.width, -target.texture.height ), new 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; } } diff --git a/Examples/shaders/shaders_model_shader.cs b/Examples/shaders/shaders_model_shader.cs index d2e33e5..7a11bba 100644 --- a/Examples/shaders/shaders_model_shader.cs +++ b/Examples/shaders/shaders_model_shader.cs @@ -1,7 +1,10 @@ using Raylib; using static Raylib.Raylib; +using static Raylib.CameraType; +using static Raylib.CameraMode; +using static Raylib.TexmapIndex; -public partial class Examples +public partial class shaders_model_shader { - /******************************************************************************************* * * 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 void Main() { // Initialization //-------------------------------------------------------------------------------------- int screenWidth = 800; int screenHeight = 450; SetConfigFlags((int)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 = new Vector3( 4.0f, 4.0f, 4.0f );; camera.target = new Vector3( 0.0f, 1.0f, -1.0f );; camera.up = new 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; } + /******************************************************************************************* * * 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 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 Camera3D camera = new Camera3D(); camera.position = new Vector3( 4.0f, 4.0f, 4.0f ); camera.target = new Vector3( 0.0f, 1.0f, -1.0f ); camera.up = new 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[(int)MAP_ALBEDO].texture = texture; // Bind texture to model Vector3 position = new Vector3( 0.0f, 0.0f, 0.0f ); // Set model position SetCameraMode(camera, (int)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(ref 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("Camera3D position: (%.2f, %.2f, %.2f)", camera.position.x, camera.position.y, camera.position.z), 600, 20, 10, BLACK); DrawText(FormatText("Camera3D 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; } } diff --git a/Examples/shaders/shaders_postprocessing.cs b/Examples/shaders/shaders_postprocessing.cs index d17a664..9783d03 100644 --- a/Examples/shaders/shaders_postprocessing.cs +++ b/Examples/shaders/shaders_postprocessing.cs @@ -1,7 +1,10 @@ using Raylib; using static Raylib.Raylib; +using static Raylib.CameraMode; +using static Raylib.TexmapIndex; -public partial class Examples +public partial class shaders_postprocessing { - /******************************************************************************************* * * 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) * ********************************************************************************************/ #define GLSL_VERSION 330 #else // PLATFORM_RPI, PLATFORM_ANDROID, PLATFORM_WEB #define GLSL_VERSION 100 public const #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 void Main() { // Initialization //-------------------------------------------------------------------------------------- int screenWidth = 800; int screenHeight = 450; SetConfigFlags((int)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 = new Shader[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((int)Key.RIGHT)) currentShader++; else if (IsKeyPressed((int)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, new 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; } + /******************************************************************************************* * * 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) * ********************************************************************************************/ public const int GLSL_VERSION = 330; // public const int GLSL_VERSION = 100; public const int MAX_POSTPRO_SHADERS = 12; enum PostproShader + { 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 } static string[] postproShaderText = { "GRAYSCALE", "POSTERIZATION", "DREAM_VISION", "PIXELIZER", "CROSS_HATCHING", "CROSS_STITCHING", "PREDATOR_VIEW", "SCANLINES", "FISHEYE", "SOBEL", "BLOOM", "BLUR", //"FXAA" }; public static 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 Camera3D camera = new Camera3D(new Vector3( 2.0f, 3.0f, 2.0f ), new Vector3( 0.0f, 1.0f, 0.0f ), new Vector3( 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[(int)MAP_ALBEDO].texture = texture; // Set model diffuse texture Vector3 position = new Vector3( 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 = new Shader[MAX_POSTPRO_SHADERS]; // NOTE: Defining null (NULL) for vertex shader forces usage of internal default vertex shader shaders[(int)PostproShader.FX_GRAYSCALE] = LoadShader(null, FormatText("resources/shaders/glsl%i/grayscale.fs", GLSL_VERSION)); shaders[(int)PostproShader.FX_POSTERIZATION] = LoadShader(null, FormatText("resources/shaders/glsl%i/posterization.fs", GLSL_VERSION)); shaders[(int)PostproShader.FX_DREAM_VISION] = LoadShader(null, FormatText("resources/shaders/glsl%i/dream_vision.fs", GLSL_VERSION)); shaders[(int)PostproShader.FX_PIXELIZER] = LoadShader(null, FormatText("resources/shaders/glsl%i/pixelizer.fs", GLSL_VERSION)); shaders[(int)PostproShader.FX_CROSS_HATCHING] = LoadShader(null, FormatText("resources/shaders/glsl%i/cross_hatching.fs", GLSL_VERSION)); shaders[(int)PostproShader.FX_CROSS_STITCHING] = LoadShader(null, FormatText("resources/shaders/glsl%i/cross_stitching.fs", GLSL_VERSION)); shaders[(int)PostproShader.FX_PREDATOR_VIEW] = LoadShader(null, FormatText("resources/shaders/glsl%i/predator.fs", GLSL_VERSION)); shaders[(int)PostproShader.FX_SCANLINES] = LoadShader(null, FormatText("resources/shaders/glsl%i/scanlines.fs", GLSL_VERSION)); shaders[(int)PostproShader.FX_FISHEYE] = LoadShader(null, FormatText("resources/shaders/glsl%i/fisheye.fs", GLSL_VERSION)); shaders[(int)PostproShader.FX_SOBEL] = LoadShader(null, FormatText("resources/shaders/glsl%i/sobel.fs", GLSL_VERSION)); shaders[(int)PostproShader.FX_BLOOM] = LoadShader(null, FormatText("resources/shaders/glsl%i/bloom.fs", GLSL_VERSION)); shaders[(int)PostproShader.FX_BLUR] = LoadShader(null, FormatText("resources/shaders/glsl%i/blur.fs", GLSL_VERSION)); int currentShader = (int)PostproShader.FX_GRAYSCALE; // Create a RenderTexture2D to be used for render to texture RenderTexture2D target = LoadRenderTexture(screenWidth, screenHeight); // Setup orbital camera SetCameraMode(camera, (int)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(ref 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, new Rectangle( 0, 0, target.texture.width, -target.texture.height ), new 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/Examples/shaders/shaders_shapes_textures.cs b/Examples/shaders/shaders_shapes_textures.cs index 64cce51..213e5d8 100644 --- a/Examples/shaders/shaders_shapes_textures.cs +++ b/Examples/shaders/shaders_shapes_textures.cs @@ -1,7 +1,7 @@ using Raylib; using static Raylib.Raylib; -public partial class Examples +public partial class shaders_shapes_textures { - /******************************************************************************************* * * 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 void 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(new Vector2(430, 80);, new Vector2(430 - 60, 150);, new Vector2(430 + 60, 150);, VIOLET); DrawTriangleLines(new Vector2(430, 160);, new Vector2(430 - 20, 230);, new Vector2(430 + 20, 230);, DARKBLUE); DrawPoly(new 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; } + /******************************************************************************************* * * 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 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(new Vector2(430, 80), new Vector2(430 - 60, 150), new Vector2(430 + 60, 150), VIOLET); DrawTriangleLines(new Vector2(430, 160), new Vector2(430 - 20, 230), new Vector2(430 + 20, 230), DARKBLUE); DrawPoly(new 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; } } diff --git a/Examples/shapes/shapes_basic_shapes.cs b/Examples/shapes/shapes_basic_shapes.cs index 3d698ed..437a150 100644 --- a/Examples/shapes/shapes_basic_shapes.cs +++ b/Examples/shapes/shapes_basic_shapes.cs @@ -1,7 +1,7 @@ using Raylib; using static Raylib.Raylib; -public partial class Examples +public partial class shapes_basic_shapes { - /******************************************************************************************* * * 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 void Main() { // 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/4*3, 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; } + /******************************************************************************************* * * 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 Main() { // 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/4*3, 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; } } diff --git a/Examples/shapes/shapes_colors_palette.cs b/Examples/shapes/shapes_colors_palette.cs index 64bbd7f..ebdf35b 100644 --- a/Examples/shapes/shapes_colors_palette.cs +++ b/Examples/shapes/shapes_colors_palette.cs @@ -1,7 +1,7 @@ using Raylib; using static Raylib.Raylib; -public partial class Examples +public partial class shapes_colors_palette { - /******************************************************************************************* * * 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 void 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; } + /******************************************************************************************* * * 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 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; } } diff --git a/Examples/shapes/shapes_lines_bezier.cs b/Examples/shapes/shapes_lines_bezier.cs index 90a0984..e496c3c 100644 --- a/Examples/shapes/shapes_lines_bezier.cs +++ b/Examples/shapes/shapes_lines_bezier.cs @@ -1,7 +1,7 @@ using Raylib; using static Raylib.Raylib; -public partial class Examples +public partial class shapes_lines_bezier { - /******************************************************************************************* * * 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 void Main() { // Initialization //-------------------------------------------------------------------------------------- int screenWidth = 800; int screenHeight = 450; SetConfigFlags((int)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((int)Mouse.LEFT_BUTTON)) start = GetMousePosition(); else if (IsMouseButtonDown((int)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; } + /******************************************************************************************* * * 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 Main() { // Initialization //-------------------------------------------------------------------------------------- int screenWidth = 800; int screenHeight = 450; SetConfigFlags(FLAG_MSAA_4X_HINT); InitWindow(screenWidth, screenHeight, "raylib [shapes] example - cubic-bezier lines"); Vector2 start = new Vector2( 0, 0 ); Vector2 end = new Vector2( 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/Examples/shapes/shapes_logo_raylib.cs b/Examples/shapes/shapes_logo_raylib.cs index 1810d6b..53c994d 100644 --- a/Examples/shapes/shapes_logo_raylib.cs +++ b/Examples/shapes/shapes_logo_raylib.cs @@ -1,7 +1,7 @@ using Raylib; using static Raylib.Raylib; -public partial class Examples +public partial class shapes_logo_raylib { - /******************************************************************************************* * * 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 void 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; } + /******************************************************************************************* * * 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 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; } } diff --git a/Examples/shapes/shapes_logo_raylib_anim.cs b/Examples/shapes/shapes_logo_raylib_anim.cs index cd66bf6..a9d25c7 100644 --- a/Examples/shapes/shapes_logo_raylib_anim.cs +++ b/Examples/shapes/shapes_logo_raylib_anim.cs @@ -1,7 +1,8 @@ using Raylib; using static Raylib.Raylib; -public partial class Examples +public partial class shapes_logo_raylib_anim { - /******************************************************************************************* * * 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 void 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; } + /******************************************************************************************* * * 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 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 != 0) // 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 != 0) 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; } } diff --git a/Examples/text/resources/custom_alagard.png b/Examples/text/resources/custom_alagard.png index c3eb63b7150c2ba8b2048f4501523125c9eb2756..63426555739356fd90b80f8c6355781e6ab12a56 100644 GIT binary patch literal 45351 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%0A#5R@FOKYFp-4(q2K>E<;V%u`I8y+AL8*J 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 diff --git a/Examples/text/resources/custom_jupiter_crash.png b/Examples/text/resources/custom_jupiter_crash.png index 451b591f17180d69d1229a74117fb971367f9ec4..2deaaeff7ba75e1c02889a5b6ae18b26ffde78fa 100644 GIT binary patch literal 29128 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 literal 23596 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 Ly_$9Tj@N$!YA&)9 literal 26597 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 diff --git a/Examples/text/resources/fonts/alpha_beta.png b/Examples/text/resources/fonts/alpha_beta.png index c362bfb18431da4b0ca4180ce6e91624c33e5cec..8a0c273384a0ae390a47cf9579452b4d236f6d00 100644 GIT binary patch literal 2424 zcmeHH`8(8m6#jg_zJqBRDOqBwvE-UCSu=^-kbSPf*k$a4!Zetkbd}~3kt|)=N7Pl> z8ze*}*<~pzOCnq8iO>)|l{#16OA{l92#l9Lx1lv>VZ#TRBEg)Z6bk_Vo7GjEfe2OJGdyKjGNj; zh-DFhSf)O*NAY&MkIunZl6gBr6F(+pcMa)BvD~+(GDHXFxqG^~#)qpb_42gH>CYNK zNg{_8oP9Cz#G%Pm9VxvBa&Xq1I2tYqfGldFV4o7czPfFe1Rp8N=ot$Y>2{H<1?JQY zP(^_ZaEzAEI(gUH+XB9HcClSbg`HODYOKPh8E3MxEj`lb8V<&}AVm(?vXTdyRmP(6 zY<9TmYTAV7yF`%R>ODs#%gKwbepD63zru&c4&`C>k39| z9X(T9jqb46oH-lBl!wPHFT9gR8i&6j6^>uKEJ7s$eWxWBt&z2mY1cOnF>kya8}_}X z9aWvt&Ml!(kDzym|85@Si7IcAJfrtgcI5dB=oKTm9|`Qfg-1B@aP=rs|q_+GC^Mk@rEvm(C3}>0!=FvUb+A9irwjz8H&5lP%kB2;FyvX-0Lr=TQb~QJv*iGGQ)#glLrZKA18+ z8JC%m#CiHqoD;-AYOlJB)EjP-mxC^s{-_614#G|9_}?WsVINwc)z~{;uFa{OvjZAt zH}0cls)gK@Dsm!77j4`ghWgYs5jm)%*Q?SARmwa+70RrX7D_d(TX9Fxti)njPyv0$ z&~R9_z&haoMrLSJPp;%Yo6eb3Tk4B$Oc>Ex!y=1ggU39g>ekH6(Jn8|+*qgpeq zP+wnn3{(x;GxoC&F3F5^5ME`$ zH~J8bz8h@c3JOcBNr&m!Iv_QFXo0(5*E~0^i=xZ{z|FD((I{cAvg4|?r1YfH3Hag% zUhszZq!V)|zE^zeAI?0Hn_D1{QmS!|IgOhB8_V+ywm)M7k_wW>=Ha0!60S;EMd>)~ z#$c8;r(35oIp3>d~|$@%ha8}wiRmk77gxEk2&A!X%-z4ch6dM?WW#y z&4U-eKY@94=L54CD6z-87P(4L?7xTpZtwxk&s@xdN#qn?RnBAE+io(>Vo&9_5qM^x zTvmji#UJ-eZl~wQ;E!oY_egt*l*gVg{`wZ3RLO3+b=hoHSeb&V{_p$*Rc)j zgiHtcV`Fean2cR}e%LO=e=44RG1tEvsu@qJ)H>X#pgkk8znHp@8=%oOp}KBGRz?{N z+LZFp!zcVc7IMt=+h%#=1dz|{7~i?*e;7{YC{Boy{+Ddfo2Hg9i3GAnYVTu#@c>ww LQcWt1y`ujGz6n&} literal 2442 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 Vemz;9M_YSn-X0Y9I@hps{{inAO2q&G literal 2399 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 literal 3003 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 F{|)H$+8F=< diff --git a/Examples/text/resources/fonts/pixelplay.png b/Examples/text/resources/fonts/pixelplay.png index bf8f8818f21332ad4cef5a1f4f167c993e6cc88e..fbf6430d6a22d32d2b31673f00bc768ad98471d9 100644 GIT binary patch literal 2835 zcmeHJ=T{SW7X2k8lF$q!(nPAD1f_^HBN#fNgbdA45(5N=P6UP~U&z z$G1xh=<5b4vogTklN;9pGnW01_*Qve$@fid-aph3Az3oGT?rfyYp;l6RVi)@(#i(hOd+{su9y=SbQkP-$Z%X`~J2gt8ofAYi zgvj!qXJ{DSXouu9=_zj_|LftL5yO^)*3k%3XKF580oTi|x+#1!^~||@px05$DqOv-PG2WvBet}B5)@zPh>v|otk zj^aAPyuyKqrnYpE&9OFLt|?4PpEl)vNeMGz$?7UQ!ls~Te^71A;gZp< zYz8hA$C^^#VlgK!PPXL7lhpd?9|d7$D4kHzRo7ByZqp4!-t%FT)G4EXOREUN9@Z7d zSL8h#s!GH^E<|%*uqD{;{Y_EU;LFteJFnf^cHB3jaZpaCg{v+rmdI?D6i$rf>5r&; z71TC$1YP|3iuQF1B$%g9sdgXAyVA#PZsXJu=lt~gI*zTUS_4c8l$WCKr%C&0+BngUf4i@6Bt=oGnjV1e%GFW^YB3-W&yC`I+SGCn_*s~ zdzRAsdD+tGP^E!nhwy#@-h|3BfhoL;yBbT!ACuEfXFl&()tV$f@pW>*232-DX7i; z8Hmw#79l&{me?9Qev{6c%h8+ZYgK+{TczUK@Ovzj+8ZJ0i8kMRSz9u|?z{a2U_bfP5@`ULgi%Fvg_#}&mL)kdVGj{gi? zWeGsb3@AaiYo?H^Q}E}LmaHYH(}rf8IpFC2@($~2&CEsat}6GQz>8`j*`=B0#-4W* zE!J7fd=3W{GZC2bO!E5G$HEjj_NdSc8qtaI#s=5>Mh9R``!mBvO2auVxn_6C;8=jc z0)517ia}HD&$zn#cD7besyE3NPkfp2KS9o^GhcT|HEtI89MVm)XFecZ99*TUyXpA; zSH9!^Q@Hq?OEMnc6lNFE^0gF*;iN1h?UD@nUSNXSjMQ0=ug8A>8T=`q$zj(UyS2?w z&z)d?-p4X8DWH48(?$21=zAWV`rDiE_bOH%VM03e9b7E5(y8jFE;|L4+odLsq?Z&c ze0Typy&J1YDL;KkYhu8Wpnt01@`4QSp*zTFQ5USK96qcG#V;qCF>lx#DJ>L@$IOOs z6~~kCpsQF|TIPV&uQ+JJd<*(5T_(InG|MM*;e}NVh%tthrTlQGdGhlXlHM{ij$1Y! zy^gpxIP2C;|JDFn2P+a6F7!XZXe({3K^a!qx9(MQ4k^DaP*Xqu#5Y$3)44~ThhYdA k!f!!|kpDAs;9i=SK}Mh8hemBx|L+eA!IEfEXGUZF1)L@rLjV8( literal 2912 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 I9SKhP6Z@C>@&Et; literal 2932 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Ÿ|IM?Yj~X~IeW9&Xt~h}q zIJKUfR3Da@-=LkFc5dM~%uD&xNQ0Jphw`mSZ>^JxrduDy@Qb=3}6%{A785>FJuT|>u${T#6 zmLnN7NzJyTI4oph9~1U)ICZ7z!!(~qUb5fdPOXYz;wsgCn996gb?*G$7tKBEtWcZi zmC-B8YN{<tDEUZU#whnJ3nvSo*U6TnNS=*+`$^j@&urLM_^{l-N#G z`c9n$iu=c@;GKs4-6zW`Ohe@S{y4QZf(x|EMDOOnQtb0BFv}7_&(acX%B*KykrPt> z9iTDvQOD}bDR*S*Q!@pbN`gj^S**=J%b}9LU|}i7$aMZV^k-%K8p}dF_W6Tx5`~}$ zuWyfsru&hw%k5sv*kN@_5p={tCX9xNg}lr1WA-JQaDU5ij_u4 zMUv$2>ZAbxm`P-j0HY+^)kLq6L=r9ga~R;ywV2uVpvK1selN_8xOM5ogyILKsgRKr`7tk8;d z-U^NTBm-Bf5vye?txTzaCm2OB%0z7-9`*E72yzvl|Akng`J5;;Wdxl_MIiYQ33B;F zTpzVH+6d_%ZhTc+6Pc`%5+bA;WujV))?<_VBpA)zpBtJ`M7?3GP|MJwh!VI;aiUzR z(1vjX@#u|@L?&TSX+%1axIvM+j+c2o2mcA%?(7+N%`NJvC`zPw^3!*_ErsCJrQ3vhJ8^~JL9H}2OUTnj=Zo}4-z!ksMrN6Xnt*BhucF7*R zayDw+=X8L=%e_BgD21z{PxC#&;FYt}T;lP-4s-GOy(URp&do78R#!ag@blwqFUX*A zIC9Dw{tlUy9}eW=h%wN)_LYxJ%}HY*a%f9id_4g2mOhA`U#8jh?yq|>-Br(?7~h&g zEzY#fA1KLq>$-lMIk5VPufjG+Y>@TCndXCKbx+I$(>xR0$fwd5p2!S!9)dzLKzy&G zc|j)aLpnHL0-7C5XlMIq;k_g8y@Vdq5L?SLPmV$0A!{x)c-KBxqwl2M5I75IpfOXv zyBa!$gSwooTV1Mhc$mx3(WvFX0u&szjabBB@ha+5w~ckN#$IpEtEHyo*N=}UL$GHL za-`;8b*qmb?Qto9h|SfdSpK&!m3M~LfLX`N?)bDpao@~}UiVn;wQlT|o?d4>1WNSR zDlIxWh%@GrSroNB!y@|1GN2YxGmr(CdqRhWyLR`o=Q7Qr2mtom)RQ-J*lzziC9Cnw zgSdX?Jt%IkIQd~X42~u(J!U?Ve{Zd^EgG>HvEtkQh1HG;n2r3MiOjgk(+}2|z&l8I z+shCOo%c70W1-UISDBW1mIi?{uq^PmnAJ2Z&o0!e2GToNAIBM@LNL~bC^L52g}2d& zxZYwBYei+&(SGmK2UBK0=rm9TuP)n%dp4w}9?G+QO%F5&Le)|CyVq@m&e+!up^d!Xs zaPmaY5@GBQ<^?z+ZSz1=_H=+53;+-J<|hG|l~y?&A-AXZ#n=u5c8$)<>A?LETTt2` zh)=J0{5Z9^r@TTY{$P(Ro>x%@p`Mey3>VkN-+dkTYYO?~jW_+L?;B5VFWSHTV5h1{ zJzmcO?LA>NhurLH`g*-YMVS|jmikQDox@iRqp7$SJ~UX3*^>9GW7V~rjzHtxy$qbM zbHE@QW+qRyF{Sux?Otf0h0%=xz!Y*O=f^(kokt7rcRCp%ryj2GMrN$o zI|_8ynzvra-QxRZSPJ&fY;LT*KEi1Rpw?j)T4e{P4dBi2Q;e!r z`|d7FP|h%|b}C?fSO7YqTI+CbSK_|PEaTk@RcJ$$_clvVo0c8_dk*Q^t|sPY4^b#M z^{D&%)R74L%~;{T9X9-IqJ#BSIaci1y(6hmch_y_zFi46$Ox`A*TGg5YOmms|&a#B(#db(4MmTTB97upOTsKQ&u@Q5244}AE9{-+>J*R{M z#!Od6OO5))j!31In>h|@e^ki?9n2dmZG`6W)`m?s!dI<@xIy6B-D@fF+9{yfbW>D4 zUa-A;{tQbY9A^i_b^myD=$M0b>)jP+K{yt{14pR93h=-}4BHN5{U45^PqHw!AnR0G Uj^K!6%f# 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((int)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; } + /******************************************************************************************* * * 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 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) string msg = "Signed Distance Fields"; // Default font generation from TTF font Font fontDefault = new Font(); fontDefault.baseSize = 16; fontDefault.charsCount = 95; + // Parameters > font size: 16, no chars array provided (0), chars count: 95 (autogenerate chars array) + // TODO: fix conversion + //fontDefault.chars = LoadFontData("resources/AnonymousPro-Bold.ttf", 16, null, 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 = new Font(); fontSDF.baseSize = 16; fontSDF.charsCount = 95; + // Parameters > font size: 16, no chars array provided (0), chars count: 0 (defaults to 95) + // TODO: fix conversion + //fontSDF.chars = LoadFontData("resources/AnonymousPro-Bold.ttf", 16, null, 0, true); + // Parameters > chars count: 95, font size: 16, chars padding in image: 0 px, pack method: 1 (Skyline algorythm) + // TODO: fix conversion + //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(null, "resources/shaders/sdf.fs"); SetTextureFilter(fontSDF.texture, (int)FILTER_BILINEAR); // Required for SDF font Vector2 fontPosition = new Vector2( 40, screenHeight/2 - 50 ); Vector2 textSize = new Vector2( 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; } } diff --git a/Examples/text/text_format_text.cs b/Examples/text/text_format_text.cs index ff09b99..33f999b 100644 --- a/Examples/text/text_format_text.cs +++ b/Examples/text/text_format_text.cs @@ -1,7 +1,7 @@ using Raylib; using static Raylib.Raylib; -public partial class Examples +public partial class text_format_text { - /******************************************************************************************* * * 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 void 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; } + /******************************************************************************************* * * 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 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; } } diff --git a/Examples/text/text_input_box.cs b/Examples/text/text_input_box.cs index f2a0ede..ef6f2a4 100644 --- a/Examples/text/text_input_box.cs +++ b/Examples/text/text_input_box.cs @@ -1,7 +1,10 @@ using Raylib; +using System.Text; using static Raylib.Raylib; -public partial class Examples +public partial class text_input_box { - /******************************************************************************************* * * 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) * ********************************************************************************************/ public const #define MAX_INPUT_CHARS 9 public static void 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((int)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 ((int)Key.SPACE) and 126 bool IsAnyKeyPressed() { bool keyPressed = false; int key = GetKeyPressed(); if ((key >= 32) && (key <= 126)) keyPressed = true; return keyPressed; } + /******************************************************************************************* * * 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) * ********************************************************************************************/ public const int MAX_INPUT_CHARS = 9; public static int Main() { // Initialization //-------------------------------------------------------------------------------------- int screenWidth = 800; int screenHeight = 450; InitWindow(screenWidth, screenHeight, "raylib [text] example - input box"); + + StringBuilder name = new StringBuilder(' ', MAX_INPUT_CHARS + 1); // NOTE: One extra space required for line ending char '\0' int letterCount = 0; Rectangle textBox = new Rectangle( 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((int)textBox.x, (int)textBox.y, (int)textBox.width, (int)textBox.height, RED); else DrawRectangleLines((int)textBox.x, (int)textBox.y, (int)textBox.width, (int)textBox.height, DARKGRAY); DrawText(name.ToString(), (int)textBox.x + 5, (int)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("_", (int)textBox.x + 8 + MeasureText(name.ToString(), 40), (int)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; } } diff --git a/Examples/text/text_raylib_fonts.cs b/Examples/text/text_raylib_fonts.cs index f556d5b..b5b76a7 100644 --- a/Examples/text/text_raylib_fonts.cs +++ b/Examples/text/text_raylib_fonts.cs @@ -1,7 +1,7 @@ using Raylib; using static Raylib.Raylib; -public partial class Examples +public partial class text_raylib_fonts { - /******************************************************************************************* * * 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) * ********************************************************************************************/ public const #define MAX_FONTS 8 public static void 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 = new Font[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 = new Vector2[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; } + /******************************************************************************************* * * 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) * ********************************************************************************************/ public const int MAX_FONTS = 8; public static 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 = new Font[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"); string[] messages = new string[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)" }; int[] spacings = new int[MAX_FONTS]{ 2, 4, 8, 4, 3, 4, 4, 1 }; Vector2[] positions = new Vector2[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 = new Color[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; } } diff --git a/Examples/text/text_sprite_fonts.cs b/Examples/text/text_sprite_fonts.cs index 7fd1b3d..052bb8b 100644 --- a/Examples/text/text_sprite_fonts.cs +++ b/Examples/text/text_sprite_fonts.cs @@ -1,7 +1,7 @@ using Raylib; using static Raylib.Raylib; -public partial class Examples +public partial class text_sprite_fonts { - /******************************************************************************************* * * 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 void 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; } + /******************************************************************************************* * * 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 Main() { // Initialization //-------------------------------------------------------------------------------------- int screenWidth = 800; int screenHeight = 450; InitWindow(screenWidth, screenHeight, "raylib [text] example - sprite fonts usage"); string msg1 = "THIS IS A custom SPRITE FONT..."; string msg2 = "...and this is ANOTHER CUSTOM font..."; string msg3 = "...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; } } diff --git a/Examples/text/text_ttf_loading.cs b/Examples/text/text_ttf_loading.cs index 751ac7e..67cfb21 100644 --- a/Examples/text/text_ttf_loading.cs +++ b/Examples/text/text_ttf_loading.cs @@ -1,7 +1,8 @@ using Raylib; using static Raylib.Raylib; +using static Raylib.TextureFilterMode; -public partial class Examples +public partial class text_ttf_loading { - /******************************************************************************************* * * 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 void 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 int count = 0; char **droppedFiles; 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((int)Key.ONE)) { SetTextureFilter(font.texture, FILTER_POINT); currentFontFilter = 0; } else if (IsKeyPressed((int)Key.TWO)) { SetTextureFilter(font.texture, FILTER_BILINEAR); currentFontFilter = 1; } else if (IsKeyPressed((int)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((int)Key.LEFT)) fontPosition.x -= 10; else if (IsKeyDown((int)Key.RIGHT)) fontPosition.x += 10; // 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(); } } //---------------------------------------------------------------------------------- // Draw //---------------------------------------------------------------------------------- BeginDrawing(); ClearBackground(RAYWHITE); DrawText("Use mouse wheel to change font size", 20, 20, 10, GRAY); DrawText("Use (int)Key.RIGHT and (int)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 //-------------------------------------------------------------------------------------- ClearDroppedFiles(); // Clear internal buffers UnloadFont(font); // Font unloading CloseWindow(); // Close window and OpenGL context //-------------------------------------------------------------------------------------- return 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) * ********************************************************************************************/ public static int Main() { // Initialization //-------------------------------------------------------------------------------------- int screenWidth = 800; int screenHeight = 450; InitWindow(screenWidth, screenHeight, "raylib [text] example - ttf loading"); string msg = "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, null); // Generate mipmap levels to use trilinear filtering // NOTE: On 2D drawing it won't be noticeable, it looks like FILTER_BILINEAR GenTextureMipmaps(ref font.texture); float fontSize = font.baseSize; Vector2 fontPosition = new Vector2( 40, screenHeight/2 - 80 ); Vector2 textSize; SetTextureFilter(font.texture, (int)FILTER_POINT); int currentFontFilter = 0; // FILTER_POINT // NOTE: Drag and drop support only available for desktop platforms: Windows, Linux, OSX int count = 0; string[] droppedFiles; 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, (int)FILTER_POINT); currentFontFilter = 0; } else if (IsKeyPressed(KEY_TWO)) { SetTextureFilter(font.texture, (int)FILTER_BILINEAR); currentFontFilter = 1; } else if (IsKeyPressed(KEY_THREE)) { // NOTE: Trilinear filter won't be noticed on 2D drawing SetTextureFilter(font.texture, (int)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; // Load a dropped TTF file dynamically (at current fontSize) if (IsFileDropped()) { droppedFiles = GetDroppedFiles(ref count); if (count == 1) // Only support one ttf file dropped { UnloadFont(font); font = LoadFontEx(droppedFiles[0], (int)fontSize, 0, null); ClearDroppedFiles(); } } //---------------------------------------------------------------------------------- // 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 //-------------------------------------------------------------------------------------- ClearDroppedFiles(); // Clear internal buffers UnloadFont(font); // Font unloading CloseWindow(); // Close window and OpenGL context //-------------------------------------------------------------------------------------- return 0; } } diff --git a/Examples/text/text_writing_anim.cs b/Examples/text/text_writing_anim.cs index 7148428..9deb04f 100644 --- a/Examples/text/text_writing_anim.cs +++ b/Examples/text/text_writing_anim.cs @@ -1,7 +1,7 @@ using Raylib; using static Raylib.Raylib; -public partial class Examples +public partial class text_writing_anim { - /******************************************************************************************* * * 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 void 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((int)Key.SPACE)) framesCounter += 8; else framesCounter++; if (IsKeyPressed((int)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; } + /******************************************************************************************* * * 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 Main() { // Initialization //-------------------------------------------------------------------------------------- int screenWidth = 800; int screenHeight = 450; InitWindow(screenWidth, screenHeight, "raylib [text] example - text writing anim"); string message = "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; } } diff --git a/Examples/textures/resources/custom_jupiter_crash.png b/Examples/textures/resources/custom_jupiter_crash.png index 451b591f17180d69d1229a74117fb971367f9ec4..2deaaeff7ba75e1c02889a5b6ae18b26ffde78fa 100644 GIT binary patch literal 29128 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 literal 23596 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�$XM>I!EBdYGyA znefL^w>EUdi7A;#iWVDDQDK|s=E|TdkArzgt;VnM=J5CJtPQB*CT)6VGeT)*Ud7dV zHIkMZ?R3@DkAGR1 z?=eWyhHGynT|8DzgjcjaWVO12*Vv+!7rrb#ZLq#Eq?p}aJfKePFXq@NFjhXv=cC?a zeYE~QWmicSWeUggu|r5Ed%y|*`Te{6D;Cl1Bn>I25e9h;#;K#HPFa)tv(xZgMINt}$0JAko58sg8 zmN@>it;`Uuq&sSNlR&LaGe5Un95QHzvOa68A@uguh}6fuF&w)A%Y8&E>&r;zeh#0$D-xM3N6eB#DQ3&x?UqC2Kblb2 z$rQF2MA!OD_hWRbAW~kP5eV+A(>p~_F~Ib~KBQE(izZ&=B%00~iJD@p8L4Y`oVvJ^ zNvi*9E3_<`t~fClFXK1!*?)X1%=)s5;0x0%Y!_>c>GA~ghjWYZS45v)y2A_f@Ubp? zTrkh4pWVlkcEe1?$`LgOQ02AL^k2`z&b$L9td`OSvImQaaSc&_qH;5y(=^&s`3HFA zX9CAY!g7#jCOEq=MCtysGxOUu#eDaX11KHkEZ37E-5DIOsiy z@dJ|P7VAsZNb=+SqTJ80;!5=W=FqE0Cl5bF${rXrLRsytXGl+DW9BRW`K*dJ^9iR4u7;Dj&6!wt>TGhS z<=8q*CS%b|B(q1$ct(39uwh|W`XHsHN0W`LN~^*OaVLY>jEr+2h*QsX#c3{*AsoZAp$nM!8VJF3#M_LAIEilmU5m>>BS^~T z(0Bt?7qKFu0BUn@Q$rSi)1nHJB+bmlg-d|EK+k6LCRgF1%9KYVoWBTG*Z~q*KpjlI(dGV-Ke6xU z3k3nQ+HA^*l;C=q-u|xjf(N&0i56`BtUkE!n$JkK)FPya zFwHwP25zsMjl{$(X0MA*e9o$P#~sc0W6)OpvSG39Gy46=t!I|ySFJ6o+G=?Ee5$Am;1< literal 33146 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 diff --git a/Examples/textures/textures_image_drawing.cs b/Examples/textures/textures_image_drawing.cs index 18206d6..8f7a3a9 100644 --- a/Examples/textures/textures_image_drawing.cs +++ b/Examples/textures/textures_image_drawing.cs @@ -1,7 +1,7 @@ using Raylib; using static Raylib.Raylib; -public partial class Examples +public partial class textures_image_drawing { - /******************************************************************************************* * * 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 void Main() { // 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(&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, new Rectangle( 0, 0, cat.width, cat.height }, (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; } + /******************************************************************************************* * * 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 Main() { // 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(ref 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(ref parrots, cat, new Rectangle( 0, 0, cat.width, cat.height ), new Rectangle( 30, 40, cat.width*1.5f, cat.height*1.5f )); ImageCrop(ref 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(ref parrots, new Vector2( 300, 230 ), font, "PARROTS ref 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; } } diff --git a/Examples/textures/textures_image_generation.cs b/Examples/textures/textures_image_generation.cs index 5153d1f..cddc2d0 100644 --- a/Examples/textures/textures_image_generation.cs +++ b/Examples/textures/textures_image_generation.cs @@ -1,7 +1,7 @@ using Raylib; using static Raylib.Raylib; -public partial class Examples +public partial class textures_image_generation { - /******************************************************************************************* * * 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) * ********************************************************************************************/ public const #define NUM_TEXTURES 7 // Currently we have 7 generation algorithms public static void 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 = new Texture2D[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((int)Mouse.LEFT_BUTTON) || IsKeyPressed((int)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; } + /******************************************************************************************* * * 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) * ********************************************************************************************/ public const int NUM_TEXTURES = 7; public static 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 isChecked = 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 = new Texture2D[NUM_TEXTURES]; textures[0] = LoadTextureFromImage(verticalGradient); textures[1] = LoadTextureFromImage(horizontalGradient); textures[2] = LoadTextureFromImage(radialGradient); textures[3] = LoadTextureFromImage(isChecked); textures[4] = LoadTextureFromImage(whiteNoise); textures[5] = LoadTextureFromImage(perlinNoise); textures[6] = LoadTextureFromImage(cellular); // Unload image data (CPU RAM) UnloadImage(verticalGradient); UnloadImage(horizontalGradient); UnloadImage(radialGradient); UnloadImage(isChecked); 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/Examples/textures/textures_image_loading.cs b/Examples/textures/textures_image_loading.cs index ff4dc41..22d5d50 100644 --- a/Examples/textures/textures_image_loading.cs +++ b/Examples/textures/textures_image_loading.cs @@ -1,7 +1,7 @@ using Raylib; using static Raylib.Raylib; -public partial class Examples +public partial class textures_image_loading { - /******************************************************************************************* * * 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 void 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; } + /******************************************************************************************* * * 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 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; } } diff --git a/Examples/textures/textures_image_processing.cs b/Examples/textures/textures_image_processing.cs index ec6bcd4..29d4245 100644 --- a/Examples/textures/textures_image_processing.cs +++ b/Examples/textures/textures_image_processing.cs @@ -1,7 +1,9 @@ using Raylib; using static Raylib.Raylib; +using static Raylib.PixelFormat; -public partial class Examples +public partial class textures_image_processing { - /******************************************************************************************* * * 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) * ********************************************************************************************/ public const #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 void 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 = new Rectangle[NUM_PROCESSES]; for (int i = 0; i < NUM_PROCESSES; i++) selectRecs[i] = new Rectangle( 40, 50 + 32*i, 150, 30 );; SetTargetFPS(60); //--------------------------------------------------------------------------------------- // Main game loop while (!WindowShouldClose()) // Detect window close button or ESC key { // Update //---------------------------------------------------------------------------------- if (IsKeyPressed((int)Key.DOWN)) { currentProcess++; if (currentProcess > 7) currentProcess = 0; textureReload = true; } else if (IsKeyPressed((int)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; } + /******************************************************************************************* * * 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) * ********************************************************************************************/ public const int NUM_PROCESSES = 8; enum ImageProcess + { NONE = 0, COLOR_GRAYSCALE, COLOR_TINT, COLOR_INVERT, COLOR_CONTRAST, COLOR_BRIGHTNESS, FLIP_VERTICAL, FLIP_HORIZONTAL } static string[] processText = { "NO PROCESSING", "COLOR GRAYSCALE", "COLOR TINT", "COLOR INVERT", "COLOR CONTRAST", "COLOR BRIGHTNESS", "FLIP VERTICAL", "FLIP HORIZONTAL" }; public static 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(ref image, (int)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 = (int)ImageProcess.NONE; bool textureReload = false; Rectangle[] selectRecs = new Rectangle[NUM_PROCESSES]; for (int i = 0; i < NUM_PROCESSES; i++) selectRecs[i] = new 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 (int)ImageProcess.COLOR_GRAYSCALE: ImageColorGrayscale(ref image); break; case (int)ImageProcess.COLOR_TINT: ImageColorTint(ref image, GREEN); break; case (int)ImageProcess.COLOR_INVERT: ImageColorInvert(ref image); break; case (int)ImageProcess.COLOR_CONTRAST: ImageColorContrast(ref image, -40); break; case (int)ImageProcess.COLOR_BRIGHTNESS: ImageColorBrightness(ref image, -80); break; case (int)ImageProcess.FLIP_VERTICAL: ImageFlipVertical(ref image); break; case (int)ImageProcess.FLIP_HORIZONTAL: ImageFlipHorizontal(ref 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((int)selectRecs[i].x, (int)selectRecs[i].y, (int)selectRecs[i].width, (int)selectRecs[i].height, (i == currentProcess) ? BLUE : GRAY); DrawText(processText[i], (int)(selectRecs[i].x + selectRecs[i].width/2 - MeasureText(processText[i], 10)/2), (int)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; } } diff --git a/Examples/textures/textures_image_text.cs b/Examples/textures/textures_image_text.cs index 8f4e880..670350c 100644 --- a/Examples/textures/textures_image_text.cs +++ b/Examples/textures/textures_image_text.cs @@ -1,7 +1,7 @@ using Raylib; using static Raylib.Raylib; -public partial class Examples +public partial class textures_image_text { - /******************************************************************************************* * * 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 void 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, new 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((int)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; } + /******************************************************************************************* * * 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 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, null); Image parrots = LoadImage("resources/parrots.png"); // Load image in CPU memory (RAM) // Draw over image using custom font ImageDrawTextEx(ref parrots, new 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 = new Vector2( 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]", new 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; } } diff --git a/Examples/textures/textures_logo_raylib.cs b/Examples/textures/textures_logo_raylib.cs index c8b16f9..b91957e 100644 --- a/Examples/textures/textures_logo_raylib.cs +++ b/Examples/textures/textures_logo_raylib.cs @@ -1,7 +1,7 @@ using Raylib; using static Raylib.Raylib; -public partial class Examples +public partial class textures_logo_raylib { - /******************************************************************************************* * * 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 void 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; } + /******************************************************************************************* * * 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 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; } } diff --git a/Examples/textures/textures_particles_blending.cs b/Examples/textures/textures_particles_blending.cs index 5145aeb..49cfa6c 100644 --- a/Examples/textures/textures_particles_blending.cs +++ b/Examples/textures/textures_particles_blending.cs @@ -1,7 +1,13 @@ using Raylib; using static Raylib.Raylib; +using static Raylib.BlendMode; -public partial class Examples +public partial class textures_particles_blending { - /******************************************************************************************* * * 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) * ********************************************************************************************/ public const #define MAX_PARTICLES 200 // Particle structure with basic data struct Particle { public Vector2 position; public Color color; public float alpha; public float size; public float rotation; public bool active; // NOTE: Use it to activate/deactive particle public } Particle; public static void Main() { // Initialization //-------------------------------------------------------------------------------------- int screenWidth = 800; int screenHeight = 450; InitWindow(screenWidth, screenHeight, "raylib [textures] example - particles blending"); // Particles pool, reuse them! Particle[] mouseTail = new Particle[MAX_PARTICLES]; // Initialize particles for (int i = 0; i < MAX_PARTICLES; i++) { mouseTail[i].position = new Vector2( 0, 0 );; mouseTail[i].color = new 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((int)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, new Rectangle( 0, 0, smoke.width, smoke.height );, new Rectangle( mouseTail[i].position.x, mouseTail[i].position.y, smoke.width*mouseTail[i].size, smoke.height*mouseTail[i].size );, new 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; } + /******************************************************************************************* * * 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) * ********************************************************************************************/ public const int MAX_PARTICLES = 200; + + // Particle structure with basic data + struct Particle { + public Vector2 position; public Color color; public float alpha; public float size; public float rotation; public bool active; // NOTE: Use it to activate/deactive particle + } public static int Main() { // Initialization //-------------------------------------------------------------------------------------- int screenWidth = 800; int screenHeight = 450; InitWindow(screenWidth, screenHeight, "raylib [textures] example - particles blending"); // Particles pool, reuse them! Particle[] mouseTail = new Particle[MAX_PARTICLES]; // Initialize particles for (int i = 0; i < MAX_PARTICLES; i++) { mouseTail[i].position = new Vector2( 0, 0 ); mouseTail[i].color = new 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 = (int)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 == (int)BLEND_ALPHA) blending = (int)BLEND_ADDITIVE; else blending = (int)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, new Rectangle( 0, 0, smoke.width, smoke.height ), new Rectangle( mouseTail[i].position.x, mouseTail[i].position.y, smoke.width*mouseTail[i].size, smoke.height*mouseTail[i].size ), new 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 == (int)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; } } diff --git a/Examples/textures/textures_raw_data.cs b/Examples/textures/textures_raw_data.cs index 78314cd..05c8dc4 100644 --- a/Examples/textures/textures_raw_data.cs +++ b/Examples/textures/textures_raw_data.cs @@ -1,7 +1,8 @@ using Raylib; using static Raylib.Raylib; +using static Raylib.PixelFormat; -public partial class Examples +public partial class textures_raw_data { - /******************************************************************************************* * * 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) * ********************************************************************************************/ public static void 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; } + /******************************************************************************************* * * 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) * ********************************************************************************************/ public static 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, (int)UNCOMPRESSED_R8G8B8A8, 0); Texture2D fudesumi = LoadTextureFromImage(fudesumiRaw); // Upload CPU (RAM) image to GPU (VRAM) UnloadImage(fudesumiRaw); // Unload CPU (RAM) image data // Generate a isChecked 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)); Color[] pixels = new Color[width*height]; 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 isCheckedIm = LoadImageEx(pixels, width, height); Texture2D isChecked = LoadTextureFromImage(isCheckedIm); UnloadImage(isCheckedIm); // 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(isChecked, screenWidth/2 - isChecked.width/2, screenHeight/2 - isChecked.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(isChecked); // Texture unloading CloseWindow(); // Close window and OpenGL context //-------------------------------------------------------------------------------------- return 0; } } diff --git a/Examples/textures/textures_rectangle.cs b/Examples/textures/textures_rectangle.cs index f9440bc..f6cfd2a 100644 --- a/Examples/textures/textures_rectangle.cs +++ b/Examples/textures/textures_rectangle.cs @@ -1,7 +1,7 @@ using Raylib; using static Raylib.Raylib; -public partial class Examples +public partial class textures_rectangle { - /******************************************************************************************* * * 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) * ********************************************************************************************/ public const #define MAX_FRAME_SPEED 15 public const #define MIN_FRAME_SPEED 1 public static void 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((int)Key.RIGHT)) framesSpeed++; else if (IsKeyPressed((int)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; } + /******************************************************************************************* * * 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) * ********************************************************************************************/ public const int MAX_FRAME_SPEED = 15; public const int MIN_FRAME_SPEED = 1; public static 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 = new Vector2( 350.0f, 280.0f ); Rectangle frameRec = new Rectangle( 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 + (int)frameRec.x, 40 + (int)frameRec.y, (int)frameRec.width, (int)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; } } diff --git a/Examples/textures/textures_srcrec_dstrec.cs b/Examples/textures/textures_srcrec_dstrec.cs index 731dbad..597c9c3 100644 --- a/Examples/textures/textures_srcrec_dstrec.cs +++ b/Examples/textures/textures_srcrec_dstrec.cs @@ -1,7 +1,7 @@ using Raylib; using static Raylib.Raylib; -public partial class Examples +public partial class textures_srcrec_dstrec { - /******************************************************************************************* * * 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 void 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; } + /******************************************************************************************* * * 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 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 = new Rectangle( 0, 0, frameWidth, frameHeight ); // NOTE: Destination rectangle (screen rectangle where drawing part of texture) Rectangle destRec = new Rectangle( 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 = new Vector2( 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((int)destRec.x, 0, (int)destRec.x, screenHeight, GRAY); DrawLine(0, (int)destRec.y, screenWidth, (int)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; } } diff --git a/Examples/textures/textures_to_image.cs b/Examples/textures/textures_to_image.cs index 31e1800..91970eb 100644 --- a/Examples/textures/textures_to_image.cs +++ b/Examples/textures/textures_to_image.cs @@ -1,7 +1,7 @@ using Raylib; using static Raylib.Raylib; -public partial class Examples +public partial class textures_to_image { - /******************************************************************************************* * * 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 void 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; } + /******************************************************************************************* * * 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 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; } } diff --git a/Raylib-cs.sln b/Raylib-cs.sln index 65ddc65..5ef9aa9 100644 --- a/Raylib-cs.sln +++ b/Raylib-cs.sln @@ -5,20 +5,16 @@ VisualStudioVersion = 15.0.27703.2035 MinimumVisualStudioVersion = 10.0.40219.1 Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Bindings", "Bindings\Bindings.csproj", "{9F30944C-415B-4763-91C7-81721117879D}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Generator", "Generator\Generator.csproj", "{063F21F1-12D3-41C6-B598-125C725955B1}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Examples", "Examples\Examples.csproj", "{EF58DEDB-3ACA-46F5-A443-1B93D28F206C}" -EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Test.NetCore", "Test.NetCore\Test.NetCore.csproj", "{1298EE9D-E480-4014-BED0-C7CFE94C4AD7}" EndProject +Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "Examples", "Examples\Examples.shproj", "{36E54E2A-5899-4D4D-9D78-120DB1B4C7B2}" +EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Test.NetFX", "Test.NetFX\Test.NetFX.csproj", "{55D7BB37-3DC7-4A33-B21E-4F549EC988B5}" EndProject -Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "Test.Common", "Test.Common\Test.Common.shproj", "{36E54E2A-5899-4D4D-9D78-120DB1B4C7B2}" -EndProject Global GlobalSection(SharedMSBuildProjectFiles) = preSolution - Test.Common\Test.Common.projitems*{36e54e2a-5899-4d4d-9d78-120db1b4c7b2}*SharedItemsImports = 13 - Test.Common\Test.Common.projitems*{55d7bb37-3dc7-4a33-b21e-4f549ec988b5}*SharedItemsImports = 4 + Examples\Examples.projitems*{36e54e2a-5899-4d4d-9d78-120db1b4c7b2}*SharedItemsImports = 13 + Examples\Examples.projitems*{55d7bb37-3dc7-4a33-b21e-4f549ec988b5}*SharedItemsImports = 4 EndGlobalSection GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -41,26 +37,6 @@ Global {9F30944C-415B-4763-91C7-81721117879D}.Release|x64.Build.0 = Release|x64 {9F30944C-415B-4763-91C7-81721117879D}.Release|x86.ActiveCfg = Release|x86 {9F30944C-415B-4763-91C7-81721117879D}.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|x64 - {063F21F1-12D3-41C6-B598-125C725955B1}.Debug|x64.Build.0 = Debug|x64 - {063F21F1-12D3-41C6-B598-125C725955B1}.Debug|x86.ActiveCfg = Debug|x86 - {063F21F1-12D3-41C6-B598-125C725955B1}.Debug|x86.Build.0 = Debug|x86 - {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|x64 - {063F21F1-12D3-41C6-B598-125C725955B1}.Release|x64.Build.0 = Release|x64 - {063F21F1-12D3-41C6-B598-125C725955B1}.Release|x86.ActiveCfg = Release|x86 - {063F21F1-12D3-41C6-B598-125C725955B1}.Release|x86.Build.0 = Release|x86 - {EF58DEDB-3ACA-46F5-A443-1B93D28F206C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {EF58DEDB-3ACA-46F5-A443-1B93D28F206C}.Debug|Any CPU.Build.0 = Debug|Any CPU - {EF58DEDB-3ACA-46F5-A443-1B93D28F206C}.Debug|x64.ActiveCfg = Debug|x64 - {EF58DEDB-3ACA-46F5-A443-1B93D28F206C}.Debug|x86.ActiveCfg = Debug|x86 - {EF58DEDB-3ACA-46F5-A443-1B93D28F206C}.Release|Any CPU.ActiveCfg = Release|Any CPU - {EF58DEDB-3ACA-46F5-A443-1B93D28F206C}.Release|Any CPU.Build.0 = Release|Any CPU - {EF58DEDB-3ACA-46F5-A443-1B93D28F206C}.Release|x64.ActiveCfg = Release|x64 - {EF58DEDB-3ACA-46F5-A443-1B93D28F206C}.Release|x86.ActiveCfg = Release|x86 {1298EE9D-E480-4014-BED0-C7CFE94C4AD7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {1298EE9D-E480-4014-BED0-C7CFE94C4AD7}.Debug|Any CPU.Build.0 = Debug|Any CPU {1298EE9D-E480-4014-BED0-C7CFE94C4AD7}.Debug|x64.ActiveCfg = Debug|x64 diff --git a/Test.Common/Test.Common.projitems b/Test.Common/Test.Common.projitems deleted file mode 100644 index d597e9c..0000000 --- a/Test.Common/Test.Common.projitems +++ /dev/null @@ -1,14 +0,0 @@ - - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - true - 36e54e2a-5899-4d4d-9d78-120db1b4c7b2 - - - Test.Common - - - - - \ No newline at end of file diff --git a/Test.Common/Test.cs b/Test.Common/Test.cs deleted file mode 100644 index c9ada00..0000000 --- a/Test.Common/Test.cs +++ /dev/null @@ -1,52 +0,0 @@ -using System; -using Raylib; -using static Raylib.Raylib; - -namespace Test.Common -{ - public static class Test - { - public static void Run() - { - // Initialization - //-------------------------------------------------------------------------------------- - int screenWidth = 800; - int screenHeight = 450; - - // SetConfigFlags((int)Flag.WINDOW_UNDECORATED); - InitWindow(screenWidth, screenHeight, "raylib [core] example - basic window"); - - var model = LoadModel("bridge.obj"); - model.mesh.Vertices[0] = 5f; - - 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 - //-------------------------------------------------------------------------------------- - } - - } -} diff --git a/Test.NetCore/Program.cs b/Test.NetCore/Program.cs index c208cec..eebc491 100644 --- a/Test.NetCore/Program.cs +++ b/Test.NetCore/Program.cs @@ -1,12 +1,11 @@ -using Test.Common; - + namespace Test.NetCore { class Program { static void Main(string[] args) { - Common.Test.Run(); + core_basic_window.Main(); } } }