raylib/examples/textures/textures_image_generation.c

107 lines
4.3 KiB
C
Raw Normal View History

/*******************************************************************************************
*
* raylib [textures] example - Procedural images generation
*
2017-07-02 20:29:01 +03:00
* 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)
*
2017-07-02 20:29:01 +03:00
* Copyright (c) 2O17 Wilhem Barbier (@nounoursheureux)
*
********************************************************************************************/
#include "raylib.h"
2017-10-17 12:51:50 +03:00
#define NUM_TEXTURES 7 // Currently we have 7 generation algorithms
2019-05-20 17:36:42 +03:00
int main(void)
{
2017-07-02 20:29:01 +03:00
// Initialization
//--------------------------------------------------------------------------------------
2019-05-20 17:36:42 +03:00
const int screenWidth = 800;
const 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);
2019-05-27 01:18:15 +03:00
Texture2D textures[NUM_TEXTURES] = { 0 };
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);
2019-05-20 17:36:42 +03:00
2017-10-17 12:51:50 +03:00
// Unload image data (CPU RAM)
UnloadImage(verticalGradient);
UnloadImage(horizontalGradient);
UnloadImage(radialGradient);
UnloadImage(checked);
UnloadImage(whiteNoise);
UnloadImage(perlinNoise);
UnloadImage(cellular);
int currentTexture = 0;
2019-05-20 17:36:42 +03:00
2017-07-02 20:29:01 +03:00
SetTargetFPS(60);
//---------------------------------------------------------------------------------------
2019-05-20 17:36:42 +03:00
2017-07-02 20:29:01 +03:00
// Main game loop
while (!WindowShouldClose())
{
2017-07-02 20:29:01 +03:00
// Update
//----------------------------------------------------------------------------------
if (IsMouseButtonPressed(MOUSE_LEFT_BUTTON) || IsKeyPressed(KEY_RIGHT))
{
2017-10-17 12:51:50 +03:00
currentTexture = (currentTexture + 1)%NUM_TEXTURES; // Cycle between the textures
}
2017-07-02 20:29:01 +03:00
//----------------------------------------------------------------------------------
2017-07-02 20:29:01 +03:00
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
2019-05-20 17:36:42 +03:00
ClearBackground(RAYWHITE);
2019-05-20 17:36:42 +03:00
DrawTexture(textures[currentTexture], 0, 0, WHITE);
2019-05-20 17:36:42 +03:00
2017-10-17 12:51:50 +03:00
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);
2019-05-20 17:36:42 +03:00
2017-10-17 12:51:50 +03:00
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;
}
2019-05-20 17:36:42 +03:00
EndDrawing();
2017-07-02 20:29:01 +03:00
//----------------------------------------------------------------------------------
}
2017-07-02 20:29:01 +03:00
// De-Initialization
//--------------------------------------------------------------------------------------
2019-05-20 17:36:42 +03:00
2017-07-02 20:29:01 +03:00
// Unload textures data (GPU VRAM)
2017-10-17 12:51:50 +03:00
for (int i = 0; i < NUM_TEXTURES; i++) UnloadTexture(textures[i]);
2019-05-20 17:36:42 +03:00
2017-07-02 20:29:01 +03:00
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
2019-05-20 17:36:42 +03:00
2017-07-02 20:29:01 +03:00
return 0;
}