2016-06-18 09:12:09 +00:00
|
|
|
#include <Dengine/AssetManager.h>
|
|
|
|
#include <Dengine/Math.h>
|
2016-06-16 14:14:58 +00:00
|
|
|
#include <WorldTraveller/WorldTraveller.h>
|
|
|
|
|
2016-06-23 08:40:00 +00:00
|
|
|
//TODO(doyle): This is temporary! Maybe abstract into our platform layer, or
|
|
|
|
//choose to load assets outside of WorldTraveller!
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
2016-06-18 14:34:20 +00:00
|
|
|
void updateBufferObject(GLuint vbo, v4 texNDC)
|
|
|
|
{
|
|
|
|
// TODO(doyle): We assume that vbo and vao are assigned
|
2016-06-23 08:40:00 +00:00
|
|
|
// NOTE(doyle): Draws a series of triangles (three-sided polygons) using
|
|
|
|
// vertices v0, v1, v2, then v2, v1, v3 (note the order)
|
2016-06-18 14:34:20 +00:00
|
|
|
v4 vertices[] = {
|
|
|
|
// x y s t
|
|
|
|
{0.0f, 1.0f, texNDC.x, texNDC.y}, // Top left
|
|
|
|
{0.0f, 0.0f, texNDC.x, texNDC.w}, // Bottom left
|
|
|
|
{1.0f, 1.0f, texNDC.z, texNDC.y}, // Top right
|
|
|
|
{1.0f, 0.0f, texNDC.z, texNDC.w}, // Bottom right
|
|
|
|
};
|
|
|
|
|
|
|
|
glBindBuffer(GL_ARRAY_BUFFER, vbo);
|
|
|
|
|
|
|
|
// TODO(doyle): glBufferSubData
|
|
|
|
glBufferData(GL_ARRAY_BUFFER, sizeof(vertices), vertices, GL_STREAM_DRAW);
|
|
|
|
|
|
|
|
glBindBuffer(GL_ARRAY_BUFFER, 0);
|
|
|
|
}
|
|
|
|
|
2016-06-17 14:40:40 +00:00
|
|
|
void worldTraveller_gameInit(GameState *state)
|
2016-06-16 14:14:58 +00:00
|
|
|
{
|
|
|
|
/* Initialise assets */
|
2016-06-18 09:12:09 +00:00
|
|
|
asset_loadTextureImage(
|
2016-06-18 16:16:16 +00:00
|
|
|
"data/textures/WorldTraveller/TerraSprite1024.png", texlist_hero);
|
2016-06-17 14:40:40 +00:00
|
|
|
asset_loadShaderFiles("data/shaders/sprite.vert.glsl",
|
2016-06-18 09:12:09 +00:00
|
|
|
"data/shaders/sprite.frag.glsl", shaderlist_sprite);
|
2016-06-17 14:40:40 +00:00
|
|
|
glCheckError();
|
|
|
|
|
2016-06-23 08:40:00 +00:00
|
|
|
state->state = state_active;
|
2016-06-17 14:40:40 +00:00
|
|
|
|
2016-06-18 10:45:14 +00:00
|
|
|
/* Init hero */
|
2016-06-23 08:40:00 +00:00
|
|
|
Entity heroEnt = {V2(0.0f, 0.0f),
|
|
|
|
V2(0.0f, 0.0f),
|
|
|
|
V2(58.0f, 98.0f),
|
|
|
|
direction_east,
|
|
|
|
asset_getTexture(texlist_hero),
|
2016-06-23 11:34:38 +00:00
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0};
|
|
|
|
|
|
|
|
SpriteAnim heroAnimIdle = {NULL, 1, 0, 1.0f, 1.0f};
|
|
|
|
// TODO(doyle): Get rid of
|
|
|
|
heroAnimIdle.rect = (v4 *)calloc(1, sizeof(v4));
|
|
|
|
heroAnimIdle.rect[0] = V4(746.0f, 1018.0f, 804.0f, 920.0f);
|
|
|
|
heroEnt.anim[heroEnt.freeAnimIndex++] = heroAnimIdle;
|
|
|
|
|
|
|
|
SpriteAnim heroAnimWalk = {NULL, 3, 0, 0.10f, 0.10f};
|
|
|
|
// TODO(doyle): Get rid of
|
|
|
|
heroAnimWalk.rect = (v4 *)calloc(heroAnimWalk.numRects, sizeof(v4));
|
|
|
|
heroAnimWalk.rect[0] = V4(641.0f, 1018.0f, 699.0f, 920.0f);
|
|
|
|
heroAnimWalk.rect[1] = heroAnimIdle.rect[0];
|
|
|
|
heroAnimWalk.rect[2] = V4(849.0f, 1018.0f, 904.0f, 920.0f);
|
|
|
|
heroEnt.anim[heroEnt.freeAnimIndex++] = heroAnimWalk;
|
|
|
|
heroEnt.currAnimIndex = 0;
|
2016-06-23 08:40:00 +00:00
|
|
|
|
|
|
|
state->heroIndex = state->freeEntityIndex;
|
|
|
|
state->entityList[state->freeEntityIndex++] = heroEnt;
|
|
|
|
Entity *hero = &state->entityList[state->heroIndex];
|
2016-06-18 10:45:14 +00:00
|
|
|
|
2016-06-18 14:34:20 +00:00
|
|
|
Texture *heroSheet = hero->tex;
|
2016-06-18 10:45:14 +00:00
|
|
|
v2 sheetSize = V2(CAST(f32)heroSheet->width, CAST(f32)heroSheet->height);
|
|
|
|
if (sheetSize.x != sheetSize.y)
|
|
|
|
{
|
|
|
|
printf(
|
|
|
|
"worldTraveller_gameInit() warning: Sprite sheet is not square: "
|
|
|
|
"%dx%dpx\n",
|
2016-06-18 14:34:20 +00:00
|
|
|
CAST(i32) sheetSize.w, CAST(i32) sheetSize.h);
|
2016-06-18 10:45:14 +00:00
|
|
|
}
|
|
|
|
|
2016-06-23 08:40:00 +00:00
|
|
|
/* Create a NPC */
|
|
|
|
SpriteAnim npcAnim = {NULL, 2, 0, 0.3f, 0.3f};
|
|
|
|
// TODO(doyle): Get rid of
|
|
|
|
npcAnim.rect = (v4 *)calloc(2, sizeof(v4));
|
|
|
|
npcAnim.rect[0] = V4(944.0f, 918.0f, 1010.0f, 816.0f);
|
|
|
|
npcAnim.rect[1] = V4(944.0f, 812.0f, 1010.0f, 710.0f);
|
2016-06-18 10:45:14 +00:00
|
|
|
|
2016-06-23 11:34:38 +00:00
|
|
|
Entity npcEnt = {V2(300.0f, 300.0f),
|
|
|
|
V2(0.0f, 0.0f),
|
|
|
|
hero->size,
|
|
|
|
direction_null,
|
|
|
|
hero->tex,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0};
|
|
|
|
npcEnt.anim[npcEnt.freeAnimIndex++] = npcAnim;
|
2016-06-23 08:40:00 +00:00
|
|
|
state->entityList[state->freeEntityIndex++] = npcEnt;
|
2016-06-18 10:45:14 +00:00
|
|
|
|
2016-06-17 14:40:40 +00:00
|
|
|
/* Init renderer */
|
2016-06-18 14:34:20 +00:00
|
|
|
Renderer *renderer = &state->renderer;
|
|
|
|
renderer->shader = asset_getShader(shaderlist_sprite);
|
|
|
|
shader_use(renderer->shader);
|
|
|
|
|
|
|
|
const mat4 projection = mat4_ortho(0.0f, CAST(f32) state->width, 0.0f,
|
|
|
|
CAST(f32) state->height, 0.0f, 1.0f);
|
|
|
|
shader_uniformSetMat4fv(renderer->shader, "projection", projection);
|
|
|
|
glCheckError();
|
|
|
|
|
2016-06-17 14:40:40 +00:00
|
|
|
/* Create buffers */
|
2016-06-18 14:34:20 +00:00
|
|
|
glGenVertexArrays(1, &renderer->vao);
|
|
|
|
glGenBuffers(1, &renderer->vbo);
|
2016-06-17 14:40:40 +00:00
|
|
|
glCheckError();
|
|
|
|
|
|
|
|
/* Bind buffers */
|
2016-06-18 14:34:20 +00:00
|
|
|
glBindBuffer(GL_ARRAY_BUFFER, renderer->vbo);
|
|
|
|
glBindVertexArray(renderer->vao);
|
2016-06-17 14:40:40 +00:00
|
|
|
|
|
|
|
/* Configure VAO */
|
|
|
|
const GLuint numVertexElements = 4;
|
2016-06-18 09:12:09 +00:00
|
|
|
const GLuint vertexSize = sizeof(v4);
|
2016-06-17 14:40:40 +00:00
|
|
|
glEnableVertexAttribArray(0);
|
|
|
|
glVertexAttribPointer(0, numVertexElements, GL_FLOAT, GL_FALSE, vertexSize,
|
|
|
|
(GLvoid *)0);
|
|
|
|
glCheckError();
|
|
|
|
|
|
|
|
/* Unbind */
|
|
|
|
glBindBuffer(GL_ARRAY_BUFFER, 0);
|
|
|
|
glBindVertexArray(0);
|
|
|
|
glCheckError();
|
2016-06-16 14:14:58 +00:00
|
|
|
}
|
|
|
|
|
2016-06-17 14:40:40 +00:00
|
|
|
INTERNAL void parseInput(GameState *state, const f32 dt)
|
2016-06-16 14:14:58 +00:00
|
|
|
{
|
2016-06-17 08:11:23 +00:00
|
|
|
/*
|
|
|
|
Equations of Motion
|
|
|
|
f(t) = position m
|
|
|
|
f'(t) = velocity m/s
|
|
|
|
f"(t) = acceleration m/s^2
|
|
|
|
|
|
|
|
The user supplies an acceleration, a, and by integrating
|
|
|
|
f"(t) = a, where a is a constant, acceleration
|
|
|
|
f'(t) = a*t + v, where v is a constant, old velocity
|
|
|
|
f (t) = (a/2)*t^2 + v*t + p, where p is a constant, old position
|
|
|
|
*/
|
|
|
|
|
2016-06-23 08:40:00 +00:00
|
|
|
Entity *hero = &state->entityList[state->heroIndex];
|
2016-06-18 09:12:09 +00:00
|
|
|
v2 ddPos = V2(0, 0);
|
2016-06-16 14:14:58 +00:00
|
|
|
|
2016-06-17 14:40:40 +00:00
|
|
|
if (state->keys[GLFW_KEY_SPACE])
|
2016-06-16 14:14:58 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2016-06-17 14:40:40 +00:00
|
|
|
if (state->keys[GLFW_KEY_RIGHT])
|
2016-06-16 14:14:58 +00:00
|
|
|
{
|
2016-06-17 08:11:23 +00:00
|
|
|
ddPos.x = 1.0f;
|
2016-06-23 08:40:00 +00:00
|
|
|
hero->direction = direction_east;
|
2016-06-17 08:11:23 +00:00
|
|
|
}
|
2016-06-17 14:40:40 +00:00
|
|
|
if (state->keys[GLFW_KEY_LEFT])
|
2016-06-17 08:11:23 +00:00
|
|
|
{
|
|
|
|
ddPos.x = -1.0f;
|
2016-06-23 08:40:00 +00:00
|
|
|
hero->direction = direction_west;
|
2016-06-17 08:11:23 +00:00
|
|
|
}
|
|
|
|
|
2016-06-17 14:40:40 +00:00
|
|
|
if (state->keys[GLFW_KEY_UP])
|
2016-06-17 08:11:23 +00:00
|
|
|
{
|
|
|
|
ddPos.y = 1.0f;
|
2016-06-16 14:14:58 +00:00
|
|
|
}
|
2016-06-17 14:40:40 +00:00
|
|
|
if (state->keys[GLFW_KEY_DOWN])
|
2016-06-16 14:14:58 +00:00
|
|
|
{
|
2016-06-17 08:11:23 +00:00
|
|
|
ddPos.y = -1.0f;
|
2016-06-16 14:14:58 +00:00
|
|
|
}
|
2016-06-17 08:11:23 +00:00
|
|
|
|
|
|
|
if (ddPos.x != 0.0f && ddPos.y != 0.0f)
|
|
|
|
{
|
|
|
|
// NOTE(doyle): Cheese it and pre-compute the vector for diagonal using
|
|
|
|
// pythagoras theorem on a unit triangle
|
|
|
|
// 1^2 + 1^2 = c^2
|
2016-06-18 09:12:09 +00:00
|
|
|
ddPos = v2_scale(ddPos, 0.70710678118f);
|
2016-06-17 08:11:23 +00:00
|
|
|
}
|
|
|
|
|
2016-06-23 11:34:38 +00:00
|
|
|
f32 epsilon = 20.0f;
|
|
|
|
v2 epsilonDpos = v2_sub(V2(epsilon, epsilon),
|
|
|
|
V2(absolute(hero->dPos.x), absolute(hero->dPos.y)));
|
|
|
|
if (epsilonDpos.x >= 0.0f && epsilonDpos.y >= 0.0f)
|
|
|
|
{
|
|
|
|
hero->dPos = V2(0.0f, 0.0f);
|
|
|
|
// TODO(doyle): Change index to use some meaningful name like a string
|
|
|
|
// or enum for referencing animations, in this case 0 is idle and 1 is
|
|
|
|
// walking
|
|
|
|
if (hero->currAnimIndex == 1)
|
|
|
|
{
|
|
|
|
SpriteAnim *currAnim = &hero->anim[hero->currAnimIndex];
|
|
|
|
currAnim->currDuration = currAnim->duration;
|
|
|
|
currAnim->currRectIndex = 0;
|
|
|
|
hero->currAnimIndex = 0;
|
|
|
|
}
|
|
|
|
} else if (hero->currAnimIndex == 0)
|
|
|
|
{
|
|
|
|
SpriteAnim *currAnim = &hero->anim[hero->currAnimIndex];
|
|
|
|
currAnim->currDuration = currAnim->duration;
|
|
|
|
currAnim->currRectIndex = 0;
|
|
|
|
hero->currAnimIndex = 1;
|
|
|
|
}
|
|
|
|
|
2016-06-17 14:40:40 +00:00
|
|
|
f32 heroSpeed = CAST(f32)(22.0f * METERS_TO_PIXEL); // m/s^2
|
|
|
|
if (state->keys[GLFW_KEY_LEFT_SHIFT])
|
|
|
|
{
|
|
|
|
heroSpeed = CAST(f32)(22.0f * 5.0f * METERS_TO_PIXEL);
|
|
|
|
}
|
2016-06-18 09:12:09 +00:00
|
|
|
ddPos = v2_scale(ddPos, heroSpeed);
|
2016-06-17 08:11:23 +00:00
|
|
|
|
|
|
|
// TODO(doyle): Counteracting force on player's acceleration is arbitrary
|
2016-06-18 09:12:09 +00:00
|
|
|
ddPos = v2_sub(ddPos, v2_scale(hero->dPos, 5.5f));
|
2016-06-17 08:11:23 +00:00
|
|
|
|
2016-06-18 09:12:09 +00:00
|
|
|
/*
|
|
|
|
NOTE(doyle): Calculate new position from acceleration with old velocity
|
|
|
|
new Position = (a/2) * (t^2) + (v*t) + p,
|
|
|
|
acceleration = (a/2) * (t^2)
|
|
|
|
old velocity = (v*t)
|
|
|
|
*/
|
|
|
|
v2 ddPosNew = v2_scale(v2_scale(ddPos, 0.5f), squared(dt));
|
|
|
|
v2 dPos = v2_scale(hero->dPos, dt);
|
|
|
|
v2 newHeroP = v2_add(v2_add(ddPosNew, dPos), hero->pos);
|
2016-06-17 08:11:23 +00:00
|
|
|
|
2016-06-18 09:12:09 +00:00
|
|
|
// f'(t) = curr velocity = a*t + v, where v is old velocity
|
|
|
|
hero->dPos = v2_add(hero->dPos, v2_scale(ddPos, dt));
|
2016-06-17 14:40:40 +00:00
|
|
|
hero->pos = newHeroP;
|
2016-06-16 14:14:58 +00:00
|
|
|
}
|
|
|
|
|
2016-06-17 14:40:40 +00:00
|
|
|
void worldTraveller_gameUpdateAndRender(GameState *state, const f32 dt)
|
2016-06-16 14:14:58 +00:00
|
|
|
{
|
2016-06-17 14:40:40 +00:00
|
|
|
/* Update */
|
|
|
|
parseInput(state, dt);
|
|
|
|
glCheckError();
|
|
|
|
|
2016-06-23 08:40:00 +00:00
|
|
|
// NOTE(doyle): Factor to normalise sprite sheet rect coords to -1, 1
|
|
|
|
Entity *hero = &state->entityList[state->heroIndex];
|
|
|
|
f32 ndcFactor = 1.0f / CAST(f32) hero->tex->width;
|
2016-06-18 14:34:20 +00:00
|
|
|
|
2016-06-23 08:40:00 +00:00
|
|
|
ASSERT(state->freeEntityIndex < ARRAY_COUNT(state->entityList));
|
|
|
|
for (i32 i = 0; i < state->freeEntityIndex; i++)
|
2016-06-18 16:16:16 +00:00
|
|
|
{
|
2016-06-23 08:40:00 +00:00
|
|
|
Entity *entity = &state->entityList[i];
|
2016-06-23 11:34:38 +00:00
|
|
|
SpriteAnim *anim = &entity->anim[entity->currAnimIndex];
|
2016-06-18 14:34:20 +00:00
|
|
|
|
2016-06-23 08:40:00 +00:00
|
|
|
v4 currFrameRect = anim->rect[anim->currRectIndex];
|
|
|
|
anim->currDuration -= dt;
|
|
|
|
if (anim->currDuration <= 0.0f)
|
2016-06-18 16:16:16 +00:00
|
|
|
{
|
2016-06-23 08:40:00 +00:00
|
|
|
anim->currRectIndex++;
|
|
|
|
anim->currRectIndex = anim->currRectIndex % anim->numRects;
|
2016-06-23 11:34:38 +00:00
|
|
|
currFrameRect = anim->rect[anim->currRectIndex];
|
2016-06-23 08:40:00 +00:00
|
|
|
anim->currDuration = anim->duration;
|
2016-06-18 16:16:16 +00:00
|
|
|
}
|
2016-06-23 08:40:00 +00:00
|
|
|
|
|
|
|
v4 texNDC = v4_scale(currFrameRect, ndcFactor);
|
|
|
|
if (entity->direction == direction_east)
|
2016-06-18 16:16:16 +00:00
|
|
|
{
|
2016-06-23 08:40:00 +00:00
|
|
|
// NOTE(doyle): Flip the x coordinates to flip the tex
|
|
|
|
v4 tmpNDC = texNDC;
|
|
|
|
texNDC.x = tmpNDC.z;
|
|
|
|
texNDC.z = tmpNDC.x;
|
2016-06-18 16:16:16 +00:00
|
|
|
}
|
|
|
|
|
2016-06-23 08:40:00 +00:00
|
|
|
updateBufferObject(state->renderer.vbo, texNDC);
|
|
|
|
renderer_entity(&state->renderer, entity, 0.0f, V3(0, 0, 0));
|
|
|
|
}
|
2016-06-18 14:34:20 +00:00
|
|
|
|
2016-06-17 14:40:40 +00:00
|
|
|
// TODO(doyle): Clean up lines
|
|
|
|
// Renderer::~Renderer() { glDeleteVertexArrays(1, &this->quadVAO); }
|
2016-06-16 14:14:58 +00:00
|
|
|
}
|
2016-06-17 14:40:40 +00:00
|
|
|
|