From 3224a583717b84c467bc0c39975c9700018a3ebc Mon Sep 17 00:00:00 2001 From: ChrisDill Date: Thu, 22 Apr 2021 10:46:24 +0100 Subject: [PATCH 1/5] Initial 3.7 update - Many breaking changes in this update. This is a work in progress and needs testing. --- Raylib-cs.Tests/RaylibTests.cs | 2 + Raylib-cs/Raylib.cs | 605 +++++++++++++++++---------------- Raylib-cs/Rlgl.cs | 362 +++++++++++++++++--- 3 files changed, 618 insertions(+), 351 deletions(-) diff --git a/Raylib-cs.Tests/RaylibTests.cs b/Raylib-cs.Tests/RaylibTests.cs index 1683b03..2203cea 100644 --- a/Raylib-cs.Tests/RaylibTests.cs +++ b/Raylib-cs.Tests/RaylibTests.cs @@ -36,6 +36,8 @@ namespace Raylib_cs.Tests Assert.True(BlittableHelper.IsBlittable()); Assert.True(BlittableHelper.IsBlittable()); Assert.True(BlittableHelper.IsBlittable()); + Assert.True(BlittableHelper.IsBlittable()); + Assert.True(BlittableHelper.IsBlittable()); } } } diff --git a/Raylib-cs/Raylib.cs b/Raylib-cs/Raylib.cs index 3bb1b72..f2f645a 100644 --- a/Raylib-cs/Raylib.cs +++ b/Raylib-cs/Raylib.cs @@ -125,7 +125,7 @@ namespace Raylib_cs public int top; // top border offset public int right; // right border offset public int bottom; // bottom border offset - public NPatchType type; // layout of the n-patch: 3x3, 1x3 or 3x1 + public NPatchLayout layout; // layout of the n-patch: 3x3, 1x3 or 3x1 } // Font character info @@ -155,19 +155,19 @@ namespace Raylib_cs [StructLayout(LayoutKind.Sequential)] public struct Camera3D { - public Vector3 position; // Camera position - public Vector3 target; // Camera target it looks-at - public Vector3 up; // Camera up vector (rotation over its axis) - public float fovy; // Camera field-of-view apperture in Y (degrees) in perspective, used as near plane width in orthographic - public CameraType type; // Camera type, defines projection type: CAMERA_PERSPECTIVE or CAMERA_ORTHOGRAPHIC + public Vector3 position; // Camera position + public Vector3 target; // Camera target it looks-at + public Vector3 up; // Camera up vector (rotation over its axis) + public float fovy; // Camera field-of-view apperture in Y (degrees) in perspective, used as near plane width in orthographic + public CameraProjection projection; // Camera type, defines projection type: CAMERA_PERSPECTIVE or CAMERA_ORTHOGRAPHIC - public Camera3D(Vector3 position, Vector3 target, Vector3 up, float fovy, CameraType type) + public Camera3D(Vector3 position, Vector3 target, Vector3 up, float fovy, CameraProjection projection) { this.position = position; this.target = target; this.up = up; this.fovy = fovy; - this.type = type; + this.projection = projection; } } @@ -381,15 +381,27 @@ namespace Raylib_cs public fixed float chromaAbCorrection[4]; // HMD chromatic aberration correction parameters } - // ---------------------------------------------------------------------------------- - // Enumerators Definition - // ---------------------------------------------------------------------------------- + // VR Stereo rendering configuration for simulator + [StructLayout(LayoutKind.Sequential)] + public struct VrStereoConfig + { + public Matrix4x4 projection1; // VR projection matrices (per eye) + public Matrix4x4 projection2; // VR projection matrices (per eye) + public Matrix4x4 viewOffset1; // VR view offset matrices (per eye) + public Matrix4x4 viewOffset2; // VR view offset matrices (per eye) + public Vector2 leftLensCenter; // VR left lens center + public Vector2 rightLensCenter; // VR right lens center + public Vector2 leftScreenCenter; // VR left screen center + public Vector2 rightScreenCenter; // VR right screen center + public Vector2 scale; // VR distortion scale + public Vector2 scaleIn; // VR distortion scale in + } // System config flags // NOTE: Every bit registers one state (use it with bit masks) // By default all flags are set to 0 [Flags] - public enum ConfigFlag + public enum ConfigFlags { FLAG_VSYNC_HINT = 0x00000040, // Set to try enabling V-Sync on GPU FLAG_FULLSCREEN_MODE = 0x00000002, // Set to run program in fullscreen @@ -407,8 +419,8 @@ namespace Raylib_cs FLAG_INTERLACED_HINT = 0x00010000, // Set to try enabling interlaced video format (for V3D) } - // Trace log type - public enum TraceLogType + // Trace log level + public enum TraceLogLevel { LOG_ALL = 0, // Display all logs LOG_TRACE, @@ -426,7 +438,7 @@ namespace Raylib_cs public enum KeyboardKey { KEY_NULL = 0, - + // Alphanumeric keys KEY_APOSTROPHE = 39, KEY_COMMA = 44, @@ -536,12 +548,9 @@ namespace Raylib_cs KEY_KP_SUBTRACT = 333, KEY_KP_ADD = 334, KEY_KP_ENTER = 335, - KEY_KP_EQUAL = 336 - } + KEY_KP_EQUAL = 336, - // Android buttons - public enum AndroidButton - { + // Android key buttons KEY_BACK = 4, KEY_MENU = 82, KEY_VOLUME_UP = 24, @@ -556,7 +565,7 @@ namespace Raylib_cs MOUSE_MIDDLE_BUTTON = 2 } - // Mouse cursor types + // Mouse cursor public enum MouseCursor { MOUSE_CURSOR_DEFAULT = 0, @@ -564,23 +573,14 @@ namespace Raylib_cs MOUSE_CURSOR_IBEAM = 2, MOUSE_CURSOR_CROSSHAIR = 3, MOUSE_CURSOR_POINTING_HAND = 4, - MOUSE_CURSOR_RESIZE_EW = 5, // The horizontal resize/move arrow shape - MOUSE_CURSOR_RESIZE_NS = 6, // The vertical resize/move arrow shape + MOUSE_CURSOR_RESIZE_EW = 5, // The horizontal resize/move arrow shape + MOUSE_CURSOR_RESIZE_NS = 6, // The vertical resize/move arrow shape MOUSE_CURSOR_RESIZE_NWSE = 7, // The top-left to bottom-right diagonal resize/move arrow shape MOUSE_CURSOR_RESIZE_NESW = 8, // The top-right to bottom-left diagonal resize/move arrow shape - MOUSE_CURSOR_RESIZE_ALL = 9, // The omni-directional resize/move cursor shape + MOUSE_CURSOR_RESIZE_ALL = 9, // The omni-directional resize/move cursor shape MOUSE_CURSOR_NOT_ALLOWED = 10 // The operation-not-allowed shape } - // Gamepad number - public enum GamepadNumber - { - GAMEPAD_PLAYER1 = 0, - GAMEPAD_PLAYER2 = 1, - GAMEPAD_PLAYER3 = 2, - GAMEPAD_PLAYER4 = 3 - } - // Gamepad buttons public enum GamepadButton { @@ -609,9 +609,9 @@ namespace Raylib_cs GAMEPAD_BUTTON_RIGHT_TRIGGER_2, // These are buttons in the center of the gamepad - GAMEPAD_BUTTON_MIDDLE_LEFT, //PS3 Select - GAMEPAD_BUTTON_MIDDLE, //PS Button/XBOX Button - GAMEPAD_BUTTON_MIDDLE_RIGHT, //PS3 Start + GAMEPAD_BUTTON_MIDDLE_LEFT, // PS3 Select + GAMEPAD_BUTTON_MIDDLE, // PS Button/XBOX Button + GAMEPAD_BUTTON_MIDDLE_RIGHT, // PS3 Start // These are the joystick press in buttons GAMEPAD_BUTTON_LEFT_THUMB, @@ -637,7 +637,23 @@ namespace Raylib_cs GAMEPAD_AXIS_RIGHT_TRIGGER // [1..-1] (pressure-level) } - // Shader location points + // Material map index + public enum MaterialMapIndex + { + MAP_ALBEDO = 0, // MAP_DIFFUSE + MAP_METALNESS = 1, // MAP_SPECULAR + MAP_NORMAL = 2, + MAP_ROUGHNESS = 3, + MAP_OCCLUSION, + MAP_EMISSION, + MAP_HEIGHT, + MAP_CUBEMAP, // NOTE: Uses GL_TEXTURE_CUBE_MAP + MAP_IRRADIANCE, // NOTE: Uses GL_TEXTURE_CUBE_MAP + MAP_PREFILTER, // NOTE: Uses GL_TEXTURE_CUBE_MAP + MAP_BRDF + } + + // Shader location index public enum ShaderLocationIndex { LOC_VERTEX_POSITION = 0, @@ -667,7 +683,7 @@ namespace Raylib_cs LOC_MAP_BRDF } - // Shader uniform data types + // Shader uniform data type public enum ShaderUniformDataType { UNIFORM_FLOAT = 0, @@ -681,22 +697,6 @@ namespace Raylib_cs UNIFORM_SAMPLER2D } - // Material maps - public enum MaterialMapType - { - MAP_ALBEDO = 0, // MAP_DIFFUSE - MAP_METALNESS = 1, // MAP_SPECULAR - MAP_NORMAL = 2, - MAP_ROUGHNESS = 3, - MAP_OCCLUSION, - MAP_EMISSION, - MAP_HEIGHT, - MAP_CUBEMAP, // NOTE: Uses GL_TEXTURE_CUBE_MAP - MAP_IRRADIANCE, // NOTE: Uses GL_TEXTURE_CUBE_MAP - MAP_PREFILTER, // NOTE: Uses GL_TEXTURE_CUBE_MAP - MAP_BRDF - } - // Pixel formats // NOTE: Support depends on OpenGL version and platform public enum PixelFormat @@ -727,7 +727,7 @@ namespace Raylib_cs // Texture parameters: filter mode // NOTE 1: Filtering considers mipmaps if available in the texture // NOTE 2: Filter is accordingly set for minification and magnification - public enum TextureFilterMode + public enum TextureFilter { FILTER_POINT = 0, // No filter, just pixel aproximation FILTER_BILINEAR, // Linear filtering @@ -738,7 +738,7 @@ namespace Raylib_cs } // Texture parameters: wrap mode - public enum TextureWrapMode + public enum TextureWrap { WRAP_REPEAT = 0, // Repeats texture in tiled mode WRAP_CLAMP, // Clamps texture to edge pixel in tiled mode @@ -747,7 +747,7 @@ namespace Raylib_cs } // Cubemap layouts - public enum CubemapLayoutType + public enum CubemapLayout { CUBEMAP_AUTO_DETECT = 0, // Automatically detect layout type CUBEMAP_LINE_VERTICAL, // Layout is defined by a vertical line with faces @@ -776,10 +776,10 @@ namespace Raylib_cs BLEND_CUSTOM // Belnd textures using custom src/dst factors (use SetBlendModeCustom()) } - // Gestures type + // Gestures // NOTE: It could be used as flags to enable only some gestures [Flags] - public enum GestureType + public enum Gestures { GESTURE_NONE = 0, GESTURE_TAP = 1, @@ -804,19 +804,19 @@ namespace Raylib_cs CAMERA_THIRD_PERSON } - // Camera projection modes - public enum CameraType + // Camera projection + public enum CameraProjection { CAMERA_PERSPECTIVE = 0, CAMERA_ORTHOGRAPHIC } - // N-patch types - public enum NPatchType + // N-patch layout + public enum NPatchLayout { - NPT_9PATCH = 0, // Npatch defined by 3x3 tiles - NPT_3PATCH_VERTICAL, // Npatch defined by 1x3 tiles - NPT_3PATCH_HORIZONTAL // Npatch defined by 3x1 tiles + NPATCH_NINE_PATCH = 0, // Npatch defined by 3x3 tiles + NPATCH_THREE_PATCH_VERTICAL, // Npatch defined by 1x3 tiles + NPATCH_THREE_PATCH_HORIZONTAL // Npatch defined by 3x1 tiles } [SuppressUnmanagedCodeSecurity] @@ -825,7 +825,7 @@ namespace Raylib_cs // Used by DllImport to load the native library. public const string nativeLibName = "raylib"; - public const string RAYLIB_VERSION = "3.5"; + public const string RAYLIB_VERSION = "3.7"; public const float DEG2RAD = MathF.PI / 180.0f; public const float RAD2DEG = 180.0f / MathF.PI; @@ -834,14 +834,36 @@ namespace Raylib_cs public const int MAX_MATERIAL_MAPS = 12; public const int MAX_TOUCH_POINTS = 10; - // Callback delegate used in SetTraceLogCallback to allow for custom logging + // Callbacks to hook some internal functions + // WARNING: This callbacks are intended for advance users + + // Logging: Redirect trace log messages [UnmanagedFunctionPointer(CallingConvention.Cdecl)] - public delegate void TraceLogCallback(TraceLogType logType, string text, IntPtr args); + public delegate void TraceLogCallback(TraceLogLevel logLevel, string text, IntPtr args); + + // FileIO: Load binary data + // IntPtr refers to a unsigned char * + [UnmanagedFunctionPointer(CallingConvention.Cdecl)] + public delegate IntPtr LoadFileDataCallback(string fileName, ref int bytesRead); + + // FileIO: Save binary data + // IntPtr refers to a void * + [UnmanagedFunctionPointer(CallingConvention.Cdecl)] + public delegate bool SaveFileDataCallback(string fileName, IntPtr data, ref int bytesToWrite); + + // FileIO: Load text data + [UnmanagedFunctionPointer(CallingConvention.Cdecl)] + public delegate string LoadFileTextCallback(string fileName); + + // FileIO: Save text data + [UnmanagedFunctionPointer(CallingConvention.Cdecl)] + public delegate bool SaveFileTextCallback(string fileName, string text); // Returns color with alpha applied, alpha goes from 0.0f to 1.0f // NOTE: Added for compatability with previous versions public static Color Fade(Color color, float alpha) => ColorAlpha(color, alpha); + //------------------------------------------------------------------------------------ // Window and Graphics Device Functions (Module: core) //------------------------------------------------------------------------------------ @@ -899,16 +921,16 @@ namespace Raylib_cs // Check if one specific window flag is enabled [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] - public static extern bool IsWindowState(ConfigFlag flag); + public static extern bool IsWindowState(ConfigFlags flag); // Set window configuration state using flags [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] - public static extern bool SetWindowState(ConfigFlag flag); + public static extern bool SetWindowState(ConfigFlags flag); // Clear window configuration state flags [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void ClearWindowState(ConfigFlag flag); + public static extern void ClearWindowState(ConfigFlags flag); // Toggle fullscreen mode (only PLATFORM_DESKTOP) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] @@ -967,6 +989,10 @@ namespace Raylib_cs [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetMonitorCount(); + // Get current connected monitor + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern int GetCurrentMonitor(); + // Get specified monitor position [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Vector2 GetMonitorPosition(); @@ -1087,6 +1113,22 @@ namespace Raylib_cs [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void EndTextureMode(); + // Begin custom shader drawing + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void BeginShaderMode(Shader shader); + + // End custom shader drawing (use default shader) + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void EndShaderMode(); + + // Begin blending mode (alpha, additive, multiplied) + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void BeginBlendMode(BlendMode mode); + + // End blending mode (reset to default: alpha blending) + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void EndBlendMode(); + // Begin scissor mode (define screen area for following drawing) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void BeginScissorMode(int x, int y, int width, int height); @@ -1095,6 +1137,76 @@ namespace Raylib_cs [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void EndScissorMode(); + // Begin stereo rendering (requires VR simulator) + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void BeginVrStereoMode(VrStereoConfig config); + + // End stereo rendering (requires VR simulator) + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void EndVrStereoMode(); + + + // VR stereo config functions for VR simulator + + // Load VR stereo config for VR simulator device parameters + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern VrStereoConfig LoadVrStereoConfig(VrDeviceInfo device); + + // Unload VR stereo configs + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void UnloadVrStereoConfig(VrStereoConfig config); + + + // Shader management functions + + // Load shader from files and bind default locations + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern Shader LoadShader(string vsFileName, string fsFileName); + + // Load shader from code strings and bind default locations + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern Shader LoadShaderFromMemory(string vsCode, string fsCode); + + // Get shader uniform location + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern int GetShaderLocation(Shader shader, string uniformName); + + // Get shader attribute location + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern int GetShaderLocationAttrib(Shader shader, string attribName); + + // Set shader uniform value + // value refers to a const void * + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void SetShaderValue(Shader shader, int uniformLoc, IntPtr value, ShaderUniformDataType uniformType); + + // Set shader uniform value + // value refers to a const void * + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void SetShaderValue(Shader shader, int uniformLoc, ref int value, ShaderUniformDataType uniformType); + + // Set shader uniform value + // value refers to a const void * + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void SetShaderValue(Shader shader, int uniformLoc, ref float value, ShaderUniformDataType uniformType); + + // Set shader uniform value vector + // value refers to a const void * + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void SetShaderValueV(Shader shader, int uniformLoc, IntPtr value, ShaderUniformDataType uniformType, int count); + + // Set shader uniform value (matrix 4x4) + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void SetShaderValueMatrix(Shader shader, int uniformLoc, Matrix4x4 mat); + + // Set shader uniform value for texture + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void SetShaderValueTexture(Shader shader, int uniformLoc, Texture2D texture); + + // Unload shader from GPU memory (VRAM) + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void UnloadShader(Shader shader); + // Screen-space-related functions @@ -1148,33 +1260,61 @@ namespace Raylib_cs // Misc. functions - // Setup window configuration flags (view FLAGS) + // Returns a random value between min and max (both included) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void SetConfigFlags(ConfigFlag flags); - - // Set the current threshold (minimum) log level - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void SetTraceLogLevel(TraceLogType logType); - - // Set the exit threshold (minimum) log level - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void SetTraceLogExit(TraceLogType logType); - - // Set a trace log callback to enable custom logging - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void SetTraceLogCallback(TraceLogCallback callback); - - // Show trace log messages (LOG_DEBUG, LOG_INFO, LOG_WARNING, LOG_ERROR) - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void TraceLog(TraceLogType logType, string text); + public static extern int GetRandomValue(int min, int max); // 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) + // Setup window configuration flags (view FLAGS) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern int GetRandomValue(int min, int max); + public static extern void SetConfigFlags(ConfigFlags flags); + + // Show trace log messages (LOG_DEBUG, LOG_INFO, LOG_WARNING, LOG_ERROR) + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void TraceLog(TraceLogLevel logLevel, string text); + + // Set the current threshold (minimum) log level + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void SetTraceLogLevel(TraceLogLevel logLevel); + + // Internal memory allocator + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern IntPtr MemAlloc(int size); + + // Internal memory reallocator + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern IntPtr MemRealloc(IntPtr ptr, int size); + + // Internal memory free + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void MemFree(IntPtr ptr); + + + // Set custom callbacks + // WARNING: Callbacks setup is intended for advance users + + // Set custom trace log + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void SetTraceLogCallback(TraceLogCallback callback); + + // Set custom file binary data loader + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void SetLoadFileDataCallback(LoadFileDataCallback callback); + + // Set custom file binary data saver + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void SetSaveFileDataCallback(SaveFileDataCallback callback); + + // Set custom file text data loader + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void SetLoadFileTextCallback(LoadFileTextCallback callback); + + // Set custom file text data saver + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void SetSaveFileTextCallback(SaveFileTextCallback callback); // Files management functions @@ -1284,17 +1424,17 @@ namespace Raylib_cs // Detect if a gamepad is available [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] - public static extern bool IsGamepadAvailable(GamepadNumber gamepad); + public static extern bool IsGamepadAvailable(int gamepad); // Check gamepad name (if available) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] - public static extern bool IsGamepadName(GamepadNumber gamepad, string name); + public static extern bool IsGamepadName(int gamepad, string name); // Return gamepad internal name id [DllImport(nativeLibName, EntryPoint = "GetGamepadName", CallingConvention = CallingConvention.Cdecl)] - private static extern IntPtr INTERNAL_GetGamepadName(GamepadNumber gamepad); - public static string GetGamepadName(GamepadNumber gamepad) + private static extern IntPtr INTERNAL_GetGamepadName(int gamepad); + public static string GetGamepadName(int gamepad) { return Marshal.PtrToStringUTF8(INTERNAL_GetGamepadName(gamepad)); } @@ -1302,22 +1442,22 @@ namespace Raylib_cs // Detect if a gamepad button has been pressed once [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] - public static extern bool IsGamepadButtonPressed(GamepadNumber gamepad, GamepadButton button); + public static extern bool IsGamepadButtonPressed(int gamepad, GamepadButton button); // Detect if a gamepad button is being pressed [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] - public static extern bool IsGamepadButtonDown(GamepadNumber gamepad, GamepadButton button); + public static extern bool IsGamepadButtonDown(int gamepad, GamepadButton button); // Detect if a gamepad button has been released once [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] - public static extern bool IsGamepadButtonReleased(GamepadNumber gamepad, GamepadButton button); + public static extern bool IsGamepadButtonReleased(int gamepad, GamepadButton button); // Detect if a gamepad button is NOT being pressed [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] - public static extern bool IsGamepadButtonUp(GamepadNumber gamepad, GamepadButton button); + public static extern bool IsGamepadButtonUp(int gamepad, GamepadButton button); // Get the last gamepad button pressed [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] @@ -1325,11 +1465,15 @@ namespace Raylib_cs // Return gamepad axis count for a gamepad [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern int GetGamepadAxisCount(GamepadNumber gamepad); + 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(GamepadNumber gamepad, GamepadAxis axis); + public static extern float GetGamepadAxisMovement(int gamepad, GamepadAxis axis); + + // Set internal gamepad mappings (SDL_GameControllerDB) + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern int SetGamepadMappings(string mappings); // Input-related functions: mouse @@ -1411,12 +1555,12 @@ namespace Raylib_cs // Enable a set of gestures using flags [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void SetGesturesEnabled(GestureType gestureFlags); + public static extern void SetGesturesEnabled(Gestures flags); // Check if a gesture have been detected [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] - public static extern bool IsGestureDetected(GestureType gesture); + public static extern bool IsGestureDetected(Gestures gesture); // Get latest detected gesture [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] @@ -1478,6 +1622,12 @@ namespace Raylib_cs // Basic Shapes Drawing Functions (Module: shapes) //------------------------------------------------------------------------------------ + // Set texture and rectangle to be used on shapes drawing + // NOTE: It can be useful when using basic shapes and one single font, + // defining a font char white rectangle would allow drawing everything in a single draw call + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void SetShapesTexture(Texture2D texture, Rectangle source); + // Basic shapes drawing functions // Draw a pixel @@ -1504,6 +1654,10 @@ namespace Raylib_cs [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawLineBezier(Vector2 startPos, Vector2 endPos, float thick, Color color); + // Draw line using quadratic bezier curves with a control point + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void DrawLineBezierQuad(Vector2 startPos, Vector2 endPos, Vector2 controlPos, float thick, Color color); + // Draw lines sequence [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawLineStrip(Vector2[] points, int numPoints, Color color); @@ -1514,11 +1668,11 @@ namespace Raylib_cs // Draw a piece of a circle [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawCircleSector(Vector2 center, float radius, int startAngle, int endAngle, int segments, Color color); + public static extern void DrawCircleSector(Vector2 center, float radius, float startAngle, float endAngle, int segments, Color color); // Draw circle sector outline [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawCircleSectorLines(Vector2 center, float radius, int startAngle, int endAngle, int segments, Color color); + public static extern void DrawCircleSectorLines(Vector2 center, float radius, float startAngle, float endAngle, int segments, Color color); // Draw a gradient-filled circle [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] @@ -1542,11 +1696,11 @@ namespace Raylib_cs // Draw ring [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawRing(Vector2 center, float innerRadius, float outerRadius, int startAngle, int endAngle, int segments, Color color); + public static extern void DrawRing(Vector2 center, float innerRadius, float outerRadius, float startAngle, float endAngle, int segments, Color color); // Draw ring outline [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawRingLines(Vector2 center, float innerRadius, float outerRadius, int startAngle, int endAngle, int segments, Color color); + public static extern void DrawRingLines(Vector2 center, float innerRadius, float outerRadius, float startAngle, float endAngle, int segments, Color color); // Draw a color-filled rectangle [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] @@ -1634,10 +1788,6 @@ namespace Raylib_cs [return: MarshalAs(UnmanagedType.I1)] public static extern bool CheckCollisionCircleRec(Vector2 center, float radius, Rectangle rec); - // Get collision rectangle for two rectangles collision - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Rectangle GetCollisionRec(Rectangle rec1, Rectangle rec2); - // Check if point is inside rectangle [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] @@ -1658,6 +1808,11 @@ namespace Raylib_cs [return: MarshalAs(UnmanagedType.I1)] public static extern bool CheckCollisionLines(Vector2 startPos1, Vector2 endPos1, Vector2 startPos2, Vector2 endPos2, ref Vector2 collisionPoint); + // Get collision rectangle for two rectangles collision + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern Rectangle GetCollisionRec(Rectangle rec1, Rectangle rec2); + + //------------------------------------------------------------------------------------ // Texture Loading and Drawing Functions (Module: textures) //------------------------------------------------------------------------------------ @@ -1920,6 +2075,7 @@ namespace Raylib_cs [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageDrawTextEx(ref Image dst, Font font, [MarshalAs(UnmanagedType.LPUTF8Str)] string text, Vector2 position, float fontSize, float spacing, Color tint); + // Texture loading functions // NOTE: These functions require GPU access @@ -1933,7 +2089,7 @@ namespace Raylib_cs // Load cubemap from image, multiple image cubemap layouts supported [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Texture2D LoadTextureCubemap(Image image, CubemapLayoutType layoutType); + public static extern Texture2D LoadTextureCubemap(Image image, CubemapLayout layout); // Load texture for rendering (framebuffer) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] @@ -1974,11 +2130,11 @@ namespace Raylib_cs // Set texture scaling filter mode [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void SetTextureFilter(Texture2D texture, TextureFilterMode filterMode); + public static extern void SetTextureFilter(Texture2D texture, TextureFilter filter); // Set texture wrapping mode [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void SetTextureWrap(Texture2D texture, TextureWrapMode wrapMode); + public static extern void SetTextureWrap(Texture2D texture, TextureWrap wrap); // Texture drawing functions @@ -2015,6 +2171,10 @@ namespace Raylib_cs [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawTextureNPatch(Texture2D texture, NPatchInfo nPatchInfo, Rectangle destRec, Vector2 origin, float rotation, Color tint); + // Draw a textured polygon + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void DrawTexturePoly(Texture2D texture, Vector2 center, Vector2[] points, Vector2[] texcoords, int pointsCount, Color tint); + // Color/pixel related functions @@ -2030,11 +2190,11 @@ namespace Raylib_cs [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Color ColorFromNormalized(Vector4 normalized); - // Returns HSV values for a Color + // Returns HSV values for a Color, hue [0..360], saturation/value [0..1] [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Vector3 ColorToHSV(Color color); - // Returns a Color from HSV values + // Returns a Color from HSV values, hue [0..360], saturation/value [0..1] [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Color ColorFromHSV(float hue, float saturation, float value); @@ -2062,6 +2222,7 @@ namespace Raylib_cs [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetPixelDataSize(int width, int height, PixelFormat format); + //------------------------------------------------------------------------------------ // Font Loading and Text Drawing Functions (Module: text) //------------------------------------------------------------------------------------ @@ -2181,8 +2342,9 @@ namespace Raylib_cs // UTF8 text strings management functions // Get all codepoints in a string, codepoints count returned by parameters + // IntPtr refers to a int * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern int[] GetCodepoints(string text, ref int count); + public static extern IntPtr GetCodepoints(string text, ref int count); // Get total number of characters (codepoints) in a UTF8 encoded string [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] @@ -2196,6 +2358,7 @@ namespace Raylib_cs [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern string CodepointToUtf8(string text, ref int byteLength); + //------------------------------------------------------------------------------------ // Basic 3d Shapes Drawing Functions (Module: models) //------------------------------------------------------------------------------------ @@ -2274,9 +2437,6 @@ namespace Raylib_cs [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawGrid(int slices, float spacing); - // Draw simple gizmo - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawGizmo(Vector3 position); //------------------------------------------------------------------------------------ // Model 3d Loading and Drawing Functions (Module: models) @@ -2300,12 +2460,25 @@ namespace Raylib_cs [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadModelKeepMeshes(Model model); + // Mesh loading/unloading functions - // Load meshes from model file - // IntPtr refers to a Mesh * + // Upload vertex data into GPU and provided VAO/VBO ids [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern IntPtr LoadMeshes(string fileName, ref int meshCount); + public static extern void UploadMesh(ref Mesh mesh, bool dynamic); + + // Update mesh vertex data in GPU for a specific buffer index + // data refers to a void * + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void UpdateMeshBuffer(Mesh mesh, int index, IntPtr data, int dataSize, int offset); + + // Draw a 3d mesh with material and transform + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void DrawMesh(Mesh mesh, Material material, Matrix4x4 transform); + + // Draw multiple mesh instances with material and different transforms + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void DrawMeshInstanced(Mesh mesh, Material material, Matrix4x4[] transforms, int instances); // Unload mesh from memory (RAM and/or VRAM) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] @@ -2316,6 +2489,7 @@ namespace Raylib_cs [return: MarshalAs(UnmanagedType.I1)] public static extern bool ExportMesh(Mesh mesh, string fileName); + // Material loading/unloading functions // Load materials from model file @@ -2355,6 +2529,10 @@ namespace Raylib_cs [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadModelAnimation(ModelAnimation anim); + // Unload animation array data + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void UnloadModelAnimations(ModelAnimation[] animations, int count); + // Check model animation skeleton match [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] @@ -2363,6 +2541,10 @@ namespace Raylib_cs // Mesh generation functions + // Generate an empty mesh with vertex: position, texcoords, normals, colors + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern Mesh GenMeshDefault(int vertexCount); + // Generate polygonal mesh [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Mesh GenMeshPoly(int sides, float radius); @@ -2418,9 +2600,6 @@ namespace Raylib_cs [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void MeshBinormals(ref Mesh mesh); - // Smooth (average) vertex normals - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void MeshNormalsSmooth(ref Mesh mesh); // Model drawing functions @@ -2497,174 +2676,6 @@ namespace Raylib_cs [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern RayHitInfo GetCollisionRayGround(Ray ray, float groundHeight); - //------------------------------------------------------------------------------------ - // Shaders System Functions (Module: rlgl) - // NOTE: This functions are useless when using OpenGL 1.1 - //------------------------------------------------------------------------------------ - - // Shader loading/unloading functions - - // Load shader from files and bind default locations - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Shader LoadShader(string vsFileName, string fsFileName); - - // Load shader from code strings and bind default locations - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Shader LoadShaderCode(string vsCode, string fsCode); - - // Unload shader from GPU memory (VRAM) - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void UnloadShader(Shader shader); - - // Get default shader - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Shader GetShaderDefault(); - - // Get default texture - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Texture2D GetTextureDefault(); - - // Get texture to draw shapes - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Texture2D GetShapesTexture(); - - // Get texture rectangle to draw shapes - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Rectangle GetShapesTextureRec(); - - // Define default texture used to draw shapes - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void SetShapesTexture(Texture2D texture, Rectangle source); - - - // Shader configuration functions - - // Get shader uniform location - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern int GetShaderLocation(Shader shader, string uniformName); - - // Get shader attribute location - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern int GetShaderLocationAttrib(Shader shader, string attribName); - - // Set shader uniform value - // value refers to a const void * - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void SetShaderValue(Shader shader, int uniformLoc, IntPtr value, ShaderUniformDataType uniformType); - - // Set shader uniform value - // value refers to a const void * - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void SetShaderValue(Shader shader, int uniformLoc, ref int value, ShaderUniformDataType uniformType); - - // Set shader uniform value - // value refers to a const void * - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void SetShaderValue(Shader shader, int uniformLoc, ref float value, ShaderUniformDataType uniformType); - - // Set shader uniform value vector - // value refers to a const void * - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void SetShaderValueV(Shader shader, int uniformLoc, IntPtr value, ShaderUniformDataType uniformType, int count); - - // Set shader uniform value (matrix 4x4) - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void SetShaderValueMatrix(Shader shader, int uniformLoc, Matrix4x4 mat); - - // Set shader uniform value for texture - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void SetShaderValueTexture(Shader shader, int uniformLoc, Texture2D texture); - - // Set a custom projection matrix (replaces internal projection matrix) - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void SetMatrixProjection(Matrix4x4 proj); - - // Set a custom modelview matrix (replaces internal modelview matrix) - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void SetMatrixModelview(Matrix4x4 view); - - // Get internal modelview matrix - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Matrix4x4 GetMatrixModelview(); - - // Get internal projection matrix - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Matrix4x4 GetMatrixProjection(); - - - // 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, PixelFormat format); - - // Generate irradiance texture using cubemap data - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Texture2D GenTextureIrradiance(Shader shader, Texture2D cubemap, int size); - - // Generate prefilter texture using cubemap data - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Texture2D GenTexturePrefilter(Shader shader, Texture2D cubemap, int size); - - // Generate BRDF texture - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Texture2D GenTextureBRDF(Shader shader, int size); - - - // Shading begin/end functions - - // Begin custom shader drawing - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void BeginShaderMode(Shader shader); - - // End custom shader drawing (use default shader) - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void EndShaderMode(); - - // Begin blending mode (alpha, additive, multiplied) - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void BeginBlendMode(BlendMode mode); - - // End blending mode (reset to default: alpha blending) - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void EndBlendMode(); - - - // VR control functions - - // Init VR simulator for selected device parameters - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void InitVrSimulator(); - - // Close VR simulator for current device - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void CloseVrSimulator(); - - // Update VR tracking (position and orientation) and camera - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void UpdateVrTracking(ref Camera3D camera); - - // Set stereo rendering configuration parameters - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void SetVrConfiguration(VrDeviceInfo info, Shader distortion); - - // Detect if VR simulator is ready - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - [return: MarshalAs(UnmanagedType.I1)] - public static extern bool IsVrSimulatorReady(); - - // Enable/Disable VR experience - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void ToggleVrMode(); - - // Begin VR simulator stereo rendering - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void BeginVrDrawing(); - - // End VR simulator stereo rendering - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void EndVrDrawing(); //------------------------------------------------------------------------------------ // Audio Loading and Playing Functions (Module: audio) @@ -2802,6 +2813,10 @@ namespace Raylib_cs [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Music LoadMusicStream(string fileName); + // Load music stream from data + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern Music LoadMusicStreamFromMemory(string fileType, IntPtr data, int dataSize); + // Unload music stream [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadMusicStream(Music music); diff --git a/Raylib-cs/Rlgl.cs b/Raylib-cs/Rlgl.cs index 18a36b0..58c2e37 100644 --- a/Raylib-cs/Rlgl.cs +++ b/Raylib-cs/Rlgl.cs @@ -5,9 +5,19 @@ using System.Security; namespace Raylib_cs { - // ---------------------------------------------------------------------------------- - // Types and Structures Definition - // ---------------------------------------------------------------------------------- + // RenderBatch type + [StructLayout(LayoutKind.Sequential)] + public struct RenderBatch + { + int buffersCount; // Number of vertex buffers (multi-buffering support) + int currentBuffer; // Current buffer tracking in case of multi-buffering + IntPtr vertexBuffer; // Dynamic buffer(s) for vertex data + + IntPtr draws; // Draw calls array, depends on textureId + int drawsCounter; // Draw calls counter + float currentDepth; // Current depth value for next draw + } + public enum GlVersion { OPENGL_11 = 1, @@ -30,7 +40,7 @@ namespace Raylib_cs RL_ATTACHMENT_STENCIL = 200, } - public enum FramebufferTexType + public enum FramebufferAttachTextureType { RL_ATTACHMENT_CUBEMAP_POSITIVE_X = 0, RL_ATTACHMENT_CUBEMAP_NEGATIVE_X, @@ -55,28 +65,40 @@ namespace Raylib_cs public const int MAX_MATRIX_STACK_SIZE = 32; public const float RL_CULL_DISTANCE_NEAR = 0.01f; public const float RL_CULL_DISTANCE_FAR = 1000.0f; + + // Texture parameters (equivalent to OpenGL defines) public const int RL_TEXTURE_WRAP_S = 0x2802; public const int RL_TEXTURE_WRAP_T = 0x2803; public const int RL_TEXTURE_MAG_FILTER = 0x2800; public const int RL_TEXTURE_MIN_FILTER = 0x2801; - public const int RL_TEXTURE_ANISOTROPIC_FILTER = 0x3000; - public const int RL_FILTER_NEAREST = 0x2600; - public const int RL_FILTER_LINEAR = 0x2601; - public const int RL_FILTER_MIP_NEAREST = 0x2700; - public const int RL_FILTER_NEAREST_MIP_LINEAR = 0x2702; - public const int RL_FILTER_LINEAR_MIP_NEAREST = 0x2701; - public const int RL_FILTER_MIP_LINEAR = 0x2703; - public const int RL_WRAP_REPEAT = 0x2901; - public const int RL_WRAP_CLAMP = 0x812F; - public const int RL_WRAP_MIRROR_REPEAT = 0x8370; - public const int RL_WRAP_MIRROR_CLAMP = 0x8742; + + public const int RL_TEXTURE_FILTER_NEAREST = 0x2600; + public const int RL_TEXTURE_FILTER_LINEAR = 0x2601; + public const int RL_TEXTURE_FILTER_MIP_NEAREST = 0x2700; + public const int RL_TEXTURE_FILTER_NEAREST_MIP_LINEAR = 0x2702; + public const int RL_TEXTURE_FILTER_LINEAR_MIP_NEAREST = 0x2701; + public const int RL_TEXTURE_FILTER_MIP_LINEAR = 0x2703; + public const int RL_TEXTURE_FILTER_ANISOTROPIC = 0x3000; + + public const int RL_TEXTURE_WRAP_REPEAT = 0x2901; + public const int RL_TEXTURE_WRAP_CLAMP = 0x812F; + public const int RL_TEXTURE_WRAP_MIRROR_REPEAT = 0x8370; + public const int RL_TEXTURE_WRAP_MIRROR_CLAMP = 0x8742; + + // Matrix modes (equivalent to OpenGL) public const int RL_MODELVIEW = 0x1700; public const int RL_PROJECTION = 0x1701; public const int RL_TEXTURE = 0x1702; + + // Primitive assembly draw modes public const int RL_LINES = 0x0001; public const int RL_TRIANGLES = 0x0004; public const int RL_QUADS = 0x0007; + // GL equivalent data types + public const int RL_UNSIGNED_BYTE = 0x1401; + public const int RL_FLOAT = 0x1406; + // ------------------------------------------------------------------------------------ // Functions Declaration - Matrix operations // ------------------------------------------------------------------------------------ @@ -123,6 +145,7 @@ namespace Raylib_cs [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlViewport(int x, int y, int width, int height); + // ------------------------------------------------------------------------------------ // Functions Declaration - Vertex level operations // ------------------------------------------------------------------------------------ @@ -167,23 +190,88 @@ namespace Raylib_cs [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlColor4f(float x, float y, float z, float w); + // ------------------------------------------------------------------------------------ // Functions Declaration - OpenGL equivalent functions (common to 1.1, 3.3+, ES2) // NOTE: This functions are used to completely abstract raylib code from OpenGL layer // ------------------------------------------------------------------------------------ - // Enable texture usage + // Vertex buffers state + + // Enable vertex array (VAO, if supported) + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + [return: MarshalAs(UnmanagedType.I1)] + public static extern bool rlEnableVertexArray(uint vaoId); + + // Disable vertex array (VAO, if supported) + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void rlDisableVertexArray(); + + // Enable vertex buffer (VBO) + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void rlEnableVertexBuffer(uint id); + + // Disable vertex buffer (VBO) + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void rlDisableVertexBuffer(); + + // Enable vertex buffer element (VBO element) + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void rlEnableVertexBufferElement(uint id); + + // Disable vertex buffer element (VBO element) + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void rlDisableVertexBufferElement(); + + // Enable vertex attribute index + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void rlEnableVertexAttribute(uint index); + + // Disable vertex attribute index + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void rlDisableVertexAttribute(uint index); + + + // Textures state + + // Select and active a texture slot + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void rlActiveTextureSlot(int slot); + + // Enable texture [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlEnableTexture(uint id); - // Disable texture usage + // Disable texture [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlDisableTexture(); + // Enable texture cubemap + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void rlEnableTextureCubemap(uint id); + + // Disable texture cubemap + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void rlDisableTextureCubemap(); + // Set texture parameters (filter, wrap) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlTextureParameters(uint id, int param, int value); + + // Shader state + + // Enable shader program + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void rlEnableShader(uint id); + + // Disable shader program + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void rlDisableShader(); + + + // Framebuffer state + // Enable render texture (fbo) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlEnableFramebuffer(uint id); @@ -192,6 +280,9 @@ namespace Raylib_cs [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlDisableFramebuffer(); + + // General render state + // Enable depth test [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlEnableDepthTest(); @@ -252,6 +343,19 @@ namespace Raylib_cs [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlDisableSmoothLines(); + // Enable stereo rendering + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void rlEnableStereoRender(); + + // Disable stereo rendering + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void rlDisableStereoRender(); + + // Check if stereo render is enabled + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + [return: MarshalAs(UnmanagedType.I1)] + public static extern bool rlIsStereoRenderEnabled(); + // Clear color buffer with color [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlClearColor(byte r, byte g, byte b, byte a); @@ -260,15 +364,18 @@ namespace Raylib_cs [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlClearScreenBuffers(); - // Update GPU buffer with new data - // data refers to a void * + // Check and log OpenGL error codes [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void rlUpdateBuffer(int bufferId, IntPtr data, int dataSize); + public static extern void rlCheckErrors(); - // Load a new attributes buffer - // buffer refers to a void * + // Set blending mode [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern uint rlLoadAttribBuffer(uint vaoId, int shaderLoc, IntPtr buffer, int size, bool dynamic); + public static extern void rlSetBlendMode(int mode); + + // Set blending mode factor and equation (using OpenGL factors) + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void rlSetBlendModeFactors(int glSrcFactor, int glDstFactor, int glEquation); + // ------------------------------------------------------------------------------------ // Functions Declaration - rlgl functionality @@ -282,35 +389,109 @@ namespace Raylib_cs [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlglClose(); - // Update and draw default internal buffers + // Load OpenGL extensions + // loader refers to a void * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void rlglDraw(); - - // Check and log OpenGL error codes - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void rlCheckErrors(); + public static extern void rlLoadExtensions(IntPtr loader); // Returns current OpenGL version [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern GlVersion rlGetVersion(); + // Get default framebuffer width + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern int rlGetFramebufferWidth(); + + // Get default framebuffer height + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern int rlGetFramebufferHeight(); + + // Get default shader + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern Shader rlGetShaderDefault(); + + // Get default texture + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern Texture2D rlGetTextureDefault(); + + + // Render batch management + + // Load a render batch system + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern RenderBatch rlLoadRenderBatch(int numBuffers, int bufferElements); + + // Unload render batch system + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void rlUnloadRenderBatch(RenderBatch batch); + + // Draw render batch data (Update->Draw->Reset) + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void rlDrawRenderBatch(ref RenderBatch batch); + + // Set the active render batch for rlgl (NULL for default internal) + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void rlSetRenderBatchActive(ref RenderBatch batch); + + // Update and draw internal render batch + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void rlDrawRenderBatchActive(); + // Check internal buffer overflow for a given number of vertex [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] - public static extern bool rlCheckBufferLimit(int vCount); + public static extern bool rlCheckRenderBatchLimit(int vCount); - // Set debug marker for analysis + // Set current texture for render batch and check buffers limits [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void rlSetDebugMarker(string text); + public static extern void rlSetTexture(uint id); - // Set blending mode factor and equation (using OpenGL factors) - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void rlSetBlendMode(int glSrcFactor, int glDstFactor, int glEquation); - // Load OpenGL extensions - // loader refers to a void * + // Vertex buffers management + + // Load vertex array (vao) if supported [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void rlLoadExtensions(IntPtr loader); + public static extern uint rlLoadVertexArray(); + + // Load a vertex buffer attribute + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern uint rlLoadVertexBuffer(IntPtr buffer, int size, bool dynamic); + + // Load a new attributes element buffer + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern uint rlLoadVertexBufferElement(IntPtr buffer, int size, bool dynamic); + + // Update GPU buffer with new data + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void rlUpdateVertexBuffer(int bufferId, IntPtr data, int dataSize, int offset); + + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void rlUnloadVertexArray(uint vaoId); + + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void rlUnloadVertexBuffer(uint vboId); + + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void rlSetVertexAttribute(uint index, int compSize, int type, bool normalized, int stride, IntPtr pointer); + + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void rlSetVertexAttributeDivisor(uint index, int divisor); + + // Set vertex attribute default value + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void rlSetVertexAttributeDefault(int locIndex, IntPtr value, int attribType, int count); + + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void rlDrawVertexArray(int offset, int count); + + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void rlDrawVertexArrayElements(int offset, int count, IntPtr buffer); + + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void rlDrawVertexArrayInstanced(int offset, int count, int instances); + + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void rlDrawVertexArrayElementsInstanced(int offset, int count, IntPtr buffer, int instances); // Textures data management @@ -322,7 +503,7 @@ namespace Raylib_cs // Load depth texture/renderbuffer (to be attached to fbo) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern uint rlLoadTextureDepth(int width, int height, int bits, bool useRenderBuffer); + public static extern uint rlLoadTextureDepth(int width, int height, bool useRenderBuffer); // Load texture cubemap // data refers to a void * @@ -352,8 +533,9 @@ namespace Raylib_cs public static extern IntPtr rlReadTexturePixels(Texture2D texture); // Read screen pixel data (color buffer) + // IntPtr refers to a unsigned char * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern byte[] rlReadScreenPixels(int width, int height); + public static extern IntPtr rlReadScreenPixels(int width, int height); // Framebuffer management (fbo) @@ -364,7 +546,7 @@ namespace Raylib_cs // Attach texture/renderbuffer to a framebuffer [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void rlFramebufferAttach(uint fboId, uint texId, FramebufferAttachType attachType, FramebufferTexType texType); + public static extern void rlFramebufferAttach(uint fboId, uint texId, FramebufferAttachType attachType, FramebufferAttachTextureType texType, int mipLevel); // Verify framebuffer is complete [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] @@ -376,29 +558,97 @@ namespace Raylib_cs [return: MarshalAs(UnmanagedType.I1)] public static extern bool rlUnloadFramebuffer(uint id); - // Vertex data management - // Upload vertex data into GPU and provided VAO/VBO ids - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void rlLoadMesh(ref Mesh mesh, bool dynamic); - // Update vertex or index data on GPU (upload new data to one buffer) - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void rlUpdateMesh(Mesh mesh, int buffer, int num); + // Shaders management - // Update vertex or index data on GPU, at index + // Load shader from code strings [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void rlUpdateMeshAt(Mesh mesh, int buffer, int num, int index); + public static extern uint rlLoadShaderCode(string vsCode, string fsCode); - // Draw a 3d mesh with material and transform + // Compile custom shader and return shader id (type: GL_VERTEX_SHADER, GL_FRAGMENT_SHADER) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void rlDrawMesh(Mesh mesh, Material material, Matrix4x4 transform); + public static extern uint rlCompileShader(string shaderCode, int type); - // Draw a 3d mesh with material and transform + // Load custom shader program [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void rlDrawMeshInstanced(Mesh mesh, Material material, Matrix4x4[] transforms, int count); + public static extern uint rlLoadShaderProgram(uint vShaderId, uint fShaderId); - // Unload mesh data from CPU and GPU + // Unload shader program [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void rlUnloadMesh(Mesh mesh); + public static extern void rlUnloadShaderProgram(uint id); + + // Get shader location uniform + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern int rlGetLocationUniform(uint shaderId, string uniformName); + + // Get shader location attribute + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern int rlGetLocationAttrib(uint shaderId, string attribName); + + // Set shader value uniform + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void rlSetUniform(int locIndex, IntPtr value, int uniformType, int count); + + // Set shader value matrix + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void rlSetUniformMatrix(int locIndex, Matrix4x4 mat); + + // Set shader value sampler + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void rlSetUniformSampler(int locIndex, uint textureId); + + // Set shader currently active + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void rlSetShader(Shader shader); + + + // Matrix state management + + // Get internal modelview matrix + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern Matrix4x4 rlGetMatrixModelView(); + + // Get internal projection matrix + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern Matrix4x4 rlGetMatrixProjection(); + + // Get internal accumulated transform matrix + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern Matrix4x4 rlGetMatrixTramsform(); + + // Get internal projection matrix for stereo render (selected eye) + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern Matrix4x4 rlGetMatrixProjectionStereo(int eye); + + // Get internal view offset matrix for stereo render (selected eye) + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern Matrix4x4 rlGetMatrixViewOffsetStereo(int eye); + + // Set a custom projection matrix (replaces internal projection matrix) + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void rlSetMatrixProjection(Matrix4x4 view); + + // Set a custom modelview matrix (replaces internal modelview matrix) + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void rlSetMatrixModelView(Matrix4x4 proj); + + // Set eyes projection matrices for stereo rendering + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void rlSetMatrixProjectionStereo(Matrix4x4 left, Matrix4x4 right); + + // Set eyes view offsets matrices for stereo rendering + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void rlSetMatrixViewOffsetStereo(Matrix4x4 left, Matrix4x4 right); + + + // Quick and dirty cube/quad buffers load->draw->unload + + // Load and draw a cube + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void rlLoadDrawCube(); + + // Load and draw a quad + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void rlLoadDrawQuad(); } } From 094c4e778947bc7bb6fd64417d2e8bce7995dc9f Mon Sep 17 00:00:00 2001 From: ChrisDill Date: Mon, 26 Apr 2021 11:50:09 +0100 Subject: [PATCH 2/5] Update project details and experimental libs - Unsure on experimental lib at the moment. Need to test pinvoke overhead. Might move to examples repo. - Update README.md. - Update Raylib-cs.csproj. - Remove GenMeshDefault. --- Physac-cs/Physac.cs | 114 +++++++++++++++++++------------------ README.md | 6 +- Raygui-cs/Raygui.cs | 69 +++++++++------------- Raylib-cs/Raylib-cs.csproj | 6 +- Raylib-cs/Raylib.cs | 4 -- 5 files changed, 93 insertions(+), 106 deletions(-) diff --git a/Physac-cs/Physac.cs b/Physac-cs/Physac.cs index 8f2342a..fbf64f6 100644 --- a/Physac-cs/Physac.cs +++ b/Physac-cs/Physac.cs @@ -12,9 +12,9 @@ namespace Physac_cs PHYSICS_POLYGON } - // Mat2 type (used for polygon shape rotation matrix) + // Matrix2x2 type (used for polygon shape rotation matrix) [StructLayout(LayoutKind.Sequential)] - public struct Mat2 + public struct Matrix2x2 { public float m00; public float m01; @@ -64,45 +64,45 @@ namespace Physac_cs } [StructLayout(LayoutKind.Sequential)] - public struct PolygonData + public struct PhysicsVertexData { - public uint vertexCount; // Current used vertex and normals count - public _Polygon_e_FixedBuffer positions; // Polygon vertex positions vectors - public _Polygon_e_FixedBuffer normals; // Polygon vertex normals vectors + public uint vertexCount; // Vertex count (positions and normals) + public _Polygon_e_FixedBuffer positions; // Vertex positions vectors + public _Polygon_e_FixedBuffer normals; // Vertex normals vectors } [StructLayout(LayoutKind.Sequential)] public struct PhysicsShape { - public PhysicsShapeType type; // Physics shape type (circle or polygon) + public PhysicsShapeType type; // Shape type (circle or polygon) public IntPtr body; // Shape physics body reference - public float radius; // Circle shape radius (used for circle shapes) - public Mat2 transform; // Vertices transform matrix 2x2 - public PolygonData vertexData; // Polygon shape vertices position and normals data (just used for polygon shapes) + public PhysicsVertexData vertexData; // Shape vertices data (used for polygon shapes) + public float radius; // Shape radius (used for circle shapes) + public Matrix2x2 transform; // Vertices transform matrix 2x2 } [StructLayout(LayoutKind.Sequential)] public struct PhysicsBodyData { - public uint id; - public byte enabled; - public Vector2 position; - public Vector2 velocity; - public Vector2 force; - public float angularVelocity; - public float torque; - public float orient; - public float inertia; - public float inverseInertia; - public float mass; - public float inverseMass; - public float staticFriction; - public float dynamicFriction; - public float restitution; - public byte useGravity; - public byte isGrounded; - public byte freezeOrient; - public PhysicsShape shape; + public uint id; // Unique identifier + public byte enabled; // Enabled dynamics state (collisions are calculated anyway) + public Vector2 position; // Physics body shape pivot + public Vector2 velocity; // Current linear velocity applied to position + public Vector2 force; // Current linear force (reset to 0 every step) + public float angularVelocity; // Current angular velocity applied to orient + public float torque; // Current angular force (reset to 0 every step) + public float orient; // Rotation in radians + public float inertia; // Moment of inertia + public float inverseInertia; // Inverse value of inertia + public float mass; // Physics body mass + public float inverseMass; // Inverse value of mass + public float staticFriction; // Friction when the body has not movement (0 to 1) + public float dynamicFriction; // Friction when the body has movement (0 to 1) + public float restitution; // Restitution coefficient of the body (0 to 1) + public byte useGravity; // Apply gravity force to dynamics + public byte isGrounded; // Physics grounded on other body state + public byte freezeOrient; // Physics rotation constraint + public PhysicsShape shape; // Physics body shape information (type, radius, vertices, transform) } [StructLayout(LayoutKind.Sequential)] @@ -136,27 +136,35 @@ namespace Physac_cs public const float PHYSAC_PENETRATION_ALLOWANCE = 0.05f; public const float PHYSAC_PENETRATION_CORRECTION = 0.4f; + // Physics system management + // Initializes physics values, pointers and creates physics loop thread [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void InitPhysics(); - // Run physics step, to be used if PHYSICS_NO_THREADS is set in your main loop + // Update physics system [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void RunPhysicsStep(); + public static extern void UpdatePhysics(); + + // Reset physics system (global variables) + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void ResetPhysics(); + + // Close physics system and unload used memory + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void ClosePhysics(); // Sets physics fixed time step in milliseconds. 1.666666 by default [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetPhysicsTimeStep(double delta); - // Returns true if physics thread is currently enabled - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - [return: MarshalAs(UnmanagedType.I1)] - public static extern bool IsPhysicsEnabled(); - // Sets physics global gravity force [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetPhysicsGravity(float x, float y); + + // Physic body creation/destroy + // Creates a new circle physics body with generic parameters // IntPtr refers to a PhysicsBodyData * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] @@ -172,6 +180,13 @@ namespace Physac_cs [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern IntPtr CreatePhysicsBodyPolygon(Vector2 pos, float radius, int sides, float density); + // Destroy a physics body + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void DestroyPhysicsBody(PhysicsBodyData body); + + + // Physic body forces + // Adds a force to a physics body [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void PhysicsAddForce(PhysicsBodyData body, Vector2 force); @@ -184,15 +199,22 @@ namespace Physac_cs [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void PhysicsShatter(PhysicsBodyData body, Vector2 position, float force); - // Returns the current amount of created physics bodies + // Sets physics body shape transform based on radians parameter [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern int GetPhysicsBodiesCount(); + public static extern void SetPhysicsBodyRotation(PhysicsBodyData body, float radians); + + + // Query physics info // Returns a physics body of the bodies pool at a specific index // IntPtr refers to a PhysicsBodyData * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern IntPtr GetPhysicsBody(int index); + // Returns the current amount of created physics bodies + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern int GetPhysicsBodiesCount(); + // Returns the physics body shape type (PHYSICS_CIRCLE or PHYSICS_POLYGON) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetPhysicsShapeType(int index); @@ -204,21 +226,5 @@ namespace Physac_cs // Returns transformed position of a body shape (body position + vertex transformed position) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Vector2 GetPhysicsShapeVertex(PhysicsBodyData body, int vertex); - - // Sets physics body shape transform based on radians parameter - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void SetPhysicsBodyRotation(PhysicsBodyData body, float radians); - - // Unitializes and destroy a physics body - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DestroyPhysicsBody(PhysicsBodyData body); - - // Destroys created physics bodies and manifolds and resets global values - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void ResetPhysics(); - - // Unitializes physics pointers and closes physics loop thread - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void ClosePhysics(); } } diff --git a/README.md b/README.md index a60481f..b38f589 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ # Raylib-cs -C# bindings for raylib 3.5.0, a simple and easy-to-use library to learn videogames programming (www.raylib.com) +C# bindings for raylib 3.7.0, a simple and easy-to-use library to learn videogames programming (www.raylib.com) [![GitHub contributors](https://img.shields.io/github/contributors/ChrisDill/Raylib-cs)](https://github.com/ChrisDill/Raylib-cs/graphs/contributors) [![License](https://img.shields.io/badge/license-zlib%2Flibpng-blue.svg)](LICENSE) @@ -19,7 +19,7 @@ Raylib-cs targets netstandard2.1 and supports netcoreapp3.0+ and net5.0. This is the prefered method to get started - The package is still new so please report any [issues](https://github.com/ChrisDill/Raylib-cs/issues). ``` -dotnet add package Raylib-cs --version 3.5.0 +dotnet add package Raylib-cs --version 3.7.0 ``` [![NuGet](https://img.shields.io/nuget/dt/raylib-cs)](https://www.nuget.org/packages/Raylib-cs/) @@ -32,7 +32,7 @@ If you need to edit Raylib-cs source then you will need to add the bindings as a 2. Add Raylib-cs/Raylib-cs.csproj to your project as an existing project. -3. Download the native libraries for the platforms you want to build for using the [official 3.5.0 release](https://github.com/raysan5/raylib/releases/tag/3.5.0). +3. Download the native libraries for the platforms you want to build for using the [official 3.7.0 release](https://github.com/raysan5/raylib/releases/tag/3.7.0). **NOTE: the MSVC version is required for Windows platforms** 4. **(Recommended)** Put the native library for each platform under `Raylib-cs/runtimes/{platform}/native/` diff --git a/Raygui-cs/Raygui.cs b/Raygui-cs/Raygui.cs index 4d6d448..b03da5d 100644 --- a/Raygui-cs/Raygui.cs +++ b/Raygui-cs/Raygui.cs @@ -34,7 +34,7 @@ namespace Raygui_cs } // Gui standard controls - public enum GuiControlStandard + public enum GuiControl { DEFAULT = 0, LABEL, // LABELBUTTON @@ -185,7 +185,7 @@ namespace Raygui_cs // Used by DllImport to load the native library. public const string nativeLibName = "raygui"; - public const string RAYGUI_VERSION = "2.6-dev"; + public const string RAYGUI_VERSION = "2.9-dev"; public const int NUM_CONTROLS = 16; // Number of standard controls public const int NUM_PROPS_DEFAULT = 16; // Number of standard properties @@ -193,7 +193,7 @@ namespace Raygui_cs public const int TEXTEDIT_CURSOR_BLINK_FRAMES = 20; // Text edit controls cursor blink timming - // Global gui modification functions + // State modification functions // Enable gui controls (global state) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] @@ -223,6 +223,9 @@ namespace Raygui_cs [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GuiGetState(); + + // Font set/get functions + // Get gui custom font (global state) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void GuiSetFont(Font font); @@ -243,25 +246,6 @@ namespace Raygui_cs public static extern int GuiGetStyle(GuiControlStandard control, GuiControlProperty property); - // Tooltips set functions - - // Enable gui tooltips - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void GuiEnableTooltip(); - - // Disable gui tooltips - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void GuiDisableTooltip(); - - // Set current tooltip for display - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void GuiSetTooltip(string tooltip); - - // Clear any tooltip registered - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void GuiClearTooltip(); - - // Container/separator controls, useful for controls organization // Window Box control, shows a window that can be closed @@ -305,12 +289,12 @@ namespace Raygui_cs // Image button control, returns true when clicked [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] - public static extern bool GuiImageButton(Rectangle bounds, Texture2D texture); + public static extern bool GuiImageButton(Rectangle bounds, string text, Texture2D texture); // Image button extended control, returns true when clicked [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] - public static extern bool GuiImageButtonEx(Rectangle bounds, Texture2D texture, Rectangle texSource, string text); + public static extern bool GuiImageButtonEx(Rectangle bounds, string text, Texture2D texture, Rectangle texSource); // Toggle Button control, returns true when active [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] @@ -324,7 +308,7 @@ namespace Raygui_cs // Check Box control, returns true when active [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] - public static extern bool GuiCheckBox(Rectangle bounds, bool isChecked); + public static extern bool GuiCheckBox(Rectangle bounds, string text, bool isChecked); // Combo Box control, returns selected item index [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] @@ -333,17 +317,17 @@ namespace Raygui_cs // Dropdown Box control, returns selected item [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] - public static extern bool GuiDropdownBox(Rectangle bounds, string[] text, ref int active, bool edit); + public static extern bool GuiDropdownBox(Rectangle bounds, string text, ref int active, bool editMode); // Spinner control, returns selected value [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] - public static extern bool GuiSpinner(Rectangle bounds, ref int value, int maxValue, int btnWidth); + public static extern bool GuiSpinner(Rectangle bounds, string text, ref int value, int minValue, int maxValue, bool editMode); // Value Box control, updates input text with numbers [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] - public static extern bool GuiValueBox(Rectangle bounds, int value, int maxValue); + public static extern bool GuiValueBox(Rectangle bounds, string text, ref int value, int minValue, int maxValue, bool editMode); // Text Box control, updates input text [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] @@ -357,15 +341,15 @@ namespace Raygui_cs // Slider control, returns selected value [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern float GuiSlider(Rectangle bounds, float value, float minValue, float maxValue, bool showValue); + public static extern float GuiSlider(Rectangle bounds, string textLeft, string textRight, float value, float minValue, float maxValue); // Slider Bar control, returns selected value [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern float GuiSliderBar(Rectangle bounds, float value, float minValue, float maxValue, bool showValue); + public static extern float GuiSliderBar(Rectangle bounds, float value, float minValue, float maxValue); // Progress Bar control, shows current progress value [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern float GuiProgressBar(Rectangle bounds, float value, float minValue, float maxValue, bool showValue); + public static extern float GuiProgressBar(Rectangle bounds, float value, float minValue, float maxValue); // Status Bar control, shows info text [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] @@ -377,30 +361,30 @@ namespace Raygui_cs // Scroll Bar control [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void GuiScrollBar(Rectangle bounds, int value, int minValue, int maxValue); + public static extern int GuiScrollBar(Rectangle bounds, int value, int minValue, int maxValue); // Grid [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void GuiGrid(Rectangle bounds, float spacing, int subdivs); + public static extern Vector2 GuiGrid(Rectangle bounds, float spacing, int subdivs); // Advance controls set // List View control, returns selected list element index [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern int GuiListView(Rectangle bounds, string text, ref int active, ref int scrollIndex, bool editMode); + public static extern int GuiListView(Rectangle bounds, string text, ref int scrollIndex, ref int active); // List View with extended parameters [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern int GuiListViewEx(Rectangle bounds, string text, int count, ref int enabled, ref int active, ref int focus, ref int scrollIndex, bool editMode); + public static extern int GuiListViewEx(Rectangle bounds, string text, int count, ref int focus, ref int scrollIndex, ref int active); // Message Box control, displays a message [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern int GuiMessageBox(Rectangle bounds, string windowTitle, string message); + public static extern int GuiMessageBox(Rectangle bounds, string title, string message); // Text Input Box control, ask for text [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern int GuiTextInputBox(Rectangle bounds, string windowTitle, string message, string buttons); + public static extern int GuiTextInputBox(Rectangle bounds, string windowTitle, string message, string buttons, string text); // Color Picker control [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] @@ -429,25 +413,26 @@ namespace Raygui_cs [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void GuiLoadStyleDefault(); - // Get text with icon id prepended - // Get the human-readable, UTF-8 encoded name of the primary monitor + // Get text with icon id prepended (if supported) [DllImport(nativeLibName, EntryPoint = "GetMonitorName", CallingConvention = CallingConvention.Cdecl)] private static extern IntPtr INTERNAL_GuiIconText(int iconId, string text); public static string GuiIconText(int iconId, string text) { - return Marshal.PtrToStringAnsi(INTERNAL_GuiIconText(iconId, text)); + return Marshal.PtrToStringUTF8(INTERNAL_GuiIconText(iconId, text)); } // Gui icons functionality // Get full icons data pointer + // IntPtr refers to a unsigned int * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern uint[] GuiGetIcons(); + public static extern IntPtr GuiGetIcons(); // Get icon bit data + // IntPtr refers to a unsigned int * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern uint[] GuiGetIconData(int iconId, string text); + public static extern IntPtr GuiGetIconData(int iconId, string text); // Set icon bit data [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] diff --git a/Raylib-cs/Raylib-cs.csproj b/Raylib-cs/Raylib-cs.csproj index 3225a7a..a878c1e 100644 --- a/Raylib-cs/Raylib-cs.csproj +++ b/Raylib-cs/Raylib-cs.csproj @@ -9,15 +9,15 @@ - 3.5.0 - 3.5.0 + 3.7.0 + 3.7.0 Chris Dill, Raysan5 & Others true Zlib Raylib-cs C# bindings for raylib - A simple and easy-to-use library to learn videogames programming raylib-cs_64x64.png - Raylib;Raysan;Games;Game-Engine;Engine;Game + Raylib;Raysan;Gamedev;Binding git https://github.com/ChrisDill/Raylib-cs/ https://www.raylib.com/ diff --git a/Raylib-cs/Raylib.cs b/Raylib-cs/Raylib.cs index f2f645a..bcd97d7 100644 --- a/Raylib-cs/Raylib.cs +++ b/Raylib-cs/Raylib.cs @@ -2541,10 +2541,6 @@ namespace Raylib_cs // Mesh generation functions - // Generate an empty mesh with vertex: position, texcoords, normals, colors - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Mesh GenMeshDefault(int vertexCount); - // Generate polygonal mesh [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Mesh GenMeshPoly(int sides, float radius); From d342e5427f8de7d4bf9a5f31060ee8edc314949b Mon Sep 17 00:00:00 2001 From: ChrisDill Date: Sat, 8 May 2021 11:38:27 +0100 Subject: [PATCH 3/5] Add summary tags to improve documentation - Helps with intelisense and documentation generators. More details can be added in the future as needed. - Include documentation in package --- Raylib-cs/Raylib-cs.csproj | 1 + Raylib-cs/Raylib.cs | 1076 ++++++++++++++++++------------------ Raylib-cs/Rlgl.cs | 244 ++++---- 3 files changed, 664 insertions(+), 657 deletions(-) diff --git a/Raylib-cs/Raylib-cs.csproj b/Raylib-cs/Raylib-cs.csproj index a878c1e..740ff31 100644 --- a/Raylib-cs/Raylib-cs.csproj +++ b/Raylib-cs/Raylib-cs.csproj @@ -21,6 +21,7 @@ git https://github.com/ChrisDill/Raylib-cs/ https://www.raylib.com/ + true diff --git a/Raylib-cs/Raylib.cs b/Raylib-cs/Raylib.cs index bcd97d7..6a9ce4a 100644 --- a/Raylib-cs/Raylib.cs +++ b/Raylib-cs/Raylib.cs @@ -5,7 +5,7 @@ using System.Security; namespace Raylib_cs { - // Color type, RGBA (32bit) + /// Color type, RGBA (32bit) [StructLayout(LayoutKind.Sequential)] public struct Color { @@ -65,7 +65,7 @@ namespace Raylib_cs } } - // Rectangle type + /// Rectangle type [StructLayout(LayoutKind.Sequential)] public struct Rectangle { @@ -83,8 +83,8 @@ namespace Raylib_cs } } - // Image type, bpp always RGBA (32bit) - // NOTE: Data stored in CPU memory (RAM) + /// Image type, bpp always RGBA (32bit) + /// NOTE: Data stored in CPU memory (RAM) [StructLayout(LayoutKind.Sequential)] public struct Image { @@ -95,8 +95,8 @@ namespace Raylib_cs public PixelFormat format; // Data format (PixelFormat type) } - // Texture2D type - // NOTE: Data stored in GPU memory + /// Texture2D type + /// NOTE: Data stored in GPU memory [StructLayout(LayoutKind.Sequential)] public struct Texture2D { @@ -107,7 +107,7 @@ namespace Raylib_cs public PixelFormat format; // Data format (PixelFormat type) } - // RenderTexture2D type, for texture rendering + /// RenderTexture2D type, for texture rendering [StructLayout(LayoutKind.Sequential)] public struct RenderTexture2D { @@ -116,7 +116,7 @@ namespace Raylib_cs public Texture2D depth; // Depth buffer attachment texture } - // N-Patch layout info + /// N-Patch layout info [StructLayout(LayoutKind.Sequential)] public struct NPatchInfo { @@ -128,7 +128,7 @@ namespace Raylib_cs public NPatchLayout layout; // layout of the n-patch: 3x3, 1x3 or 3x1 } - // Font character info + /// Font character info [StructLayout(LayoutKind.Sequential)] public struct CharInfo { @@ -139,7 +139,7 @@ namespace Raylib_cs public Image image; // Character image data } - // Font type, includes texture and charSet array data + /// Font type, includes texture and charSet array data [StructLayout(LayoutKind.Sequential)] public struct Font { @@ -151,7 +151,7 @@ namespace Raylib_cs public IntPtr chars; // Characters info data (CharInfo *) } - // Camera type, defines a camera position/orientation in 3d space + /// Camera type, defines a camera position/orientation in 3d space [StructLayout(LayoutKind.Sequential)] public struct Camera3D { @@ -171,7 +171,7 @@ namespace Raylib_cs } } - // Camera2D type, defines a 2d camera + /// Camera2D type, defines a 2d camera [StructLayout(LayoutKind.Sequential)] public struct Camera2D { @@ -189,8 +189,8 @@ namespace Raylib_cs } } - // Vertex data definning a mesh - // NOTE: Data stored in CPU memory (and GPU) + /// Vertex data definning a mesh + /// NOTE: Data stored in CPU memory (and GPU) [StructLayout(LayoutKind.Sequential)] public struct Mesh { @@ -217,7 +217,7 @@ namespace Raylib_cs public IntPtr vboId; // OpenGL Vertex Buffer Objects id (default vertex data, uint[]) } - // Shader type (generic) + /// Shader type (generic) [StructLayout(LayoutKind.Sequential)] public struct Shader { @@ -225,7 +225,7 @@ namespace Raylib_cs public IntPtr locs; // Shader locations array (MAX_SHADER_LOCATIONS, int *) } - // Material texture map + /// Material texture map [StructLayout(LayoutKind.Sequential)] public struct MaterialMap { @@ -234,7 +234,7 @@ namespace Raylib_cs public float value; // Material map value } - // Material type (generic) + /// Material type (generic) [StructLayout(LayoutKind.Sequential)] public struct Material { @@ -243,7 +243,7 @@ namespace Raylib_cs public IntPtr param; // Material generic parameters (if required, float *) } - // Transformation properties + /// Transformation properties [StructLayout(LayoutKind.Sequential)] public struct Transform { @@ -252,7 +252,7 @@ namespace Raylib_cs public Vector3 scale; // Scale } - // Bone information + /// Bone information [StructLayout(LayoutKind.Sequential)] public struct BoneInfo { @@ -260,7 +260,7 @@ namespace Raylib_cs public int parent; // Bone parent } - // Model type + /// Model type [StructLayout(LayoutKind.Sequential)] public struct Model { @@ -275,7 +275,7 @@ namespace Raylib_cs public IntPtr bindPose; // Bones base transformation (pose, Transform *) } - // Model animation + /// Model animation [StructLayout(LayoutKind.Sequential)] public struct ModelAnimation { @@ -285,7 +285,7 @@ namespace Raylib_cs public IntPtr framePoses; // Poses array by frame (Transform **) } - // Ray type (useful for raycast) + /// Ray type (useful for raycast) [StructLayout(LayoutKind.Sequential)] public struct Ray { @@ -299,7 +299,7 @@ namespace Raylib_cs } } - // Raycast hit information + /// Raycast hit information [StructLayout(LayoutKind.Sequential)] public struct RayHitInfo { @@ -309,7 +309,7 @@ namespace Raylib_cs public Vector3 normal; // Surface normal of hit } - // Bounding box type + /// Bounding box type [StructLayout(LayoutKind.Sequential)] public struct BoundingBox { @@ -323,7 +323,7 @@ namespace Raylib_cs } } - // Wave type, defines audio wave data + /// Wave type, defines audio wave data [StructLayout(LayoutKind.Sequential)] public struct Wave { @@ -334,8 +334,8 @@ namespace Raylib_cs public IntPtr data; // Buffer data pointer (void *) } - // Audio stream type - // NOTE: Useful to create custom audio streams not bound to a specific file + /// Audio stream type + /// NOTE: Useful to create custom audio streams not bound to a specific file [StructLayout(LayoutKind.Sequential)] public struct AudioStream { @@ -345,7 +345,7 @@ namespace Raylib_cs public uint channels; // Number of channels (1-mono, 2-stereo) } - // Sound source type + /// Sound source type [StructLayout(LayoutKind.Sequential)] public struct Sound { @@ -353,8 +353,8 @@ namespace Raylib_cs public uint sampleCount; // Total number of samples } - // Music stream type (audio file streaming from memory) - // NOTE: Anything longer than ~10 seconds should be streamed + /// Music stream type (audio file streaming from memory) + /// NOTE: Anything longer than ~10 seconds should be streamed [StructLayout(LayoutKind.Sequential)] public struct Music { @@ -365,7 +365,7 @@ namespace Raylib_cs public IntPtr ctxData; // Audio context data, depends on type (void *) } - // Head-Mounted-Display device parameters + /// Head-Mounted-Display device parameters [StructLayout(LayoutKind.Sequential)] public unsafe struct VrDeviceInfo { @@ -381,7 +381,7 @@ namespace Raylib_cs public fixed float chromaAbCorrection[4]; // HMD chromatic aberration correction parameters } - // VR Stereo rendering configuration for simulator + /// VR Stereo rendering configuration for simulator [StructLayout(LayoutKind.Sequential)] public struct VrStereoConfig { @@ -397,9 +397,9 @@ namespace Raylib_cs public Vector2 scaleIn; // VR distortion scale in } - // System config flags - // NOTE: Every bit registers one state (use it with bit masks) - // By default all flags are set to 0 + /// System config flags + /// NOTE: Every bit registers one state (use it with bit masks) + /// By default all flags are set to 0 [Flags] public enum ConfigFlags { @@ -419,7 +419,7 @@ namespace Raylib_cs FLAG_INTERLACED_HINT = 0x00010000, // Set to try enabling interlaced video format (for V3D) } - // Trace log level + /// Trace log level public enum TraceLogLevel { LOG_ALL = 0, // Display all logs @@ -432,9 +432,9 @@ namespace Raylib_cs LOG_NONE // Disable logging } - // Keyboard keys (US keyboard layout) - // NOTE: Use GetKeyPressed() to allow redefining - // required keys for alternative layouts + /// Keyboard keys (US keyboard layout) + /// NOTE: Use GetKeyPressed() to allow redefining + /// required keys for alternative layouts public enum KeyboardKey { KEY_NULL = 0, @@ -557,7 +557,7 @@ namespace Raylib_cs KEY_VOLUME_DOWN = 25 } - // Mouse buttons + /// Mouse buttons public enum MouseButton { MOUSE_LEFT_BUTTON = 0, @@ -565,7 +565,7 @@ namespace Raylib_cs MOUSE_MIDDLE_BUTTON = 2 } - // Mouse cursor + /// Mouse cursor public enum MouseCursor { MOUSE_CURSOR_DEFAULT = 0, @@ -581,7 +581,7 @@ namespace Raylib_cs MOUSE_CURSOR_NOT_ALLOWED = 10 // The operation-not-allowed shape } - // Gamepad buttons + /// Gamepad buttons public enum GamepadButton { // This is here just for error checking @@ -618,7 +618,7 @@ namespace Raylib_cs GAMEPAD_BUTTON_RIGHT_THUMB } - // Gamepad axis + /// Gamepad axis public enum GamepadAxis { // This is here just for error checking @@ -637,7 +637,7 @@ namespace Raylib_cs GAMEPAD_AXIS_RIGHT_TRIGGER // [1..-1] (pressure-level) } - // Material map index + /// Material map index public enum MaterialMapIndex { MAP_ALBEDO = 0, // MAP_DIFFUSE @@ -653,7 +653,7 @@ namespace Raylib_cs MAP_BRDF } - // Shader location index + /// Shader location index public enum ShaderLocationIndex { LOC_VERTEX_POSITION = 0, @@ -683,7 +683,7 @@ namespace Raylib_cs LOC_MAP_BRDF } - // Shader uniform data type + /// Shader uniform data type public enum ShaderUniformDataType { UNIFORM_FLOAT = 0, @@ -697,8 +697,8 @@ namespace Raylib_cs UNIFORM_SAMPLER2D } - // Pixel formats - // NOTE: Support depends on OpenGL version and platform + /// Pixel formats + /// NOTE: Support depends on OpenGL version and platform public enum PixelFormat { UNCOMPRESSED_GRAYSCALE = 1, // 8 bit per pixel (no alpha) @@ -724,9 +724,9 @@ namespace Raylib_cs COMPRESSED_ASTC_8x8_RGBA // 2 bpp } - // Texture parameters: filter mode - // NOTE 1: Filtering considers mipmaps if available in the texture - // NOTE 2: Filter is accordingly set for minification and magnification + /// Texture parameters: filter mode + /// NOTE 1: Filtering considers mipmaps if available in the texture + /// NOTE 2: Filter is accordingly set for minification and magnification public enum TextureFilter { FILTER_POINT = 0, // No filter, just pixel aproximation @@ -737,7 +737,7 @@ namespace Raylib_cs FILTER_ANISOTROPIC_16X, // Anisotropic filtering 16x } - // Texture parameters: wrap mode + /// Texture parameters: wrap mode public enum TextureWrap { WRAP_REPEAT = 0, // Repeats texture in tiled mode @@ -746,7 +746,7 @@ namespace Raylib_cs WRAP_MIRROR_CLAMP // Mirrors and clamps to border the texture in tiled mode } - // Cubemap layouts + /// Cubemap layouts public enum CubemapLayout { CUBEMAP_AUTO_DETECT = 0, // Automatically detect layout type @@ -757,7 +757,7 @@ namespace Raylib_cs CUBEMAP_PANORAMA // Layout is defined by a panorama image (equirectangular map) } - // Font type, defines generation method + /// Font type, defines generation method public enum FontType { FONT_DEFAULT = 0, // Default font generation, anti-aliased @@ -765,7 +765,7 @@ namespace Raylib_cs FONT_SDF // SDF font generation, requires external shader } - // Color blending modes (pre-defined) + /// Color blending modes (pre-defined) public enum BlendMode { BLEND_ALPHA = 0, // Blend textures considering alpha (default) @@ -776,8 +776,8 @@ namespace Raylib_cs BLEND_CUSTOM // Belnd textures using custom src/dst factors (use SetBlendModeCustom()) } - // Gestures - // NOTE: It could be used as flags to enable only some gestures + /// Gestures + /// NOTE: It could be used as flags to enable only some gestures [Flags] public enum Gestures { @@ -794,7 +794,7 @@ namespace Raylib_cs GESTURE_PINCH_OUT = 512 } - // Camera system modes + /// Camera system modes public enum CameraMode { CAMERA_CUSTOM = 0, @@ -804,14 +804,14 @@ namespace Raylib_cs CAMERA_THIRD_PERSON } - // Camera projection + /// Camera projection public enum CameraProjection { CAMERA_PERSPECTIVE = 0, CAMERA_ORTHOGRAPHIC } - // N-patch layout + /// N-patch layout public enum NPatchLayout { NPATCH_NINE_PATCH = 0, // Npatch defined by 3x3 tiles @@ -870,206 +870,210 @@ namespace Raylib_cs // Window-related functions - // Initialize window and OpenGL context + /// Initialize window and OpenGL context [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void InitWindow(int width, int height, [MarshalAs(UnmanagedType.LPUTF8Str)] string title); - // Check if KEY_ESCAPE pressed or Close icon pressed + /// Check if KEY_ESCAPE pressed or Close icon pressed [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool WindowShouldClose(); - // Close window and unload OpenGL context + /// Close window and unload OpenGL context [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void CloseWindow(); - // Check if window has been initialized successfully + /// Check if window has been initialized successfully [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool IsWindowReady(); - // Check if window is currently fullscreen + /// Check if window is currently fullscreen [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool IsWindowFullscreen(); - // Check if window is currently hidden (only PLATFORM_DESKTOP) + /// Check if window is currently hidden (only PLATFORM_DESKTOP) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool IsWindowHidden(); - // Check if window is currently minimized (only PLATFORM_DESKTOP) + /// Check if window is currently minimized (only PLATFORM_DESKTOP) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool IsWindowMinimized(); - // Check if window is currently maximized (only PLATFORM_DESKTOP) + /// Check if window is currently maximized (only PLATFORM_DESKTOP) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool IsWindowMaximized(); - // Check if window is currently focused (only PLATFORM_DESKTOP) + /// Check if window is currently focused (only PLATFORM_DESKTOP) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool IsWindowFocused(); - // Check if window has been resized last frame + /// Check if window has been resized last frame [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool IsWindowResized(); - // Check if one specific window flag is enabled + /// Check if one specific window flag is enabled [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool IsWindowState(ConfigFlags flag); - // Set window configuration state using flags + /// Set window configuration state using flags [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool SetWindowState(ConfigFlags flag); - // Clear window configuration state flags + /// Clear window configuration state flags [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ClearWindowState(ConfigFlags flag); - // Toggle fullscreen mode (only PLATFORM_DESKTOP) + /// Toggle fullscreen mode (only PLATFORM_DESKTOP) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ToggleFullscreen(); - // Set window state: maximized, if resizable (only PLATFORM_DESKTOP) + /// Set window state: maximized, if resizable (only PLATFORM_DESKTOP) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void MaximizeWindow(); - // Set window state: minimized, if resizable (only PLATFORM_DESKTOP) + /// Set window state: minimized, if resizable (only PLATFORM_DESKTOP) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void MinimizeWindow(); - // Set window state: not minimized/maximized (only PLATFORM_DESKTOP) + /// Set window state: not minimized/maximized (only PLATFORM_DESKTOP) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void RestoreWindow(); - // Set icon for window (only PLATFORM_DESKTOP) + /// Set icon for window (only PLATFORM_DESKTOP) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetWindowIcon(Image image); - // Set title for window (only PLATFORM_DESKTOP) + /// Set title for window (only PLATFORM_DESKTOP) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetWindowTitle([MarshalAs(UnmanagedType.LPUTF8Str)] string title); - // Set window position on screen (only PLATFORM_DESKTOP) + /// Set window position on screen (only PLATFORM_DESKTOP) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetWindowPosition(int x, int y); - // Set monitor for the current window (fullscreen mode) + /// Set monitor for the current window (fullscreen mode) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetWindowMonitor(int monitor); - // Set window minimum dimensions (for FLAG_WINDOW_RESIZABLE) + /// Set window minimum dimensions (for FLAG_WINDOW_RESIZABLE) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetWindowMinSize(int width, int height); - // Set window dimensions + /// Set window dimensions [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetWindowSize(int width, int height); - // Get native window handle - // IntPtr refers to a void * + /// Get native window handle + /// IntPtr refers to a void * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern IntPtr GetWindowHandle(); - // Get current screen width + /// Get current screen width [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetScreenWidth(); - // Get current screen height + /// Get current screen height [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetScreenHeight(); - // Get number of connected monitors + /// Get number of connected monitors [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetMonitorCount(); - // Get current connected monitor + /// Get current connected monitor [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetCurrentMonitor(); - // Get specified monitor position + /// Get specified monitor position [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Vector2 GetMonitorPosition(); - // Get primary monitor width + /// Get primary monitor width [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetMonitorWidth(int monitor); - // Get primary monitor height + /// Get primary monitor height [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetMonitorHeight(int monitor); - // Get primary monitor physical width in millimetres + /// Get primary monitor physical width in millimetres [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetMonitorPhysicalWidth(int monitor); - // Get primary monitor physical height in millimetres + /// Get primary monitor physical height in millimetres [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetMonitorPhysicalHeight(int monitor); - // Get specified monitor refresh rate + /// Get specified monitor refresh rate [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetMonitorRefreshRate(int monitor); - // Get window position XY on monitor + /// Get window position XY on monitor [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Vector2 GetWindowPosition(); - // Get window scale DPI factor + /// Get window scale DPI factor [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Vector2 GetWindowScaleDPI(); - // Get the human-readable, UTF-8 encoded name of the primary monitor + /// Get the human-readable, UTF-8 encoded name of the primary monitor [DllImport(nativeLibName, EntryPoint = "GetMonitorName", CallingConvention = CallingConvention.Cdecl)] private static extern IntPtr INTERNAL_GetMonitorName(int monitor); + + /// Get the human-readable, UTF-8 encoded name of the primary monitor public static string GetMonitorName(int monitor) { return Marshal.PtrToStringUTF8(INTERNAL_GetMonitorName(monitor)); } - // Get clipboard text content + /// Get clipboard text content [DllImport(nativeLibName, EntryPoint = "GetClipboardText", CallingConvention = CallingConvention.Cdecl)] private static extern IntPtr INTERNAL_GetClipboardText(); + + /// Get clipboard text content public static string GetClipboardText() { return Marshal.PtrToStringUTF8(INTERNAL_GetClipboardText()); } - // Set clipboard text content + /// Set clipboard text content [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetClipboardText([MarshalAs(UnmanagedType.LPUTF8Str)] string text); // Cursor-related functions - // Shows cursor + /// Shows cursor [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ShowCursor(); - // Hides cursor + /// Hides cursor [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void HideCursor(); - // Check if cursor is not visible + /// Check if cursor is not visible [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool IsCursorHidden(); - // Enables cursor (unlock cursor) + /// Enables cursor (unlock cursor) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void EnableCursor(); - // Disables cursor (lock cursor) + /// Disables cursor (lock cursor) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DisableCursor(); - // Disables cursor (lock cursor) + /// Disables cursor (lock cursor) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool IsCursorOnScreen(); @@ -1077,218 +1081,218 @@ namespace Raylib_cs // Drawing-related functions - // Set background color (framebuffer clear color) + /// Set background color (framebuffer clear color) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ClearBackground(Color color); - // Setup canvas (framebuffer) to start drawing + /// Setup canvas (framebuffer) to start drawing [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void BeginDrawing(); - // End canvas drawing and swap buffers (double buffering) + /// 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) + /// 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 + /// Ends 2D mode with custom camera [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void EndMode2D(); - // Initializes 3D mode with custom camera (3D) + /// 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 + /// 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 + /// Initializes render texture for drawing [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void BeginTextureMode(RenderTexture2D target); - // Ends drawing to render texture + /// Ends drawing to render texture [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void EndTextureMode(); - // Begin custom shader drawing + /// Begin custom shader drawing [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void BeginShaderMode(Shader shader); - // End custom shader drawing (use default shader) + /// End custom shader drawing (use default shader) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void EndShaderMode(); - // Begin blending mode (alpha, additive, multiplied) + /// Begin blending mode (alpha, additive, multiplied) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void BeginBlendMode(BlendMode mode); - // End blending mode (reset to default: alpha blending) + /// End blending mode (reset to default: alpha blending) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void EndBlendMode(); - // Begin scissor mode (define screen area for following drawing) + /// Begin scissor mode (define screen area for following drawing) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void BeginScissorMode(int x, int y, int width, int height); - // End scissor mode + /// End scissor mode [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void EndScissorMode(); - // Begin stereo rendering (requires VR simulator) + /// Begin stereo rendering (requires VR simulator) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void BeginVrStereoMode(VrStereoConfig config); - // End stereo rendering (requires VR simulator) + /// End stereo rendering (requires VR simulator) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void EndVrStereoMode(); // VR stereo config functions for VR simulator - // Load VR stereo config for VR simulator device parameters + /// Load VR stereo config for VR simulator device parameters [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern VrStereoConfig LoadVrStereoConfig(VrDeviceInfo device); - // Unload VR stereo configs + /// Unload VR stereo configs [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadVrStereoConfig(VrStereoConfig config); // Shader management functions - // Load shader from files and bind default locations + /// Load shader from files and bind default locations [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Shader LoadShader(string vsFileName, string fsFileName); - // Load shader from code strings and bind default locations + /// Load shader from code strings and bind default locations [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Shader LoadShaderFromMemory(string vsCode, string fsCode); - // Get shader uniform location + /// Get shader uniform location [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetShaderLocation(Shader shader, string uniformName); - // Get shader attribute location + /// Get shader attribute location [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetShaderLocationAttrib(Shader shader, string attribName); - // Set shader uniform value - // value refers to a const void * + /// Set shader uniform value + /// value refers to a const void * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetShaderValue(Shader shader, int uniformLoc, IntPtr value, ShaderUniformDataType uniformType); - // Set shader uniform value - // value refers to a const void * + /// Set shader uniform value + /// value refers to a const void * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetShaderValue(Shader shader, int uniformLoc, ref int value, ShaderUniformDataType uniformType); - // Set shader uniform value - // value refers to a const void * + /// Set shader uniform value + /// value refers to a const void * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetShaderValue(Shader shader, int uniformLoc, ref float value, ShaderUniformDataType uniformType); - // Set shader uniform value vector - // value refers to a const void * + /// Set shader uniform value vector + /// value refers to a const void * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetShaderValueV(Shader shader, int uniformLoc, IntPtr value, ShaderUniformDataType uniformType, int count); - // Set shader uniform value (matrix 4x4) + /// Set shader uniform value (matrix 4x4) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetShaderValueMatrix(Shader shader, int uniformLoc, Matrix4x4 mat); - // Set shader uniform value for texture + /// Set shader uniform value for texture [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetShaderValueTexture(Shader shader, int uniformLoc, Texture2D texture); - // Unload shader from GPU memory (VRAM) + /// Unload shader from GPU memory (VRAM) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadShader(Shader shader); // Screen-space-related functions - // Returns a ray trace from mouse position + /// Returns a ray trace from mouse position [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Ray GetMouseRay(Vector2 mousePosition, Camera3D camera); - // Returns camera transform matrix (view matrix) + /// Returns camera transform matrix (view matrix) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Matrix4x4 GetCameraMatrix(Camera3D camera); - // Returns camera 2d transform matrix + /// Returns camera 2d transform matrix [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Matrix4x4 GetCameraMatrix2D(Camera2D camera); - // Returns the screen space position for a 3d world space position + /// 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 size position for a 3d world space position + /// Returns size position for a 3d world space position [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Vector2 GetWorldToScreenEx(Vector3 position, Camera3D camera, int width, int height); - // Returns the screen space position for a 2d camera world space position + /// Returns the screen space position for a 2d camera world space position [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Vector2 GetWorldToScreen2D(Vector2 position, Camera2D camera); - // Returns the world space position for a 2d camera screen space position + /// Returns the world space position for a 2d camera screen space position [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Vector2 GetScreenToWorld2D(Vector2 position, Camera2D camera); // Timing-related functions - // Set target FPS (maximum) + /// Set target FPS (maximum) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetTargetFPS(int fps); - // Returns current FPS + /// Returns current FPS [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetFPS(); - // Returns time in seconds for last frame drawn + /// 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() + /// Returns elapsed time in seconds since InitWindow() [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern double GetTime(); // Misc. functions - // Returns a random value between min and max (both included) + /// Returns a random value between min and max (both included) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetRandomValue(int min, int max); - // Takes a screenshot of current screen (saved a .png) + /// Takes a screenshot of current screen (saved a .png) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void TakeScreenshot(string fileName); - // Setup window configuration flags (view FLAGS) + /// Setup window configuration flags (view FLAGS) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetConfigFlags(ConfigFlags flags); - // Show trace log messages (LOG_DEBUG, LOG_INFO, LOG_WARNING, LOG_ERROR) + /// Show trace log messages (LOG_DEBUG, LOG_INFO, LOG_WARNING, LOG_ERROR) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void TraceLog(TraceLogLevel logLevel, string text); - // Set the current threshold (minimum) log level + /// Set the current threshold (minimum) log level [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetTraceLogLevel(TraceLogLevel logLevel); - // Internal memory allocator + /// Internal memory allocator [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern IntPtr MemAlloc(int size); - // Internal memory reallocator + /// Internal memory reallocator [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern IntPtr MemRealloc(IntPtr ptr, int size); - // Internal memory free + /// Internal memory free [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void MemFree(IntPtr ptr); @@ -1296,87 +1300,87 @@ namespace Raylib_cs // Set custom callbacks // WARNING: Callbacks setup is intended for advance users - // Set custom trace log + /// Set custom trace log [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetTraceLogCallback(TraceLogCallback callback); - // Set custom file binary data loader + /// Set custom file binary data loader [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetLoadFileDataCallback(LoadFileDataCallback callback); - // Set custom file binary data saver + /// Set custom file binary data saver [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetSaveFileDataCallback(SaveFileDataCallback callback); - // Set custom file text data loader + /// Set custom file text data loader [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetLoadFileTextCallback(LoadFileTextCallback callback); - // Set custom file text data saver + /// Set custom file text data saver [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetSaveFileTextCallback(SaveFileTextCallback callback); // Files management functions - // Load file data as byte array (read) - // IntPtr refers to unsigned char * + /// Load file data as byte array (read) + /// IntPtr refers to unsigned char * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern IntPtr LoadFileData(string fileName, ref int bytesRead); - // Unload file data allocated by LoadFileData() - // data refers to a unsigned char * + /// Unload file data allocated by LoadFileData() + /// data refers to a unsigned char * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadFileData(IntPtr data); - // Save data to file from byte array (write) + /// Save data to file from byte array (write) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool SaveFileData(string fileName, IntPtr data, int bytesToWrite); - // Check file extension + /// Check file extension [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool IsFileExtension(string fileName, string ext); - // Check if a file has been dropped into window + /// Check if a file has been dropped into window [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool IsFileDropped(); - // Get dropped files names (memory should be freed) + /// Get dropped files names (memory should be freed) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern IntPtr GetDroppedFiles(ref int count); - // Clear dropped files paths buffer (free memory) + /// Clear dropped files paths buffer (free memory) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ClearDroppedFiles(); - // Get file modification time (last write time) + /// Get file modification time (last write time) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetFileModTime(string fileName); - // Compress data (DEFLATE algorythm) + /// Compress data (DEFLATE algorythm) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern IntPtr CompressData(byte[] data, int dataLength, ref int compDataLength); - // Decompress data (DEFLATE algorythm) + /// Decompress data (DEFLATE algorythm) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern IntPtr DecompressData(byte[] compData, int compDataLength, ref int dataLength); // Persistent storage management - // Save integer value to storage file (to defined position) + /// Save integer value to storage file (to defined position) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool SaveStorageValue(uint position, int value); - // Load integer value from storage file (from defined position) + /// Load integer value from storage file (from defined position) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int LoadStorageValue(uint position); - // Open URL with default system browser (if available) + /// Open URL with default system browser (if available) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void OpenURL(string url); @@ -1386,166 +1390,168 @@ namespace Raylib_cs // Input-related functions: keyboard - // Detect if a key has been pressed once + /// Detect if a key has been pressed once [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool IsKeyPressed(KeyboardKey key); - // Detect if a key is being pressed + /// Detect if a key is being pressed [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool IsKeyDown(KeyboardKey key); - // Detect if a key has been released once + /// Detect if a key has been released once [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool IsKeyReleased(KeyboardKey key); - // Detect if a key is NOT being pressed + /// Detect if a key is NOT being pressed [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool IsKeyUp(KeyboardKey key); - // Set a custom key to exit program (default is ESC) + /// Set a custom key to exit program (default is ESC) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetExitKey(KeyboardKey key); - // Get key pressed (keycode), call it multiple times for keys queued + /// Get key pressed (keycode), call it multiple times for keys queued [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetKeyPressed(); - // Get char pressed (unicode), call it multiple times for chars queued + /// Get char pressed (unicode), call it multiple times for chars queued [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetCharPressed(); // Input-related functions: gamepads - // Detect if a gamepad is available + /// Detect if a gamepad is available [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool IsGamepadAvailable(int gamepad); - // Check gamepad name (if available) + /// Check gamepad name (if available) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool IsGamepadName(int gamepad, string name); - // Return gamepad internal name id + /// Return gamepad internal name id [DllImport(nativeLibName, EntryPoint = "GetGamepadName", CallingConvention = CallingConvention.Cdecl)] private static extern IntPtr INTERNAL_GetGamepadName(int gamepad); + + /// Return gamepad internal name id public static string GetGamepadName(int gamepad) { return Marshal.PtrToStringUTF8(INTERNAL_GetGamepadName(gamepad)); } - // Detect if a gamepad button has been pressed once + /// Detect if a gamepad button has been pressed once [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool IsGamepadButtonPressed(int gamepad, GamepadButton button); - // Detect if a gamepad button is being pressed + /// Detect if a gamepad button is being pressed [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool IsGamepadButtonDown(int gamepad, GamepadButton button); - // Detect if a gamepad button has been released once + /// Detect if a gamepad button has been released once [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool IsGamepadButtonReleased(int gamepad, GamepadButton button); - // Detect if a gamepad button is NOT being pressed + /// Detect if a gamepad button is NOT being pressed [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool IsGamepadButtonUp(int gamepad, GamepadButton button); - // Get the last gamepad button pressed + /// Get the last gamepad button pressed [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetGamepadButtonPressed(); - // Return gamepad axis count for a gamepad + /// 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 + /// Return axis movement value for a gamepad axis [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern float GetGamepadAxisMovement(int gamepad, GamepadAxis axis); - // Set internal gamepad mappings (SDL_GameControllerDB) + /// Set internal gamepad mappings (SDL_GameControllerDB) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int SetGamepadMappings(string mappings); // Input-related functions: mouse - // Detect if a mouse button has been pressed once + /// Detect if a mouse button has been pressed once [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool IsMouseButtonPressed(MouseButton button); - // Detect if a mouse button is being pressed + /// Detect if a mouse button is being pressed [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool IsMouseButtonDown(MouseButton button); - // Detect if a mouse button has been released once + /// Detect if a mouse button has been released once [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool IsMouseButtonReleased(MouseButton button); - // Detect if a mouse button is NOT being pressed + /// Detect if a mouse button is NOT being pressed [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool IsMouseButtonUp(MouseButton button); - // Returns mouse position X + /// Returns mouse position X [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetMouseX(); - // Returns mouse position Y + /// Returns mouse position Y [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetMouseY(); - // Returns mouse position XY + /// Returns mouse position XY [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Vector2 GetMousePosition(); - // Set mouse position XY + /// Set mouse position XY [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetMousePosition(int x, int y); - // Set mouse offset + /// Set mouse offset [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetMouseOffset(int offsetX, int offsetY); - // Set mouse scaling + /// Set mouse scaling [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetMouseScale(float scaleX, float scaleY); - // Returns mouse wheel movement Y + /// Returns mouse wheel movement Y [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern float GetMouseWheelMove(); - // Returns mouse cursor + /// Returns mouse cursor [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern MouseCursor GetMouseCursor(); - // Set mouse cursor + /// Set mouse cursor [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetMouseCursor(MouseCursor cursor); // Input-related functions: touch - // Returns touch position X for touch point 0 (relative to screen size) + /// 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) + /// 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) + /// 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); @@ -1553,40 +1559,40 @@ namespace Raylib_cs // Gestures and Touch Handling Functions (Module: gestures) //------------------------------------------------------------------------------------ - // Enable a set of gestures using flags + /// Enable a set of gestures using flags [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetGesturesEnabled(Gestures flags); - // Check if a gesture have been detected + /// Check if a gesture have been detected [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool IsGestureDetected(Gestures gesture); - // Get latest detected gesture + /// Get latest detected gesture [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetGestureDetected(); - // Get touch points count + /// Get touch points count [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetTouchPointsCount(); - // Get gesture hold time in milliseconds + /// Get gesture hold time in milliseconds [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern float GetGestureHoldDuration(); - // Get gesture drag vector + /// Get gesture drag vector [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Vector2 GetGestureDragVector(); - // Get gesture drag angle + /// Get gesture drag angle [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern float GetGestureDragAngle(); - // Get gesture pinch delta + /// Get gesture pinch delta [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Vector2 GetGesturePinchVector(); - // Get gesture pinch angle + /// Get gesture pinch angle [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern float GetGesturePinchAngle(); @@ -1594,27 +1600,27 @@ namespace Raylib_cs // Camera System Functions (Module: camera) //------------------------------------------------------------------------------------ - // Set camera mode (multiple camera modes available) + /// Set camera mode (multiple camera modes available) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetCameraMode(Camera3D camera, CameraMode mode); - // Update camera position for selected mode + /// 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) + /// Set camera pan key to combine with mouse movement (free camera) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetCameraPanControl(KeyboardKey panKey); - // Set camera alt key to combine with mouse movement (free camera) + /// Set camera alt key to combine with mouse movement (free camera) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetCameraAltControl(KeyboardKey altKey); - // Set camera smooth zoom key to combine with mouse (free camera) + /// Set camera smooth zoom key to combine with mouse (free camera) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetCameraSmoothZoomControl(KeyboardKey szKey); - // Set camera move controls (1st person and 3rd person cameras) + /// Set camera move controls (1st person and 3rd person cameras) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetCameraMoveControls(KeyboardKey frontKey, KeyboardKey backKey, KeyboardKey rightKey, KeyboardKey leftKey, KeyboardKey upKey, KeyboardKey downKey); @@ -1622,193 +1628,193 @@ namespace Raylib_cs // Basic Shapes Drawing Functions (Module: shapes) //------------------------------------------------------------------------------------ - // Set texture and rectangle to be used on shapes drawing - // NOTE: It can be useful when using basic shapes and one single font, - // defining a font char white rectangle would allow drawing everything in a single draw call + /// Set texture and rectangle to be used on shapes drawing + /// NOTE: It can be useful when using basic shapes and one single font, + /// defining a font char white rectangle would allow drawing everything in a single draw call [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetShapesTexture(Texture2D texture, Rectangle source); // Basic shapes drawing functions - // Draw a pixel + /// Draw a pixel [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawPixel(int posX, int posY, Color color); - // Draw a pixel (Vector version) + /// Draw a pixel (Vector version) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawPixelV(Vector2 position, Color color); - // Draw a line + /// 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) + /// 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 + /// 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 + /// 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 line using quadratic bezier curves with a control point + /// Draw line using quadratic bezier curves with a control point [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawLineBezierQuad(Vector2 startPos, Vector2 endPos, Vector2 controlPos, float thick, Color color); - // Draw lines sequence + /// Draw lines sequence [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawLineStrip(Vector2[] points, int numPoints, Color color); - // Draw a color-filled circle + /// Draw a color-filled circle [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawCircle(int centerX, int centerY, float radius, Color color); - // Draw a piece of a circle + /// Draw a piece of a circle [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawCircleSector(Vector2 center, float radius, float startAngle, float endAngle, int segments, Color color); - // Draw circle sector outline + /// Draw circle sector outline [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawCircleSectorLines(Vector2 center, float radius, float startAngle, float endAngle, int segments, Color color); - // Draw a gradient-filled circle + /// 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) + /// 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 + /// Draw circle outline [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawCircleLines(int centerX, int centerY, float radius, Color color); - // Draw ellipse + /// Draw ellipse [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawEllipse(int centerX, int centerY, float radiusH, float radiusV, Color color); - // Draw ellipse outline + /// Draw ellipse outline [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawEllipseLines(int centerX, int centerY, float radiusH, float radiusV, Color color); - // Draw ring + /// Draw ring [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawRing(Vector2 center, float innerRadius, float outerRadius, float startAngle, float endAngle, int segments, Color color); - // Draw ring outline + /// Draw ring outline [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawRingLines(Vector2 center, float innerRadius, float outerRadius, float startAngle, float endAngle, int segments, Color color); - // Draw a color-filled rectangle + /// 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) + /// 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 + /// 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 + /// 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 + /// 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 + /// 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 + /// 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 + /// 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 + /// Draw rectangle outline with extended parameters [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawRectangleLinesEx(Rectangle rec, int lineThick, Color color); - // Draw rectangle with rounded edges + /// Draw rectangle with rounded edges [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawRectangleRounded(Rectangle rec, float roundness, int segments, Color color); - // Draw rectangle with rounded edges outline + /// Draw rectangle with rounded edges outline [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawRectangleRoundedLines(Rectangle rec, float roundness, int segments, int lineThick, Color color); - // Draw a color-filled triangle (vertex in counter-clockwise order!) + /// Draw a color-filled triangle (vertex in counter-clockwise order!) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawTriangle(Vector2 v1, Vector2 v2, Vector2 v3, Color color); - // Draw triangle outline (vertex in counter-clockwise order!) + /// Draw triangle outline (vertex in counter-clockwise order!) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawTriangleLines(Vector2 v1, Vector2 v2, Vector2 v3, Color color); - // Draw a triangle fan defined by points (first vertex is the center) + /// Draw a triangle fan defined by points (first vertex is the center) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawTriangleFan(Vector2[] points, int numPoints, Color color); - // Draw a triangle strip defined by points + /// Draw a triangle strip defined by points [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawTriangleStrip(Vector2[] points, int pointsCount, Color color); - // Draw a regular polygon (Vector version) + /// 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 polygon outline of n sides + /// Draw a polygon outline of n sides [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawPolyLines(Vector2 center, int sides, float radius, float rotation, Color color); // Basic shapes collision detection functions - // Check collision between two rectangles + /// Check collision between two rectangles [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool CheckCollisionRecs(Rectangle rec1, Rectangle rec2); - // Check collision between two circles + /// Check collision between two circles [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool CheckCollisionCircles(Vector2 center1, float radius1, Vector2 center2, float radius2); - // Check collision between circle and rectangle + /// Check collision between circle and rectangle [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool CheckCollisionCircleRec(Vector2 center, float radius, Rectangle rec); - // Check if point is inside rectangle + /// Check if point is inside rectangle [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool CheckCollisionPointRec(Vector2 point, Rectangle rec); - // Check if point is inside circle + /// Check if point is inside circle [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool CheckCollisionPointCircle(Vector2 point, Vector2 center, float radius); - // Check if point is inside a triangle + /// Check if point is inside a triangle [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool CheckCollisionPointTriangle(Vector2 point, Vector2 p1, Vector2 p2, Vector2 p3); - // Check the collision between two lines defined by two points each, returns collision point by reference + /// Check the collision between two lines defined by two points each, returns collision point by reference [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool CheckCollisionLines(Vector2 startPos1, Vector2 endPos1, Vector2 startPos2, Vector2 endPos2, ref Vector2 collisionPoint); - // Get collision rectangle for two rectangles collision + /// Get collision rectangle for two rectangles collision [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Rectangle GetCollisionRec(Rectangle rec1, Rectangle rec2); @@ -1820,198 +1826,198 @@ namespace Raylib_cs // Image loading functions // NOTE: This functions do not require GPU access - // Load image from file into CPU memory (RAM) + /// Load image from file into CPU memory (RAM) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Image LoadImage(string fileName); - // Load image from RAW file data + /// Load image from RAW file data [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Image LoadImageRaw(string fileName, int width, int height, PixelFormat format, int headerSize); - // Load image sequence from file (frames appended to image.data) + /// Load image sequence from file (frames appended to image.data) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Image LoadImageAnim(string fileName, ref int frames); - // Load image from memory buffer, fileType refers to extension: i.e. "png" - // fileData refers to const unsigned char * + /// Load image from memory buffer, fileType refers to extension: i.e. "png" + /// fileData refers to const unsigned char * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Image LoadImageFromMemory(string fileType, IntPtr fileData, int dataSize); - // Unload image from CPU memory (RAM) + /// Unload image from CPU memory (RAM) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadImage(Image image); - // Export image data to file + /// Export image data to file [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ExportImage(Image image, string fileName); - // Export image as code file defining an array of bytes + /// Export image as code file defining an array of bytes [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ExportImageAsCode(Image image, string fileName); // Image generation functions - // Generate image: plain color + /// Generate image: plain color [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Image GenImageColor(int width, int height, Color color); - // Generate image: vertical gradient + /// Generate image: vertical gradient [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Image GenImageGradientV(int width, int height, Color top, Color bottom); - // Generate image: horizontal gradient + /// Generate image: horizontal gradient [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Image GenImageGradientH(int width, int height, Color left, Color right); - // Generate image: radial gradient + /// Generate image: radial gradient [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Image GenImageGradientRadial(int width, int height, float density, Color inner, Color outer); - // Generate image: checked + /// Generate image: checked [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Image GenImageChecked(int width, int height, int checksX, int checksY, Color col1, Color col2); - // Generate image: white noise + /// Generate image: white noise [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Image GenImageWhiteNoise(int width, int height, float factor); - // Generate image: perlin noise + /// Generate image: perlin noise [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Image GenImagePerlinNoise(int width, int height, int offsetX, int offsetY, float scale); - // Generate image: cellular algorithm. Bigger tileSize means bigger cells + /// 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); // Image manipulation functions - // Create an image duplicate (useful for transformations) + /// Create an image duplicate (useful for transformations) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Image ImageCopy(Image image); - // Create an image from another image piece + /// Create an image from another image piece [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Image ImageFromImage(Image image, Rectangle rec); - // Create an image from text (default font) + /// Create an image from text (default font) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Image ImageText([MarshalAs(UnmanagedType.LPUTF8Str)] string text, int fontSize, Color color); - // Create an image from text (custom sprite font) + /// Create an image from text (custom sprite font) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Image ImageTextEx(Font font, [MarshalAs(UnmanagedType.LPUTF8Str)] string text, float fontSize, float spacing, Color tint); - // Convert image to POT (power-of-two) + /// Convert image to POT (power-of-two) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageToPOT(ref Image image, Color fill); - // Convert image data to desired format + /// Convert image data to desired format [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageFormat(ref Image image, int newFormat); - // Apply alpha mask to image + /// Apply alpha mask to image [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageAlphaMask(ref Image image, Image alphaMask); - // Clear alpha channel to desired color + /// Clear alpha channel to desired color [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageAlphaClear(ref Image image, Color color, float threshold); - // Crop image depending on alpha value + /// Crop image depending on alpha value [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageAlphaCrop(ref Image image, float threshold); - // Premultiply alpha channel + /// Premultiply alpha channel [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageAlphaPremultiply(ref Image image); - // Crop an image to a defined rectangle + /// Crop an image to a defined rectangle [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageCrop(ref Image image, Rectangle crop); - // Resize image (Bicubic scaling algorithm) + /// Resize image (Bicubic scaling algorithm) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageResize(ref Image image, int newWidth, int newHeight); - // Resize image (Nearest-Neighbor scaling algorithm) + /// Resize image (Nearest-Neighbor scaling algorithm) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageResizeNN(ref Image image, int newWidth, int newHeight); - // Resize canvas and fill with color + /// Resize canvas and fill with color [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageResizeCanvas(ref Image image, int newWidth, int newHeight, int offsetX, int offsetY, Color color); - // Generate all mipmap levels for a provided image + /// Generate all mipmap levels for a provided image [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageMipmaps(ref Image image); - // Dither image data to 16bpp or lower (Floyd-Steinberg dithering) + /// 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); - // Flip image vertically + /// Flip image vertically [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageFlipVertical(ref Image image); - // Flip image horizontally + /// Flip image horizontally [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageFlipHorizontal(ref Image image); - // Rotate image clockwise 90deg + /// Rotate image clockwise 90deg [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageRotateCW(ref Image image); - // Rotate image counter-clockwise 90deg + /// Rotate image counter-clockwise 90deg [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageRotateCCW(ref Image image); - // Modify image color: tint + /// Modify image color: tint [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageColorTint(ref Image image, Color color); - // Modify image color: invert + /// Modify image color: invert [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageColorInvert(ref Image image); - // Modify image color: grayscale + /// Modify image color: grayscale [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageColorGrayscale(ref Image image); - // Modify image color: contrast (-100 to 100) + /// Modify image color: contrast (-100 to 100) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageColorContrast(ref Image image, float contrast); - // Modify image color: brightness (-255 to 255) + /// Modify image color: brightness (-255 to 255) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageColorBrightness(ref Image image, int brightness); - // Modify image color: replace color + /// Modify image color: replace color [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageColorReplace(ref Image image, Color color, Color replace); - // Load color data from image as a Color array (RGBA - 32bit) - // IntPtr refers to Color * + /// Load color data from image as a Color array (RGBA - 32bit) + /// IntPtr refers to Color * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern IntPtr LoadImageColors(Image image); - // Load colors palette from image as a Color array (RGBA - 32bit) - // IntPtr refers to Color * + /// Load colors palette from image as a Color array (RGBA - 32bit) + /// IntPtr refers to Color * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern IntPtr LoadImagePaletee(Image image, int maxPaletteSize, ref int colorsCount); - // Unload color data loaded with LoadImageColors() - // colors refers to Color * + /// Unload color data loaded with LoadImageColors() + /// colors refers to Color * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadImageColors(IntPtr colors); - // Unload colors palette loaded with LoadImagePalette() - // colors refers to Color * + /// Unload colors palette loaded with LoadImagePalette() + /// colors refers to Color * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadImagePaletee(IntPtr colors); - // Get image alpha border rectangle + /// Get image alpha border rectangle [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Rectangle GetImageAlphaBorder(Image image, float threshold); @@ -2019,59 +2025,59 @@ namespace Raylib_cs // Image drawing functions // NOTE: Image software-rendering functions (CPU) - // Clear image background with given color + /// Clear image background with given color [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageClearBackground(ref Image dst, Color color); - // Draw pixel within an image + /// Draw pixel within an image [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageDrawPixel(ref Image dst, int posX, int posY, Color color); - // Draw pixel within an image (Vector version) + /// Draw pixel within an image (Vector version) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageDrawPixelV(ref Image dst, Vector2 position, Color color); - // Draw line within an image + /// Draw line within an image [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageDrawLine(ref Image dst, int startPosX, int startPosY, int endPosX, int endPosY, Color color); - // Draw line within an image (Vector version) + /// Draw line within an image (Vector version) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageDrawLineV(ref Image dst, Vector2 start, Vector2 end, Color color); - // Draw circle within an image + /// Draw circle within an image [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageDrawCircle(ref Image dst, int centerX, int centerY, int radius, Color color); - // Draw circle within an image (Vector version) + /// Draw circle within an image (Vector version) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageDrawCircleV(ref Image dst, Vector2 center, int radius, Color color); - // Draw rectangle within an image + /// Draw rectangle within an image [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageDrawRectangle(ref Image dst, int posX, int posY, int width, int height, Color color); - // Draw rectangle within an image (Vector version) + /// Draw rectangle within an image (Vector version) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageDrawRectangleV(ref Image dst, Vector2 position, Vector2 size, Color color); - // Draw rectangle within an image + /// Draw rectangle within an image [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageDrawRectangleRec(ref Image dst, Rectangle rec, Color color); - // Draw rectangle lines within an image + /// Draw rectangle lines within an image [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageDrawRectangleLines(ref Image dst, Rectangle rec, int thick, Color color); - // Draw a source image within a destination image (tint applied to source) + /// Draw a source image within a destination image (tint applied to source) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageDraw(ref Image dst, Image src, Rectangle srcRec, Rectangle dstRec, Color tint); - // Draw text (using default font) within an image (destination) + /// Draw text (using default font) within an image (destination) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageDrawText(ref Image dst, [MarshalAs(UnmanagedType.LPUTF8Str)] string text, int x, int y, int fontSize, Color color); - // Draw text (custom sprite font) within an image (destination) + /// Draw text (custom sprite font) within an image (destination) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ImageDrawTextEx(ref Image dst, Font font, [MarshalAs(UnmanagedType.LPUTF8Str)] string text, Vector2 position, float fontSize, float spacing, Color tint); @@ -2079,146 +2085,146 @@ namespace Raylib_cs // Texture loading functions // NOTE: These functions require GPU access - // Load texture from file into GPU memory (VRAM) + /// Load texture from file into GPU memory (VRAM) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Texture2D LoadTexture(string fileName); - // Load texture from image data + /// Load texture from image data [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Texture2D LoadTextureFromImage(Image image); - // Load cubemap from image, multiple image cubemap layouts supported + /// Load cubemap from image, multiple image cubemap layouts supported [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Texture2D LoadTextureCubemap(Image image, CubemapLayout layout); - // Load texture for rendering (framebuffer) + /// Load texture for rendering (framebuffer) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern RenderTexture2D LoadRenderTexture(int width, int height); - // Unload texture from GPU memory (VRAM) + /// Unload texture from GPU memory (VRAM) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadTexture(Texture2D texture); - // Unload render texture from GPU memory (VRAM) + /// Unload render texture from GPU memory (VRAM) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadRenderTexture(RenderTexture2D target); - // Update GPU texture with new data - // pixels refers to a const void * + /// Update GPU texture with new data + /// pixels refers to a const void * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UpdateTexture(Texture2D texture, IntPtr pixels); - // Update GPU texture rectangle with new data - // pixels refers to a const void * + /// Update GPU texture rectangle with new data + /// pixels refers to a const void * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UpdateTextureRec(Texture2D texture, Rectangle rec, IntPtr pixels); - // Get pixel data from GPU texture and return an Image + /// Get pixel data from GPU texture and return an Image [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Image GetTextureData(Texture2D texture); - // Get pixel data from screen buffer and return an Image (screenshot) + /// Get pixel data from screen buffer and return an Image (screenshot) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Image GetScreenData(); // Texture configuration functions - // Generate GPU mipmaps for a texture + /// Generate GPU mipmaps for a texture [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void GenTextureMipmaps(ref Texture2D texture); - // Set texture scaling filter mode + /// Set texture scaling filter mode [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetTextureFilter(Texture2D texture, TextureFilter filter); - // Set texture wrapping mode + /// Set texture wrapping mode [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetTextureWrap(Texture2D texture, TextureWrap wrap); // Texture drawing functions - // Draw a Texture2D + /// Draw a Texture2D [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawTexture(Texture2D texture, int posX, int posY, Color tint); - // Draw a Texture2D with position defined as Vector2 + /// Draw a Texture2D with position defined as Vector2 [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawTextureV(Texture2D texture, Vector2 position, Color tint); - // Draw a Texture2D with extended parameters + /// Draw a Texture2D with extended parameters [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawTextureEx(Texture2D texture, Vector2 position, float rotation, float scale, Color tint); - // Draw a part of a texture defined by a rectangle + /// Draw a part of a texture defined by a rectangle [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawTextureRec(Texture2D texture, Rectangle sourceRec, Vector2 position, Color tint); - // Draw texture quad with tiling and offset parameters + /// Draw texture quad with tiling and offset parameters [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawTextureQuad(Texture2D texture, Vector2 tiling, Vector2 offset, Rectangle quad, Color tint); - // Draw part of a texture (defined by a rectangle) with rotation and scale tiled into dest. + /// Draw part of a texture (defined by a rectangle) with rotation and scale tiled into dest. [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawTextureTiled(Texture2D texture, Rectangle source, Rectangle dest, Vector2 origin, float rotation, float scale, Color tint); - // Draw a part of a texture defined by a rectangle with 'pro' parameters + /// Draw a part of a texture defined by a rectangle with 'pro' parameters [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawTexturePro(Texture2D texture, Rectangle sourceRec, Rectangle destRec, Vector2 origin, float rotation, Color tint); - // Draws a texture (or part of it) that stretches or shrinks nicely + /// Draws a texture (or part of it) that stretches or shrinks nicely [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawTextureNPatch(Texture2D texture, NPatchInfo nPatchInfo, Rectangle destRec, Vector2 origin, float rotation, Color tint); - // Draw a textured polygon + /// Draw a textured polygon [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawTexturePoly(Texture2D texture, Vector2 center, Vector2[] points, Vector2[] texcoords, int pointsCount, Color tint); // Color/pixel related functions - // Returns hexadecimal value for a Color + /// 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] + /// Returns color normalized as float [0..1] [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Vector4 ColorNormalize(Color color); - // Returns color from normalized values [0..1] + /// Returns color from normalized values [0..1] [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Color ColorFromNormalized(Vector4 normalized); - // Returns HSV values for a Color, hue [0..360], saturation/value [0..1] + /// Returns HSV values for a Color, hue [0..360], saturation/value [0..1] [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Vector3 ColorToHSV(Color color); - // Returns a Color from HSV values, hue [0..360], saturation/value [0..1] + /// Returns a Color from HSV values, hue [0..360], saturation/value [0..1] [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Color ColorFromHSV(float hue, float saturation, float value); - // Returns color with alpha applied, alpha goes from 0.0f to 1.0f + /// Returns color with alpha applied, alpha goes from 0.0f to 1.0f [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Color ColorAlpha(Color color, float alpha); - // Returns src alpha-blended into dst color with tint + /// Returns src alpha-blended into dst color with tint [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Color ColorAlphaBlend(Color dst, Color src, Color tint); - // Get Color structure from hexadecimal value + /// Get Color structure from hexadecimal value [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Color GetColor(int hexValue); - // Get Color from a source pixel pointer of certain format + /// Get Color from a source pixel pointer of certain format [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Color GetPixelColor(IntPtr srcPtr, PixelFormat format); - // Set color formatted into destination pixel pointer + /// Set color formatted into destination pixel pointer [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetPixelColor(IntPtr srcPtr, Color color, PixelFormat format); - // Get pixel data size in bytes for certain format + /// Get pixel data size in bytes for certain format [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetPixelDataSize(int width, int height, PixelFormat format); @@ -2229,132 +2235,132 @@ namespace Raylib_cs // Font loading/unloading functions - // Get the default Font + /// Get the default Font [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Font GetFontDefault(); - // Load font from file into GPU memory (VRAM) + /// Load font from file into GPU memory (VRAM) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Font LoadFont(string fileName); - // Load font from file with extended parameters + /// Load font from file with extended parameters [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Font LoadFontEx(string fileName, int fontSize, int[] fontChars, int charsCount); - // Load font from Image (XNA style) + /// Load font from Image (XNA style) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Font LoadFontFromImage(Image image, Color key, int firstChar); - // Load font from memory buffer, fileType refers to extension: i.e. "ttf" - // fileData refers to const unsigned char * + /// Load font from memory buffer, fileType refers to extension: i.e. "ttf" + /// fileData refers to const unsigned char * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Font LoadFontFromMemory(string fileType, IntPtr fileData, int dataSize, int fontSize, int[] fontChars, int charsCount); - // Load font data for further use - // fileData refers to const unsigned char * - // IntPtr refers to CharInfo * + /// Load font data for further use + /// fileData refers to const unsigned char * + /// IntPtr refers to CharInfo * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern IntPtr LoadFontData(IntPtr fileData, int dataSize, int fontSize, int[] fontChars, int charsCount, FontType type); - // Generate image font atlas using chars info + /// Generate image font atlas using chars info [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Image GenImageFontAtlas(IntPtr chars, ref IntPtr recs, int charsCount, int fontSize, int padding, int packMethod); - // Unload font chars info data (RAM) - // chars refers to CharInfo * + /// Unload font chars info data (RAM) + /// chars refers to CharInfo * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadFontData(IntPtr chars, int charsCount); - // Unload Font from GPU memory (VRAM) + /// Unload Font from GPU memory (VRAM) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadFont(Font font); // Text drawing functions - // Shows current FPS + /// Shows current FPS [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawFPS(int posX, int posY); - // Draw text (using default font) + /// Draw text (using default font) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawText([MarshalAs(UnmanagedType.LPUTF8Str)] string text, int posX, int posY, int fontSize, Color color); - // Draw text using font and additional parameters + /// Draw text using font and additional parameters [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawTextEx(Font font, [MarshalAs(UnmanagedType.LPUTF8Str)] string text, Vector2 position, float fontSize, float spacing, Color tint); - // Draw text using font inside rectangle limits + /// Draw text using font inside rectangle limits [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawTextRec(Font font, [MarshalAs(UnmanagedType.LPUTF8Str)] string text, Rectangle rec, float fontSize, float spacing, bool wordWrap, Color tint); - // Draw text using font inside rectangle limits with support for text selection + /// Draw text using font inside rectangle limits with support for text selection [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawTextRecEx(Font font, [MarshalAs(UnmanagedType.LPUTF8Str)] string text, Rectangle rec, float fontSize, float spacing, bool wordWrap, Color tint, int selectStart, int selectLength, Color selectText, Color selectBack); - // Draw one character (codepoint) + /// Draw one character (codepoint) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawTextCodepoint(Font font, int codepoint, Vector2 position, float scale, Color tint); // Text misc. functions - // Measure string width for default font + /// Measure string width for default font [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int MeasureText([MarshalAs(UnmanagedType.LPUTF8Str)] string text, int fontSize); - // Measure string size for Font + /// Measure string size for Font [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Vector2 MeasureTextEx(Font font, [MarshalAs(UnmanagedType.LPUTF8Str)] string text, float fontSize, float spacing); - // Get index position for a unicode character on font + /// Get index position for a unicode character on font [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetGlyphIndex(Font font, int character); // Text strings management functions // NOTE: Some strings allocate memory internally for returned strings, just be careful! - // Text formatting with variables (sprintf style) + /// Text formatting with variables (sprintf style) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern string TextFormat(string text); - // Get a piece of a text string + /// Get a piece of a text string [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern string TextSubtext(string text, int position, int length); - // Append text at specific position and move cursor! + /// Append text at specific position and move cursor! [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void TextAppend(ref char text, string append, ref int position); - // Get Pascal case notation version of provided string + /// Get Pascal case notation version of provided string [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern string TextToPascal(string text); - // Get integer value from text (negative values not supported) + /// Get integer value from text (negative values not supported) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int TextToInteger(string text); - // Encode text codepoint into utf8 text (memory must be freed!) + /// Encode text codepoint into utf8 text (memory must be freed!) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern string TextToUtf8(string text, int length); // UTF8 text strings management functions - // Get all codepoints in a string, codepoints count returned by parameters - // IntPtr refers to a int * + /// Get all codepoints in a string, codepoints count returned by parameters + /// IntPtr refers to a int * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern IntPtr GetCodepoints(string text, ref int count); - // Get total number of characters (codepoints) in a UTF8 encoded string + /// Get total number of characters (codepoints) in a UTF8 encoded string [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetCodepointsCount(string text); - // Returns next codepoint in a UTF8 encoded string; 0x3f('?') is returned on failure + /// Returns next codepoint in a UTF8 encoded string; 0x3f('?') is returned on failure [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetNextCodepoint(string text, ref int bytesProcessed); - // Encode codepoint into utf8 text (char array length returned as parameter) + /// Encode codepoint into utf8 text (char array length returned as parameter) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern string CodepointToUtf8(string text, ref int byteLength); @@ -2365,75 +2371,75 @@ namespace Raylib_cs // Basic geometric 3D shapes drawing functions - // Draw a line in 3D world space + /// Draw a line in 3D world space [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawLine3D(Vector3 startPos, Vector3 endPos, Color color); - // Draw a point in 3D space, actually a small line + /// Draw a point in 3D space, actually a small line [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawPoint3D(Vector3 position, Color color); - // Draw a circle in 3D world space + /// Draw a circle in 3D world space [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawCircle3D(Vector3 center, float radius, Vector3 rotationAxis, float rotationAngle, Color color); - // Draw a color-filled triangle (vertex in counter-clockwise order!) + /// Draw a color-filled triangle (vertex in counter-clockwise order!) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawTriangle3D(Vector3 v1, Vector3 v2, Vector3 v3, Color color); - // Draw a triangle strip defined by points + /// Draw a triangle strip defined by points [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawTriangleStrip3D(Vector3[] points, int pointsCount, Color color); - // Draw cube + /// Draw cube [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawCube(Vector3 position, float width, float height, float length, Color color); - // Draw cube (Vector version) + /// Draw cube (Vector version) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawCubeV(Vector3 position, Vector3 size, Color color); - // Draw cube wires + /// Draw cube wires [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawCubeWires(Vector3 position, float width, float height, float length, Color color); - // Draw cube wires (Vector version) + /// Draw cube wires (Vector version) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawCubeWiresV(Vector3 position, Vector3 size, Color color); - // Draw cube textured + /// Draw cube textured [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawCubeTexture(Texture2D texture, Vector3 position, float width, float height, float length, Color color); - // Draw sphere + /// Draw sphere [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawSphere(Vector3 centerPos, float radius, Color color); - // Draw sphere with extended parameters + /// Draw sphere with extended parameters [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawSphereEx(Vector3 centerPos, float radius, int rings, int slices, Color color); - // Draw sphere wires + /// Draw sphere wires [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawSphereWires(Vector3 centerPos, float radius, int rings, int slices, Color color); - // Draw a cylinder/cone + /// Draw a cylinder/cone [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawCylinder(Vector3 position, float radiusTop, float radiusBottom, float height, int slices, Color color); - // Draw a cylinder/cone wires + /// Draw a cylinder/cone wires [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawCylinderWires(Vector3 position, float radiusTop, float radiusBottom, float height, int slices, Color color); - // Draw a plane XZ + /// Draw a plane XZ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawPlane(Vector3 centerPos, Vector2 size, Color color); - // Draw a ray line + /// Draw a ray line [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawRay(Ray ray, Color color); - // Draw a grid (centered at (0, 0, 0)) + /// Draw a grid (centered at (0, 0, 0)) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawGrid(int slices, float spacing); @@ -2444,47 +2450,47 @@ namespace Raylib_cs // Model loading/unloading functions - // Load model from files (meshes and materials) + /// Load model from files (meshes and materials) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Model LoadModel(string fileName); - // Load model from generated mesh (default material) + /// Load model from generated mesh (default material) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Model LoadModelFromMesh(Mesh mesh); - // Unload model from memory (RAM and/or VRAM) + /// Unload model from memory (RAM and/or VRAM) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadModel(Model model); - // Unload model (but not meshes) from memory (RAM and/or VRAM) + /// Unload model (but not meshes) from memory (RAM and/or VRAM) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadModelKeepMeshes(Model model); // Mesh loading/unloading functions - // Upload vertex data into GPU and provided VAO/VBO ids + /// Upload vertex data into GPU and provided VAO/VBO ids [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UploadMesh(ref Mesh mesh, bool dynamic); - // Update mesh vertex data in GPU for a specific buffer index - // data refers to a void * + /// Update mesh vertex data in GPU for a specific buffer index + /// data refers to a void * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UpdateMeshBuffer(Mesh mesh, int index, IntPtr data, int dataSize, int offset); - // Draw a 3d mesh with material and transform + /// Draw a 3d mesh with material and transform [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawMesh(Mesh mesh, Material material, Matrix4x4 transform); - // Draw multiple mesh instances with material and different transforms + /// Draw multiple mesh instances with material and different transforms [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawMeshInstanced(Mesh mesh, Material material, Matrix4x4[] transforms, int instances); - // Unload mesh from memory (RAM and/or VRAM) + /// Unload mesh from memory (RAM and/or VRAM) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadMesh(ref Mesh mesh); - // Export mesh data to file, returns true on success + /// Export mesh data to file, returns true on success [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool ExportMesh(Mesh mesh, string fileName); @@ -2492,48 +2498,48 @@ namespace Raylib_cs // Material loading/unloading functions - // Load materials from model file - // IntPtr refers to Material * + /// Load materials from model file + /// IntPtr refers to Material * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern IntPtr LoadMaterials(string fileName, ref int materialCount); - // Load default material (Supports: DIFFUSE, SPECULAR, NORMAL maps) + /// Load default material (Supports: DIFFUSE, SPECULAR, NORMAL maps) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Material LoadMaterialDefault(); - // Unload material from GPU memory (VRAM) + /// Unload material from GPU memory (VRAM) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadMaterial(Material material); - // Set texture for a material map type (MAP_DIFFUSE, MAP_SPECULAR...) + /// Set texture for a material map type (MAP_DIFFUSE, MAP_SPECULAR...) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetMaterialTexture(ref Material material, int mapType, Texture2D texture); - // Set material for a mesh + /// Set material for a mesh [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetModelMeshMaterial(ref Model model, int meshId, int materialId); // Model animations loading/unloading functions - // Load model animations from file - // IntPtr refers to ModelAnimation * + /// Load model animations from file + /// IntPtr refers to ModelAnimation * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern IntPtr LoadModelAnimations(string fileName, ref int animsCount); - // Update model animation pose + /// Update model animation pose [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UpdateModelAnimation(Model model, ModelAnimation anim, int frame); - // Unload animation data + /// Unload animation data [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadModelAnimation(ModelAnimation anim); - // Unload animation array data + /// Unload animation array data [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadModelAnimations(ModelAnimation[] animations, int count); - // Check model animation skeleton match + /// Check model animation skeleton match [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool IsModelAnimationValid(Model model, ModelAnimation anim); @@ -2541,134 +2547,134 @@ namespace Raylib_cs // Mesh generation functions - // Generate polygonal mesh + /// Generate polygonal mesh [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Mesh GenMeshPoly(int sides, float radius); - // Generate plane mesh (with subdivisions) + /// Generate plane mesh (with subdivisions) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Mesh GenMeshPlane(float width, float length, int resX, int resZ); - // Generate cuboid mesh + /// Generate cuboid mesh [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Mesh GenMeshCube(float width, float height, float length); - // Generate sphere mesh (standard sphere) + /// Generate sphere mesh (standard sphere) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Mesh GenMeshSphere(float radius, int rings, int slices); - // Generate half-sphere mesh (no bottom cap) + /// Generate half-sphere mesh (no bottom cap) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Mesh GenMeshHemiSphere(float radius, int rings, int slices); - // Generate cylinder mesh + /// Generate cylinder mesh [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Mesh GenMeshCylinder(float radius, float height, int slices); - // Generate torus mesh + /// Generate torus mesh [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Mesh GenMeshTorus(float radius, float size, int radSeg, int sides); - // Generate trefoil knot mesh + /// Generate trefoil knot mesh [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Mesh GenMeshKnot(float radius, float size, int radSeg, int sides); - // Generate heightmap mesh from image data + /// Generate heightmap mesh from image data [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Mesh GenMeshHeightmap(Image heightmap, Vector3 size); - // Generate cubes-based map mesh from image data + /// Generate cubes-based map mesh from image data [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Mesh GenMeshCubicmap(Image cubicmap, Vector3 cubeSize); // Mesh manipulation functions - // Compute mesh bounding box limits + /// Compute mesh bounding box limits [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern BoundingBox MeshBoundingBox(Mesh mesh); - // Compute mesh tangents + /// Compute mesh tangents [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void MeshTangents(ref Mesh mesh); - // Compute mesh binormals + /// Compute mesh binormals [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void MeshBinormals(ref Mesh mesh); // Model drawing functions - // Draw a model (with texture if set) + /// Draw a model (with texture if set) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawModel(Model model, Vector3 position, float scale, Color tint); - // Draw a model with extended parameters + /// Draw a model with extended parameters [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawModelEx(Model model, Vector3 position, Vector3 rotationAxis, float rotationAngle, Vector3 scale, Color tint); - // Draw a model wires (with texture if set) + /// Draw a model wires (with texture if set) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawModelWires(Model model, Vector3 position, float scale, Color tint); - // Draw a model wires (with texture if set) with extended parameters + /// Draw a model wires (with texture if set) with extended parameters [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawModelWiresEx(Model model, Vector3 position, Vector3 rotationAxis, float rotationAngle, Vector3 scale, Color tint); - // Draw bounding box (wires) + /// Draw bounding box (wires) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawBoundingBox(BoundingBox box, Color color); - // Draw a billboard texture + /// Draw a billboard texture [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DrawBillboard(Camera3D camera, Texture2D texture, Vector3 center, float size, Color tint); - // Draw a billboard texture defined by sourceRec + /// 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 + /// Detect collision between two spheres [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool CheckCollisionSpheres(Vector3 centerA, float radiusA, Vector3 centerB, float radiusB); - // Detect collision between two bounding boxes + /// Detect collision between two bounding boxes [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool CheckCollisionBoxes(BoundingBox box1, BoundingBox box2); - // Detect collision between box and sphere + /// Detect collision between box and sphere [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool CheckCollisionBoxSphere(BoundingBox box, Vector3 centerSphere, float radiusSphere); - // Detect collision between ray and sphere + /// Detect collision between ray and sphere [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool CheckCollisionRaySphere(Ray ray, Vector3 spherePosition, float sphereRadius); - // Detect collision between ray and sphere, returns collision point + /// Detect collision between ray and sphere, returns collision point [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool CheckCollisionRaySphereEx(Ray ray, Vector3 spherePosition, float sphereRadius, ref Vector3 collisionPoint); - // Detect collision between ray and box + /// Detect collision between ray and box [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool CheckCollisionRayBox(Ray ray, BoundingBox box); - // Get collision info between ray and model + /// Get collision info between ray and model [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern RayHitInfo GetCollisionRayModel(Ray ray, Model model); - // Get collision info between ray and triangle + /// Get collision info between ray and triangle [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern RayHitInfo GetCollisionRayTriangle(Ray ray, Vector3 p1, Vector3 p2, Vector3 p3); - // Get collision info between ray and ground plane (Y-normal plane) + /// 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); @@ -2679,236 +2685,236 @@ namespace Raylib_cs // Audio device management functions - // Initialize audio device and context + /// Initialize audio device and context [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void InitAudioDevice(); - // Close the audio device and context + /// Close the audio device and context [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void CloseAudioDevice(); - // Check if audio device has been initialized successfully + /// Check if audio device has been initialized successfully [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool IsAudioDeviceReady(); - // Set master volume (listener) + /// Set master volume (listener) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetMasterVolume(float volume); // Wave/Sound loading/unloading functions - // Load wave data from file + /// Load wave data from file [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Wave LoadWave(string fileName); - // Load wave from memory buffer, fileType refers to extension: i.e. "wav" - // fileData refers to a const unsigned char * + /// Load wave from memory buffer, fileType refers to extension: i.e. "wav" + /// fileData refers to a const unsigned char * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Wave LoadWaveFromMemory(string fileType, IntPtr fileData, int dataSize); - // Load sound from file + /// Load sound from file [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Sound LoadSound(string fileName); - // Load sound from wave data + /// Load sound from wave data [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Sound LoadSoundFromWave(Wave wave); - // Update sound buffer with new data - // data refers to a const void * + /// Update sound buffer with new data + /// data refers to a const void * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UpdateSound(Sound sound, IntPtr data, int samplesCount); - // Unload wave data + /// Unload wave data [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadWave(Wave wave); - // Unload sound + /// Unload sound [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadSound(Sound sound); - // Export wave data to file + /// Export wave data to file [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ExportWave(Wave wave, string fileName); - // Export wave sample data to code (.h) + /// Export wave sample data to code (.h) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ExportWaveAsCode(Wave wave, string fileName); // Wave/Sound management functions - // Play a sound + /// Play a sound [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void PlaySound(Sound sound); - // Stop playing a sound + /// Stop playing a sound [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void StopSound(Sound sound); - // Pause a sound + /// Pause a sound [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void PauseSound(Sound sound); - // Resume a paused sound + /// Resume a paused sound [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ResumeSound(Sound sound); - // Play a sound (using multichannel buffer pool) + /// Play a sound (using multichannel buffer pool) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void PlaySoundMulti(Sound sound); - // Stop any sound playing (using multichannel buffer pool) + /// Stop any sound playing (using multichannel buffer pool) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void StopSoundMulti(); - // Get number of sounds playing in the multichannel + /// Get number of sounds playing in the multichannel [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int GetSoundsPlaying(); - // Check if a sound is currently playing + /// Check if a sound is currently playing [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool IsSoundPlaying(Sound sound); - // Set volume for a sound (1.0 is max level) + /// Set volume for a sound (1.0 is max level) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetSoundVolume(Sound sound, float volume); - // Set pitch for a sound (1.0 is base level) + /// Set pitch for a sound (1.0 is base level) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetSoundPitch(Sound sound, float pitch); - // Convert wave data to desired format + /// Convert wave data to desired format [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void WaveFormat(ref Wave wave, int sampleRate, int sampleSize, int channels); - // Copy a wave to a new wave + /// Copy a wave to a new wave [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Wave WaveCopy(Wave wave); - // Crop a wave to defined samples range + /// Crop a wave to defined samples range [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void WaveCrop(ref Wave wave, int initSample, int finalSample); - // Get samples data from wave as a floats array - // IntPtr refers to float * + /// Get samples data from wave as a floats array + /// IntPtr refers to float * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern IntPtr LoadWaveSamples(Wave wave); - // Unload samples data loaded with LoadWaveSamples() - // samples refers to float * + /// Unload samples data loaded with LoadWaveSamples() + /// samples refers to float * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadWaveSamples(IntPtr samples); // Music management functions - // Load music stream from file + /// Load music stream from file [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Music LoadMusicStream(string fileName); - // Load music stream from data + /// Load music stream from data [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Music LoadMusicStreamFromMemory(string fileType, IntPtr data, int dataSize); - // Unload music stream + /// Unload music stream [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UnloadMusicStream(Music music); - // Start music playing + /// Start music playing [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void PlayMusicStream(Music music); - // Updates buffers for music streaming + /// Updates buffers for music streaming [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UpdateMusicStream(Music music); - // Stop music playing + /// Stop music playing [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void StopMusicStream(Music music); - // Pause music playing + /// Pause music playing [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void PauseMusicStream(Music music); - // Resume playing paused music + /// Resume playing paused music [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ResumeMusicStream(Music music); - // Check if music is playing + /// Check if music is playing [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool IsMusicPlaying(Music music); - // Set volume for music (1.0 is max level) + /// Set volume for music (1.0 is max level) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetMusicVolume(Music music, float volume); - // Set pitch for a music (1.0 is base level) + /// Set pitch for a music (1.0 is base level) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetMusicPitch(Music music, float pitch); - // Get music time length (in seconds) + /// Get music time length (in seconds) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern float GetMusicTimeLength(Music music); - // Get current music time played (in seconds) + /// Get current music time played (in seconds) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern float GetMusicTimePlayed(Music music); // AudioStream management functions - // Init audio stream (to stream raw audio pcm data) + /// Init audio stream (to stream raw audio pcm data) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern AudioStream InitAudioStream(uint sampleRate, uint sampleSize, uint channels); - // Update audio stream buffers with data - // data refers to a const void * + /// Update audio stream buffers with data + /// data refers to a const void * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void UpdateAudioStream(AudioStream stream, IntPtr data, int samplesCount); - // Close audio stream and free memory + /// Close audio stream and free memory [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void CloseAudioStream(AudioStream stream); - // Check if any audio stream buffers requires refill + /// Check if any audio stream buffers requires refill [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool IsAudioStreamProcessed(AudioStream stream); - // Play audio stream + /// Play audio stream [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void PlayAudioStream(AudioStream stream); - // Pause audio stream + /// Pause audio stream [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void PauseAudioStream(AudioStream stream); - // Resume audio stream + /// Resume audio stream [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void ResumeAudioStream(AudioStream stream); - // Check if audio stream is playing + /// Check if audio stream is playing [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool IsAudioStreamPlaying(AudioStream stream); - // Stop audio stream + /// 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) + /// 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) + /// Set pitch for audio stream (1.0 is base level) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetAudioStreamPitch(AudioStream stream, float pitch); - // Default size for new audio streams + /// Default size for new audio streams [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetAudioStreamBufferSizeDefault(int size); } diff --git a/Raylib-cs/Rlgl.cs b/Raylib-cs/Rlgl.cs index 58c2e37..f0bb0d8 100644 --- a/Raylib-cs/Rlgl.cs +++ b/Raylib-cs/Rlgl.cs @@ -5,7 +5,7 @@ using System.Security; namespace Raylib_cs { - // RenderBatch type + /// RenderBatch type [StructLayout(LayoutKind.Sequential)] public struct RenderBatch { @@ -103,35 +103,35 @@ namespace Raylib_cs // Functions Declaration - Matrix operations // ------------------------------------------------------------------------------------ - // Choose the current matrix to be transformed + /// Choose the current matrix to be transformed [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlMatrixMode(int mode); - // Push the current matrix to stack + /// Push the current matrix to stack [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlPushMatrix(); - // Pop lattest inserted matrix from stack + /// Pop lattest inserted matrix from stack [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlPopMatrix(); - // Reset current matrix to identity matrix + /// Reset current matrix to identity matrix [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlLoadIdentity(); - // Multiply the current matrix by a translation matrix + /// Multiply the current matrix by a translation matrix [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlTranslatef(float x, float y, float z); - // Multiply the current matrix by a rotation matrix + /// Multiply the current matrix by a rotation matrix [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlRotatef(float angleDeg, float x, float y, float z); - // Multiply the current matrix by a scaling matrix + /// Multiply the current matrix by a scaling matrix [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlScalef(float x, float y, float z); - // Multiply the current matrix by another matrix + /// Multiply the current matrix by another matrix [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlMultMatrixf(ref float[] matf); @@ -141,7 +141,7 @@ namespace Raylib_cs [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlOrtho(double left, double right, double bottom, double top, double znear, double zfar); - // Set the viewport area + /// Set the viewport area [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlViewport(int x, int y, int width, int height); @@ -150,43 +150,43 @@ namespace Raylib_cs // Functions Declaration - Vertex level operations // ------------------------------------------------------------------------------------ - // Initialize drawing mode (how to organize vertex) + /// Initialize drawing mode (how to organize vertex) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlBegin(int mode); - // Finish vertex providing + /// Finish vertex providing [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlEnd(); - // Define one vertex (position) - 2 int + /// Define one vertex (position) - 2 int [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlVertex2i(int x, int y); - // Define one vertex (position) - 2 float + /// Define one vertex (position) - 2 float [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlVertex2f(float x, float y); - // Define one vertex (position) - 3 float + /// Define one vertex (position) - 3 float [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlVertex3f(float x, float y, float z); - // Define one vertex (texture coordinate) - 2 float + /// Define one vertex (texture coordinate) - 2 float [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlTexCoord2f(float x, float y); - // Define one vertex (normal) - 3 float + /// Define one vertex (normal) - 3 float [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlNormal3f(float x, float y, float z); - // Define one vertex (color) - 4 byte + /// Define one vertex (color) - 4 byte [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlColor4ub(byte r, byte g, byte b, byte a); - // Define one vertex (color) - 3 float + /// Define one vertex (color) - 3 float [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlColor3f(float x, float y, float z); - // Define one vertex (color) - 4 float + /// Define one vertex (color) - 4 float [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlColor4f(float x, float y, float z, float w); @@ -196,183 +196,183 @@ namespace Raylib_cs // NOTE: This functions are used to completely abstract raylib code from OpenGL layer // ------------------------------------------------------------------------------------ - // Vertex buffers state + /// Vertex buffers state - // Enable vertex array (VAO, if supported) + /// Enable vertex array (VAO, if supported) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool rlEnableVertexArray(uint vaoId); - // Disable vertex array (VAO, if supported) + /// Disable vertex array (VAO, if supported) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlDisableVertexArray(); - // Enable vertex buffer (VBO) + /// Enable vertex buffer (VBO) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlEnableVertexBuffer(uint id); - // Disable vertex buffer (VBO) + /// Disable vertex buffer (VBO) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlDisableVertexBuffer(); - // Enable vertex buffer element (VBO element) + /// Enable vertex buffer element (VBO element) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlEnableVertexBufferElement(uint id); - // Disable vertex buffer element (VBO element) + /// Disable vertex buffer element (VBO element) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlDisableVertexBufferElement(); - // Enable vertex attribute index + /// Enable vertex attribute index [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlEnableVertexAttribute(uint index); - // Disable vertex attribute index + /// Disable vertex attribute index [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlDisableVertexAttribute(uint index); // Textures state - // Select and active a texture slot + /// Select and active a texture slot [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlActiveTextureSlot(int slot); - // Enable texture + /// Enable texture [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlEnableTexture(uint id); - // Disable texture + /// Disable texture [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlDisableTexture(); - // Enable texture cubemap + /// Enable texture cubemap [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlEnableTextureCubemap(uint id); - // Disable texture cubemap + /// Disable texture cubemap [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlDisableTextureCubemap(); - // Set texture parameters (filter, wrap) + /// Set texture parameters (filter, wrap) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlTextureParameters(uint id, int param, int value); // Shader state - // Enable shader program + /// Enable shader program [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlEnableShader(uint id); - // Disable shader program + /// Disable shader program [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlDisableShader(); // Framebuffer state - // Enable render texture (fbo) + /// Enable render texture (fbo) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlEnableFramebuffer(uint id); - // Disable render texture (fbo), return to default framebuffer + /// Disable render texture (fbo), return to default framebuffer [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlDisableFramebuffer(); // General render state - // Enable depth test + /// Enable depth test [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlEnableDepthTest(); - // Disable depth test + /// Disable depth test [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlDisableDepthTest(); - // Enable depth write + /// Enable depth write [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlEnableDepthMask(); - // Disable depth write + /// Disable depth write [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlDisableDepthMask(); - // Enable backface culling + /// Enable backface culling [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlEnableBackfaceCulling(); - // Disable backface culling + /// Disable backface culling [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlDisableBackfaceCulling(); - // Enable scissor test + /// Enable scissor test [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlEnableScissorTest(); - // Disable scissor test + /// Disable scissor test [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlDisableScissorTest(); - // Scissor test + /// Scissor test [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlScissor(int x, int y, int width, int height); - // Enable wire mode + /// Enable wire mode [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlEnableWireMode(); - // Disable wire mode + /// Disable wire mode [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlDisableWireMode(); - // Set the line drawing width + /// Set the line drawing width [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlSetLineWidth(float width); - // Get the line drawing width + /// Get the line drawing width [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern float rlGetLineWidth(); - // Enable line aliasing + /// Enable line aliasing [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlEnableSmoothLines(); - // Disable line aliasing + /// Disable line aliasing [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlDisableSmoothLines(); - // Enable stereo rendering + /// Enable stereo rendering [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlEnableStereoRender(); - // Disable stereo rendering + /// Disable stereo rendering [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlDisableStereoRender(); - // Check if stereo render is enabled + /// Check if stereo render is enabled [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool rlIsStereoRenderEnabled(); - // Clear color buffer with color + /// Clear color buffer with color [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlClearColor(byte r, byte g, byte b, byte a); - // Clear used screen buffers (color and depth) + /// Clear used screen buffers (color and depth) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlClearScreenBuffers(); - // Check and log OpenGL error codes + /// Check and log OpenGL error codes [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlCheckErrors(); - // Set blending mode + /// Set blending mode [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlSetBlendMode(int mode); - // Set blending mode factor and equation (using OpenGL factors) + /// Set blending mode factor and equation (using OpenGL factors) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlSetBlendModeFactors(int glSrcFactor, int glDstFactor, int glEquation); @@ -381,87 +381,87 @@ namespace Raylib_cs // Functions Declaration - rlgl functionality // ------------------------------------------------------------------------------------ - // Initialize rlgl (buffers, shaders, textures, states) + /// Initialize rlgl (buffers, shaders, textures, states) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlglInit(int width, int height); - // De-inititialize rlgl (buffers, shaders, textures) + /// De-inititialize rlgl (buffers, shaders, textures) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlglClose(); - // Load OpenGL extensions - // loader refers to a void * + /// Load OpenGL extensions + /// loader refers to a void * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlLoadExtensions(IntPtr loader); - // Returns current OpenGL version + /// Returns current OpenGL version [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern GlVersion rlGetVersion(); - // Get default framebuffer width + /// Get default framebuffer width [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int rlGetFramebufferWidth(); - // Get default framebuffer height + /// Get default framebuffer height [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int rlGetFramebufferHeight(); - // Get default shader + /// Get default shader [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Shader rlGetShaderDefault(); - // Get default texture + /// Get default texture [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Texture2D rlGetTextureDefault(); // Render batch management - // Load a render batch system + /// Load a render batch system [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern RenderBatch rlLoadRenderBatch(int numBuffers, int bufferElements); - // Unload render batch system + /// Unload render batch system [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlUnloadRenderBatch(RenderBatch batch); - // Draw render batch data (Update->Draw->Reset) + /// Draw render batch data (Update->Draw->Reset) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlDrawRenderBatch(ref RenderBatch batch); - // Set the active render batch for rlgl (NULL for default internal) + /// Set the active render batch for rlgl (NULL for default internal) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlSetRenderBatchActive(ref RenderBatch batch); - // Update and draw internal render batch + /// Update and draw internal render batch [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlDrawRenderBatchActive(); - // Check internal buffer overflow for a given number of vertex + /// Check internal buffer overflow for a given number of vertex [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool rlCheckRenderBatchLimit(int vCount); - // Set current texture for render batch and check buffers limits + /// Set current texture for render batch and check buffers limits [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlSetTexture(uint id); // Vertex buffers management - // Load vertex array (vao) if supported + /// Load vertex array (vao) if supported [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern uint rlLoadVertexArray(); - // Load a vertex buffer attribute + /// Load a vertex buffer attribute [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern uint rlLoadVertexBuffer(IntPtr buffer, int size, bool dynamic); - // Load a new attributes element buffer + /// Load a new attributes element buffer [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern uint rlLoadVertexBufferElement(IntPtr buffer, int size, bool dynamic); - // Update GPU buffer with new data + /// Update GPU buffer with new data [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlUpdateVertexBuffer(int bufferId, IntPtr data, int dataSize, int offset); @@ -477,7 +477,7 @@ namespace Raylib_cs [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlSetVertexAttributeDivisor(uint index, int divisor); - // Set vertex attribute default value + /// Set vertex attribute default value [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlSetVertexAttributeDefault(int locIndex, IntPtr value, int attribType, int count); @@ -496,64 +496,64 @@ namespace Raylib_cs // Textures data management - // Load texture in GPU - // data refers to a void * + /// Load texture in GPU + /// data refers to a void * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern uint rlLoadTexture(IntPtr data, int width, int height, PixelFormat format, int mipmapCount); - // Load depth texture/renderbuffer (to be attached to fbo) + /// Load depth texture/renderbuffer (to be attached to fbo) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern uint rlLoadTextureDepth(int width, int height, bool useRenderBuffer); - // Load texture cubemap - // data refers to a void * + /// Load texture cubemap + /// data refers to a void * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern uint rlLoadTextureCubemap(IntPtr data, int size, PixelFormat format); - // Update GPU texture with new data - // data refers to a const void * + /// Update GPU texture with new data + /// data refers to a const void * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlUpdateTexture(uint id, int width, int height, PixelFormat format, IntPtr data); - // Get OpenGL internal formats + /// Get OpenGL internal formats [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlGetGlTextureFormats(PixelFormat format, ref uint glInternalFormat, ref uint glFormat, ref uint glType); - // Unload texture from GPU memory + /// Unload texture from GPU memory [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlUnloadTexture(uint id); - // Generate mipmap data for selected texture + /// Generate mipmap data for selected texture [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlGenerateMipmaps(ref Texture2D texture); - // Read texture pixel data - // IntPtr refers to a void * + /// Read texture pixel data + /// IntPtr refers to a void * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern IntPtr rlReadTexturePixels(Texture2D texture); - // Read screen pixel data (color buffer) - // IntPtr refers to a unsigned char * + /// Read screen pixel data (color buffer) + /// IntPtr refers to a unsigned char * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern IntPtr rlReadScreenPixels(int width, int height); // Framebuffer management (fbo) - // Load an empty framebuffer + /// Load an empty framebuffer [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern uint rlLoadFramebuffer(int width, int height); - // Attach texture/renderbuffer to a framebuffer + /// Attach texture/renderbuffer to a framebuffer [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlFramebufferAttach(uint fboId, uint texId, FramebufferAttachType attachType, FramebufferAttachTextureType texType, int mipLevel); - // Verify framebuffer is complete + /// Verify framebuffer is complete [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool rlFramebufferComplete(uint id); - // Delete framebuffer from GPU + /// Delete framebuffer from GPU [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return: MarshalAs(UnmanagedType.I1)] public static extern bool rlUnloadFramebuffer(uint id); @@ -561,93 +561,93 @@ namespace Raylib_cs // Shaders management - // Load shader from code strings + /// Load shader from code strings [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern uint rlLoadShaderCode(string vsCode, string fsCode); - // Compile custom shader and return shader id (type: GL_VERTEX_SHADER, GL_FRAGMENT_SHADER) + /// Compile custom shader and return shader id (type: GL_VERTEX_SHADER, GL_FRAGMENT_SHADER) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern uint rlCompileShader(string shaderCode, int type); - // Load custom shader program + /// Load custom shader program [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern uint rlLoadShaderProgram(uint vShaderId, uint fShaderId); - // Unload shader program + /// Unload shader program [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlUnloadShaderProgram(uint id); - // Get shader location uniform + /// Get shader location uniform [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int rlGetLocationUniform(uint shaderId, string uniformName); - // Get shader location attribute + /// Get shader location attribute [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int rlGetLocationAttrib(uint shaderId, string attribName); - // Set shader value uniform + /// Set shader value uniform [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlSetUniform(int locIndex, IntPtr value, int uniformType, int count); - // Set shader value matrix + /// Set shader value matrix [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlSetUniformMatrix(int locIndex, Matrix4x4 mat); - // Set shader value sampler + /// Set shader value sampler [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlSetUniformSampler(int locIndex, uint textureId); - // Set shader currently active + /// Set shader currently active [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlSetShader(Shader shader); // Matrix state management - // Get internal modelview matrix + /// Get internal modelview matrix [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Matrix4x4 rlGetMatrixModelView(); - // Get internal projection matrix + /// Get internal projection matrix [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Matrix4x4 rlGetMatrixProjection(); - // Get internal accumulated transform matrix + /// Get internal accumulated transform matrix [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Matrix4x4 rlGetMatrixTramsform(); - // Get internal projection matrix for stereo render (selected eye) + /// Get internal projection matrix for stereo render (selected eye) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Matrix4x4 rlGetMatrixProjectionStereo(int eye); - // Get internal view offset matrix for stereo render (selected eye) + /// Get internal view offset matrix for stereo render (selected eye) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Matrix4x4 rlGetMatrixViewOffsetStereo(int eye); - // Set a custom projection matrix (replaces internal projection matrix) + /// Set a custom projection matrix (replaces internal projection matrix) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlSetMatrixProjection(Matrix4x4 view); - // Set a custom modelview matrix (replaces internal modelview matrix) + /// Set a custom modelview matrix (replaces internal modelview matrix) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlSetMatrixModelView(Matrix4x4 proj); - // Set eyes projection matrices for stereo rendering + /// Set eyes projection matrices for stereo rendering [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlSetMatrixProjectionStereo(Matrix4x4 left, Matrix4x4 right); - // Set eyes view offsets matrices for stereo rendering + /// Set eyes view offsets matrices for stereo rendering [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlSetMatrixViewOffsetStereo(Matrix4x4 left, Matrix4x4 right); // Quick and dirty cube/quad buffers load->draw->unload - // Load and draw a cube + /// Load and draw a cube [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlLoadDrawCube(); - // Load and draw a quad + /// Load and draw a quad [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void rlLoadDrawQuad(); } From 3c2f2b406488aef496c9e690915dd3ebb2ffd2c7 Mon Sep 17 00:00:00 2001 From: ChrisDill Date: Tue, 11 May 2021 08:18:53 +0100 Subject: [PATCH 4/5] Fix enum naming - Add missing prefixes to enums to match raylib. - Add aliases for a few enum types --- Raylib-cs/Raylib.cs | 160 +++++++++++++++++++++++--------------------- 1 file changed, 83 insertions(+), 77 deletions(-) diff --git a/Raylib-cs/Raylib.cs b/Raylib-cs/Raylib.cs index 6a9ce4a..d807a15 100644 --- a/Raylib-cs/Raylib.cs +++ b/Raylib-cs/Raylib.cs @@ -640,88 +640,94 @@ namespace Raylib_cs /// Material map index public enum MaterialMapIndex { - MAP_ALBEDO = 0, // MAP_DIFFUSE - MAP_METALNESS = 1, // MAP_SPECULAR - MAP_NORMAL = 2, - MAP_ROUGHNESS = 3, - MAP_OCCLUSION, - MAP_EMISSION, - MAP_HEIGHT, - MAP_CUBEMAP, // NOTE: Uses GL_TEXTURE_CUBE_MAP - MAP_IRRADIANCE, // NOTE: Uses GL_TEXTURE_CUBE_MAP - MAP_PREFILTER, // NOTE: Uses GL_TEXTURE_CUBE_MAP - MAP_BRDF + MATERIAL_MAP_ALBEDO = 0, // MAP_DIFFUSE + MATERIAL_MAP_METALNESS = 1, // MAP_SPECULAR + MATERIAL_MAP_NORMAL = 2, + MATERIAL_MAP_ROUGHNESS = 3, + MATERIAL_MAP_OCCLUSION, + MATERIAL_MAP_EMISSION, + MATERIAL_MAP_HEIGHT, + MATERIAL_MAP_CUBEMAP, // NOTE: Uses GL_TEXTURE_CUBE_MAP + MATERIAL_MAP_IRRADIANCE, // NOTE: Uses GL_TEXTURE_CUBE_MAP + MATERIAL_MAP_PREFILTER, // NOTE: Uses GL_TEXTURE_CUBE_MAP + MATERIAL_MAP_BRDF, + + MATERIAL_MAP_DIFFUSE = MATERIAL_MAP_ALBEDO, + MATERIAL_MAP_SPECULAR = MATERIAL_MAP_METALNESS, } /// Shader location index public enum ShaderLocationIndex { - LOC_VERTEX_POSITION = 0, - LOC_VERTEX_TEXCOORD01, - LOC_VERTEX_TEXCOORD02, - LOC_VERTEX_NORMAL, - LOC_VERTEX_TANGENT, - LOC_VERTEX_COLOR, - LOC_MATRIX_MVP, - LOC_MATRIX_MODEL, - LOC_MATRIX_VIEW, - LOC_MATRIX_PROJECTION, - LOC_VECTOR_VIEW, - LOC_COLOR_DIFFUSE, - LOC_COLOR_SPECULAR, - LOC_COLOR_AMBIENT, - LOC_MAP_ALBEDO, // LOC_MAP_DIFFUSE - LOC_MAP_METALNESS, // LOC_MAP_SPECULAR - LOC_MAP_NORMAL, - LOC_MAP_ROUGHNESS, - LOC_MAP_OCCLUSION, - LOC_MAP_EMISSION, - LOC_MAP_HEIGHT, - LOC_MAP_CUBEMAP, - LOC_MAP_IRRADIANCE, - LOC_MAP_PREFILTER, - LOC_MAP_BRDF + SHADER_LOC_VERTEX_POSITION = 0, + SHADER_LOC_VERTEX_TEXCOORD01, + SHADER_LOC_VERTEX_TEXCOORD02, + SHADER_LOC_VERTEX_NORMAL, + SHADER_LOC_VERTEX_TANGENT, + SHADER_LOC_VERTEX_COLOR, + SHADER_LOC_MATRIX_MVP, + SHADER_LOC_MATRIX_MODEL, + SHADER_LOC_MATRIX_VIEW, + SHADER_LOC_MATRIX_PROJECTION, + SHADER_LOC_VECTOR_VIEW, + SHADER_LOC_COLOR_DIFFUSE, + SHADER_LOC_COLOR_SPECULAR, + SHADER_LOC_COLOR_AMBIENT, + SHADER_LOC_MAP_ALBEDO, // SHADER_LOC_MAP_DIFFUSE + SHADER_LOC_MAP_METALNESS, // SHADER_LOC_MAP_SPECULAR + SHADER_LOC_MAP_NORMAL, + SHADER_LOC_MAP_ROUGHNESS, + SHADER_LOC_MAP_OCCLUSION, + SHADER_LOC_MAP_EMISSION, + SHADER_LOC_MAP_HEIGHT, + SHADER_LOC_MAP_CUBEMAP, + SHADER_LOC_MAP_IRRADIANCE, + SHADER_LOC_MAP_PREFILTER, + SHADER_LOC_MAP_BRDF, + + SHADER_LOC_MAP_DIFFUSE = SHADER_LOC_MAP_ALBEDO, + SHADER_LOC_MAP_SPECULAR = SHADER_LOC_MAP_METALNESS, } /// Shader uniform data type public enum ShaderUniformDataType { - UNIFORM_FLOAT = 0, - UNIFORM_VEC2, - UNIFORM_VEC3, - UNIFORM_VEC4, - UNIFORM_INT, - UNIFORM_IVEC2, - UNIFORM_IVEC3, - UNIFORM_IVEC4, - UNIFORM_SAMPLER2D + SHADER_UNIFORM_FLOAT = 0, + SHADER_UNIFORM_VEC2, + SHADER_UNIFORM_VEC3, + SHADER_UNIFORM_VEC4, + SHADER_UNIFORM_INT, + SHADER_UNIFORM_IVEC2, + SHADER_UNIFORM_IVEC3, + SHADER_UNIFORM_IVEC4, + SHADER_UNIFORM_SAMPLER2D } /// Pixel formats /// NOTE: Support depends on OpenGL version and platform public enum PixelFormat { - UNCOMPRESSED_GRAYSCALE = 1, // 8 bit per pixel (no alpha) - UNCOMPRESSED_GRAY_ALPHA, // 8*2 bpp (2 channels) - UNCOMPRESSED_R5G6B5, // 16 bpp - UNCOMPRESSED_R8G8B8, // 24 bpp - UNCOMPRESSED_R5G5B5A1, // 16 bpp (1 bit alpha) - UNCOMPRESSED_R4G4B4A4, // 16 bpp (4 bit alpha) - UNCOMPRESSED_R8G8B8A8, // 32 bpp - UNCOMPRESSED_R32, // 32 bpp (1 channel - float) - UNCOMPRESSED_R32G32B32, // 32*3 bpp (3 channels - float) - UNCOMPRESSED_R32G32B32A32, // 32*4 bpp (4 channels - float) - COMPRESSED_DXT1_RGB, // 4 bpp (no alpha) - COMPRESSED_DXT1_RGBA, // 4 bpp (1 bit alpha) - COMPRESSED_DXT3_RGBA, // 8 bpp - COMPRESSED_DXT5_RGBA, // 8 bpp - COMPRESSED_ETC1_RGB, // 4 bpp - COMPRESSED_ETC2_RGB, // 4 bpp - COMPRESSED_ETC2_EAC_RGBA, // 8 bpp - COMPRESSED_PVRT_RGB, // 4 bpp - COMPRESSED_PVRT_RGBA, // 4 bpp - COMPRESSED_ASTC_4x4_RGBA, // 8 bpp - COMPRESSED_ASTC_8x8_RGBA // 2 bpp + PIXELFORMAT_UNCOMPRESSED_GRAYSCALE = 1, // 8 bit per pixel (no alpha) + PIXELFORMAT_UNCOMPRESSED_GRAY_ALPHA, // 8*2 bpp (2 channels) + PIXELFORMAT_UNCOMPRESSED_R5G6B5, // 16 bpp + PIXELFORMAT_UNCOMPRESSED_R8G8B8, // 24 bpp + PIXELFORMAT_UNCOMPRESSED_R5G5B5A1, // 16 bpp (1 bit alpha) + PIXELFORMAT_UNCOMPRESSED_R4G4B4A4, // 16 bpp (4 bit alpha) + PIXELFORMAT_UNCOMPRESSED_R8G8B8A8, // 32 bpp + PIXELFORMAT_UNCOMPRESSED_R32, // 32 bpp (1 channel - float) + PIXELFORMAT_UNCOMPRESSED_R32G32B32, // 32*3 bpp (3 channels - float) + PIXELFORMAT_UNCOMPRESSED_R32G32B32A32, // 32*4 bpp (4 channels - float) + PIXELFORMAT_COMPRESSED_DXT1_RGB, // 4 bpp (no alpha) + PIXELFORMAT_COMPRESSED_DXT1_RGBA, // 4 bpp (1 bit alpha) + PIXELFORMAT_COMPRESSED_DXT3_RGBA, // 8 bpp + PIXELFORMAT_COMPRESSED_DXT5_RGBA, // 8 bpp + PIXELFORMAT_COMPRESSED_ETC1_RGB, // 4 bpp + PIXELFORMAT_COMPRESSED_ETC2_RGB, // 4 bpp + PIXELFORMAT_COMPRESSED_ETC2_EAC_RGBA, // 8 bpp + PIXELFORMAT_COMPRESSED_PVRT_RGB, // 4 bpp + PIXELFORMAT_COMPRESSED_PVRT_RGBA, // 4 bpp + PIXELFORMAT_COMPRESSED_ASTC_4x4_RGBA, // 8 bpp + PIXELFORMAT_COMPRESSED_ASTC_8x8_RGBA // 2 bpp } /// Texture parameters: filter mode @@ -729,21 +735,21 @@ namespace Raylib_cs /// NOTE 2: Filter is accordingly set for minification and magnification public enum TextureFilter { - FILTER_POINT = 0, // No filter, just pixel aproximation - FILTER_BILINEAR, // Linear filtering - FILTER_TRILINEAR, // Trilinear filtering (linear with mipmaps) - FILTER_ANISOTROPIC_4X, // Anisotropic filtering 4x - FILTER_ANISOTROPIC_8X, // Anisotropic filtering 8x - FILTER_ANISOTROPIC_16X, // Anisotropic filtering 16x + TEXTURE_FILTER_POINT = 0, // No filter, just pixel aproximation + TEXTURE_FILTER_BILINEAR, // Linear filtering + TEXTURE_FILTER_TRILINEAR, // Trilinear filtering (linear with mipmaps) + TEXTURE_FILTER_ANISOTROPIC_4X, // Anisotropic filtering 4x + TEXTURE_FILTER_ANISOTROPIC_8X, // Anisotropic filtering 8x + TEXTURE_FILTER_ANISOTROPIC_16X, // Anisotropic filtering 16x } /// Texture parameters: wrap mode public enum TextureWrap { - WRAP_REPEAT = 0, // Repeats texture in tiled mode - WRAP_CLAMP, // Clamps texture to edge pixel in tiled mode - WRAP_MIRROR_REPEAT, // Mirrors and repeats the texture in tiled mode - WRAP_MIRROR_CLAMP // Mirrors and clamps to border the texture in tiled mode + TEXTURE_WRAP_REPEAT = 0, // Repeats texture in tiled mode + TEXTURE_WRAP_CLAMP, // Clamps texture to edge pixel in tiled mode + TEXTURE_WRAP_MIRROR_REPEAT, // Mirrors and repeats the texture in tiled mode + TEXTURE_WRAP_MIRROR_CLAMP // Mirrors and clamps to border the texture in tiled mode } /// Cubemap layouts @@ -773,7 +779,7 @@ namespace Raylib_cs BLEND_MULTIPLIED, // Blend textures multiplying colors BLEND_ADD_COLORS, // Blend textures adding colors (alternative) BLEND_SUBTRACT_COLORS, // Blend textures subtracting colors (alternative) - BLEND_CUSTOM // Belnd textures using custom src/dst factors (use SetBlendModeCustom()) + BLEND_CUSTOM // Belnd textures using custom src/dst factors (use rlSetBlendMode()) } /// Gestures From 207ba0ab1adc62af175e1223ef433a3b93aa5277 Mon Sep 17 00:00:00 2001 From: ChrisDill Date: Wed, 12 May 2021 09:38:02 +0100 Subject: [PATCH 5/5] Review minor project details - Disable warning for missing doc comments for now. - Specify specific version or System.Numerics.Vectors. - Format fixes. --- README.md | 2 +- Raylib-cs/Raylib-cs.csproj | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b38f589..3ca2778 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ Raylib-cs targets netstandard2.1 and supports netcoreapp3.0+ and net5.0. ## Installation - NuGet -This is the prefered method to get started - The package is still new so please report any [issues](https://github.com/ChrisDill/Raylib-cs/issues). +This is the prefered method to get started - The package is still new so please report any [issues](https://github.com/ChrisDill/Raylib-cs/issues). ``` dotnet add package Raylib-cs --version 3.7.0 diff --git a/Raylib-cs/Raylib-cs.csproj b/Raylib-cs/Raylib-cs.csproj index 740ff31..3b6aac1 100644 --- a/Raylib-cs/Raylib-cs.csproj +++ b/Raylib-cs/Raylib-cs.csproj @@ -6,6 +6,7 @@ Raylib_cs true false + $(NoWarn);1591 @@ -32,6 +33,10 @@ + + + + runtimes/