glm/test/gtx/gtx_noise.cpp

200 lines
6.5 KiB
C++
Raw Normal View History

2011-04-21 11:27:05 +00:00
///////////////////////////////////////////////////////////////////////////////////////////////////
// OpenGL Mathematics Copyright (c) 2005 - 2011 G-Truc Creation (www.g-truc.net)
///////////////////////////////////////////////////////////////////////////////////////////////////
// Created : 2011-04-21
2011-04-26 14:46:22 +00:00
// Updated : 2011-04-26
2011-04-21 11:27:05 +00:00
// Licence : This source is under MIT licence
// File : test/gtx/noise.cpp
///////////////////////////////////////////////////////////////////////////////////////////////////
#include <glm/glm.hpp>
#include <glm/gtx/noise.hpp>
2011-06-23 19:07:13 +00:00
#include <gli/gli.hpp>
2011-09-21 16:48:49 +00:00
#include <gli/gtx/loader.hpp>
2011-04-21 11:27:05 +00:00
#include <iostream>
2011-06-01 09:45:24 +00:00
int test_simplex()
2011-04-21 11:27:05 +00:00
{
2011-09-21 16:48:49 +00:00
std::size_t const Size = 256;
2011-06-07 14:03:48 +00:00
{
2011-09-21 16:48:49 +00:00
std::vector<glm::byte> ImageData(Size * Size * 3);
2011-06-07 14:03:48 +00:00
2011-09-21 16:48:49 +00:00
for(std::size_t y = 0; y < Size; ++y)
for(std::size_t x = 0; x < Size; ++x)
2011-06-07 14:03:48 +00:00
{
2011-09-26 01:20:23 +00:00
ImageData[(x + y * Size) * 3 + 0] = glm::byte(glm::simplex(glm::vec2(x / 64.f, y / 64.f)) * 128.f + 127.f);
2011-09-21 16:48:49 +00:00
ImageData[(x + y * Size) * 3 + 1] = ImageData[(x + y * Size) * 3 + 0];
ImageData[(x + y * Size) * 3 + 2] = ImageData[(x + y * Size) * 3 + 0];
2011-06-07 14:03:48 +00:00
}
2011-09-21 16:48:49 +00:00
gli::texture2D Texture(1);
Texture[0] = gli::image2D(glm::uvec2(Size), gli::RGB8U);
memcpy(Texture[0].data(), &ImageData[0], ImageData.size());
gli::saveDDS9(Texture, "texture_simplex2d_256.dds");
2011-06-07 14:03:48 +00:00
}
{
2011-09-21 16:48:49 +00:00
std::vector<glm::byte> ImageData(Size * Size * 3);
2011-06-07 14:03:48 +00:00
2011-09-21 16:48:49 +00:00
for(std::size_t y = 0; y < Size; ++y)
for(std::size_t x = 0; x < Size; ++x)
2011-06-07 14:03:48 +00:00
{
2011-09-26 01:20:23 +00:00
ImageData[(x + y * Size) * 3 + 0] = glm::byte(glm::simplex(glm::vec3(x / 64.f, y / 64.f, 0.5f)) * 128.f + 127.f);
2011-09-21 16:48:49 +00:00
ImageData[(x + y * Size) * 3 + 1] = ImageData[(x + y * Size) * 3 + 0];
ImageData[(x + y * Size) * 3 + 2] = ImageData[(x + y * Size) * 3 + 0];
2011-06-07 14:03:48 +00:00
}
2011-09-21 16:48:49 +00:00
gli::texture2D Texture(1);
Texture[0] = gli::image2D(glm::uvec2(Size), gli::RGB8U);
memcpy(Texture[0].data(), &ImageData[0], ImageData.size());
gli::saveDDS9(Texture, "texture_simplex3d_256.dds");
2011-06-07 14:03:48 +00:00
}
{
2011-09-21 16:48:49 +00:00
std::vector<glm::byte> ImageData(Size * Size * 3);
2011-06-07 14:03:48 +00:00
2011-09-21 16:48:49 +00:00
for(std::size_t y = 0; y < Size; ++y)
for(std::size_t x = 0; x < Size; ++x)
2011-06-07 14:03:48 +00:00
{
2011-09-26 01:20:23 +00:00
ImageData[(x + y * Size) * 3 + 0] = glm::byte(glm::simplex(glm::vec4(x / 64.f, y / 64.f, 0.5f, 0.5f)) * 128.f + 127.f);
2011-09-21 16:48:49 +00:00
ImageData[(x + y * Size) * 3 + 1] = ImageData[(x + y * Size) * 3 + 0];
ImageData[(x + y * Size) * 3 + 2] = ImageData[(x + y * Size) * 3 + 0];
2011-06-07 14:03:48 +00:00
}
2011-09-21 16:48:49 +00:00
gli::texture2D Texture(1);
Texture[0] = gli::image2D(glm::uvec2(Size), gli::RGB8U);
memcpy(Texture[0].data(), &ImageData[0], ImageData.size());
gli::saveDDS9(Texture, "texture_simplex4d_256.dds");
}
2011-04-26 14:46:22 +00:00
2011-06-01 09:45:24 +00:00
return 0;
}
int test_perlin()
{
2011-09-21 16:48:49 +00:00
std::size_t const Size = 256;
2011-06-07 14:03:48 +00:00
{
2011-09-21 16:48:49 +00:00
std::vector<glm::byte> ImageData(Size * Size * 3);
2011-06-07 14:03:48 +00:00
2011-09-21 16:48:49 +00:00
for(std::size_t y = 0; y < Size; ++y)
for(std::size_t x = 0; x < Size; ++x)
2011-06-07 14:03:48 +00:00
{
2011-09-26 01:20:23 +00:00
ImageData[(x + y * Size) * 3 + 0] = glm::byte(glm::perlin(glm::vec2(x / 64.f, y / 64.f)) * 128.f + 127.f);
2011-09-21 16:48:49 +00:00
ImageData[(x + y * Size) * 3 + 1] = ImageData[(x + y * Size) * 3 + 0];
ImageData[(x + y * Size) * 3 + 2] = ImageData[(x + y * Size) * 3 + 0];
2011-06-07 14:03:48 +00:00
}
2011-09-21 16:48:49 +00:00
gli::texture2D Texture(1);
Texture[0] = gli::image2D(glm::uvec2(Size), gli::RGB8U);
memcpy(Texture[0].data(), &ImageData[0], ImageData.size());
gli::saveDDS9(Texture, "texture_perlin2d_256.dds");
2011-06-07 14:03:48 +00:00
}
2011-09-21 16:48:49 +00:00
2011-06-07 14:03:48 +00:00
{
2011-09-21 16:48:49 +00:00
std::vector<glm::byte> ImageData(Size * Size * 3);
2011-06-07 14:03:48 +00:00
2011-09-21 16:48:49 +00:00
for(std::size_t y = 0; y < Size; ++y)
for(std::size_t x = 0; x < Size; ++x)
2011-06-07 14:03:48 +00:00
{
2011-09-26 01:20:23 +00:00
ImageData[(x + y * Size) * 3 + 0] = glm::byte(glm::perlin(glm::vec3(x / 64.f, y / 64.f, 0.5f)) * 128.f + 127.f);
2011-09-21 16:48:49 +00:00
ImageData[(x + y * Size) * 3 + 1] = ImageData[(x + y * Size) * 3 + 0];
ImageData[(x + y * Size) * 3 + 2] = ImageData[(x + y * Size) * 3 + 0];
2011-06-07 14:03:48 +00:00
}
2011-09-21 16:48:49 +00:00
gli::texture2D Texture(1);
Texture[0] = gli::image2D(glm::uvec2(Size), gli::RGB8U);
memcpy(Texture[0].data(), &ImageData[0], ImageData.size());
gli::saveDDS9(Texture, "texture_perlin3d_256.dds");
2011-06-07 14:03:48 +00:00
}
{
2011-09-21 16:48:49 +00:00
std::vector<glm::byte> ImageData(Size * Size * 3);
2011-06-07 14:03:48 +00:00
2011-09-21 16:48:49 +00:00
for(std::size_t y = 0; y < Size; ++y)
for(std::size_t x = 0; x < Size; ++x)
2011-06-07 14:03:48 +00:00
{
2011-09-26 01:20:23 +00:00
ImageData[(x + y * Size) * 3 + 0] = glm::byte(glm::perlin(glm::vec4(x / 64.f, y / 64.f, 0.5f, 0.5f)) * 128.f + 127.f);
2011-09-21 16:48:49 +00:00
ImageData[(x + y * Size) * 3 + 1] = ImageData[(x + y * Size) * 3 + 0];
ImageData[(x + y * Size) * 3 + 2] = ImageData[(x + y * Size) * 3 + 0];
2011-06-07 14:03:48 +00:00
}
2011-09-21 16:48:49 +00:00
gli::texture2D Texture(1);
Texture[0] = gli::image2D(glm::uvec2(Size), gli::RGB8U);
memcpy(Texture[0].data(), &ImageData[0], ImageData.size());
gli::saveDDS9(Texture, "texture_perlin4d_256.dds");
}
2011-06-01 09:45:24 +00:00
return 0;
}
int test_perlin_pedioric()
{
2011-09-21 16:48:49 +00:00
std::size_t const Size = 256;
2011-06-07 14:03:48 +00:00
{
2011-09-21 16:48:49 +00:00
std::vector<glm::byte> ImageData(Size * Size * 3);
2011-06-07 14:03:48 +00:00
2011-09-21 16:48:49 +00:00
for(std::size_t y = 0; y < Size; ++y)
for(std::size_t x = 0; x < Size; ++x)
2011-06-07 14:03:48 +00:00
{
2011-09-26 01:20:23 +00:00
ImageData[(x + y * Size) * 3 + 0] = glm::byte(glm::perlin(glm::vec2(x / 64.f, y / 64.f), glm::vec2(2.0f)) * 128.f + 127.f);
2011-09-21 16:48:49 +00:00
ImageData[(x + y * Size) * 3 + 1] = ImageData[(x + y * Size) * 3 + 0];
ImageData[(x + y * Size) * 3 + 2] = ImageData[(x + y * Size) * 3 + 0];
2011-06-07 14:03:48 +00:00
}
2011-09-21 16:48:49 +00:00
gli::texture2D Texture(1);
Texture[0] = gli::image2D(glm::uvec2(Size), gli::RGB8U);
memcpy(Texture[0].data(), &ImageData[0], ImageData.size());
gli::saveDDS9(Texture, "texture_perlin_pedioric_2d_256.dds");
2011-06-07 14:03:48 +00:00
}
2011-09-21 16:48:49 +00:00
2011-06-07 14:03:48 +00:00
{
2011-09-21 16:48:49 +00:00
std::vector<glm::byte> ImageData(Size * Size * 3);
2011-06-07 14:03:48 +00:00
2011-09-21 16:48:49 +00:00
for(std::size_t y = 0; y < Size; ++y)
for(std::size_t x = 0; x < Size; ++x)
2011-06-07 14:03:48 +00:00
{
2011-09-26 01:20:23 +00:00
ImageData[(x + y * Size) * 3 + 0] = glm::byte(glm::perlin(glm::vec3(x / 64.f, y / 64.f, 0.5f), glm::vec3(2.0f)) * 128.f + 127.f);
2011-09-21 16:48:49 +00:00
ImageData[(x + y * Size) * 3 + 1] = ImageData[(x + y * Size) * 3 + 0];
ImageData[(x + y * Size) * 3 + 2] = ImageData[(x + y * Size) * 3 + 0];
2011-06-07 14:03:48 +00:00
}
2011-09-21 16:48:49 +00:00
gli::texture2D Texture(1);
Texture[0] = gli::image2D(glm::uvec2(Size), gli::RGB8U);
memcpy(Texture[0].data(), &ImageData[0], ImageData.size());
gli::saveDDS9(Texture, "texture_perlin_pedioric_3d_256.dds");
2011-06-07 14:03:48 +00:00
}
{
2011-09-21 16:48:49 +00:00
std::vector<glm::byte> ImageData(Size * Size * 3);
2011-06-07 14:03:48 +00:00
2011-09-21 16:48:49 +00:00
for(std::size_t y = 0; y < Size; ++y)
for(std::size_t x = 0; x < Size; ++x)
2011-06-07 14:03:48 +00:00
{
2011-09-26 01:20:23 +00:00
ImageData[(x + y * Size) * 3 + 0] = glm::byte(glm::perlin(glm::vec4(x / 64.f, y / 64.f, 0.5f, 0.5f), glm::vec4(2.0f)) * 128.f + 127.f);
2011-09-21 16:48:49 +00:00
ImageData[(x + y * Size) * 3 + 1] = ImageData[(x + y * Size) * 3 + 0];
ImageData[(x + y * Size) * 3 + 2] = ImageData[(x + y * Size) * 3 + 0];
2011-06-07 14:03:48 +00:00
}
2011-09-21 16:48:49 +00:00
gli::texture2D Texture(1);
Texture[0] = gli::image2D(glm::uvec2(Size), gli::RGB8U);
memcpy(Texture[0].data(), &ImageData[0], ImageData.size());
gli::saveDDS9(Texture, "texture_perlin_pedioric_4d_256.dds");
}
2011-06-01 09:45:24 +00:00
return 0;
}
int main()
{
int Error = 0;
Error += test_simplex();
Error += test_perlin();
Error += test_perlin_pedioric();
return Error;
2011-04-21 11:27:05 +00:00
}