From 167a41f20d5409ebfd3046b7b49c34d3ffbc1eaa Mon Sep 17 00:00:00 2001 From: ChrisDill Date: Tue, 23 Oct 2018 11:57:13 +0100 Subject: [PATCH] Bindings cleanup - Replaced tabs with 4 spaces - Added comments to Raylib.cs --- Bindings/Physac.cs | 4 +- Bindings/Raygui.cs | 18 +- Bindings/Raylib.cs | 1688 ++++++++++++++++++++++--------------------- Bindings/Raymath.cs | 4 +- Bindings/Rlgl.cs | 2 +- 5 files changed, 898 insertions(+), 818 deletions(-) diff --git a/Bindings/Physac.cs b/Bindings/Physac.cs index 21c8310..44bdcc8 100644 --- a/Bindings/Physac.cs +++ b/Bindings/Physac.cs @@ -39,7 +39,7 @@ namespace Raylib [MarshalAs(UnmanagedType.ByValArray, ArraySubType = UnmanagedType.Struct, SizeConst = Raylib.PHYSAC_MAX_VERTICES)] public Vector2[] positions; // Polygon vertex positions vectors - + [MarshalAs(UnmanagedType.ByValArray, ArraySubType = UnmanagedType.Struct, SizeConst = Raylib.PHYSAC_MAX_VERTICES)] public Vector2[] normals; // Polygon vertex normals vectors } @@ -86,7 +86,7 @@ namespace Raylib public PhysicsBodyData bodyB; // Manifold second physics body reference public float penetration; // Depth of penetration from collision public Vector2 normal; // Normal direction vector from 'a' to 'b' - + [MarshalAs(UnmanagedType.ByValArray, ArraySubType = UnmanagedType.Struct, SizeConst = 2)] public Vector2[] contacts; // Points of contact during collision diff --git a/Bindings/Raygui.cs b/Bindings/Raygui.cs index 95b2744..ffabd21 100644 --- a/Bindings/Raygui.cs +++ b/Bindings/Raygui.cs @@ -188,14 +188,14 @@ namespace Raylib LISTVIEW_TEXT_COLOR_DISABLED } - // GUI controls state - public enum GuiControlState - { - DISABLED = 0, - NORMAL, - FOCUSED, - PRESSED - } + // GUI controls state + public enum GuiControlState + { + DISABLED = 0, + NORMAL, + FOCUSED, + PRESSED + } #endregion @@ -203,7 +203,7 @@ namespace Raylib { #region Raylib-cs Variables - #endregion + #endregion #region Raylib-cs Functions diff --git a/Bindings/Raylib.cs b/Bindings/Raylib.cs index 5d6529b..dd694c0 100644 --- a/Bindings/Raylib.cs +++ b/Bindings/Raylib.cs @@ -558,9 +558,7 @@ namespace Raylib public IntPtr weightBias; public IntPtr weightId; - public uint vaoId; - public fixed uint vboId[7]; } @@ -937,61 +935,65 @@ namespace Raylib #region Raylib-cs Functions + //------------------------------------------------------------------------------------ + // 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); + 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(); + // 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)] - public static extern bool IsWindowReady(); + // Check if window has been initialized successfully + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] + public static extern bool IsWindowReady(); - // Check if KEY_ESCAPE pressed or Close icon pressed - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern bool WindowShouldClose(); + // Check if KEY_ESCAPE pressed or Close icon pressed + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] + public static extern bool WindowShouldClose(); - // Check if window has been minimized (or lost focus) - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern bool IsWindowMinimized(); - - // Toggle fullscreen mode (only PLATFORM_DESKTOP) - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern void ToggleFullscreen(); + // Check if window has been minimized (or lost focus) + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] + public static extern bool IsWindowMinimized(); - // Set icon for window (only PLATFORM_DESKTOP) - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern void SetWindowIcon(Image image); + // Toggle fullscreen mode (only PLATFORM_DESKTOP) + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] + public static extern void ToggleFullscreen(); - // Set title for window (only PLATFORM_DESKTOP) - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern void SetWindowTitle(string title); + // Set icon for window (only PLATFORM_DESKTOP) + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] + public static extern void SetWindowIcon(Image image); - // Set window position on screen (only PLATFORM_DESKTOP) - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern void SetWindowPosition(int x, int y); + // Set title for window (only PLATFORM_DESKTOP) + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] + public static extern void SetWindowTitle(string title); - // Set monitor for the current window (fullscreen mode) - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern void SetWindowMonitor(int monitor); + // Set window position on screen (only PLATFORM_DESKTOP) + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] + public static extern void SetWindowPosition(int x, int y); - // Set window minimum dimensions (for FLAG_WINDOW_RESIZABLE) - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern void SetWindowMinSize(int width, int height); + // Set monitor for the current window (fullscreen mode) + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] + public static extern void SetWindowMonitor(int monitor); - // Set window dimensions - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern void SetWindowSize(int width, int height); + // Set window minimum dimensions (for FLAG_WINDOW_RESIZABLE) + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] + public static extern void SetWindowMinSize(int width, int height); - // Get current screen width - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern int GetScreenWidth(); + // Set window dimensions + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] + public static extern void SetWindowSize(int width, int height); - // Get current screen height - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern int GetScreenHeight(); + // 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)] @@ -1029,765 +1031,807 @@ namespace Raylib //[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)] - 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(); - - // 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(); - - // 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); - - // 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(); - - // 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); - - // 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(byte 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(int 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); - - // Check file extension - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - 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)] - public static extern bool ChangeDirectory(string dir); - - // Check if a file has been dropped into window - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern bool IsFileDropped(); - - // Get dropped files names - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern string[] GetDroppedFiles(ref int count); - - // Clear dropped files paths buffer - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern void ClearDroppedFiles(); - - // 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); - - // Detect if a key has been pressed once - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern bool IsKeyPressed(int key); - - // Detect if a key is being pressed - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern bool IsKeyDown(int key); - - // Detect if a key has been released once - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern bool IsKeyReleased(int key); - - // Detect if a key is NOT being pressed - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern bool IsKeyUp(int 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(int key); - - // Detect if a gamepad is available - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern bool IsGamepadAvailable(int gamepad); - - // Check gamepad name (if available) - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern bool IsGamepadName(int gamepad, string name); - - // Return gamepad internal name id - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern string GetGamepadName(int gamepad); - - // Detect if a gamepad button has been pressed once - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern bool IsGamepadButtonPressed(int gamepad, int button); - - // Detect if a gamepad button is being pressed - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern bool IsGamepadButtonDown(int gamepad, int button); - - // Detect if a gamepad button has been released once - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern bool IsGamepadButtonReleased(int gamepad, int button); - - // Detect if a gamepad button is NOT being pressed - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern bool IsGamepadButtonUp(int 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(int gamepad); - - // Return axis movement value for a gamepad axis - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern float GetGamepadAxisMovement(int gamepad, int axis); - - // Detect if a mouse button has been pressed once - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern bool IsMouseButtonPressed(int button); - - // Detect if a mouse button is being pressed - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern bool IsMouseButtonDown(int button); - - // Detect if a mouse button has been released once - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern bool IsMouseButtonReleased(int button); - - // Detect if a mouse button is NOT being pressed - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern bool IsMouseButtonUp(int 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 scale); - - // Returns mouse wheel movement Y - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern int GetMouseWheelMove(); - - // 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); - - // Enable a set of gestures using flags - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern void SetGesturesEnabled(uint gestureFlags); - - // Check if a gesture have been detected - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern bool IsGestureDetected(int 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(); - - // Set camera mode (multiple camera modes available) - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern void SetCameraMode(Camera3D camera, int 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); - - // 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)] - public static extern bool CheckCollisionRecs(Rectangle rec1, Rectangle rec2); - - // Check collision between two circles - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern bool CheckCollisionCircles(Vector2 center1, float radius1, Vector2 center2, float radius2); - - // Check collision between circle and rectangle - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - 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); + 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)] + 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(byte 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(int 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)] + 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)] + public static extern bool ChangeDirectory(string dir); + + // Check if a file has been dropped into window + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] + public static extern bool IsFileDropped(); + + // Get dropped files names + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] + public static extern string[] GetDroppedFiles(ref int count); + + // 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)] + public static extern bool IsKeyPressed(int key); + + // Detect if a key is being pressed + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] + public static extern bool IsKeyDown(int key); + + // Detect if a key has been released once + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] + public static extern bool IsKeyReleased(int key); + + // Detect if a key is NOT being pressed + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] + public static extern bool IsKeyUp(int 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(int key); + + // Input-related functions: gamepads + // Detect if a gamepad is available + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] + public static extern bool IsGamepadAvailable(int gamepad); + + // Check gamepad name (if available) + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] + public static extern bool IsGamepadName(int gamepad, string name); + + // Return gamepad internal name id + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] + public static extern string GetGamepadName(int gamepad); + + // Detect if a gamepad button has been pressed once + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] + public static extern bool IsGamepadButtonPressed(int gamepad, int button); + + // Detect if a gamepad button is being pressed + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] + public static extern bool IsGamepadButtonDown(int gamepad, int button); + + // Detect if a gamepad button has been released once + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] + public static extern bool IsGamepadButtonReleased(int gamepad, int button); + + // Detect if a gamepad button is NOT being pressed + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] + public static extern bool IsGamepadButtonUp(int 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(int gamepad); + + // Return axis movement value for a gamepad axis + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] + public static extern float GetGamepadAxisMovement(int 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(int button); + + // Detect if a mouse button is being pressed + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] + public static extern bool IsMouseButtonDown(int button); + + // Detect if a mouse button has been released once + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] + public static extern bool IsMouseButtonReleased(int button); + + // Detect if a mouse button is NOT being pressed + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] + public static extern bool IsMouseButtonUp(int 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 scale); + + // 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(uint gestureFlags); + + // Check if a gesture have been detected + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] + public static extern bool IsGestureDetected(int 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, int 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)] + public static extern bool CheckCollisionRecs(Rectangle rec1, Rectangle rec2); + + // Check collision between two circles + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] + public static extern bool CheckCollisionCircles(Vector2 center1, float radius1, Vector2 center2, float radius2); + + // Check collision between circle and rectangle + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] + 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)] - public static extern bool CheckCollisionPointRec(Vector2 point, Rectangle rec); + public static extern bool CheckCollisionPointRec(Vector2 point, Rectangle rec); // Check if point is inside circle [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern bool CheckCollisionPointCircle(Vector2 point, Vector2 center, float radius); + public static extern bool CheckCollisionPointCircle(Vector2 point, Vector2 center, float radius); // Check if point is inside a triangle [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern bool CheckCollisionPointTriangle(Vector2 point, Vector2 p1, Vector2 p2, Vector2 p3); + 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); + 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); + 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); + 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); + 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); + 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); + public static extern Texture2D LoadTexture(string fileName); // Load texture from image data [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern Texture2D LoadTextureFromImage(Image image); + 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); + 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); + 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); + 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); + 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); + 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); + 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); + 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); + 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, Color[] pixels); + public static extern void UpdateTexture(Texture2D texture, Color[] pixels); + // Image manipulation functions // Create an image duplicate (useful for transformations) [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern Image ImageCopy(Image image); + 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); + 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); + 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); + 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); + 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); + 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); + 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); + 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); + 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); + 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); + 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); + 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); + 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); + 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); + 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); + 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); + 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); + 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); + 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); + public static extern void ImageFlipVertical(ref Image image); // Flip image horizontally [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern void ImageFlipHorizontal(ref Image image); + public static extern void ImageFlipHorizontal(ref Image image); // Rotate image clockwise 90deg [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern void ImageRotateCW(Image image); + public static extern void ImageRotateCW(Image image); // Rotate image counter-clockwise 90deg [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern void ImageRotateCCW(Image image); + 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); + 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); + 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); + 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); + 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); + 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); + 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); + 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); + 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); + 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); + 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); + 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); + 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); + 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); + 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); + 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, int filterMode); + public static extern void SetTextureFilter(Texture2D texture, int filterMode); // Set texture wrapping mode [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern void SetTextureWrap(Texture2D texture, int wrapMode); + public static extern void SetTextureWrap(Texture2D texture, int 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); + 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); + 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); + 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); + public static extern void DrawTextureRec(Texture2D texture, Rectangle sourceRec, Vector2 position, 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); + 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(); + 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); + 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); + 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 CharInfo[] LoadFontData(string fileName, int fontSize, int[] fontChars, int charsCount, bool sdf); + public static extern CharInfo[] 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(CharInfo[] chars, int fontSize, int charsCount, int padding, int packMethod); + public static extern Image GenImageFontAtlas(CharInfo[] 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); + // Unload Font from GPU memory (VRAM) + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] + public static extern void UnloadFont(Font font); - // Shows current FPS - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawFPS(int posX, int posY); + // 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); + 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); + 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); + 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); + public static extern Vector2 MeasureTextEx(Font font, string text, float fontSize, float spacing); // Formatting of text with variables to 'embed' [DllImport(nativeLibName, EntryPoint = "FormatText", CallingConvention = CallingConvention.Cdecl)] @@ -1799,523 +1843,559 @@ namespace Raylib // Get a piece of a text string [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern string SubText(string text, int position, int length); + public static extern string SubText(string text, int position, int length); // Get index position for a unicode character on font [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern int GetGlyphIndex(Font font, int character); + 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); + 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); + 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); + 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); + 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); + 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); + 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); + 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); + 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); + 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); + 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); + 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); + 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); + 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); + public static extern void DrawGrid(int slices, float spacing); // Draw simple gizmo [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawGizmo(Vector3 position); + 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); + public static extern Model LoadModel(string fileName); // Load model from generated mesh [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern Model LoadModelFromMesh(Mesh mesh); + 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); + 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); + 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); + 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); + 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); + public static extern BoundingBox MeshBoundingBox(Mesh mesh); // Compute mesh tangents [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern void MeshTangents(ref Mesh mesh); + public static extern void MeshTangents(ref Mesh mesh); // Compute mesh binormals [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern void MeshBinormals(ref Mesh mesh); + 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); + 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); + 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); + 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); + 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); + 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); + 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); + 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); + 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); + 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); + 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(); + public static extern Material LoadMaterialDefault(); // Unload material from GPU memory (VRAM) [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern void UnloadMaterial(Material material); + 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); + 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); + [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); + 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); + 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); + 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); + 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)] - public static extern bool CheckCollisionSpheres(Vector3 centerA, float radiusA, Vector3 centerB, float radiusB); + public static extern bool CheckCollisionSpheres(Vector3 centerA, float radiusA, Vector3 centerB, float radiusB); // Detect collision between two bounding boxes [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern bool CheckCollisionBoxes(BoundingBox box1, BoundingBox box2); + public static extern bool CheckCollisionBoxes(BoundingBox box1, BoundingBox box2); // Detect collision between box and sphere [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern bool CheckCollisionBoxSphere(BoundingBox box, Vector3 centerSphere, float radiusSphere); + public static extern bool CheckCollisionBoxSphere(BoundingBox box, Vector3 centerSphere, float radiusSphere); // Detect collision between ray and sphere [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern bool CheckCollisionRaySphere(Ray ray, Vector3 spherePosition, float sphereRadius); + 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)] - public static extern bool CheckCollisionRaySphereEx(Ray ray, Vector3 spherePosition, float sphereRadius, Vector3 collisionPoint); + public static extern bool CheckCollisionRaySphereEx(Ray ray, Vector3 spherePosition, float sphereRadius, Vector3 collisionPoint); // Detect collision between ray and box [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern bool CheckCollisionRayBox(Ray ray, BoundingBox box); + 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); + 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); + 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); + 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); + 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); + 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); + 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); + public static extern void UnloadShader(Shader shader); // Get default shader [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern Shader GetShaderDefault(); + public static extern Shader GetShaderDefault(); // Get default texture [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern Texture2D GetTextureDefault(); + 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); + 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); + 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); + 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); + 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); + 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); + public static extern void SetMatrixModelview(Matrix view); // Get internal modelview matrix [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern Matrix GetMatrixModelview(); + 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); + 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); + 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); + 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); + 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); + public static extern void BeginShaderMode(Shader shader); // End custom shader drawing (use default shader) [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern void EndShaderMode(); + public static extern void EndShaderMode(); // Begin blending mode (alpha, additive, multiplied) [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern void BeginBlendMode(int mode); + public static extern void BeginBlendMode(int mode); // End blending mode (reset to default: alpha blending) [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern void EndBlendMode(); + 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(int vrDeviceType); + public static extern VrDeviceInfo GetVrDeviceInfo(int vrDeviceType); // Init VR simulator for selected device parameters [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern void InitVrSimulator(VrDeviceInfo info); + public static extern void InitVrSimulator(VrDeviceInfo info); // Close VR simulator for current device [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern void CloseVrSimulator(); + public static extern void CloseVrSimulator(); // Detect if VR simulator is ready [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern bool IsVrSimulatorReady(); + public static extern bool IsVrSimulatorReady(); // Set VR distortion shader for stereoscopic rendering [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern void SetVrDistortionShader(Shader shader); + 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); + public static extern void UpdateVrTracking(Camera3D camera); // Enable/Disable VR experience [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern void ToggleVrMode(); + public static extern void ToggleVrMode(); // Begin VR simulator stereo rendering [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern void BeginVrDrawing(); + public static extern void BeginVrDrawing(); // End VR simulator stereo rendering [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern void EndVrDrawing(); + public static extern void EndVrDrawing(); - // 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)] - public static extern bool IsAudioDeviceReady(); + //------------------------------------------------------------------------------------ + // Audio Loading and Playing Functions (Module: audio) + //------------------------------------------------------------------------------------ - // Set master volume (listener) - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern void SetMasterVolume(float volume); + // Audio device management functions + // Initialize audio device and context + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] + public static extern void InitAudioDevice(); - // Load wave data from file - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern Wave LoadWave(string fileName); + // Close the audio device and context + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] + public static extern void CloseAudioDevice(); - // 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); + // Check if audio device has been initialized successfully + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] + public static extern bool IsAudioDeviceReady(); - // Load sound from file - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern Sound LoadSound(string fileName); + // Set master volume (listener) + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] + public static extern void SetMasterVolume(float volume); - // Load sound from wave data - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern Sound LoadSoundFromWave(Wave wave); + // Wave/Sound loading/unloading functions + // Load wave data from file + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] + public static extern Wave LoadWave(string fileName); - // Update sound buffer with new data - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern void UpdateSound(Sound sound, byte[] data, int samplesCount); + // 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); - // Unload wave data - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern void UnloadWave(Wave wave); + // Load sound from file + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] + public static extern Sound LoadSound(string fileName); - // Unload sound - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern void UnloadSound(Sound sound); + // Load sound from wave data + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] + public static extern Sound LoadSoundFromWave(Wave wave); - // Play a sound - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern void PlaySound(Sound sound); + // Update sound buffer with new data + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] + public static extern void UpdateSound(Sound sound, byte[] data, int samplesCount); - // 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); + // Unload wave data + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] + public static extern void UnloadWave(Wave wave); - // Stop playing a sound - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern void StopSound(Sound sound); + // Unload sound + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] + public static extern void UnloadSound(Sound sound); - // Check if a sound is currently playing - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern bool IsSoundPlaying(Sound sound); + // Wave/Sound management functions + // Play a sound + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] + public static extern void PlaySound(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); + // Pause a sound + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] + public static extern void PauseSound(Sound sound); - // Set pitch for a sound (1.0 is base level) - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern void SetSoundPitch(Sound sound, float pitch); + // Resume a paused sound + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] + public static extern void ResumeSound(Sound sound); - // 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); + // Stop playing a sound + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] + public static extern void StopSound(Sound sound); - // Copy a wave to a new wave - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern Wave WaveCopy(Wave wave); + // Check if a sound is currently playing + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] + public static extern bool IsSoundPlaying(Sound sound); - // Crop a wave to defined samples range - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern void WaveCrop(ref Wave wave, int initSample, int finalSample); + // Set volume for a sound (1.0 is max level) + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] + public static extern void SetSoundVolume(Sound sound, float volume); - // Get samples data from wave as a floats array - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern float[] GetWaveData(Wave wave); + // Set pitch for a sound (1.0 is base level) + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] + public static extern void SetSoundPitch(Sound sound, float pitch); - // Load IntPtr stream from file - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern IntPtr LoadMusicStream(string fileName); + // 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); - // Unload IntPtr stream - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern void UnloadMusicStream(IntPtr music); + // Copy a wave to a new wave + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] + public static extern Wave WaveCopy(Wave wave); - // Start IntPtr playing - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern void PlayMusicStream(IntPtr music); + // Crop a wave to defined samples range + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] + public static extern void WaveCrop(ref Wave wave, int initSample, int finalSample); - // Updates buffers for IntPtr streaming - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern void UpdateMusicStream(IntPtr music); + // Get samples data from wave as a floats array + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] + public static extern float[] GetWaveData(Wave wave); - // Stop IntPtr playing - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern void StopMusicStream(IntPtr music); + // Music management functions + // Load IntPtr stream from file + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] + public static extern IntPtr LoadMusicStream(string fileName); - // Pause IntPtr playing - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern void PauseMusicStream(IntPtr music); + // Unload IntPtr stream + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] + public static extern void UnloadMusicStream(IntPtr music); - // Resume playing paused music - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern void ResumeMusicStream(IntPtr music); + // Start IntPtr playing + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] + public static extern void PlayMusicStream(IntPtr music); - // Check if IntPtr is playing - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern bool IsMusicPlaying(IntPtr music); + // Updates buffers for IntPtr streaming + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] + public static extern void UpdateMusicStream(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); + // Stop IntPtr playing + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] + public static extern void StopMusicStream(IntPtr music); - // Set pitch for a IntPtr (1.0 is base level) - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern void SetMusicPitch(IntPtr music, float pitch); + // Pause IntPtr playing + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] + public static extern void PauseMusicStream(IntPtr music); - // Set IntPtr loop count (loop repeats) - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern void SetMusicLoopCount(IntPtr music, int count); + // Resume playing paused music + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] + public static extern void ResumeMusicStream(IntPtr music); - // Get IntPtr time length (in seconds) - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern float GetMusicTimeLength(IntPtr music); + // Check if IntPtr is playing + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] + public static extern bool IsMusicPlaying(IntPtr music); - // Get current IntPtr time played (in seconds) - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern float GetMusicTimePlayed(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); - // 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); + // Set pitch for a IntPtr (1.0 is base level) + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] + public static extern void SetMusicPitch(IntPtr music, float pitch); - // Update audio stream buffers with data - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern void UpdateAudioStream(AudioStream stream, byte[] data, int samplesCount); + // Set IntPtr loop count (loop repeats) + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] + public static extern void SetMusicLoopCount(IntPtr music, int count); - // Close audio stream and free memory - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern void CloseAudioStream(AudioStream stream); + // Get IntPtr time length (in seconds) + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] + public static extern float GetMusicTimeLength(IntPtr music); - // Check if any audio stream buffers requires refill - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern bool IsAudioBufferProcessed(AudioStream stream); + // Get current IntPtr time played (in seconds) + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] + public static extern float GetMusicTimePlayed(IntPtr music); - // Play audio stream - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern void PlayAudioStream(AudioStream stream); + // 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); - // Pause audio stream - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern void PauseAudioStream(AudioStream stream); + // Update audio stream buffers with data + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] + public static extern void UpdateAudioStream(AudioStream stream, byte[] data, int samplesCount); - // Resume audio stream - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern void ResumeAudioStream(AudioStream stream); + // Close audio stream and free memory + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] + public static extern void CloseAudioStream(AudioStream stream); - // Check if audio stream is playing - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern bool IsAudioStreamPlaying(AudioStream stream); + // Check if any audio stream buffers requires refill + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] + public static extern bool IsAudioBufferProcessed(AudioStream stream); - // Stop audio stream - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern void StopAudioStream(AudioStream stream); + // Play audio stream + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] + public static extern void PlayAudioStream(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); + // Pause audio stream + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] + public static extern void PauseAudioStream(AudioStream stream); - // Set pitch for audio stream (1.0 is base level) - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern void SetAudioStreamPitch(AudioStream stream, float pitch); + // 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)] + 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); #endregion } diff --git a/Bindings/Raymath.cs b/Bindings/Raymath.cs index 0f4a17d..76f1cc6 100644 --- a/Bindings/Raymath.cs +++ b/Bindings/Raymath.cs @@ -457,7 +457,7 @@ namespace Raylib // Calculate vector length [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] - public static extern float Vector3Length(Vector3 v); + public static extern float Vector3Length(Vector3 v); // Calculate two vectors dot product [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] @@ -675,7 +675,7 @@ namespace Raylib [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Quaternion QuaternionTransform(Quaternion q, Matrix mat); - #endregion + #endregion } } diff --git a/Bindings/Rlgl.cs b/Bindings/Rlgl.cs index 28273db..ab46172 100644 --- a/Bindings/Rlgl.cs +++ b/Bindings/Rlgl.cs @@ -23,7 +23,7 @@ namespace Raylib { #region Raylib-cs Variables - #endregion + #endregion #region Raylib-cs Functions