diff --git a/Bindings/Easings.cs b/Bindings/Easings.cs
index 37c6b5a..1a55575 100644
--- a/Bindings/Easings.cs
+++ b/Bindings/Easings.cs
@@ -1,10 +1,10 @@
-/* Raylib-cs
- * Easings.cs - Useful easing functions for values animation
- * Copyright 2019 Chris Dill
- *
- * Release under zLib License.
- * See LICENSE for details.
- */
+/* Easings.cs
+*
+* Copyright 2019 Chris Dill
+*
+* Release under zLib License.
+* See LICENSE for details.
+*/
using System;
diff --git a/Bindings/Extensions.cs b/Bindings/Extensions.cs
index ada9a12..f0d312b 100644
--- a/Bindings/Extensions.cs
+++ b/Bindings/Extensions.cs
@@ -1,21 +1,58 @@
-/* Raylib-cs
- * Extensions.cs - Higher level features over bindings. This file is not automatically generated.
- * Copyright 2019 Chris Dill
- *
- * Release under zLib License.
- * See LICENSE for details.
- */
+/* Extensions.cs
+*
+* Copyright 2019 Chris Dill
+*
+* Release under zLib License.
+* See LICENSE for details.
+*/
using System;
using System.Text;
-using System.Numerics;
+using System.Runtime.InteropServices;
namespace Raylib
{
- // Extensions to the raylib bindings.
- // Seperate for easier code generation.
+ // Extra functions over exsiting bindings
+ // Feel free to modifiy this to fit your project.
public partial class Raylib
{
+ public static PhysicsBodyData CreatePhysicsBodyCircleEx(Vector2 pos, float radius, float density)
+ {
+ var body = CreatePhysicsBodyCircle(pos, radius, density);
+ var data = (PhysicsBodyData)Marshal.PtrToStructure(body, typeof(PhysicsBodyData));
+ return data;
+ }
+
+ public static PhysicsBodyData CreatePhysicsBodyRectangleEx(Vector2 pos, float width, float height, float density)
+ {
+ var body = CreatePhysicsBodyRectangle(pos, width, height, density);
+ var data = (PhysicsBodyData)Marshal.PtrToStructure(body, typeof(PhysicsBodyData));
+ return data;
+ }
+
+ public static PhysicsBodyData GetPhysicsBodyEx(int index)
+ {
+ var body = GetPhysicsBodyImport(index);
+ var data = (PhysicsBodyData)Marshal.PtrToStructure(body, typeof(PhysicsBodyData));
+ return data;
+ }
+
+ public static PhysicsBodyData CreatePhysicsBodyPolygonEx(Vector2 pos, float radius, int sides, float density)
+ {
+ var body = CreatePhysicsBodyPolygon(pos, radius, sides, density);
+ var data = (PhysicsBodyData)Marshal.PtrToStructure(body, typeof(PhysicsBodyData));
+ return data;
+ }
+
+ public static void DrawRenderTexture(RenderTexture2D target)
+ {
+ int screenWidth = GetScreenWidth();
+ int screenHeight = GetScreenHeight();
+
+ // NOTE: Render texture must be y-flipped due to default OpenGL coordinates (left-bottom)
+ DrawTexturePro(target.texture, new Rectangle(0, 0, target.texture.width, -target.texture.height), new Rectangle(0, 0, screenWidth, screenHeight), new Vector2(0, 0), 0, Color.WHITE);
+ }
+
// extension providing SubText
public static string SubText(this string input, int position, int length)
{
@@ -24,14 +61,14 @@ namespace Raylib
// Here (in the public method) we hide some low level details
// memory allocation, string manipulations etc.
- public static bool CoreGuiTextBox(Rectangle bounds, ref string text, int textSize, bool freeEdit)
+ public static bool CoreGuiTextBox(Rectangle bounds, ref string text, int textSize, bool freeEdit)
{
if (null == text)
{
return false; // or throw exception; or assign "" to text
}
- StringBuilder sb = new StringBuilder(text);
+ StringBuilder sb = new StringBuilder(text);
// If we allow editing we should allocate enough size (Length) within StringBuilder
if (textSize > sb.Length)
@@ -39,7 +76,7 @@ namespace Raylib
sb.Length = textSize;
}
- bool result = GuiTextBox(bounds, sb, sb.Length, freeEdit);
+ bool result = GuiTextBox(bounds, sb, sb.Length, freeEdit);
// Back to string (StringBuilder can have been edited)
// You may want to add some logic here; e.g. trim trailing '\0'
@@ -56,7 +93,7 @@ namespace Raylib
return false; // or throw exception; or assign "" to text
}
- StringBuilder sb = new StringBuilder(text);
+ StringBuilder sb = new StringBuilder(text);
// If we allow editing we should allocate enough size (Length) within StringBuilder
if (textSize > sb.Length)
@@ -64,52 +101,13 @@ namespace Raylib
sb.Length = textSize;
}
- bool result = GuiTextBoxMulti(bounds, sb, sb.Length, freeEdit);
+ bool result = GuiTextBoxMulti(bounds, sb, sb.Length, freeEdit);
// Back to string (StringBuilder can have been edited)
// You may want to add some logic here; e.g. trim trailing '\0'
text = sb.ToString();
return result;
- }
- }
-
- // Small utility for tweening values
- public struct Tween
- {
- public delegate float Callback(float t, float b, float c, float d);
- public Callback easer;
- public float start;
- public float end;
- public float currentTime;
- public float duration;
- public bool completed;
-
- public Tween(Callback easer, float start, float end, float duration)
- {
- this.easer = easer;
- this.start = start;
- this.end = end;
- this.currentTime = 0f;
- this.duration = duration;
- this.completed = false;
- }
-
- public void Reset()
- {
- currentTime = 0f;
- completed = false;
- }
-
- public float Apply(float dt)
- {
- currentTime += dt;
- if (currentTime > duration)
- {
- currentTime = duration;
- completed = true;
- }
- return easer(currentTime, start, end - start, duration);
}
}
@@ -160,29 +158,9 @@ namespace Raylib
this.a = Convert.ToByte(a);
}
- internal string DebugDisplayString
+ public override string ToString()
{
- get
- {
- return string.Concat(
- r.ToString(), " ",
- g.ToString(), " ",
- b.ToString(), " ",
- a.ToString()
- );
- }
- }
-
- // Performs linear interpolation of .
- public static Color Lerp(Color value1, Color value2, float amount)
- {
- amount = Raylib.Clamp(amount, 0.0f, 1.0f);
- return new Color(
- (int)Raylib.Lerp(value1.r, value2.r, amount),
- (int)Raylib.Lerp(value1.g, value2.g, amount),
- (int)Raylib.Lerp(value1.b, value2.b, amount),
- (int)Raylib.Lerp(value1.a, value2.a, amount)
- );
+ return string.Concat(r.ToString(), " ", g.ToString(), " ", b.ToString(), " ", a.ToString());
}
}
@@ -197,15 +175,6 @@ namespace Raylib
}
}
- public partial struct BoundingBox
- {
- public BoundingBox(Vector3 min, Vector3 max)
- {
- this.min = min;
- this.max = max;
- }
- }
-
public partial struct Camera3D
{
public Camera3D(Vector3 position, Vector3 target, Vector3 up, float fovy = 90, CameraType type = CameraType.CAMERA_PERSPECTIVE)
@@ -227,17 +196,6 @@ namespace Raylib
}
}
- public partial struct RayHitInfo
- {
- public RayHitInfo(bool hit, float distance, Vector3 position, Vector3 normal)
- {
- this.hit = hit;
- this.distance = distance;
- this.position = position;
- this.normal = normal;
- }
- }
-
// Utlity for accessing math functions through struct
public partial struct Vector2
{
@@ -253,11 +211,25 @@ namespace Raylib
this.y = value;
}
- public override bool Equals(object obj) => (obj is Vector2) && Equals((Vector2)obj);
- public override int GetHashCode() => x.GetHashCode() + y.GetHashCode();
+ public override bool Equals(object obj)
+ {
+ return (obj is Vector2) && Equals((Vector2)obj);
+ }
- public float Length() => Raylib.Vector2Length(this);
- public float LengthSquared() => (x * x) + (y * y);
+ public override int GetHashCode()
+ {
+ return x.GetHashCode() + y.GetHashCode();
+ }
+
+ public float Length()
+ {
+ return Raylib.Vector2Length(this);
+ }
+
+ public float LengthSquared()
+ {
+ return (x * x) + (y * y);
+ }
public override string ToString()
{
@@ -266,77 +238,69 @@ namespace Raylib
// common values
public static Vector2 Zero { get { return Raylib.Vector2Zero(); } }
-
public static Vector2 One { get { return Raylib.Vector2One(); } }
-
public static Vector2 UnitX { get { return new Vector2(1, 0); } }
-
public static Vector2 UnitY { get { return new Vector2(0, 1); } }
// convienient operators
- public static bool operator ==(Vector2 v1, Vector2 v2) => (v1.x == v2.x && v1.y == v2.y);
-
- public static bool operator !=(Vector2 v1, Vector2 v2)
- {
+ public static bool operator ==(Vector2 v1, Vector2 v2)
+ {
+ return (v1.x == v2.x && v1.y == v2.y);
+ }
+
+ public static bool operator !=(Vector2 v1, Vector2 v2)
+ {
return !(v1 == v2);
}
- public static bool operator >(Vector2 v1, Vector2 v2)
+ public static bool operator >(Vector2 v1, Vector2 v2)
{
return v1.x > v2.x && v1.y > v2.y;
}
- public static bool operator <(Vector2 v1, Vector2 v2)
- {
+ public static bool operator <(Vector2 v1, Vector2 v2)
+ {
return v1.x < v2.x && v1.y < v2.y;
}
- public static Vector2 operator +(Vector2 v1, Vector2 v2)
- {
+ public static Vector2 operator +(Vector2 v1, Vector2 v2)
+ {
return Raylib.Vector2Add(v1, v2);
}
- public static Vector2 operator -(Vector2 v1, Vector2 v2)
+ public static Vector2 operator -(Vector2 v1, Vector2 v2)
{
return Raylib.Vector2Subtract(v1, v2);
}
- public static Vector2 operator *(Vector2 v1, Vector2 v2)
+ public static Vector2 operator *(Vector2 v1, Vector2 v2)
{
- return Raylib.Vector2Multiplyv(v1, v2);
+ return Raylib.Vector2MultiplyV(v1, v2);
}
- public static Vector2 operator *(Vector2 v, float scale)
+ public static Vector2 operator *(Vector2 v, float scale)
{
return Raylib.Vector2Scale(v, scale);
}
- public static Vector2 operator *(float scale, Vector2 v)
+ public static Vector2 operator *(float scale, Vector2 v)
{
return Raylib.Vector2Scale(v, scale);
}
- public static Vector2 operator /(Vector2 v1, Vector2 v2)
- {
+ public static Vector2 operator /(Vector2 v1, Vector2 v2)
+ {
return Raylib.Vector2DivideV(v1, v2);
}
- public static Vector2 operator /(Vector2 v1, float div)
- {
+ public static Vector2 operator /(Vector2 v1, float div)
+ {
return Raylib.Vector2Divide(v1, div);
}
- public static Vector2 operator -(Vector2 v1)
- {
- return Raylib.Vector2Negate(v1);
- }
-
- public static Vector2 Lerp(Vector2 value1, Vector2 value2, float amount)
+ public static Vector2 operator -(Vector2 v1)
{
- return new Vector2(
- Raylib.Lerp(value1.x, value2.x, amount),
- Raylib.Lerp(value1.y, value2.y, amount)
- );
+ return Raylib.Vector2Negate(v1);
}
public static float Length(Vector2 v)
@@ -405,8 +369,7 @@ namespace Raylib
{
return new Vector2(
v1.x > v2.x ? v1.x : v2.x,
- v1.y > v2.y ? v1.y : v2.y
- );
+ v1.y > v2.y ? v1.y : v2.y);
}
// Creates a new that contains a minimal values from the two vectors.
@@ -414,8 +377,7 @@ namespace Raylib
{
return new Vector2(
v1.x < v2.x ? v1.x : v2.x,
- v1.y < v2.y ? v1.y : v2.y
- );
+ v1.y < v2.y ? v1.y : v2.y);
}
// Clamps the specified value within a range.
@@ -423,12 +385,10 @@ namespace Raylib
{
return new Vector2(
Raylib.Clamp(value1.x, min.x, max.x),
- Raylib.Clamp(value1.y, min.y, max.y)
- );
+ Raylib.Clamp(value1.y, min.y, max.y));
}
}
-
// Vector3 type
public partial struct Vector3
{
@@ -447,8 +407,15 @@ namespace Raylib
}
// extensions
- public override bool Equals(object obj) => (obj is Vector3) && Equals((Vector3)obj);
- public override int GetHashCode() => x.GetHashCode() + y.GetHashCode() + z.GetHashCode();
+ public override bool Equals(object obj)
+ {
+ return (obj is Vector3) && Equals((Vector3)obj);
+ }
+
+ public override int GetHashCode()
+ {
+ return x.GetHashCode() + y.GetHashCode() + z.GetHashCode();
+ }
public override string ToString()
{
@@ -463,26 +430,62 @@ namespace Raylib
public static Vector3 UnitZ { get { return new Vector3(0, 0, 1); } }
// convienient operators
- public static bool operator ==(Vector3 v1, Vector3 v2) => (v1.x == v2.x && v1.y == v2.y && v1.z == v2.z);
- public static bool operator !=(Vector3 v1, Vector3 v2) => !(v1 == v2);
- public static bool operator >(Vector3 v1, Vector3 v2) => v1.x > v2.x && v1.y > v2.y && v1.z > v2.z;
- public static bool operator <(Vector3 v1, Vector3 v2) => v1.x < v2.x && v1.y < v2.y && v1.z < v2.z;
- public static Vector3 operator +(Vector3 v1, Vector3 v2) => Raylib.Vector3Add(v1, v2);
- public static Vector3 operator -(Vector3 v1, Vector3 v2) => Raylib.Vector3Subtract(v1, v2);
- public static Vector3 operator *(Vector3 v1, Vector3 v2) => Raylib.Vector3MultiplyV(v1, v2);
- public static Vector3 operator *(Vector3 v, float scale) => Raylib.Vector3Scale(v, scale);
- public static Vector3 operator *(float scale, Vector3 v) => Raylib.Vector3Scale(v, scale);
- public static Vector3 operator /(Vector3 v1, Vector3 v2) => Raylib.Vector3DivideV(v1, v2);
- public static Vector3 operator /(Vector3 v1, float div) => Raylib.Vector3Divide(v1, div);
- public static Vector3 operator -(Vector3 v1) => Raylib.Vector3Negate(v1);
+ public static bool operator ==(Vector3 v1, Vector3 v2)
+ { return (v1.x == v2.x && v1.y == v2.y && v1.z == v2.z);}
- public static Vector3 Lerp(Vector3 value1, Vector3 value2, float amount)
+ public static bool operator !=(Vector3 v1, Vector3 v2)
{
- return new Vector3(
- Raylib.Lerp(value1.x, value2.x, amount),
- Raylib.Lerp(value1.y, value2.y, amount),
- Raylib.Lerp(value1.z, value2.z, amount)
- );
+ return !(v1 == v2);
+ }
+
+ public static bool operator >(Vector3 v1, Vector3 v2)
+ {
+ return v1.x > v2.x && v1.y > v2.y && v1.z > v2.z;
+ }
+
+ public static bool operator <(Vector3 v1, Vector3 v2)
+ {
+ return v1.x < v2.x && v1.y < v2.y && v1.z < v2.z;
+ }
+
+ public static Vector3 operator +(Vector3 v1, Vector3 v2)
+ {
+ return Raylib.Vector3Add(v1, v2);
+ }
+
+ public static Vector3 operator -(Vector3 v1, Vector3 v2)
+ {
+ return Raylib.Vector3Subtract(v1, v2);
+ }
+
+ public static Vector3 operator *(Vector3 v1, Vector3 v2)
+ {
+ return Raylib.Vector3MultiplyV(v1, v2);
+ }
+
+ public static Vector3 operator *(Vector3 v, float scale)
+ {
+ return Raylib.Vector3Scale(v, scale);
+ }
+
+ public static Vector3 operator *(float scale, Vector3 v)
+ {
+ return Raylib.Vector3Scale(v, scale);
+ }
+
+ public static Vector3 operator /(Vector3 v1, Vector3 v2)
+ {
+ return Raylib.Vector3DivideV(v1, v2);
+ }
+
+ public static Vector3 operator /(Vector3 v1, float div)
+ {
+ return Raylib.Vector3Divide(v1, div);
+ }
+
+ public static Vector3 operator -(Vector3 v1)
+ {
+ return Raylib.Vector3Negate(v1);
}
}
@@ -505,9 +508,15 @@ namespace Raylib
w = value;
}
- public override bool Equals(object obj) => (obj is Vector4) && Equals((Vector4)obj);
+ public override bool Equals(object obj)
+ {
+ return (obj is Vector4) && Equals((Vector4)obj);
+ }
- public override int GetHashCode() => x.GetHashCode() + y.GetHashCode() + z.GetHashCode() + w.GetHashCode();
+ public override int GetHashCode()
+ {
+ return x.GetHashCode() + y.GetHashCode() + z.GetHashCode() + w.GetHashCode();
+ }
public override string ToString()
{
@@ -515,12 +524,24 @@ namespace Raylib
}
// convienient operators
- public static bool operator ==(Vector4 v1, Vector4 v2) => (v1.x == v2.x && v1.y == v2.y && v1.z == v2.z && v1.w == v2.w);
+ public static bool operator ==(Vector4 v1, Vector4 v2)
+ {
+ return (v1.x == v2.x && v1.y == v2.y && v1.z == v2.z && v1.w == v2.w);
+ }
- public static bool operator !=(Vector4 v1, Vector4 v2) => !(v1 == v2);
+ public static bool operator !=(Vector4 v1, Vector4 v2)
+ {
+ return !(v1 == v2);
+ }
- public static bool operator >(Vector4 v1, Vector4 v2) => v1.x > v2.x && v1.y > v2.y && v1.z > v2.z && v2.w > v2.w;
+ public static bool operator >(Vector4 v1, Vector4 v2)
+ {
+ return v1.x > v2.x && v1.y > v2.y && v1.z > v2.z && v1.w > v2.w;
+ }
- public static bool operator <(Vector4 v1, Vector4 v2) => v1.x < v2.x && v1.y < v2.y && v1.z < v2.z && v1.w < v2.w;
+ public static bool operator <(Vector4 v1, Vector4 v2)
+ {
+ return v1.x < v2.x && v1.y < v2.y && v1.z < v2.z && v1.w < v2.w;
+ }
}
}
diff --git a/Bindings/Physac.cs b/Bindings/Physac.cs
index 602f697..b1690ed 100644
--- a/Bindings/Physac.cs
+++ b/Bindings/Physac.cs
@@ -1,24 +1,26 @@
+/* Physac.cs
+*
+* Copyright 2019 Chris Dill
+*
+* Release under zLib License.
+* See LICENSE for details.
+*/
+
using System;
using System.Runtime.InteropServices;
namespace Raylib
{
- #region Raylib-cs Enums
-
public enum PhysicsShapeType
{
PHYSICS_CIRCLE,
PHYSICS_POLYGON
}
- #endregion
-
- #region Raylib-cs Types
-
// Mat2 type (used for polygon shape rotation matrix)
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
public struct Mat2
- {
+ {
public float m00;
public float m01;
public float m10;
@@ -26,9 +28,8 @@ namespace Raylib
}
// @TODO Custom array marshall issue https://github.com/ChrisDill/Raylib-cs/issues/9
- // hack same as raylib.cs _MaterialMap_e_FixedBuffer
- // no easy way to marshall arrays of custom types. no idea why?!?!
- // Span seems to need ref struct.
+ // Hack same as raylib.cs _MaterialMap_e_FixedBuffer
+ // No easy way to marshall arrays of custom types. no idea why?
public unsafe struct _Polygon_e_FixedBuffer
{
public Vector2 v0;
@@ -87,14 +88,14 @@ namespace Raylib
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
public partial struct PhysicsBodyData
- {
- public uint id;
+ {
+ public uint id;
[MarshalAs(UnmanagedType.Bool)]
public bool enabled;
- public Vector2 position;
- public Vector2 velocity;
+ public Vector2 position;
+ public Vector2 velocity;
public Vector2 force;
- public float angularVelocity;
+ public float angularVelocity;
public float torque;
public float orient;
public float inertia;
@@ -107,7 +108,7 @@ namespace Raylib
[MarshalAs(UnmanagedType.Bool)]
public bool useGravity;
[MarshalAs(UnmanagedType.Bool)]
- public bool isGrounded;
+ public bool isGrounded;
[MarshalAs(UnmanagedType.Bool)]
public bool freezeOrient;
public PhysicsShape shape;
@@ -115,46 +116,24 @@ namespace Raylib
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
public struct PhysicsManifoldData
- {
+ {
public uint id; // Reference unique identifier
public IntPtr bodyA; // Manifold first physics body reference
public IntPtr bodyB; // Manifold second physics body reference
public float penetration; // Depth of penetration from collision
public Vector2 normal; // Normal direction vector from 'a' to 'b'
- public Vector2 contactsA; // Points of contact during collision
- public Vector2 contactsB; // Points of contact during collision
+ public Vector2 contactsA; // Points of contact during collision
+ public Vector2 contactsB; // Points of contact during collision
public uint contactsCount; // Current collision number of contacts
public float restitution; // Mixed restitution during collision
public float dynamicFriction; // Mixed dynamic friction during collision
public float staticFriction; // Mixed static friction during collision
}
- #endregion
-
public static partial class Raylib
{
- #region Raylib-cs Variables
-
- public const int PHYSAC_MAX_BODIES = 64;
- public const int PHYSAC_MAX_MANIFOLDS = 4096;
- public const int PHYSAC_MAX_VERTICES = 24;
- public const int PHYSAC_CIRCLE_VERTICES = 24;
-
- public const float PHYSAC_DESIRED_DELTATIME = 1.0f / 60.0f;
- public const float PHYSAC_MAX_TIMESTEP = 0.02f;
- public const int PHYSAC_COLLISION_ITERATIONS = 100;
- public const float PHYSAC_PENETRATION_ALLOWANCE = 0.05f;
- public const float PHYSAC_PENETRATION_CORRECTION = 0.4f;
-
- public const float PHYSAC_PI = 3.14159265358979323846f;
- public const float PHYSAC_DEG2RAD = (PHYSAC_PI / 180.0f);
-
- #endregion
-
- #region Raylib-cs Functions
-
// Initializes physics values, pointers and creates physics loop thread
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern void InitPhysics();
// Run physics step, to be used if PHYSICS_NO_THREADS is set in your main loop
@@ -162,97 +141,71 @@ namespace Raylib
public static extern void RunPhysicsStep();
// Returns true if physics thread is currently enabled
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern bool IsPhysicsEnabled();
// Sets physics global gravity force
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern void SetPhysicsGravity(float x, float y);
// Creates a new circle physics body with generic parameters
- [DllImport(nativeLibName, EntryPoint = "CreatePhysicsBodyCircle")]
- private static extern IntPtr CreatePhysicsBodyCircleImport(Vector2 pos, float radius, float density);
- public static PhysicsBodyData CreatePhysicsBodyCircle(Vector2 pos, float radius, float density)
- {
- var body = CreatePhysicsBodyCircleImport(pos, radius, density);
- var data = (PhysicsBodyData)Marshal.PtrToStructure(body, typeof(PhysicsBodyData));
- return data;
- }
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ private static extern IntPtr CreatePhysicsBodyCircle(Vector2 pos, float radius, float density);
// Creates a new rectangle physics body with generic parameters
- [DllImport(nativeLibName, EntryPoint = "CreatePhysicsBodyRectangle")]
- private static extern IntPtr CreatePhysicsBodyRectangleImport(Vector2 pos, float width, float height, float density);
- public static PhysicsBodyData CreatePhysicsBodyRectangle(Vector2 pos, float width, float height, float density)
- {
- var body = CreatePhysicsBodyRectangleImport(pos, width, height, density);
- var data = (PhysicsBodyData)Marshal.PtrToStructure(body, typeof(PhysicsBodyData));
- return data;
- }
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern IntPtr CreatePhysicsBodyRectangle(Vector2 pos, float width, float height, float density);
// Creates a new polygon physics body with generic parameters
- [DllImport(nativeLibName, EntryPoint = "CreatePhysicsBodyPolygon")]
- private static extern IntPtr CreatePhysicsBodyPolygonImport(Vector2 pos, float radius, int sides, float density);
- public static PhysicsBodyData CreatePhysicsBodyPolygon(Vector2 pos, float radius, int sides, float density)
- {
- var body = CreatePhysicsBodyPolygonImport(pos, radius, sides, density);
- var data = (PhysicsBodyData)Marshal.PtrToStructure(body, typeof(PhysicsBodyData));
- return data;
- }
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern IntPtr CreatePhysicsBodyPolygon(Vector2 pos, float radius, int sides, float density);
// Adds a force to a physics body
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern void PhysicsAddForce(PhysicsBodyData body, Vector2 force);
// Adds an angular force to a physics body
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern void PhysicsAddTorque(PhysicsBodyData body, float amount);
// Shatters a polygon shape physics body to little physics bodies with explosion force
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern void PhysicsShatter(PhysicsBodyData body, Vector2 position, float force);
// Returns the current amount of created physics bodies
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern int GetPhysicsBodiesCount();
// Returns a physics body of the bodies pool at a specific index
- [DllImport(nativeLibName, EntryPoint = "GetPhysicsBody")]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern IntPtr GetPhysicsBodyImport(int index);
- public static PhysicsBodyData GetPhysicsBody(int index)
- {
- var body = GetPhysicsBodyImport(index);
- var data = (PhysicsBodyData)Marshal.PtrToStructure(body, typeof(PhysicsBodyData));
- return data;
- }
// Returns the physics body shape type (PHYSICS_CIRCLE or PHYSICS_POLYGON)
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern int GetPhysicsShapeType(int index);
// Returns the amount of vertices of a physics body shape
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern int GetPhysicsShapeVerticesCount(int index);
// Returns transformed position of a body shape (body position + vertex transformed position)
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern Vector2 GetPhysicsShapeVertex(PhysicsBodyData body, int vertex);
// Sets physics body shape transform based on radians parameter
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern void SetPhysicsBodyRotation(PhysicsBodyData body, float radians);
// Unitializes and destroy a physics body
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern void DestroyPhysicsBody(PhysicsBodyData body);
// Destroys created physics bodies and manifolds and resets global values
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern void ResetPhysics();
// Unitializes physics pointers and closes physics loop thread
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern void ClosePhysics();
-
- #endregion
}
}
diff --git a/Bindings/Raygui.cs b/Bindings/Raygui.cs
index 8ff17ab..b2500e2 100644
--- a/Bindings/Raygui.cs
+++ b/Bindings/Raygui.cs
@@ -1,11 +1,18 @@
-using System;
+/* Raygui.cs
+*
+* Copyright 2019 Chris Dill
+*
+* Release under zLib License.
+* See LICENSE for details.
+*/
+
using System.Runtime.InteropServices;
using System.Text;
namespace Raylib
{
// Gui global state enum
- enum GuiControlState
+ public enum GuiControlState
{
GUI_STATE_NORMAL = 0,
GUI_STATE_FOCUSED,
@@ -13,8 +20,16 @@ namespace Raylib
GUI_STATE_DISABLED,
}
+ // Gui global text alignment
+ public enum GuiTextAlignment
+ {
+ GUI_TEXT_ALIGN_LEFT = 0,
+ GUI_TEXT_ALIGN_CENTER,
+ GUI_TEXT_ALIGN_RIGHT,
+ }
+
// Gui standard controls
- enum GuiControlStandard
+ public enum GuiControlStandard
{
DEFAULT = 0,
LABEL, // LABELBUTTON
@@ -25,13 +40,17 @@ namespace Raylib
CHECKBOX,
COMBOBOX,
DROPDOWNBOX,
- TEXTBOX, // VALUEBOX, SPINNER
+ TEXTBOX, // TEXTBOXMULTI
+ VALUEBOX,
+ SPINNER,
LISTVIEW,
- COLORPICKER
+ COLORPICKER,
+ SCROLLBAR,
+ RESERVED
}
// Gui default properties for every control
- enum GuiControlProperty
+ public enum GuiControlProperty
{
BORDER_COLOR_NORMAL = 0,
BASE_COLOR_NORMAL,
@@ -47,7 +66,7 @@ namespace Raylib
TEXT_COLOR_DISABLED,
BORDER_WIDTH,
INNER_PADDING,
- RESERVED01,
+ TEXT_ALIGNMENT,
RESERVED02
}
@@ -55,57 +74,89 @@ namespace Raylib
// NOTE: We reserve a fixed size of additional properties per control (8)
// Default properties
- enum GuiDefaultProperty
+ public enum GuiDefaultProperty
{
TEXT_SIZE = 16,
TEXT_SPACING,
- LINES_COLOR,
+ LINE_COLOR,
BACKGROUND_COLOR,
}
// Toggle / ToggleGroup
- enum GuiToggleProperty
+ public enum GuiToggleProperty
{
GROUP_PADDING = 16,
}
// Slider / SliderBar
- enum GuiSliderProperty
+ public enum GuiSliderProperty
{
SLIDER_WIDTH = 16,
- EX_TEXT_PADDING
- }
-
- // TextBox / ValueBox / Spinner
- enum GuiTextBoxProperty
- {
- MULTILINE_PADDING = 16,
- SPINNER_BUTTON_WIDTH,
- SPINNER_BUTTON_PADDING,
- SPINNER_BUTTON_BORDER_WIDTH
+ TEXT_PADDING
}
// CheckBox
- enum GuiCheckBoxProperty
+ public enum GuiCheckBoxProperty
{
CHECK_TEXT_PADDING = 16
}
-
+
// ComboBox
- enum GuiComboBoxProperty
+ public enum GuiComboBoxProperty
{
SELECTOR_WIDTH = 16,
SELECTOR_PADDING
}
// DropdownBox
- enum GuiDropdownBoxProperty
+ public enum GuiDropdownBoxProperty
{
ARROW_RIGHT_PADDING = 16,
}
-
+
+ // TextBox / TextBoxMulti / ValueBox / Spinner
+ public enum GuiTextBoxProperty
+ {
+ MULTILINE_PADDING = 16,
+ COLOR_SELECTED_FG,
+ COLOR_SELECTED_BG
+ }
+
+ public enum GuiSpinnerProperty
+ {
+ SELECT_BUTTON_WIDTH = 16,
+ SELECT_BUTTON_PADDING,
+ SELECT_BUTTON_BORDER_WIDTH
+ }
+
+ // ScrollBar
+ public enum GuiScrollBarProperty
+ {
+ ARROWS_SIZE = 16,
+ SLIDER_PADDING,
+ SLIDER_SIZE,
+ SCROLL_SPEED,
+ SHOW_SPINNER_BUTTONS
+ }
+
+ // ScrollBar side
+ public enum GuiScrollBarSide
+ {
+ SCROLLBAR_LEFT_SIDE = 0,
+ SCROLLBAR_RIGHT_SIDE
+ }
+
+ // ListView
+ public enum GuiListViewProperty
+ {
+ ELEMENTS_HEIGHT = 16,
+ ELEMENTS_PADDING,
+ SCROLLBAR_WIDTH,
+ SCROLLBAR_SIDE, // This property defines vertical scrollbar side (SCROLLBAR_LEFT_SIDE or SCROLLBAR_RIGHT_SIDE)
+ }
+
// ColorPicker
- enum GuiColorPickerProperty
+ public enum GuiColorPickerProperty
{
COLOR_SELECTOR_SIZE = 16,
BAR_WIDTH, // Lateral bar width
@@ -114,23 +165,16 @@ namespace Raylib
BAR_SELECTOR_PADDING // Lateral bar selector outer padding
}
- // ListView
- enum GuiListViewProperty
- {
- ELEMENTS_HEIGHT = 16,
- ELEMENTS_PADDING,
- SCROLLBAR_WIDTH,
- }
-
public static partial class Raylib
{
// Global gui modification functions
+
// Enable gui controls (global state)
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
- public static extern void GuiEnable();
-
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void GuiEnable();
+
// Disable gui controls (global state)
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern void GuiDisable();
// Lock gui controls (global state)
@@ -150,143 +194,189 @@ namespace Raylib
public static extern void GuiFont(Font font);
// Set gui controls alpha (global state), alpha goes from 0.0f to 1.0f
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
- public static extern void GuiFade(float alpha);
-
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void GuiFade(float alpha);
+
// Style set/get functions
+
// Set one style property
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
- public static extern void GuiSetStyle(int control, int property, int value);
-
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void GuiSetStyle(GuiControlStandard control, GuiControlProperty property, int value);
+
// Get one style property
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
- public static extern int GuiGetStyle(int control, int property);
-
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern int GuiGetStyle(GuiControlStandard control, GuiControlProperty property);
+
// Container/separator controls, useful for controls organization
+
// Window Box control, shows a window that can be closed
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
- public static extern bool GuiWindowBox(Rectangle bounds, string text);
-
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ [return: MarshalAs(UnmanagedType.I1)]
+ public static extern bool GuiWindowBox(Rectangle bounds, string text);
+
// Group Box control with title name
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
- public static extern void GuiGroupBox(Rectangle bounds, string text);
-
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void GuiGroupBox(Rectangle bounds, string text);
+
// Line separator control
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
- public static extern void GuiLine(Rectangle bounds, int thick);
-
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void GuiLine(Rectangle bounds, string text);
+
// Panel control, useful to group controls
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
- public static extern void GuiPanel(Rectangle bounds);
-
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void GuiPanel(Rectangle bounds);
+
// Scroll Panel control
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
- public static extern Vector2 GuiScrollPanel(Rectangle bounds, Rectangle content, Vector2 viewScroll);
-
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Rectangle GuiScrollPanel(Rectangle bounds, Rectangle content, ref Vector2 scroll);
+
// Basic controls set
+
// Label control, shows text
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
- public static extern void GuiLabel(Rectangle bounds, string text);
-
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void GuiLabel(Rectangle bounds, string text);
+
// Button control, returns true when clicked
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
- public static extern bool GuiButton(Rectangle bounds, string text);
-
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ [return: MarshalAs(UnmanagedType.I1)]
+ public static extern bool GuiButton(Rectangle bounds, string text);
+
// Label button control, show true when clicked
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
- public static extern bool GuiLabelButton(Rectangle bounds, string text);
-
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ [return: MarshalAs(UnmanagedType.I1)]
+ public static extern bool GuiLabelButton(Rectangle bounds, string text);
+
// Image button control, returns true when clicked
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
- public static extern bool GuiImageButton(Rectangle bounds, Texture2D texture);
-
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ [return: MarshalAs(UnmanagedType.I1)]
+ public static extern bool GuiImageButton(Rectangle bounds, Texture2D texture);
+
// Image button extended control, returns true when clicked
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
- public static extern bool GuiImageButtonEx(Rectangle bounds, Texture2D texture, Rectangle texSource, string text);
-
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ [return: MarshalAs(UnmanagedType.I1)]
+ public static extern bool GuiImageButtonEx(Rectangle bounds, Texture2D texture, Rectangle texSource, string text);
+
// Toggle Button control, returns true when active
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
- public static extern bool GuiToggleButton(Rectangle bounds, string text, bool toggle);
-
- // Toggle Group control, returns toggled button index
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
- public static extern int GuiToggleGroup(Rectangle bounds, string text, int count, int active);
-
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ [return: MarshalAs(UnmanagedType.I1)]
+ public static extern bool GuiToggle(Rectangle bounds, string text, bool active);
+
+ // Toggle Group control, returns active toggle index
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern int GuiToggleGroup(Rectangle bounds, string text, int active);
+
// Check Box control, returns true when active
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
- public static extern bool GuiCheckBox(Rectangle bounds, bool isChecked);
-
- // Check Box control with text, returns true when active
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
- public static extern bool GuiCheckBoxEx(Rectangle bounds, bool isChecked, string text);
-
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ [return: MarshalAs(UnmanagedType.I1)]
+ public static extern bool GuiCheckBox(Rectangle bounds, bool isChecked);
+
// Combo Box control, returns selected item index
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
- public static extern int GuiComboBox(Rectangle bounds, string text, int count, int active);
-
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern int GuiComboBox(Rectangle bounds, string text, int active);
+
// Dropdown Box control, returns selected item
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
- public static extern int GuiDropdownBox(Rectangle bounds, string[] text, int count, int active);
-
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ [return: MarshalAs(UnmanagedType.I1)]
+ public static extern bool GuiDropdownBox(Rectangle bounds, string[] text, ref int active, bool edit);
+
// Spinner control, returns selected value
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
- public static extern int GuiSpinner(Rectangle bounds, int value, int maxValue, int btnWidth);
-
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ [return: MarshalAs(UnmanagedType.I1)]
+ public static extern bool GuiSpinner(Rectangle bounds, ref int value, int maxValue, int btnWidth);
+
// Value Box control, updates input text with numbers
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
- public static extern int GuiValueBox(Rectangle bounds, int value, int maxValue);
-
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ [return: MarshalAs(UnmanagedType.I1)]
+ public static extern bool GuiValueBox(Rectangle bounds, int value, int maxValue);
+
// Text Box control, updates input text
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
- public static extern bool GuiTextBox(Rectangle bounds, StringBuilder text, int textSize, bool freeEdit);
-
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ [return: MarshalAs(UnmanagedType.I1)]
+ public static extern bool GuiTextBox(Rectangle bounds, StringBuilder text, int textSize, bool freeEdit);
+
// Text Box control with multiple lines
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
- public static extern bool GuiTextBoxMulti(Rectangle bounds, StringBuilder text, int textSize, bool editMode);
-
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ [return: MarshalAs(UnmanagedType.I1)]
+ public static extern bool GuiTextBoxMulti(Rectangle bounds, StringBuilder text, int textSize, bool editMode);
+
// Slider control, returns selected value
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
- public static extern float GuiSlider(Rectangle bounds, float value, float minValue, float maxValue);
-
- // Slider control, returns selected value
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
- public static extern float GuiSliderEx(Rectangle bounds, float value, float minValue, float maxValue, string text, bool showValue);
-
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern float GuiSlider(Rectangle bounds, float value, float minValue, float maxValue, bool showValue);
+
// Slider Bar control, returns selected value
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
- public static extern float GuiSliderBar(Rectangle bounds, float value, float minValue, float maxValue);
-
- // Slider Bar control, returns selected value
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
- public static extern float GuiSliderBarEx(Rectangle bounds, float value, float minValue, float maxValue, string text, bool showValue);
-
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern float GuiSliderBar(Rectangle bounds, float value, float minValue, float maxValue, bool showValue);
+
// Progress Bar control, shows current progress value
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
- public static extern float GuiProgressBar(Rectangle bounds, float value, float minValue, float maxValue);
-
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern float GuiProgressBar(Rectangle bounds, float value, float minValue, float maxValue, bool showValue);
+
// Progress Bar control, shows current progress value
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
- public static extern float GuiProgressBarEx(Rectangle bounds, float value, float minValue, float maxValue, bool showValue);
-
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern float GuiProgressBarEx(Rectangle bounds, float value, float minValue, float maxValue, bool showValue);
+
// Status Bar control, shows info text
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
- public static extern void GuiStatusBar(Rectangle bounds, string text, int offsetX);
-
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void GuiStatusBar(Rectangle bounds, string text);
+
// Dummy control for placeholders
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
- public static extern void GuiDummyRec(Rectangle bounds, string text);
-
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void GuiDummyRec(Rectangle bounds, string text);
+
+ // Scroll Bar control
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void GuiScrollBar(Rectangle bounds, int value, int minValue, int maxValue);
+
+ // Grid
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void GuiGrid(Rectangle bounds, float spacing, int subdivs);
+
// Advance controls set
+
// List View control, returns selected list element index
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
- public static extern int GuiListView(Rectangle bounds, string text, int count, int active);
-
- // Color Picker control
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
- public static extern Color GuiColorPicker(Rectangle bounds, Color color);
-
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern int GuiListView(Rectangle bounds, string text, ref int active, ref int scrollIndex, bool editMode);
+
+ // List View with extended parameters
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern int GuiListViewEx(Rectangle bounds, string text, int count, ref int enabled, ref int active, ref int focus, ref int scrollIndex, bool editMode);
+
// Message Box control, displays a message
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
- public static extern bool GuiMessageBox(Rectangle bounds, string windowTitle, string message);
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ [return: MarshalAs(UnmanagedType.I1)]
+ public static extern bool GuiMessageBox(Rectangle bounds, string windowTitle, string message);
+
+ // Text Input Box control, ask for text
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ [return: MarshalAs(UnmanagedType.I1)]
+ public static extern bool GuiTextInputBox(Rectangle bounds, string windowTitle, string message, string buttons);
+
+ // Color Picker control
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Color GuiColorPicker(Rectangle bounds, Color color);
+
+ // Styles loading functions
+
+ // Load style file (.rgs)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern int GuiLoadStyle(string fileName);
+
+ // Load style properties from array
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ [return: MarshalAs(UnmanagedType.I1)]
+ public static extern bool GuiLoadStyleProps(int[] props, int count);
+
+ // Load style default over global style
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ [return: MarshalAs(UnmanagedType.I1)]
+ public static extern bool GuiLoadStyleDefault();
+
+ // Updates full style properties set with default values
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Color GuiUpdateStyleComplete();
+
+ // Get text with icon id prepended
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern string GuiIconText(int iconId, string text);
}
}
diff --git a/Bindings/Raylib.cs b/Bindings/Raylib.cs
index deb5659..2f24070 100644
--- a/Bindings/Raylib.cs
+++ b/Bindings/Raylib.cs
@@ -1,2251 +1,2546 @@
-/* Raylib-cs
- * Raylib.cs - Core bindings to raylib
- * Copyright 2019 Chris Dill
- *
- * Release under zLib License.
- * See LICENSE for details.
- */
-
-using System;
-using System.Runtime.InteropServices;
-using System.Security;
-
-namespace Raylib
-{
- //----------------------------------------------------------------------------------
- // Enumerators Definition
- //----------------------------------------------------------------------------------
-
- // System config flags
- // NOTE: Used for bit masks
- public enum ConfigFlag
- {
- FLAG_SHOW_LOGO = 1, // Set to show raylib logo at startup
- FLAG_FULLSCREEN_MODE = 2, // Set to run program in fullscreen
- FLAG_WINDOW_RESIZABLE = 4, // Set to allow resizable window
- FLAG_WINDOW_UNDECORATED = 8, // Set to disable window decoration (frame and buttons)
- FLAG_WINDOW_TRANSPARENT = 16, // Set to allow transparent window
- FLAG_MSAA_4X_HINT = 32, // Set to try enabling MSAA 4X
- FLAG_VSYNC_HINT = 64 // Set to try enabling V-Sync on GPU
- }
-
- // Trace log type
- // NOTE: Used for bit masks
- public enum TraceLogType
- {
- LOG_INFO = 1,
- LOG_WARNING = 2,
- LOG_ERROR = 4,
- LOG_DEBUG = 8,
- LOG_OTHER = 16
- }
-
- // Keyboard keys
- // enum extension for constants
- // Keyboard Function Keys
- public enum KeyboardKey
- {
- // Alphanumeric keys
- KEY_APOSTROPHE = 39,
- KEY_COMMA = 44,
- KEY_MINUS = 45,
- KEY_PERIOD = 46,
- KEY_SLASH = 47,
- KEY_ZERO = 48,
- KEY_ONE = 49,
- KEY_TWO = 50,
- KEY_THREE = 51,
- KEY_FOUR = 52,
- KEY_FIVE = 53,
- KEY_SIX = 54,
- KEY_SEVEN = 55,
- KEY_EIGHT = 56,
- KEY_NINE = 57,
- KEY_SEMICOLON = 59,
- KEY_EQUAL = 61,
- KEY_A = 65,
- KEY_B = 66,
- KEY_C = 67,
- KEY_D = 68,
- KEY_E = 69,
- KEY_F = 70,
- KEY_G = 71,
- KEY_H = 72,
- KEY_I = 73,
- KEY_J = 74,
- KEY_K = 75,
- KEY_L = 76,
- KEY_M = 77,
- KEY_N = 78,
- KEY_O = 79,
- KEY_P = 80,
- KEY_Q = 81,
- KEY_R = 82,
- KEY_S = 83,
- KEY_T = 84,
- KEY_U = 85,
- KEY_V = 86,
- KEY_W = 87,
- KEY_X = 88,
- KEY_Y = 89,
- KEY_Z = 90,
-
- // Function keys
- KEY_SPACE = 32,
- KEY_ESCAPE = 256,
- KEY_ENTER = 257,
- KEY_TAB = 258,
- KEY_BACKSPACE = 259,
- KEY_INSERT = 260,
- KEY_DELETE = 261,
- KEY_RIGHT = 262,
- KEY_LEFT = 263,
- KEY_DOWN = 264,
- KEY_UP = 265,
- KEY_PAGE_UP = 266,
- KEY_PAGE_DOWN = 267,
- KEY_HOME = 268,
- KEY_END = 269,
- KEY_CAPS_LOCK = 280,
- KEY_SCROLL_LOCK = 281,
- KEY_NUM_LOCK = 282,
- KEY_PRINT_SCREEN = 283,
- KEY_PAUSE = 284,
- KEY_F1 = 290,
- KEY_F2 = 291,
- KEY_F3 = 292,
- KEY_F4 = 293,
- KEY_F5 = 294,
- KEY_F6 = 295,
- KEY_F7 = 296,
- KEY_F8 = 297,
- KEY_F9 = 298,
- KEY_F10 = 299,
- KEY_F11 = 300,
- KEY_F12 = 301,
- KEY_LEFT_SHIFT = 340,
- KEY_LEFT_CONTROL = 341,
- KEY_LEFT_ALT = 342,
- KEY_LEFT_SUPER = 343,
- KEY_RIGHT_SHIFT = 344,
- KEY_RIGHT_CONTROL = 345,
- KEY_RIGHT_ALT = 346,
- KEY_RIGHT_SUPER = 347,
- KEY_KB_MENU = 348,
- KEY_LEFT_BRACKET = 91,
- KEY_BACKSLASH = 92,
- KEY_RIGHT_BRACKET = 93,
- KEY_GRAVE = 96,
-
- // Keypad keys
- KEY_KP_0 = 320,
- KEY_KP_1 = 321,
- KEY_KP_2 = 322,
- KEY_KP_3 = 323,
- KEY_KP_4 = 324,
- KEY_KP_5 = 325,
- KEY_KP_6 = 326,
- KEY_KP_7 = 327,
- KEY_KP_8 = 328,
- KEY_KP_9 = 329,
- KEY_KP_DECIMAL = 330,
- KEY_KP_DIVIDE = 331,
- KEY_KP_MULTIPLY = 332,
- KEY_KP_SUBTRACT = 333,
- KEY_KP_ADD = 334,
- KEY_KP_ENTER = 335,
- KEY_KP_EQUAL = 336
- }
-
- // Android buttons
- public enum AndroidButton
- {
- KEY_BACK = 4,
- KEY_MENU = 82,
- KEY_VOLUME_UP = 24,
- KEY_VOLUME_DOWN = 25
- }
-
- // Mouse Buttons
- public enum MouseButton
- {
- MOUSE_LEFT_BUTTON = 0,
- MOUSE_RIGHT_BUTTON = 1,
- MOUSE_MIDDLE_BUTTON = 2
- }
-
- // Gamepad number
- public enum GamepadNumber
- {
- GAMEPAD_PLAYER1 = 0,
- GAMEPAD_PLAYER2 = 1,
- GAMEPAD_PLAYER3 = 2,
- GAMEPAD_PLAYER4 = 3
- }
-
- // PS3 USB Controller Buttons
- // TODO: Provide a generic way to list gamepad controls schemes,
- // defining specific controls schemes is not a good option
- public enum GamepadPS3Button
- {
- GAMEPAD_PS3_BUTTON_TRIANGLE = 0,
- GAMEPAD_PS3_BUTTON_CIRCLE = 1,
- GAMEPAD_PS3_BUTTON_CROSS = 2,
- GAMEPAD_PS3_BUTTON_SQUARE = 3,
- GAMEPAD_PS3_BUTTON_L1 = 6,
- GAMEPAD_PS3_BUTTON_R1 = 7,
- GAMEPAD_PS3_BUTTON_L2 = 4,
- GAMEPAD_PS3_BUTTON_R2 = 5,
- GAMEPAD_PS3_BUTTON_START = 8,
- GAMEPAD_PS3_BUTTON_SELECT = 9,
- GAMEPAD_PS3_BUTTON_PS = 12,
- GAMEPAD_PS3_BUTTON_UP = 24,
- GAMEPAD_PS3_BUTTON_RIGHT = 25,
- GAMEPAD_PS3_BUTTON_DOWN = 26,
- GAMEPAD_PS3_BUTTON_LEFT = 27
- }
-
- // PS3 USB Controller Axis
- public enum GamepadPS3Axis
- {
- GAMEPAD_PS3_AXIS_LEFT_X = 0,
- GAMEPAD_PS3_AXIS_LEFT_Y = 1,
- GAMEPAD_PS3_AXIS_RIGHT_X = 2,
- GAMEPAD_PS3_AXIS_RIGHT_Y = 5,
- GAMEPAD_PS3_AXIS_L2 = 3, // [1..-1] (pressure-level)
- GAMEPAD_PS3_AXIS_R2 = 4 // [1..-1] (pressure-level)
- }
-
- // Xbox360 USB Controller Buttons
- public enum GamepadXbox360Button
- {
- GAMEPAD_XBOX_BUTTON_A = 0,
- GAMEPAD_XBOX_BUTTON_B = 1,
- GAMEPAD_XBOX_BUTTON_X = 2,
- GAMEPAD_XBOX_BUTTON_Y = 3,
- GAMEPAD_XBOX_BUTTON_LB = 4,
- GAMEPAD_XBOX_BUTTON_RB = 5,
- GAMEPAD_XBOX_BUTTON_SELECT = 6,
- GAMEPAD_XBOX_BUTTON_START = 7,
- GAMEPAD_XBOX_BUTTON_HOME = 8,
- GAMEPAD_XBOX_BUTTON_UP = 10,
- GAMEPAD_XBOX_BUTTON_RIGHT = 11,
- GAMEPAD_XBOX_BUTTON_DOWN = 12,
- GAMEPAD_XBOX_BUTTON_LEFT = 13
- }
-
- // Xbox360 USB Controller Axis,
- // NOTE: For Raspberry Pi, axis must be reconfigured
- public enum GamepadXbox360Axis
- {
- GAMEPAD_XBOX_AXIS_LEFT_X = 0, // [-1..1] (left->right)
- GAMEPAD_XBOX_AXIS_LEFT_Y = 1, // [1..-1] (up->down)
- GAMEPAD_XBOX_AXIS_RIGHT_X = 2, // [-1..1] (left->right)
- GAMEPAD_XBOX_AXIS_RIGHT_Y = 3, // [1..-1] (up->down)
- GAMEPAD_XBOX_AXIS_LT = 4, // [-1..1] (pressure-level)
- GAMEPAD_XBOX_AXIS_RT = 5 // [-1..1] (pressure-level)
- }
-
- // Android Gamepad Controller (SNES CLASSIC)
- public enum GamepadAndroid
- {
- GAMEPAD_ANDROID_DPAD_UP = 19,
- GAMEPAD_ANDROID_DPAD_DOWN = 20,
- GAMEPAD_ANDROID_DPAD_LEFT = 21,
- GAMEPAD_ANDROID_DPAD_RIGHT = 22,
- GAMEPAD_ANDROID_DPAD_CENTER = 23,
- GAMEPAD_ANDROID_BUTTON_A = 96,
- GAMEPAD_ANDROID_BUTTON_B = 97,
- GAMEPAD_ANDROID_BUTTON_C = 98,
- GAMEPAD_ANDROID_BUTTON_X = 99,
- GAMEPAD_ANDROID_BUTTON_Y = 100,
- GAMEPAD_ANDROID_BUTTON_Z = 101,
- GAMEPAD_ANDROID_BUTTON_L1 = 102,
- GAMEPAD_ANDROID_BUTTON_R1 = 103,
- GAMEPAD_ANDROID_BUTTON_L2 = 104,
- GAMEPAD_ANDROID_BUTTON_R2 = 105
- }
-
- // Shader location point type
- public enum ShaderLocationIndex
- {
- LOC_VERTEX_POSITION = 0,
- LOC_VERTEX_TEXCOORD01 = 1,
- LOC_VERTEX_TEXCOORD02 = 2,
- LOC_VERTEX_NORMAL = 3,
- LOC_VERTEX_TANGENT = 4,
- LOC_VERTEX_COLOR = 5,
- LOC_MATRIX_MVP = 6,
- LOC_MATRIX_MODEL = 7,
- LOC_MATRIX_VIEW = 8,
- LOC_MATRIX_PROJECTION = 9,
- LOC_VECTOR_VIEW = 10,
- LOC_COLOR_DIFFUSE = 11,
- LOC_COLOR_SPECULAR = 12,
- LOC_COLOR_AMBIENT = 13,
- LOC_MAP_ALBEDO = 14,
- LOC_MAP_METALNESS = 15,
- LOC_MAP_NORMAL = 16,
- LOC_MAP_ROUGHNESS = 17,
- LOC_MAP_OCCLUSION = 18,
- LOC_MAP_EMISSION = 19,
- LOC_MAP_HEIGHT = 20,
- LOC_MAP_CUBEMAP = 21,
- LOC_MAP_IRRADIANCE = 22,
- LOC_MAP_PREFILTER = 23,
- LOC_MAP_BRDF = 24
- }
-
- // Material map type
- public enum TexmapIndex
- {
- MAP_ALBEDO = 0, // MAP_DIFFUSE
- MAP_METALNESS = 1, // MAP_SPECULAR
- MAP_NORMAL = 2,
- MAP_ROUGHNESS = 3,
- MAP_OCCLUSION,
- MAP_EMISSION,
- MAP_HEIGHT,
- MAP_CUBEMAP, // NOTE: Uses GL_TEXTURE_CUBE_MAP
- MAP_IRRADIANCE, // NOTE: Uses GL_TEXTURE_CUBE_MAP
- MAP_PREFILTER, // NOTE: Uses GL_TEXTURE_CUBE_MAP
- MAP_BRDF
- }
-
- // Pixel formats
- // NOTE: Support depends on OpenGL version and platform
- public enum PixelFormat
- {
- UNCOMPRESSED_GRAYSCALE = 1, // 8 bit per pixel (no alpha)
- UNCOMPRESSED_GRAY_ALPHA, // 8*2 bpp (2 channels)
- UNCOMPRESSED_R5G6B5, // 16 bpp
- UNCOMPRESSED_R8G8B8, // 24 bpp
- UNCOMPRESSED_R5G5B5A1, // 16 bpp (1 bit alpha)
- UNCOMPRESSED_R4G4B4A4, // 16 bpp (4 bit alpha)
- UNCOMPRESSED_R8G8B8A8, // 32 bpp
- UNCOMPRESSED_R32, // 32 bpp (1 channel - float)
- UNCOMPRESSED_R32G32B32, // 32*3 bpp (3 channels - float)
- UNCOMPRESSED_R32G32B32A32, // 32*4 bpp (4 channels - float)
- COMPRESSED_DXT1_RGB, // 4 bpp (no alpha)
- COMPRESSED_DXT1_RGBA, // 4 bpp (1 bit alpha)
- COMPRESSED_DXT3_RGBA, // 8 bpp
- COMPRESSED_DXT5_RGBA, // 8 bpp
- COMPRESSED_ETC1_RGB, // 4 bpp
- COMPRESSED_ETC2_RGB, // 4 bpp
- COMPRESSED_ETC2_EAC_RGBA, // 8 bpp
- COMPRESSED_PVRT_RGB, // 4 bpp
- COMPRESSED_PVRT_RGBA, // 4 bpp
- COMPRESSED_ASTC_4x4_RGBA, // 8 bpp
- COMPRESSED_ASTC_8x8_RGBA // 2 bpp
- }
-
- // Texture parameters: filter mode
- // NOTE 1: Filtering considers mipmaps if available in the texture
- // NOTE 2: Filter is accordingly set for minification and magnification
- public enum TextureFilterMode
- {
- FILTER_POINT = 0, // No filter, just pixel aproximation
- FILTER_BILINEAR, // Linear filtering
- FILTER_TRILINEAR, // Trilinear filtering (linear with mipmaps)
- FILTER_ANISOTROPIC_4X, // Anisotropic filtering 4x
- FILTER_ANISOTROPIC_8X, // Anisotropic filtering 8x
- FILTER_ANISOTROPIC_16X, // Anisotropic filtering 16x
- }
-
- // Texture parameters: wrap mode
- public enum TextureWrapMode
- {
- WRAP_REPEAT = 0, // Repeats texture in tiled mode
- WRAP_CLAMP, // Clamps texture to edge pixel in tiled mode
- WRAP_MIRROR_REPEAT, // Mirrors and repeats the texture in tiled mode
- WRAP_MIRROR_CLAMP // Mirrors and clamps to border the texture in tiled mode
- }
-
- // Font type, defines generation method
- public enum FontType
- {
- FONT_DEFAULT = 0, // Default font generation, anti-aliased
- FONT_BITMAP, // Bitmap font generation, no anti-aliasing
- FONT_SDF // SDF font generation, requires external shader
- }
-
- // Color blending modes (pre-defined)
- public enum BlendMode
- {
- BLEND_ALPHA = 0, // Blend textures considering alpha (default)
- BLEND_ADDITIVE, // Blend textures adding colors
- BLEND_MULTIPLIED // Blend textures multiplying colors
- }
-
- // Gestures type
- // NOTE: It could be used as flags to enable only some gestures
- public enum Gestures
- {
- GESTURE_NONE = 0,
- GESTURE_TAP = 1,
- GESTURE_DOUBLETAP = 2,
- GESTURE_HOLD = 4,
- GESTURE_DRAG = 8,
- GESTURE_SWIPE_RIGHT = 16,
- GESTURE_SWIPE_LEFT = 32,
- GESTURE_SWIPE_UP = 64,
- GESTURE_SWIPE_DOWN = 128,
- GESTURE_PINCH_IN = 256,
- GESTURE_PINCH_OUT = 512
- }
-
- // Camera system modes
- public enum CameraMode
- {
- CAMERA_CUSTOM = 0,
- CAMERA_FREE,
- CAMERA_ORBITAL,
- CAMERA_FIRST_PERSON,
- CAMERA_THIRD_PERSON
- }
-
- // Camera projection modes
- public enum CameraType
- {
- CAMERA_PERSPECTIVE = 0,
- CAMERA_ORTHOGRAPHIC
- }
-
- // Head Mounted Display devices
- public enum VrDeviceType
- {
- HMD_DEFAULT_DEVICE = 0,
- HMD_OCULUS_RIFT_DK2,
- HMD_OCULUS_RIFT_CV1,
- HMD_OCULUS_GO,
- HMD_VALVE_HTC_VIVE,
- HMD_SONY_PSVR
- }
-
- // Type of n-patch
- public enum NPatchType
- {
- NPT_9PATCH = 0, // Npatch defined by 3x3 tiles
- NPT_3PATCH_VERTICAL, // Npatch defined by 1x3 tiles
- NPT_3PATCH_HORIZONTAL // Npatch defined by 3x1 tiles
- }
-
- // Color type, RGBA (32bit)
- [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
- public partial struct Color
- {
- public byte r;
- public byte g;
- public byte b;
- public byte a;
- }
-
- // Rectangle type
- [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
- public partial struct Rectangle
- {
- public float x;
- public float y;
- public float width;
- public float height;
- }
-
- // Image type, bpp always RGBA (32bit)
- // NOTE: Data stored in CPU memory (RAM)
- [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
- public struct Image
- {
- public IntPtr data;
- public int width;
- public int height;
- public int mipmaps;
- public int format;
- }
-
- // Texture2D type
- // NOTE: Data stored in GPU memory
- [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
- public struct Texture2D
- {
- public uint id;
- public int width;
- public int height;
- public int mipmaps;
- public int format;
- }
-
- // RenderTexture2D type, for texture rendering
- [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
- public struct RenderTexture2D
- {
- public uint id;
- public Texture2D texture;
- public Texture2D depth;
- }
-
- // Font character info
- [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
- public struct CharInfo
- {
- public int value;
- public Rectangle rec;
- public int offsetX;
- public int offsetY;
- public int advanceX;
- public IntPtr data;
- }
-
- // Font type, includes texture and charSet array data
- [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
- public struct Font
- {
- public Texture2D texture;
- public int baseSize;
- public int charsCount;
- public IntPtr chars;
- }
-
- // Camera type, defines a camera position/orientation in 3d space
- [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
- public partial struct Camera3D
- {
- public Vector3 position;
- public Vector3 target;
- public Vector3 up;
- public float fovy;
- public CameraType type;
- }
-
- // Camera2D type, defines a 2d camera
- [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
- public struct Camera2D
- {
- public Vector2 offset;
- public Vector2 target;
- public float rotation;
- public float zoom;
- }
-
- // Bounding box type
- [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
- public partial struct BoundingBox
- {
- public Vector3 min;
- public Vector3 max;
- }
-
- // Vertex data definning a mesh
- // NOTE: Data stored in CPU memory (and GPU)
- [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
- public unsafe struct Mesh
- {
- public int vertexCount;
- public int triangleCount;
-
- // Required ref struct. Looks like that has limitations due to GC and heap.
- // Maybe that is okay for games. Not using right now until I know it is worth it.
- public Span Vertices => new Span(vertices.ToPointer(), vertexCount * 3);
- public Span TexCoords => new Span(vertices.ToPointer(), vertexCount * 3);
- public Span Vertices => new Span(vertices.ToPointer(), vertexCount * 3);
-
- // public Span vertices;
- public IntPtr vertices;
- public IntPtr texcoords;
- public IntPtr texcoords2;
- public IntPtr normals;
- public IntPtr tangents;
- public IntPtr colors;
- public IntPtr indices;
-
- public IntPtr baseVertices;
- public IntPtr baseNormals;
- public IntPtr weightBias;
- public IntPtr weightId;
-
- public uint vaoId;
- public fixed uint vboId[7];
- }
-
- // Shader type (generic)
- [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
- public unsafe struct Shader
- {
- public uint id;
- public fixed int locs[Raylib.MAX_SHADER_LOCATIONS];
- }
-
- // Material texture map
- [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
- public struct MaterialMap
- {
- public Texture2D texture;
- public Color color;
- public float value;
- }
-
- // @TODO Custom array marshall issue https://github.com/ChrisDill/Raylib-cs/issues/9
- public unsafe struct _MaterialMap_e_FixedBuffer
- {
- public MaterialMap maps0;
- public MaterialMap maps1;
- public MaterialMap maps2;
- public MaterialMap maps3;
- public MaterialMap maps4;
- public MaterialMap maps5;
- public MaterialMap maps6;
- public MaterialMap maps7;
- public MaterialMap maps8;
- public MaterialMap maps9;
- public MaterialMap maps10;
- public MaterialMap maps11;
-
- public ref MaterialMap this[int index]
- {
- get
- {
- fixed (MaterialMap* e = &maps0)
- return ref e[index];
- }
- }
- }
-
- // Material type (generic)
- [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
- public struct Material
- {
- public Shader shader;
- public _MaterialMap_e_FixedBuffer maps;
- public IntPtr param;
- }
-
- // Model type
- [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
- public struct Model
- {
- public Mesh mesh;
- public Matrix transform;
- public Material material;
- }
-
- // Ray type (useful for raycast)
- [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
- public partial struct Ray
- {
- public Vector3 position;
- public Vector3 direction;
- }
-
- // Raycast hit information
- [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
- public partial struct RayHitInfo
- {
- public bool hit;
- public float distance;
- public Vector3 position;
- public Vector3 normal;
- }
-
- // Wave type, defines audio wave data
- [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
- public struct Wave
- {
- public uint sampleCount;
- public uint sampleRate;
- public uint sampleSize;
- public uint channels;
- public IntPtr data;
- }
-
- // Sound source type
- [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
- public struct Sound
- {
- public IntPtr audioBuffer;
- public uint source;
- public uint buffer;
- public int format;
- }
-
- // Audio stream type
- // NOTE: Useful to create custom audio streams not bound to a specific file
- [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
- public struct AudioStream
- {
- public uint sampleRate;
- public uint sampleSize;
- public uint channels;
- public IntPtr audioBuffer;
- public int format;
-
- public uint source;
- public IntPtr buffers;
- }
-
- // Head-Mounted-Display device parameters
- [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
- public unsafe struct VrDeviceInfo
- {
- public int hResolution;
- public int vResolution;
- public float hScreenSize;
- public float vScreenSize;
- public float vScreenCenter;
- public float eyeToScreenDistance;
- public float lensSeparationDistance;
- public float interpupillaryDistance;
- public fixed float lensDistortionValues[4];
- public fixed float chromaAbCorrection[4];
- }
-
- [SuppressUnmanagedCodeSecurity]
- public static partial class Raylib
- {
- // Used by DllImport to load the native library.
- public const string nativeLibName = "raylib";
- public const float DEG2RAD = (float)Math.PI / 180.0f;
- public const float RAD2DEG = 180.0f / (float)Math.PI;
- public const int MAX_SHADER_LOCATIONS = 32;
- public const int MAX_MATERIAL_MAPS = 12;
-
- //------------------------------------------------------------------------------------
- // Window and Graphics Device Functions (Module: core)
- //------------------------------------------------------------------------------------
-
- // Initialize window and OpenGL context
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern IntPtr InitWindow(int width, int height, string title);
-
- // Close window and unload OpenGL context
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void CloseWindow();
-
- // Check if window has been initialized successfully
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- [return:MarshalAs(UnmanagedType.I1)]
- public static extern bool IsWindowReady();
-
- // Check if KEY_ESCAPE pressed or Close icon pressed
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- [return:MarshalAs(UnmanagedType.I1)]
- public static extern bool WindowShouldClose();
-
- // Check if window has been minimized (or lost focus)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- [return:MarshalAs(UnmanagedType.I1)]
- public static extern bool IsWindowMinimized();
-
- // Toggle fullscreen mode (only PLATFORM_DESKTOP)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void ToggleFullscreen();
-
- // Set icon for window (only PLATFORM_DESKTOP)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void SetWindowIcon(Image image);
-
- // Set title for window (only PLATFORM_DESKTOP)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void SetWindowTitle(string title);
-
- // Set window position on screen (only PLATFORM_DESKTOP)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void SetWindowPosition(int x, int y);
-
- // Set monitor for the current window (fullscreen mode)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void SetWindowMonitor(int monitor);
-
- // Set window minimum dimensions (for FLAG_WINDOW_RESIZABLE)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void SetWindowMinSize(int width, int height);
-
- // Set window dimensions
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void SetWindowSize(int width, int height);
-
- // Get current screen width
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern int GetScreenWidth();
-
- // Get current screen height
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern int GetScreenHeight();
-
- // Get number of connected monitors
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern int GetMonitorCount();
-
- // Get primary monitor width
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern int GetMonitorWidth(int monitor);
-
- // Get primary monitor height
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern int GetMonitorHeight(int monitor);
-
- // Get primary monitor physical width in millimetres
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern int GetMonitorPhysicalWidth(int monitor);
-
- // Get primary monitor physical height in millimetres
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern int GetMonitorPhysicalHeight(int monitor);
-
- // Get the human-readable, UTF-8 encoded name of the primary monitor
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern string GetMonitorName(int monitor);
-
- // Get handle from window
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern IntPtr GetWindowHandle();
-
- // Get current clipboard text
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern string GetClipboard();
-
- // Set current clipboard text
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void SetClipboard(string text);
-
- // Cursor-related functions
- // Shows cursor
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void ShowCursor();
-
- // Hides cursor
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void HideCursor();
-
- // Check if cursor is not visible
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- [return:MarshalAs(UnmanagedType.I1)]
- public static extern bool IsCursorHidden();
-
- // Enables cursor (unlock cursor)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void EnableCursor();
-
- // Disables cursor (lock cursor)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void DisableCursor();
-
- // Drawing-related functions
- // Set background color (framebuffer clear color)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void ClearBackground(Color color);
-
- // Setup canvas (framebuffer) to start drawing
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void BeginDrawing();
-
- // End canvas drawing and swap buffers (double buffering)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void EndDrawing();
-
- // Initialize 2D mode with custom camera (2D)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void BeginMode2D(Camera2D camera);
-
- // Ends 2D mode with custom camera
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void EndMode2D();
-
- // Initializes 3D mode with custom camera (3D)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void BeginMode3D(Camera3D camera);
-
- // Ends 3D mode and returns to default 2D orthographic mode
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void EndMode3D();
-
- // Initializes render texture for drawing
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void BeginTextureMode(RenderTexture2D target);
-
- // Ends drawing to render texture
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void EndTextureMode();
-
- // Screen-space-related functions
- // Returns a ray trace from mouse position
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern Ray GetMouseRay(Vector2 mousePosition, Camera3D camera);
-
- // Returns the screen space position for a 3d world space position
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern Vector2 GetWorldToScreen(Vector3 position, Camera3D camera);
-
- // Returns camera transform matrix (view matrix)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern Matrix GetCameraMatrix(Camera3D camera);
-
- // timing-related functions
- // Set target FPS (maximum)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void SetTargetFPS(int fps);
-
- // Returns current FPS
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern int GetFPS();
-
- // Returns time in seconds for last frame drawn
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern float GetFrameTime();
-
- // Returns elapsed time in seconds since InitWindow()
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern double GetTime();
-
- // Color-related functions
- // Returns hexadecimal value for a Color
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern int ColorToInt(Color color);
-
- // Returns color normalized as float [0..1]
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern Vector4 ColorNormalize(Color color);
-
- // Returns HSV values for a Color
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern Vector3 ColorToHSV(Color color);
-
- // Returns a Color struct from hexadecimal value
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern Color GetColor(int hexValue);
-
- // Color fade-in or fade-out, alpha goes from 0.0f to 1.0f
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern Color Fade(Color color, float alpha);
-
- // Misc. functions
- // Activate raylib logo at startup (can be done with flags)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void ShowLogo();
-
- // Setup window configuration flags (view FLAGS)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void SetConfigFlags(ConfigFlag flags);
-
- // Enable trace log message types (bit flags based)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void SetTraceLog(byte types);
-
- // Show trace log messages (LOG_INFO, LOG_WARNING, LOG_ERROR, LOG_DEBUG)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void TraceLog(TraceLogType logType, string text, params object[] args);
-
- // Takes a screenshot of current screen (saved a .png)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void TakeScreenshot(string fileName);
-
- // Returns a random value between min and max (both included)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern int GetRandomValue(int min, int max);
-
- // Files management functions
- // Check file extension
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- [return:MarshalAs(UnmanagedType.I1)]
- public static extern bool IsFileExtension(string fileName, string ext);
-
- // Get pointer to extension for a filename string
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern string GetExtension(string fileName);
-
- // Get pointer to filename for a path string
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern string GetFileName(string filePath);
-
- // Get full path for a given fileName (uses static string)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern string GetDirectoryPath(string fileName);
-
- // Get current working directory (uses static string)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern string GetWorkingDirectory();
-
- // Change working directory, returns true if success
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- [return:MarshalAs(UnmanagedType.I1)]
- public static extern bool ChangeDirectory(string dir);
-
- // Check if a file has been dropped into window
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- [return:MarshalAs(UnmanagedType.I1)]
- public static extern bool IsFileDropped();
-
- // Get dropped files names
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- private static extern IntPtr GetDroppedFiles(ref int count);
- // Get Dropped files Pointer translation
- public static string[] GetDroppedFiles()
- {
- int count = 0;
- IntPtr pointer = GetDroppedFiles(ref count);
-
- string[] s = new string[count];
- char[] word;
- int i, j, size;
-
- //TODO: this is a mess, find a better way
- unsafe
- {
- byte** str = (byte**)pointer.ToPointer();
-
- i = 0;
- while (i < count)
- {
- j = 0;
- while (str[i][j] != 0)
- j++;
- size = j;
- word = new char[size];
- j = 0;
- while (str[i][j] != 0)
- {
- word[j] = (char)str[i][j];
- j++;
- }
- s[i] = new string(word);
-
- i++;
- }
- }
- return s;
- }
-
- // Clear dropped files paths buffer
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void ClearDroppedFiles();
-
- // Persistent storage management
- // Save integer value to storage file (to defined position)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void StorageSaveValue(int position, int value);
-
- // Load integer value from storage file (from defined position)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern int StorageLoadValue(int position);
-
- //------------------------------------------------------------------------------------
- // Input Handling Functions (Module: core)
- //------------------------------------------------------------------------------------
-
- // Input-related functions: keyboard
- // Detect if a key has been pressed once
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- [return:MarshalAs(UnmanagedType.I1)]
- public static extern bool IsKeyPressed(KeyboardKey key);
-
- // Detect if a key is being pressed
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- [return:MarshalAs(UnmanagedType.I1)]
- public static extern bool IsKeyDown(KeyboardKey key);
-
- // Detect if a key has been released once
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- [return:MarshalAs(UnmanagedType.I1)]
- public static extern bool IsKeyReleased(KeyboardKey key);
-
- // Detect if a key is NOT being pressed
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- [return:MarshalAs(UnmanagedType.I1)]
- public static extern bool IsKeyUp(KeyboardKey key);
-
- // Get latest key pressed
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern int GetKeyPressed();
-
- // Set a custom key to exit program (default is ESC)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void SetExitKey(KeyboardKey key);
-
- // Input-related functions: gamepads
- // Detect if a gamepad is available
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- [return:MarshalAs(UnmanagedType.I1)]
- public static extern bool IsGamepadAvailable(GamepadNumber gamepad);
-
- // Check gamepad name (if available)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- [return:MarshalAs(UnmanagedType.I1)]
- public static extern bool IsGamepadName(GamepadNumber gamepad, string name);
-
- // Return gamepad internal name id
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern string GetGamepadName(GamepadNumber gamepad);
-
- // Detect if a gamepad button has been pressed once
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- [return:MarshalAs(UnmanagedType.I1)]
- public static extern bool IsGamepadButtonPressed(GamepadNumber gamepad, int button);
-
- // Detect if a gamepad button is being pressed
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- [return:MarshalAs(UnmanagedType.I1)]
- public static extern bool IsGamepadButtonDown(GamepadNumber gamepad, int button);
-
- // Detect if a gamepad button has been released once
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- [return:MarshalAs(UnmanagedType.I1)]
- public static extern bool IsGamepadButtonReleased(GamepadNumber gamepad, int button);
-
- // Detect if a gamepad button is NOT being pressed
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- [return:MarshalAs(UnmanagedType.I1)]
- public static extern bool IsGamepadButtonUp(GamepadNumber gamepad, int button);
-
- // Get the last gamepad button pressed
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern int GetGamepadButtonPressed();
-
- // Return gamepad axis count for a gamepad
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern int GetGamepadAxisCount(GamepadNumber gamepad);
-
- // Return axis movement value for a gamepad axis
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern float GetGamepadAxisMovement(GamepadNumber gamepad, int axis);
-
- // Input-related functions: mouse
- // Detect if a mouse button has been pressed once
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern bool IsMouseButtonPressed(MouseButton button);
-
- // Detect if a mouse button is being pressed
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern bool IsMouseButtonDown(MouseButton button);
-
- // Detect if a mouse button has been released once
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern bool IsMouseButtonReleased(MouseButton button);
-
- // Detect if a mouse button is NOT being pressed
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern bool IsMouseButtonUp(MouseButton button);
-
- // Returns mouse position X
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern int GetMouseX();
-
- // Returns mouse position Y
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern int GetMouseY();
-
- // Returns mouse position XY
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern Vector2 GetMousePosition();
-
- // Set mouse position XY
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void SetMousePosition(Vector2 position);
-
- // Set mouse scaling
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void SetMouseScale(float scaleX, float scaleY);
-
- // Set mouse scaling XY
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void SetMouseOffset(float offsetX, float offsetY);
-
- // Returns mouse wheel movement Y
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern int GetMouseWheelMove();
-
- // Input-related functions: touch
- // Returns touch position X for touch point 0 (relative to screen size)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern int GetTouchX();
-
- // Returns touch position Y for touch point 0 (relative to screen size)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern int GetTouchY();
-
- // Returns touch position XY for a touch point index (relative to screen size)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern Vector2 GetTouchPosition(int index);
-
- //------------------------------------------------------------------------------------
- // Gestures and Touch Handling Functions (Module: gestures)
- //------------------------------------------------------------------------------------
- // Enable a set of gestures using flags
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void SetGesturesEnabled(Gestures gestureFlags);
-
- // Check if a gesture have been detected
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern bool IsGestureDetected(Gestures gesture);
-
- // Get latest detected gesture
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern int GetGestureDetected();
-
- // Get touch points count
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern int GetTouchPointsCount();
-
- // Get gesture hold time in milliseconds
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern float GetGestureHoldDuration();
-
- // Get gesture drag vector
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern Vector2 GetGestureDragVector();
-
- // Get gesture drag angle
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern float GetGestureDragAngle();
-
- // Get gesture pinch delta
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern Vector2 GetGesturePinchVector();
-
- // Get gesture pinch angle
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern float GetGesturePinchAngle();
-
- //------------------------------------------------------------------------------------
- // Camera System Functions (Module: camera)
- //------------------------------------------------------------------------------------
-
- // Set camera mode (multiple camera modes available)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void SetCameraMode(Camera3D camera, CameraMode mode);
-
- // Update camera position for selected mode
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void UpdateCamera(ref Camera3D camera);
-
- // Set camera pan key to combine with mouse movement (free camera)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void SetCameraPanControl(int panKey);
-
- // Set camera alt key to combine with mouse movement (free camera)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void SetCameraAltControl(int altKey);
-
- // Set camera smooth zoom key to combine with mouse (free camera)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void SetCameraSmoothZoomControl(int szKey);
-
- // Set camera move controls (1st person and 3rd person cameras)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void SetCameraMoveControls(int frontKey, int backKey, int rightKey, int leftKey, int upKey, int downKey);
-
- //------------------------------------------------------------------------------------
- // Basic Shapes Drawing Functions (Module: shapes)
- //------------------------------------------------------------------------------------
-
- // Draw a pixel
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void DrawPixel(int posX, int posY, Color color);
-
- // Draw a pixel (Vector version)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void DrawPixelV(Vector2 position, Color color);
-
- // Draw a line
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void DrawLine(int startPosX, int startPosY, int endPosX, int endPosY, Color color);
-
- // Draw a line (Vector version)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void DrawLineV(Vector2 startPos, Vector2 endPos, Color color);
-
- // Draw a line defining thickness
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void DrawLineEx(Vector2 startPos, Vector2 endPos, float thick, Color color);
-
- // Draw a line using cubic-bezier curves in-out
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void DrawLineBezier(Vector2 startPos, Vector2 endPos, float thick, Color color);
-
- // Draw a color-filled circle
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void DrawCircle(int centerX, int centerY, float radius, Color color);
-
- // Draw a gradient-filled circle
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void DrawCircleGradient(int centerX, int centerY, float radius, Color color1, Color color2);
-
- // Draw a color-filled circle (Vector version)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void DrawCircleV(Vector2 center, float radius, Color color);
-
- // Draw circle outline
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void DrawCircleLines(int centerX, int centerY, float radius, Color color);
-
- // Draw a color-filled rectangle
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void DrawRectangle(int posX, int posY, int width, int height, Color color);
-
- // Draw a color-filled rectangle (Vector version)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void DrawRectangleV(Vector2 position, Vector2 size, Color color);
-
- // Draw a color-filled rectangle
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void DrawRectangleRec(Rectangle rec, Color color);
-
- // Draw a color-filled rectangle with pro parameters
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void DrawRectanglePro(Rectangle rec, Vector2 origin, float rotation, Color color);
-
- // Draw a vertical-gradient-filled rectangle
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void DrawRectangleGradientV(int posX, int posY, int width, int height, Color color1, Color color2);
-
- // Draw a horizontal-gradient-filled rectangle
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void DrawRectangleGradientH(int posX, int posY, int width, int height, Color color1, Color color2);
-
- // Draw a gradient-filled rectangle with custom vertex colors
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void DrawRectangleGradientEx(Rectangle rec, Color col1, Color col2, Color col3, Color col4);
-
- // Draw rectangle outline
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void DrawRectangleLines(int posX, int posY, int width, int height, Color color);
-
- // Draw rectangle outline with extended parameters
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void DrawRectangleLinesEx(Rectangle rec, int lineThick, Color color);
-
- // Draw a color-filled triangle
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void DrawTriangle(Vector2 v1, Vector2 v2, Vector2 v3, Color color);
-
- // Draw triangle outline
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void DrawTriangleLines(Vector2 v1, Vector2 v2, Vector2 v3, Color color);
-
- // Draw a regular polygon (Vector version)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void DrawPoly(Vector2 center, int sides, float radius, float rotation, Color color);
-
- // Draw a closed polygon defined by points
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void DrawPolyEx(Vector2[] points, int numPoints, Color color);
-
- // Draw polygon lines
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void DrawPolyExLines(Vector2[] points, int numPoints, Color color);
-
- // Check collision between two rectangles
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- [return:MarshalAs(UnmanagedType.I1)]
- public static extern bool CheckCollisionRecs(Rectangle rec1, Rectangle rec2);
-
- // Check collision between two circles
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- [return:MarshalAs(UnmanagedType.I1)]
- public static extern bool CheckCollisionCircles(Vector2 center1, float radius1, Vector2 center2, float radius2);
-
- // Check collision between circle and rectangle
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- [return:MarshalAs(UnmanagedType.I1)]
- public static extern bool CheckCollisionCircleRec(Vector2 center, float radius, Rectangle rec);
-
- // Get collision rectangle for two rectangles collision
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern Rectangle GetCollisionRec(Rectangle rec1, Rectangle rec2);
-
- // Check if point is inside rectangle
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- [return:MarshalAs(UnmanagedType.I1)]
- public static extern bool CheckCollisionPointRec(Vector2 point, Rectangle rec);
-
- // Check if point is inside circle
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- [return:MarshalAs(UnmanagedType.I1)]
- public static extern bool CheckCollisionPointCircle(Vector2 point, Vector2 center, float radius);
-
- // Check if point is inside a triangle
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- [return:MarshalAs(UnmanagedType.I1)]
- public static extern bool CheckCollisionPointTriangle(Vector2 point, Vector2 p1, Vector2 p2, Vector2 p3);
-
- //------------------------------------------------------------------------------------
- // Texture Loading and Drawing Functions (Module: textures)
- //------------------------------------------------------------------------------------
-
- // Load image from file into CPU memory (RAM)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern Image LoadImage(string fileName);
-
- // Load image from Color array data (RGBA - 32bit)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern Image LoadImageEx(Color[] pixels, int width, int height);
-
- // Load image from raw data with parameters
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern Image LoadImagePro(IntPtr data, int width, int height, int format);
-
- // Load image from RAW file data
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern Image LoadImageRaw(string fileName, int width, int height, int format, int headerSize);
-
- // Export image as a PNG file
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void ExportImage(string fileName, Image image);
-
- // Load texture from file into GPU memory (VRAM)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern Texture2D LoadTexture(string fileName);
-
- // Load texture from image data
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern Texture2D LoadTextureFromImage(Image image);
-
- // Load texture for rendering (framebuffer)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern RenderTexture2D LoadRenderTexture(int width, int height);
-
- // Unload image from CPU memory (RAM)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void UnloadImage(Image image);
-
- // Unload texture from GPU memory (VRAM)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void UnloadTexture(Texture2D texture);
-
- // Unload render texture from GPU memory (VRAM)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void UnloadRenderTexture(RenderTexture2D target);
-
- // Get pixel data from image as a Color struct array
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern IntPtr GetImageData(Image image);
-
- // Get pixel data from image as Vector4 array (float normalized)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern Vector4[] GetImageDataNormalized(Image image);
-
- // Get pixel data size in bytes (image or texture)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern int GetPixelDataSize(int width, int height, int format);
-
- // Get pixel data from GPU texture and return an Image
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern Image GetTextureData(Texture2D texture);
-
- // Update GPU texture with new data
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void UpdateTexture(Texture2D texture, IntPtr pixels);
-
- // Image manipulation functions
- // Create an image duplicate (useful for transformations)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern Image ImageCopy(Image image);
-
- // Convert image to POT (power-of-two)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void ImageToPOT(ref Image image, Color fillColor);
-
- // Convert image data to desired format
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void ImageFormat(ref Image image, int newFormat);
-
- // Apply alpha mask to image
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void ImageAlphaMask(ref Image image, Image alphaMask);
-
- // Clear alpha channel to desired color
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void ImageAlphaClear(ref Image image, Color color, float threshold);
-
- // Crop image depending on alpha value
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void ImageAlphaCrop(ref Image image, float threshold);
-
- // Premultiply alpha channel
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void ImageAlphaPremultiply(ref Image image);
-
- // Crop an image to a defined rectangle
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void ImageCrop(ref Image image, Rectangle crop);
-
- // Resize image (bilinear filtering)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void ImageResize(ref Image image, int newWidth, int newHeight);
-
- // Resize image (Nearest-Neighbor scaling algorithm)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void ImageResizeNN(ref Image image, int newWidth, int newHeight);
-
- // Resize canvas and fill with color
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void ImageResizeCanvas(ref Image image, int newWidth, int newHeight, int offsetX, int offsetY, Color color);
-
- // Generate all mipmap levels for a provided image
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void ImageMipmaps(ref Image image);
-
- // Dither image data to 16bpp or lower (Floyd-Steinberg dithering)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void ImageDither(ref Image image, int rBpp, int gBpp, int bBpp, int aBpp);
-
- // Create an image from text (default font)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern Image ImageText(string text, int fontSize, Color color);
-
- // Create an image from text (custom sprite font)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern Image ImageTextEx(Font font, string text, float fontSize, float spacing, Color tint);
-
- // Draw a source image within a destination image
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void ImageDraw(ref Image dst, Image src, Rectangle srcRec, Rectangle dstRec);
-
- // Draw rectangle within an image
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void ImageDrawRectangle(ref Image dst, Vector2 position, Rectangle rec, Color color);
-
- // Draw text (default font) within an image (destination)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void ImageDrawText(ref Image dst, Vector2 position, string text, int fontSize, Color color);
-
- // Draw text (custom sprite font) within an image (destination)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void ImageDrawTextEx(ref Image dst, Vector2 position, Font font, string text, float fontSize, float spacing, Color color);
-
- // Flip image vertically
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void ImageFlipVertical(ref Image image);
-
- // Flip image horizontally
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void ImageFlipHorizontal(ref Image image);
-
- // Rotate image clockwise 90deg
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void ImageRotateCW(Image image);
-
- // Rotate image counter-clockwise 90deg
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void ImageRotateCCW(Image image);
-
- // Modify image color: tint
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void ImageColorTint(ref Image image, Color color);
-
- // Modify image color: invert
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void ImageColorInvert(ref Image image);
-
- // Modify image color: grayscale
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void ImageColorGrayscale(ref Image image);
-
- // Modify image color: contrast (-100 to 100)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void ImageColorContrast(ref Image image, float contrast);
-
- // Modify image color: brightness (-255 to 255)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void ImageColorBrightness(ref Image image, int brightness);
-
- // Modify image color: replace color
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void ImageColorReplace(Image image, Color color, Color replace);
-
- // Image generation functions
- // Generate image: plain color
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern Image GenImageColor(int width, int height, Color color);
-
- // Generate image: vertical gradient
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern Image GenImageGradientV(int width, int height, Color top, Color bottom);
-
- // Generate image: horizontal gradient
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern Image GenImageGradientH(int width, int height, Color left, Color right);
-
- // Generate image: radial gradient
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern Image GenImageGradientRadial(int width, int height, float density, Color inner, Color outer);
-
- // Generate image: checked
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern Image GenImageChecked(int width, int height, int checksX, int checksY, Color col1, Color col2);
-
- // Generate image: white noise
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern Image GenImageWhiteNoise(int width, int height, float factor);
-
- // Generate image: perlin noise
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern Image GenImagePerlinNoise(int width, int height, int offsetX, int offsetY, float scale);
-
- // Generate image: cellular algorithm. Bigger tileSize means bigger cells
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern Image GenImageCellular(int width, int height, int tileSize);
-
- // Texture2D configuration functions
- // Generate GPU mipmaps for a texture
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void GenTextureMipmaps(ref Texture2D texture);
-
- // Set texture scaling filter mode
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void SetTextureFilter(Texture2D texture, TextureFilterMode filterMode);
-
- // Set texture wrapping mode
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void SetTextureWrap(Texture2D texture, TextureWrapMode wrapMode);
-
- // Texture2D drawing functions
- // Draw a Texture2D
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void DrawTexture(Texture2D texture, int posX, int posY, Color tint);
-
- // Draw a Texture2D with position defined as Vector2
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void DrawTextureV(Texture2D texture, Vector2 position, Color tint);
-
- // Draw a Texture2D with extended parameters
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void DrawTextureEx(Texture2D texture, Vector2 position, float rotation, float scale, Color tint);
-
- // Draw a part of a texture defined by a rectangle
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void DrawTextureRec(Texture2D texture, Rectangle sourceRec, Vector2 position, Color tint);
-
- // Draw texture quad with tiling and offset parameters
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void DrawTextureQuad(Texture2D texture, Vector2 tiling, Vector2 offset, Rectangle quad, Color tint);
-
- // Draw a part of a texture defined by a rectangle with 'pro' parameters
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void DrawTexturePro(Texture2D texture, Rectangle sourceRec, Rectangle destRec, Vector2 origin, float rotation, Color tint);
-
- //------------------------------------------------------------------------------------
- // Font Loading and Text Drawing Functions (Module: text)
- //------------------------------------------------------------------------------------
-
- // Font loading/unloading functions
- // Get the default Font
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern Font GetFontDefault();
-
- // Load font from file into GPU memory (VRAM)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern Font LoadFont(string fileName);
-
- // Load font from file with extended parameters
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern Font LoadFontEx(string fileName, int fontSize, int charsCount, int[] fontChars);
-
- // Load font data for further use
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern IntPtr LoadFontData(string fileName, int fontSize, int[] fontChars, int charsCount, bool sdf);
-
- // Generate image font atlas using chars info
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern Image GenImageFontAtlas(IntPtr chars, int fontSize, int charsCount, int padding, int packMethod);
-
- // Unload Font from GPU memory (VRAM)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void UnloadFont(Font font);
-
- // Text drawing functions
- // Shows current FPS
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void DrawFPS(int posX, int posY);
-
- // Draw text (using default font)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void DrawText(string text, int posX, int posY, int fontSize, Color color);
-
- // Draw text using font and additional parameters
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void DrawTextEx(Font font, string text, Vector2 position, float fontSize, float spacing, Color tint);
-
- // Measure string width for default font
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern int MeasureText(string text, int fontSize);
-
- // Text misc. functions
- // Measure string size for Font
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern Vector2 MeasureTextEx(Font font, string text, float fontSize, float spacing);
-
- // Get index position for a unicode character on font
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern int GetGlyphIndex(Font font, int character);
-
- //------------------------------------------------------------------------------------
- // Basic 3d Shapes Drawing Functions (Module: models)
- //------------------------------------------------------------------------------------
-
- // Basic geometric 3D shapes drawing functions
- // Draw a line in 3D world space
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void DrawLine3D(Vector3 startPos, Vector3 endPos, Color color);
-
- // Draw a circle in 3D world space
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void DrawCircle3D(Vector3 center, float radius, Vector3 rotationAxis, float rotationAngle, Color color);
-
- // Draw cube
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void DrawCube(Vector3 position, float width, float height, float length, Color color);
-
- // Draw cube (Vector version)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void DrawCubeV(Vector3 position, Vector3 size, Color color);
-
- // Draw cube wires
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void DrawCubeWires(Vector3 position, float width, float height, float length, Color color);
-
- // Draw cube textured
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void DrawCubeTexture(Texture2D texture, Vector3 position, float width, float height, float length, Color color);
-
- // Draw sphere
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void DrawSphere(Vector3 centerPos, float radius, Color color);
-
- // Draw sphere with extended parameters
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void DrawSphereEx(Vector3 centerPos, float radius, int rings, int slices, Color color);
-
- // Draw sphere wires
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void DrawSphereWires(Vector3 centerPos, float radius, int rings, int slices, Color color);
-
- // Draw a cylinder/cone
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void DrawCylinder(Vector3 position, float radiusTop, float radiusBottom, float height, int slices, Color color);
-
- // Draw a cylinder/cone wires
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void DrawCylinderWires(Vector3 position, float radiusTop, float radiusBottom, float height, int slices, Color color);
-
- // Draw a plane XZ
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void DrawPlane(Vector3 centerPos, Vector2 size, Color color);
-
- // Draw a ray line
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void DrawRay(Ray ray, Color color);
-
- // Draw a grid (centered at (0, 0, 0))
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void DrawGrid(int slices, float spacing);
-
- // Draw simple gizmo
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void DrawGizmo(Vector3 position);
-
- //------------------------------------------------------------------------------------
- // Model 3d Loading and Drawing Functions (Module: models)
- //------------------------------------------------------------------------------------
-
- // Model loading/unloading functions
- // Load model from files (mesh and material)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern Model LoadModel(string fileName);
-
- // Load model from generated mesh
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern Model LoadModelFromMesh(Mesh mesh);
-
- // Unload model from memory (RAM and/or VRAM)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void UnloadModel(Model model);
-
- // Mesh loading/unloading functions
- // Load mesh from file
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern Mesh LoadMesh(string fileName);
-
- // Unload mesh from memory (RAM and/or VRAM)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void UnloadMesh(ref Mesh mesh);
-
- // Export mesh as an OBJ file
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void ExportMesh(string fileName, Mesh mesh);
-
- // Mesh manipulation functions
- // Compute mesh bounding box limits
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern BoundingBox MeshBoundingBox(Mesh mesh);
-
- // Compute mesh tangents
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void MeshTangents(ref Mesh mesh);
-
- // Compute mesh binormals
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void MeshBinormals(ref Mesh mesh);
-
- // Mesh generation functions
- // Generate plane mesh (with subdivisions)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern Mesh GenMeshPlane(float width, float length, int resX, int resZ);
-
- // Generate cuboid mesh
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern Mesh GenMeshCube(float width, float height, float length);
-
- // Generate sphere mesh (standard sphere)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern Mesh GenMeshSphere(float radius, int rings, int slices);
-
- // Generate half-sphere mesh (no bottom cap)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern Mesh GenMeshHemiSphere(float radius, int rings, int slices);
-
- // Generate cylinder mesh
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern Mesh GenMeshCylinder(float radius, float height, int slices);
-
- // Generate torus mesh
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern Mesh GenMeshTorus(float radius, float size, int radSeg, int sides);
-
- // Generate trefoil knot mesh
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern Mesh GenMeshKnot(float radius, float size, int radSeg, int sides);
-
- // Generate heightmap mesh from image data
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern Mesh GenMeshHeightmap(Image heightmap, Vector3 size);
-
- // Generate cubes-based map mesh from image data
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern Mesh GenMeshCubicmap(Image cubicmap, Vector3 cubeSize);
-
- // Material loading/unloading functions
- // Load material from file
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern Material LoadMaterial(string fileName);
-
- // Load default material (Supports: DIFFUSE, SPECULAR, NORMAL maps)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern Material LoadMaterialDefault();
-
- // Unload material from GPU memory (VRAM)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void UnloadMaterial(Material material);
-
- // Model drawing functions
- // Draw a model (with texture if set)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void DrawModel(Model model, Vector3 position, float scale, Color tint);
-
- // Draw a model with extended parameters
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void DrawModelEx(Model model, Vector3 position, Vector3 rotationAxis, float rotationAngle, Vector3 scale, Color tint);
-
- // Draw a model wires (with texture if set)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void DrawModelWires(Model model, Vector3 position, float scale, Color tint);
-
- // Draw a model wires (with texture if set) with extended parameters
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void DrawModelWiresEx(Model model, Vector3 position, Vector3 rotationAxis, float rotationAngle, Vector3 scale, Color tint);
-
- // Draw bounding box (wires)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void DrawBoundingBox(BoundingBox box, Color color);
-
- // Draw a billboard texture
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void DrawBillboard(Camera3D camera, Texture2D texture, Vector3 center, float size, Color tint);
-
- // Draw a billboard texture defined by sourceRec
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void DrawBillboardRec(Camera3D camera, Texture2D texture, Rectangle sourceRec, Vector3 center, float size, Color tint);
-
- // Collision detection functions
- // Detect collision between two spheres
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- [return:MarshalAs(UnmanagedType.I1)]
- public static extern bool CheckCollisionSpheres(Vector3 centerA, float radiusA, Vector3 centerB, float radiusB);
-
- // Detect collision between two bounding boxes
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- [return:MarshalAs(UnmanagedType.I1)]
- public static extern bool CheckCollisionBoxes(BoundingBox box1, BoundingBox box2);
-
- // Detect collision between box and sphere
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- [return:MarshalAs(UnmanagedType.I1)]
- public static extern bool CheckCollisionBoxSphere(BoundingBox box, Vector3 centerSphere, float radiusSphere);
-
- // Detect collision between ray and sphere
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- [return:MarshalAs(UnmanagedType.I1)]
- public static extern bool CheckCollisionRaySphere(Ray ray, Vector3 spherePosition, float sphereRadius);
-
- // Detect collision between ray and sphere, returns collision point
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- [return:MarshalAs(UnmanagedType.I1)]
- public static extern bool CheckCollisionRaySphereEx(Ray ray, Vector3 spherePosition, float sphereRadius, Vector3 collisionPoint);
-
- // Detect collision between ray and box
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- [return:MarshalAs(UnmanagedType.I1)]
- public static extern bool CheckCollisionRayBox(Ray ray, BoundingBox box);
-
- // Get collision info between ray and model
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern RayHitInfo GetCollisionRayModel(Ray ray, ref Model model);
-
- // Get collision info between ray and triangle
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern RayHitInfo GetCollisionRayTriangle(Ray ray, Vector3 p1, Vector3 p2, Vector3 p3);
-
- // Get collision info between ray and ground plane (Y-normal plane)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern RayHitInfo GetCollisionRayGround(Ray ray, float groundHeight);
-
- //------------------------------------------------------------------------------------
- // Shaders System Functions (Module: rlgl)
- // NOTE: This functions are useless when using OpenGL 1.1
- //------------------------------------------------------------------------------------
-
- // Shader loading/unloading functions
- // Load chars array from text file
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern string LoadText(string fileName);
-
- // Load shader from files and bind default locations
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern Shader LoadShader(string vsFileName, string fsFileName);
-
- // Load shader from code strings and bind default locations
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern Shader LoadShaderCode(string vsCode, string fsCode);
-
- // Unload shader from GPU memory (VRAM)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void UnloadShader(Shader shader);
-
- // Get default shader
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern Shader GetShaderDefault();
-
- // Get default texture
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern Texture2D GetTextureDefault();
-
- // Shader configuration functions
- // Get shader uniform location
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern int GetShaderLocation(Shader shader, string uniformName);
-
- // Set shader uniform value (float)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void SetShaderValue(Shader shader, int uniformLoc, float[] value, int size);
-
- // Set shader uniform value (int)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void SetShaderValuei(Shader shader, int uniformLoc, int[] value, int size);
-
- // Set shader uniform value (matrix 4x4)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void SetShaderValueMatrix(Shader shader, int uniformLoc, Matrix mat);
-
- // Set a custom projection matrix (replaces internal projection matrix)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void SetMatrixProjection(Matrix proj);
-
- // Set a custom modelview matrix (replaces internal modelview matrix)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void SetMatrixModelview(Matrix view);
-
- // Get internal modelview matrix
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern Matrix GetMatrixModelview();
-
- // Texture maps generation (PBR)
- // NOTE: Required shaders should be provided
- // Generate cubemap texture from HDR texture
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern Texture2D GenTextureCubemap(Shader shader, Texture2D skyHDR, int size);
-
- // Generate irradiance texture using cubemap data
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern Texture2D GenTextureIrradiance(Shader shader, Texture2D cubemap, int size);
-
- // Generate prefilter texture using cubemap data
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern Texture2D GenTexturePrefilter(Shader shader, Texture2D cubemap, int size);
-
- // Generate BRDF texture using cubemap data
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern Texture2D GenTextureBRDF(Shader shader, Texture2D cubemap, int size);
-
- // Shading begin/end functions
- // Begin custom shader drawing
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void BeginShaderMode(Shader shader);
-
- // End custom shader drawing (use default shader)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void EndShaderMode();
-
- // Begin blending mode (alpha, additive, multiplied)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void BeginBlendMode(BlendMode mode);
-
- // End blending mode (reset to default: alpha blending)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void EndBlendMode();
-
- // VR control functions
- // Get VR device information for some standard devices
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern VrDeviceInfo GetVrDeviceInfo(VrDeviceType vrDeviceType);
-
- // Init VR simulator for selected device parameters
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void InitVrSimulator(VrDeviceInfo info);
-
- // Close VR simulator for current device
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void CloseVrSimulator();
-
- // Detect if VR simulator is ready
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- [return:MarshalAs(UnmanagedType.I1)]
- public static extern bool IsVrSimulatorReady();
-
- // Set VR distortion shader for stereoscopic rendering
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void SetVrDistortionShader(Shader shader);
-
- // Update VR tracking (position and orientation) and camera
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void UpdateVrTracking(Camera3D camera);
-
- // Enable/Disable VR experience
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void ToggleVrMode();
-
- // Begin VR simulator stereo rendering
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void BeginVrDrawing();
-
- // End VR simulator stereo rendering
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void EndVrDrawing();
-
- //------------------------------------------------------------------------------------
- // Audio Loading and Playing Functions (Module: audio)
- //------------------------------------------------------------------------------------
-
- // Audio device management functions
- // Initialize audio device and context
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void InitAudioDevice();
-
- // Close the audio device and context
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void CloseAudioDevice();
-
- // Check if audio device has been initialized successfully
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- [return:MarshalAs(UnmanagedType.I1)]
- public static extern bool IsAudioDeviceReady();
-
- // Set master volume (listener)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void SetMasterVolume(float volume);
-
- // Wave/Sound loading/unloading functions
- // Load wave data from file
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern Wave LoadWave(string fileName);
-
- // Load wave data from raw array data
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern Wave LoadWaveEx(IntPtr data, int sampleCount, int sampleRate, int sampleSize, int channels);
-
- // Load sound from file
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern Sound LoadSound(string fileName);
-
- // Load sound from wave data
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern Sound LoadSoundFromWave(Wave wave);
-
- // Update sound buffer with new data
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void UpdateSound(Sound sound, byte[] data, int samplesCount);
-
- // Unload wave data
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void UnloadWave(Wave wave);
-
- // Unload sound
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void UnloadSound(Sound sound);
-
- // Wave/Sound management functions
- // Play a sound
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void PlaySound(Sound sound);
-
- // Pause a sound
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void PauseSound(Sound sound);
-
- // Resume a paused sound
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void ResumeSound(Sound sound);
-
- // Stop playing a sound
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void StopSound(Sound sound);
-
- // Check if a sound is currently playing
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- [return:MarshalAs(UnmanagedType.I1)]
- public static extern bool IsSoundPlaying(Sound sound);
-
- // Set volume for a sound (1.0 is max level)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void SetSoundVolume(Sound sound, float volume);
-
- // Set pitch for a sound (1.0 is base level)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void SetSoundPitch(Sound sound, float pitch);
-
- // Convert wave data to desired format
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void WaveFormat(ref Wave wave, int sampleRate, int sampleSize, int channels);
-
- // Copy a wave to a new wave
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern Wave WaveCopy(Wave wave);
-
- // Crop a wave to defined samples range
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void WaveCrop(ref Wave wave, int initSample, int finalSample);
-
- // Get samples data from wave as a floats array
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern float[] GetWaveData(Wave wave);
-
- // Music management functions
- // Load IntPtr stream from file
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern IntPtr LoadMusicStream(string fileName);
-
- // Unload IntPtr stream
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void UnloadMusicStream(IntPtr music);
-
- // Start IntPtr playing
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void PlayMusicStream(IntPtr music);
-
- // Updates buffers for IntPtr streaming
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void UpdateMusicStream(IntPtr music);
-
- // Stop IntPtr playing
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void StopMusicStream(IntPtr music);
-
- // Pause IntPtr playing
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void PauseMusicStream(IntPtr music);
-
- // Resume playing paused music
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void ResumeMusicStream(IntPtr music);
-
- // Check if IntPtr is playing
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- [return:MarshalAs(UnmanagedType.I1)]
- public static extern bool IsMusicPlaying(IntPtr music);
-
- // Set volume for IntPtr (1.0 is max level)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void SetMusicVolume(IntPtr music, float volume);
-
- // Set pitch for a IntPtr (1.0 is base level)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void SetMusicPitch(IntPtr music, float pitch);
-
- // Set IntPtr loop count (loop repeats)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void SetMusicLoopCount(IntPtr music, int count);
-
- // Get IntPtr time length (in seconds)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern float GetMusicTimeLength(IntPtr music);
-
- // Get current IntPtr time played (in seconds)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern float GetMusicTimePlayed(IntPtr music);
-
- // AudioStream management functions
- // Init audio stream (to stream raw audio pcm data)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern AudioStream InitAudioStream(uint sampleRate, uint sampleSize, uint channels);
-
- // Update audio stream buffers with data
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl, EntryPoint = "UpdateAudioStream")]
- private static extern void UpdateAudioStreamInternal(AudioStream stream, IntPtr data, int samplesCount);
-
- // Update audio stream buffers with data(byte)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void UpdateAudioStream(AudioStream stream, ref byte[] data, int samplesCount);
-
- // Update audio stream buffers with data(short)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void UpdateAudioStream(AudioStream stream, ref short[] data, int samplesCount);
-
- // Update audio stream buffers with data(float)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void UpdateAudioStream(AudioStream stream, ref float[] data, int samplesCount);
-
- // Close audio stream and free memory
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void CloseAudioStream(AudioStream stream);
-
- // Check if any audio stream buffers requires refill
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- [return:MarshalAs(UnmanagedType.I1)]
- public static extern bool IsAudioBufferProcessed(AudioStream stream);
-
- // Play audio stream
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void PlayAudioStream(AudioStream stream);
-
- // Pause audio stream
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void PauseAudioStream(AudioStream stream);
-
- // Resume audio stream
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void ResumeAudioStream(AudioStream stream);
-
- // Check if audio stream is playing
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- [return:MarshalAs(UnmanagedType.I1)]
- public static extern bool IsAudioStreamPlaying(AudioStream stream);
-
- // Stop audio stream
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void StopAudioStream(AudioStream stream);
-
- // Set volume for audio stream (1.0 is max level)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void SetAudioStreamVolume(AudioStream stream, float volume);
-
- // Set pitch for audio stream (1.0 is base level)
- [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
- public static extern void SetAudioStreamPitch(AudioStream stream, float pitch);
- }
-}
+/* Raylib.cs
+*
+* Copyright 2019 Chris Dill
+*
+* Release under zLib License.
+* See LICENSE for details.
+*/
+
+using System;
+using System.Runtime.InteropServices;
+using System.Security;
+
+namespace Raylib
+{
+ // Vector2 type
+ [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
+ public partial struct Vector2
+ {
+ public float x;
+ public float y;
+ }
+
+ // Vector3 type
+ [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
+ public partial struct Vector3
+ {
+ public float x;
+ public float y;
+ public float z;
+ }
+
+ // Vector4 type
+ [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
+ public partial struct Vector4
+ {
+ public float x;
+ public float y;
+ public float z;
+ public float w;
+ }
+
+ // Matrix type (OpenGL style 4x4 - right handed, column major)
+ [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
+ public partial struct Matrix
+ {
+ public float m0;
+ public float m4;
+ public float m8;
+ public float m12;
+ public float m1;
+ public float m5;
+ public float m9;
+ public float m13;
+ public float m2;
+ public float m6;
+ public float m10;
+ public float m14;
+ public float m3;
+ public float m7;
+ public float m11;
+ public float m15;
+ }
+
+ // Color type, RGBA (32bit)
+ [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
+ public partial struct Color
+ {
+ public byte r;
+ public byte g;
+ public byte b;
+ public byte a;
+ }
+
+ // Rectangle type
+ [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
+ public partial struct Rectangle
+ {
+ public float x;
+ public float y;
+ public float width;
+ public float height;
+ }
+
+ // Image type, bpp always RGBA (32bit)
+ // NOTE: Data stored in CPU memory (RAM)
+ [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
+ public partial struct Image
+ {
+ public IntPtr data; // Image raw data
+ public int width; // Image base width
+ public int height; // Image base height
+ public int mipmaps; // Mipmap levels, 1 by default
+ public int format; // Data format (PixelFormat type)
+ }
+
+ // Texture2D type
+ // NOTE: Data stored in GPU memory
+ [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
+ public partial struct Texture2D
+ {
+ public uint id; // OpenGL texture id
+ public int width; // Texture base width
+ public int height; // Texture base height
+ public int mipmaps; // Mipmap levels, 1 by default
+ public int format; // Data format (PixelFormat type)
+ }
+
+ // RenderTexture2D type, for texture rendering
+ [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
+ public partial struct RenderTexture2D
+ {
+ public uint id; // OpenGL Framebuffer Object (FBO) id
+ public Texture2D texture; // Color buffer attachment texture
+ public Texture2D depth; // Depth buffer attachment texture
+ //[MarshalAs(UnmanagedType.I1)]
+ //public bool depthTexture; // Track if depth attachment is a texture or renderbuffer
+ }
+
+ // N-Patch layout info
+ [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
+ public partial struct NPatchInfo
+ {
+ public Rectangle sourceRec; // Region in the texture
+ public int left; // left border offset
+ public int top; // top border offset
+ public int right; // right border offset
+ public int bottom; // bottom border offset
+ public int type; // layout of the n-patch: 3x3, 1x3 or 3x1
+ }
+
+ // Font character info
+ [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
+ public partial struct CharInfo
+ {
+ public int value; // Character value (Unicode)
+ public Rectangle rec; // Character rectangle in sprite font
+ public int offsetX; // Character offset X when drawing
+ public int offsetY; // Character offset Y when drawing
+ public int advanceX; // Character advance position X
+ public IntPtr data; // Character pixel data (grayscale)
+ }
+
+ // Font type, includes texture and charSet array data
+ [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
+ public partial struct Font
+ {
+ public Texture2D texture; // Font texture
+ public int baseSize; // Base size (default chars height)
+ public int charsCount; // Number of characters
+ public IntPtr chars; // Characters info data
+ }
+
+ // Camera type, defines a camera position/orientation in 3d space
+ [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
+ public partial struct Camera3D
+ {
+ public Vector3 position; // Camera position
+ public Vector3 target; // Camera target it looks-at
+ public Vector3 up; // Camera up vector (rotation over its axis)
+ public float fovy; // Camera field-of-view apperture in Y (degrees) in perspective, used as near plane width in orthographic
+ public CameraType type; // Camera type, defines projection type: CAMERA_PERSPECTIVE or CAMERA_ORTHOGRAPHIC
+ }
+
+ // Camera2D type, defines a 2d camera
+ [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
+ public partial struct Camera2D
+ {
+ public Vector2 offset; // Camera offset (displacement from target)
+ public Vector2 target; // Camera target (rotation and zoom origin)
+ public float rotation; // Camera rotation in degrees
+ public float zoom; // Camera zoom (scaling), should be 1.0f by default
+ }
+
+ // Vertex data definning a mesh
+ // NOTE: Data stored in CPU memory (and GPU)
+ [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
+ public partial struct Mesh
+ {
+ public int vertexCount; // Number of vertices stored in arrays
+ public int triangleCount; // Number of triangles stored (indexed or not)
+ public IntPtr vertices; // Vertex position (XYZ - 3 components per vertex) (shader-location = 0)
+ public IntPtr texcoords; // Vertex texture coordinates (UV - 2 components per vertex) (shader-location = 1)
+ public IntPtr texcoords2; // Vertex second texture coordinates (useful for lightmaps) (shader-location = 5)
+ public IntPtr normals; // Vertex normals (XYZ - 3 components per vertex) (shader-location = 2)
+ public IntPtr tangents; // Vertex tangents (XYZW - 4 components per vertex) (shader-location = 4)
+ public IntPtr colors; // Vertex colors (RGBA - 4 components per vertex) (shader-location = 3)
+ public IntPtr indices; // Vertex indices (in case vertex data comes indexed)
+ public IntPtr animVertices; // Animated vertex positions (after bones transformations)
+ public IntPtr animNormals; // Animated normals (after bones transformations)
+ public IntPtr boneIds; // Vertex bone ids, up to 4 bones influence by vertex (skinning)
+ public IntPtr boneWeights; // Vertex bone weight, up to 4 bones influence by vertex (skinning)
+ public uint vaoId; // OpenGL Vertex Array Object id
+ [MarshalAs(UnmanagedType.ByValArray, SizeConst = 7)]
+ public uint[] vboId; // OpenGL Vertex Buffer Objects id (default vertex data)
+ }
+
+ // Shader type (generic)
+ [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
+ public unsafe struct Shader
+ {
+ public uint id;
+ public fixed int locs[Raylib.MAX_SHADER_LOCATIONS]; // Shader locations array
+ }
+
+ // Material texture map
+ [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
+ public partial struct MaterialMap
+ {
+ public Texture2D texture; // Material map texture
+ public Color color; // Material map color
+ public float value; // Material map value
+ }
+
+ // Material type (generic)
+ [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
+ public partial struct Material
+ {
+ public Shader shader; // Material shader
+ [MarshalAs(UnmanagedType.ByValArray, SizeConst = 12)]
+ public MaterialMap[] maps; // Material maps
+ public IntPtr param; // Material generic parameters (if required)
+ }
+
+ // Transformation properties
+ [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
+ public partial struct Transform
+ {
+ public Vector3 translation; // Translation
+ public Vector4 rotation; // Rotation
+ public Vector3 scale; // Scale
+ }
+
+ // Bone information
+ [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
+ public partial struct BoneInfo
+ {
+ [MarshalAs(UnmanagedType.ByValArray, SizeConst = 32)]
+ public char[] name; // Bone name
+ public int parent; // Bone parent
+ }
+
+ // Model type
+ [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
+ public partial struct Model
+ {
+ public Matrix transform; // Local transform matrix
+ public int meshCount; // Number of meshes
+ public Mesh[] meshes; // Meshes array
+ public int materialCount; // Number of materials
+ public Material[] materials; // Materials array
+ public IntPtr meshMaterial; // Mesh material number
+ public int boneCount; // Number of bones
+ public BoneInfo[] bones; // Bones information (skeleton)
+ public Transform[] bindPose; // Bones base transformation (pose)
+ }
+
+ // Model animation
+ [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
+ public partial struct ModelAnimation
+ {
+ public int boneCount; // Number of bones
+ public BoneInfo[] bones; // Bones information (skeleton)
+ public int frameCount; // Number of animation frames
+ public Transform[][] framePoses; // Poses array by frame
+ }
+
+ // Ray type (useful for raycast)
+ [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
+ public partial struct Ray
+ {
+ public Vector3 position; // Ray position (origin)
+ public Vector3 direction; // Ray direction
+ }
+
+ // Raycast hit information
+ [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
+ public partial struct RayHitInfo
+ {
+ public bool hit; // Did the ray hit something?
+ public float distance; // Distance to nearest hit
+ public Vector3 position; // Position of nearest hit
+ public Vector3 normal; // Surface normal of hit
+ }
+
+ // Bounding box type
+ [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
+ public partial struct BoundingBox
+ {
+ public Vector3 min; // Minimum vertex box-corner
+ public Vector3 max; // Maximum vertex box-corner
+ }
+
+ // Wave type, defines audio wave data
+ [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
+ public partial struct Wave
+ {
+ public uint sampleCount; // Number of samples
+ public uint sampleRate; // Frequency (samples per second)
+ public uint sampleSize; // Bit depth (bits per sample): 8, 16, 32 (24 not supported)
+ public uint channels; // Number of channels (1-mono, 2-stereo)
+ public IntPtr data; // Buffer data pointer
+ }
+
+ // Sound source type
+ [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
+ public partial struct Sound
+ {
+ public IntPtr audioBuffer; // Pointer to internal data used by the audio system
+ public uint source; // Audio source id
+ public uint buffer; // Audio buffer id
+ public int format; // Audio format specifier
+ }
+
+ [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
+ public partial struct MusicData
+ {
+ }
+
+ // Audio stream type
+ // NOTE: Useful to create custom audio streams not bound to a specific file
+ [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
+ public partial struct AudioStream
+ {
+ public uint sampleRate; // Frequency (samples per second)
+ public uint sampleSize; // Bit depth (bits per sample): 8, 16, 32 (24 not supported)
+ public uint channels; // Number of channels (1-mono, 2-stereo)
+ public IntPtr audioBuffer; // Pointer to internal data used by the audio system.
+ public int format; // Audio format specifier
+ public uint source; // Audio source id
+
+ [MarshalAs(UnmanagedType.ByValArray, SizeConst = 2)]
+ public uint[] buffers; // Audio buffers (double buffering)
+ }
+
+ // Head-Mounted-Display device parameters
+ [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
+ public partial struct VrDeviceInfo
+ {
+ public int hResolution; // HMD horizontal resolution in pixels
+ public int vResolution; // HMD vertical resolution in pixels
+ public float hScreenSize; // HMD horizontal size in meters
+ public float vScreenSize; // HMD vertical size in meters
+ public float vScreenCenter; // HMD screen center in meters
+ public float eyeToScreenDistance; // HMD distance between eye and display in meters
+ public float lensSeparationDistance; // HMD lens separation distance in meters
+ public float interpupillaryDistance; // HMD IPD (distance between pupils) in meters
+
+ [MarshalAs(UnmanagedType.ByValArray, SizeConst = 4)]
+ public float[] lensDistortionValues; // HMD lens distortion constant parameters
+
+ [MarshalAs(UnmanagedType.ByValArray, SizeConst = 4)]
+ public float[] chromaAbCorrection; // HMD chromatic aberration correction parameters
+ }
+
+ // ----------------------------------------------------------------------------------
+ // Enumerators Definition
+ // ----------------------------------------------------------------------------------
+ // System config flags
+ // NOTE: Used for bit masks
+ public enum ConfigFlag
+ {
+ FLAG_SHOW_LOGO = 1, // Set to show raylib logo at startup
+ FLAG_FULLSCREEN_MODE = 2, // Set to run program in fullscreen
+ FLAG_WINDOW_RESIZABLE = 4, // Set to allow resizable window
+ FLAG_WINDOW_UNDECORATED = 8, // Set to disable window decoration (frame and buttons)
+ FLAG_WINDOW_TRANSPARENT = 16, // Set to allow transparent window
+ FLAG_WINDOW_HIDDEN = 128, // Set to create the window initially hidden
+ FLAG_MSAA_4X_HINT = 32, // Set to try enabling MSAA 4X
+ FLAG_VSYNC_HINT = 64 // Set to try enabling V-Sync on GPU
+ }
+
+ // Trace log type
+ public enum TraceLogType
+ {
+ LOG_ALL = 0, // Display all logs
+ LOG_TRACE,
+ LOG_DEBUG,
+ LOG_INFO,
+ LOG_WARNING,
+ LOG_ERROR,
+ LOG_FATAL,
+ LOG_NONE // Disable logging
+ }
+
+ // Keyboard keys
+ public enum KeyboardKey
+ {
+ // Alphanumeric keys
+ KEY_APOSTROPHE = 39,
+ KEY_COMMA = 44,
+ KEY_MINUS = 45,
+ KEY_PERIOD = 46,
+ KEY_SLASH = 47,
+ KEY_ZERO = 48,
+ KEY_ONE = 49,
+ KEY_TWO = 50,
+ KEY_THREE = 51,
+ KEY_FOUR = 52,
+ KEY_FIVE = 53,
+ KEY_SIX = 54,
+ KEY_SEVEN = 55,
+ KEY_EIGHT = 56,
+ KEY_NINE = 57,
+ KEY_SEMICOLON = 59,
+ KEY_EQUAL = 61,
+ KEY_A = 65,
+ KEY_B = 66,
+ KEY_C = 67,
+ KEY_D = 68,
+ KEY_E = 69,
+ KEY_F = 70,
+ KEY_G = 71,
+ KEY_H = 72,
+ KEY_I = 73,
+ KEY_J = 74,
+ KEY_K = 75,
+ KEY_L = 76,
+ KEY_M = 77,
+ KEY_N = 78,
+ KEY_O = 79,
+ KEY_P = 80,
+ KEY_Q = 81,
+ KEY_R = 82,
+ KEY_S = 83,
+ KEY_T = 84,
+ KEY_U = 85,
+ KEY_V = 86,
+ KEY_W = 87,
+ KEY_X = 88,
+ KEY_Y = 89,
+ KEY_Z = 90,
+
+ // Function keys
+ KEY_SPACE = 32,
+ KEY_ESCAPE = 256,
+ KEY_ENTER = 257,
+ KEY_TAB = 258,
+ KEY_BACKSPACE = 259,
+ KEY_INSERT = 260,
+ KEY_DELETE = 261,
+ KEY_RIGHT = 262,
+ KEY_LEFT = 263,
+ KEY_DOWN = 264,
+ KEY_UP = 265,
+ KEY_PAGE_UP = 266,
+ KEY_PAGE_DOWN = 267,
+ KEY_HOME = 268,
+ KEY_END = 269,
+ KEY_CAPS_LOCK = 280,
+ KEY_SCROLL_LOCK = 281,
+ KEY_NUM_LOCK = 282,
+ KEY_PRINT_SCREEN = 283,
+ KEY_PAUSE = 284,
+ KEY_F1 = 290,
+ KEY_F2 = 291,
+ KEY_F3 = 292,
+ KEY_F4 = 293,
+ KEY_F5 = 294,
+ KEY_F6 = 295,
+ KEY_F7 = 296,
+ KEY_F8 = 297,
+ KEY_F9 = 298,
+ KEY_F10 = 299,
+ KEY_F11 = 300,
+ KEY_F12 = 301,
+ KEY_LEFT_SHIFT = 340,
+ KEY_LEFT_CONTROL = 341,
+ KEY_LEFT_ALT = 342,
+ KEY_LEFT_SUPER = 343,
+ KEY_RIGHT_SHIFT = 344,
+ KEY_RIGHT_CONTROL = 345,
+ KEY_RIGHT_ALT = 346,
+ KEY_RIGHT_SUPER = 347,
+ KEY_KB_MENU = 348,
+ KEY_LEFT_BRACKET = 91,
+ KEY_BACKSLASH = 92,
+ KEY_RIGHT_BRACKET = 93,
+ KEY_GRAVE = 96,
+
+ // Keypad keys
+ KEY_KP_0 = 320,
+ KEY_KP_1 = 321,
+ KEY_KP_2 = 322,
+ KEY_KP_3 = 323,
+ KEY_KP_4 = 324,
+ KEY_KP_5 = 325,
+ KEY_KP_6 = 326,
+ KEY_KP_7 = 327,
+ KEY_KP_8 = 328,
+ KEY_KP_9 = 329,
+ KEY_KP_DECIMAL = 330,
+ KEY_KP_DIVIDE = 331,
+ KEY_KP_MULTIPLY = 332,
+ KEY_KP_SUBTRACT = 333,
+ KEY_KP_ADD = 334,
+ KEY_KP_ENTER = 335,
+ KEY_KP_EQUAL = 336
+ }
+
+ // Android buttons
+ public enum AndroidButton
+ {
+ KEY_BACK = 4,
+ KEY_MENU = 82,
+ KEY_VOLUME_UP = 24,
+ KEY_VOLUME_DOWN = 25
+ }
+
+ // Mouse buttons
+ public enum MouseButton
+ {
+ MOUSE_LEFT_BUTTON = 0,
+ MOUSE_RIGHT_BUTTON = 1,
+ MOUSE_MIDDLE_BUTTON = 2
+ }
+
+ // Gamepad number
+ public enum GamepadNumber
+ {
+ GAMEPAD_PLAYER1 = 0,
+ GAMEPAD_PLAYER2 = 1,
+ GAMEPAD_PLAYER3 = 2,
+ GAMEPAD_PLAYER4 = 3
+ }
+
+ // Gamepad Buttons
+ public enum GamepadButton
+ {
+ // This is here just for error checking
+ GAMEPAD_BUTTON_UNKNOWN = 0,
+
+ // This is normally [A,B,X,Y]/[Circle,Triangle,Square,Cross]
+ // No support for 6 button controllers though..
+ GAMEPAD_BUTTON_LEFT_FACE_UP,
+ GAMEPAD_BUTTON_LEFT_FACE_RIGHT,
+ GAMEPAD_BUTTON_LEFT_FACE_DOWN,
+ GAMEPAD_BUTTON_LEFT_FACE_LEFT,
+
+ // This is normally a DPAD
+ GAMEPAD_BUTTON_RIGHT_FACE_UP,
+ GAMEPAD_BUTTON_RIGHT_FACE_RIGHT,
+ GAMEPAD_BUTTON_RIGHT_FACE_DOWN,
+ GAMEPAD_BUTTON_RIGHT_FACE_LEFT,
+
+ // Triggers
+ GAMEPAD_BUTTON_LEFT_TRIGGER_1,
+ GAMEPAD_BUTTON_LEFT_TRIGGER_2,
+ GAMEPAD_BUTTON_RIGHT_TRIGGER_1,
+ GAMEPAD_BUTTON_RIGHT_TRIGGER_2,
+
+ // These are buttons in the center of the gamepad
+ GAMEPAD_BUTTON_MIDDLE_LEFT, //PS3 Select
+ GAMEPAD_BUTTON_MIDDLE, //PS Button/XBOX Button
+ GAMEPAD_BUTTON_MIDDLE_RIGHT, //PS3 Start
+
+ // These are the joystick press in buttons
+ GAMEPAD_BUTTON_LEFT_THUMB,
+ GAMEPAD_BUTTON_RIGHT_THUMB
+ }
+
+ public enum GamepadAxis
+ {
+ // This is here just for error checking
+ GAMEPAD_AXIS_UNKNOWN = 0,
+
+ // Left stick
+ GAMEPAD_AXIS_LEFT_X,
+ GAMEPAD_AXIS_LEFT_Y,
+
+ // Right stick
+ GAMEPAD_AXIS_RIGHT_X,
+ GAMEPAD_AXIS_RIGHT_Y,
+
+ // Pressure levels for the back triggers
+ GAMEPAD_AXIS_LEFT_TRIGGER, // [1..-1] (pressure-level)
+ GAMEPAD_AXIS_RIGHT_TRIGGER // [1..-1] (pressure-level)
+ }
+
+ // Shader location point type
+ public enum ShaderLocationIndex
+ {
+ LOC_VERTEX_POSITION = 0,
+ LOC_VERTEX_TEXCOORD01,
+ LOC_VERTEX_TEXCOORD02,
+ LOC_VERTEX_NORMAL,
+ LOC_VERTEX_TANGENT,
+ LOC_VERTEX_COLOR,
+ LOC_MATRIX_MVP,
+ LOC_MATRIX_MODEL,
+ LOC_MATRIX_VIEW,
+ LOC_MATRIX_PROJECTION,
+ LOC_VECTOR_VIEW,
+ LOC_COLOR_DIFFUSE,
+ LOC_COLOR_SPECULAR,
+ LOC_COLOR_AMBIENT,
+ LOC_MAP_ALBEDO, // LOC_MAP_DIFFUSE
+ LOC_MAP_METALNESS, // LOC_MAP_SPECULAR
+ LOC_MAP_NORMAL,
+ LOC_MAP_ROUGHNESS,
+ LOC_MAP_OCCLUSION,
+ LOC_MAP_EMISSION,
+ LOC_MAP_HEIGHT,
+ LOC_MAP_CUBEMAP,
+ LOC_MAP_IRRADIANCE,
+ LOC_MAP_PREFILTER,
+ LOC_MAP_BRDF
+ }
+
+ // Shader uniform data types
+ public enum ShaderUniformDataType
+ {
+ UNIFORM_FLOAT = 0,
+ UNIFORM_VEC2,
+ UNIFORM_VEC3,
+ UNIFORM_VEC4,
+ UNIFORM_INT,
+ UNIFORM_IVEC2,
+ UNIFORM_IVEC3,
+ UNIFORM_IVEC4,
+ UNIFORM_SAMPLER2D
+ }
+
+ // Material map type
+ public enum MaterialMapType
+ {
+ MAP_ALBEDO = 0, // MAP_DIFFUSE
+ MAP_METALNESS = 1, // MAP_SPECULAR
+ MAP_NORMAL = 2,
+ MAP_ROUGHNESS = 3,
+ MAP_OCCLUSION,
+ MAP_EMISSION,
+ MAP_HEIGHT,
+ MAP_CUBEMAP, // NOTE: Uses GL_TEXTURE_CUBE_MAP
+ MAP_IRRADIANCE, // NOTE: Uses GL_TEXTURE_CUBE_MAP
+ MAP_PREFILTER, // NOTE: Uses GL_TEXTURE_CUBE_MAP
+ MAP_BRDF
+ }
+
+ // Pixel formats
+ // NOTE: Support depends on OpenGL version and platform
+ public enum PixelFormat
+ {
+ UNCOMPRESSED_GRAYSCALE = 1, // 8 bit per pixel (no alpha)
+ UNCOMPRESSED_GRAY_ALPHA, // 8*2 bpp (2 channels)
+ UNCOMPRESSED_R5G6B5, // 16 bpp
+ UNCOMPRESSED_R8G8B8, // 24 bpp
+ UNCOMPRESSED_R5G5B5A1, // 16 bpp (1 bit alpha)
+ UNCOMPRESSED_R4G4B4A4, // 16 bpp (4 bit alpha)
+ UNCOMPRESSED_R8G8B8A8, // 32 bpp
+ UNCOMPRESSED_R32, // 32 bpp (1 channel - float)
+ UNCOMPRESSED_R32G32B32, // 32*3 bpp (3 channels - float)
+ UNCOMPRESSED_R32G32B32A32, // 32*4 bpp (4 channels - float)
+ COMPRESSED_DXT1_RGB, // 4 bpp (no alpha)
+ COMPRESSED_DXT1_RGBA, // 4 bpp (1 bit alpha)
+ COMPRESSED_DXT3_RGBA, // 8 bpp
+ COMPRESSED_DXT5_RGBA, // 8 bpp
+ COMPRESSED_ETC1_RGB, // 4 bpp
+ COMPRESSED_ETC2_RGB, // 4 bpp
+ COMPRESSED_ETC2_EAC_RGBA, // 8 bpp
+ COMPRESSED_PVRT_RGB, // 4 bpp
+ COMPRESSED_PVRT_RGBA, // 4 bpp
+ COMPRESSED_ASTC_4x4_RGBA, // 8 bpp
+ COMPRESSED_ASTC_8x8_RGBA // 2 bpp
+ }
+
+ // Texture parameters: filter mode
+ // NOTE 1: Filtering considers mipmaps if available in the texture
+ // NOTE 2: Filter is accordingly set for minification and magnification
+ public enum TextureFilterMode
+ {
+ FILTER_POINT = 0, // No filter, just pixel aproximation
+ FILTER_BILINEAR, // Linear filtering
+ FILTER_TRILINEAR, // Trilinear filtering (linear with mipmaps)
+ FILTER_ANISOTROPIC_4X, // Anisotropic filtering 4x
+ FILTER_ANISOTROPIC_8X, // Anisotropic filtering 8x
+ FILTER_ANISOTROPIC_16X, // Anisotropic filtering 16x
+ }
+
+ // Cubemap layout type
+ public enum CubemapLayoutType
+ {
+ CUBEMAP_AUTO_DETECT = 0, // Automatically detect layout type
+ CUBEMAP_LINE_VERTICAL, // Layout is defined by a vertical line with faces
+ CUBEMAP_LINE_HORIZONTAL, // Layout is defined by an horizontal line with faces
+ CUBEMAP_CROSS_THREE_BY_FOUR, // Layout is defined by a 3x4 cross with cubemap faces
+ CUBEMAP_CROSS_FOUR_BY_THREE, // Layout is defined by a 4x3 cross with cubemap faces
+ CUBEMAP_PANORAMA // Layout is defined by a panorama image (equirectangular map)
+ }
+
+ // Texture parameters: wrap mode
+ public enum TextureWrapMode
+ {
+ WRAP_REPEAT = 0, // Repeats texture in tiled mode
+ WRAP_CLAMP, // Clamps texture to edge pixel in tiled mode
+ WRAP_MIRROR_REPEAT, // Mirrors and repeats the texture in tiled mode
+ WRAP_MIRROR_CLAMP // Mirrors and clamps to border the texture in tiled mode
+ }
+
+ // Font type, defines generation method
+ public enum FontType
+ {
+ FONT_DEFAULT = 0, // Default font generation, anti-aliased
+ FONT_BITMAP, // Bitmap font generation, no anti-aliasing
+ FONT_SDF // SDF font generation, requires external shader
+ }
+
+ // Color blending modes (pre-defined)
+ public enum BlendMode
+ {
+ BLEND_ALPHA = 0, // Blend textures considering alpha (default)
+ BLEND_ADDITIVE, // Blend textures adding colors
+ BLEND_MULTIPLIED // Blend textures multiplying colors
+ }
+
+ // Gestures type
+ // NOTE: It could be used as flags to enable only some gestures
+ public enum GestureType
+ {
+ GESTURE_NONE = 0,
+ GESTURE_TAP = 1,
+ GESTURE_DOUBLETAP = 2,
+ GESTURE_HOLD = 4,
+ GESTURE_DRAG = 8,
+ GESTURE_SWIPE_RIGHT = 16,
+ GESTURE_SWIPE_LEFT = 32,
+ GESTURE_SWIPE_UP = 64,
+ GESTURE_SWIPE_DOWN = 128,
+ GESTURE_PINCH_IN = 256,
+ GESTURE_PINCH_OUT = 512
+ }
+
+ // Camera system modes
+ public enum CameraMode
+ {
+ CAMERA_CUSTOM = 0,
+ CAMERA_FREE,
+ CAMERA_ORBITAL,
+ CAMERA_FIRST_PERSON,
+ CAMERA_THIRD_PERSON
+ }
+
+ // Camera projection modes
+ public enum CameraType
+ {
+ CAMERA_PERSPECTIVE = 0,
+ CAMERA_ORTHOGRAPHIC
+ }
+
+ // Type of n-patch
+ public enum NPatchType
+ {
+ NPT_9PATCH = 0, // Npatch defined by 3x3 tiles
+ NPT_3PATCH_VERTICAL, // Npatch defined by 1x3 tiles
+ NPT_3PATCH_HORIZONTAL // Npatch defined by 3x1 tiles
+ }
+
+ [SuppressUnmanagedCodeSecurity]
+ public static partial class Raylib
+ {
+ // Used by DllImport to load the native library.
+ public const string nativeLibName = "raylib";
+
+ public const float DEG2RAD = (float)Math.PI / 180.0f;
+ public const float RAD2DEG = 180.0f / (float)Math.PI;
+ public const int MAX_SHADER_LOCATIONS = 32;
+ public const int MAX_MATERIAL_MAPS = 12;
+
+ //------------------------------------------------------------------------------------
+ // Window and Graphics Device Functions (Module: core)
+ //------------------------------------------------------------------------------------
+
+ // Window-related functions
+
+ // Initialize window and OpenGL context
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void InitWindow(int width, int height, string title);
+
+ // Check if KEY_ESCAPE pressed or Close icon pressed
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ [return: MarshalAs(UnmanagedType.I1)]
+ public static extern bool WindowShouldClose();
+
+ // Close window and unload OpenGL context
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void CloseWindow();
+
+ // Check if window has been initialized successfully
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ [return: MarshalAs(UnmanagedType.I1)]
+ public static extern bool IsWindowReady();
+
+ // Check if window has been minimized (or lost focus)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ [return: MarshalAs(UnmanagedType.I1)]
+ public static extern bool IsWindowMinimized();
+
+ // Check if window has been resized
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ [return: MarshalAs(UnmanagedType.I1)]
+ public static extern bool IsWindowResized();
+
+ // Check if window is currently hidden
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ [return: MarshalAs(UnmanagedType.I1)]
+ public static extern bool IsWindowHidden();
+
+ // Toggle fullscreen mode (only PLATFORM_DESKTOP)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void ToggleFullscreen();
+
+ // Show the window
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void UnhideWindow();
+
+ // Hide the window
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void HideWindow();
+
+ // Set icon for window (only PLATFORM_DESKTOP)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void SetWindowIcon(Image image);
+
+ // Set title for window (only PLATFORM_DESKTOP)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void SetWindowTitle(string title);
+
+ // Set window position on screen (only PLATFORM_DESKTOP)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void SetWindowPosition(int x, int y);
+
+ // Set monitor for the current window (fullscreen mode)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void SetWindowMonitor(int monitor);
+
+ // Set window minimum dimensions (for FLAG_WINDOW_RESIZABLE)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void SetWindowMinSize(int width, int height);
+
+ // Set window dimensions
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void SetWindowSize(int width, int height);
+
+ // Get native window handle
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern IntPtr GetWindowHandle();
+
+ // Get current screen width
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern int GetScreenWidth();
+
+ // Get current screen height
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern int GetScreenHeight();
+
+ // Get number of connected monitors
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern int GetMonitorCount();
+
+ // Get primary monitor width
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern int GetMonitorWidth(int monitor);
+
+ // Get primary monitor height
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern int GetMonitorHeight(int monitor);
+
+ // Get primary monitor physical width in millimetres
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern int GetMonitorPhysicalWidth(int monitor);
+
+ // Get primary monitor physical height in millimetres
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern int GetMonitorPhysicalHeight(int monitor);
+
+ // Get the human-readable, UTF-8 encoded name of the primary monitor
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern string GetMonitorName(int monitor);
+
+ // Get clipboard text content
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern string GetClipboardText();
+
+ // Set clipboard text content
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void SetClipboardText(string text);
+
+ // Cursor-related functions
+
+ // Shows cursor
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void ShowCursor();
+
+ // Hides cursor
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void HideCursor();
+
+ // Check if cursor is not visible
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ [return: MarshalAs(UnmanagedType.I1)]
+ public static extern bool IsCursorHidden();
+
+ // Enables cursor (unlock cursor)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void EnableCursor();
+
+ // Disables cursor (lock cursor)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void DisableCursor();
+
+ // Drawing-related functions
+
+ // Set background color (framebuffer clear color)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void ClearBackground(Color color);
+
+ // Setup canvas (framebuffer) to start drawing
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void BeginDrawing();
+
+ // End canvas drawing and swap buffers (double buffering)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void EndDrawing();
+
+ // Initialize 2D mode with custom camera (2D)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void BeginMode2D(Camera2D camera);
+
+ // Ends 2D mode with custom camera
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void EndMode2D();
+
+ // Initializes 3D mode with custom camera (3D)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void BeginMode3D(Camera3D camera);
+
+ // Ends 3D mode and returns to default 2D orthographic mode
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void EndMode3D();
+
+ // Initializes render texture for drawing
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void BeginTextureMode(RenderTexture2D target);
+
+ // Ends drawing to render texture
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void EndTextureMode();
+
+ // Screen-space-related functions
+
+ // Returns a ray trace from mouse position
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Ray GetMouseRay(Vector2 mousePosition, Camera3D camera);
+
+ // Returns the screen space position for a 3d world space position
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Vector2 GetWorldToScreen(Vector3 position, Camera3D camera);
+
+ // Returns camera transform matrix (view matrix)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Matrix GetCameraMatrix(Camera3D camera);
+
+ // Timing-related functions
+
+ // Set target FPS (maximum)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void SetTargetFPS(int fps);
+
+ // Returns current FPS
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern int GetFPS();
+
+ // Returns time in seconds for last frame drawn
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern float GetFrameTime();
+
+ // Returns elapsed time in seconds since InitWindow()
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern double GetTime();
+
+ // Color-related functions
+
+ // Returns hexadecimal value for a Color
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern int ColorToInt(Color color);
+
+ // Returns color normalized as float [0..1]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Vector4 ColorNormalize(Color color);
+
+ // Returns HSV values for a Color
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Vector3 ColorToHSV(Color color);
+
+ // Returns a Color from HSV values
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Color ColorFromHSV(Vector3 hsv);
+
+ // Returns a Color struct from hexadecimal value
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Color GetColor(int hexValue);
+
+ // Color fade-in or fade-out, alpha goes from 0.0f to 1.0f
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Color Fade(Color color, float alpha);
+
+ // Misc. functions
+
+ // Setup window configuration flags (view FLAGS)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void SetConfigFlags(ConfigFlag flags);
+
+ // Set the current threshold (minimum) log level
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void SetTraceLogLevel(TraceLogType logType);
+
+ // Set the exit threshold (minimum) log level
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void SetTraceLogExit(TraceLogType logType);
+
+ // Set a trace log callback to enable custom logging
+ //[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ //public static extern void SetTraceLogCallback(TraceLogCallback callback);
+
+ // Show trace log messages (LOG_DEBUG, LOG_INFO, LOG_WARNING, LOG_ERROR)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void TraceLog(TraceLogType logType, string text);
+
+ // Takes a screenshot of current screen (saved a .png)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void TakeScreenshot(string fileName);
+
+ // Returns a random value between min and max (both included)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern int GetRandomValue(int min, int max);
+
+ // Files management functions
+
+ // Check if file exists
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ [return: MarshalAs(UnmanagedType.I1)]
+ public static extern bool FileExists(string fileName);
+
+ // Check file extension
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ [return: MarshalAs(UnmanagedType.I1)]
+ public static extern bool IsFileExtension(string fileName, string ext);
+
+ // Get pointer to extension for a filename string
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern string GetExtension(string fileName);
+
+ // Get pointer to filename for a path string
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern string GetFileName(string filePath);
+
+ // Get filename string without extension (memory should be freed)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern string GetFileNameWithoutExt(string filePath);
+
+ // Get full path for a given fileName (uses static string)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern string GetDirectoryPath(string fileName);
+
+ // Get current working directory (uses static string)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern string GetWorkingDirectory();
+
+ // Get filenames in a directory path (memory should be freed)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern string[] GetDirectoryFiles(string dirPath, ref int count);
+
+ // Clear directory files paths buffers (free memory)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void ClearDirectoryFiles();
+
+ // Change working directory, returns true if success
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ [return: MarshalAs(UnmanagedType.I1)]
+ public static extern bool ChangeDirectory(string dir);
+
+ // Check if a file has been dropped into window
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ [return: MarshalAs(UnmanagedType.I1)]
+ public static extern bool IsFileDropped();
+
+ // Get dropped files names (memory should be freed)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern string[] GetDroppedFiles(ref int count);
+
+ // Clear dropped files paths buffer (free memory)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void ClearDroppedFiles();
+
+ // Get file modification time (last write time)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern int GetFileModTime(string fileName);
+
+ // Persistent storage management
+
+ // Save integer value to storage file (to defined position)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void StorageSaveValue(int position, int value);
+
+ // Load integer value from storage file (from defined position)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern int StorageLoadValue(int position);
+
+ // Open URL with default system browser (if available)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void OpenURL(string url);
+
+ //------------------------------------------------------------------------------------
+ // Input Handling Functions (Module: core)
+ //------------------------------------------------------------------------------------
+
+ // Input-related functions: keyboard
+
+ // Detect if a key has been pressed once
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ [return: MarshalAs(UnmanagedType.I1)]
+ public static extern bool IsKeyPressed(KeyboardKey key);
+
+ // Detect if a key is being pressed
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ [return: MarshalAs(UnmanagedType.I1)]
+ public static extern bool IsKeyDown(KeyboardKey key);
+
+ // Detect if a key has been released once
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ [return: MarshalAs(UnmanagedType.I1)]
+ public static extern bool IsKeyReleased(KeyboardKey key);
+
+ // Detect if a key is NOT being pressed
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ [return: MarshalAs(UnmanagedType.I1)]
+ public static extern bool IsKeyUp(KeyboardKey key);
+
+ // Get latest key pressed
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern int GetKeyPressed();
+
+ // Set a custom key to exit program (default is ESC)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void SetExitKey(KeyboardKey key);
+
+ // Input-related functions: gamepads
+
+ // Detect if a gamepad is available
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ [return: MarshalAs(UnmanagedType.I1)]
+ public static extern bool IsGamepadAvailable(GamepadNumber gamepad);
+
+ // Check gamepad name (if available)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ [return: MarshalAs(UnmanagedType.I1)]
+ public static extern bool IsGamepadName(GamepadNumber gamepad, string name);
+
+ // Return gamepad internal name id
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern string GetGamepadName(GamepadNumber gamepad);
+
+ // Detect if a gamepad button has been pressed once
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ [return: MarshalAs(UnmanagedType.I1)]
+ public static extern bool IsGamepadButtonPressed(GamepadNumber gamepad, GamepadButton button);
+
+ // Detect if a gamepad button is being pressed
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ [return: MarshalAs(UnmanagedType.I1)]
+ public static extern bool IsGamepadButtonDown(GamepadNumber gamepad, GamepadButton button);
+
+ // Detect if a gamepad button has been released once
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ [return: MarshalAs(UnmanagedType.I1)]
+ public static extern bool IsGamepadButtonReleased(GamepadNumber gamepad, GamepadButton button);
+
+ // Detect if a gamepad button is NOT being pressed
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ [return: MarshalAs(UnmanagedType.I1)]
+ public static extern bool IsGamepadButtonUp(GamepadNumber gamepad, GamepadButton button);
+
+ // Get the last gamepad button pressed
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern int GetGamepadButtonPressed();
+
+ // Return gamepad axis count for a gamepad
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern int GetGamepadAxisCount(GamepadNumber gamepad);
+
+ // Return axis movement value for a gamepad axis
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern float GetGamepadAxisMovement(GamepadNumber gamepad, GamepadAxis axis);
+
+ // Input-related functions: mouse
+
+ // Detect if a mouse button has been pressed once
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ [return: MarshalAs(UnmanagedType.I1)]
+ public static extern bool IsMouseButtonPressed(MouseButton button);
+
+ // Detect if a mouse button is being pressed
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ [return: MarshalAs(UnmanagedType.I1)]
+ public static extern bool IsMouseButtonDown(MouseButton button);
+
+ // Detect if a mouse button has been released once
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ [return: MarshalAs(UnmanagedType.I1)]
+ public static extern bool IsMouseButtonReleased(MouseButton button);
+
+ // Detect if a mouse button is NOT being pressed
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ [return: MarshalAs(UnmanagedType.I1)]
+ public static extern bool IsMouseButtonUp(MouseButton button);
+
+ // Returns mouse position X
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern int GetMouseX();
+
+ // Returns mouse position Y
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern int GetMouseY();
+
+ // Returns mouse position XY
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Vector2 GetMousePosition();
+
+ // Set mouse position XY
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void SetMousePosition(int x, int y);
+
+ // Set mouse offset
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void SetMouseOffset(int offsetX, int offsetY);
+
+ // Set mouse scaling
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void SetMouseScale(float scaleX, float scaleY);
+
+ // Returns mouse wheel movement Y
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern int GetMouseWheelMove();
+
+ // Input-related functions: touch
+
+ // Returns touch position X for touch point 0 (relative to screen size)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern int GetTouchX();
+
+ // Returns touch position Y for touch point 0 (relative to screen size)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern int GetTouchY();
+
+ // Returns touch position XY for a touch point index (relative to screen size)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Vector2 GetTouchPosition(int index);
+
+ //------------------------------------------------------------------------------------
+ // Gestures and Touch Handling Functions (Module: gestures)
+ //------------------------------------------------------------------------------------
+
+ // Enable a set of gestures using flags
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void SetGesturesEnabled(GestureType gestureFlags);
+
+ // Check if a gesture have been detected
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ [return: MarshalAs(UnmanagedType.I1)]
+ public static extern bool IsGestureDetected(GestureType gesture);
+
+ // Get latest detected gesture
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern int GetGestureDetected();
+
+ // Get touch points count
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern int GetTouchPointsCount();
+
+ // Get gesture hold time in milliseconds
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern float GetGestureHoldDuration();
+
+ // Get gesture drag vector
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Vector2 GetGestureDragVector();
+
+ // Get gesture drag angle
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern float GetGestureDragAngle();
+
+ // Get gesture pinch delta
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Vector2 GetGesturePinchVector();
+
+ // Get gesture pinch angle
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern float GetGesturePinchAngle();
+
+ //------------------------------------------------------------------------------------
+ // Camera System Functions (Module: camera)
+ //------------------------------------------------------------------------------------
+
+ // Set camera mode (multiple camera modes available)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void SetCameraMode(Camera3D camera, CameraMode mode);
+
+ // Update camera position for selected mode
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void UpdateCamera(ref Camera3D camera);
+
+ // Set camera pan key to combine with mouse movement (free camera)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void SetCameraPanControl(KeyboardKey panKey);
+
+ // Set camera alt key to combine with mouse movement (free camera)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void SetCameraAltControl(KeyboardKey altKey);
+
+ // Set camera smooth zoom key to combine with mouse (free camera)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void SetCameraSmoothZoomControl(KeyboardKey szKey);
+
+ // Set camera move controls (1st person and 3rd person cameras)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void SetCameraMoveControls(KeyboardKey frontKey, KeyboardKey backKey, KeyboardKey rightKey, KeyboardKey leftKey, KeyboardKey upKey, KeyboardKey downKey);
+
+ //------------------------------------------------------------------------------------
+ // Basic Shapes Drawing Functions (Module: shapes)
+ //------------------------------------------------------------------------------------
+
+ // Basic shapes drawing functions
+
+ // Draw a pixel
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void DrawPixel(int posX, int posY, Color color);
+
+ // Draw a pixel (Vector version)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void DrawPixelV(Vector2 position, Color color);
+
+ // Draw a line
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void DrawLine(int startPosX, int startPosY, int endPosX, int endPosY, Color color);
+
+ // Draw a line (Vector version)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void DrawLineV(Vector2 startPos, Vector2 endPos, Color color);
+
+ // Draw a line defining thickness
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void DrawLineEx(Vector2 startPos, Vector2 endPos, float thick, Color color);
+
+ // Draw a line using cubic-bezier curves in-out
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void DrawLineBezier(Vector2 startPos, Vector2 endPos, float thick, Color color);
+
+ // Draw lines sequence
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void DrawLineStrip(ref Vector2 points, int numPoints, Color color);
+
+ // Draw a color-filled circle
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void DrawCircle(int centerX, int centerY, float radius, Color color);
+
+ // Draw a piece of a circle
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void DrawCircleSector(Vector2 center, float radius, int startAngle, int endAngle, int segments, Color color);
+
+ // Draw circle sector outline
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void DrawCircleSectorLines(Vector2 center, float radius, int startAngle, int endAngle, int segments, Color color);
+
+ // Draw a gradient-filled circle
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void DrawCircleGradient(int centerX, int centerY, float radius, Color color1, Color color2);
+
+ // Draw a color-filled circle (Vector version)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void DrawCircleV(Vector2 center, float radius, Color color);
+
+ // Draw circle outline
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void DrawCircleLines(int centerX, int centerY, float radius, Color color);
+
+ // Draw ring
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void DrawRing(Vector2 center, float innerRadius, float outerRadius, int startAngle, int endAngle, int segments, Color color);
+
+ // Draw ring outline
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void DrawRingLines(Vector2 center, float innerRadius, float outerRadius, int startAngle, int endAngle, int segments, Color color);
+
+ // Draw a color-filled rectangle
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void DrawRectangle(int posX, int posY, int width, int height, Color color);
+
+ // Draw a color-filled rectangle (Vector version)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void DrawRectangleV(Vector2 position, Vector2 size, Color color);
+
+ // Draw a color-filled rectangle
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void DrawRectangleRec(Rectangle rec, Color color);
+
+ // Draw a color-filled rectangle with pro parameters
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void DrawRectanglePro(Rectangle rec, Vector2 origin, float rotation, Color color);
+
+ // Draw a vertical-gradient-filled rectangle
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void DrawRectangleGradientV(int posX, int posY, int width, int height, Color color1, Color color2);
+
+ // Draw a horizontal-gradient-filled rectangle
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void DrawRectangleGradientH(int posX, int posY, int width, int height, Color color1, Color color2);
+
+ // Draw a gradient-filled rectangle with custom vertex colors
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void DrawRectangleGradientEx(Rectangle rec, Color col1, Color col2, Color col3, Color col4);
+
+ // Draw rectangle outline
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void DrawRectangleLines(int posX, int posY, int width, int height, Color color);
+
+ // Draw rectangle outline with extended parameters
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void DrawRectangleLinesEx(Rectangle rec, int lineThick, Color color);
+
+ // Draw rectangle with rounded edges
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void DrawRectangleRounded(Rectangle rec, float roundness, int segments, Color color);
+
+ // Draw rectangle with rounded edges outline
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void DrawRectangleRoundedLines(Rectangle rec, float roundness, int segments, int lineThick, Color color);
+
+ // Draw a color-filled triangle
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void DrawTriangle(Vector2 v1, Vector2 v2, Vector2 v3, Color color);
+
+ // Draw triangle outline
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void DrawTriangleLines(Vector2 v1, Vector2 v2, Vector2 v3, Color color);
+
+ // Draw a triangle fan defined by points
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void DrawTriangleFan(Vector2[] points, int numPoints, Color color);
+
+ // Draw a regular polygon (Vector version)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void DrawPoly(Vector2 center, int sides, float radius, float rotation, Color color);
+
+ // Define default texture used to draw shapes
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void SetShapesTexture(Texture2D texture, Rectangle source);
+
+ // Basic shapes collision detection functions
+
+ // Check collision between two rectangles
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ [return: MarshalAs(UnmanagedType.I1)]
+ public static extern bool CheckCollisionRecs(Rectangle rec1, Rectangle rec2);
+
+ // Check collision between two circles
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ [return: MarshalAs(UnmanagedType.I1)]
+ public static extern bool CheckCollisionCircles(Vector2 center1, float radius1, Vector2 center2, float radius2);
+
+ // Check collision between circle and rectangle
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ [return: MarshalAs(UnmanagedType.I1)]
+ public static extern bool CheckCollisionCircleRec(Vector2 center, float radius, Rectangle rec);
+
+ // Get collision rectangle for two rectangles collision
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Rectangle GetCollisionRec(Rectangle rec1, Rectangle rec2);
+
+ // Check if point is inside rectangle
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ [return: MarshalAs(UnmanagedType.I1)]
+ public static extern bool CheckCollisionPointRec(Vector2 point, Rectangle rec);
+
+ // Check if point is inside circle
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ [return: MarshalAs(UnmanagedType.I1)]
+ public static extern bool CheckCollisionPointCircle(Vector2 point, Vector2 center, float radius);
+
+ // Check if point is inside a triangle
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ [return: MarshalAs(UnmanagedType.I1)]
+ public static extern bool CheckCollisionPointTriangle(Vector2 point, Vector2 p1, Vector2 p2, Vector2 p3);
+
+ //------------------------------------------------------------------------------------
+ // Texture Loading and Drawing Functions (Module: textures)
+ //------------------------------------------------------------------------------------
+
+ // Image/Texture2D data loading/unloading/saving functions
+
+ // Load image from file into CPU memory (RAM)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Image LoadImage(string fileName);
+
+ // Load image from Color array data (RGBA - 32bit)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Image LoadImageEx(Color[] pixels, int width, int height);
+
+ // Load image from raw data with parameters
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Image LoadImagePro(IntPtr data, int width, int height, int format);
+
+ // Load image from RAW file data
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Image LoadImageRaw(string fileName, int width, int height, int format, int headerSize);
+
+ // Export image data to file
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void ExportImage(Image image, string fileName);
+
+ // Export image as code file defining an array of bytes
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void ExportImageAsCode(Image image, string fileName);
+
+ // Load texture from file into GPU memory (VRAM)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Texture2D LoadTexture(string fileName);
+
+ // Load texture from image data
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Texture2D LoadTextureFromImage(Image image);
+
+ // Load cubemap from image, multiple image cubemap layouts supported
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Texture2D LoadTextureCubemap(Image image, CubemapLayoutType layoutType);
+
+ // Load texture for rendering (framebuffer)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern RenderTexture2D LoadRenderTexture(int width, int height);
+
+ // Unload image from CPU memory (RAM)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void UnloadImage(Image image);
+
+ // Unload texture from GPU memory (VRAM)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void UnloadTexture(Texture2D texture);
+
+ // Unload render texture from GPU memory (VRAM)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void UnloadRenderTexture(RenderTexture2D target);
+
+ // Get pixel data from image as a Color struct array
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Color[] GetImageData(Image image);
+
+ // Get pixel data from image as Vector4 array (float normalized)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Vector4[] GetImageDataNormalized(Image image);
+
+ // Get pixel data size in bytes (image or texture)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern int GetPixelDataSize(int width, int height, int format);
+
+ // Get pixel data from GPU texture and return an Image
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Image GetTextureData(Texture2D texture);
+
+ // Get pixel data from screen buffer and return an Image (screenshot)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Image GetScreenData();
+
+ // Update GPU texture with new data
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void UpdateTexture(Texture2D texture, IntPtr pixels);
+
+ // Image manipulation functions
+
+ // Create an image duplicate (useful for transformations)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Image ImageCopy(Image image);
+
+ // Convert image to POT (power-of-two)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void ImageToPOT(ref Image image, Color fillColor);
+
+ // Convert image data to desired format
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void ImageFormat(ref Image image, int newFormat);
+
+ // Apply alpha mask to image
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void ImageAlphaMask(ref Image image, Image alphaMask);
+
+ // Clear alpha channel to desired color
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void ImageAlphaClear(ref Image image, Color color, float threshold);
+
+ // Crop image depending on alpha value
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void ImageAlphaCrop(ref Image image, float threshold);
+
+ // Premultiply alpha channel
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void ImageAlphaPremultiply(ref Image image);
+
+ // Crop an image to a defined rectangle
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void ImageCrop(ref Image image, Rectangle crop);
+
+ // Resize image (Bicubic scaling algorithm)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void ImageResize(ref Image image, int newWidth, int newHeight);
+
+ // Resize image (Nearest-Neighbor scaling algorithm)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void ImageResizeNN(ref Image image, int newWidth, int newHeight);
+
+ // Resize canvas and fill with color
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void ImageResizeCanvas(ref Image image, int newWidth, int newHeight, int offsetX, int offsetY, Color color);
+
+ // Generate all mipmap levels for a provided image
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void ImageMipmaps(ref Image image);
+
+ // Dither image data to 16bpp or lower (Floyd-Steinberg dithering)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void ImageDither(ref Image image, int rBpp, int gBpp, int bBpp, int aBpp);
+
+ // Extract color palette from image to maximum size (memory should be freed)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Color[] ImageExtractPalette(Image image, int maxPaletteSize, ref IntPtr extractCount);
+
+ // Create an image from text (default font)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Image ImageText(string text, int fontSize, Color color);
+
+ // Create an image from text (custom sprite font)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Image ImageTextEx(Font font, string text, float fontSize, float spacing, Color tint);
+
+ // Draw a source image within a destination image
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void ImageDraw(ref Image dst, Image src, Rectangle srcRec, Rectangle dstRec);
+
+ // Draw rectangle within an image
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void ImageDrawRectangle(ref Image dst, Rectangle rec, Color color);
+
+ // Draw rectangle lines within an image
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void ImageDrawRectangleLines(ref Image dst, Rectangle rec, int thick, Color color);
+
+ // Draw text (default font) within an image (destination)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void ImageDrawText(ref Image dst, Vector2 position, string text, int fontSize, Color color);
+
+ // Draw text (custom sprite font) within an image (destination)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void ImageDrawTextEx(ref Image dst, Vector2 position, Font font, string text, float fontSize, float spacing, Color color);
+
+ // Flip image vertically
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void ImageFlipVertical(ref Image image);
+
+ // Flip image horizontally
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void ImageFlipHorizontal(ref Image image);
+
+ // Rotate image clockwise 90deg
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void ImageRotateCW(ref Image image);
+
+ // Rotate image counter-clockwise 90deg
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void ImageRotateCCW(ref Image image);
+
+ // Modify image color: tint
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void ImageColorTint(ref Image image, Color color);
+
+ // Modify image color: invert
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void ImageColorInvert(ref Image image);
+
+ // Modify image color: grayscale
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void ImageColorGrayscale(ref Image image);
+
+ // Modify image color: contrast (-100 to 100)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void ImageColorContrast(ref Image image, float contrast);
+
+ // Modify image color: brightness (-255 to 255)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void ImageColorBrightness(ref Image image, int brightness);
+
+ // Modify image color: replace color
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void ImageColorReplace(ref Image image, Color color, Color replace);
+
+ // Image generation functions
+
+ // Generate image: plain color
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Image GenImageColor(int width, int height, Color color);
+
+ // Generate image: vertical gradient
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Image GenImageGradientV(int width, int height, Color top, Color bottom);
+
+ // Generate image: horizontal gradient
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Image GenImageGradientH(int width, int height, Color left, Color right);
+
+ // Generate image: radial gradient
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Image GenImageGradientRadial(int width, int height, float density, Color inner, Color outer);
+
+ // Generate image: checked
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Image GenImageChecked(int width, int height, int checksX, int checksY, Color col1, Color col2);
+
+ // Generate image: white noise
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Image GenImageWhiteNoise(int width, int height, float factor);
+
+ // Generate image: perlin noise
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Image GenImagePerlinNoise(int width, int height, int offsetX, int offsetY, float scale);
+
+ // Generate image: cellular algorithm. Bigger tileSize means bigger cells
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Image GenImageCellular(int width, int height, int tileSize);
+
+ // Texture2D configuration functions
+
+ // Generate GPU mipmaps for a texture
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void GenTextureMipmaps(ref Texture2D texture);
+
+ // Set texture scaling filter mode
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void SetTextureFilter(Texture2D texture, TextureFilterMode filterMode);
+
+ // Set texture wrapping mode
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void SetTextureWrap(Texture2D texture, TextureWrapMode wrapMode);
+
+ // Texture2D drawing functions
+
+ // Draw a Texture2D
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void DrawTexture(Texture2D texture, int posX, int posY, Color tint);
+
+ // Draw a Texture2D with position defined as Vector2
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void DrawTextureV(Texture2D texture, Vector2 position, Color tint);
+
+ // Draw a Texture2D with extended parameters
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void DrawTextureEx(Texture2D texture, Vector2 position, float rotation, float scale, Color tint);
+
+ // Draw a part of a texture defined by a rectangle
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void DrawTextureRec(Texture2D texture, Rectangle sourceRec, Vector2 position, Color tint);
+
+ // Draw texture quad with tiling and offset parameters
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void DrawTextureQuad(Texture2D texture, Vector2 tiling, Vector2 offset, Rectangle quad, Color tint);
+
+ // Draw a part of a texture defined by a rectangle with 'pro' parameters
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void DrawTexturePro(Texture2D texture, Rectangle sourceRec, Rectangle destRec, Vector2 origin, float rotation, Color tint);
+
+ // Draws a texture (or part of it) that stretches or shrinks nicely
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void DrawTextureNPatch(Texture2D texture, NPatchInfo nPatchInfo, Rectangle destRec, Vector2 origin, float rotation, Color tint);
+
+ //------------------------------------------------------------------------------------
+ // Font Loading and Text Drawing Functions (Module: text)
+ //------------------------------------------------------------------------------------
+
+ // Font loading/unloading functions
+
+ // Get the default Font
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Font GetFontDefault();
+
+ // Load font from file into GPU memory (VRAM)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Font LoadFont(string fileName);
+
+ // Load font from file with extended parameters
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Font LoadFontEx(string fileName, int fontSize, int[] fontChars, int charsCount);
+
+ // Load font from Image (XNA style)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Font LoadFontFromImage(Image image, Color key, int firstChar);
+
+ // Load font data for further use
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern CharInfo[] LoadFontData(string fileName, int fontSize, int[] fontChars, int charsCount, int type);
+
+ // Generate image font atlas using chars info
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Image GenImageFontAtlas(CharInfo[] chars, int charsCount, int fontSize, int padding, int packMethod);
+
+ // Unload Font from GPU memory (VRAM)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void UnloadFont(Font font);
+
+ // Text drawing functions
+
+ // Shows current FPS
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void DrawFPS(int posX, int posY);
+
+ // Draw text (using default font)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void DrawText(string text, int posX, int posY, int fontSize, Color color);
+
+ // Draw text using font and additional parameters
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void DrawTextEx(Font font, string text, Vector2 position, float fontSize, float spacing, Color tint);
+
+ // Draw text using font inside rectangle limits
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void DrawTextRec(Font font, string text, Rectangle rec, float fontSize, float spacing, bool wordWrap, Color tint);
+
+ // Draw text using font inside rectangle limits with support for text selection
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void DrawTextRecEx(Font font, string text, Rectangle rec, float fontSize, float spacing, bool wordWrap, Color tint, int selectStart, int selectLength, Color selectText, Color selectBack);
+
+ // Text misc. functions
+
+ // Measure string width for default font
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern int MeasureText(string text, int fontSize);
+
+ // Measure string size for Font
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Vector2 MeasureTextEx(Font font, string text, float fontSize, float spacing);
+
+ // Get index position for a unicode character on font
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern int GetGlyphIndex(Font font, int character);
+
+ // Returns next codepoint in a UTF8 encoded string
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern int GetNextCodepoint(string text, ref int count);
+
+ // Text strings management functions
+ // NOTE: Some strings allocate memory internally for returned strings, just be careful!
+
+ // Check if two text string are equal
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ [return: MarshalAs(UnmanagedType.I1)]
+ public static extern bool TextIsEqual(string text1, string text2);
+
+ // Get text length, checks for '\0' ending
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern uint TextLength(string text);
+
+ // Get total number of characters (codepoints) in a UTF8 encoded string
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern uint TextCountCodepoints(string text);
+
+ // Text formatting with variables (sprintf style)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern string TextFormat(string text);
+
+ // Get a piece of a text string
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern string TextSubtext(string text, int position, int length);
+
+ // Replace text string (memory should be freed!)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern string TextReplace(string text, string replace, string by);
+
+ // Insert text in a position (memory should be freed!)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern string TextInsert(string text, string insert, int position);
+
+ // Join text strings with delimiter
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern string TextJoin(string[] textList, int count, string delimiter);
+
+ // Split text into multiple strings
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern string[] TextSplit(string text, char delimiter, ref int count);
+
+ // Append text at specific position and move cursor!
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void TextAppend(ref char text, string append, ref int position);
+
+ // Find first text occurrence within a string
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern int TextFindIndex(string text, string find);
+
+ // Get upper case version of provided string
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern string TextToUpper(string text);
+
+ // Get lower case version of provided string
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern string TextToLower(string text);
+
+ // Get Pascal case notation version of provided string
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern string TextToPascal(string text);
+
+ // Get integer value from text (negative values not supported)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern int TextToInteger(string text);
+
+ //------------------------------------------------------------------------------------
+ // Basic 3d Shapes Drawing Functions (Module: models)
+ //------------------------------------------------------------------------------------
+
+ // Basic geometric 3D shapes drawing functions
+
+ // Draw a line in 3D world space
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void DrawLine3D(Vector3 startPos, Vector3 endPos, Color color);
+
+ // Draw a circle in 3D world space
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void DrawCircle3D(Vector3 center, float radius, Vector3 rotationAxis, float rotationAngle, Color color);
+
+ // Draw cube
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void DrawCube(Vector3 position, float width, float height, float length, Color color);
+
+ // Draw cube (Vector version)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void DrawCubeV(Vector3 position, Vector3 size, Color color);
+
+ // Draw cube wires
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void DrawCubeWires(Vector3 position, float width, float height, float length, Color color);
+
+ // Draw cube wires (Vector version)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void DrawCubeWiresV(Vector3 position, Vector3 size, Color color);
+
+ // Draw cube textured
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void DrawCubeTexture(Texture2D texture, Vector3 position, float width, float height, float length, Color color);
+
+ // Draw sphere
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void DrawSphere(Vector3 centerPos, float radius, Color color);
+
+ // Draw sphere with extended parameters
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void DrawSphereEx(Vector3 centerPos, float radius, int rings, int slices, Color color);
+
+ // Draw sphere wires
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void DrawSphereWires(Vector3 centerPos, float radius, int rings, int slices, Color color);
+
+ // Draw a cylinder/cone
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void DrawCylinder(Vector3 position, float radiusTop, float radiusBottom, float height, int slices, Color color);
+
+ // Draw a cylinder/cone wires
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void DrawCylinderWires(Vector3 position, float radiusTop, float radiusBottom, float height, int slices, Color color);
+
+ // Draw a plane XZ
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void DrawPlane(Vector3 centerPos, Vector2 size, Color color);
+
+ // Draw a ray line
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void DrawRay(Ray ray, Color color);
+
+ // Draw a grid (centered at (0, 0, 0))
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void DrawGrid(int slices, float spacing);
+
+ // Draw simple gizmo
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void DrawGizmo(Vector3 position);
+
+ //------------------------------------------------------------------------------------
+ // Model 3d Loading and Drawing Functions (Module: models)
+ //------------------------------------------------------------------------------------
+
+ // Model loading/unloading functions
+
+ // Load model from files (meshes and materials)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Model LoadModel(string fileName);
+
+ // Load model from generated mesh (default material)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Model LoadModelFromMesh(Mesh mesh);
+
+ // Unload model from memory (RAM and/or VRAM)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void UnloadModel(Model model);
+
+ // Mesh loading/unloading functions
+
+ // Load meshes from model file
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Mesh[] LoadMeshes(string fileName, ref int meshCount);
+
+ // Export mesh data to file
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void ExportMesh(Mesh mesh, string fileName);
+
+ // Unload mesh from memory (RAM and/or VRAM)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void UnloadMesh(ref Mesh mesh);
+
+ // Material loading/unloading functions
+
+ // Load materials from model file
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Material[] LoadMaterials(string fileName, ref int materialCount);
+
+ // Load default material (Supports: DIFFUSE, SPECULAR, NORMAL maps)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Material LoadMaterialDefault();
+
+ // Unload material from GPU memory (VRAM)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void UnloadMaterial(Material material);
+
+ // Set texture for a material map type (MAP_DIFFUSE, MAP_SPECULAR...)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void SetMaterialTexture(ref Material material, int mapType, Texture2D texture);
+
+ // Set material for a mesh
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void SetModelMeshMaterial(ref Model model, int meshId, int materialId);
+
+ // Model animations loading/unloading functions
+
+ // Load model animations from file
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern ModelAnimation[] LoadModelAnimations(string fileName, ref int animsCount);
+
+ // Update model animation pose
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void UpdateModelAnimation(Model model, ModelAnimation anim, int frame);
+
+ // Unload animation data
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void UnloadModelAnimation(ModelAnimation anim);
+
+ // Check model animation skeleton match
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ [return: MarshalAs(UnmanagedType.I1)]
+ public static extern bool IsModelAnimationValid(Model model, ModelAnimation anim);
+
+ // Mesh generation functions
+
+ // Generate polygonal mesh
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Mesh GenMeshPoly(int sides, float radius);
+
+ // Generate plane mesh (with subdivisions)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Mesh GenMeshPlane(float width, float length, int resX, int resZ);
+
+ // Generate cuboid mesh
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Mesh GenMeshCube(float width, float height, float length);
+
+ // Generate sphere mesh (standard sphere)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Mesh GenMeshSphere(float radius, int rings, int slices);
+
+ // Generate half-sphere mesh (no bottom cap)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Mesh GenMeshHemiSphere(float radius, int rings, int slices);
+
+ // Generate cylinder mesh
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Mesh GenMeshCylinder(float radius, float height, int slices);
+
+ // Generate torus mesh
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Mesh GenMeshTorus(float radius, float size, int radSeg, int sides);
+
+ // Generate trefoil knot mesh
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Mesh GenMeshKnot(float radius, float size, int radSeg, int sides);
+
+ // Generate heightmap mesh from image data
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Mesh GenMeshHeightmap(Image heightmap, Vector3 size);
+
+ // Generate cubes-based map mesh from image data
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Mesh GenMeshCubicmap(Image cubicmap, Vector3 cubeSize);
+
+ // Mesh manipulation functions
+
+ // Compute mesh bounding box limits
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern BoundingBox MeshBoundingBox(Mesh mesh);
+
+ // Compute mesh tangents
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void MeshTangents(ref Mesh mesh);
+
+ // Compute mesh binormals
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void MeshBinormals(ref Mesh mesh);
+
+ // Model drawing functions
+
+ // Draw a model (with texture if set)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void DrawModel(Model model, Vector3 position, float scale, Color tint);
+
+ // Draw a model with extended parameters
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void DrawModelEx(Model model, Vector3 position, Vector3 rotationAxis, float rotationAngle, Vector3 scale, Color tint);
+
+ // Draw a model wires (with texture if set)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void DrawModelWires(Model model, Vector3 position, float scale, Color tint);
+
+ // Draw a model wires (with texture if set) with extended parameters
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void DrawModelWiresEx(Model model, Vector3 position, Vector3 rotationAxis, float rotationAngle, Vector3 scale, Color tint);
+
+ // Draw bounding box (wires)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void DrawBoundingBox(BoundingBox box, Color color);
+
+ // Draw a billboard texture
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void DrawBillboard(Camera3D camera, Texture2D texture, Vector3 center, float size, Color tint);
+
+ // Draw a billboard texture defined by sourceRec
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void DrawBillboardRec(Camera3D camera, Texture2D texture, Rectangle sourceRec, Vector3 center, float size, Color tint);
+
+ // Collision detection functions
+
+ // Detect collision between two spheres
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ [return: MarshalAs(UnmanagedType.I1)]
+ public static extern bool CheckCollisionSpheres(Vector3 centerA, float radiusA, Vector3 centerB, float radiusB);
+
+ // Detect collision between two bounding boxes
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ [return: MarshalAs(UnmanagedType.I1)]
+ public static extern bool CheckCollisionBoxes(BoundingBox box1, BoundingBox box2);
+
+ // Detect collision between box and sphere
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ [return: MarshalAs(UnmanagedType.I1)]
+ public static extern bool CheckCollisionBoxSphere(BoundingBox box, Vector3 centerSphere, float radiusSphere);
+
+ // Detect collision between ray and sphere
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ [return: MarshalAs(UnmanagedType.I1)]
+ public static extern bool CheckCollisionRaySphere(Ray ray, Vector3 spherePosition, float sphereRadius);
+
+ // Detect collision between ray and sphere, returns collision point
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ [return: MarshalAs(UnmanagedType.I1)]
+ public static extern bool CheckCollisionRaySphereEx(Ray ray, Vector3 spherePosition, float sphereRadius, ref Vector3 collisionPoint);
+
+ // Detect collision between ray and box
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ [return: MarshalAs(UnmanagedType.I1)]
+ public static extern bool CheckCollisionRayBox(Ray ray, BoundingBox box);
+
+ // Get collision info between ray and model
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern RayHitInfo GetCollisionRayModel(Ray ray, ref Model model);
+
+ // Get collision info between ray and triangle
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern RayHitInfo GetCollisionRayTriangle(Ray ray, Vector3 p1, Vector3 p2, Vector3 p3);
+
+ // Get collision info between ray and ground plane (Y-normal plane)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern RayHitInfo GetCollisionRayGround(Ray ray, float groundHeight);
+
+ //------------------------------------------------------------------------------------
+ // Shaders System Functions (Module: rlgl)
+ // NOTE: This functions are useless when using OpenGL 1.1
+ //------------------------------------------------------------------------------------
+
+ // Shader loading/unloading functions
+
+ // Load chars array from text file
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern string LoadText(string fileName);
+
+ // Load shader from files and bind default locations
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Shader LoadShader(string vsFileName, string fsFileName);
+
+ // Load shader from code strings and bind default locations
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Shader LoadShaderCode(string vsCode, string fsCode);
+
+ // Unload shader from GPU memory (VRAM)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void UnloadShader(Shader shader);
+
+ // Get default shader
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Shader GetShaderDefault();
+
+ // Get default texture
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Texture2D GetTextureDefault();
+
+ // Shader configuration functions
+
+ // Get shader uniform location
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern int GetShaderLocation(Shader shader, string uniformName);
+
+ // Set shader uniform value
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void SetShaderValue(Shader shader, int uniformLoc, IntPtr value, int uniformType);
+
+ // Set shader uniform value vector
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void SetShaderValueV(Shader shader, int uniformLoc, IntPtr value, int uniformType, int count);
+
+ // Set shader uniform value (matrix 4x4)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void SetShaderValueMatrix(Shader shader, int uniformLoc, Matrix mat);
+
+ // Set shader uniform value for texture
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void SetShaderValueTexture(Shader shader, int uniformLoc, Texture2D texture);
+
+ // Set a custom projection matrix (replaces internal projection matrix)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void SetMatrixProjection(Matrix proj);
+
+ // Set a custom modelview matrix (replaces internal modelview matrix)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void SetMatrixModelview(Matrix view);
+
+ // Get internal modelview matrix
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Matrix GetMatrixModelview();
+
+ // Texture maps generation (PBR)
+ // NOTE: Required shaders should be provided
+
+ // Generate cubemap texture from HDR texture
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Texture2D GenTextureCubemap(Shader shader, Texture2D skyHDR, int size);
+
+ // Generate irradiance texture using cubemap data
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Texture2D GenTextureIrradiance(Shader shader, Texture2D cubemap, int size);
+
+ // Generate prefilter texture using cubemap data
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Texture2D GenTexturePrefilter(Shader shader, Texture2D cubemap, int size);
+
+ // Generate BRDF texture
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Texture2D GenTextureBRDF(Shader shader, int size);
+
+ // Shading begin/end functions
+
+ // Begin custom shader drawing
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void BeginShaderMode(Shader shader);
+
+ // End custom shader drawing (use default shader)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void EndShaderMode();
+
+ // Begin blending mode (alpha, additive, multiplied)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void BeginBlendMode(BlendMode mode);
+
+ // End blending mode (reset to default: alpha blending)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void EndBlendMode();
+
+ // Begin scissor mode (define screen area for following drawing)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void BeginScissorMode(int x, int y, int width, int height);
+
+ // End scissor mode
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void EndScissorMode();
+
+ // VR control functions
+
+ // Init VR simulator for selected device parameters
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void InitVrSimulator();
+
+ // Close VR simulator for current device
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void CloseVrSimulator();
+
+ // Update VR tracking (position and orientation) and camera
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void UpdateVrTracking(ref Camera3D camera);
+
+ // Set stereo rendering configuration parameters
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void SetVrConfiguration(VrDeviceInfo info, Shader distortion);
+
+ // Detect if VR simulator is ready
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ [return: MarshalAs(UnmanagedType.I1)]
+ public static extern bool IsVrSimulatorReady();
+
+ // Enable/Disable VR experience
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void ToggleVrMode();
+
+ // Begin VR simulator stereo rendering
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void BeginVrDrawing();
+
+ // End VR simulator stereo rendering
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void EndVrDrawing();
+
+ //------------------------------------------------------------------------------------
+ // Audio Loading and Playing Functions (Module: audio)
+ //------------------------------------------------------------------------------------
+
+ // Audio device management functions
+
+ // Initialize audio device and context
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void InitAudioDevice();
+
+ // Close the audio device and context
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void CloseAudioDevice();
+
+ // Check if audio device has been initialized successfully
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ [return: MarshalAs(UnmanagedType.I1)]
+ public static extern bool IsAudioDeviceReady();
+
+ // Set master volume (listener)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void SetMasterVolume(float volume);
+
+ // Wave/Sound loading/unloading functions
+
+ // Load wave data from file
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Wave LoadWave(string fileName);
+
+ // Load wave data from raw array data
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Wave LoadWaveEx(IntPtr data, int sampleCount, int sampleRate, int sampleSize, int channels);
+
+ // Load sound from file
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Sound LoadSound(string fileName);
+
+ // Load sound from wave data
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Sound LoadSoundFromWave(Wave wave);
+
+ // Update sound buffer with new data
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void UpdateSound(Sound sound, IntPtr data, int samplesCount);
+
+ // Unload wave data
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void UnloadWave(Wave wave);
+
+ // Unload sound
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void UnloadSound(Sound sound);
+
+ // Export wave data to file
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void ExportWave(Wave wave, string fileName);
+
+ // Export wave sample data to code (.h)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void ExportWaveAsCode(Wave wave, string fileName);
+
+ // Wave/Sound management functions
+
+ // Play a sound
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void PlaySound(Sound sound);
+
+ // Pause a sound
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void PauseSound(Sound sound);
+
+ // Resume a paused sound
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void ResumeSound(Sound sound);
+
+ // Stop playing a sound
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void StopSound(Sound sound);
+
+ // Check if a sound is currently playing
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ [return: MarshalAs(UnmanagedType.I1)]
+ public static extern bool IsSoundPlaying(Sound sound);
+
+ // Set volume for a sound (1.0 is max level)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void SetSoundVolume(Sound sound, float volume);
+
+ // Set pitch for a sound (1.0 is base level)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void SetSoundPitch(Sound sound, float pitch);
+
+ // Convert wave data to desired format
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void WaveFormat(ref Wave wave, int sampleRate, int sampleSize, int channels);
+
+ // Copy a wave to a new wave
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Wave WaveCopy(Wave wave);
+
+ // Crop a wave to defined samples range
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void WaveCrop(ref Wave wave, int initSample, int finalSample);
+
+ // Get samples data from wave as a floats array
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern IntPtr GetWaveData(Wave wave);
+
+ // Music management functions
+
+ // Load music stream from file
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern MusicData LoadMusicStream(string fileName);
+
+ // Unload music stream
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void UnloadMusicStream(MusicData music);
+
+ // Start music playing
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void PlayMusicStream(MusicData music);
+
+ // Updates buffers for music streaming
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void UpdateMusicStream(MusicData music);
+
+ // Stop music playing
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void StopMusicStream(MusicData music);
+
+ // Pause music playing
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void PauseMusicStream(MusicData music);
+
+ // Resume playing paused music
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void ResumeMusicStream(MusicData music);
+
+ // Check if music is playing
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ [return: MarshalAs(UnmanagedType.I1)]
+ public static extern bool IsMusicPlaying(MusicData music);
+
+ // Set volume for music (1.0 is max level)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void SetMusicVolume(MusicData music, float volume);
+
+ // Set pitch for a music (1.0 is base level)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void SetMusicPitch(MusicData music, float pitch);
+
+ // Set music loop count (loop repeats)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void SetMusicLoopCount(MusicData music, int count);
+
+ // Get music time length (in seconds)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern float GetMusicTimeLength(MusicData music);
+
+ // Get current music time played (in seconds)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern float GetMusicTimePlayed(MusicData music);
+
+ // AudioStream management functions
+
+ // Init audio stream (to stream raw audio pcm data)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern AudioStream InitAudioStream(uint sampleRate, uint sampleSize, uint channels);
+
+ // Update audio stream buffers with data
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void UpdateAudioStream(AudioStream stream, IntPtr data, int samplesCount);
+
+ // Close audio stream and free memory
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void CloseAudioStream(AudioStream stream);
+
+ // Check if any audio stream buffers requires refill
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ [return: MarshalAs(UnmanagedType.I1)]
+ public static extern bool IsAudioBufferProcessed(AudioStream stream);
+
+ // Play audio stream
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void PlayAudioStream(AudioStream stream);
+
+ // Pause audio stream
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void PauseAudioStream(AudioStream stream);
+
+ // Resume audio stream
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void ResumeAudioStream(AudioStream stream);
+
+ // Check if audio stream is playing
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ [return: MarshalAs(UnmanagedType.I1)]
+ public static extern bool IsAudioStreamPlaying(AudioStream stream);
+
+ // Stop audio stream
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void StopAudioStream(AudioStream stream);
+
+ // Set volume for audio stream (1.0 is max level)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void SetAudioStreamVolume(AudioStream stream, float volume);
+
+ // Set pitch for audio stream (1.0 is base level)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void SetAudioStreamPitch(AudioStream stream, float pitch);
+ }
+}
diff --git a/Bindings/Raymath.cs b/Bindings/Raymath.cs
index 3916557..4bb2fd1 100644
--- a/Bindings/Raymath.cs
+++ b/Bindings/Raymath.cs
@@ -1,405 +1,349 @@
-/* Raylib-cs
- * Raymath.cs - Core bindings to raymth
- * Copyright 2019 Chris Dill
- *
- * Release under zLib License.
- * See LICENSE for details.
- */
+/* Raymath.cs
+*
+* Copyright 2019 Chris Dill
+*
+* Release under zLib License.
+* See LICENSE for details.
+*/
-using System;
using System.Runtime.InteropServices;
+using Quaternion = Raylib.Vector4;
namespace Raylib
{
- // Vector2 type
- [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
- public partial struct Vector2
+ // NOTE: Helper types to be used instead of array return types for *ToFloat functions
+ public unsafe struct float3
{
- public float x;
- public float y;
+ public fixed float v[3];
}
- // Vector3 type
- [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
- public partial struct Vector3
+ public unsafe struct float16
{
- public float x;
- public float y;
- public float z;
- }
-
- // Vector4 type
- [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
- public partial struct Vector4
- {
- public float x;
- public float y;
- public float z;
- public float w;
- }
-
- // Matrix type (OpenGL style 4x4 - right handed, column major)
- [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
- public struct Matrix
- {
- public float m0, m4, m8, m12;
- public float m1, m5, m9, m13;
- public float m2, m6, m10, m14;
- public float m3, m7, m11, m15;
-
- public override string ToString()
- {
- return $"Matrix({m0}, {m4}, {m8}, {m12}\n {m1}, {m5}, {m9}, {m13}\n {m2}, {m6}, {m10}, {m14}\n {m3}, {m7}, {m11}, {m15})";
- }
- }
-
- // Quaternion type
- [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
- public struct Quaternion
- {
- public float x;
- public float y;
- public float z;
- public float w;
-
- public override string ToString()
- {
- return "Quaternion(" + x + " " + y + " " + z + " " + w + ")";
- }
+ public fixed float v[16];
}
public static partial class Raylib
{
// Clamp float value
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern float Clamp(float value, float min, float max);
- ///
- /// Linearly interpolates between two values.
- ///
- /// Source value.
- /// Source value.
- ///
- /// Value between 0 and 1 indicating the weight of value2.
- ///
- /// Interpolated value.
- ///
- /// This method performs the linear interpolation based on the following formula.
- /// value1 + (value2 - value1) * amount
- /// Passing amount a value of 0 will cause value1 to be returned, a value of 1 will
- /// cause value2 to be returned.
- ///
- public static float Lerp(float value1, float value2, float amount)
- {
- return value1 + (value2 - value1) * amount;
- }
+ // Calculate linear interpolation between two vectors
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern float Lerp(float start, float end, float amount);
// Vector with components value 0.0f
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern Vector2 Vector2Zero();
// Vector with components value 1.0f
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern Vector2 Vector2One();
// Add two vectors (v1 + v2)
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern Vector2 Vector2Add(Vector2 v1, Vector2 v2);
// Subtract two vectors (v1 - v2)
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern Vector2 Vector2Subtract(Vector2 v1, Vector2 v2);
// Calculate vector length
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern float Vector2Length(Vector2 v);
// Calculate two vectors dot product
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern float Vector2DotProduct(Vector2 v1, Vector2 v2);
// Calculate distance between two vectors
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern float Vector2Distance(Vector2 v1, Vector2 v2);
// Calculate angle from two vectors in X-axis
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern float Vector2Angle(Vector2 v1, Vector2 v2);
// Scale vector (multiply by value)
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern Vector2 Vector2Scale(Vector2 v, float scale);
- // Multiply vector by a vector
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
- public static extern Vector2 Vector2Multiplyv(Vector2 v1, Vector2 v2);
+ // Multiply vector by vector
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Vector2 Vector2MultiplyV(Vector2 v1, Vector2 v2);
// Negate vector
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern Vector2 Vector2Negate(Vector2 v);
// Divide vector by a float value
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern Vector2 Vector2Divide(Vector2 v, float div);
- // Divide vector by a vector
+ // Divide vector by vector
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern Vector2 Vector2DivideV(Vector2 v1, Vector2 v2);
// Normalize provided vector
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern Vector2 Vector2Normalize(Vector2 v);
+ // Calculate linear interpolation between two vectors
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Vector2 Vector2Lerp(Vector2 v1, Vector2 v2, float amount);
+
// Vector with components value 0.0f
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern Vector3 Vector3Zero();
// Vector with components value 1.0f
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern Vector3 Vector3One();
// Add two vectors
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern Vector3 Vector3Add(Vector3 v1, Vector3 v2);
- // Substract two vectors
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ // Subtract two vectors
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern Vector3 Vector3Subtract(Vector3 v1, Vector3 v2);
// Multiply vector by scalar
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern Vector3 Vector3Multiply(Vector3 v, float scalar);
// Multiply vector by vector
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern Vector3 Vector3MultiplyV(Vector3 v1, Vector3 v2);
// Calculate two vectors cross product
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern Vector3 Vector3CrossProduct(Vector3 v1, Vector3 v2);
// Calculate one vector perpendicular vector
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern Vector3 Vector3Perpendicular(Vector3 v);
// Calculate vector length
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern float Vector3Length(Vector3 v);
// Calculate two vectors dot product
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern float Vector3DotProduct(Vector3 v1, Vector3 v2);
// Calculate distance between two vectors
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern float Vector3Distance(Vector3 v1, Vector3 v2);
// Scale provided vector
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern Vector3 Vector3Scale(Vector3 v, float scale);
// Negate provided vector (invert direction)
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern Vector3 Vector3Negate(Vector3 v);
// Divide vector by a float value
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern Vector3 Vector3Divide(Vector3 v, float div);
- // Divide vector by a vector
+ // Divide vector by vector
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern Vector3 Vector3DivideV(Vector3 v1, Vector3 v2);
// Normalize provided vector
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern Vector3 Vector3Normalize(Vector3 v);
// Orthonormalize provided vectors
// Makes vectors normalized and orthogonal to each other
// Gram-Schmidt function implementation
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
- public static extern void Vector3OrthoNormalize(out Vector3 v1, out Vector3 v2);
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void Vector3OrthoNormalize(ref Vector3 v1, ref Vector3 v2);
// Transforms a Vector3 by a given Matrix
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern Vector3 Vector3Transform(Vector3 v, Matrix mat);
// Transform a vector by quaternion rotation
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern Vector3 Vector3RotateByQuaternion(Vector3 v, Quaternion q);
-
+
// Calculate linear interpolation between two vectors
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern Vector3 Vector3Lerp(Vector3 v1, Vector3 v2, float amount);
-
+
// Calculate reflected vector to normal
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern Vector3 Vector3Reflect(Vector3 v, Vector3 normal);
-
+
// Return min value for each pair of components
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern Vector3 Vector3Min(Vector3 v1, Vector3 v2);
-
+
// Return max value for each pair of components
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern Vector3 Vector3Max(Vector3 v1, Vector3 v2);
-
+
// Compute barycenter coordinates (u, v, w) for point p with respect to triangle (a, b, c)
// NOTE: Assumes P is on the plane of the triangle
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern Vector3 Vector3Barycenter(Vector3 p, Vector3 a, Vector3 b, Vector3 c);
-
+
// Returns Vector3 as float array
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
- public static extern float[] Vector3ToFloatV(Vector3 v);
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern float3 Vector3ToFloatV(Vector3 v);
// Compute matrix determinant
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern float MatrixDeterminant(Matrix mat);
// Returns the trace of the matrix (sum of the values along the diagonal)
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern float MatrixTrace(Matrix mat);
// Transposes provided matrix
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern Matrix MatrixTranspose(Matrix mat);
// Invert provided matrix
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern Matrix MatrixInvert(Matrix mat);
-
+
// Normalize provided matrix
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern Matrix MatrixNormalize(Matrix mat);
-
+
// Returns identity matrix
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern Matrix MatrixIdentity();
// Add two matrices
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern Matrix MatrixAdd(Matrix left, Matrix right);
-
- // Substract two matrices (left - right)
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
- public static extern Matrix MatrixSubstract(Matrix left, Matrix right);
-
+
+ // Subtract two matrices (left - right)
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Matrix MatrixSubtract(Matrix left, Matrix right);
+
+ // Returns translation matrix
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Matrix MatrixTranslate(float x, float y, float z);
+
// Create rotation matrix from axis and angle
// NOTE: Angle should be provided in radians
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
- public static extern Matrix MatrixTranslate(float x, float y, float z);
-
- // Returns x-rotation matrix (angle in radians)
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern Matrix MatrixRotate(Vector3 axis, float angle);
// Returns x-rotation matrix (angle in radians)
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern Matrix MatrixRotateX(float angle);
// Returns y-rotation matrix (angle in radians)
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern Matrix MatrixRotateY(float angle);
// Returns z-rotation matrix (angle in radians)
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern Matrix MatrixRotateZ(float angle);
// Returns scaling matrix
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern Matrix MatrixScale(float x, float y, float z);
-
+
// Returns two matrix multiplication
// NOTE: When multiplying matrices... the order matters!
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern Matrix MatrixMultiply(Matrix left, Matrix right);
-
+
// Returns perspective projection matrix
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern Matrix MatrixFrustum(double left, double right, double bottom, double top, double near, double far);
// Returns perspective projection matrix
// NOTE: Angle should be provided in radians
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern Matrix MatrixPerspective(double fovy, double aspect, double near, double far);
-
+
// Returns orthographic projection matrix
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern Matrix MatrixOrtho(double left, double right, double bottom, double top, double near, double far);
-
+
// Returns camera look-at matrix (view matrix)
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern Matrix MatrixLookAt(Vector3 eye, Vector3 target, Vector3 up);
-
+
// Returns float array of matrix data
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
- public static extern float[] MatrixToFloatV(Matrix mat);
-
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern float16 MatrixToFloatV(Matrix mat);
+
// Returns identity quaternion
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern Quaternion QuaternionIdentity();
-
+
// Computes the length of a quaternion
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern float QuaternionLength(Quaternion q);
-
+
// Normalize provided quaternion
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern Quaternion QuaternionNormalize(Quaternion q);
-
+
// Invert provided quaternion
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern Quaternion QuaternionInvert(Quaternion q);
-
+
// Calculate two quaternion multiplication
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern Quaternion QuaternionMultiply(Quaternion q1, Quaternion q2);
-
+
// Calculate linear interpolation between two quaternions
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern Quaternion QuaternionLerp(Quaternion q1, Quaternion q2, float amount);
// Calculate slerp-optimized interpolation between two quaternions
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern Quaternion QuaternionNlerp(Quaternion q1, Quaternion q2, float amount);
-
+
// Calculates spherical linear interpolation between two quaternions
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern Quaternion QuaternionSlerp(Quaternion q1, Quaternion q2, float amount);
-
+
// Calculate quaternion based on the rotation from one vector to another
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern Quaternion QuaternionFromVector3ToVector3(Vector3 from, Vector3 to);
-
+
// Returns a quaternion for a given rotation matrix
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern Quaternion QuaternionFromMatrix(Matrix mat);
-
+
// Returns a matrix for a given quaternion
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern Matrix QuaternionToMatrix(Quaternion q);
// Returns rotation quaternion for an angle and axis
// NOTE: angle must be provided in radians
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern Quaternion QuaternionFromAxisAngle(Vector3 axis, float angle);
-
+
// Returns the rotation angle and axis for a given quaternion
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
- public static extern void QuaternionToAxisAngle(Quaternion q, out Vector3 outAxis, float[] outAngle);
-
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern void QuaternionToAxisAngle(Quaternion q, ref Vector3 outAxis, ref float outAngle);
+
// Returns he quaternion equivalent to Euler angles
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern Quaternion QuaternionFromEuler(float roll, float pitch, float yaw);
// Return the Euler angles equivalent to quaternion (roll, pitch, yaw)
// NOTE: Angles are returned in a Vector3 struct in degrees
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern Vector3 QuaternionToEuler(Quaternion q);
-
+
// Transform a quaternion given a transformation matrix
- [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
- public static extern Quaternion QuaternionTransform(Quaternion q, Matrix mat);
+ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
+ public static extern Quaternion QuaternionTransform(Quaternion q, Matrix mat);
}
}