OpenMiner/source/states/GameState.cpp

248 lines
7.0 KiB
C++
Raw Normal View History

2014-12-15 16:47:30 +01:00
/*
* =====================================================================================
*
* Filename: GameState.cpp
*
2018-06-05 01:24:54 +02:00
* Description:
2014-12-15 16:47:30 +01:00
*
* Created: 15/12/2014 03:51:55
*
* Author: Quentin Bazin, <quent42340@gmail.com>
2014-12-15 16:47:30 +01:00
*
* =====================================================================================
*/
#define GLM_FORCE_RADIANS
#include <glm/gtc/matrix_transform.hpp>
#include "OpenGL.hpp"
2018-06-05 16:17:40 +02:00
#include "Config.hpp"
#include "Keyboard.hpp"
#include "Mouse.hpp"
2014-12-15 16:47:30 +01:00
#include "GameState.hpp"
2014-12-26 00:39:10 +01:00
GameState::GameState() : m_camera(Camera::getInstance()) {
2015-02-06 01:44:16 +01:00
m_shader.createProgram();
2018-06-05 01:24:54 +02:00
2015-02-06 01:44:16 +01:00
m_shader.addShader(GL_VERTEX_SHADER, "shaders/game.v.glsl");
m_shader.addShader(GL_FRAGMENT_SHADER, "shaders/color.f.glsl");
m_shader.addShader(GL_FRAGMENT_SHADER, "shaders/light.f.glsl");
m_shader.addShader(GL_FRAGMENT_SHADER, "shaders/fog.f.glsl");
m_shader.addShader(GL_FRAGMENT_SHADER, "shaders/game.f.glsl");
2018-06-05 01:24:54 +02:00
2015-02-06 01:44:16 +01:00
m_shader.linkProgram();
2018-06-05 01:24:54 +02:00
2014-12-18 07:02:48 +01:00
Shader::bind(&m_shader);
2018-06-05 01:24:54 +02:00
// m_projectionMatrix = glm::perspective(45.0f, (float)SCREEN_WIDTH / SCREEN_HEIGHT, DIST_NEAR, DIST_FAR);
m_projectionMatrix = glm::perspective(45.0f, (float)SCREEN_WIDTH / SCREEN_HEIGHT, DIST_NEAR, DIST_FAR);
2014-12-18 07:02:48 +01:00
m_viewMatrix = m_camera.update();
2018-06-05 01:24:54 +02:00
2015-02-06 01:44:16 +01:00
m_shader.setUniform("u_projectionMatrix", m_projectionMatrix);
2018-06-05 01:24:54 +02:00
2014-12-18 07:02:48 +01:00
m_shader.setUniform("u_tex", 0);
2018-06-05 01:24:54 +02:00
2014-12-15 16:47:30 +01:00
Shader::bind(nullptr);
glGenBuffers(1, &m_cursorVBO);
2014-12-15 16:47:30 +01:00
}
void GameState::update() {
2014-12-18 07:02:48 +01:00
m_viewMatrix = m_camera.processInputs();
m_selectedBlock = findSelectedBlock(false);
if (Keyboard::isKeyPressedOnce(Keyboard::X)) {
m_world.setBlock(m_selectedBlock.x, m_selectedBlock.y, m_selectedBlock.z, 0);
}
2014-12-15 16:47:30 +01:00
}
void GameState::draw() {
Shader::bind(&m_shader);
2018-06-05 01:24:54 +02:00
2014-12-29 02:57:29 +01:00
m_shader.setUniform("u_viewMatrix", m_viewMatrix);
2018-06-05 01:24:54 +02:00
2018-06-05 16:17:40 +02:00
// m_skybox.draw(m_shader);
2018-06-05 01:24:54 +02:00
m_world.draw(m_camera, m_shader, m_projectionMatrix, m_viewMatrix);
drawSelectedBlock();
drawCross();
2018-06-05 01:24:54 +02:00
2014-12-15 16:47:30 +01:00
Shader::bind(nullptr);
}
void GameState::drawSelectedBlock() {
float bx = m_selectedBlock.x;
float by = m_selectedBlock.y;
float bz = m_selectedBlock.z;
/* Render a box around the block we are pointing at */
float box[24][3] = {
{bx + 0, by + 0, bz + 0},//, 14},
{bx + 1, by + 0, bz + 0},//, 14},
{bx + 0, by + 1, bz + 0},//, 14},
{bx + 1, by + 1, bz + 0},//, 14},
{bx + 0, by + 0, bz + 1},//, 14},
{bx + 1, by + 0, bz + 1},//, 14},
{bx + 0, by + 1, bz + 1},//, 14},
{bx + 1, by + 1, bz + 1},//, 14},
{bx + 0, by + 0, bz + 0},//, 14},
{bx + 0, by + 1, bz + 0},//, 14},
{bx + 1, by + 0, bz + 0},//, 14},
{bx + 1, by + 1, bz + 0},//, 14},
{bx + 0, by + 0, bz + 1},//, 14},
{bx + 0, by + 1, bz + 1},//, 14},
{bx + 1, by + 0, bz + 1},//, 14},
{bx + 1, by + 1, bz + 1},//, 14},
{bx + 0, by + 0, bz + 0},//, 14},
{bx + 0, by + 0, bz + 1},//, 14},
{bx + 1, by + 0, bz + 0},//, 14},
{bx + 1, by + 0, bz + 1},//, 14},
{bx + 0, by + 1, bz + 0},//, 14},
{bx + 0, by + 1, bz + 1},//, 14},
{bx + 1, by + 1, bz + 0},//, 14},
{bx + 1, by + 1, bz + 1},//, 14},
};
glDisable(GL_POLYGON_OFFSET_FILL);
glDisable(GL_CULL_FACE);
glBindBuffer(GL_ARRAY_BUFFER, m_cursorVBO);
m_shader.setUniform("u_modelMatrix", glm::mat4(1));
glBufferData(GL_ARRAY_BUFFER, sizeof(box), box, GL_DYNAMIC_DRAW);
m_shader.enableVertexAttribArray("coord3d");
glVertexAttribPointer(m_shader.attrib("coord3d"), 3, GL_FLOAT, GL_FALSE, 0, 0);
glDrawArrays(GL_LINES, 0, 24);
m_shader.disableVertexAttribArray("coord3d");
glBindBuffer(GL_ARRAY_BUFFER, 0);
glEnable(GL_CULL_FACE);
glEnable(GL_POLYGON_OFFSET_FILL);
}
void GameState::drawCross() {
/* Draw a cross in the center of the screen */
float cross[4][3] = {
{-0.04, 0, 0},//, 13},
{+0.04, 0, 0},//, 13},
{0, -0.05, 0},//, 13},
{0, +0.05, 0},//, 13}
};
glDisable(GL_DEPTH_TEST);
glBindBuffer(GL_ARRAY_BUFFER, m_cursorVBO);
m_shader.setUniform("u_modelMatrix", glm::mat4(1));
m_shader.setUniform("u_viewMatrix", glm::mat4(1));
m_shader.setUniform("u_projectionMatrix", glm::mat4(1));
glBufferData(GL_ARRAY_BUFFER, sizeof(cross), cross, GL_DYNAMIC_DRAW);
m_shader.enableVertexAttribArray("coord3d");
glVertexAttribPointer(m_shader.attrib("coord3d"), 3, GL_FLOAT, GL_FALSE, 0, 0);
glDrawArrays(GL_LINES, 0, 4);
m_shader.disableVertexAttribArray("coord3d");
glBindBuffer(GL_ARRAY_BUFFER, 0);
glEnable(GL_DEPTH_TEST);
m_shader.setUniform("u_projectionMatrix", m_projectionMatrix);
}
// Not really GLSL fract(), but the absolute distance to the nearest integer value
// FIXME: fract also exists in glm, check if its the same thing
float GameState::fract(float value) {
float f = value - floorf(value);
if(f > 0.5) return 1 - f;
else return f;
}
// FIXME
glm::vec4 GameState::findSelectedBlock(bool useDepthBuffer) {
int mx, my, mz;
int face = -1;
glm::vec3 lookAt{m_camera.pointTargetedX() - m_camera.x(),
m_camera.pointTargetedY() - m_camera.y(),
m_camera.pointTargetedZ() - m_camera.z()};
glm::vec3 position{m_camera.x(),
m_camera.y(),
m_camera.z()};
if(useDepthBuffer) {
// At which voxel are we looking? First, find out coords of the center pixel
float depth;
glReadPixels(SCREEN_WIDTH / 2, SCREEN_HEIGHT / 2, 1, 1, GL_DEPTH_COMPONENT, GL_FLOAT, &depth);
glm::vec4 viewport = glm::vec4(0, 0, SCREEN_WIDTH, SCREEN_HEIGHT);
glm::vec3 winCoord = glm::vec3(SCREEN_WIDTH / 2, SCREEN_HEIGHT / 2, depth);
glm::vec3 objCoord = glm::unProject(winCoord, m_viewMatrix, m_projectionMatrix, viewport);
// Find out which block it belongs to
mx = objCoord.x;
my = objCoord.y;
mz = objCoord.z;
if(objCoord.x < 0) mx--;
if(objCoord.y < 0) my--;
if(objCoord.z < 0) mz--;
// Find out which face of the block we are looking at
if(fract(objCoord.x) < fract(objCoord.y)) {
if(fract(objCoord.x) < fract(objCoord.z)) {
face = 0; // X
} else {
face = 2; // Z
}
} else {
if(fract(objCoord.y) < fract(objCoord.z)) {
face = 1; // Y
} else {
face = 2; // Z
}
}
if(face == 0 && lookAt.x > 0) face += 3;
if(face == 1 && lookAt.y > 0) face += 3;
if(face == 2 && lookAt.z > 0) face += 3;
} else {
// Very naive ray casting algorithm to find out which block we are looking at
glm::vec3 testPos = position;
glm::vec3 prevPos = position;
for(int i = 0 ; i < 100 ; i++) {
// Advance from our current position to the direction we are looking at, in small steps
prevPos = testPos;
testPos += lookAt * 0.1f;
mx = floorf(testPos.x);
my = floorf(testPos.y);
mz = floorf(testPos.z);
// If we find a block that is not air, we are done
Block *block = m_world.getBlock(mx, my, mz);
if(block && block->id()) break;
}
// Find out which face of the block we are looking at
int px = floorf(prevPos.x);
int py = floorf(prevPos.y);
int pz = floorf(prevPos.z);
if(px > mx) face = 0;
else if(px < mx) face = 3;
else if(py > my) face = 1;
else if(py < my) face = 4;
else if(pz > mz) face = 2;
else if(pz < mz) face = 5;
// If we are looking at air, move the cursor out of sight
Block *block = m_world.getBlock(mx, my, mz);
if(!block || !block->id()) {
mx = my = mz = 99999;
}
}
return {mx, my, mz, face};
}