Guest User

Untitled

a guest
Nov 26th, 2023
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.76 KB | None | 0 0
  1. #include <algorithm>
  2. #include <vector>
  3. #include <iostream>
  4. #include <limits>
  5. #include <stdlib.h>
  6.  
  7. #include <glm/glm.hpp>
  8. #include <glm/gtc/matrix_transform.hpp>
  9.  
  10.  
  11.  
  12. #define GRAVITY -9.81f
  13. #define DRAG_COEFFICIENT 0.1f /*(i made it ui made it up)*/
  14. #define AIR_DENSITY 1.2
  15. #define DEFAULT_ELASTICITY 0.3f
  16. #define DEFAULT_FRICTION 0.2f
  17.  
  18. #define COLLIDER_VERTEX_COUNT 8
  19.  
  20. struct OverlapInfo{
  21. bool isOverlapping;
  22. float overlap;
  23. };
  24.  
  25. class Body{
  26. public:
  27. Body() = default;
  28. Body(glm::vec3 pos, glm::vec3 size, bool isStatic);
  29. void CheckCollision(Body* other);
  30.  
  31. void Update();
  32. glm::vec3 pos;
  33. glm::vec3 vel;
  34. glm::vec3 size;
  35.  
  36. bool isStatic;
  37. bool isGrounded;
  38.  
  39. glm::vec3 points[COLLIDER_VERTEX_COUNT];
  40. glm::vec3 vertices[COLLIDER_VERTEX_COUNT];
  41. private:
  42.  
  43. void UpdateVertices();
  44.  
  45. glm::mat4 model;
  46.  
  47. static OverlapInfo CheckOverlap(Body* b1, Body* b2, glm::vec3 axis);
  48. static float CalculateOverlap(float aMinProj, float aMaxProj, float bMinProj, float bMaxProj);
  49.  
  50.  
  51. static std::vector<Body*> bodies;
  52.  
  53. };
  54. Body::Body(glm::vec3 pos, glm::vec3 size, bool isStatic){
  55. this->pos = pos;
  56. this->size = size;
  57. this->isStatic = isStatic;
  58. this->vel = glm::vec3(0);
  59.  
  60.  
  61.  
  62. isGrounded = false;
  63.  
  64. //dont do this each time fix sometime
  65. points[0] = glm::vec3(-0.5f, -0.5f, -0.5f);
  66. points[1] = glm::vec3(-0.5f, -0.5f, 0.5f);
  67. points[2] = glm::vec3(-0.5f, 0.5f, -0.5f);
  68. points[3] = glm::vec3(-0.5f, 0.5f, 0.5f);
  69. points[4] = glm::vec3(0.5f, -0.5f, -0.5f);
  70. points[5] = glm::vec3(0.5f, -0.5f, 0.5f);
  71. points[6] = glm::vec3(0.5f, 0.5f, -0.5f);
  72. points[7] = glm::vec3(0.5f, 0.5f, 0.5f);
  73.  
  74. UpdateVertices();
  75.  
  76.  
  77. model = glm::mat4(1.0f);
  78. }
  79.  
  80. void Body::UpdateVertices(){
  81. model = glm::mat4(1.0f);
  82. model = glm::translate(model, pos);
  83. model = glm::scale(model, size * 2.0f);
  84.  
  85. for(uint32_t i = 0; i < COLLIDER_VERTEX_COUNT; i++){
  86. glm::vec4 v = model*glm::vec4(points[i], 1.0f);
  87. vertices[i] = glm::vec3(v.x, v.y, v.z);
  88. }
  89. }
  90.  
  91. void Body::Update(){
  92. if(isStatic){
  93. return;
  94. }
  95.  
  96. pos += vel;
  97.  
  98. UpdateVertices();
  99.  
  100.  
  101. //do it in a global func or smthn
  102. isGrounded = false;
  103. }
  104. float Body::CalculateOverlap(float aMinProj, float aMaxProj, float bMinProj, float bMaxProj){
  105. return std::min(bMaxProj, aMaxProj) - std::max(aMinProj, bMinProj);
  106. }
  107.  
  108. void Body::CheckCollision(Body* other){
  109.  
  110. if(isStatic && other->isStatic){
  111. return;
  112. }
  113.  
  114. glm::vec3 axis;
  115.  
  116. //calculate the fucking normal axis:
  117.  
  118. glm::vec3 mtvAxis;
  119. float overlap = std::numeric_limits<float>::infinity();
  120.  
  121. for(uint32_t i = 0; i < COLLIDER_VERTEX_COUNT; i++){
  122. glm::vec3 curr = vertices[i];
  123. glm::vec3 edges[2];
  124.  
  125. edges[0] = vertices[(i + 1) % COLLIDER_VERTEX_COUNT]- curr;
  126. edges[1] = vertices[(i + 2) % COLLIDER_VERTEX_COUNT]- curr;
  127.  
  128. axis = glm::normalize(glm::cross(edges[1], edges[0]));
  129.  
  130. OverlapInfo overlapInfo = CheckOverlap(this, other, axis);
  131. if(!overlapInfo.isOverlapping){
  132. return;
  133. }
  134. if(overlapInfo.overlap < overlap){
  135. overlap = overlapInfo.overlap;
  136. mtvAxis = axis;
  137. }
  138.  
  139. curr = other->vertices[i];
  140. edges[0] = other->vertices[(i + 1) % COLLIDER_VERTEX_COUNT]- curr;
  141. edges[1] = other->vertices[(i + 2) % COLLIDER_VERTEX_COUNT]- curr;
  142.  
  143. axis = glm::normalize(glm::cross(edges[1], edges[0]));
  144.  
  145. overlapInfo = CheckOverlap(this, other, axis);
  146. if(!overlapInfo.isOverlapping){
  147. return;
  148. }
  149. if(overlapInfo.overlap < overlap){
  150. overlap = overlapInfo.overlap;
  151. mtvAxis = axis;
  152. }
  153.  
  154. axis = glm::normalize(glm::cross(vertices[(i + 1) % COLLIDER_VERTEX_COUNT] - curr,
  155. other->vertices[(i + 1) % COLLIDER_VERTEX_COUNT] - other->vertices[i]));
  156.  
  157. overlapInfo = CheckOverlap(this, other, axis);
  158. if(!overlapInfo.isOverlapping){
  159. return;
  160. }
  161. if(overlapInfo.overlap < overlap){
  162. overlap = overlapInfo.overlap;
  163. mtvAxis = axis;
  164. }
  165.  
  166. axis = glm::normalize(glm::cross(vertices[(i + 2) % COLLIDER_VERTEX_COUNT] - curr,
  167. other->vertices[(i + 2) % COLLIDER_VERTEX_COUNT] - other->vertices[i]));
  168.  
  169. overlapInfo = CheckOverlap(this, other, axis);
  170. if(!overlapInfo.isOverlapping){
  171. return;
  172. }
  173.  
  174. if(overlapInfo.overlap < overlap){
  175. overlap = overlapInfo.overlap;
  176. mtvAxis = axis;
  177. }
  178.  
  179. }
  180.  
  181. mtvAxis.x = static_cast<float>(static_cast<int>(mtvAxis.x * 10)) / 10;
  182. mtvAxis.y = static_cast<float>(static_cast<int>(mtvAxis.y * 10)) / 10;
  183. mtvAxis.z = static_cast<float>(static_cast<int>(mtvAxis.z * 10)) / 10;
  184.  
  185.  
  186. pos -= mtvAxis * overlap;
  187.  
  188. vel.y = 0;
  189.  
  190. }
  191.  
  192. OverlapInfo Body::CheckOverlap(Body* b1, Body* b2, glm::vec3 axis){
  193. OverlapInfo overlapInfo;
  194.  
  195. float aMaxProj = -std::numeric_limits<float>::infinity();
  196. float aMinProj = std::numeric_limits<float>::infinity();
  197.  
  198. float bMaxProj = -std::numeric_limits<float>::infinity();
  199. float bMinProj = std::numeric_limits<float>::infinity();
  200.  
  201.  
  202. for(glm::vec3 p : b1->vertices){
  203. float proj = glm::dot(axis, p);
  204.  
  205. if(proj < aMinProj){
  206. aMinProj = proj;
  207. }
  208. if(proj > aMaxProj){
  209. aMaxProj = proj;
  210. }
  211. }
  212.  
  213. for(glm::vec3 p : b2->vertices){
  214. float proj = glm::dot(axis, p);
  215.  
  216. if(proj < bMinProj){
  217. bMinProj = proj;
  218. }
  219. if(proj > bMaxProj){
  220. bMaxProj = proj;
  221. }
  222. }
  223. if(aMaxProj < bMinProj || bMaxProj < aMinProj){
  224. overlapInfo.isOverlapping = false;
  225. overlapInfo.overlap = std::numeric_limits<float>::infinity();
  226. return overlapInfo;
  227. }
  228.  
  229. overlapInfo.isOverlapping = true;
  230. overlapInfo.overlap = CalculateOverlap(aMinProj, aMaxProj, bMinProj, bMaxProj);
  231. return overlapInfo;
  232. }
  233.  
  234. int main(){
  235. Body body = Body(glm::vec3(0), glm::vec3(1, 2.5, 1), false);
  236. Body body3 = Body(glm::vec3(3, 0, 3), glm::vec3(1, 5, 1), true);
  237.  
  238. while(true){
  239.  
  240. std::string input;
  241. std::cin >> input;
  242.  
  243. if(!input.compare("-x")){
  244. body.pos.x -= 1;
  245. }
  246. else if(!input.compare("+x")){
  247. body.pos.x += 1;
  248. }
  249. else if(!input.compare("-z")){
  250. body.pos.z -= 1;
  251. }
  252. else if(!input.compare("+z")){
  253. body.pos.z += 1;
  254. }
  255.  
  256. body.CheckCollision(&body3);
  257.  
  258. body.Update();
  259.  
  260. std::cout << body.pos.x << " " << body.pos.z << std::endl;
  261. }
  262. }
Add Comment
Please, Sign In to add comment