2013-11-19 02:38:44 +04:00
|
|
|
/*********************************************************************************************
|
|
|
|
*
|
2013-11-23 16:30:54 +04:00
|
|
|
* raylib.shapes
|
2013-11-19 02:38:44 +04:00
|
|
|
*
|
2013-11-30 21:12:40 +04:00
|
|
|
* Basic functions to draw 2d Shapes and check collisions
|
2014-09-03 18:51:28 +04:00
|
|
|
*
|
2013-11-23 16:30:54 +04:00
|
|
|
* Copyright (c) 2013 Ramon Santamaria (Ray San - raysan@raysanweb.com)
|
2014-09-03 18:51:28 +04:00
|
|
|
*
|
|
|
|
* This software is provided "as-is", without any express or implied warranty. In no event
|
2013-11-23 16:30:54 +04:00
|
|
|
* will the authors be held liable for any damages arising from the use of this software.
|
2013-11-19 02:38:44 +04:00
|
|
|
*
|
2014-09-03 18:51:28 +04:00
|
|
|
* Permission is granted to anyone to use this software for any purpose, including commercial
|
2013-11-23 16:30:54 +04:00
|
|
|
* applications, and to alter it and redistribute it freely, subject to the following restrictions:
|
2013-11-19 02:38:44 +04:00
|
|
|
*
|
2014-09-03 18:51:28 +04:00
|
|
|
* 1. The origin of this software must not be misrepresented; you must not claim that you
|
|
|
|
* wrote the original software. If you use this software in a product, an acknowledgment
|
2013-11-23 16:30:54 +04:00
|
|
|
* in the product documentation would be appreciated but is not required.
|
2013-11-19 02:38:44 +04:00
|
|
|
*
|
2013-11-23 16:30:54 +04:00
|
|
|
* 2. Altered source versions must be plainly marked as such, and must not be misrepresented
|
|
|
|
* as being the original software.
|
2013-11-19 02:38:44 +04:00
|
|
|
*
|
2013-11-23 16:30:54 +04:00
|
|
|
* 3. This notice may not be removed or altered from any source distribution.
|
2013-11-19 02:38:44 +04:00
|
|
|
*
|
|
|
|
**********************************************************************************************/
|
|
|
|
|
|
|
|
#include "raylib.h"
|
|
|
|
|
2013-11-30 21:12:40 +04:00
|
|
|
#include <stdlib.h> // Required for abs() function
|
2013-11-23 16:30:54 +04:00
|
|
|
#include <math.h> // Math related functions, sin() and cos() used on DrawCircle*
|
2013-11-30 21:12:40 +04:00
|
|
|
// sqrt() and pow() and abs() used on CheckCollision*
|
2014-09-03 18:51:28 +04:00
|
|
|
|
2014-03-25 15:40:35 +04:00
|
|
|
#include "rlgl.h" // raylib OpenGL abstraction layer to OpenGL 1.1, 3.3+ or ES2
|
2013-11-19 02:38:44 +04:00
|
|
|
|
2014-07-23 21:50:06 +04:00
|
|
|
// Security check in case no USE_OPENGL_* defined
|
|
|
|
#if !defined(USE_OPENGL_11) && !defined(USE_OPENGL_33) && !defined(USE_OPENGL_ES2)
|
|
|
|
#define USE_OPENGL_11
|
|
|
|
#endif
|
|
|
|
|
2013-11-19 02:38:44 +04:00
|
|
|
//----------------------------------------------------------------------------------
|
|
|
|
// Defines and Macros
|
|
|
|
//----------------------------------------------------------------------------------
|
|
|
|
// Nop...
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------------
|
|
|
|
// Types and Structures Definition
|
|
|
|
//----------------------------------------------------------------------------------
|
|
|
|
// Not here...
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------------
|
|
|
|
// Global Variables Definition
|
|
|
|
//----------------------------------------------------------------------------------
|
|
|
|
// It's lonely here...
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------------
|
|
|
|
// Module specific Functions Declaration
|
|
|
|
//----------------------------------------------------------------------------------
|
|
|
|
// No private (static) functions in this module (.c file)
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------------
|
|
|
|
// Module Functions Definition
|
|
|
|
//----------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
// Draw a pixel
|
|
|
|
void DrawPixel(int posX, int posY, Color color)
|
|
|
|
{
|
2014-03-25 15:40:35 +04:00
|
|
|
rlBegin(RL_LINES);
|
|
|
|
rlColor4ub(color.r, color.g, color.b, color.a);
|
|
|
|
rlVertex2i(posX, posY);
|
|
|
|
rlVertex2i(posX + 1, posY + 1);
|
2014-04-04 22:11:57 +04:00
|
|
|
rlEnd();
|
2013-11-19 02:38:44 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Draw a pixel (Vector version)
|
|
|
|
void DrawPixelV(Vector2 position, Color color)
|
|
|
|
{
|
2014-03-25 15:40:35 +04:00
|
|
|
rlBegin(RL_LINES);
|
|
|
|
rlColor4ub(color.r, color.g, color.b, color.a);
|
|
|
|
rlVertex2f(position.x, position.y);
|
|
|
|
rlVertex2i(position.x + 1, position.y + 1);
|
|
|
|
rlEnd();
|
2013-11-19 02:38:44 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Draw a line
|
|
|
|
void DrawLine(int startPosX, int startPosY, int endPosX, int endPosY, Color color)
|
|
|
|
{
|
2014-03-25 15:40:35 +04:00
|
|
|
rlBegin(RL_LINES);
|
|
|
|
rlColor4ub(color.r, color.g, color.b, color.a);
|
|
|
|
rlVertex2i(startPosX, startPosY);
|
|
|
|
rlVertex2i(endPosX, endPosY);
|
|
|
|
rlEnd();
|
2013-11-19 02:38:44 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Draw a line (Vector version)
|
|
|
|
void DrawLineV(Vector2 startPos, Vector2 endPos, Color color)
|
|
|
|
{
|
2014-03-25 15:40:35 +04:00
|
|
|
rlBegin(RL_LINES);
|
|
|
|
rlColor4ub(color.r, color.g, color.b, color.a);
|
|
|
|
rlVertex2f(startPos.x, startPos.y);
|
|
|
|
rlVertex2f(endPos.x, endPos.y);
|
|
|
|
rlEnd();
|
2013-11-19 02:38:44 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Draw a color-filled circle
|
|
|
|
void DrawCircle(int centerX, int centerY, float radius, Color color)
|
|
|
|
{
|
2013-12-19 15:08:06 +04:00
|
|
|
DrawPoly((Vector2){centerX, centerY}, 360, radius, 0, color);
|
2013-11-19 02:38:44 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Draw a gradient-filled circle
|
|
|
|
// NOTE: Gradient goes from center (color1) to border (color2)
|
|
|
|
void DrawCircleGradient(int centerX, int centerY, float radius, Color color1, Color color2)
|
|
|
|
{
|
2014-09-03 18:51:28 +04:00
|
|
|
rlBegin(RL_TRIANGLES);
|
2014-04-04 22:11:57 +04:00
|
|
|
for (int i=0; i < 360; i += 2)
|
2013-11-23 16:30:54 +04:00
|
|
|
{
|
2014-03-25 15:40:35 +04:00
|
|
|
rlColor4ub(color1.r, color1.g, color1.b, color1.a);
|
|
|
|
rlVertex2i(centerX, centerY);
|
|
|
|
rlColor4ub(color2.r, color2.g, color2.b, color2.a);
|
|
|
|
rlVertex2f(centerX + sin(DEG2RAD*i) * radius, centerY + cos(DEG2RAD*i) * radius);
|
2014-04-19 18:36:49 +04:00
|
|
|
rlColor4ub(color2.r, color2.g, color2.b, color2.a);
|
2014-04-04 22:11:57 +04:00
|
|
|
rlVertex2f(centerX + sin(DEG2RAD*(i+2)) * radius, centerY + cos(DEG2RAD*(i+2)) * radius);
|
2013-11-23 16:30:54 +04:00
|
|
|
}
|
2014-03-25 15:40:35 +04:00
|
|
|
rlEnd();
|
2013-11-19 02:38:44 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Draw a color-filled circle (Vector version)
|
|
|
|
void DrawCircleV(Vector2 center, float radius, Color color)
|
|
|
|
{
|
2014-03-25 15:40:35 +04:00
|
|
|
rlBegin(RL_TRIANGLES);
|
|
|
|
for (int i=0; i < 360; i += 2)
|
2013-11-23 16:30:54 +04:00
|
|
|
{
|
2014-03-25 15:40:35 +04:00
|
|
|
rlColor4ub(color.r, color.g, color.b, color.a);
|
|
|
|
rlVertex2i(center.x, center.y);
|
|
|
|
rlVertex2f(center.x + sin(DEG2RAD*i) * radius, center.y + cos(DEG2RAD*i) * radius);
|
2014-04-04 22:11:57 +04:00
|
|
|
rlVertex2f(center.x + sin(DEG2RAD*(i+2)) * radius, center.y + cos(DEG2RAD*(i+2)) * radius);
|
2013-11-23 16:30:54 +04:00
|
|
|
}
|
2014-03-25 15:40:35 +04:00
|
|
|
rlEnd();
|
2013-11-19 02:38:44 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Draw circle outline
|
|
|
|
void DrawCircleLines(int centerX, int centerY, float radius, Color color)
|
|
|
|
{
|
2014-03-25 15:40:35 +04:00
|
|
|
rlBegin(RL_LINES);
|
|
|
|
rlColor4ub(color.r, color.g, color.b, color.a);
|
2014-09-03 18:51:28 +04:00
|
|
|
|
2013-11-23 16:30:54 +04:00
|
|
|
// NOTE: Circle outline is drawn pixel by pixel every degree (0 to 360)
|
|
|
|
for (int i=0; i < 360; i++)
|
|
|
|
{
|
2014-03-25 15:40:35 +04:00
|
|
|
rlVertex2f(centerX + sin(DEG2RAD*i) * radius, centerY + cos(DEG2RAD*i) * radius);
|
|
|
|
rlVertex2f(centerX + sin(DEG2RAD*(i+1)) * radius, centerY + cos(DEG2RAD*(i+1)) * radius);
|
2013-11-23 16:30:54 +04:00
|
|
|
}
|
2014-03-25 15:40:35 +04:00
|
|
|
rlEnd();
|
2013-11-19 02:38:44 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Draw a color-filled rectangle
|
|
|
|
void DrawRectangle(int posX, int posY, int width, int height, Color color)
|
|
|
|
{
|
2014-04-19 18:36:49 +04:00
|
|
|
Vector2 position = { (float)posX, (float)posY };
|
|
|
|
Vector2 size = { (float)width, (float)height };
|
|
|
|
|
|
|
|
DrawRectangleV(position, size, color);
|
2013-11-19 02:38:44 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Draw a color-filled rectangle
|
|
|
|
void DrawRectangleRec(Rectangle rec, Color color)
|
|
|
|
{
|
2013-11-23 16:30:54 +04:00
|
|
|
DrawRectangle(rec.x, rec.y, rec.width, rec.height, color);
|
2014-09-03 18:51:28 +04:00
|
|
|
}
|
2013-11-19 02:38:44 +04:00
|
|
|
|
|
|
|
// Draw a gradient-filled rectangle
|
|
|
|
// NOTE: Gradient goes from bottom (color1) to top (color2)
|
|
|
|
void DrawRectangleGradient(int posX, int posY, int width, int height, Color color1, Color color2)
|
|
|
|
{
|
2014-04-19 18:36:49 +04:00
|
|
|
rlBegin(RL_TRIANGLES);
|
|
|
|
rlColor4ub(color1.r, color1.g, color1.b, color1.a); rlVertex2i(posX, posY);
|
|
|
|
rlColor4ub(color2.r, color2.g, color2.b, color2.a); rlVertex2i(posX, posY + height);
|
|
|
|
rlColor4ub(color2.r, color2.g, color2.b, color2.a); rlVertex2i(posX + width, posY + height);
|
2014-09-03 18:51:28 +04:00
|
|
|
|
2014-04-19 18:36:49 +04:00
|
|
|
rlColor4ub(color1.r, color1.g, color1.b, color1.a); rlVertex2i(posX, posY);
|
2014-09-03 18:51:28 +04:00
|
|
|
rlColor4ub(color2.r, color2.g, color2.b, color2.a); rlVertex2i(posX + width, posY + height);
|
2014-04-19 18:36:49 +04:00
|
|
|
rlColor4ub(color1.r, color1.g, color1.b, color1.a); rlVertex2i(posX + width, posY);
|
2014-03-25 15:40:35 +04:00
|
|
|
rlEnd();
|
2013-11-19 02:38:44 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Draw a color-filled rectangle (Vector version)
|
|
|
|
void DrawRectangleV(Vector2 position, Vector2 size, Color color)
|
|
|
|
{
|
2014-07-23 21:50:06 +04:00
|
|
|
#ifdef USE_OPENGL_11
|
2014-04-19 18:36:49 +04:00
|
|
|
rlBegin(RL_TRIANGLES);
|
2014-03-25 15:40:35 +04:00
|
|
|
rlColor4ub(color.r, color.g, color.b, color.a);
|
2014-09-03 18:51:28 +04:00
|
|
|
|
2014-03-25 15:40:35 +04:00
|
|
|
rlVertex2i(position.x, position.y);
|
|
|
|
rlVertex2i(position.x, position.y + size.y);
|
|
|
|
rlVertex2i(position.x + size.x, position.y + size.y);
|
2014-09-03 18:51:28 +04:00
|
|
|
|
2014-04-19 18:36:49 +04:00
|
|
|
rlVertex2i(position.x, position.y);
|
2014-09-03 18:51:28 +04:00
|
|
|
rlVertex2i(position.x + size.x, position.y + size.y);
|
2014-03-25 15:40:35 +04:00
|
|
|
rlVertex2i(position.x + size.x, position.y);
|
|
|
|
rlEnd();
|
2014-09-03 18:51:28 +04:00
|
|
|
#endif
|
2014-07-23 03:25:33 +04:00
|
|
|
|
2014-07-23 21:50:06 +04:00
|
|
|
#if defined(USE_OPENGL_33) || defined(USE_OPENGL_ES2)
|
2014-07-23 03:25:33 +04:00
|
|
|
// NOTE: This shape uses QUADS to avoid drawing order issues (view rlglDraw)
|
|
|
|
rlEnableTexture(1); // Default white texture
|
|
|
|
|
|
|
|
rlBegin(RL_QUADS);
|
|
|
|
rlColor4ub(color.r, color.g, color.b, color.a);
|
|
|
|
rlNormal3f(0.0f, 0.0f, 1.0f); // Normal Pointing Towards Viewer
|
2014-09-03 18:51:28 +04:00
|
|
|
|
|
|
|
rlTexCoord2f(0.0f, 0.0f);
|
2014-07-23 03:25:33 +04:00
|
|
|
rlVertex2f(position.x, position.y);
|
2014-09-03 18:51:28 +04:00
|
|
|
|
|
|
|
rlTexCoord2f(0.0f, 1.0f);
|
2014-07-23 03:25:33 +04:00
|
|
|
rlVertex2f(position.x, position.y + size.y);
|
2014-09-03 18:51:28 +04:00
|
|
|
|
|
|
|
rlTexCoord2f(1.0f, 1.0f);
|
|
|
|
rlVertex2f(position.x + size.x, position.y + size.y);
|
|
|
|
|
|
|
|
rlTexCoord2f(1.0f, 0.0f);
|
2014-07-23 03:25:33 +04:00
|
|
|
rlVertex2f(position.x + size.x, position.y);
|
|
|
|
rlEnd();
|
|
|
|
|
|
|
|
rlDisableTexture();
|
2014-07-23 21:50:06 +04:00
|
|
|
#endif
|
2013-11-19 02:38:44 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Draw rectangle outline
|
|
|
|
void DrawRectangleLines(int posX, int posY, int width, int height, Color color)
|
|
|
|
{
|
2014-03-25 15:40:35 +04:00
|
|
|
rlBegin(RL_LINES);
|
|
|
|
rlColor4ub(color.r, color.g, color.b, color.a);
|
2014-07-23 21:50:06 +04:00
|
|
|
rlVertex2i(posX + 1, posY + 1);
|
|
|
|
rlVertex2i(posX + width, posY + 1);
|
2014-09-03 18:51:28 +04:00
|
|
|
|
2014-07-23 21:50:06 +04:00
|
|
|
rlVertex2i(posX + width, posY + 1);
|
|
|
|
rlVertex2i(posX + width, posY + height);
|
2014-09-03 18:51:28 +04:00
|
|
|
|
2014-07-23 21:50:06 +04:00
|
|
|
rlVertex2i(posX + width, posY + height);
|
|
|
|
rlVertex2i(posX + 1, posY + height);
|
2014-09-03 18:51:28 +04:00
|
|
|
|
2014-07-23 21:50:06 +04:00
|
|
|
rlVertex2i(posX + 1, posY + height);
|
|
|
|
rlVertex2i(posX + 1, posY + 1);
|
2014-03-25 15:40:35 +04:00
|
|
|
rlEnd();
|
2013-11-19 02:38:44 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Draw a triangle
|
|
|
|
void DrawTriangle(Vector2 v1, Vector2 v2, Vector2 v3, Color color)
|
|
|
|
{
|
2014-03-25 15:40:35 +04:00
|
|
|
rlBegin(RL_TRIANGLES);
|
|
|
|
rlColor4ub(color.r, color.g, color.b, color.a);
|
|
|
|
rlVertex2f(v1.x, v1.y);
|
|
|
|
rlVertex2f(v2.x, v2.y);
|
|
|
|
rlVertex2f(v3.x, v3.y);
|
|
|
|
rlEnd();
|
2013-11-19 02:38:44 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void DrawTriangleLines(Vector2 v1, Vector2 v2, Vector2 v3, Color color)
|
|
|
|
{
|
2014-03-25 15:40:35 +04:00
|
|
|
rlBegin(RL_LINES);
|
|
|
|
rlColor4ub(color.r, color.g, color.b, color.a);
|
|
|
|
rlVertex2f(v1.x, v1.y);
|
|
|
|
rlVertex2f(v2.x, v2.y);
|
2014-09-03 18:51:28 +04:00
|
|
|
|
2014-03-25 15:40:35 +04:00
|
|
|
rlVertex2f(v2.x, v2.y);
|
|
|
|
rlVertex2f(v3.x, v3.y);
|
2014-09-03 18:51:28 +04:00
|
|
|
|
2014-03-25 15:40:35 +04:00
|
|
|
rlVertex2f(v3.x, v3.y);
|
|
|
|
rlVertex2f(v1.x, v1.y);
|
|
|
|
rlEnd();
|
2013-11-19 02:38:44 +04:00
|
|
|
}
|
|
|
|
|
2013-12-19 15:08:06 +04:00
|
|
|
// Draw a regular polygon of n sides (Vector version)
|
|
|
|
void DrawPoly(Vector2 center, int sides, float radius, float rotation, Color color)
|
|
|
|
{
|
|
|
|
if (sides < 3) sides = 3;
|
|
|
|
|
2014-03-25 15:40:35 +04:00
|
|
|
rlPushMatrix();
|
2014-04-04 22:11:57 +04:00
|
|
|
rlTranslatef(center.x, center.y, 0.0);
|
|
|
|
rlRotatef(rotation, 0, 0, 1);
|
2014-09-03 18:51:28 +04:00
|
|
|
|
2014-03-25 15:40:35 +04:00
|
|
|
rlBegin(RL_TRIANGLES);
|
2014-04-04 22:11:57 +04:00
|
|
|
for (int i=0; i < 360; i += 360/sides)
|
2014-03-25 15:40:35 +04:00
|
|
|
{
|
|
|
|
rlColor4ub(color.r, color.g, color.b, color.a);
|
2014-09-03 18:51:28 +04:00
|
|
|
|
2014-04-04 22:11:57 +04:00
|
|
|
rlVertex2i(0, 0);
|
|
|
|
rlVertex2f(sin(DEG2RAD*i) * radius, cos(DEG2RAD*i) * radius);
|
|
|
|
rlVertex2f(sin(DEG2RAD*(i+360/sides)) * radius, cos(DEG2RAD*(i+360/sides)) * radius);
|
2013-12-19 15:08:06 +04:00
|
|
|
}
|
2014-03-25 15:40:35 +04:00
|
|
|
rlEnd();
|
|
|
|
rlPopMatrix();
|
2013-12-19 15:08:06 +04:00
|
|
|
}
|
|
|
|
|
2013-11-19 02:38:44 +04:00
|
|
|
// Draw a closed polygon defined by points
|
|
|
|
// NOTE: Array num elements MUST be passed as parameter to function
|
2013-12-19 15:08:06 +04:00
|
|
|
void DrawPolyEx(Vector2 *points, int numPoints, Color color)
|
2013-11-19 02:38:44 +04:00
|
|
|
{
|
2013-11-23 16:30:54 +04:00
|
|
|
if (numPoints >= 3)
|
|
|
|
{
|
2014-03-25 15:40:35 +04:00
|
|
|
rlBegin(RL_TRIANGLES);
|
|
|
|
rlColor4ub(color.r, color.g, color.b, color.a);
|
2014-09-03 18:51:28 +04:00
|
|
|
|
2014-03-25 15:40:35 +04:00
|
|
|
for (int i = 0; i < numPoints - 2; i++)
|
2013-11-23 16:30:54 +04:00
|
|
|
{
|
2014-03-25 15:40:35 +04:00
|
|
|
rlVertex2f(points[i].x, points[i].y);
|
|
|
|
rlVertex2f(points[i+1].x, points[i+1].y);
|
|
|
|
rlVertex2f(points[i+2].x, points[i+2].y);
|
2013-11-23 16:30:54 +04:00
|
|
|
}
|
2014-03-25 15:40:35 +04:00
|
|
|
rlEnd();
|
2013-11-23 16:30:54 +04:00
|
|
|
}
|
2013-11-19 02:38:44 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Draw polygon lines
|
2014-09-03 18:51:28 +04:00
|
|
|
// NOTE: Array num elements MUST be passed as parameter to function
|
2013-12-19 15:08:06 +04:00
|
|
|
void DrawPolyExLines(Vector2 *points, int numPoints, Color color)
|
2013-11-19 02:38:44 +04:00
|
|
|
{
|
2013-11-23 16:30:54 +04:00
|
|
|
if (numPoints >= 2)
|
|
|
|
{
|
2014-03-25 15:40:35 +04:00
|
|
|
rlBegin(RL_LINES);
|
|
|
|
rlColor4ub(color.r, color.g, color.b, color.a);
|
2014-09-03 18:51:28 +04:00
|
|
|
|
2014-03-25 15:40:35 +04:00
|
|
|
for (int i = 0; i < numPoints - 1; i++)
|
2013-11-23 16:30:54 +04:00
|
|
|
{
|
2014-03-25 15:40:35 +04:00
|
|
|
rlVertex2f(points[i].x, points[i].y);
|
|
|
|
rlVertex2f(points[i+1].x, points[i+1].y);
|
2013-11-23 16:30:54 +04:00
|
|
|
}
|
2014-03-25 15:40:35 +04:00
|
|
|
rlEnd();
|
2013-11-23 16:30:54 +04:00
|
|
|
}
|
2013-11-30 21:12:40 +04:00
|
|
|
}
|
|
|
|
|
2014-03-25 15:40:35 +04:00
|
|
|
//----------------------------------------------------------------------------------
|
|
|
|
// Module Functions Definition - Collision Detection functions
|
|
|
|
//----------------------------------------------------------------------------------
|
|
|
|
|
2013-12-19 15:08:06 +04:00
|
|
|
// Check if point is inside rectangle
|
|
|
|
bool CheckCollisionPointRec(Vector2 point, Rectangle rec)
|
|
|
|
{
|
|
|
|
bool collision = false;
|
2014-09-03 18:51:28 +04:00
|
|
|
|
2013-12-19 15:08:06 +04:00
|
|
|
if ((point.x >= rec.x) && (point.x <= (rec.x + rec.width)) && (point.y >= rec.y) && (point.y <= (rec.y + rec.height))) collision = true;
|
2014-09-03 18:51:28 +04:00
|
|
|
|
2013-12-19 15:08:06 +04:00
|
|
|
return collision;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if point is inside circle
|
|
|
|
bool CheckCollisionPointCircle(Vector2 point, Vector2 center, float radius)
|
|
|
|
{
|
|
|
|
return CheckCollisionCircles(point, 0, center, radius);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if point is inside a triangle defined by three points (p1, p2, p3)
|
|
|
|
bool CheckCollisionPointTriangle(Vector2 point, Vector2 p1, Vector2 p2, Vector2 p3)
|
|
|
|
{
|
|
|
|
bool collision = false;
|
|
|
|
|
|
|
|
float alpha = ((p2.y - p3.y)*(point.x - p3.x) + (p3.x - p2.x)*(point.y - p3.y)) /
|
|
|
|
((p2.y - p3.y)*(p1.x - p3.x) + (p3.x - p2.x)*(p1.y - p3.y));
|
2014-09-03 18:51:28 +04:00
|
|
|
|
2013-12-19 15:08:06 +04:00
|
|
|
float beta = ((p3.y - p1.y)*(point.x - p3.x) + (p1.x - p3.x)*(point.y - p3.y)) /
|
|
|
|
((p2.y - p3.y)*(p1.x - p3.x) + (p3.x - p2.x)*(p1.y - p3.y));
|
2014-09-03 18:51:28 +04:00
|
|
|
|
2013-12-19 15:08:06 +04:00
|
|
|
float gamma = 1.0f - alpha - beta;
|
|
|
|
|
|
|
|
if ((alpha > 0) && (beta > 0) & (gamma > 0)) collision = true;
|
2014-09-03 18:51:28 +04:00
|
|
|
|
2013-12-19 15:08:06 +04:00
|
|
|
return collision;
|
|
|
|
}
|
|
|
|
|
2013-11-30 21:12:40 +04:00
|
|
|
// Check collision between two rectangles
|
|
|
|
bool CheckCollisionRecs(Rectangle rec1, Rectangle rec2)
|
|
|
|
{
|
|
|
|
bool collision = false;
|
2014-09-03 18:51:28 +04:00
|
|
|
|
2013-11-30 21:12:40 +04:00
|
|
|
int dx = abs((rec1.x + rec1.width / 2) - (rec2.x + rec2.width / 2));
|
|
|
|
int dy = abs((rec1.y + rec1.height / 2) - (rec2.y + rec2.height / 2));
|
2014-09-03 18:51:28 +04:00
|
|
|
|
2013-11-30 21:12:40 +04:00
|
|
|
if ((dx <= (rec1.width / 2 + rec2.width / 2)) && ((dy <= (rec1.height / 2 + rec2.height / 2)))) collision = true;
|
2014-09-03 18:51:28 +04:00
|
|
|
|
2013-11-30 21:12:40 +04:00
|
|
|
return collision;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check collision between two circles
|
|
|
|
bool CheckCollisionCircles(Vector2 center1, float radius1, Vector2 center2, float radius2)
|
|
|
|
{
|
|
|
|
bool collision = false;
|
2014-09-03 18:51:28 +04:00
|
|
|
|
2013-11-30 21:12:40 +04:00
|
|
|
float dx = center2.x - center1.x; // X distance between centers
|
|
|
|
float dy = center2.y - center1.y; // Y distance between centers
|
2014-09-03 18:51:28 +04:00
|
|
|
|
2013-11-30 21:12:40 +04:00
|
|
|
float distance = sqrt(dx*dx + dy*dy); // Distance between centers
|
2014-09-03 18:51:28 +04:00
|
|
|
|
2013-11-30 21:12:40 +04:00
|
|
|
if (distance <= (radius1 + radius2)) collision = true;
|
2014-09-03 18:51:28 +04:00
|
|
|
|
2013-11-30 21:12:40 +04:00
|
|
|
return collision;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check collision between circle and rectangle
|
|
|
|
bool CheckCollisionCircleRec(Vector2 center, float radius, Rectangle rec)
|
|
|
|
{
|
|
|
|
bool collision = false;
|
2014-09-03 18:51:28 +04:00
|
|
|
|
2013-11-30 21:12:40 +04:00
|
|
|
float dx = abs((rec.x + rec.width / 2) - center.x);
|
|
|
|
float dy = abs((rec.y + rec.height / 2) - center.y);
|
2014-09-03 18:51:28 +04:00
|
|
|
|
2013-11-30 21:12:40 +04:00
|
|
|
if ((dx <= (rec.width / 2 + radius)) && (dy <= (rec.height / 2 + radius))) collision = true;
|
2014-09-03 18:51:28 +04:00
|
|
|
|
2013-11-30 21:12:40 +04:00
|
|
|
return collision;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get collision rectangle for two rectangles collision
|
|
|
|
Rectangle GetCollisionRec(Rectangle rec1, Rectangle rec2)
|
|
|
|
{
|
|
|
|
Rectangle retRec = { 0, 0, 0, 0 };
|
2014-09-03 18:51:28 +04:00
|
|
|
|
2013-11-30 21:12:40 +04:00
|
|
|
if (CheckCollisionRecs(rec1, rec2))
|
|
|
|
{
|
|
|
|
int dxx = abs(rec1.x - rec2.x);
|
|
|
|
int dyy = abs(rec1.y - rec2.y);
|
2014-09-03 18:51:28 +04:00
|
|
|
|
2013-11-30 21:12:40 +04:00
|
|
|
if (rec1.x <= rec2.x)
|
|
|
|
{
|
|
|
|
if (rec1.y <= rec2.y)
|
2014-09-03 18:51:28 +04:00
|
|
|
{
|
2013-11-30 21:12:40 +04:00
|
|
|
retRec.x = rec2.x;
|
|
|
|
retRec.y = rec2.y;
|
|
|
|
retRec.width = rec1.width - dxx;
|
|
|
|
retRec.height = rec1.height - dyy;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
retRec.x = rec2.x;
|
|
|
|
retRec.y = rec1.y;
|
|
|
|
retRec.width = rec1.width - dxx;
|
|
|
|
retRec.height = rec2.height - dyy;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (rec1.y <= rec2.y)
|
2014-09-03 18:51:28 +04:00
|
|
|
{
|
2013-11-30 21:12:40 +04:00
|
|
|
retRec.x = rec1.x;
|
|
|
|
retRec.y = rec2.y;
|
|
|
|
retRec.width = rec2.width - dxx;
|
|
|
|
retRec.height = rec1.height - dyy;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
retRec.x = rec1.x;
|
|
|
|
retRec.y = rec1.y;
|
|
|
|
retRec.width = rec2.width - dxx;
|
|
|
|
retRec.height = rec2.height - dyy;
|
|
|
|
}
|
|
|
|
}
|
2014-09-03 18:51:28 +04:00
|
|
|
|
2013-11-30 21:12:40 +04:00
|
|
|
if (retRec.width >= rec2.width) retRec.width = rec2.width;
|
|
|
|
if (retRec.height >= rec2.height) retRec.height = rec2.height;
|
|
|
|
}
|
2014-09-03 18:51:28 +04:00
|
|
|
|
2013-11-30 21:12:40 +04:00
|
|
|
return retRec;
|
2014-09-03 18:51:28 +04:00
|
|
|
}
|