2
0
mirror of https://github.com/raylib-cs/raylib-cs synced 2025-04-05 11:19:39 -04:00

Bindings cleanup

- Replaced tabs with 4 spaces
- Added comments to Raylib.cs
This commit is contained in:
ChrisDill 2018-10-23 11:57:13 +01:00
parent ec4f2f0472
commit 167a41f20d
5 changed files with 898 additions and 818 deletions

View File

@ -558,9 +558,7 @@ namespace Raylib
public IntPtr weightBias;
public IntPtr weightId;
public uint vaoId;
public fixed uint vboId[7];
}
@ -937,6 +935,10 @@ namespace Raylib
#region Raylib-cs Functions
//------------------------------------------------------------------------------------
// Window and Graphics Device Functions (Module: core)
//------------------------------------------------------------------------------------
// Initialize window and OpenGL context
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern IntPtr InitWindow(int width, int height, string title);
@ -1029,6 +1031,7 @@ namespace Raylib
//[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
//public static extern void SetClipboard(string text);
// Cursor-related functions
// Shows cursor
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern void ShowCursor();
@ -1049,6 +1052,7 @@ namespace Raylib
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern void DisableCursor();
// Drawing-related functions
// Set background color (framebuffer clear color)
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern void ClearBackground(Color color);
@ -1085,6 +1089,7 @@ namespace Raylib
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern void EndTextureMode();
// Screen-space-related functions
// Returns a ray trace from mouse position
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern Ray GetMouseRay(Vector2 mousePosition, Camera3D camera);
@ -1097,6 +1102,7 @@ namespace Raylib
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern Matrix GetCameraMatrix(Camera3D camera);
// timing-related functions
// Set target FPS (maximum)
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern void SetTargetFPS(int fps);
@ -1113,6 +1119,7 @@ namespace Raylib
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern double GetTime();
// Color-related functions
// Returns hexadecimal value for a Color
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern int ColorToInt(Color color);
@ -1133,6 +1140,7 @@ namespace Raylib
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern Color Fade(Color color, float alpha);
// Misc. functions
// Activate raylib logo at startup (can be done with flags)
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern void ShowLogo();
@ -1157,6 +1165,7 @@ namespace Raylib
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern int GetRandomValue(int min, int max);
// Files management functions
// Check file extension
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern bool IsFileExtension(string fileName, string ext);
@ -1193,6 +1202,7 @@ namespace Raylib
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern void ClearDroppedFiles();
// Persistent storage management
// Save integer value to storage file (to defined position)
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern void StorageSaveValue(int position, int value);
@ -1201,6 +1211,11 @@ namespace Raylib
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern int StorageLoadValue(int position);
//------------------------------------------------------------------------------------
// Input Handling Functions (Module: core)
//------------------------------------------------------------------------------------
// Input-related functions: keyboard
// Detect if a key has been pressed once
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern bool IsKeyPressed(int key);
@ -1225,6 +1240,7 @@ namespace Raylib
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern void SetExitKey(int key);
// Input-related functions: gamepads
// Detect if a gamepad is available
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern bool IsGamepadAvailable(int gamepad);
@ -1265,6 +1281,7 @@ namespace Raylib
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern float GetGamepadAxisMovement(int gamepad, int axis);
// Input-related functions: mouse
// Detect if a mouse button has been pressed once
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern bool IsMouseButtonPressed(int button);
@ -1305,6 +1322,7 @@ namespace Raylib
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern int GetMouseWheelMove();
// Input-related functions: touch
// Returns touch position X for touch point 0 (relative to screen size)
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern int GetTouchX();
@ -1317,6 +1335,9 @@ namespace Raylib
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern Vector2 GetTouchPosition(int index);
//------------------------------------------------------------------------------------
// Gestures and Touch Handling Functions (Module: gestures)
//------------------------------------------------------------------------------------
// Enable a set of gestures using flags
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern void SetGesturesEnabled(uint gestureFlags);
@ -1353,6 +1374,10 @@ namespace Raylib
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern float GetGesturePinchAngle();
//------------------------------------------------------------------------------------
// Camera System Functions (Module: camera)
//------------------------------------------------------------------------------------
// Set camera mode (multiple camera modes available)
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern void SetCameraMode(Camera3D camera, int mode);
@ -1377,6 +1402,10 @@ namespace Raylib
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern void SetCameraMoveControls(int frontKey, int backKey, int rightKey, int leftKey, int upKey, int downKey);
//------------------------------------------------------------------------------------
// Basic Shapes Drawing Functions (Module: shapes)
//------------------------------------------------------------------------------------
// Draw a pixel
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern void DrawPixel(int posX, int posY, Color color);
@ -1501,6 +1530,10 @@ namespace Raylib
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern bool CheckCollisionPointTriangle(Vector2 point, Vector2 p1, Vector2 p2, Vector2 p3);
//------------------------------------------------------------------------------------
// Texture Loading and Drawing Functions (Module: textures)
//------------------------------------------------------------------------------------
// Load image from file into CPU memory (RAM)
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern Image LoadImage(string fileName);
@ -1565,6 +1598,7 @@ namespace Raylib
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern void UpdateTexture(Texture2D texture, Color[] pixels);
// Image manipulation functions
// Create an image duplicate (useful for transformations)
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern Image ImageCopy(Image image);
@ -1681,6 +1715,7 @@ namespace Raylib
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern void ImageColorReplace(Image image, Color color, Color replace);
// Image generation functions
// Generate image: plain color
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern Image GenImageColor(int width, int height, Color color);
@ -1713,6 +1748,7 @@ namespace Raylib
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern Image GenImageCellular(int width, int height, int tileSize);
// Texture2D configuration functions
// Generate GPU mipmaps for a texture
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern void GenTextureMipmaps(ref Texture2D texture);
@ -1725,6 +1761,7 @@ namespace Raylib
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern void SetTextureWrap(Texture2D texture, int wrapMode);
// Texture2D drawing functions
// Draw a Texture2D
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern void DrawTexture(Texture2D texture, int posX, int posY, Color tint);
@ -1745,6 +1782,11 @@ namespace Raylib
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern void DrawTexturePro(Texture2D texture, Rectangle sourceRec, Rectangle destRec, Vector2 origin, float rotation, Color tint);
//------------------------------------------------------------------------------------
// Font Loading and Text Drawing Functions (Module: text)
//------------------------------------------------------------------------------------
// Font loading/unloading functions
// Get the default Font
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern Font GetFontDefault();
@ -1769,6 +1811,7 @@ namespace Raylib
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern void UnloadFont(Font font);
// Text drawing functions
// Shows current FPS
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern void DrawFPS(int posX, int posY);
@ -1785,6 +1828,7 @@ namespace Raylib
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern int MeasureText(string text, int fontSize);
// Text misc. functions
// Measure string size for Font
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern Vector2 MeasureTextEx(Font font, string text, float fontSize, float spacing);
@ -1805,6 +1849,11 @@ namespace Raylib
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern int GetGlyphIndex(Font font, int character);
//------------------------------------------------------------------------------------
// Basic 3d Shapes Drawing Functions (Module: models)
//------------------------------------------------------------------------------------
// Basic geometric 3D shapes drawing functions
// Draw a line in 3D world space
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern void DrawLine3D(Vector3 startPos, Vector3 endPos, Color color);
@ -1865,6 +1914,11 @@ namespace Raylib
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern void DrawGizmo(Vector3 position);
//------------------------------------------------------------------------------------
// Model 3d Loading and Drawing Functions (Module: models)
//------------------------------------------------------------------------------------
// Model loading/unloading functions
// Load model from files (mesh and material)
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern Model LoadModel(string fileName);
@ -1877,6 +1931,7 @@ namespace Raylib
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern void UnloadModel(Model model);
// Mesh loading/unloading functions
// Load mesh from file
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern Mesh LoadMesh(string fileName);
@ -1889,6 +1944,7 @@ namespace Raylib
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern void ExportMesh(string fileName, Mesh mesh);
// Mesh manipulation functions
// Compute mesh bounding box limits
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern BoundingBox MeshBoundingBox(Mesh mesh);
@ -1901,6 +1957,7 @@ namespace Raylib
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern void MeshBinormals(ref Mesh mesh);
// Mesh generation functions
// Generate plane mesh (with subdivisions)
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern Mesh GenMeshPlane(float width, float length, int resX, int resZ);
@ -1937,6 +1994,7 @@ namespace Raylib
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern Mesh GenMeshCubicmap(Image cubicmap, Vector3 cubeSize);
// Material loading/unloading functions
// Load material from file
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern Material LoadMaterial(string fileName);
@ -1949,6 +2007,7 @@ namespace Raylib
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern void UnloadMaterial(Material material);
// Model drawing functions
// Draw a model (with texture if set)
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern void DrawModel(Model model, Vector3 position, float scale, Color tint);
@ -1977,6 +2036,7 @@ namespace Raylib
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern void DrawBillboardRec(Camera3D camera, Texture2D texture, Rectangle sourceRec, Vector3 center, float size, Color tint);
// Collision detection functions
// Detect collision between two spheres
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern bool CheckCollisionSpheres(Vector3 centerA, float radiusA, Vector3 centerB, float radiusB);
@ -2013,6 +2073,12 @@ namespace Raylib
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern RayHitInfo GetCollisionRayGround(Ray ray, float groundHeight);
//------------------------------------------------------------------------------------
// Shaders System Functions (Module: rlgl)
// NOTE: This functions are useless when using OpenGL 1.1
//------------------------------------------------------------------------------------
// Shader loading/unloading functions
// Load chars array from text file
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern string LoadText(string fileName);
@ -2037,6 +2103,7 @@ namespace Raylib
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern Texture2D GetTextureDefault();
// Shader configuration functions
// Get shader uniform location
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern int GetShaderLocation(Shader shader, string uniformName);
@ -2065,6 +2132,8 @@ namespace Raylib
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern Matrix GetMatrixModelview();
// Texture maps generation (PBR)
// NOTE: Required shaders should be provided
// Generate cubemap texture from HDR texture
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern Texture2D GenTextureCubemap(Shader shader, Texture2D skyHDR, int size);
@ -2081,6 +2150,7 @@ namespace Raylib
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern Texture2D GenTextureBRDF(Shader shader, Texture2D cubemap, int size);
// Shading begin/end functions
// Begin custom shader drawing
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern void BeginShaderMode(Shader shader);
@ -2097,6 +2167,7 @@ namespace Raylib
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern void EndBlendMode();
// VR control functions
// Get VR device information for some standard devices
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern VrDeviceInfo GetVrDeviceInfo(int vrDeviceType);
@ -2133,6 +2204,11 @@ namespace Raylib
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern void EndVrDrawing();
//------------------------------------------------------------------------------------
// Audio Loading and Playing Functions (Module: audio)
//------------------------------------------------------------------------------------
// Audio device management functions
// Initialize audio device and context
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern void InitAudioDevice();
@ -2149,6 +2225,7 @@ namespace Raylib
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern void SetMasterVolume(float volume);
// Wave/Sound loading/unloading functions
// Load wave data from file
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern Wave LoadWave(string fileName);
@ -2177,6 +2254,7 @@ namespace Raylib
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern void UnloadSound(Sound sound);
// Wave/Sound management functions
// Play a sound
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern void PlaySound(Sound sound);
@ -2221,6 +2299,7 @@ namespace Raylib
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern float[] GetWaveData(Wave wave);
// Music management functions
// Load IntPtr stream from file
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern IntPtr LoadMusicStream(string fileName);
@ -2273,6 +2352,7 @@ namespace Raylib
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern float GetMusicTimePlayed(IntPtr music);
// AudioStream management functions
// Init audio stream (to stream raw audio pcm data)
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern AudioStream InitAudioStream(uint sampleRate, uint sampleSize, uint channels);