2021-01-26 22:24:47 +01:00
# include " glew.h "
2021-01-16 17:11:39 +01:00
# include "freeglut.h"
# include "glm.hpp"
# include "ext.hpp"
# include <iostream>
# include <cmath>
# include <ctime>
2021-01-24 00:40:45 +01:00
# include <vector>
2021-01-16 17:11:39 +01:00
# include "Shader_Loader.h"
# include "Render_Utils.h"
# include "Camera.h"
2021-01-16 20:33:47 +01:00
# include "Texture.h"
2021-01-16 17:11:39 +01:00
# include "Box.cpp"
# include <assimp/Importer.hpp>
# include <assimp/scene.h>
# include <assimp/postprocess.h>
2021-01-24 02:57:03 +01:00
# include "model.h"
2021-02-01 00:33:46 +01:00
# include <WinUser.h>
2021-01-16 17:11:39 +01:00
2021-01-29 01:07:43 +01:00
int SCR_WIDTH = 1240 ;
int SCR_HEIGHT = 720 ;
2021-01-16 17:11:39 +01:00
# define STB_IMAGE_IMPLEMENTATION
# include "stb_image.h"
2021-02-01 00:33:46 +01:00
int winId ;
2021-01-16 20:33:47 +01:00
GLuint programTex ;
2021-01-17 01:26:29 +01:00
GLuint programSkybox ;
2021-01-29 02:03:00 +01:00
GLuint programSun ;
GLuint programBlur ;
GLuint programBloom ;
2021-02-01 00:26:43 +01:00
GLuint programParticle ;
GLuint VertexArrayID ;
2021-01-29 01:07:43 +01:00
unsigned int pingpongFBO [ 2 ] ;
unsigned int pingpongColorbuffers [ 2 ] ;
unsigned int FBO ;
unsigned int colorBuffers [ 2 ] ;
2021-02-01 00:26:43 +01:00
//particlepart
double lastTime ;
static GLfloat * g_particule_position_size_data ;
static GLubyte * g_particule_color_data ;
GLuint particle_vertex_buffer ;
GLuint particles_position_buffer ;
GLuint particles_color_buffer ;
2021-02-01 11:09:42 +01:00
double partX = - 6 ;
double partY = 0 ;
double partXdir = 0 ;
double partYdir = 0 ;
double partAdir = 0 ;
2021-01-16 17:11:39 +01:00
Core : : Shader_Loader shaderLoader ;
Core : : RenderContext armContext ;
std : : vector < Core : : Node > arm ;
int ballIndex ;
2021-02-01 02:22:35 +01:00
bool bothEngines = true ;
2021-01-16 17:11:39 +01:00
2021-01-24 00:40:45 +01:00
GLuint textureShip_normals ;
2021-01-16 20:33:47 +01:00
GLuint sunTexture ;
GLuint earthTexture ;
2021-01-16 21:20:03 +01:00
GLuint moonTexture ;
2021-01-17 01:26:29 +01:00
GLuint skyboxTexture ;
2021-01-24 00:40:45 +01:00
GLuint shipTexture ;
2021-02-01 00:26:43 +01:00
GLuint particleTexture ;
2021-01-16 20:33:47 +01:00
obj : : Model sphereModel ;
2021-01-17 01:26:29 +01:00
obj : : Model cubeModel ;
2021-01-24 00:40:45 +01:00
obj : : Model shipModel ;
2021-01-24 02:57:03 +01:00
2021-01-16 20:33:47 +01:00
Core : : RenderContext sphereContext ;
2021-01-17 01:26:29 +01:00
Core : : RenderContext cubeContext ;
2021-01-24 00:40:45 +01:00
Core : : RenderContext shipContext ;
2021-01-16 17:11:39 +01:00
2021-01-24 02:57:03 +01:00
//assimp
std : : shared_ptr < Model > corvette ;
2021-01-28 21:09:42 +01:00
//std::vector<Core::RenderContext> corvetteMeshes;
std : : shared_ptr < Model > crewmate ;
2021-01-24 02:57:03 +01:00
2021-01-16 17:11:39 +01:00
float cameraAngle = 0 ;
glm : : vec3 cameraPos = glm : : vec3 ( - 6 , 0 , 0 ) ;
glm : : vec3 cameraDir ;
2021-01-26 22:24:47 +01:00
glm : : vec3 cameraSide ;
2021-01-16 17:11:39 +01:00
glm : : mat4 cameraMatrix , perspectiveMatrix ;
2021-01-25 23:50:53 +01:00
glm : : vec3 sunPos = glm : : vec3 ( 10.0f , 0.0f , - 5.0f ) ;
glm : : vec3 sunPos2 = glm : : vec3 ( 25.0f , - 1.0f , 10.0f ) ;
2021-02-01 00:26:43 +01:00
//particlepart
struct Particle {
glm : : vec3 pos , speed ;
unsigned char r , g , b , a ; // Color
float size , angle , weight ;
float life ; // Remaining life of the particle. if <0 : dead and unused.
float cameradistance ; // *Squared* distance to the camera. if dead : -1.0f
bool operator < ( const Particle & that ) const {
return this - > cameradistance > that . cameradistance ;
}
} ;
const int MaxParticles = 1000 ;
Particle ParticlesContainer [ MaxParticles ] ;
int LastUsedParticle = 0 ;
2021-01-25 23:50:53 +01:00
2021-02-01 00:26:43 +01:00
void SortParticles ( ) {
std : : sort ( & ParticlesContainer [ 0 ] , & ParticlesContainer [ MaxParticles ] ) ;
}
int FindUnusedParticle ( ) {
for ( int i = LastUsedParticle ; i < MaxParticles ; i + + ) {
if ( ParticlesContainer [ i ] . life < 0 ) {
LastUsedParticle = i ;
return i ;
}
}
2021-01-17 01:26:29 +01:00
2021-02-01 00:26:43 +01:00
for ( int i = 0 ; i < LastUsedParticle ; i + + ) {
if ( ParticlesContainer [ i ] . life < 0 ) {
LastUsedParticle = i ;
return i ;
}
}
2021-01-25 23:50:53 +01:00
2021-02-01 00:26:43 +01:00
return 0 ; // All particles are taken, override the first one
}
2021-01-17 01:26:29 +01:00
2021-02-01 00:26:43 +01:00
//Light
2021-01-16 21:20:03 +01:00
struct Light {
2021-01-17 01:26:29 +01:00
glm : : vec3 position ;
2021-01-16 21:20:03 +01:00
glm : : vec3 color ;
2021-01-25 23:50:53 +01:00
float intensity ;
2021-01-16 21:20:03 +01:00
} ;
2021-02-01 02:22:35 +01:00
int engineLightTimer = 50 ;
2021-01-25 23:50:53 +01:00
2021-01-24 19:21:05 +01:00
//wczytywanie skyboxa (musi byc jpg!)
2021-01-17 01:26:29 +01:00
std : : vector < std : : string > faces
{
" skybox/right.jpg " ,
" skybox/left.jpg " ,
" skybox/top.jpg " ,
" skybox/bottom.jpg " ,
" skybox/front.jpg " ,
" skybox/back.jpg "
} ;
2021-01-16 21:20:03 +01:00
std : : vector < Light > lights ;
2021-01-16 17:11:39 +01:00
void keyboard ( unsigned char key , int x , int y )
{
float angleSpeed = 0.1f ;
float moveSpeed = 0.1f ;
switch ( key )
{
2021-02-01 00:26:43 +01:00
case ' q ' :
2021-01-29 01:07:43 +01:00
{
cameraAngle - = angleSpeed ;
2021-01-29 02:03:00 +01:00
lights [ 3 ] . intensity = 0.005 ;
2021-01-29 01:07:43 +01:00
engineLightTimer = 0 ;
break ;
}
2021-02-01 00:26:43 +01:00
case ' e ' :
2021-01-29 01:07:43 +01:00
{
cameraAngle + = angleSpeed ;
2021-01-29 02:03:00 +01:00
lights [ 2 ] . intensity = 0.005 ;
2021-01-29 01:07:43 +01:00
engineLightTimer = 0 ;
break ;
}
2021-02-01 00:26:43 +01:00
case ' w ' :
2021-01-25 23:50:53 +01:00
{
cameraPos + = cameraDir * moveSpeed ;
2021-01-29 02:03:00 +01:00
lights [ 2 ] . intensity = 0.005 ;
lights [ 3 ] . intensity = 0.005 ;
2021-01-25 23:50:53 +01:00
engineLightTimer = 0 ;
break ;
}
2021-01-16 17:11:39 +01:00
case ' s ' : cameraPos - = cameraDir * moveSpeed ; break ;
case ' d ' : cameraPos + = glm : : cross ( cameraDir , glm : : vec3 ( 0 , 1 , 0 ) ) * moveSpeed ; break ;
case ' a ' : cameraPos - = glm : : cross ( cameraDir , glm : : vec3 ( 0 , 1 , 0 ) ) * moveSpeed ; break ;
2021-01-26 22:24:47 +01:00
case ' z ' : cameraPos + = glm : : cross ( cameraDir , glm : : vec3 ( 0 , 0 , 1 ) ) * moveSpeed ; break ;
case ' x ' : cameraPos - = glm : : cross ( cameraDir , glm : : vec3 ( 0 , 0 , 1 ) ) * moveSpeed ; break ;
2021-02-01 00:33:46 +01:00
case 27 : glutDestroyWindow ( winId ) ; break ;
2021-01-16 17:11:39 +01:00
}
}
2021-01-29 02:03:00 +01:00
2021-01-29 01:07:43 +01:00
unsigned int quadVAO = 0 ;
unsigned int quadVBO ;
void renderQuad ( )
{
if ( quadVAO = = 0 )
{
float quadVertices [ ] = {
- 1.0f , 1.0f , 0.0f , 0.0f , 1.0f ,
- 1.0f , - 1.0f , 0.0f , 0.0f , 0.0f ,
1.0f , 1.0f , 0.0f , 1.0f , 1.0f ,
1.0f , - 1.0f , 0.0f , 1.0f , 0.0f ,
} ;
glGenVertexArrays ( 1 , & quadVAO ) ;
glGenBuffers ( 1 , & quadVBO ) ;
glBindVertexArray ( quadVAO ) ;
glBindBuffer ( GL_ARRAY_BUFFER , quadVBO ) ;
glBufferData ( GL_ARRAY_BUFFER , sizeof ( quadVertices ) , & quadVertices , GL_STATIC_DRAW ) ;
glEnableVertexAttribArray ( 0 ) ;
glVertexAttribPointer ( 0 , 3 , GL_FLOAT , GL_FALSE , 5 * sizeof ( float ) , ( void * ) 0 ) ;
glEnableVertexAttribArray ( 1 ) ;
glVertexAttribPointer ( 1 , 2 , GL_FLOAT , GL_FALSE , 5 * sizeof ( float ) , ( void * ) ( 3 * sizeof ( float ) ) ) ;
}
glBindVertexArray ( quadVAO ) ;
glDrawArrays ( GL_TRIANGLE_STRIP , 0 , 4 ) ;
glBindVertexArray ( 0 ) ;
}
2021-01-16 17:11:39 +01:00
glm : : mat4 createCameraMatrix ( )
{
// Obliczanie kierunku patrzenia kamery (w plaszczyznie x-z) przy uzyciu zmiennej cameraAngle kontrolowanej przez klawisze.
cameraDir = glm : : vec3 ( cosf ( cameraAngle ) , 0.0f , sinf ( cameraAngle ) ) ;
glm : : vec3 up = glm : : vec3 ( 0 , 1 , 0 ) ;
2021-02-01 00:26:43 +01:00
cameraSide = glm : : cross ( cameraDir , up ) ;
2021-01-26 22:24:47 +01:00
2021-01-16 17:11:39 +01:00
return Core : : createViewMatrix ( cameraPos , cameraDir , up ) ;
}
2021-01-24 00:40:45 +01:00
float frustumScale = 1.f ;
2021-01-16 17:11:39 +01:00
2021-01-17 01:26:29 +01:00
2021-01-16 17:11:39 +01:00
void drawObject ( GLuint program , Core : : RenderContext context , glm : : mat4 modelMatrix , glm : : vec3 color )
{
2021-01-16 20:33:47 +01:00
glUseProgram ( program ) ;
2021-01-16 17:11:39 +01:00
glUniform3f ( glGetUniformLocation ( program , " objectColor " ) , color . x , color . y , color . z ) ;
glm : : mat4 transformation = perspectiveMatrix * cameraMatrix * modelMatrix ;
glUniformMatrix4fv ( glGetUniformLocation ( program , " modelMatrix " ) , 1 , GL_FALSE , ( float * ) & modelMatrix ) ;
glUniformMatrix4fv ( glGetUniformLocation ( program , " transformation " ) , 1 , GL_FALSE , ( float * ) & transformation ) ;
Core : : DrawContext ( context ) ;
2021-01-16 20:33:47 +01:00
glUseProgram ( 0 ) ;
}
2021-01-24 19:21:05 +01:00
//funkcja rysujaca modele za pomoca assimpa
2021-01-24 02:57:03 +01:00
void drawFromAssimpModel ( GLuint program , std : : shared_ptr < Model > model , glm : : mat4 modelMatrix , glm : : vec3 color )
{
glUseProgram ( program ) ;
glUniform3f ( glGetUniformLocation ( program , " objectColor " ) , color . x , color . y , color . z ) ;
glm : : mat4 transformation = perspectiveMatrix * cameraMatrix * modelMatrix ;
glUniformMatrix4fv ( glGetUniformLocation ( program , " modelMatrix " ) , 1 , GL_FALSE , ( float * ) & modelMatrix ) ;
glUniformMatrix4fv ( glGetUniformLocation ( program , " transformation " ) , 1 , GL_FALSE , ( float * ) & transformation ) ;
model - > Draw ( program ) ;
glUseProgram ( 0 ) ;
}
2021-01-17 01:26:29 +01:00
//Skybox
unsigned int loadCubemap ( std : : vector < std : : string > faces )
{
unsigned int textureID ;
glGenTextures ( 1 , & textureID ) ;
glBindTexture ( GL_TEXTURE_CUBE_MAP , textureID ) ;
int width , height , nrChannels ;
for ( unsigned int i = 0 ; i < faces . size ( ) ; i + + )
{
2021-02-01 00:26:43 +01:00
unsigned char * data = stbi_load ( faces [ i ] . c_str ( ) , & width , & height , & nrChannels , 0 ) ;
2021-01-17 01:26:29 +01:00
if ( data )
{
glTexImage2D ( GL_TEXTURE_CUBE_MAP_POSITIVE_X + i ,
0 , GL_RGB , width , height , 0 , GL_RGB , GL_UNSIGNED_BYTE , data ) ;
stbi_image_free ( data ) ;
}
else
{
std : : cout < < " Cubemap tex failed to load at path: " < < faces [ i ] < < std : : endl ;
stbi_image_free ( data ) ;
}
}
glTexParameteri ( GL_TEXTURE_CUBE_MAP , GL_TEXTURE_MIN_FILTER , GL_LINEAR ) ;
glTexParameteri ( GL_TEXTURE_CUBE_MAP , GL_TEXTURE_MAG_FILTER , GL_LINEAR ) ;
glTexParameteri ( GL_TEXTURE_CUBE_MAP , GL_TEXTURE_WRAP_S , GL_CLAMP_TO_EDGE ) ;
glTexParameteri ( GL_TEXTURE_CUBE_MAP , GL_TEXTURE_WRAP_T , GL_CLAMP_TO_EDGE ) ;
glTexParameteri ( GL_TEXTURE_CUBE_MAP , GL_TEXTURE_WRAP_R , GL_CLAMP_TO_EDGE ) ;
return textureID ;
}
void drawSkybox ( GLuint program , Core : : RenderContext context , GLuint texID )
{
glUseProgram ( program ) ;
2021-01-29 01:07:43 +01:00
glDepthFunc ( GL_LEQUAL ) ;
2021-01-17 01:26:29 +01:00
glm : : mat4 transformation = perspectiveMatrix * glm : : mat4 ( glm : : mat3 ( cameraMatrix ) ) ;
glUniformMatrix4fv ( glGetUniformLocation ( program , " transformation " ) , 1 , GL_FALSE , ( float * ) & transformation ) ;
2021-01-29 01:07:43 +01:00
//glDepthMask(GL_FALSE);
2021-01-17 01:26:29 +01:00
//Core::SetActiveTexture(texID, "skybox", program, 0);
glUniform1i ( glGetUniformLocation ( program , " skybox " ) , 0 ) ;
glActiveTexture ( GL_TEXTURE0 ) ;
glBindTexture ( GL_TEXTURE_CUBE_MAP , texID ) ;
Core : : DrawContext ( context ) ;
2021-01-29 01:07:43 +01:00
glDepthFunc ( GL_LESS ) ;
//glDepthMask(GL_TRUE);
2021-01-17 01:26:29 +01:00
glUseProgram ( 0 ) ;
}
2021-02-01 02:22:35 +01:00
void drawParticles ( int ParticlesCount , glm : : mat4 & transformation )
{
glBindBuffer ( GL_ARRAY_BUFFER , particles_position_buffer ) ;
glBufferData ( GL_ARRAY_BUFFER , MaxParticles * 4 * sizeof ( GLfloat ) , NULL , GL_STREAM_DRAW ) ; // Buffer orphaning, a common way to improve streaming perf. See above link for details.
glBufferSubData ( GL_ARRAY_BUFFER , 0 , ParticlesCount * sizeof ( GLfloat ) * 4 , g_particule_position_size_data ) ;
glBindBuffer ( GL_ARRAY_BUFFER , particles_color_buffer ) ;
glBufferData ( GL_ARRAY_BUFFER , MaxParticles * 4 * sizeof ( GLubyte ) , NULL , GL_STREAM_DRAW ) ; // Buffer orphaning, a common way to improve streaming perf. See above link for details.
glBufferSubData ( GL_ARRAY_BUFFER , 0 , ParticlesCount * sizeof ( GLubyte ) * 4 , g_particule_color_data ) ;
2021-02-09 22:51:41 +01:00
2021-02-01 02:22:35 +01:00
glActiveTexture ( GL_TEXTURE0 ) ;
glBindTexture ( GL_TEXTURE_2D , particleTexture ) ;
2021-02-09 22:51:41 +01:00
2021-02-01 02:22:35 +01:00
glUniform1i ( glGetUniformLocation ( programParticle , " sprite " ) , 0 ) ;
glUniform3f ( glGetUniformLocation ( programParticle , " CameraRight_worldspace " ) , cameraSide . x , cameraSide . y , cameraSide . z ) ;
glUniform3f ( glGetUniformLocation ( programParticle , " CameraUp_worldspace " ) , 0 , 1 , 0 ) ;
glUniformMatrix4fv ( glGetUniformLocation ( programParticle , " VP " ) , 1 , GL_FALSE , & transformation [ 0 ] [ 0 ] ) ;
glEnableVertexAttribArray ( 0 ) ;
glBindBuffer ( GL_ARRAY_BUFFER , particle_vertex_buffer ) ;
glVertexAttribPointer (
0 , // attribute. No particular reason for 0, but must match the layout in the shader.
3 , // size
GL_FLOAT , // type
GL_FALSE , // normalized?
0 , // stride
( void * ) 0 // array buffer offset
) ;
glEnableVertexAttribArray ( 1 ) ;
glBindBuffer ( GL_ARRAY_BUFFER , particles_position_buffer ) ;
glVertexAttribPointer (
1 , // attribute. No particular reason for 1, but must match the layout in the shader.
4 , // size : x + y + z + size => 4
GL_FLOAT , // type
GL_FALSE , // normalized?
0 , // stride
( void * ) 0 // array buffer offset
) ;
glEnableVertexAttribArray ( 2 ) ;
glBindBuffer ( GL_ARRAY_BUFFER , particles_color_buffer ) ;
glVertexAttribPointer (
2 , // attribute. No particular reason for 1, but must match the layout in the shader.
4 , // size : r + g + b + a => 4
GL_UNSIGNED_BYTE , // type
GL_TRUE , // normalized? *** YES, this means that the unsigned char[4] will be accessible with a vec4 (floats) in the shader ***
0 , // stride
( void * ) 0 // array buffer offset
) ;
glVertexAttribDivisor ( 0 , 0 ) ; // particles vertices : always reuse the same 4 vertices -> 0
glVertexAttribDivisor ( 1 , 1 ) ; // positions : one per quad (its center) -> 1
glVertexAttribDivisor ( 2 , 1 ) ; // color : one per quad -> 1
glDrawArraysInstanced ( GL_TRIANGLE_STRIP , 0 , 4 , ParticlesCount ) ;
glDisableVertexAttribArray ( 0 ) ;
glDisableVertexAttribArray ( 1 ) ;
glDisableVertexAttribArray ( 2 ) ;
}
2021-01-17 01:26:29 +01:00
//Textures
2021-01-16 20:33:47 +01:00
void drawObjectTexture ( GLuint program , Core : : RenderContext context , glm : : mat4 modelMatrix , glm : : vec3 texture , GLuint texID )
{
glUseProgram ( program ) ;
glm : : mat4 transformation = perspectiveMatrix * cameraMatrix * modelMatrix ;
glUniformMatrix4fv ( glGetUniformLocation ( program , " modelMatrix " ) , 1 , GL_FALSE , ( float * ) & modelMatrix ) ;
2021-01-17 01:26:29 +01:00
glUniform3f ( glGetUniformLocation ( program , " colorTex " ) , texture . x , texture . y , texture . z ) ;
2021-01-16 20:33:47 +01:00
glUniformMatrix4fv ( glGetUniformLocation ( program , " transformation " ) , 1 , GL_FALSE , ( float * ) & transformation ) ;
Core : : SetActiveTexture ( texID , " colorTexture " , program , 0 ) ;
Core : : DrawContext ( context ) ;
glUseProgram ( 0 ) ;
}
2021-01-24 19:21:05 +01:00
//funkcja rysujaca planety (bez obracania wokol wlasnej osi bo ksiezyce sie psuja)
2021-01-24 23:18:02 +01:00
glm : : mat4 drawPlanet ( float time , glm : : vec3 sunPos , glm : : vec3 orbit , glm : : vec3 translation , glm : : vec3 scale )
2021-01-16 20:33:47 +01:00
{
glm : : mat4 planetModelMatrix = glm : : mat4 ( 1.0f ) ;
2021-02-01 00:26:43 +01:00
planetModelMatrix = glm : : translate ( planetModelMatrix , sunPos ) ;
2021-01-16 20:33:47 +01:00
planetModelMatrix = glm : : rotate ( planetModelMatrix , time , orbit ) ;
planetModelMatrix = glm : : translate ( planetModelMatrix , translation ) ;
planetModelMatrix = glm : : scale ( planetModelMatrix , scale ) ;
return planetModelMatrix ;
2021-01-16 17:11:39 +01:00
}
2021-01-24 19:21:05 +01:00
//funkcja rysujaca ksiezyce orbitujace wokol danej planety
2021-01-16 21:20:03 +01:00
glm : : mat4 drawMoon ( glm : : mat4 planetModelMatrix , float time , glm : : vec3 orbit , glm : : vec3 translation , glm : : vec3 rotation , glm : : vec3 scale )
{
glm : : mat4 moonModelMatrix = glm : : mat4 ( planetModelMatrix ) ;
moonModelMatrix = glm : : rotate ( moonModelMatrix , time , orbit ) ;
moonModelMatrix = glm : : translate ( moonModelMatrix , translation ) ;
moonModelMatrix = glm : : rotate ( moonModelMatrix , time , rotation ) ;
moonModelMatrix = glm : : scale ( moonModelMatrix , scale ) ;
return moonModelMatrix ;
}
2021-01-16 17:11:39 +01:00
void renderScene ( )
{
cameraMatrix = createCameraMatrix ( ) ;
2021-01-24 00:40:45 +01:00
perspectiveMatrix = Core : : createPerspectiveMatrix ( 0.01f , 1000.0f , frustumScale ) ;
2021-01-16 17:11:39 +01:00
float time = glutGet ( GLUT_ELAPSED_TIME ) / 1000.f ;
2021-01-16 20:33:47 +01:00
glClearColor ( 0.0f , 0.0f , 0.0f , 1.0f ) ;
2021-01-29 01:07:43 +01:00
glClear ( GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT ) ;
2021-01-16 17:11:39 +01:00
2021-01-16 20:33:47 +01:00
2021-01-29 01:07:43 +01:00
glBindFramebuffer ( GL_FRAMEBUFFER , FBO ) ;
glClear ( GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT ) ;
2021-01-25 23:50:53 +01:00
2021-01-16 21:20:03 +01:00
2021-01-29 01:07:43 +01:00
//ustalanie pozycji slonc (lightPos)
2021-01-16 20:33:47 +01:00
glm : : mat4 sunModelMatrix = glm : : mat4 ( 1.0f ) ;
2021-01-16 21:20:03 +01:00
sunModelMatrix = glm : : translate ( sunModelMatrix , sunPos ) ;
2021-01-24 23:18:02 +01:00
sunModelMatrix = glm : : scale ( sunModelMatrix , glm : : vec3 ( 3.0f , 3.0f , 3.0f ) ) ;
2021-01-17 01:26:29 +01:00
glm : : mat4 sunModelMatrix2 = glm : : mat4 ( 1.0f ) ;
sunModelMatrix2 = glm : : translate ( sunModelMatrix2 , sunPos2 ) ;
2021-01-16 20:33:47 +01:00
2021-02-01 00:30:11 +01:00
glm : : mat4 earth = drawPlanet ( time / 5.0f , sunPos * glm : : vec3 ( 1.5f , 1 , 1 ) , glm : : vec3 ( 0.0f , 1.0f , 0.0f ) , glm : : vec3 ( - 10.5f , 0.0f , - 10.5f ) , glm : : vec3 ( 0.5f , 0.5f , 0.5f ) ) ;
glm : : mat4 moon = drawMoon ( earth , time / 2.0f , glm : : vec3 ( 1.0f , 0.0f , 0.0f ) , glm : : vec3 ( 0 , 1 , 1 ) , glm : : vec3 ( 1.5f , 1.0f , 1.0f ) , glm : : vec3 ( 0.3f , 0.3f , 0.3f ) ) ;
earth = glm : : rotate ( earth , time / 3.0f , glm : : vec3 ( 0.0f , 0.0f , 1.0f ) ) ;
glm : : mat4 planet1 = drawPlanet ( time / 5.0f , sunPos2 , glm : : vec3 ( 0.0f , 1.0f , 0.0f ) , glm : : vec3 ( - 6.5f , 0.0f , - 6.5f ) , glm : : vec3 ( 0.4f , 0.4f , 0.4f ) ) ;
planet1 = glm : : rotate ( planet1 , time / 3.0f , glm : : vec3 ( 0.0f , 0.0f , 1.0f ) ) ;
glm : : mat4 crewmateModelMatrix = glm : : translate ( glm : : vec3 ( 0 , 1 , 1 ) ) * glm : : rotate ( time / 2 , glm : : vec3 ( 1 , 0 , 1 ) ) * glm : : scale ( glm : : vec3 ( 0.01 ) ) ;
2021-02-01 11:09:42 +01:00
glm : : mat4 shipModelMatrix = glm : : translate ( cameraPos + cameraDir * 0.7f + glm : : vec3 ( 0 , - 0.25f , 0 ) ) * glm : : rotate ( - cameraAngle + glm : : radians ( 90.0f ) , glm : : vec3 ( 0 , 1 , 0 ) ) * glm : : scale ( glm : : vec3 ( 0.0001f ) ) ;
2021-01-24 00:40:45 +01:00
2021-01-24 02:57:03 +01:00
2021-01-29 02:03:00 +01:00
glUseProgram ( programTex ) ;
2021-01-17 01:26:29 +01:00
lights [ 0 ] . position = sunPos ;
lights [ 1 ] . position = sunPos2 ;
2021-02-01 00:26:43 +01:00
2021-02-01 02:22:35 +01:00
glm : : mat4 engineLeft = glm : : translate ( shipModelMatrix , glm : : vec3 ( 450 , 0 , - 1500 ) ) ;
2021-01-26 23:18:54 +01:00
lights [ 2 ] . position = glm : : vec3 ( engineLeft [ 3 ] [ 0 ] , engineLeft [ 3 ] [ 1 ] , engineLeft [ 3 ] [ 2 ] ) ;
2021-01-26 22:24:47 +01:00
2021-02-01 02:22:35 +01:00
glm : : mat4 engineRight = glm : : translate ( shipModelMatrix , glm : : vec3 ( - 450 , 0 , - 1500 ) ) ;
2021-01-26 23:18:54 +01:00
lights [ 3 ] . position = glm : : vec3 ( engineRight [ 3 ] [ 0 ] , engineRight [ 3 ] [ 1 ] , engineRight [ 3 ] [ 2 ] ) ;
2021-02-01 00:26:43 +01:00
2021-01-17 01:26:29 +01:00
for ( int i = 0 ; i < lights . size ( ) ; i + + )
{
std : : string col = " pointLights[ " + std : : to_string ( i ) + " ].color " ;
std : : string pos = " pointLights[ " + std : : to_string ( i ) + " ].position " ;
2021-01-25 23:50:53 +01:00
std : : string ins = " pointLights[ " + std : : to_string ( i ) + " ].intensity " ;
2021-01-17 01:26:29 +01:00
glUniform3f ( glGetUniformLocation ( programTex , col . c_str ( ) ) , lights [ i ] . color . x , lights [ i ] . color . y , lights [ i ] . color . z ) ;
glUniform3f ( glGetUniformLocation ( programTex , pos . c_str ( ) ) , lights [ i ] . position . x , lights [ i ] . position . y , lights [ i ] . position . z ) ;
2021-01-25 23:50:53 +01:00
glUniform1f ( glGetUniformLocation ( programTex , ins . c_str ( ) ) , lights [ i ] . intensity ) ;
2021-01-17 01:26:29 +01:00
}
2021-01-16 20:33:47 +01:00
glUniform3f ( glGetUniformLocation ( programTex , " cameraPos " ) , cameraPos . x , cameraPos . y , cameraPos . z ) ;
2021-01-24 19:21:05 +01:00
2021-01-26 23:18:54 +01:00
drawFromAssimpModel ( programTex , corvette , shipModelMatrix , glm : : vec3 ( 1 ) ) ;
2021-01-28 21:09:42 +01:00
drawFromAssimpModel ( programTex , crewmate , crewmateModelMatrix , glm : : vec3 ( 1 ) ) ;
2021-01-29 02:03:00 +01:00
//rysowanie Ziemi z ksiezycem
2021-01-16 20:33:47 +01:00
drawObjectTexture ( programTex , sphereContext , earth , glm : : vec3 ( 0.8f , 0.8f , 0.8f ) , earthTexture ) ;
2021-01-16 21:20:03 +01:00
drawObjectTexture ( programTex , sphereContext , moon , glm : : vec3 ( 0.9f , 1.0f , 0.9f ) , moonTexture ) ;
2021-02-01 00:30:11 +01:00
drawObjectTexture ( programTex , sphereContext , planet1 , glm : : vec3 ( 0.4f , 0.2f , 0.9f ) , moonTexture ) ;
2021-01-24 19:21:05 +01:00
2021-01-29 02:03:00 +01:00
glUseProgram ( programSun ) ;
glUniform3f ( glGetUniformLocation ( programSun , " cameraPos " ) , cameraPos . x , cameraPos . y , cameraPos . z ) ;
2021-01-29 01:07:43 +01:00
2021-01-29 02:03:00 +01:00
drawObjectTexture ( programSun , sphereContext , sunModelMatrix , glm : : vec3 ( 3.5f , 3.8f , 3.8f ) , sunTexture ) ;
drawObjectTexture ( programSun , sphereContext , sunModelMatrix2 , glm : : vec3 ( 0.9f , 0.9f , 2.0f ) , sunTexture ) ;
2021-02-01 01:12:15 +01:00
2021-02-01 00:26:43 +01:00
//particlepart
glUseProgram ( programParticle ) ;
2021-02-01 01:12:15 +01:00
//glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
2021-02-01 00:26:43 +01:00
2021-02-01 02:22:35 +01:00
double delta = time - lastTime ;
lastTime = time ;
glm : : mat4 transformation = perspectiveMatrix * cameraMatrix ;
int newparticles = 0 ;
2021-02-09 22:51:41 +01:00
2021-02-01 02:22:35 +01:00
2021-02-09 22:51:41 +01:00
if ( engineLightTimer < 30 )
2021-02-01 02:22:35 +01:00
{
engineLightTimer + + ;
newparticles = ( int ) ( delta * 10000.0 ) ;
if ( newparticles > ( int ) ( 0.016f * 10000.0 ) )
newparticles = ( int ) ( 0.016f * 10000.0 ) ;
}
else
{
lights [ 2 ] . intensity = 0.00001 ;
lights [ 3 ] . intensity = 0.00001 ;
}
2021-02-09 22:51:41 +01:00
/*
2021-02-01 11:09:42 +01:00
if ( cameraPos [ 0 ] < partX )
{
partXdir = 1 ;
}
else if ( cameraPos [ 0 ] > partX )
{
partXdir = - 1 ;
}
else
{
partXdir = 0 ;
}
if ( cameraPos [ 2 ] < partY )
{
partYdir = 1 ;
}
else if ( cameraPos [ 2 ] > partY )
{
partYdir = - 1 ;
}
else
{
partYdir = 0 ;
}
if ( cameraDir [ 0 ] < 0 )
{
partAdir = cameraDir [ 0 ] * - 1 ;
}
2021-02-09 22:51:41 +01:00
*/
2021-02-01 00:26:43 +01:00
for ( int i = 0 ; i < newparticles ; i + + ) {
int particleIndex = FindUnusedParticle ( ) ;
2021-02-09 22:51:41 +01:00
ParticlesContainer [ particleIndex ] . life = 2.0f ;
2021-02-01 02:22:35 +01:00
if ( lights [ 2 ] . intensity > 0.001 & & lights [ 3 ] . intensity > 0.001 )
{
if ( rand ( ) % 2 )
ParticlesContainer [ particleIndex ] . pos = lights [ 2 ] . position ;
else
ParticlesContainer [ particleIndex ] . pos = lights [ 3 ] . position ;
}
else if ( lights [ 2 ] . intensity > 0.001 )
ParticlesContainer [ particleIndex ] . pos = lights [ 2 ] . position ;
else if ( lights [ 3 ] . intensity > 0.001 )
ParticlesContainer [ particleIndex ] . pos = lights [ 3 ] . position ;
2021-02-01 00:26:43 +01:00
2021-02-09 22:51:41 +01:00
float spread = 0.8 ;
glm : : vec3 maindir = - 1 * cameraDir ; //glm::vec3(partXdir*partAdir, -0.3f, partYdir*partAdir);
2021-02-01 00:26:43 +01:00
glm : : vec3 randomdir = glm : : vec3 (
2021-02-01 02:22:35 +01:00
( rand ( ) % 2000 - 1000.0f ) / 5000.0f ,
( rand ( ) % 2000 - 1000.0f ) / 5000.0f ,
( rand ( ) % 2000 - 1000.0f ) / 5000.0f
2021-02-01 00:26:43 +01:00
) ;
ParticlesContainer [ particleIndex ] . speed = maindir + randomdir * spread ;
// Very bad way to generate a random color
2021-02-01 02:22:35 +01:00
ParticlesContainer [ particleIndex ] . r = rand ( ) % 100 + 100 ;
ParticlesContainer [ particleIndex ] . g = 0 ;
ParticlesContainer [ particleIndex ] . b = rand ( ) % 100 + 50 ;
2021-02-01 00:26:43 +01:00
ParticlesContainer [ particleIndex ] . a = ( rand ( ) % 256 ) / 3 ;
2021-02-01 02:22:35 +01:00
ParticlesContainer [ particleIndex ] . size = ( rand ( ) % 1000 ) / 50000.0f + 0.01f ;
2021-02-01 00:26:43 +01:00
}
// Simulate all particles
int ParticlesCount = 0 ;
for ( int i = 0 ; i < MaxParticles ; i + + ) {
Particle & p = ParticlesContainer [ i ] ; // shortcut
if ( p . life > 0.0f ) {
// Decrease life
p . life - = delta ;
if ( p . life > 0.0f ) {
// Simulate simple physics : gravity only, no collisions
2021-02-01 11:09:42 +01:00
p . speed + = glm : : vec3 ( 0.0f , 0.0f , 0.0f ) * ( float ) delta * 0.5f ;
2021-02-01 00:26:43 +01:00
p . pos + = p . speed * ( float ) delta ;
p . cameradistance = glm : : length2 ( p . pos - cameraPos ) ;
//ParticlesContainer[i].pos += glm::vec3(0.0f,10.0f, 0.0f) * (float)delta;
// Fill the GPU buffer
g_particule_position_size_data [ 4 * ParticlesCount + 0 ] = p . pos . x ;
g_particule_position_size_data [ 4 * ParticlesCount + 1 ] = p . pos . y ;
g_particule_position_size_data [ 4 * ParticlesCount + 2 ] = p . pos . z ;
g_particule_position_size_data [ 4 * ParticlesCount + 3 ] = p . size ;
g_particule_color_data [ 4 * ParticlesCount + 0 ] = p . r ;
g_particule_color_data [ 4 * ParticlesCount + 1 ] = p . g ;
g_particule_color_data [ 4 * ParticlesCount + 2 ] = p . b ;
g_particule_color_data [ 4 * ParticlesCount + 3 ] = p . a ;
}
else {
// Particles that just died will be put at the end of the buffer in SortParticles();
p . cameradistance = - 1.0f ;
}
ParticlesCount + + ;
}
}
2021-02-01 01:12:15 +01:00
2021-02-01 02:22:35 +01:00
SortParticles ( ) ;
drawParticles ( ParticlesCount , transformation ) ;
2021-01-29 01:07:43 +01:00
drawSkybox ( programSkybox , cubeContext , skyboxTexture ) ;
glBindFramebuffer ( GL_FRAMEBUFFER , 0 ) ;
bool horizontal = true , first_iteration = true ;
unsigned int amount = 10 ;
2021-01-29 02:03:00 +01:00
glUseProgram ( programBlur ) ;
2021-01-29 01:07:43 +01:00
for ( unsigned int i = 0 ; i < amount ; i + + )
{
glBindFramebuffer ( GL_FRAMEBUFFER , pingpongFBO [ horizontal ] ) ;
2021-01-29 02:03:00 +01:00
glUniform1i ( glGetUniformLocation ( programBlur , " horizontal " ) , horizontal ) ;
2021-02-01 01:12:15 +01:00
glBindTexture ( GL_TEXTURE_2D , first_iteration ? colorBuffers [ 1 ] : pingpongColorbuffers [ ! horizontal ] ) ;
2021-01-29 01:07:43 +01:00
renderQuad ( ) ;
horizontal = ! horizontal ;
if ( first_iteration )
first_iteration = false ;
}
glBindFramebuffer ( GL_FRAMEBUFFER , 0 ) ;
2021-01-29 02:03:00 +01:00
glUseProgram ( programBloom ) ;
2021-01-29 01:07:43 +01:00
glActiveTexture ( GL_TEXTURE0 ) ;
glBindTexture ( GL_TEXTURE_2D , colorBuffers [ 0 ] ) ;
glActiveTexture ( GL_TEXTURE1 ) ;
glBindTexture ( GL_TEXTURE_2D , pingpongColorbuffers [ ! horizontal ] ) ;
renderQuad ( ) ;
2021-01-16 17:11:39 +01:00
glutSwapBuffers ( ) ;
}
2021-02-01 02:22:35 +01:00
void init_particles ( )
2021-01-16 17:11:39 +01:00
{
2021-02-01 00:26:43 +01:00
glGenVertexArrays ( 1 , & VertexArrayID ) ;
glBindVertexArray ( VertexArrayID ) ;
g_particule_position_size_data = new GLfloat [ MaxParticles * 4 ] ;
g_particule_color_data = new GLubyte [ MaxParticles * 4 ] ;
for ( int i = 0 ; i < MaxParticles ; i + + ) {
2021-02-09 22:51:41 +01:00
ParticlesContainer [ i ] . life = 1.0f ;
2021-02-01 00:26:43 +01:00
ParticlesContainer [ i ] . cameradistance = - 1.0f ;
}
static const GLfloat g_vertex_buffer_data [ ] = {
2021-02-01 11:09:42 +01:00
- 0.3f , - 0.3f , 0.0f ,
0.3f , - 0.3f , 0.0f ,
- 0.3f , 0.3f , 0.0f ,
0.3f , 0.3f , 0.0f ,
2021-02-01 00:26:43 +01:00
} ;
glGenBuffers ( 1 , & particle_vertex_buffer ) ;
glBindBuffer ( GL_ARRAY_BUFFER , particle_vertex_buffer ) ;
glBufferData ( GL_ARRAY_BUFFER , sizeof ( g_vertex_buffer_data ) , g_vertex_buffer_data , GL_STATIC_DRAW ) ;
// The VBO containing the positions and sizes of the particles
glGenBuffers ( 1 , & particles_position_buffer ) ;
glBindBuffer ( GL_ARRAY_BUFFER , particles_position_buffer ) ;
// Initialize with empty (NULL) buffer : it will be updated later, each frame.
glBufferData ( GL_ARRAY_BUFFER , MaxParticles * 4 * sizeof ( GLfloat ) , NULL , GL_STREAM_DRAW ) ;
// The VBO containing the colors of the particles
glGenBuffers ( 1 , & particles_color_buffer ) ;
glBindBuffer ( GL_ARRAY_BUFFER , particles_color_buffer ) ;
// Initialize with empty (NULL) buffer : it will be updated later, each frame.
glBufferData ( GL_ARRAY_BUFFER , MaxParticles * 4 * sizeof ( GLubyte ) , NULL , GL_STREAM_DRAW ) ;
lastTime = glutGet ( GLUT_ELAPSED_TIME ) / 1000.f ;
2021-02-01 02:22:35 +01:00
}
2021-01-29 01:07:43 +01:00
2021-02-01 02:22:35 +01:00
void init_bloom ( )
{
2021-01-29 01:07:43 +01:00
glGenFramebuffers ( 1 , & FBO ) ;
glBindFramebuffer ( GL_FRAMEBUFFER , FBO ) ;
glGenTextures ( 2 , colorBuffers ) ;
for ( unsigned int i = 0 ; i < 2 ; i + + )
{
glBindTexture ( GL_TEXTURE_2D , colorBuffers [ i ] ) ;
glTexImage2D (
GL_TEXTURE_2D , 0 , GL_RGBA16F , SCR_WIDTH , SCR_HEIGHT , 0 , GL_RGBA , GL_FLOAT , NULL
) ;
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 ) ;
glFramebufferTexture2D (
GL_FRAMEBUFFER , GL_COLOR_ATTACHMENT0 + i , GL_TEXTURE_2D , colorBuffers [ i ] , 0
) ;
}
unsigned int rboDepth ;
glGenRenderbuffers ( 1 , & rboDepth ) ;
glBindRenderbuffer ( GL_RENDERBUFFER , rboDepth ) ;
glRenderbufferStorage ( GL_RENDERBUFFER , GL_DEPTH_COMPONENT , SCR_WIDTH , SCR_HEIGHT ) ;
glFramebufferRenderbuffer ( GL_FRAMEBUFFER , GL_DEPTH_ATTACHMENT , GL_RENDERBUFFER , rboDepth ) ;
2021-01-29 02:03:00 +01:00
2021-01-29 01:07:43 +01:00
unsigned int attachments [ 2 ] = { GL_COLOR_ATTACHMENT0 , GL_COLOR_ATTACHMENT1 } ;
glDrawBuffers ( 2 , attachments ) ;
if ( glCheckFramebufferStatus ( GL_FRAMEBUFFER ) ! = GL_FRAMEBUFFER_COMPLETE )
std : : cout < < " Framebuffer not complete! " < < std : : endl ;
glBindFramebuffer ( GL_FRAMEBUFFER , 0 ) ;
glGenFramebuffers ( 2 , pingpongFBO ) ;
glGenTextures ( 2 , pingpongColorbuffers ) ;
for ( unsigned int i = 0 ; i < 2 ; i + + )
{
glBindFramebuffer ( GL_FRAMEBUFFER , pingpongFBO [ i ] ) ;
glBindTexture ( GL_TEXTURE_2D , pingpongColorbuffers [ i ] ) ;
glTexImage2D ( GL_TEXTURE_2D , 0 , GL_RGBA16F , SCR_WIDTH , SCR_HEIGHT , 0 , GL_RGBA , GL_FLOAT , NULL ) ;
glTexParameteri ( GL_TEXTURE_2D , GL_TEXTURE_MIN_FILTER , GL_LINEAR ) ;
glTexParameteri ( GL_TEXTURE_2D , GL_TEXTURE_MAG_FILTER , GL_LINEAR ) ;
2021-01-29 02:03:00 +01:00
glTexParameteri ( GL_TEXTURE_2D , GL_TEXTURE_WRAP_S , GL_CLAMP_TO_EDGE ) ;
2021-01-29 01:07:43 +01:00
glTexParameteri ( GL_TEXTURE_2D , GL_TEXTURE_WRAP_T , GL_CLAMP_TO_EDGE ) ;
glFramebufferTexture2D ( GL_FRAMEBUFFER , GL_COLOR_ATTACHMENT0 , GL_TEXTURE_2D , pingpongColorbuffers [ i ] , 0 ) ;
if ( glCheckFramebufferStatus ( GL_FRAMEBUFFER ) ! = GL_FRAMEBUFFER_COMPLETE )
std : : cout < < " Framebuffer not complete! " < < std : : endl ;
}
2021-02-01 02:22:35 +01:00
}
void init ( )
{
glEnable ( GL_DEPTH_TEST ) ;
programTex = shaderLoader . CreateProgram ( " shaders/shader_tex.vert " , " shaders/shader_tex.frag " ) ;
programSkybox = shaderLoader . CreateProgram ( " shaders/shader_skybox.vert " , " shaders/shader_skybox.frag " ) ;
programSun = shaderLoader . CreateProgram ( " shaders/shader_sun.vert " , " shaders/shader_sun.frag " ) ;
programBlur = shaderLoader . CreateProgram ( " shaders/shader_blur.vert " , " shaders/shader_blur.frag " ) ;
programBloom = shaderLoader . CreateProgram ( " shaders/shader_bloom.vert " , " shaders/shader_bloom.frag " ) ;
programParticle = shaderLoader . CreateProgram ( " shaders/shader_particle.vert " , " shaders/shader_particle.frag " ) ;
glUseProgram ( programBlur ) ;
glUniform1i ( glGetUniformLocation ( programBlur , " image " ) , 0 ) ;
glUseProgram ( programBloom ) ;
glUniform1i ( glGetUniformLocation ( programBloom , " scene " ) , 0 ) ;
glUniform1i ( glGetUniformLocation ( programBloom , " bloomBlur " ) , 1 ) ;
glUseProgram ( 0 ) ;
corvette = std : : make_shared < Model > ( " models/Corvette-F3.obj " ) ;
crewmate = std : : make_shared < Model > ( " models/space_humster.obj " ) ;
//shipModel = obj::loadModelFromFile("models/spaceship.obj");
sphereModel = obj : : loadModelFromFile ( " models/sphere.obj " ) ;
cubeModel = obj : : loadModelFromFile ( " models/cube.obj " ) ;
sphereContext . initFromOBJ ( sphereModel ) ;
cubeContext . initFromOBJ ( cubeModel ) ;
//shipContext.initFromOBJ(shipModel);
shipTexture = Core : : LoadTexture ( " textures/spaceship.png " ) ;
sunTexture = Core : : LoadTexture ( " textures/sun.png " ) ;
earthTexture = Core : : LoadTexture ( " textures/earth2.png " ) ;
moonTexture = Core : : LoadTexture ( " textures/moon.png " ) ;
particleTexture = Core : : LoadTexture ( " textures/sun.png " ) ;
skyboxTexture = loadCubemap ( faces ) ;
init_particles ( ) ;
init_bloom ( ) ;
2021-01-29 01:07:43 +01:00
2021-01-17 01:26:29 +01:00
Light l1 ;
2021-01-25 23:50:53 +01:00
l1 . position = sunPos ;
2021-01-17 01:26:29 +01:00
l1 . color = glm : : vec3 ( 0.8f , 0.8f , 0.7f ) ;
2021-01-29 02:13:38 +01:00
l1 . intensity = 7 ;
2021-01-17 01:26:29 +01:00
lights . push_back ( l1 ) ;
Light l2 ;
2021-01-25 23:50:53 +01:00
l2 . position = sunPos2 ;
2021-01-17 01:26:29 +01:00
l2 . color = glm : : vec3 ( 0.5f , 0.5f , 0.5f ) ;
2021-01-27 01:35:39 +01:00
l2 . intensity = 2 ;
2021-01-17 01:26:29 +01:00
lights . push_back ( l2 ) ;
2021-01-25 23:50:53 +01:00
Light l3 ;
2021-01-27 01:35:39 +01:00
l3 . position = glm : : vec3 ( 0 ) ;
l3 . color = glm : : vec3 ( 1.0f , 0.0f , 0.0f ) ;
2021-01-25 23:50:53 +01:00
l3 . intensity = 0.0001 ;
lights . push_back ( l3 ) ;
2021-01-26 23:18:54 +01:00
Light l4 ;
2021-01-27 01:35:39 +01:00
l4 . position = glm : : vec3 ( 0 ) ;
l4 . color = glm : : vec3 ( 1.0f , 0.0f , 0.0f ) ;
2021-01-26 23:18:54 +01:00
l4 . intensity = 0.0001 ;
lights . push_back ( l4 ) ;
2021-01-16 17:11:39 +01:00
}
void shutdown ( )
{
2021-02-01 00:26:43 +01:00
2021-01-16 17:11:39 +01:00
}
2021-01-24 00:40:45 +01:00
void onReshape ( int width , int height )
{
2021-01-29 01:07:43 +01:00
SCR_WIDTH = width ;
SCR_HEIGHT = height ;
2021-01-24 00:40:45 +01:00
frustumScale = ( float ) width / ( float ) height ;
glViewport ( 0 , 0 , width , height ) ;
}
2021-01-16 17:11:39 +01:00
void idle ( )
{
glutPostRedisplay ( ) ;
}
int main ( int argc , char * * argv )
{
2021-02-01 00:33:46 +01:00
int screenWidth = GetSystemMetrics ( SM_CXSCREEN ) ;
int screenHeight = GetSystemMetrics ( SM_CYSCREEN ) ;
SCR_WIDTH = screenWidth ; SCR_HEIGHT = screenHeight ;
2021-01-16 17:11:39 +01:00
glutInit ( & argc , argv ) ;
2021-01-24 20:49:53 +01:00
glutSetOption ( GLUT_MULTISAMPLE , 8 ) ;
2021-02-01 11:16:54 +01:00
glutInitDisplayMode ( GLUT_DOUBLE | GLUT_RGB | GLUT_DEPTH | GLUT_MULTISAMPLE ) ;
2021-01-24 20:49:53 +01:00
glEnable ( GL_MULTISAMPLE ) ;
2021-02-01 00:26:43 +01:00
glEnable ( GL_BLEND ) ;
glBlendFunc ( GL_SRC_ALPHA , GL_ONE_MINUS_SRC_ALPHA ) ;
2021-02-01 00:33:46 +01:00
glutInitWindowPosition ( 0 , 0 ) ;
2021-01-29 01:07:43 +01:00
glutInitWindowSize ( SCR_WIDTH , SCR_HEIGHT ) ;
2021-02-01 00:33:46 +01:00
//glutCreateWindow("GRK-PROJECT WIP");
winId = glutCreateWindow ( " GRK-PROJECT WIP " ) ;
glutFullScreen ( ) ;
2021-01-16 17:11:39 +01:00
glewInit ( ) ;
2021-02-01 00:26:43 +01:00
2021-01-16 17:11:39 +01:00
init ( ) ;
glutKeyboardFunc ( keyboard ) ;
2021-01-26 22:24:47 +01:00
//to sprawia, że obiekty ukryte przed kamerą nie są renderowane
2021-01-29 02:03:00 +01:00
//glEnable(GL_CULL_FACE);
//glCullFace(GL_BACK);
//glFrontFace(GL_CW);
2021-01-26 22:24:47 +01:00
2021-01-16 17:11:39 +01:00
glutDisplayFunc ( renderScene ) ;
glutIdleFunc ( idle ) ;
2021-01-24 00:40:45 +01:00
glutReshapeFunc ( onReshape ) ;
2021-01-16 17:11:39 +01:00
glutMainLoop ( ) ;
shutdown ( ) ;
return 0 ;
}