gravity/object.h
0xdeadbeer cb348fe1b8 Repository: refactor the project
Created object and math files for operations
specific to objects and math.
2023-11-10 23:27:20 +01:00

45 lines
941 B
C

#ifndef OBJECT_H
#define OBJECT_H
#include <cglm/cglm.h>
#define MAX_PATHS 5500
struct object {
vec4 translation_force;
vec4 rotation_force;
vec4 position;
vec4 rotation;
vec3 color;
float mass;
void *next;
float *paths;
int paths_num;
int paths_max;
float *vertices;
unsigned int *indices;
float *normals;
long vertices_num;
long indices_num;
long normals_num;
float scale;
unsigned int vao; // array object for the actual object
unsigned int vbo; // buffer for vertices
unsigned int ebo; // buffer for indices
unsigned int nbo; // buffer for normals
unsigned int pvao; // array object for paths
unsigned int pbo; // buffer for paths
};
extern struct object *objects;
int load_model_to_object(const char *path, struct object *obj);
int record_path(struct object *obj);
struct object *create_object(float mass, const char *model);
#endif