mirror of
https://git.coom.tech/drummyfish/small3dlib.git
synced 2024-11-21 20:39:57 +01:00
Tidy level
This commit is contained in:
parent
8061946616
commit
504d43f30d
2 changed files with 4 additions and 489 deletions
|
@ -47,7 +47,6 @@ S3L_Unit *uvs = 0;
|
||||||
S3L_Index *uvIndices = 0;
|
S3L_Index *uvIndices = 0;
|
||||||
uint32_t previousTriangle = 1000;
|
uint32_t previousTriangle = 1000;
|
||||||
S3L_Vec4 uv0, uv1, uv2;
|
S3L_Vec4 uv0, uv1, uv2;
|
||||||
uint8_t r, g, b;
|
|
||||||
|
|
||||||
void clearScreen()
|
void clearScreen()
|
||||||
{
|
{
|
||||||
|
@ -124,6 +123,8 @@ void drawTeleport(int16_t x, int16_t y, S3L_ScreenCoord size)
|
||||||
|
|
||||||
void drawPixel(S3L_PixelInfo *p)
|
void drawPixel(S3L_PixelInfo *p)
|
||||||
{
|
{
|
||||||
|
uint8_t r, g, b;
|
||||||
|
|
||||||
#if TEXTURES
|
#if TEXTURES
|
||||||
if (p->triangleID != previousTriangle)
|
if (p->triangleID != previousTriangle)
|
||||||
{
|
{
|
||||||
|
@ -243,14 +244,11 @@ int main()
|
||||||
|
|
||||||
nextT = clock();
|
nextT = clock();
|
||||||
|
|
||||||
S3L_initCamera(&scene.camera);
|
|
||||||
|
|
||||||
levelWallsModelInit();
|
levelWallsModelInit();
|
||||||
levelFloorModelInit();
|
levelFloorModelInit();
|
||||||
levelCeilingModelInit();
|
levelCeilingModelInit();
|
||||||
|
|
||||||
scene.modelCount = 3;
|
S3L_initScene(models,3,&scene);
|
||||||
scene.models = models;
|
|
||||||
|
|
||||||
scene.models[0] = levelWallsModel;
|
scene.models[0] = levelWallsModel;
|
||||||
scene.models[1] = levelFloorModel;
|
scene.models[1] = levelFloorModel;
|
||||||
|
@ -268,9 +266,6 @@ int main()
|
||||||
scene.models[1].transform.scale = s;
|
scene.models[1].transform.scale = s;
|
||||||
scene.models[2].transform.scale = s;
|
scene.models[2].transform.scale = s;
|
||||||
|
|
||||||
S3L_initTransoform3D(&modelTransform);
|
|
||||||
S3L_initDrawConfig(&conf);
|
|
||||||
|
|
||||||
int running = 1;
|
int running = 1;
|
||||||
|
|
||||||
while (running) // main loop
|
while (running) // main loop
|
||||||
|
@ -278,21 +273,13 @@ int main()
|
||||||
draw();
|
draw();
|
||||||
SDL_UpdateTexture(texture,NULL,pixels,S3L_RESOLUTION_X * sizeof(uint32_t));
|
SDL_UpdateTexture(texture,NULL,pixels,S3L_RESOLUTION_X * sizeof(uint32_t));
|
||||||
|
|
||||||
int code = 0;
|
|
||||||
|
|
||||||
while (SDL_PollEvent(&event))
|
while (SDL_PollEvent(&event))
|
||||||
if (event.type == SDL_QUIT)
|
if (event.type == SDL_QUIT)
|
||||||
running = 0;
|
running = 0;
|
||||||
|
|
||||||
S3L_Vec4 camF, camR;
|
S3L_Vec4 camF, camR;
|
||||||
int step = 50;
|
|
||||||
|
|
||||||
S3L_rotationToDirections(
|
S3L_rotationToDirections(scene.camera.transform.rotation,20,&camF,&camR,0);
|
||||||
scene.camera.transform.rotation,
|
|
||||||
step,
|
|
||||||
&camF,
|
|
||||||
&camR,
|
|
||||||
0);
|
|
||||||
|
|
||||||
uint8_t *state = SDL_GetKeyboardState(NULL);
|
uint8_t *state = SDL_GetKeyboardState(NULL);
|
||||||
|
|
||||||
|
|
|
@ -1,472 +0,0 @@
|
||||||
/*
|
|
||||||
author: Miloslav Ciz
|
|
||||||
license: CC0
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include <SDL2/SDL.h>
|
|
||||||
#include <stdio.h>
|
|
||||||
#include <math.h>
|
|
||||||
#include <time.h>
|
|
||||||
|
|
||||||
//#define S3L_PRESET_HIGHEST_QUALITY
|
|
||||||
|
|
||||||
#define S3L_FLAT 0
|
|
||||||
#define S3L_STRICT_NEAR_CULLING 0
|
|
||||||
#define S3L_PERSPECTIVE_CORRECTION 0
|
|
||||||
#define S3L_SORT 0
|
|
||||||
#define S3L_Z_BUFFER 1
|
|
||||||
|
|
||||||
#define S3L_PIXEL_FUNCTION drawPixel
|
|
||||||
|
|
||||||
#define S3L_RESOLUTION_X 640
|
|
||||||
#define S3L_RESOLUTION_Y 480
|
|
||||||
|
|
||||||
#include "../small3dlib.h"
|
|
||||||
|
|
||||||
#include "houseTexture.h"
|
|
||||||
#include "houseModel.h"
|
|
||||||
|
|
||||||
int32_t offScreenPixels = 0;
|
|
||||||
const S3L_Unit ver[] = { S3L_CUBE_VERTICES(S3L_FRACTIONS_PER_UNIT) };
|
|
||||||
const S3L_Index tri[] = { S3L_CUBE_TRIANGLES };
|
|
||||||
const S3L_Unit tex_coords[] = { S3L_CUBE_TEXCOORDS(16) };
|
|
||||||
|
|
||||||
S3L_Unit houseNormals[HOUSE_VERTEX_COUNT * 3];
|
|
||||||
|
|
||||||
S3L_Model3D models[2];
|
|
||||||
S3L_Scene scene;
|
|
||||||
|
|
||||||
uint8_t houseVertexLighting[127];
|
|
||||||
|
|
||||||
int8_t keys[256];
|
|
||||||
|
|
||||||
const uint8_t testTexture[] =
|
|
||||||
{
|
|
||||||
2,2,2,0,0,0,2,2,2,2,0,0,0,2,2,2,
|
|
||||||
2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,
|
|
||||||
2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,
|
|
||||||
0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,
|
|
||||||
0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,
|
|
||||||
2,0,0,0,0,1,1,1,1,1,0,0,0,0,0,2,
|
|
||||||
2,0,0,0,0,1,1,0,0,0,0,0,0,0,0,2,
|
|
||||||
2,0,0,0,0,1,1,0,0,0,0,0,0,0,0,2,
|
|
||||||
2,0,0,0,0,1,1,0,0,0,0,0,0,0,0,2,
|
|
||||||
0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,
|
|
||||||
0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,
|
|
||||||
0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,
|
|
||||||
2,0,2,2,0,0,0,0,0,0,0,0,1,1,0,2,
|
|
||||||
2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,
|
|
||||||
2,2,2,0,0,0,2,2,2,2,0,0,0,2,2,2
|
|
||||||
};
|
|
||||||
/*
|
|
||||||
{
|
|
||||||
0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,
|
|
||||||
1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,
|
|
||||||
2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,
|
|
||||||
0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,
|
|
||||||
1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,
|
|
||||||
2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,
|
|
||||||
0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,
|
|
||||||
1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,
|
|
||||||
2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,
|
|
||||||
0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,
|
|
||||||
1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,
|
|
||||||
2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,
|
|
||||||
0,1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,
|
|
||||||
1,2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,
|
|
||||||
2,0,1,2,0,1,2,0,1,2,0,1,2,0,1,2
|
|
||||||
};
|
|
||||||
*/
|
|
||||||
|
|
||||||
uint32_t pixels[S3L_RESOLUTION_X * S3L_RESOLUTION_Y];
|
|
||||||
|
|
||||||
uint32_t frame = 0;
|
|
||||||
|
|
||||||
void clearScreen()
|
|
||||||
{
|
|
||||||
memset(pixels,255,S3L_RESOLUTION_X * S3L_RESOLUTION_Y * sizeof(uint32_t));
|
|
||||||
}
|
|
||||||
|
|
||||||
static inline void setPixel(int x, int y, uint8_t red, uint8_t green, uint8_t blue)
|
|
||||||
{
|
|
||||||
if (x < 0 || x >= S3L_RESOLUTION_X || y < 0 || y >= S3L_RESOLUTION_Y)
|
|
||||||
return;
|
|
||||||
|
|
||||||
uint32_t r = red & 0x000000FF;
|
|
||||||
r = r << 24;
|
|
||||||
|
|
||||||
uint32_t g = green & 0x000000FF;
|
|
||||||
g = g << 16;
|
|
||||||
|
|
||||||
uint32_t b = blue & 0x000000FF;
|
|
||||||
b = b << 8;
|
|
||||||
|
|
||||||
pixels[y * S3L_RESOLUTION_X + x] = r | g | b;
|
|
||||||
}
|
|
||||||
|
|
||||||
uint8_t texturePixel(int32_t u, int32_t v)
|
|
||||||
{
|
|
||||||
u %= 16;
|
|
||||||
v %= 16;
|
|
||||||
|
|
||||||
return testTexture[v * 16 + u];
|
|
||||||
}
|
|
||||||
|
|
||||||
void houseTex(int32_t u, int32_t v, uint8_t *r, uint8_t *g, uint8_t *b)
|
|
||||||
{
|
|
||||||
if (u < 0)
|
|
||||||
u = 0;
|
|
||||||
|
|
||||||
if (v < 0)
|
|
||||||
v = 0;
|
|
||||||
|
|
||||||
u %= HOUSE_TEXTURE_WIDTH;
|
|
||||||
v %= HOUSE_TEXTURE_HEIGHT;
|
|
||||||
|
|
||||||
int index = (v * HOUSE_TEXTURE_WIDTH + u) * 3;
|
|
||||||
|
|
||||||
*r = houseTexture[index];
|
|
||||||
*g = houseTexture[index + 1];
|
|
||||||
*b = houseTexture[index + 2];
|
|
||||||
}
|
|
||||||
|
|
||||||
void drawPixel(S3L_PixelInfo *p)
|
|
||||||
{
|
|
||||||
if (p->x < 0 || p ->x >= S3L_RESOLUTION_X || p->y < 0 || p->y >= S3L_RESOLUTION_Y)
|
|
||||||
{
|
|
||||||
offScreenPixels++;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
S3L_Unit u, v;
|
|
||||||
const S3L_Unit *coords;
|
|
||||||
|
|
||||||
coords = tex_coords + p->triangleIndex * 6;
|
|
||||||
|
|
||||||
if (p->modelIndex != 0)
|
|
||||||
{
|
|
||||||
int tmp = p->triangleIndex * 3;
|
|
||||||
|
|
||||||
int i0 = houseUVIndices[tmp];
|
|
||||||
int i1 = houseUVIndices[tmp + 1];
|
|
||||||
int i2 = houseUVIndices[tmp + 2];
|
|
||||||
|
|
||||||
tmp = i0 * 2;
|
|
||||||
|
|
||||||
int uv0[2];
|
|
||||||
|
|
||||||
uv0[0] = houseUVs[tmp];
|
|
||||||
uv0[1] = houseUVs[tmp + 1];
|
|
||||||
|
|
||||||
tmp = i1 * 2;
|
|
||||||
|
|
||||||
int uv1[2];
|
|
||||||
|
|
||||||
uv1[0] = houseUVs[tmp];
|
|
||||||
uv1[1] = houseUVs[tmp + 1];
|
|
||||||
|
|
||||||
tmp = i2 * 2;
|
|
||||||
|
|
||||||
int uv2[2];
|
|
||||||
|
|
||||||
uv2[0] = houseUVs[tmp];
|
|
||||||
uv2[1] = houseUVs[tmp + 1];
|
|
||||||
|
|
||||||
u = S3L_interpolateBarycentric(
|
|
||||||
uv0[0],
|
|
||||||
uv1[0],
|
|
||||||
uv2[0],
|
|
||||||
p->barycentric);
|
|
||||||
|
|
||||||
v = S3L_interpolateBarycentric(
|
|
||||||
uv0[1],
|
|
||||||
uv1[1],
|
|
||||||
uv2[1],
|
|
||||||
p->barycentric);
|
|
||||||
|
|
||||||
uint8_t r,g,b;
|
|
||||||
houseTex(
|
|
||||||
(u / ((float) S3L_FRACTIONS_PER_UNIT)) * HOUSE_TEXTURE_WIDTH,
|
|
||||||
(v / ((float) S3L_FRACTIONS_PER_UNIT)) * HOUSE_TEXTURE_HEIGHT,
|
|
||||||
&r,&g,&b);
|
|
||||||
|
|
||||||
S3L_Vec4 n0, n1, n2, n;
|
|
||||||
|
|
||||||
n0.x = houseNormals[scene.models[p->modelIndex].triangles[p->triangleIndex * 3] * 3];
|
|
||||||
n0.y = houseNormals[scene.models[p->modelIndex].triangles[p->triangleIndex * 3] * 3 + 1];
|
|
||||||
n0.z = houseNormals[scene.models[p->modelIndex].triangles[p->triangleIndex * 3] * 3 + 2];
|
|
||||||
|
|
||||||
n1.x = houseNormals[scene.models[p->modelIndex].triangles[p->triangleIndex * 3 + 1] * 3];
|
|
||||||
n1.y = houseNormals[scene.models[p->modelIndex].triangles[p->triangleIndex * 3 + 1] * 3 + 1];
|
|
||||||
n1.z = houseNormals[scene.models[p->modelIndex].triangles[p->triangleIndex * 3 + 1] * 3 + 2];
|
|
||||||
|
|
||||||
n2.x = houseNormals[scene.models[p->modelIndex].triangles[p->triangleIndex * 3 + 2] * 3];
|
|
||||||
n2.y = houseNormals[scene.models[p->modelIndex].triangles[p->triangleIndex * 3 + 2] * 3 + 1];
|
|
||||||
n2.z = houseNormals[scene.models[p->modelIndex].triangles[p->triangleIndex * 3 + 2] * 3 + 2];
|
|
||||||
|
|
||||||
n.x = S3L_interpolateBarycentric(n0.x,n1.x,n2.x,p->barycentric);
|
|
||||||
n.y = S3L_interpolateBarycentric(n0.y,n1.y,n2.y,p->barycentric);
|
|
||||||
n.z = S3L_interpolateBarycentric(n0.z,n1.z,n2.z,p->barycentric);
|
|
||||||
|
|
||||||
S3L_Vec4 V;
|
|
||||||
|
|
||||||
V.x = 10;
|
|
||||||
V.y = 10;
|
|
||||||
V.z = 10;
|
|
||||||
|
|
||||||
S3L_normalizeVec3(&V);
|
|
||||||
|
|
||||||
int16_t l = 64 + S3L_clamp(S3L_dotProductVec3(n,V),-511,511) / 8;
|
|
||||||
|
|
||||||
//setPixel(p->x,p->y,l,l,l);
|
|
||||||
|
|
||||||
r = S3L_clamp(((int16_t) r) - l,0,255);
|
|
||||||
g = S3L_clamp(((int16_t) g) - l,0,255);
|
|
||||||
b = S3L_clamp(((int16_t) b) - l,0,255);
|
|
||||||
|
|
||||||
setPixel(p->x,p->y,r,g,b);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
u = S3L_interpolateBarycentric(
|
|
||||||
coords[0],
|
|
||||||
coords[2],
|
|
||||||
coords[4],
|
|
||||||
p->barycentric);
|
|
||||||
|
|
||||||
v = S3L_interpolateBarycentric(
|
|
||||||
coords[1],
|
|
||||||
coords[3],
|
|
||||||
coords[5],
|
|
||||||
p->barycentric);
|
|
||||||
|
|
||||||
uint8_t col = texturePixel(u,v);
|
|
||||||
setPixel(p->x,p->y,col,col * 30,(2 - col) * 120);
|
|
||||||
}
|
|
||||||
|
|
||||||
// uint8_t dep = (p->depth / 5000.0) * 255;
|
|
||||||
|
|
||||||
// setPixel(p->x,p->y, (p->triangleID * 60) % 255, (p->triangleID * 170) % 255, (p->triangleID * 10) % 255 );
|
|
||||||
|
|
||||||
//setPixel(p->x,p->y,sss, (p->triangleID * 37) % 255 ,128);
|
|
||||||
|
|
||||||
//setPixel(p->x,p->y,p->modelID * 64,p->modelID * 128,255);
|
|
||||||
|
|
||||||
// setPixel(p->x,p->y,p->barycentric0 / ((float) S3L_FRACTIONS_PER_UNIT) * 255,p->barycentric1 / ((float) S3L_FRACTIONS_PER_UNIT) * 255,p->barycentric2 / ((float) S3L_FRACTIONS_PER_UNIT) * 255);
|
|
||||||
}
|
|
||||||
|
|
||||||
S3L_Transform3D modelTransform;
|
|
||||||
S3L_DrawConfig conf;
|
|
||||||
|
|
||||||
clock_t nextT;
|
|
||||||
|
|
||||||
int fps = 0;
|
|
||||||
|
|
||||||
void recomputeLight()
|
|
||||||
{
|
|
||||||
S3L_Mat4 m;
|
|
||||||
|
|
||||||
S3L_makeWorldMatrix(scene.models[1].transform,&m);
|
|
||||||
|
|
||||||
int radius = S3L_FRACTIONS_PER_UNIT * 12;
|
|
||||||
|
|
||||||
for (int i = 0; i < 127; ++i)
|
|
||||||
{
|
|
||||||
houseVertexLighting[i] = 255;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void draw()
|
|
||||||
{
|
|
||||||
S3L_newFrame();
|
|
||||||
|
|
||||||
offScreenPixels = 0;
|
|
||||||
|
|
||||||
clearScreen();
|
|
||||||
|
|
||||||
uint32_t f = frame;
|
|
||||||
|
|
||||||
if (f % 16 == 0)
|
|
||||||
recomputeLight();
|
|
||||||
|
|
||||||
scene.models[0].transform.translation.x = sin(f / 16.0) * S3L_FRACTIONS_PER_UNIT;
|
|
||||||
|
|
||||||
S3L_drawScene(scene);
|
|
||||||
|
|
||||||
if (offScreenPixels > 0)
|
|
||||||
printf("offscreen pixels: %d\n",offScreenPixels);
|
|
||||||
|
|
||||||
clock_t nowT = clock();
|
|
||||||
|
|
||||||
double timeDiff = ((double) (nowT - nextT)) / CLOCKS_PER_SEC;
|
|
||||||
|
|
||||||
fps++;
|
|
||||||
|
|
||||||
if (timeDiff >= 1.0)
|
|
||||||
{
|
|
||||||
nextT = nowT;
|
|
||||||
printf("FPS: %d\n",fps);
|
|
||||||
|
|
||||||
printf("camera: ");
|
|
||||||
S3L_logTransform3D(scene.camera.transform);
|
|
||||||
fps = 0;
|
|
||||||
|
|
||||||
S3L_computeModelNormals(scene.models[1],houseNormals,1);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
int main()
|
|
||||||
{
|
|
||||||
SDL_Window *window = SDL_CreateWindow("test", SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, S3L_RESOLUTION_X, S3L_RESOLUTION_Y, SDL_WINDOW_SHOWN);
|
|
||||||
SDL_Renderer *renderer = SDL_CreateRenderer(window,-1,0);
|
|
||||||
SDL_Texture *texture = SDL_CreateTexture(renderer,SDL_PIXELFORMAT_RGBX8888, SDL_TEXTUREACCESS_STATIC, S3L_RESOLUTION_X, S3L_RESOLUTION_Y);
|
|
||||||
SDL_Surface *screenSurface = SDL_GetWindowSurface(window);
|
|
||||||
SDL_Event event;
|
|
||||||
|
|
||||||
nextT = clock();
|
|
||||||
|
|
||||||
S3L_initCamera(&scene.camera);
|
|
||||||
|
|
||||||
houseModelInit();
|
|
||||||
|
|
||||||
// scene.camera.transform.translation.z = -S3L_FRACTIONS_PER_UNIT * 2;
|
|
||||||
|
|
||||||
scene.camera.transform.translation.x = 105;
|
|
||||||
scene.camera.transform.translation.y = 469;
|
|
||||||
scene.camera.transform.translation.z = 9;
|
|
||||||
|
|
||||||
scene.camera.transform.rotation.x = -35;
|
|
||||||
scene.camera.transform.rotation.y = 128;
|
|
||||||
scene.camera.transform.rotation.z = 0;
|
|
||||||
|
|
||||||
S3L_setTransform3D(-2039,173,6096,-2,-296,0,512,512,512,&(scene.camera.transform));
|
|
||||||
|
|
||||||
scene.modelCount = 2;
|
|
||||||
scene.models = models;
|
|
||||||
|
|
||||||
scene.models[0].vertices = ver;
|
|
||||||
scene.models[0].vertexCount = S3L_CUBE_VERTEX_COUNT;
|
|
||||||
scene.models[0].triangles = tri;
|
|
||||||
scene.models[0].triangleCount = S3L_CUBE_TRIANGLE_COUNT;
|
|
||||||
S3L_initTransoform3D(&(scene.models[0].transform));
|
|
||||||
S3L_initDrawConfig(&(scene.models[0].config));
|
|
||||||
scene.models[0].transform.translation.x = S3L_FRACTIONS_PER_UNIT;
|
|
||||||
|
|
||||||
// scene.models[1] = scene.models[0];
|
|
||||||
// scene.models[1].transform.translation.x = 0.5 * S3L_FRACTIONS_PER_UNIT;
|
|
||||||
|
|
||||||
scene.models[1] = houseModel;
|
|
||||||
S3L_initTransoform3D(&(scene.models[1].transform));
|
|
||||||
S3L_initDrawConfig(&(scene.models[1].config));
|
|
||||||
scene.models[1].transform.translation.y = -1 * S3L_FRACTIONS_PER_UNIT;
|
|
||||||
scene.models[1].transform.translation.z = 4 * S3L_FRACTIONS_PER_UNIT;
|
|
||||||
|
|
||||||
recomputeLight();
|
|
||||||
|
|
||||||
// scene.camera.transform.translation.x = S3L_FRACTIONS_PER_UNIT;
|
|
||||||
// scene.camera.transform.translation.y = S3L_FRACTIONS_PER_UNIT;
|
|
||||||
|
|
||||||
S3L_initTransoform3D(&modelTransform);
|
|
||||||
S3L_initDrawConfig(&conf);
|
|
||||||
|
|
||||||
int running = 1;
|
|
||||||
|
|
||||||
for (int i = 0; i < 256; ++i)
|
|
||||||
keys[i] = 0;
|
|
||||||
|
|
||||||
while (running)
|
|
||||||
{
|
|
||||||
draw();
|
|
||||||
SDL_UpdateTexture(texture,NULL,pixels,S3L_RESOLUTION_X * sizeof(uint32_t));
|
|
||||||
|
|
||||||
int code = 0;
|
|
||||||
|
|
||||||
while (SDL_PollEvent(&event))
|
|
||||||
{
|
|
||||||
switch (event.type)
|
|
||||||
{
|
|
||||||
case SDL_QUIT:
|
|
||||||
running = 0;
|
|
||||||
break;
|
|
||||||
|
|
||||||
case SDL_KEYDOWN:
|
|
||||||
code = 'a' + event.key.keysym.scancode - SDL_SCANCODE_A;
|
|
||||||
|
|
||||||
if (code >= 0 && code <= 255)
|
|
||||||
keys[code] = 1;
|
|
||||||
|
|
||||||
break;
|
|
||||||
|
|
||||||
case SDL_KEYUP:
|
|
||||||
code = 'a' + event.key.keysym.scancode - SDL_SCANCODE_A;
|
|
||||||
|
|
||||||
if (code >= 0 && code <= 255)
|
|
||||||
keys[code] = 0;
|
|
||||||
|
|
||||||
break;
|
|
||||||
|
|
||||||
default:
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
S3L_Vec4 camF, camR, camU;
|
|
||||||
int step = 50;
|
|
||||||
|
|
||||||
S3L_rotationToDirections(
|
|
||||||
scene.camera.transform.rotation,
|
|
||||||
step,
|
|
||||||
&camF,
|
|
||||||
&camR,
|
|
||||||
&camU);
|
|
||||||
|
|
||||||
if (keys['w'])
|
|
||||||
S3L_vec3Add(&scene.camera.transform.translation,camF);
|
|
||||||
|
|
||||||
if (keys['s'])
|
|
||||||
S3L_vec3Sub(&scene.camera.transform.translation,camF);
|
|
||||||
|
|
||||||
if (keys['d'])
|
|
||||||
S3L_vec3Add(&scene.camera.transform.translation,camR);
|
|
||||||
|
|
||||||
if (keys['a'])
|
|
||||||
S3L_vec3Sub(&scene.camera.transform.translation,camR);
|
|
||||||
|
|
||||||
if (keys['c'])
|
|
||||||
S3L_vec3Add(&scene.camera.transform.translation,camU);
|
|
||||||
|
|
||||||
if (keys['x'])
|
|
||||||
S3L_vec3Sub(&scene.camera.transform.translation,camU);
|
|
||||||
|
|
||||||
if (keys['q'])
|
|
||||||
scene.camera.transform.rotation.y -= 1;
|
|
||||||
|
|
||||||
if (keys['e'])
|
|
||||||
scene.camera.transform.rotation.y += 1;
|
|
||||||
|
|
||||||
if (keys['r'])
|
|
||||||
scene.camera.transform.rotation.x -= 1;
|
|
||||||
|
|
||||||
if (keys['t'])
|
|
||||||
scene.camera.transform.rotation.x += 1;
|
|
||||||
|
|
||||||
if (keys['f'])
|
|
||||||
scene.camera.transform.rotation.z -= 1;
|
|
||||||
|
|
||||||
if (keys['g'])
|
|
||||||
scene.camera.transform.rotation.z += 1;
|
|
||||||
|
|
||||||
if (keys['p'])
|
|
||||||
// S3L_lookAt(scene.models[0].transform.translation,&(scene.camera.transform));
|
|
||||||
S3L_lookAt(scene.camera.transform.translation,&(scene.models[1].transform));
|
|
||||||
|
|
||||||
SDL_RenderClear(renderer);
|
|
||||||
SDL_RenderCopy(renderer,texture,NULL,NULL);
|
|
||||||
SDL_RenderPresent(renderer);
|
|
||||||
|
|
||||||
frame++;
|
|
||||||
}
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
|
Loading…
Reference in a new issue