prosperon/source/engine/gameobject.h

50 lines
994 B
C
Raw Normal View History

2021-11-30 21:29:18 -06:00
#ifndef GAMEOBJECT_H
#define GAMEOBJECT_H
2023-11-30 10:47:59 -06:00
#define dag_rm(p,c) do{\
for (int i = arrlen(p->children)-1; i--; i >=0) {\
if (p->children[i] == c) { \
arrdelswap(p->children,i);\
c->parent=NULL;\
break;\
}}}while(0)
#define dag_set(p,c) do{\
arrpush(p->children,c);\
if(c->parent) dag_rm(c->parent,c);\
c->parent=p;\
}while(0)
#define dag_clip(p) do{\
if (p->parent)\
dag_rm(p->parent,p);\
}while(0)
2021-11-30 21:29:18 -06:00
2023-12-11 08:36:45 -06:00
struct gameobject {
2024-01-14 10:24:31 -06:00
float damping;
2023-11-20 07:49:14 -06:00
float timescale;
float maxvelocity;
float maxangularvelocity;
2023-05-12 13:22:05 -05:00
unsigned int layer;
2024-04-12 13:53:00 -05:00
unsigned int warp_mask;
2023-12-11 08:36:45 -06:00
};
2021-11-30 21:29:18 -06:00
2024-01-14 10:24:31 -06:00
/*
Friction uses coulomb model. When shapes collide, their friction is multiplied. Some example values:
Steel on steel: 0.0005
Wood on steel: 0.0012
Wood on wood: 0.0015
=> steel = 0.025
=> wood = 0.04
=> hardrubber = 0.31
=> concrete = 0.05
=> rubber = 0.5
Hardrubber on steel: 0.0077
Hardrubber on concrete: 0.015
Rubber on concrete: 0.025
*/
2023-12-11 08:36:45 -06:00
typedef struct gameobject gameobject;
2022-08-26 09:19:17 -05:00
2021-11-30 21:29:18 -06:00
#endif