mirror of
https://git.coom.tech/drummyfish/small3dlib.git
synced 2024-11-23 20:59:58 +01:00
Tidy examples
This commit is contained in:
parent
6bacaa2733
commit
e5988e596c
2 changed files with 51 additions and 51 deletions
|
@ -1,6 +1,8 @@
|
||||||
/*
|
/*
|
||||||
|
Example program for small3dlib -- a GTA-like game demo.
|
||||||
|
|
||||||
author: Miloslav Ciz
|
author: Miloslav Ciz
|
||||||
license: CC0
|
license: CC0 1.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <SDL2/SDL.h>
|
#include <SDL2/SDL.h>
|
||||||
|
@ -96,18 +98,18 @@ static inline void setPixel(int x, int y, uint8_t red, uint8_t green, uint8_t bl
|
||||||
pixels[y * S3L_RESOLUTION_X + x] = r | g | b;
|
pixels[y * S3L_RESOLUTION_X + x] = r | g | b;
|
||||||
}
|
}
|
||||||
|
|
||||||
void sampleTexture(uint8_t *texture, int32_t u, int32_t v, uint8_t *r, uint8_t *g, uint8_t *b)
|
void sampleTexture(int32_t u, int32_t v, uint8_t *r, uint8_t *g, uint8_t *b)
|
||||||
{
|
{
|
||||||
u = S3L_clamp(u,0,TEXTURE_W - 1);
|
u = S3L_clamp(u,0,CITY_TEXTURE_WIDTH - 1);
|
||||||
v = S3L_clamp(v,0,TEXTURE_H - 1);
|
v = S3L_clamp(v,0,CITY_TEXTURE_HEIGHT - 1);
|
||||||
|
|
||||||
int32_t index = (v * TEXTURE_W + u) * 3;
|
int32_t index = (v * CITY_TEXTURE_WIDTH + u) * 3;
|
||||||
|
|
||||||
*r = texture[index];
|
*r = cityTexture[index];
|
||||||
index++;
|
index++;
|
||||||
*g = texture[index];
|
*g = cityTexture[index];
|
||||||
index++;
|
index++;
|
||||||
*b = texture[index];
|
*b = cityTexture[index];
|
||||||
}
|
}
|
||||||
|
|
||||||
uint32_t previousTriangle = -1;
|
uint32_t previousTriangle = -1;
|
||||||
|
@ -143,7 +145,7 @@ void drawPixel(S3L_PixelInfo *p)
|
||||||
uv[0] = S3L_interpolateBarycentric(uv0.x,uv1.x,uv2.x,p->barycentric);
|
uv[0] = S3L_interpolateBarycentric(uv0.x,uv1.x,uv2.x,p->barycentric);
|
||||||
uv[1] = S3L_interpolateBarycentric(uv0.y,uv1.y,uv2.y,p->barycentric);
|
uv[1] = S3L_interpolateBarycentric(uv0.y,uv1.y,uv2.y,p->barycentric);
|
||||||
|
|
||||||
sampleTexture(cityTexture,uv[0] / 2,uv[1] / 2,&r,&g,&b);
|
sampleTexture(uv[0] / 2,uv[1] / 2,&r,&g,&b);
|
||||||
|
|
||||||
setPixel(p->x,p->y,r,g,b);
|
setPixel(p->x,p->y,r,g,b);
|
||||||
}
|
}
|
||||||
|
@ -151,9 +153,7 @@ void drawPixel(S3L_PixelInfo *p)
|
||||||
void draw()
|
void draw()
|
||||||
{
|
{
|
||||||
S3L_newFrame();
|
S3L_newFrame();
|
||||||
|
|
||||||
clearScreen();
|
clearScreen();
|
||||||
|
|
||||||
S3L_drawScene(scene);
|
S3L_drawScene(scene);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -167,7 +167,7 @@ static inline uint32_t collision(S3L_Vec4 worldPosition)
|
||||||
return collisionMap[index];
|
return collisionMap[index];
|
||||||
}
|
}
|
||||||
|
|
||||||
void handleCollision(S3L_Vec4 *pos, S3L_Vec4 previousPos)
|
static inline void handleCollision(S3L_Vec4 *pos, S3L_Vec4 previousPos)
|
||||||
{
|
{
|
||||||
S3L_Vec4 newPos = *pos;
|
S3L_Vec4 newPos = *pos;
|
||||||
newPos.x = previousPos.x;
|
newPos.x = previousPos.x;
|
||||||
|
@ -182,14 +182,13 @@ void handleCollision(S3L_Vec4 *pos, S3L_Vec4 previousPos)
|
||||||
}
|
}
|
||||||
|
|
||||||
*pos = newPos;
|
*pos = newPos;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int16_t fps = 0;
|
int16_t fps = 0;
|
||||||
|
|
||||||
int main()
|
int main()
|
||||||
{
|
{
|
||||||
SDL_Window *window = SDL_CreateWindow("model viewer", SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, S3L_RESOLUTION_X, S3L_RESOLUTION_Y, SDL_WINDOW_SHOWN);
|
SDL_Window *window = SDL_CreateWindow("city demo", SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, S3L_RESOLUTION_X, S3L_RESOLUTION_Y, SDL_WINDOW_SHOWN);
|
||||||
SDL_Renderer *renderer = SDL_CreateRenderer(window,-1,0);
|
SDL_Renderer *renderer = SDL_CreateRenderer(window,-1,0);
|
||||||
SDL_Texture *textureSDL = SDL_CreateTexture(renderer,SDL_PIXELFORMAT_RGBX8888, SDL_TEXTUREACCESS_STATIC, S3L_RESOLUTION_X, S3L_RESOLUTION_Y);
|
SDL_Texture *textureSDL = SDL_CreateTexture(renderer,SDL_PIXELFORMAT_RGBX8888, SDL_TEXTUREACCESS_STATIC, S3L_RESOLUTION_X, S3L_RESOLUTION_Y);
|
||||||
SDL_Surface *screenSurface = SDL_GetWindowSurface(window);
|
SDL_Surface *screenSurface = SDL_GetWindowSurface(window);
|
||||||
|
@ -198,16 +197,12 @@ int main()
|
||||||
cityModelInit();
|
cityModelInit();
|
||||||
carModelInit();
|
carModelInit();
|
||||||
|
|
||||||
carModel.transform.translation.x = 7 * (S3L_FRACTIONS_PER_UNIT / 2);
|
|
||||||
carModel.transform.translation.z = -7 * (S3L_FRACTIONS_PER_UNIT / 2);
|
|
||||||
carModel.transform.translation.y = (S3L_FRACTIONS_PER_UNIT / 32);
|
|
||||||
|
|
||||||
models[0] = cityModel;
|
models[0] = cityModel;
|
||||||
models[1] = carModel;
|
models[1] = carModel;
|
||||||
|
|
||||||
S3L_initScene(models,2,&scene);
|
S3L_initScene(models,2,&scene);
|
||||||
|
|
||||||
scene.camera.transform.translation.z = -S3L_FRACTIONS_PER_UNIT * 8;
|
S3L_setTransform3D(1909,16,-3317,0,-510,0,512,512,512,&(models[1].transform));
|
||||||
|
|
||||||
int running = 1;
|
int running = 1;
|
||||||
|
|
||||||
|
@ -224,7 +219,7 @@ int main()
|
||||||
|
|
||||||
int16_t velocity = 0;
|
int16_t velocity = 0;
|
||||||
|
|
||||||
while (running)
|
while (running) // main loop
|
||||||
{
|
{
|
||||||
clock_t frameStartT = clock();
|
clock_t frameStartT = clock();
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
/*
|
/*
|
||||||
|
Example program for small3dlib, showing a Quake-like level.
|
||||||
|
|
||||||
author: Miloslav Ciz
|
author: Miloslav Ciz
|
||||||
license: CC0
|
license: CC0 1.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <SDL2/SDL.h>
|
#include <SDL2/SDL.h>
|
||||||
|
@ -118,23 +120,26 @@ void drawPixel(S3L_PixelInfo *p)
|
||||||
{
|
{
|
||||||
if (p->triangleID != previousTriangle)
|
if (p->triangleID != previousTriangle)
|
||||||
{
|
{
|
||||||
if (p->modelIndex == 0)
|
switch (p->modelIndex)
|
||||||
{
|
{
|
||||||
|
case 0:
|
||||||
uvs = levelWallsUVs;
|
uvs = levelWallsUVs;
|
||||||
uvIndices = levelWallsUVIndices;
|
uvIndices = levelWallsUVIndices;
|
||||||
texture = level1Texture;
|
texture = level1Texture;
|
||||||
}
|
break;
|
||||||
else if (p->modelIndex == 1)
|
|
||||||
{
|
case 1:
|
||||||
uvs = levelFloorUVs;
|
uvs = levelFloorUVs;
|
||||||
uvIndices = levelFloorUVIndices;
|
uvIndices = levelFloorUVIndices;
|
||||||
texture = level2Texture;
|
texture = level2Texture;
|
||||||
}
|
break;
|
||||||
else
|
|
||||||
{
|
case 2:
|
||||||
|
default:
|
||||||
uvs = levelCeilingUVs;
|
uvs = levelCeilingUVs;
|
||||||
uvIndices = levelCeilingUVIndices;
|
uvIndices = levelCeilingUVIndices;
|
||||||
texture = level3Texture;
|
texture = level3Texture;
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
S3L_getIndexedTriangleValues(p->triangleIndex,uvIndices,uvs,2,&uv0,&uv1,&uv2);
|
S3L_getIndexedTriangleValues(p->triangleIndex,uvIndices,uvs,2,&uv0,&uv1,&uv2);
|
||||||
|
@ -205,7 +210,7 @@ void draw()
|
||||||
|
|
||||||
int main()
|
int main()
|
||||||
{
|
{
|
||||||
SDL_Window *window = SDL_CreateWindow("test", SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, S3L_RESOLUTION_X, S3L_RESOLUTION_Y, SDL_WINDOW_SHOWN);
|
SDL_Window *window = SDL_CreateWindow("level demo", SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, S3L_RESOLUTION_X, S3L_RESOLUTION_Y, SDL_WINDOW_SHOWN);
|
||||||
SDL_Renderer *renderer = SDL_CreateRenderer(window,-1,0);
|
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_Texture *texture = SDL_CreateTexture(renderer,SDL_PIXELFORMAT_RGBX8888, SDL_TEXTUREACCESS_STATIC, S3L_RESOLUTION_X, S3L_RESOLUTION_Y);
|
||||||
SDL_Surface *screenSurface = SDL_GetWindowSurface(window);
|
SDL_Surface *screenSurface = SDL_GetWindowSurface(window);
|
||||||
|
@ -248,7 +253,7 @@ int main()
|
||||||
|
|
||||||
int running = 1;
|
int running = 1;
|
||||||
|
|
||||||
while (running)
|
while (running) // main loop
|
||||||
{
|
{
|
||||||
draw();
|
draw();
|
||||||
SDL_UpdateTexture(texture,NULL,pixels,S3L_RESOLUTION_X * sizeof(uint32_t));
|
SDL_UpdateTexture(texture,NULL,pixels,S3L_RESOLUTION_X * sizeof(uint32_t));
|
||||||
|
|
Loading…
Reference in a new issue