2023-09-07 12:51:48 +00:00
|
|
|
/*************************************************************************
|
2023-08-03 09:37:32 +00:00
|
|
|
*
|
2023-09-07 12:51:48 +00:00
|
|
|
* Orca
|
|
|
|
* Copyright 2023 Martin Fouilleul and the Orca project contributors
|
|
|
|
* See LICENSE.txt for licensing information
|
2023-08-03 09:37:32 +00:00
|
|
|
*
|
2023-09-07 12:51:48 +00:00
|
|
|
**************************************************************************/
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
#include "glsl_shaders.h"
|
|
|
|
#include "math.h"
|
|
|
|
#include "orca.h"
|
2023-08-03 09:37:32 +00:00
|
|
|
|
|
|
|
//----------------------------------------------------------------
|
|
|
|
//NOTE(martin): GL vertex struct and identifiers
|
|
|
|
//----------------------------------------------------------------
|
2023-08-19 12:49:23 +00:00
|
|
|
typedef struct Vertex
|
|
|
|
{
|
|
|
|
float x, y;
|
|
|
|
} Vertex;
|
2023-08-03 09:37:32 +00:00
|
|
|
|
|
|
|
typedef struct advect_program
|
|
|
|
{
|
2023-08-19 12:49:23 +00:00
|
|
|
GLuint prog;
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
GLint pos;
|
|
|
|
GLint src;
|
|
|
|
GLint velocity;
|
|
|
|
GLint delta;
|
|
|
|
GLint dissipation;
|
2023-08-03 09:37:32 +00:00
|
|
|
|
|
|
|
} advect_program;
|
|
|
|
|
|
|
|
typedef struct div_program
|
|
|
|
{
|
2023-08-19 12:49:23 +00:00
|
|
|
GLuint prog;
|
|
|
|
GLint pos;
|
|
|
|
GLint src;
|
2023-08-03 09:37:32 +00:00
|
|
|
|
|
|
|
} div_program;
|
|
|
|
|
|
|
|
typedef struct jacobi_program
|
|
|
|
{
|
2023-08-19 12:49:23 +00:00
|
|
|
GLuint prog;
|
|
|
|
GLint pos;
|
|
|
|
GLint xTex;
|
|
|
|
GLint bTex;
|
2023-08-03 09:37:32 +00:00
|
|
|
|
|
|
|
} jacobi_program;
|
|
|
|
|
|
|
|
typedef struct blit_residue_program
|
|
|
|
{
|
2023-08-19 12:49:23 +00:00
|
|
|
GLuint prog;
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
GLint pos;
|
|
|
|
GLint mvp;
|
|
|
|
GLint xTex;
|
|
|
|
GLint bTex;
|
2023-08-03 09:37:32 +00:00
|
|
|
} blit_residue_program;
|
|
|
|
|
|
|
|
typedef struct multigrid_restrict_residual_program
|
|
|
|
{
|
2023-08-19 12:49:23 +00:00
|
|
|
GLuint prog;
|
|
|
|
GLint pos;
|
|
|
|
GLint xTex;
|
|
|
|
GLint bTex;
|
2023-08-03 09:37:32 +00:00
|
|
|
|
|
|
|
} multigrid_restrict_residual_program;
|
|
|
|
|
|
|
|
typedef struct multigrid_correct_program
|
|
|
|
{
|
2023-08-19 12:49:23 +00:00
|
|
|
GLuint prog;
|
|
|
|
GLint pos;
|
|
|
|
GLint src;
|
|
|
|
GLint error;
|
|
|
|
GLint invGridSize;
|
2023-08-03 09:37:32 +00:00
|
|
|
|
|
|
|
} multigrid_correct_program;
|
|
|
|
|
|
|
|
typedef struct subtract_program
|
|
|
|
{
|
2023-08-19 12:49:23 +00:00
|
|
|
GLuint prog;
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
GLint pos;
|
|
|
|
GLint src;
|
|
|
|
GLint pressure;
|
|
|
|
GLint invGridSize;
|
2023-08-03 09:37:32 +00:00
|
|
|
|
|
|
|
} subtract_program;
|
|
|
|
|
|
|
|
typedef struct blit_program
|
|
|
|
{
|
2023-08-19 12:49:23 +00:00
|
|
|
GLuint prog;
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
GLint pos;
|
|
|
|
GLint mvp;
|
|
|
|
GLint gridSize;
|
|
|
|
GLint tex;
|
2023-08-03 09:37:32 +00:00
|
|
|
} blit_program;
|
|
|
|
|
|
|
|
typedef struct splat_program
|
|
|
|
{
|
2023-08-19 12:49:23 +00:00
|
|
|
GLuint prog;
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
GLint pos;
|
|
|
|
GLint src;
|
|
|
|
GLint splatPos;
|
|
|
|
GLint splatColor;
|
|
|
|
GLint radius;
|
|
|
|
GLint additive;
|
|
|
|
GLint blending;
|
|
|
|
GLint randomize;
|
2023-08-03 09:37:32 +00:00
|
|
|
|
|
|
|
} splat_program;
|
|
|
|
|
|
|
|
typedef struct frame_buffer
|
|
|
|
{
|
2023-08-19 12:49:23 +00:00
|
|
|
GLuint textures[2];
|
|
|
|
GLuint fbos[2];
|
2023-08-03 09:37:32 +00:00
|
|
|
} frame_buffer;
|
|
|
|
|
|
|
|
advect_program advectProgram;
|
|
|
|
div_program divProgram;
|
|
|
|
jacobi_program jacobiProgram;
|
|
|
|
multigrid_restrict_residual_program multigridRestrictResidualProgram;
|
|
|
|
multigrid_correct_program multigridCorrectProgram;
|
|
|
|
|
|
|
|
subtract_program subtractProgram;
|
|
|
|
splat_program splatProgram;
|
|
|
|
blit_program blitProgram;
|
|
|
|
blit_program blitDivProgram;
|
|
|
|
blit_residue_program blitResidueProgram;
|
|
|
|
|
|
|
|
frame_buffer colorBuffer;
|
|
|
|
frame_buffer velocityBuffer;
|
|
|
|
|
|
|
|
const int MULTIGRID_COUNT = 4;
|
|
|
|
frame_buffer pressureBuffer[4];
|
|
|
|
frame_buffer divBuffer[4];
|
|
|
|
|
|
|
|
GLuint vertexBuffer;
|
|
|
|
|
2023-08-23 10:35:25 +00:00
|
|
|
oc_surface surface;
|
|
|
|
|
2023-08-03 09:37:32 +00:00
|
|
|
//----------------------------------------------------------------
|
|
|
|
//NOTE(martin): initialization
|
|
|
|
//----------------------------------------------------------------
|
|
|
|
|
|
|
|
GLuint compile_shader(const char* vs, const char* fs)
|
|
|
|
{
|
2023-08-19 12:49:23 +00:00
|
|
|
GLuint vertexShader = glCreateShader(GL_VERTEX_SHADER);
|
|
|
|
glShaderSource(vertexShader, 1, &vs, 0);
|
|
|
|
glCompileShader(vertexShader);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
GLuint fragmentShader = glCreateShader(GL_FRAGMENT_SHADER);
|
|
|
|
glShaderSource(fragmentShader, 1, &fs, 0);
|
|
|
|
glCompileShader(fragmentShader);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
GLuint prog = glCreateProgram();
|
|
|
|
glAttachShader(prog, vertexShader);
|
|
|
|
glAttachShader(prog, fragmentShader);
|
|
|
|
glLinkProgram(prog);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
int status = 0;
|
|
|
|
glGetProgramiv(prog, GL_LINK_STATUS, &status);
|
|
|
|
if(status != GL_TRUE)
|
|
|
|
{
|
|
|
|
oc_log_error("program failed to link: ");
|
|
|
|
int logSize = 0;
|
|
|
|
glGetProgramiv(prog, GL_INFO_LOG_LENGTH, &logSize);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
oc_arena_scope scratch = oc_scratch_begin();
|
|
|
|
char* log = oc_arena_push(scratch.arena, logSize);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
glGetProgramInfoLog(prog, logSize, 0, log);
|
|
|
|
oc_log_error("%s\n", log);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
oc_scratch_end(scratch);
|
|
|
|
}
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
int err = glGetError();
|
|
|
|
if(err)
|
|
|
|
{
|
|
|
|
oc_log_error("gl error %i\n", err);
|
|
|
|
}
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
return (prog);
|
2023-08-03 09:37:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void init_advect(advect_program* program)
|
|
|
|
{
|
2023-08-19 12:49:23 +00:00
|
|
|
oc_log_info("compiling advect...");
|
|
|
|
program->prog = compile_shader(glsl_common_vertex, glsl_advect);
|
|
|
|
program->pos = glGetAttribLocation(program->prog, "pos");
|
|
|
|
program->src = glGetUniformLocation(program->prog, "src");
|
|
|
|
program->velocity = glGetUniformLocation(program->prog, "velocity");
|
|
|
|
program->delta = glGetUniformLocation(program->prog, "delta");
|
|
|
|
program->dissipation = glGetUniformLocation(program->prog, "dissipation");
|
2023-08-03 09:37:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void init_div(div_program* program)
|
|
|
|
{
|
2023-08-19 12:49:23 +00:00
|
|
|
oc_log_info("compiling div...");
|
|
|
|
program->prog = compile_shader(glsl_common_vertex, glsl_divergence);
|
|
|
|
program->pos = glGetAttribLocation(program->prog, "pos");
|
|
|
|
program->src = glGetUniformLocation(program->prog, "src");
|
2023-08-03 09:37:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void init_jacobi(jacobi_program* program)
|
|
|
|
{
|
2023-08-19 12:49:23 +00:00
|
|
|
oc_log_info("compiling jacobi...");
|
|
|
|
program->prog = compile_shader(glsl_common_vertex, glsl_jacobi_step);
|
|
|
|
program->pos = glGetAttribLocation(program->prog, "pos");
|
|
|
|
program->xTex = glGetUniformLocation(program->prog, "xTex");
|
|
|
|
program->bTex = glGetUniformLocation(program->prog, "bTex");
|
2023-08-03 09:37:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void init_multigrid_restrict_residual(multigrid_restrict_residual_program* program)
|
|
|
|
{
|
2023-08-19 12:49:23 +00:00
|
|
|
oc_log_info("compiling multigrid restrict residual...");
|
|
|
|
program->prog = compile_shader(glsl_common_vertex, glsl_multigrid_restrict_residual);
|
|
|
|
program->pos = glGetAttribLocation(program->prog, "pos");
|
|
|
|
program->xTex = glGetUniformLocation(program->prog, "xTex");
|
|
|
|
program->bTex = glGetUniformLocation(program->prog, "bTex");
|
2023-08-03 09:37:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void init_multigrid_correct(multigrid_correct_program* program)
|
|
|
|
{
|
2023-08-19 12:49:23 +00:00
|
|
|
oc_log_info("compiling multigrid correct...");
|
|
|
|
program->prog = compile_shader(glsl_common_vertex, glsl_multigrid_correct);
|
|
|
|
program->pos = glGetAttribLocation(program->prog, "pos");
|
|
|
|
program->src = glGetUniformLocation(program->prog, "src");
|
|
|
|
program->error = glGetUniformLocation(program->prog, "error");
|
|
|
|
program->invGridSize = glGetUniformLocation(program->prog, "invGridSize");
|
2023-08-03 09:37:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void init_subtract(subtract_program* program)
|
|
|
|
{
|
2023-08-19 12:49:23 +00:00
|
|
|
oc_log_info("compiling subtract...");
|
|
|
|
program->prog = compile_shader(glsl_common_vertex, glsl_subtract_pressure);
|
|
|
|
program->pos = glGetAttribLocation(program->prog, "pos");
|
|
|
|
program->src = glGetUniformLocation(program->prog, "src");
|
|
|
|
program->pressure = glGetUniformLocation(program->prog, "pressure");
|
|
|
|
program->invGridSize = glGetUniformLocation(program->prog, "invGridSize");
|
2023-08-03 09:37:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void init_splat(splat_program* program)
|
|
|
|
{
|
2023-08-19 12:49:23 +00:00
|
|
|
oc_log_info("compiling splat...");
|
|
|
|
program->prog = compile_shader(glsl_common_vertex, glsl_splat);
|
|
|
|
program->pos = glGetAttribLocation(program->prog, "pos");
|
|
|
|
program->src = glGetUniformLocation(program->prog, "src");
|
|
|
|
program->splatPos = glGetUniformLocation(program->prog, "splatPos");
|
|
|
|
program->splatColor = glGetUniformLocation(program->prog, "splatColor");
|
|
|
|
program->radius = glGetUniformLocation(program->prog, "radius");
|
|
|
|
program->additive = glGetUniformLocation(program->prog, "additive");
|
|
|
|
program->blending = glGetUniformLocation(program->prog, "blending");
|
|
|
|
program->randomize = glGetUniformLocation(program->prog, "randomize");
|
2023-08-03 09:37:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void init_blit(blit_program* program)
|
|
|
|
{
|
2023-08-19 12:49:23 +00:00
|
|
|
oc_log_info("compiling blit...");
|
|
|
|
program->prog = compile_shader(glsl_blit_vertex, glsl_blit_fragment);
|
|
|
|
program->pos = glGetAttribLocation(program->prog, "pos");
|
|
|
|
program->mvp = glGetUniformLocation(program->prog, "mvp");
|
|
|
|
program->tex = glGetUniformLocation(program->prog, "tex");
|
|
|
|
program->gridSize = glGetUniformLocation(program->prog, "gridSize");
|
2023-08-03 09:37:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void init_blit_div(blit_program* program)
|
|
|
|
{
|
2023-08-19 12:49:23 +00:00
|
|
|
oc_log_info("compiling blit div...");
|
|
|
|
program->prog = compile_shader(glsl_blit_div_vertex, glsl_blit_div_fragment);
|
|
|
|
program->pos = glGetAttribLocation(program->prog, "pos");
|
|
|
|
program->mvp = glGetUniformLocation(program->prog, "mvp");
|
|
|
|
program->tex = glGetUniformLocation(program->prog, "tex");
|
2023-08-03 09:37:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void init_blit_residue(blit_residue_program* program)
|
|
|
|
{
|
2023-08-19 12:49:23 +00:00
|
|
|
oc_log_info("compiling blit residue...");
|
|
|
|
program->prog = compile_shader(glsl_blit_div_vertex, glsl_blit_residue_fragment);
|
|
|
|
program->pos = glGetAttribLocation(program->prog, "pos");
|
|
|
|
program->mvp = glGetUniformLocation(program->prog, "mvp");
|
|
|
|
program->xTex = glGetUniformLocation(program->prog, "xTex");
|
|
|
|
program->bTex = glGetUniformLocation(program->prog, "bTex");
|
2023-08-03 09:37:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GLuint create_texture(int width, int height, GLenum internalFormat, GLenum format, GLenum type, char* initData)
|
|
|
|
{
|
2023-08-19 12:49:23 +00:00
|
|
|
GLuint texture;
|
|
|
|
glGenTextures(1, &texture);
|
|
|
|
glBindTexture(GL_TEXTURE_2D, texture);
|
|
|
|
glTexImage2D(GL_TEXTURE_2D, 0, internalFormat, width, height, 0, format, type, initData);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
|
|
|
|
return (texture);
|
2023-08-03 09:37:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GLuint create_fbo(GLuint texture)
|
|
|
|
{
|
2023-08-19 12:49:23 +00:00
|
|
|
GLuint fbo;
|
|
|
|
glGenFramebuffers(1, &fbo);
|
|
|
|
glBindFramebuffer(GL_FRAMEBUFFER, fbo);
|
|
|
|
glBindTexture(GL_TEXTURE_2D, texture);
|
|
|
|
glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, texture, 0);
|
|
|
|
return (fbo);
|
2023-08-03 09:37:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void init_frame_buffer(frame_buffer* framebuffer,
|
2023-08-19 12:49:23 +00:00
|
|
|
int width,
|
2023-08-03 09:37:32 +00:00
|
|
|
int height,
|
|
|
|
GLenum internalFormat,
|
|
|
|
GLenum format,
|
|
|
|
GLenum type,
|
|
|
|
char* initData)
|
|
|
|
{
|
2023-08-19 12:49:23 +00:00
|
|
|
for(int i = 0; i < 2; i++)
|
|
|
|
{
|
|
|
|
framebuffer->textures[i] = create_texture(width, height, internalFormat, format, type, initData);
|
|
|
|
framebuffer->fbos[i] = create_fbo(framebuffer->textures[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
GLenum err = glCheckFramebufferStatus(GL_FRAMEBUFFER);
|
|
|
|
if(err != GL_FRAMEBUFFER_COMPLETE)
|
|
|
|
{
|
|
|
|
oc_log_info("Frame buffer incomplete, %i", err);
|
|
|
|
}
|
2023-08-03 09:37:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void frame_buffer_swap(frame_buffer* buffer)
|
|
|
|
{
|
2023-08-19 12:49:23 +00:00
|
|
|
GLuint tmp = buffer->fbos[0];
|
|
|
|
buffer->fbos[0] = buffer->fbos[1];
|
|
|
|
buffer->fbos[1] = tmp;
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
tmp = buffer->textures[0];
|
|
|
|
buffer->textures[0] = buffer->textures[1];
|
|
|
|
buffer->textures[1] = tmp;
|
2023-08-03 09:37:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------
|
|
|
|
//NOTE(martin): entry point
|
|
|
|
//----------------------------------------------------------------
|
|
|
|
|
|
|
|
#define texWidth (256)
|
|
|
|
#define texHeight (256)
|
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
float colorInitData[texWidth][texHeight][4] = { 0 };
|
|
|
|
float velocityInitData[texWidth][texHeight][4] = { 0 };
|
2023-08-03 09:37:32 +00:00
|
|
|
|
|
|
|
const float EPSILON = 1.,
|
2023-08-19 12:49:23 +00:00
|
|
|
INV_GRID_SIZE = 1. / (float)texWidth,
|
|
|
|
DELTA = 1. / 120.;
|
2023-08-03 09:37:32 +00:00
|
|
|
|
|
|
|
const GLenum TEX_INTERNAL_FORMAT = GL_RGBA32F;
|
|
|
|
const GLenum TEX_FORMAT = GL_RGBA;
|
|
|
|
const GLenum TEX_TYPE = GL_FLOAT;
|
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
#define square(x) ((x) * (x))
|
2023-08-03 09:37:32 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
void reset_texture(GLuint texture, float width, float height, char* initData)
|
|
|
|
{
|
|
|
|
glBindTexture(GL_TEXTURE_2D, texture);
|
|
|
|
glTexImage2D(GL_TEXTURE_2D, 0, TEX_INTERNAL_FORMAT, width, height, 0, TEX_FORMAT, TEX_TYPE, initData);
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool resetCmd = false;
|
|
|
|
|
|
|
|
void reset()
|
|
|
|
{
|
|
|
|
// resetCmd = true;
|
2023-08-14 08:26:11 +00:00
|
|
|
oc_log_info("reset");
|
2023-08-03 09:37:32 +00:00
|
|
|
|
|
|
|
reset_texture(colorBuffer.textures[0], texWidth, texHeight, (char*)colorInitData);
|
|
|
|
reset_texture(colorBuffer.textures[1], texWidth, texHeight, (char*)colorInitData);
|
|
|
|
reset_texture(velocityBuffer.textures[0], texWidth, texHeight, (char*)velocityInitData);
|
|
|
|
reset_texture(velocityBuffer.textures[1], texWidth, texHeight, (char*)velocityInitData);
|
|
|
|
|
|
|
|
int gridFactor = 1;
|
|
|
|
for(int i=0; i<MULTIGRID_COUNT; i++)
|
|
|
|
{
|
|
|
|
reset_texture(pressureBuffer[i].textures[0], texWidth/gridFactor, texHeight/gridFactor, 0);
|
|
|
|
reset_texture(pressureBuffer[i].textures[1], texWidth/gridFactor, texHeight/gridFactor, 0);
|
|
|
|
|
|
|
|
gridFactor *= 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
typedef struct mouse_input
|
|
|
|
{
|
2023-08-19 12:49:23 +00:00
|
|
|
float x;
|
|
|
|
float y;
|
|
|
|
float deltaX;
|
|
|
|
float deltaY;
|
|
|
|
bool down;
|
2023-08-03 09:37:32 +00:00
|
|
|
|
|
|
|
} mouse_input;
|
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
mouse_input mouseInput = { 0 };
|
2023-08-03 09:37:32 +00:00
|
|
|
|
|
|
|
int frameWidth = 800;
|
|
|
|
int frameHeight = 600;
|
|
|
|
|
2023-08-14 08:26:11 +00:00
|
|
|
ORCA_EXPORT void oc_on_mouse_down(int button)
|
2023-08-03 09:37:32 +00:00
|
|
|
{
|
2023-08-19 12:49:23 +00:00
|
|
|
mouseInput.down = true;
|
2023-08-03 09:37:32 +00:00
|
|
|
}
|
|
|
|
|
2023-08-14 08:26:11 +00:00
|
|
|
ORCA_EXPORT void oc_on_mouse_up(int button)
|
2023-08-03 09:37:32 +00:00
|
|
|
{
|
2023-08-19 12:49:23 +00:00
|
|
|
mouseInput.down = false;
|
2023-08-03 09:37:32 +00:00
|
|
|
}
|
|
|
|
|
2023-08-14 08:26:11 +00:00
|
|
|
ORCA_EXPORT void oc_on_mouse_move(float x, float y, float dx, float dy)
|
2023-08-03 09:37:32 +00:00
|
|
|
{
|
2023-08-23 10:35:25 +00:00
|
|
|
mouseInput.x = x;
|
|
|
|
mouseInput.y = y;
|
|
|
|
mouseInput.deltaX = dx;
|
|
|
|
mouseInput.deltaY = dy;
|
2023-08-03 09:37:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void init_color_checker()
|
|
|
|
{
|
2023-08-19 12:49:23 +00:00
|
|
|
for(int i = 0; i < texHeight; i++)
|
|
|
|
{
|
|
|
|
for(int j = 0; j < texWidth; j++)
|
|
|
|
{
|
|
|
|
float u = j / (float)texWidth;
|
|
|
|
float v = i / (float)texWidth;
|
|
|
|
float value = ((int)(u * 10) % 2) == ((int)(v * 10) % 2) ? 1. : 0.;
|
|
|
|
|
|
|
|
for(int k = 0; k < 3; k++)
|
|
|
|
{
|
|
|
|
colorInitData[i][j][k] = value;
|
|
|
|
}
|
|
|
|
colorInitData[i][j][3] = 1;
|
|
|
|
}
|
|
|
|
}
|
2023-08-03 09:37:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void init_velocity_vortex()
|
|
|
|
{
|
2023-08-19 12:49:23 +00:00
|
|
|
for(int i = 0; i < texHeight; i++)
|
|
|
|
{
|
|
|
|
for(int j = 0; j < texWidth; j++)
|
|
|
|
{
|
|
|
|
float x = 2 * j / (float)texWidth - 1;
|
|
|
|
float y = 2 * i / (float)texWidth - 1;
|
|
|
|
velocityInitData[i][j][0] = sinf(2 * M_PI * y);
|
|
|
|
velocityInitData[i][j][1] = sinf(2 * M_PI * x);
|
|
|
|
}
|
|
|
|
}
|
2023-08-03 09:37:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void apply_splat(float splatPosX, float splatPosY, float radius, float splatVelX, float splatVelY, float r, float g, float b, bool randomize)
|
|
|
|
{
|
2023-08-19 12:49:23 +00:00
|
|
|
glUseProgram(splatProgram.prog);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
if(randomize)
|
|
|
|
{
|
|
|
|
glUniform1f(splatProgram.randomize, 1.);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
glUniform1f(splatProgram.randomize, 0.);
|
|
|
|
}
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
// force
|
|
|
|
glBindFramebuffer(GL_FRAMEBUFFER, velocityBuffer.fbos[1]);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
glActiveTexture(GL_TEXTURE0);
|
|
|
|
glBindTexture(GL_TEXTURE_2D, velocityBuffer.textures[0]);
|
|
|
|
glUniform1i(splatProgram.src, 0);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
glUniform2f(splatProgram.splatPos, splatPosX, splatPosY);
|
|
|
|
glUniform3f(splatProgram.splatColor, splatVelX, splatVelY, 0);
|
|
|
|
glUniform1f(splatProgram.additive, 1);
|
|
|
|
glUniform1f(splatProgram.blending, 0);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
glUniform1f(splatProgram.radius, radius);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
glDrawArrays(GL_TRIANGLES, 0, 6);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
frame_buffer_swap(&velocityBuffer);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
// dye
|
|
|
|
glBindFramebuffer(GL_FRAMEBUFFER, colorBuffer.fbos[1]);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
glActiveTexture(GL_TEXTURE0);
|
|
|
|
glBindTexture(GL_TEXTURE_2D, colorBuffer.textures[0]);
|
|
|
|
glUniform1i(splatProgram.src, 0);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
glUniform2f(splatProgram.splatPos, splatPosX, splatPosY);
|
|
|
|
glUniform3f(splatProgram.splatColor, r, g, b);
|
|
|
|
glUniform1f(splatProgram.additive, 0);
|
|
|
|
glUniform1f(splatProgram.blending, 1);
|
|
|
|
glUniform1f(splatProgram.radius, radius);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
glDrawArrays(GL_TRIANGLES, 0, 6);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
frame_buffer_swap(&colorBuffer);
|
2023-08-03 09:37:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void jacobi_solve(frame_buffer* x, frame_buffer* b, float invGridSize, int iterationCount)
|
|
|
|
{
|
2023-08-19 12:49:23 +00:00
|
|
|
glUseProgram(jacobiProgram.prog);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
for(int i = 0; i < iterationCount; i++)
|
|
|
|
{
|
|
|
|
glBindFramebuffer(GL_FRAMEBUFFER, x->fbos[1]);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
glActiveTexture(GL_TEXTURE0);
|
|
|
|
glBindTexture(GL_TEXTURE_2D, x->textures[0]);
|
|
|
|
glUniform1i(jacobiProgram.xTex, 0);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
glActiveTexture(GL_TEXTURE1);
|
|
|
|
glBindTexture(GL_TEXTURE_2D, b->textures[0]);
|
|
|
|
glUniform1i(jacobiProgram.bTex, 1);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
glDrawArrays(GL_TRIANGLES, 0, 6);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
frame_buffer_swap(x);
|
|
|
|
}
|
2023-08-03 09:37:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void multigrid_coarsen_residual(frame_buffer* output, frame_buffer* x, frame_buffer* b, float invFineGridSize)
|
|
|
|
{
|
2023-08-19 12:49:23 +00:00
|
|
|
//NOTE: compute residual and downsample to coarser grid, put result in coarser buffer
|
|
|
|
glUseProgram(multigridRestrictResidualProgram.prog);
|
|
|
|
glBindFramebuffer(GL_FRAMEBUFFER, output->fbos[1]);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
glActiveTexture(GL_TEXTURE0);
|
|
|
|
glBindTexture(GL_TEXTURE_2D, x->textures[0]);
|
|
|
|
glUniform1i(multigridRestrictResidualProgram.xTex, 0);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
glActiveTexture(GL_TEXTURE1);
|
|
|
|
glBindTexture(GL_TEXTURE_2D, b->textures[0]);
|
|
|
|
glUniform1i(multigridRestrictResidualProgram.bTex, 1);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
glDrawArrays(GL_TRIANGLES, 0, 6);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
frame_buffer_swap(output);
|
2023-08-03 09:37:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void multigrid_prolongate_and_correct(frame_buffer* x, frame_buffer* error, float invFineGridSize)
|
|
|
|
{
|
2023-08-19 12:49:23 +00:00
|
|
|
//NOTE: correct finer pressure
|
|
|
|
glUseProgram(multigridCorrectProgram.prog);
|
|
|
|
glBindFramebuffer(GL_FRAMEBUFFER, x->fbos[1]);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
glActiveTexture(GL_TEXTURE0);
|
|
|
|
glBindTexture(GL_TEXTURE_2D, x->textures[0]);
|
|
|
|
glUniform1i(multigridCorrectProgram.src, 0);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
glActiveTexture(GL_TEXTURE1);
|
|
|
|
glBindTexture(GL_TEXTURE_2D, error->textures[0]);
|
|
|
|
glUniform1i(multigridCorrectProgram.error, 1);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
glUniform1f(multigridCorrectProgram.invGridSize, invFineGridSize);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
glDrawArrays(GL_TRIANGLES, 0, 6);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
frame_buffer_swap(x);
|
2023-08-03 09:37:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void multigrid_clear(frame_buffer* error)
|
|
|
|
{
|
2023-08-19 12:49:23 +00:00
|
|
|
glBindFramebuffer(GL_FRAMEBUFFER, error->fbos[0]);
|
|
|
|
glClear(GL_COLOR_BUFFER_BIT);
|
2023-08-03 09:37:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void input_splat(float t)
|
|
|
|
{
|
2023-08-19 12:49:23 +00:00
|
|
|
//NOTE: apply force and dye
|
|
|
|
if(mouseInput.down && (mouseInput.deltaX || mouseInput.deltaY))
|
|
|
|
{
|
2023-08-30 13:35:28 +00:00
|
|
|
oc_vec2 scaling = oc_surface_contents_scaling(surface);
|
2023-08-19 12:49:23 +00:00
|
|
|
// account for margin
|
|
|
|
float margin = 32;
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
float offset = margin / texWidth;
|
|
|
|
float ratio = 1 - 2 * margin / texWidth;
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-23 10:35:25 +00:00
|
|
|
float splatPosX = (mouseInput.x * scaling.x / frameWidth) * ratio + offset;
|
|
|
|
float splatPosY = (1 - mouseInput.y * scaling.y / frameHeight) * ratio + offset;
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-23 10:35:25 +00:00
|
|
|
float splatVelX = (10000. * DELTA * mouseInput.deltaX * scaling.x / frameWidth) * ratio;
|
|
|
|
float splatVelY = (-10000. * DELTA * mouseInput.deltaY * scaling.y / frameWidth) * ratio;
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-23 10:35:25 +00:00
|
|
|
float intensity = 100 * sqrtf(square(ratio * mouseInput.deltaX * scaling.x / frameWidth) + square(ratio * mouseInput.deltaY * scaling.y / frameHeight));
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
float r = intensity * (sinf(2 * M_PI * 0.1 * t) + 1);
|
|
|
|
float g = 0.5 * intensity * (cosf(2 * M_PI * 0.1 / M_E * t + 654) + 1);
|
|
|
|
float b = intensity * (sinf(2 * M_PI * 0.1 / M_SQRT2 * t + 937) + 1);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
float radius = 0.005;
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
apply_splat(splatPosX, splatPosY, radius, splatVelX, splatVelY, r, g, b, false);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
mouseInput.deltaX = 0;
|
|
|
|
mouseInput.deltaY = 0;
|
|
|
|
}
|
2023-08-03 09:37:32 +00:00
|
|
|
}
|
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
float testDiv[texWidth / 2][texWidth / 2][4];
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-14 08:26:11 +00:00
|
|
|
ORCA_EXPORT void oc_on_init()
|
2023-08-03 09:37:32 +00:00
|
|
|
{
|
2023-08-19 12:49:23 +00:00
|
|
|
oc_log_info("Hello, world (from C)");
|
|
|
|
|
2023-09-02 14:20:22 +00:00
|
|
|
oc_window_set_title(OC_STR8("fluid"));
|
2023-08-23 20:08:09 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
surface = oc_surface_gles();
|
|
|
|
oc_surface_select(surface);
|
|
|
|
|
|
|
|
// init_color_checker();
|
|
|
|
// init_velocity_vortex();
|
|
|
|
|
|
|
|
// init programs
|
|
|
|
init_advect(&advectProgram);
|
|
|
|
init_div(&divProgram);
|
|
|
|
init_jacobi(&jacobiProgram);
|
|
|
|
init_multigrid_restrict_residual(&multigridRestrictResidualProgram);
|
|
|
|
init_multigrid_correct(&multigridCorrectProgram);
|
|
|
|
init_blit_residue(&blitResidueProgram);
|
|
|
|
|
|
|
|
init_subtract(&subtractProgram);
|
|
|
|
init_splat(&splatProgram);
|
|
|
|
init_blit(&blitProgram);
|
|
|
|
init_blit_div(&blitDivProgram);
|
|
|
|
|
|
|
|
// init frame buffers
|
|
|
|
oc_log_info("create color buffer");
|
|
|
|
init_frame_buffer(&colorBuffer, texWidth, texHeight, TEX_INTERNAL_FORMAT, TEX_FORMAT, TEX_TYPE, (char*)colorInitData);
|
|
|
|
oc_log_info("create velocity buffer");
|
|
|
|
init_frame_buffer(&velocityBuffer, texWidth, texHeight, TEX_INTERNAL_FORMAT, TEX_FORMAT, TEX_TYPE, (char*)velocityInitData);
|
|
|
|
|
|
|
|
int gridFactor = 1;
|
|
|
|
for(int i = 0; i < MULTIGRID_COUNT; i++)
|
|
|
|
{
|
|
|
|
oc_log_info("create div buffer %i", i);
|
|
|
|
init_frame_buffer(&divBuffer[i], texWidth / gridFactor, texHeight / gridFactor, TEX_INTERNAL_FORMAT, TEX_FORMAT, TEX_TYPE, 0);
|
|
|
|
oc_log_info("create pressure buffer %i", i);
|
|
|
|
init_frame_buffer(&pressureBuffer[i], texWidth / gridFactor, texHeight / gridFactor, TEX_INTERNAL_FORMAT, TEX_FORMAT, TEX_TYPE, 0);
|
|
|
|
gridFactor *= 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
// init vertex buffer
|
|
|
|
static Vertex vertices[6] = {
|
|
|
|
{ -1, -1 },
|
|
|
|
{ 1, -1 },
|
|
|
|
{ 1, 1 },
|
|
|
|
{ -1, -1 },
|
|
|
|
{ 1, 1 },
|
|
|
|
{ -1, 1 }
|
|
|
|
};
|
|
|
|
|
|
|
|
//WARN: we assume blitProgram.pos == advectProgram.pos, is there a situation where it wouldn't be true??
|
|
|
|
GLuint vertexBuffer = 0;
|
|
|
|
glGenBuffers(1, &vertexBuffer);
|
|
|
|
glBindBuffer(GL_ARRAY_BUFFER, vertexBuffer);
|
|
|
|
glBufferData(GL_ARRAY_BUFFER, 6 * sizeof(Vertex), vertices, GL_STATIC_DRAW);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
|
|
|
glEnableVertexAttribArray(0);
|
|
|
|
glVertexAttribPointer(blitProgram.pos, 2, GL_FLOAT, GL_FALSE, 0, 0);
|
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
for(int i = 0; i < texWidth / 2; i++)
|
|
|
|
{
|
|
|
|
for(int j = 0; j < texHeight / 2; j++)
|
|
|
|
{
|
|
|
|
testDiv[i][j][0] = 0.5 + 0.5 * cosf(j / 100. * 3.14159 + i / 100. * 1.2139);
|
|
|
|
}
|
|
|
|
}
|
2023-08-03 09:37:32 +00:00
|
|
|
}
|
|
|
|
|
2023-08-14 08:26:11 +00:00
|
|
|
ORCA_EXPORT void oc_on_resize(u32 width, u32 height)
|
2023-08-03 09:37:32 +00:00
|
|
|
{
|
2023-08-23 10:35:25 +00:00
|
|
|
oc_vec2 scaling = oc_surface_contents_scaling(surface);
|
|
|
|
frameWidth = width * scaling.x;
|
|
|
|
frameHeight = height * scaling.y;
|
2023-08-03 09:37:32 +00:00
|
|
|
}
|
|
|
|
|
2023-08-14 08:26:11 +00:00
|
|
|
ORCA_EXPORT void oc_on_frame_refresh()
|
2023-08-03 09:37:32 +00:00
|
|
|
{
|
2023-08-30 13:35:28 +00:00
|
|
|
float aspectRatio = texWidth / texHeight;
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
static float t = 0;
|
|
|
|
t += 1. / 60.;
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
oc_surface_select(surface);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
glViewport(0, 0, texWidth, texHeight);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
//NOTE: advect velocity thru itself
|
|
|
|
glUseProgram(advectProgram.prog);
|
|
|
|
glBindFramebuffer(GL_FRAMEBUFFER, velocityBuffer.fbos[1]);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
glActiveTexture(GL_TEXTURE0);
|
|
|
|
glBindTexture(GL_TEXTURE_2D, velocityBuffer.textures[0]);
|
|
|
|
glUniform1i(advectProgram.src, 0);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
glActiveTexture(GL_TEXTURE1);
|
|
|
|
glBindTexture(GL_TEXTURE_2D, velocityBuffer.textures[0]);
|
|
|
|
glUniform1i(advectProgram.velocity, 1);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
glUniform1f(advectProgram.delta, DELTA);
|
|
|
|
glUniform1f(advectProgram.dissipation, 0.01);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
glDrawArrays(GL_TRIANGLES, 0, 6);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
frame_buffer_swap(&velocityBuffer);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
input_splat(t);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
//NOTE: compute divergence of advected velocity
|
|
|
|
glUseProgram(divProgram.prog);
|
|
|
|
glBindFramebuffer(GL_FRAMEBUFFER, divBuffer[0].fbos[1]);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
glActiveTexture(GL_TEXTURE0);
|
|
|
|
glBindTexture(GL_TEXTURE_2D, velocityBuffer.textures[0]);
|
|
|
|
glUniform1i(divProgram.src, 0);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
glDrawArrays(GL_TRIANGLES, 0, 6);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
frame_buffer_swap(&divBuffer[0]);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
//NOTE: compute pressure
|
|
|
|
glBindFramebuffer(GL_FRAMEBUFFER, pressureBuffer[0].fbos[1]);
|
|
|
|
glClear(GL_COLOR_BUFFER_BIT);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
#if 0
|
2023-08-03 09:37:32 +00:00
|
|
|
multigrid_clear(&pressureBuffer[0]);
|
|
|
|
jacobi_solve(&pressureBuffer[0], &divBuffer[0], INV_GRID_SIZE, texWidth*texHeight);
|
2023-08-19 12:49:23 +00:00
|
|
|
#else
|
|
|
|
multigrid_clear(&pressureBuffer[0]);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
for(int i = 0; i < 1; i++)
|
|
|
|
{
|
|
|
|
jacobi_solve(&pressureBuffer[0], &divBuffer[0], INV_GRID_SIZE, 2);
|
|
|
|
multigrid_coarsen_residual(&divBuffer[1], &pressureBuffer[0], &divBuffer[0], INV_GRID_SIZE);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
multigrid_clear(&pressureBuffer[1]);
|
|
|
|
jacobi_solve(&pressureBuffer[1], &divBuffer[1], 2 * INV_GRID_SIZE, 2);
|
|
|
|
multigrid_coarsen_residual(&divBuffer[2], &pressureBuffer[1], &divBuffer[1], 2 * INV_GRID_SIZE);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
multigrid_clear(&pressureBuffer[2]);
|
|
|
|
jacobi_solve(&pressureBuffer[2], &divBuffer[2], 4 * INV_GRID_SIZE, 30);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
multigrid_prolongate_and_correct(&pressureBuffer[1], &pressureBuffer[2], 2 * INV_GRID_SIZE);
|
|
|
|
jacobi_solve(&pressureBuffer[1], &divBuffer[1], 2 * INV_GRID_SIZE, 8);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
multigrid_prolongate_and_correct(&pressureBuffer[0], &pressureBuffer[1], INV_GRID_SIZE);
|
|
|
|
jacobi_solve(&pressureBuffer[0], &divBuffer[0], INV_GRID_SIZE, 4);
|
|
|
|
}
|
|
|
|
#endif
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
//NOTE: subtract pressure gradient to advected velocity
|
|
|
|
glUseProgram(subtractProgram.prog);
|
|
|
|
glBindFramebuffer(GL_FRAMEBUFFER, velocityBuffer.fbos[1]);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
glActiveTexture(GL_TEXTURE0);
|
|
|
|
glBindTexture(GL_TEXTURE_2D, velocityBuffer.textures[0]);
|
|
|
|
glUniform1i(subtractProgram.src, 0);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
glActiveTexture(GL_TEXTURE1);
|
|
|
|
glBindTexture(GL_TEXTURE_2D, pressureBuffer[0].textures[0]);
|
|
|
|
glUniform1i(subtractProgram.pressure, 1);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
glUniform1f(subtractProgram.invGridSize, INV_GRID_SIZE);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
glDrawArrays(GL_TRIANGLES, 0, 6);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
frame_buffer_swap(&velocityBuffer);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
//NOTE: Advect color through corrected velocity field
|
|
|
|
glUseProgram(advectProgram.prog);
|
|
|
|
glBindFramebuffer(GL_FRAMEBUFFER, colorBuffer.fbos[1]);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
glActiveTexture(GL_TEXTURE0);
|
|
|
|
glBindTexture(GL_TEXTURE_2D, colorBuffer.textures[0]);
|
|
|
|
glUniform1i(advectProgram.src, 0);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
glActiveTexture(GL_TEXTURE1);
|
|
|
|
glBindTexture(GL_TEXTURE_2D, velocityBuffer.textures[0]);
|
|
|
|
glUniform1i(advectProgram.velocity, 1);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
glUniform1f(advectProgram.delta, DELTA);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
glUniform1f(advectProgram.dissipation, 0.001);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
glDrawArrays(GL_TRIANGLES, 0, 6);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
frame_buffer_swap(&colorBuffer);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
//NOTE: Blit color texture to screen
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
glViewport(0, 0, frameWidth, frameHeight);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
float displayMatrix[16] = {
|
|
|
|
1 / aspectRatio, 0, 0, 0,
|
|
|
|
0, 1, 0, 0,
|
|
|
|
0, 0, 1, 0,
|
|
|
|
0, 0, 0, 1
|
|
|
|
};
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
glUseProgram(blitProgram.prog);
|
|
|
|
glBindFramebuffer(GL_FRAMEBUFFER, 0);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
glActiveTexture(GL_TEXTURE0);
|
|
|
|
glBindTexture(GL_TEXTURE_2D, colorBuffer.textures[0]);
|
|
|
|
glUniform1i(blitProgram.tex, 0);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
glUniform2i(blitProgram.gridSize, texWidth, texHeight);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
glUniformMatrix4fv(blitProgram.mvp, 1, GL_FALSE, displayMatrix);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
glDrawArrays(GL_TRIANGLES, 0, 6);
|
2023-08-03 09:37:32 +00:00
|
|
|
|
2023-08-19 12:49:23 +00:00
|
|
|
oc_surface_present(surface);
|
2023-08-03 09:37:32 +00:00
|
|
|
}
|