1
0
Fork 0
mirror of https://git.coom.tech/drummyfish/small3dlib.git synced 2024-11-21 20:39:57 +01:00
small3dlib/testSDL.c

241 lines
5.6 KiB
C
Raw Normal View History

2018-11-18 18:30:39 +01:00
/*
author: Miloslav Ciz
license: CC0
*/
2018-11-17 13:34:15 +01:00
#include <SDL2/SDL.h>
#include <stdio.h>
#include <math.h>
#define S3L_PIXEL_FUNCTION drawPixel
#include "s3l.h"
#define SCREEN_WIDTH 640
#define SCREEN_HEIGHT 480
2019-04-28 21:11:23 +02:00
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
};
2018-11-17 13:34:15 +01:00
uint32_t pixels[SCREEN_WIDTH * SCREEN_HEIGHT];
uint32_t frame = 0;
void clearScreen()
{
memset(pixels,0,SCREEN_WIDTH * SCREEN_HEIGHT * sizeof(uint32_t));
}
static inline void setPixel(int x, int y, uint8_t red, uint8_t green, uint8_t blue)
{
2019-05-07 16:48:50 +02:00
if (x < 0 || x >= SCREEN_WIDTH || y < 0 || y >= SCREEN_HEIGHT)
return;
2018-11-17 13:34:15 +01:00
uint32_t r = red & 0x000000FF;
2018-11-17 16:40:44 +01:00
r = r << 24;
2018-11-17 13:34:15 +01:00
uint32_t g = green & 0x000000FF;
2018-11-17 16:40:44 +01:00
g = g << 16;
2018-11-17 13:34:15 +01:00
uint32_t b = blue & 0x000000FF;
2018-11-17 16:40:44 +01:00
b = b << 8;
2018-11-17 13:34:15 +01:00
pixels[y * SCREEN_WIDTH + x] = r | g | b;
}
2019-04-28 21:11:23 +02:00
uint8_t texturePixel(int32_t u, int32_t v)
{
u %= 16;
v %= 16;
return testTexture[v * 16 + u];
}
2018-11-17 13:34:15 +01:00
void drawPixel(S3L_PixelInfo *p)
{
2019-04-28 21:11:23 +02:00
float b0 = p->barycentric0 / ((float) S3L_FRACTIONS_PER_UNIT);
float b1 = p->barycentric1 / ((float) S3L_FRACTIONS_PER_UNIT);
float b2 = p->barycentric2 / ((float) S3L_FRACTIONS_PER_UNIT);
int32_t u = b0 * 0 + b1 * 0 + b2 * 16;
int32_t v = b0 * 0 + b1 * 16 + b2 * 16;
uint8_t col = texturePixel(u,v);
2019-05-06 19:02:58 +02:00
setPixel(p->x,p->y,col * 120,20,(2 - col) * 120);
/*
2019-05-06 00:32:37 +02:00
setPixel(p->x,p->y,
2018-11-18 10:22:31 +01:00
p->barycentric0 / ((float) S3L_FRACTIONS_PER_UNIT) * 255,
p->barycentric1 / ((float) S3L_FRACTIONS_PER_UNIT) * 255,
p->barycentric2 / ((float) S3L_FRACTIONS_PER_UNIT) * 255);
2019-05-06 19:02:58 +02:00
*/
2018-11-17 13:34:15 +01:00
}
2018-11-17 16:40:44 +01:00
const int16_t test_coords[] =
{
100,100, 99,101, 101,101, // 0, small triangle
2018-11-17 17:18:55 +01:00
190,50, 200,10, 400,80, // 1, arbitrary
2018-11-18 13:40:51 +01:00
40,80, 60,50, 100,30, // 2, arbitrary
2018-11-18 09:33:15 +01:00
350,270, 440,200, 490,220, // 3, arbitrary
150,300, 290,400, 450,400, // 4, regular
105,200, 120,200, 201,200, // 5, horizontal line
2019-05-06 00:32:37 +02:00
300,200, 300,250, 300,220, // 6, vertical line
496,15, 613,131, 552,203
2018-11-17 16:40:44 +01:00
};
2019-05-07 16:48:50 +02:00
#define S S3L_FRACTIONS_PER_UNIT
S3L_Unit ver[] =
{
S/2, -S/2, -S/2, // 0 front, bottom, right
-S/2, -S/2, -S/2, // 1 front, bottom, left
S/2, S/2, -S/2, // 2 front, top, right
-S/2, S/2, -S/2, // 3 front, top, left
S/2, -S/2, S/2, // 4 back, bottom, right
-S/2, -S/2, S/2, // 5 back, bottom, left
S/2, S/2, S/2, // 6 back, top, right
-S/2, S/2, S/2 // 7 back, top, left
};
#undef S
const S3L_Index tri[] =
{
0, 3, 2, // front
0, 1, 3,
4, 0, 2, // right
4, 2, 6,
5, 4, 6, // back
6, 7, 5,
7, 3, 1, // left
7, 1, 5,
3, 6, 2, // top
3, 7, 6,
4, 1, 0, // bottom
4, 5, 1
};
S3L_Camera camera;
S3L_Transform3D modelTransform;
S3L_DrawConfig conf;
2018-11-17 13:34:15 +01:00
void draw()
{
clearScreen();
2019-05-07 16:48:50 +02:00
// modelTransform.rotation.z = frame * 0.2;
// modelTransform.rotation.x = frame * 0.1;
2018-11-18 13:40:51 +01:00
2019-05-07 16:48:50 +02:00
S3L_drawModel(ver,tri,12,modelTransform,camera,conf);
/*
2018-11-18 13:40:51 +01:00
conf.backfaceCulling = S3L_BACKFACE_CULLING_NONE;
2018-11-18 18:25:55 +01:00
conf.mode = S3L_MODE_TRIANGLES;
2018-11-18 13:40:51 +01:00
2019-05-06 00:32:37 +02:00
for (int c = 0; c < 8; ++c)
2018-11-17 17:18:55 +01:00
{
int
x0 = test_coords[6 * c],
y0 = test_coords[6 * c + 1],
x1 = test_coords[6 * c + 2],
y1 = test_coords[6 * c + 3],
x2 = test_coords[6 * c + 4],
y2 = test_coords[6 * c + 5];
2018-11-18 15:59:58 +01:00
int cent = (x0 + x1 + x2) / 3.0;
2019-04-28 20:53:02 +02:00
x2 = cent + (x2 - cent) * sin(frame * 0.001) * 2;
//x2 = cent + (x2 - cent) * sin(600 * 0.001) * 2;
2018-11-18 13:40:51 +01:00
2019-04-28 19:31:13 +02:00
S3L_drawTriangle(x0,y0,x1,y1,x2,y2,conf,0);
2018-11-18 13:40:51 +01:00
2018-11-17 17:18:55 +01:00
setPixel(x0,y0,255,0,0);
setPixel(x1,y1,255,0,0);
setPixel(x2,y2,255,0,0);
2018-11-18 13:40:51 +01:00
2018-11-17 17:18:55 +01:00
}
2018-11-18 13:40:51 +01:00
2019-05-06 00:32:37 +02:00
float rotRate = 0.002;
int16_t rotX0 = 200 + sin(frame * rotRate) * 100;
int16_t rotY0 = 200 + cos(frame * rotRate) * 100;
2018-11-18 10:22:31 +01:00
2019-05-06 00:32:37 +02:00
int16_t rotX1 = 200 + sin((frame + 1500) * rotRate) * 100;
int16_t rotY1 = 200 + cos((frame + 1500) * rotRate) * 100;
2018-11-18 10:22:31 +01:00
2019-05-06 00:32:37 +02:00
int16_t rotX2 = 200 + sin((frame + 500) * rotRate) * 100;
int16_t rotY2 = 200 + cos((frame + 500) * rotRate) * 100;
2018-11-18 10:22:31 +01:00
2019-04-28 19:31:13 +02:00
S3L_drawTriangle(rotX0,rotY0,rotX1,rotY1,rotX2,rotY2,conf,0);
2019-05-07 16:48:50 +02:00
*/
2018-11-17 13:34:15 +01:00
}
int main()
{
SDL_Window *window = SDL_CreateWindow("test", SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, SCREEN_WIDTH, SCREEN_HEIGHT, SDL_WINDOW_SHOWN);
SDL_Renderer *renderer = SDL_CreateRenderer(window,-1,0);
SDL_Texture *texture = SDL_CreateTexture(renderer,SDL_PIXELFORMAT_RGBX8888, SDL_TEXTUREACCESS_STATIC, SCREEN_WIDTH, SCREEN_HEIGHT);
SDL_Surface *screenSurface = SDL_GetWindowSurface(window);
SDL_Event event;
2019-05-07 16:48:50 +02:00
S3L_initCamera(&camera);
camera.resolutionX = SCREEN_WIDTH;
camera.resolutionY = SCREEN_HEIGHT;
camera.transform.translation.z = -S3L_FRACTIONS_PER_UNIT * 2;
camera.transform.translation.x = S3L_FRACTIONS_PER_UNIT;
camera.transform.translation.y = S3L_FRACTIONS_PER_UNIT;
S3L_initTransoform3D(&modelTransform);
S3L_initDrawConfig(&conf);
2018-11-17 13:34:15 +01:00
int running = 1;
while (running)
{
draw();
SDL_UpdateTexture(texture,NULL,pixels,SCREEN_WIDTH * sizeof(uint32_t));
while (SDL_PollEvent(&event))
{
switch (event.type)
{
case SDL_QUIT:
running = 0;
break;
default:
break;
}
}
SDL_RenderClear(renderer);
SDL_RenderCopy(renderer,texture,NULL,NULL);
SDL_RenderPresent(renderer);
frame++;
}
return 0;
}