1
0
Fork 0
mirror of https://git.coom.tech/drummyfish/small3dlib.git synced 2024-11-20 20:29:58 +01:00
small3dlib/programs/helloWorld.c

75 lines
2.2 KiB
C
Raw Permalink Normal View History

2020-06-21 17:24:35 +02:00
/**
Simple hello world for small3dlib. Renders a triangle in terminal as ASCII.
by drummyfish, released under CC0 1.0, public domain
*/
#include <stdio.h> // for IO
// This tells the library the resolution of our ASCII screen.
#define S3L_RESOLUTION_X 64
#define S3L_RESOLUTION_Y 30
// This tells the library the name of a function we use to write pixels.
#define S3L_PIXEL_FUNCTION drawPixel
#include "../small3dlib.h" // now include the library
2022-09-21 15:53:10 +02:00
#define U S3L_F // this is the library unit, like e.g. 1 meter
2020-06-21 17:24:35 +02:00
S3L_Unit triangleVertices[] = { // x, y, z
U, 0, 0, // vertex 1
0, U, 0, // vertex 2
-U, U/2, 0 }; // vertex 3
S3L_Index triangleTriangles[] = { 0, 1, 2 }; // our single triangle
#undef U
#define SCREEN_SIZE (S3L_RESOLUTION_X * S3L_RESOLUTION_Y)
char screen[SCREEN_SIZE]; // our ASCII screen
/* This function will be called by the library to draw individual rasterized
pixels to our screen. We should try to make this function as fast as possible
as it tends to be the performance bottle neck. */
void drawPixel(S3L_PixelInfo *p)
{
screen[p->y * S3L_RESOLUTION_X + p->x] = 'X';
}
int main()
{
for (int i = 0; i < SCREEN_SIZE; ++i) // init the screen
screen[i] = '.';
S3L_Model3D triangleModel; // 3D model representing our triangle
2022-03-06 14:45:15 +01:00
S3L_model3DInit(triangleVertices,9,triangleTriangles,1,&triangleModel);
2020-06-21 17:24:35 +02:00
S3L_Scene scene; // scene of 3D models (we only have 1)
2022-03-06 14:45:15 +01:00
S3L_sceneInit(&triangleModel,1,&scene);
2020-06-21 17:24:35 +02:00
// shift the camera a little bit so that we can see the triangle
2022-09-21 15:53:10 +02:00
scene.camera.transform.translation.z = -2 * S3L_F;
scene.camera.transform.translation.y = S3L_F / 2;
2020-06-21 17:24:35 +02:00
S3L_newFrame(); // has to be called before each frame
S3L_drawScene(scene); /* this starts the scene rendering, the library
will now start calling our drawPixel function to
render the camera view */
int index = 0;
for (int y = 0; y < S3L_RESOLUTION_Y; ++y) // now display the screen
{
for (int x = 0; x < S3L_RESOLUTION_X; ++x)
{
putchar(screen[index]);
index++;
}
putchar('\n');
}
return 0; // done!
}