Bläddra i källkod

Merge 1e6332e4dc into 5bda46960c

pull/4810/merge
Amy Wilder 3 veckor sedan
committed by GitHub
förälder
incheckning
98782b8805
Ingen känd nyckel hittad för denna signaturen i databasen GPG-nyckel ID: B5690EEEBB952194
8 ändrade filer med 1553 tillägg och 329 borttagningar
  1. +13
    -0
      CHANGELOG
  2. +54
    -4
      examples/shapes/shapes_splines_drawing.c
  3. +299
    -0
      parser/output/raylib_api.json
  4. +143
    -0
      parser/output/raylib_api.lua
  5. +428
    -324
      parser/output/raylib_api.txt
  6. +79
    -1
      parser/output/raylib_api.xml
  7. +18
    -0
      src/raylib.h
  8. +519
    -0
      src/rshapes.c

+ 13
- 0
CHANGELOG Visa fil

@ -179,6 +179,19 @@ WIP: Last update with commit from 02-Nov-2024
[rshapes] REVIEWED: `CheckCollisionCircleRec()` (#3584) by @ubkp
[rshapes] REVIEWED: Add more detail to function comment (#4344) by @Jeffery Myers
[rshapes] REVIEWED: Functions that draw point arrays take them as const (#4051) by @Jeffery Myers
[rshapes] ADDED: `DrawSplineSegmentBezierCubicVar()` (#4809) by @AmityWilder
[rshapes] ADDED: `GetSplineVelocityLinear()` (#4809) by @AmityWilder
[rshapes] ADDED: `GetSplineVelocityBezierQuad()` (#4809) by @AmityWilder
[rshapes] ADDED: `GetSplineVelocityBezierCubic()` (#4809) by @AmityWilder
[rshapes] ADDED: `GetSplineAccelerationBezierQuad()` (#4809) by @AmityWilder
[rshapes] ADDED: `GetSplineAccelerationBezierCubic()` (#4809) by @AmityWilder
[rshapes] ADDED: `GetSplineJoltBezierCubic()` (#4809) by @AmityWilder
[rshapes] ADDED: `GetSplineBoundsBezierLinear()` (#4809) by @AmityWilder
[rshapes] ADDED: `GetSplineBoundsBezierQuad()` (#4809) by @AmityWilder
[rshapes] ADDED: `GetSplineBoundsBezierCubic()` (#4809) by @AmityWilder
[rshapes] ADDED: `GetSplineCurvatureBezierCubic()` (#4809) by @AmityWilder
[rshapes] ADDED: `GetSplineNearestTLinear()` (#4809) by @AmityWilder
[rshapes] ADDED: Example of `DrawSplineSegmentBezierCubicVar` in splines drawing example (#4809) by @AmityWilder
[rtextures] ADDED: `ColorIsEqual()` by @Ray
[rtextures] ADDED: `ColorLerp()`, to mix 2 colors together (#4310) by @SusgUY446
[rtextures] ADDED: `LoadImageAnimFromMemory()` (#3681) by @IoIxD

+ 54
- 4
examples/shapes/shapes_splines_drawing.c Visa fil

@ -34,7 +34,9 @@ typedef enum {
SPLINE_LINEAR = 0, // Linear
SPLINE_BASIS, // B-Spline
SPLINE_CATMULLROM, // Catmull-Rom
SPLINE_BEZIER // Cubic Bezier
SPLINE_BEZIER, // Cubic Bezier
SPLINE_LINEAR_VAR, // Linear, variable thickness
SPLINE_BEZIER_VAR // Cubic Bezier, variable thickness
} SplineType;
//------------------------------------------------------------------------------------
@ -78,7 +80,7 @@ int main(void)
// Spline config variables
float splineThickness = 8.0f;
int splineTypeActive = SPLINE_LINEAR; // 0-Linear, 1-BSpline, 2-CatmullRom, 3-Bezier
int splineTypeActive = SPLINE_LINEAR; // 0-Linear, 1-BSpline, 2-CatmullRom, 3-Bezier, 4-LinearVar, 5-BezierVar
bool splineTypeEditMode = false;
bool splineHelpersActive = true;
@ -120,7 +122,7 @@ int main(void)
}
// Cubic Bezier spline control points logic
if ((splineTypeActive == SPLINE_BEZIER) && (focusedPoint == -1))
if ((p">(splineTypeActive == SPLINE_BEZIER) || (splineTypeActive == SPLINE_BEZIER_VAR)) && (focusedPoint == -1))
{
// Spline control point focus and selection logic
for (int i = 0; i < pointCount - 1; i++)
@ -153,6 +155,8 @@ int main(void)
else if (IsKeyPressed(KEY_TWO)) splineTypeActive = 1;
else if (IsKeyPressed(KEY_THREE)) splineTypeActive = 2;
else if (IsKeyPressed(KEY_FOUR)) splineTypeActive = 3;
else if (IsKeyPressed(KEY_FIVE)) splineTypeActive = 4;
else if (IsKeyPressed(KEY_SIX)) splineTypeActive = 5;
//----------------------------------------------------------------------------------
// Draw
@ -215,7 +219,51 @@ int main(void)
DrawSplineSegmentBezierCubic(pointsInterleaved[i], pointsInterleaved[i + 1], pointsInterleaved[i + 2], pointsInterleaved[i + 3], splineThickness, MAROON);
}
*/
}
else if (splineTypeActive == SPLINE_LINEAR_VAR)
{
float thicks[] = {
0.0f,
splineThickness,
-splineThickness,
splineThickness,
};
// Draw spline: variable-width linear
for (int i = 0; i < pointCount - 1; ++i)
{
DrawSplineSegmentLinearVar(points[i], points[i+1], thicks, 4, RED);
}
}
else if (splineTypeActive == SPLINE_BEZIER_VAR)
{
float thicks[] = {
0.0f,
splineThickness,
splineThickness,
0.0f,
};
// NOTE: Cubic-bezier spline requires the 2 control points of each segnment to be
// provided interleaved with the start and end point of every segment
for (int i = 0; i < (pointCount - 1); i++)
{
pointsInterleaved[3*i] = points[i];
pointsInterleaved[3*i + 1] = control[i].start;
pointsInterleaved[3*i + 2] = control[i].end;
}
pointsInterleaved[3*(pointCount - 1)] = points[pointCount - 1];
// Draw spline: variable-width cubic-bezier (with control points)
for (int i = 0; i < pointCount - 1; ++i)
{
DrawSplineSegmentBezierCubicVar(points[i], control[i].start, control[i].end, points[i+1], thicks, 4, RED);
}
}
if ((splineTypeActive == SPLINE_BEZIER) || (splineTypeActive == SPLINE_BEZIER_VAR))
{
// Draw spline control points
for (int i = 0; i < pointCount - 1; i++)
{
@ -241,7 +289,9 @@ int main(void)
{
DrawCircleLinesV(points[i], (focusedPoint == i)? 12.0f : 8.0f, (focusedPoint == i)? BLUE: DARKBLUE);
if ((splineTypeActive != SPLINE_LINEAR) &&
(splineTypeActive != SPLINE_LINEAR_VAR) &&
(splineTypeActive != SPLINE_BEZIER) &&
(splineTypeActive != SPLINE_BEZIER_VAR) &&
(i < pointCount - 1)) DrawLineV(points[i], points[i + 1], GRAY);
DrawText(TextFormat("[%.0f, %.0f]", points[i].x, points[i].y), (int)points[i].x, (int)points[i].y + 10, 10, BLACK);
@ -260,7 +310,7 @@ int main(void)
GuiUnlock();
GuiLabel((Rectangle){ 12, 10, 140, 24 }, "Spline type:");
if (GuiDropdownBox((Rectangle){ 12, 8 + 24, 140, 28 }, "LINEAR;BSPLINE;CATMULLROM;BEZIER", &splineTypeActive, splineTypeEditMode)) splineTypeEditMode = !splineTypeEditMode;
if (GuiDropdownBox((Rectangle){ 12, 8 + 24, 140, 28 }, "LINEAR;BSPLINE;CATMULLROM;BEZIER;LINEAR VARIABLE;BEZIER VARIABLE", &splineTypeActive, splineTypeEditMode)) splineTypeEditMode = !splineTypeEditMode;
EndDrawing();
//----------------------------------------------------------------------------------

+ 299
- 0
parser/output/raylib_api.json Visa fil

@ -6518,6 +6518,68 @@
}
]
},
{
"name": "DrawSplineSegmentLinearVar",
"description": "Draw spline segment with variable thickness: Linear Bezier, 2 points",
"returnType": "void",
"params": [
{
"type": "Vector2",
"name": "p1"
},
{
"type": "Vector2",
"name": "p2"
},
{
"type": "const float*",
"name": "thicks"
},
{
"type": "int",
"name": "thickCount"
},
{
"type": "Color",
"name": "color"
}
]
},
{
"name": "DrawSplineSegmentBezierCubicVar",
"description": "Draw spline segment with variable thickness: Cubic Bezier, 2 points, 2 control points",
"returnType": "void",
"params": [
{
"type": "Vector2",
"name": "p1"
},
{
"type": "Vector2",
"name": "c2"
},
{
"type": "Vector2",
"name": "c3"
},
{
"type": "Vector2",
"name": "p4"
},
{
"type": "const float*",
"name": "thicks"
},
{
"type": "int",
"name": "thickCount"
},
{
"type": "Color",
"name": "color"
}
]
},
{
"name": "GetSplinePointLinear",
"description": "Get (evaluate) spline point: Linear",
@ -6641,6 +6703,243 @@
}
]
},
{
"name": "GetSplineVelocityLinear",
"description": "Get (evaluate) spline velocity: Linear",
"returnType": "Vector2",
"params": [
{
"type": "Vector2",
"name": "startPos"
},
{
"type": "Vector2",
"name": "endPos"
}
]
},
{
"name": "GetSplineVelocityBezierQuad",
"description": "Get (evaluate) spline velocity: Quadratic Bezier",
"returnType": "Vector2",
"params": [
{
"type": "Vector2",
"name": "startPos"
},
{
"type": "Vector2",
"name": "controlPos"
},
{
"type": "Vector2",
"name": "endPos"
},
{
"type": "float",
"name": "t"
}
]
},
{
"name": "GetSplineVelocityBezierCubic",
"description": "Get (evaluate) spline velocity: Cubic Bezier",
"returnType": "Vector2",
"params": [
{
"type": "Vector2",
"name": "startPos"
},
{
"type": "Vector2",
"name": "startControlPos"
},
{
"type": "Vector2",
"name": "endControlPos"
},
{
"type": "Vector2",
"name": "endPos"
},
{
"type": "float",
"name": "t"
}
]
},
{
"name": "GetSplineAccelerationBezierQuad",
"description": "Get (evaluate) spline acceleration: Quadratic Bezier",
"returnType": "Vector2",
"params": [
{
"type": "Vector2",
"name": "startPos"
},
{
"type": "Vector2",
"name": "controlPos"
},
{
"type": "Vector2",
"name": "endPos"
}
]
},
{
"name": "GetSplineAccelerationBezierCubic",
"description": "Get (evaluate) spline acceleration: Cubic Bezier",
"returnType": "Vector2",
"params": [
{
"type": "Vector2",
"name": "startPos"
},
{
"type": "Vector2",
"name": "startControlPos"
},
{
"type": "Vector2",
"name": "endControlPos"
},
{
"type": "Vector2",
"name": "endPos"
},
{
"type": "float",
"name": "t"
}
]
},
{
"name": "GetSplineJoltBezierCubic",
"description": "Get (evaluate) spline jolt: Cubic Bezier",
"returnType": "Vector2",
"params": [
{
"type": "Vector2",
"name": "startPos"
},
{
"type": "Vector2",
"name": "startControlPos"
},
{
"type": "Vector2",
"name": "endControlPos"
},
{
"type": "Vector2",
"name": "endPos"
}
]
},
{
"name": "GetSplineBoundsBezierLinear",
"description": "Get (evaluate) spline bounds rectangle: Linear",
"returnType": "Rectangle",
"params": [
{
"type": "Vector2",
"name": "startPos"
},
{
"type": "Vector2",
"name": "endPos"
}
]
},
{
"name": "GetSplineBoundsBezierQuad",
"description": "Get (evaluate) spline bounds rectangle: Quadratic Bezier",
"returnType": "Rectangle",
"params": [
{
"type": "Vector2",
"name": "startPos"
},
{
"type": "Vector2",
"name": "controlPos"
},
{
"type": "Vector2",
"name": "endPos"
}
]
},
{
"name": "GetSplineBoundsBezierCubic",
"description": "Get (evaluate) spline bounds rectangle: Cubic Bezier",
"returnType": "Rectangle",
"params": [
{
"type": "Vector2",
"name": "startPos"
},
{
"type": "Vector2",
"name": "startControlPos"
},
{
"type": "Vector2",
"name": "endControlPos"
},
{
"type": "Vector2",
"name": "endPos"
}
]
},
{
"name": "GetSplineCurvatureBezierCubic",
"description": "Get (evaluate) spline curvature: Cubic Bezier",
"returnType": "float",
"params": [
{
"type": "Vector2",
"name": "startPos"
},
{
"type": "Vector2",
"name": "startControlPos"
},
{
"type": "Vector2",
"name": "endControlPos"
},
{
"type": "Vector2",
"name": "endPos"
},
{
"type": "float",
"name": "t"
}
]
},
{
"name": "GetSplineNearestTLinear",
"description": "Get (evaluate) nearest t value to point: Linear",
"returnType": "float",
"params": [
{
"type": "Vector2",
"name": "startPos"
},
{
"type": "Vector2",
"name": "endPos"
},
{
"type": "Vector2",
"name": "point"
}
]
},
{
"name": "CheckCollisionRecs",
"description": "Check collision between two rectangles",

+ 143
- 0
parser/output/raylib_api.lua Visa fil

@ -5210,6 +5210,32 @@ return {
{type = "Color", name = "color"}
}
},
{
name = "DrawSplineSegmentLinearVar",
description = "Draw spline segment with variable thickness: Linear Bezier, 2 points",
returnType = "void",
params = {
{type = "Vector2", name = "p1"},
{type = "Vector2", name = "p2"},
{type = "const float*", name = "thicks"},
{type = "int", name = "thickCount"},
{type = "Color", name = "color"}
}
},
{
name = "DrawSplineSegmentBezierCubicVar",
description = "Draw spline segment with variable thickness: Cubic Bezier, 2 points, 2 control points",
returnType = "void",
params = {
{type = "Vector2", name = "p1"},
{type = "Vector2", name = "c2"},
{type = "Vector2", name = "c3"},
{type = "Vector2", name = "p4"},
{type = "const float*", name = "thicks"},
{type = "int", name = "thickCount"},
{type = "Color", name = "color"}
}
},
{
name = "GetSplinePointLinear",
description = "Get (evaluate) spline point: Linear",
@ -5267,6 +5293,123 @@ return {
{type = "float", name = "t"}
}
},
{
name = "GetSplineVelocityLinear",
description = "Get (evaluate) spline velocity: Linear",
returnType = "Vector2",
params = {
{type = "Vector2", name = "startPos"},
{type = "Vector2", name = "endPos"}
}
},
{
name = "GetSplineVelocityBezierQuad",
description = "Get (evaluate) spline velocity: Quadratic Bezier",
returnType = "Vector2",
params = {
{type = "Vector2", name = "startPos"},
{type = "Vector2", name = "controlPos"},
{type = "Vector2", name = "endPos"},
{type = "float", name = "t"}
}
},
{
name = "GetSplineVelocityBezierCubic",
description = "Get (evaluate) spline velocity: Cubic Bezier",
returnType = "Vector2",
params = {
{type = "Vector2", name = "startPos"},
{type = "Vector2", name = "startControlPos"},
{type = "Vector2", name = "endControlPos"},
{type = "Vector2", name = "endPos"},
{type = "float", name = "t"}
}
},
{
name = "GetSplineAccelerationBezierQuad",
description = "Get (evaluate) spline acceleration: Quadratic Bezier",
returnType = "Vector2",
params = {
{type = "Vector2", name = "startPos"},
{type = "Vector2", name = "controlPos"},
{type = "Vector2", name = "endPos"}
}
},
{
name = "GetSplineAccelerationBezierCubic",
description = "Get (evaluate) spline acceleration: Cubic Bezier",
returnType = "Vector2",
params = {
{type = "Vector2", name = "startPos"},
{type = "Vector2", name = "startControlPos"},
{type = "Vector2", name = "endControlPos"},
{type = "Vector2", name = "endPos"},
{type = "float", name = "t"}
}
},
{
name = "GetSplineJoltBezierCubic",
description = "Get (evaluate) spline jolt: Cubic Bezier",
returnType = "Vector2",
params = {
{type = "Vector2", name = "startPos"},
{type = "Vector2", name = "startControlPos"},
{type = "Vector2", name = "endControlPos"},
{type = "Vector2", name = "endPos"}
}
},
{
name = "GetSplineBoundsBezierLinear",
description = "Get (evaluate) spline bounds rectangle: Linear",
returnType = "Rectangle",
params = {
{type = "Vector2", name = "startPos"},
{type = "Vector2", name = "endPos"}
}
},
{
name = "GetSplineBoundsBezierQuad",
description = "Get (evaluate) spline bounds rectangle: Quadratic Bezier",
returnType = "Rectangle",
params = {
{type = "Vector2", name = "startPos"},
{type = "Vector2", name = "controlPos"},
{type = "Vector2", name = "endPos"}
}
},
{
name = "GetSplineBoundsBezierCubic",
description = "Get (evaluate) spline bounds rectangle: Cubic Bezier",
returnType = "Rectangle",
params = {
{type = "Vector2", name = "startPos"},
{type = "Vector2", name = "startControlPos"},
{type = "Vector2", name = "endControlPos"},
{type = "Vector2", name = "endPos"}
}
},
{
name = "GetSplineCurvatureBezierCubic",
description = "Get (evaluate) spline curvature: Cubic Bezier",
returnType = "float",
params = {
{type = "Vector2", name = "startPos"},
{type = "Vector2", name = "startControlPos"},
{type = "Vector2", name = "endControlPos"},
{type = "Vector2", name = "endPos"},
{type = "float", name = "t"}
}
},
{
name = "GetSplineNearestTLinear",
description = "Get (evaluate) nearest t value to point: Linear",
returnType = "float",
params = {
{type = "Vector2", name = "startPos"},
{type = "Vector2", name = "endPos"},
{type = "Vector2", name = "point"}
}
},
{
name = "CheckCollisionRecs",
description = "Check collision between two rectangles",

+ 428
- 324
parser/output/raylib_api.txt
Filskillnaden har hållits tillbaka eftersom den är för stor
Visa fil


+ 79
- 1
parser/output/raylib_api.xml Visa fil

@ -679,7 +679,7 @@
<Param type="unsigned int" name="frames" desc="" />
</Callback>
</Callbacks>
<Functions count="582">
<Functions count="595">
<Function name="InitWindow" retType="void" paramCount="3" desc="Initialize window and OpenGL context">
<Param type="int" name="width" desc="" />
<Param type="int" name="height" desc="" />
@ -1621,6 +1621,22 @@
<Param type="float" name="thick" desc="" />
<Param type="Color" name="color" desc="" />
</Function>
<Function name="DrawSplineSegmentLinearVar" retType="void" paramCount="5" desc="Draw spline segment with variable thickness: Linear Bezier, 2 points">
<Param type="Vector2" name="p1" desc="" />
<Param type="Vector2" name="p2" desc="" />
<Param type="const float*" name="thicks" desc="" />
<Param type="int" name="thickCount" desc="" />
<Param type="Color" name="color" desc="" />
</Function>
<Function name="DrawSplineSegmentBezierCubicVar" retType="void" paramCount="7" desc="Draw spline segment with variable thickness: Cubic Bezier, 2 points, 2 control points">
<Param type="Vector2" name="p1" desc="" />
<Param type="Vector2" name="c2" desc="" />
<Param type="Vector2" name="c3" desc="" />
<Param type="Vector2" name="p4" desc="" />
<Param type="const float*" name="thicks" desc="" />
<Param type="int" name="thickCount" desc="" />
<Param type="Color" name="color" desc="" />
</Function>
<Function name="GetSplinePointLinear" retType="Vector2" paramCount="3" desc="Get (evaluate) spline point: Linear">
<Param type="Vector2" name="startPos" desc="" />
<Param type="Vector2" name="endPos" desc="" />
@ -1653,6 +1669,68 @@
<Param type="Vector2" name="p4" desc="" />
<Param type="float" name="t" desc="" />
</Function>
<Function name="GetSplineVelocityLinear" retType="Vector2" paramCount="2" desc="Get (evaluate) spline velocity: Linear">
<Param type="Vector2" name="startPos" desc="" />
<Param type="Vector2" name="endPos" desc="" />
</Function>
<Function name="GetSplineVelocityBezierQuad" retType="Vector2" paramCount="4" desc="Get (evaluate) spline velocity: Quadratic Bezier">
<Param type="Vector2" name="startPos" desc="" />
<Param type="Vector2" name="controlPos" desc="" />
<Param type="Vector2" name="endPos" desc="" />
<Param type="float" name="t" desc="" />
</Function>
<Function name="GetSplineVelocityBezierCubic" retType="Vector2" paramCount="5" desc="Get (evaluate) spline velocity: Cubic Bezier">
<Param type="Vector2" name="startPos" desc="" />
<Param type="Vector2" name="startControlPos" desc="" />
<Param type="Vector2" name="endControlPos" desc="" />
<Param type="Vector2" name="endPos" desc="" />
<Param type="float" name="t" desc="" />
</Function>
<Function name="GetSplineAccelerationBezierQuad" retType="Vector2" paramCount="3" desc="Get (evaluate) spline acceleration: Quadratic Bezier">
<Param type="Vector2" name="startPos" desc="" />
<Param type="Vector2" name="controlPos" desc="" />
<Param type="Vector2" name="endPos" desc="" />
</Function>
<Function name="GetSplineAccelerationBezierCubic" retType="Vector2" paramCount="5" desc="Get (evaluate) spline acceleration: Cubic Bezier">
<Param type="Vector2" name="startPos" desc="" />
<Param type="Vector2" name="startControlPos" desc="" />
<Param type="Vector2" name="endControlPos" desc="" />
<Param type="Vector2" name="endPos" desc="" />
<Param type="float" name="t" desc="" />
</Function>
<Function name="GetSplineJoltBezierCubic" retType="Vector2" paramCount="4" desc="Get (evaluate) spline jolt: Cubic Bezier">
<Param type="Vector2" name="startPos" desc="" />
<Param type="Vector2" name="startControlPos" desc="" />
<Param type="Vector2" name="endControlPos" desc="" />
<Param type="Vector2" name="endPos" desc="" />
</Function>
<Function name="GetSplineBoundsBezierLinear" retType="Rectangle" paramCount="2" desc="Get (evaluate) spline bounds rectangle: Linear">
<Param type="Vector2" name="startPos" desc="" />
<Param type="Vector2" name="endPos" desc="" />
</Function>
<Function name="GetSplineBoundsBezierQuad" retType="Rectangle" paramCount="3" desc="Get (evaluate) spline bounds rectangle: Quadratic Bezier">
<Param type="Vector2" name="startPos" desc="" />
<Param type="Vector2" name="controlPos" desc="" />
<Param type="Vector2" name="endPos" desc="" />
</Function>
<Function name="GetSplineBoundsBezierCubic" retType="Rectangle" paramCount="4" desc="Get (evaluate) spline bounds rectangle: Cubic Bezier">
<Param type="Vector2" name="startPos" desc="" />
<Param type="Vector2" name="startControlPos" desc="" />
<Param type="Vector2" name="endControlPos" desc="" />
<Param type="Vector2" name="endPos" desc="" />
</Function>
<Function name="GetSplineCurvatureBezierCubic" retType="float" paramCount="5" desc="Get (evaluate) spline curvature: Cubic Bezier">
<Param type="Vector2" name="startPos" desc="" />
<Param type="Vector2" name="startControlPos" desc="" />
<Param type="Vector2" name="endControlPos" desc="" />
<Param type="Vector2" name="endPos" desc="" />
<Param type="float" name="t" desc="" />
</Function>
<Function name="GetSplineNearestTLinear" retType="float" paramCount="3" desc="Get (evaluate) nearest t value to point: Linear">
<Param type="Vector2" name="startPos" desc="" />
<Param type="Vector2" name="endPos" desc="" />
<Param type="Vector2" name="point" desc="" />
</Function>
<Function name="CheckCollisionRecs" retType="bool" paramCount="2" desc="Check collision between two rectangles">
<Param type="Rectangle" name="rec1" desc="" />
<Param type="Rectangle" name="rec2" desc="" />

+ 18
- 0
src/raylib.h Visa fil

@ -1298,6 +1298,8 @@ RLAPI void DrawSplineSegmentBasis(Vector2 p1, Vector2 p2, Vector2 p3, Vector2 p4
RLAPI void DrawSplineSegmentCatmullRom(Vector2 p1, Vector2 p2, Vector2 p3, Vector2 p4, float thick, Color color); // Draw spline segment: Catmull-Rom, 4 points
RLAPI void DrawSplineSegmentBezierQuadratic(Vector2 p1, Vector2 c2, Vector2 p3, float thick, Color color); // Draw spline segment: Quadratic Bezier, 2 points, 1 control point
RLAPI void DrawSplineSegmentBezierCubic(Vector2 p1, Vector2 c2, Vector2 c3, Vector2 p4, float thick, Color color); // Draw spline segment: Cubic Bezier, 2 points, 2 control points
RLAPI void DrawSplineSegmentLinearVar(Vector2 p1, Vector2 p2, const float* thicks, int thickCount, Color color); // Draw spline segment with variable thickness: Linear Bezier, 2 points
RLAPI void DrawSplineSegmentBezierCubicVar(Vector2 p1, Vector2 c2, Vector2 c3, Vector2 p4, const float* thicks, int thickCount, Color color); // Draw spline segment with variable thickness: Cubic Bezier, 2 points, 2 control points
// Spline segment point evaluation functions, for a given t [0.0f .. 1.0f]
RLAPI Vector2 GetSplinePointLinear(Vector2 startPos, Vector2 endPos, float t); // Get (evaluate) spline point: Linear
@ -1306,6 +1308,22 @@ RLAPI Vector2 GetSplinePointCatmullRom(Vector2 p1, Vector2 p2, Vector2 p3, Vecto
RLAPI Vector2 GetSplinePointBezierQuad(Vector2 p1, Vector2 c2, Vector2 p3, float t); // Get (evaluate) spline point: Quadratic Bezier
RLAPI Vector2 GetSplinePointBezierCubic(Vector2 p1, Vector2 c2, Vector2 c3, Vector2 p4, float t); // Get (evaluate) spline point: Cubic Bezier
// Spline segment slope evaluation functions, for a given t [0.0f .. 1.0f]
RLAPI Vector2 GetSplineVelocityLinear(Vector2 startPos, Vector2 endPos); // Get (evaluate) spline velocity: Linear
RLAPI Vector2 GetSplineVelocityBezierQuad(Vector2 startPos, Vector2 controlPos, Vector2 endPos, float t); // Get (evaluate) spline velocity: Quadratic Bezier
RLAPI Vector2 GetSplineVelocityBezierCubic(Vector2 startPos, Vector2 startControlPos, Vector2 endControlPos, Vector2 endPos, float t); // Get (evaluate) spline velocity: Cubic Bezier
RLAPI Vector2 GetSplineAccelerationBezierQuad(Vector2 startPos, Vector2 controlPos, Vector2 endPos); // Get (evaluate) spline acceleration: Quadratic Bezier
RLAPI Vector2 GetSplineAccelerationBezierCubic(Vector2 startPos, Vector2 startControlPos, Vector2 endControlPos, Vector2 endPos, float t); // Get (evaluate) spline acceleration: Cubic Bezier
RLAPI Vector2 GetSplineJoltBezierCubic(Vector2 startPos, Vector2 startControlPos, Vector2 endControlPos, Vector2 endPos); // Get (evaluate) spline jolt: Cubic Bezier
// Spline segment bounds evaluation functions
RLAPI Rectangle GetSplineBoundsBezierLinear(Vector2 startPos, Vector2 endPos); // Get (evaluate) spline bounds rectangle: Linear
RLAPI Rectangle GetSplineBoundsBezierQuad(Vector2 startPos, Vector2 controlPos, Vector2 endPos); // Get (evaluate) spline bounds rectangle: Quadratic Bezier
RLAPI Rectangle GetSplineBoundsBezierCubic(Vector2 startPos, Vector2 startControlPos, Vector2 endControlPos, Vector2 endPos); // Get (evaluate) spline bounds rectangle: Cubic Bezier
RLAPI float GetSplineCurvatureBezierCubic(Vector2 startPos, Vector2 startControlPos, Vector2 endControlPos, Vector2 endPos, float t); // Get (evaluate) spline curvature: Cubic Bezier
RLAPI float GetSplineNearestTLinear(Vector2 startPos, Vector2 endPos, Vector2 point); // Get (evaluate) nearest t value to point: Linear
// Basic shapes collision detection functions
RLAPI bool CheckCollisionRecs(Rectangle rec1, Rectangle rec2); // Check collision between two rectangles
RLAPI bool CheckCollisionCircles(Vector2 center1, float radius1, Vector2 center2, float radius2); // Check collision between two circles

+ 519
- 0
src/rshapes.c Visa fil

@ -2107,6 +2107,177 @@ void DrawSplineSegmentBezierCubic(Vector2 p1, Vector2 c2, Vector2 c3, Vector2 p4
DrawTriangleStrip(points, 2*SPLINE_SEGMENT_DIVISIONS + 2, color);
}
// Draw spline segment with variable thickness: Linear, 2 points
void DrawSplineSegmentLinearVar(Vector2 p1, Vector2 p2, const float* thicks, int thickCount, Color color)
{
if (thickCount >= 4)
{
const float step = 1.0f/SPLINE_SEGMENT_DIVISIONS;
Vector2 previous[2] = { 0 };
Vector2 current[2] = { 0 };
float t = 0.0f;
// Linear velocity does not change across the curve
Vector2 tangent = { 0 };
tangent.x = p2.x - p1.x;
tangent.y = p2.y - p1.y;
float speedSqr = tangent.x*tangent.x + tangent.y*tangent.y;
if (speedSqr > 0)
{
float speedInv = 1.0f/sqrtf(speedSqr);
tangent.x *= speedInv;
tangent.y *= speedInv;
rlBegin(RL_TRIANGLES);
rlColor4ub(color.r, color.g, color.b, color.a);
for (int i = 0; i <= SPLINE_SEGMENT_DIVISIONS; i++)
{
t = step*(float)i;
Vector2 point = { 0 };
point.x = p1.x*(1.0f - t) + p2.x*t;
point.y = p1.y*(1.0f - t) + p2.y*t;
float thick;
{
float tMajor = t*(float)thickCount/3.0f;
int tIndex = (int)tMajor;
float tMinor = tMajor - (float)tIndex;
tIndex *= 3;
if (tIndex >= thickCount - 3)
{
tIndex = thickCount - 4;
tMinor = 1.0f;
}
float a = powf(1.0f - t, 3);
float b = 3.0f*powf(1.0f - t, 2)*t;
float c = 3.0f*(1.0f - t)*t*t;
float d = t*t*t;
thick = a*thicks[tIndex] + b*thicks[tIndex + 1] + c*thicks[tIndex + 2] + d*thicks[tIndex + 3];
}
current[0].x = point.x + thick*tangent.y;
current[0].y = point.y - thick*tangent.x;
current[1].x = point.x - thick*tangent.y;
current[1].y = point.y + thick*tangent.x;
if (i > 0)
{
rlVertex2f(current[0].x, current[0].y);
rlVertex2f(previous[0].x, previous[0].y);
rlVertex2f(previous[1].x, previous[1].y);
rlVertex2f(current[1].x, current[1].y);
rlVertex2f(current[0].x, current[0].y);
rlVertex2f(previous[1].x, previous[1].y);
}
previous[0] = current[0];
previous[1] = current[1];
}
rlEnd();
}
}
}
// Draw spline segment with variable thickness: Cubic Bezier, 2 points, 2 control points
void DrawSplineSegmentBezierCubicVar(Vector2 p1, Vector2 c2, Vector2 c3, Vector2 p4, const float* thicks, int thickCount, Color color)
{
if (thickCount >= 4)
{
rlBegin(RL_TRIANGLES);
rlColor4ub(color.r, color.g, color.b, color.a);
const float step = 1.0f/SPLINE_SEGMENT_DIVISIONS;
Vector2 previous[2] = { 0 };
Vector2 current[2] = { 0 };
float t = 0.0f;
for (int i = 0; i <= SPLINE_SEGMENT_DIVISIONS; i++)
{
t = step*(float)i;
Vector2 tangent = { 0 };
{
float a = 3.0f*powf(1.0f - t, 2);
float b = 6.0f*(1.0f - t)*t;
float c = 3.0f*t*t;
tangent.x = a*(c2.x - p1.x) + b*(c3.x - c2.x) + c*(p4.x - c3.x);
tangent.y = a*(c2.y - p1.y) + b*(c3.y - c2.y) + c*(p4.y - c3.y);
}
float speedSqr = (tangent.x*tangent.x + tangent.y*tangent.y);
if (speedSqr == 0) continue;
float speedInv = 1.0f/sqrtf(speedSqr);
tangent.x *= speedInv;
tangent.y *= speedInv;
Vector2 point = { 0 };
{
float a = powf(1.0f - t, 3);
float b = 3.0f*powf(1.0f - t, 2)*t;
float c = 3.0f*(1.0f - t)*powf(t, 2);
float d = powf(t, 3);
point.y = a*p1.y + b*c2.y + c*c3.y + d*p4.y;
point.x = a*p1.x + b*c2.x + c*c3.x + d*p4.x;
}
float thick;
{
float tMajor = t*(float)thickCount/3.0f;
int tIndex = (int)tMajor;
float tMinor = tMajor - (float)tIndex;
tIndex *= 3;
if (tIndex >= thickCount - 3)
{
tIndex = thickCount - 4;
tMinor = 1.0f;
}
float a = powf(1.0f - t, 3);
float b = 3.0f*powf(1.0f - t, 2)*t;
float c = 3.0f*(1.0f - t)*t*t;
float d = t*t*t;
thick = a*thicks[tIndex] + b*thicks[tIndex + 1] + c*thicks[tIndex + 2] + d*thicks[tIndex + 3];
}
current[0].x = point.x + thick*tangent.y;
current[0].y = point.y - thick*tangent.x;
current[1].x = point.x - thick*tangent.y;
current[1].y = point.y + thick*tangent.x;
if (i > 0) // TODO: `previous` may be unassigned in i=1 if i=0 had a `speedSqr` of 0
{
rlVertex2f(current[0].x, current[0].y);
rlVertex2f(previous[0].x, previous[0].y);
rlVertex2f(previous[1].x, previous[1].y);
rlVertex2f(current[1].x, current[1].y);
rlVertex2f(current[0].x, current[0].y);
rlVertex2f(previous[1].x, previous[1].y);
}
previous[0] = current[0];
previous[1] = current[1];
}
rlEnd();
}
}
// Get spline point for a given t [0.0f .. 1.0f], Linear
Vector2 GetSplinePointLinear(Vector2 startPos, Vector2 endPos, float t)
{
@ -2189,6 +2360,354 @@ Vector2 GetSplinePointBezierCubic(Vector2 startPos, Vector2 startControlPos, Vec
return point;
}
// Get spline direction and speed, Linear Bezier
//
// Normalize to get the "forward" direction of the curve
Vector2 GetSplineVelocityLinear(Vector2 startPos, Vector2 endPos)
{
Vector2 velocity = { 0 };
velocity.x = endPos.x - startPos.x;
velocity.y = endPos.y - startPos.y;
return velocity;
}
// Get spline direction and speed for a given t [0.0f .. 1.0f], Quadratic Bezier
//
// Normalize to get the "forward" direction of the curve at t
Vector2 GetSplineVelocityBezierQuad(Vector2 startPos, Vector2 controlPos, Vector2 endPos, float t)
{
Vector2 velocity = { 0 };
float a = 2.0f*(1.0f - t);
float b = 2.0f*t;
velocity.x = a*(controlPos.x - startPos.x) + b*(endPos.x - controlPos.x);
velocity.y = a*(controlPos.y - startPos.y) + b*(endPos.y - controlPos.y);
return velocity;
}
// Get spline direction and speed for a given t [0.0f .. 1.0f], Cubic Bezier
//
// Normalize to get the "forward" direction of the curve at t
Vector2 GetSplineVelocityBezierCubic(Vector2 startPos, Vector2 startControlPos, Vector2 endControlPos, Vector2 endPos, float t)
{
Vector2 velocity = { 0 };
float a = 3.0f*powf(1.0f - t, 2);
float b = 6.0f*(1.0f - t)*t;
float c = 3.0f*t*t;
velocity.x = a*(startControlPos.x - startPos.x) + b*(endControlPos.x - startControlPos.x) + c*(endPos.x - endControlPos.x);
velocity.y = a*(startControlPos.y - startPos.y) + b*(endControlPos.y - startControlPos.y) + c*(endPos.y - endControlPos.y);
return velocity;
}
// Get spline rate of change, Quadratic Bezier
Vector2 GetSplineAccelerationBezierQuad(Vector2 startPos, Vector2 controlPos, Vector2 endPos)
{
Vector2 acceleration = { 0 };
acceleration.x = 2.0f*(endPos.x - 2.0f*controlPos.x - startPos.x);
acceleration.y = 2.0f*(endPos.y - 2.0f*controlPos.y - startPos.y);
return acceleration;
}
// Get spline rate of change for a given t [0.0f .. 1.0f], Cubic Bezier
Vector2 GetSplineAccelerationBezierCubic(Vector2 startPos, Vector2 startControlPos, Vector2 endControlPos, Vector2 endPos, float t)
{
Vector2 acceleration = { 0 };
float a = 2.0f*(1.0f - t);
float b = 2.0f*t;
acceleration.x = a*(endControlPos.x - 2.0f*startControlPos.x + startPos.x) + b*(endPos.x - 2.0f*endControlPos.x + startControlPos.x);
acceleration.y = a*(endControlPos.y - 2.0f*startControlPos.y + startPos.y) + b*(endPos.y - 2.0f*endControlPos.y + startControlPos.y);
return acceleration;
}
// Get spline rate of acceleration, Cubic Bezier
Vector2 GetSplineJoltBezierCubic(Vector2 startPos, Vector2 startControlPos, Vector2 endControlPos, Vector2 endPos)
{
Vector2 jolt = { 0 };
jolt.x = 6.0f*(endPos.x + 3.0f*(startControlPos.x - endControlPos.x) - startPos.x);
jolt.y = 6.0f*(endPos.y + 3.0f*(startControlPos.y - endControlPos.y) - startPos.y);
return jolt;
}
// Compute spline curve bounding rectangle, Linear Bezier
Rectangle GetSplineBoundsBezierLinear(Vector2 startPos, Vector2 endPos)
{
float xMin;
float yMin;
float xMax;
float yMax;
if (startPos.x < endPos.x)
{
xMin = startPos.x;
xMax = endPos.x;
}
else
{
xMin = endPos.x;
xMax = startPos.x;
}
if (startPos.y < endPos.y)
{
yMin = startPos.y;
yMax = endPos.y;
}
else
{
yMin = endPos.y;
yMax = startPos.y;
}
// straight line will never escape bounds
Rectangle bounds = { xMin, yMin, xMax - xMin, yMax - yMin };
return bounds;
}
// Compute spline curve bounding rectangle, Quadratic Bezier
Rectangle GetSplineBoundsBezierQuad(Vector2 startPos, Vector2 controlPos, Vector2 endPos)
{
float xMin;
float yMin;
float xMax;
float yMax;
if (startPos.x < endPos.x)
{
xMin = startPos.x;
xMax = endPos.x;
}
else
{
xMin = endPos.x;
xMax = startPos.x;
}
if (startPos.y < endPos.y)
{
yMin = startPos.y;
yMax = endPos.y;
}
else
{
yMin = endPos.y;
yMax = startPos.y;
}
// curve velocity, rearranged to solve for t
// at^2 + bt + c
// local min/max occur where derivative (velocity) is zero,
// so we use quadratic formula to find values of t at zeros
float a = startPos.x - 2.0f*controlPos.x + endPos.x;
float b = 2.0f*(controlPos.x - startPos.x);
float c = startPos.x;
bool dejavu = false;
do
{
if (a != 0)
{
float bSqrMinus4ac = b*b - 4.0f*a*c;
float t[2] = { 0 };
int tCount = 0;
if (bSqrMinus4ac > 0)
{
float denominator = 1.0f/(2.0f*a);
float term0 = -b*denominator;
float term1 = sqrtf(bSqrMinus4ac)*denominator;
t[0] = term0 + term1;
if (0.0f < t[0] && t[0] < 1.0f) ++tCount;
t[tCount] = term0 - term1;
if (0.0f < t[tCount] && t[tCount] < 1.0f) ++tCount;
}
else if (bSqrMinus4ac == 0)
{
t[0] = -b/(2.0f*a);
if (0.0f < t[0] && t[0] < 1.0f) ++tCount;
}
// ignore imaginary solution
for (int i = 0; i < tCount; ++i)
{
Vector2 point = GetSplinePointBezierQuad(startPos, controlPos, endPos, t[i]);
if (point.x < xMin) xMin = point.x;
if (point.x > xMax) xMax = point.x;
if (point.y < yMin) yMin = point.y;
if (point.y > yMax) yMax = point.y;
}
}
// straight line will never escape bounds
if (dejavu) break;
dejavu = true;
a = startPos.y - 2.0f*controlPos.y + endPos.y;
b = 2.0f*(controlPos.y - startPos.y);
c = startPos.y;
}
while (true);
Rectangle bounds = { xMin, yMin, xMax - xMin, yMax - yMin };
return bounds;
}
// Compute spline curve bounding rectangle, Cubic Bezier
Rectangle GetSplineBoundsBezierCubic(Vector2 startPos, Vector2 startControlPos, Vector2 endControlPos, Vector2 endPos)
{
float xMin;
float yMin;
float xMax;
float yMax;
if (startPos.x < endPos.x)
{
xMin = startPos.x;
xMax = endPos.x;
}
else
{
xMin = endPos.x;
xMax = startPos.x;
}
if (startPos.y < endPos.y)
{
yMin = startPos.y;
yMax = endPos.y;
}
else
{
yMin = endPos.y;
yMax = startPos.y;
}
// curve velocity, rearranged to solve for t
// at^2 + bt + c
// local min/max occur where derivative (velocity) is zero,
// so we use quadratic formula to find values of t at zeros
float a = -3.0f*startPos.x + 9.0f*startControlPos.x - 9.0f*endControlPos.x + 3.0f*endPos.x;
float b = 6.0f*startPos.x - 12.0f*startControlPos.x + 6.0f*endControlPos.x;
float c = -3.0f*startPos.x + 3.0f*startControlPos.x;
bool dejavu = false;
do
{
if (a != 0)
{
float bSqrMinus4ac = b*b - 4.0f*a*c;
float t[2] = { 0 };
int tCount = 0;
if (bSqrMinus4ac > 0)
{
float denominator = 1.0f/(2.0f*a);
float term0 = -b*denominator;
float term1 = sqrtf(bSqrMinus4ac)*denominator;
t[0] = term0 + term1;
if (0.0f < t[0] && t[0] < 1.0f) ++tCount;
t[tCount] = term0 - term1;
if (0.0f < t[tCount] && t[tCount] < 1.0f) ++tCount;
}
else if (bSqrMinus4ac == 0)
{
t[0] = -b/(2.0f*a);
if (0.0f < t[0] && t[0] < 1.0f) ++tCount;
}
// ignore imaginary solution
for (int i = 0; i < tCount; ++i)
{
Vector2 point = GetSplinePointBezierCubic(startPos, startControlPos, endControlPos, endPos, t[i]);
if (point.x < xMin) xMin = point.x;
if (point.x > xMax) xMax = point.x;
if (point.y < yMin) yMin = point.y;
if (point.y > yMax) yMax = point.y;
}
}
// straight line will never escape bounds
if (dejavu) break;
dejavu = true;
a = -3.0f*startPos.x + 9.0f*startControlPos.x - 9.0f*endControlPos.x + 3.0f*endPos.x;
b = 6.0f*startPos.x - 12.0f*startControlPos.x + 6.0f*endControlPos.x;
c = -3.0f*startPos.x + 3.0f*startControlPos.x;
}
while (true);
Rectangle bounds = { xMin, yMin, xMax - xMin, yMax - yMin };
return bounds;
}
// Reciprocal radius (or "radians per meter") for a given t [0.0f .. 1.0f], Cubic Bezier
float GetSplineCurvatureBezierCubic(Vector2 startPos, Vector2 startControlPos, Vector2 endControlPos, Vector2 endPos, float t)
{
float curvature = 0.0f;
float a = 3.0f*powf(1.0f - t, 2);
float b = 6.0f*(1.0f - t)*t;
float c = 3.0f*t*t;
Vector2 velocity = { 0 };
velocity.x = a*(startControlPos.x - startPos.x) + b*(endControlPos.x - startControlPos.x) + c*(endPos.x - endControlPos.x);
velocity.y = a*(startControlPos.y - startPos.y) + b*(endControlPos.y - startControlPos.y) + c*(endPos.y - endControlPos.y);
a = 2.0f*(1.0f - t);
b = 2.0f*t;
Vector2 acceleration = { 0 };
acceleration.x = a*(endControlPos.x - 2.0f*startControlPos.x + startPos.x) + b*(endPos.x - 2.0f*endControlPos.x + startControlPos.x);
acceleration.y = a*(endControlPos.y - 2.0f*startControlPos.y + startPos.y) + b*(endPos.y - 2.0f*endControlPos.y + startControlPos.y);
curvature = (velocity.x*acceleration.y - velocity.y*acceleration.x)/powf(sqrtf(velocity.x*velocity.x + velocity.y*velocity.y), 3);
return curvature;
}
// Get value of t (unbounded) for the point on the line closest to a given position
float GetSplineNearestTLinear(Vector2 startPos, Vector2 endPos, Vector2 point)
{
Vector2 edge = { 0 };
edge.x = endPos.x - startPos.x;
edge.y = endPos.y - startPos.y;
Vector2 diff = { 0 };
diff.x = point.x - startPos.x;
diff.y = point.y - startPos.y;
float t = (edge.x*diff.x + edge.y*diff.y)/(edge.x*edge.x + edge.y*edge.y);
return t;
}
//----------------------------------------------------------------------------------
// Module Functions Definition - Collision Detection functions
//----------------------------------------------------------------------------------

Laddar…
Avbryt
Spara