From fc0527a2effe720a019613cbee232624c89d41df Mon Sep 17 00:00:00 2001 From: ChrisDill Date: Sat, 20 Oct 2018 13:16:58 +0100 Subject: [PATCH] Review and cleanup - General cleanup. - Fixed missing functions from raymath. - Nuget info part of project file. --- .gitignore | 3 + Bindings/Bindings.csproj | 17 +- Bindings/Raylib.cs | 13 +- Bindings/Raymath.cs | 252 ++++++++++++++++++---------- Examples/core/core_basic_window.exe | Bin 4096 -> 0 bytes Examples/core/core_input_keys.exe | Bin 4608 -> 0 bytes Examples/core/core_input_mouse.exe | Bin 4608 -> 0 bytes Examples/core/core_mouse_wheel.exe | Bin 4608 -> 0 bytes Generator/Generator.cs | 15 +- Generator/Program.cs | 95 ++--------- Raylib-cs.nuspec | 21 --- Raylib-cs.sln | 28 ++-- Test/App.config | 6 +- Test/Program.cs | 8 +- Test/RayForms.cs | 102 ----------- Test/Test.csproj | 50 +++++- Test/packages.config | 7 + 17 files changed, 276 insertions(+), 341 deletions(-) delete mode 100644 Examples/core/core_basic_window.exe delete mode 100644 Examples/core/core_input_keys.exe delete mode 100644 Examples/core/core_input_mouse.exe delete mode 100644 Examples/core/core_mouse_wheel.exe delete mode 100644 Raylib-cs.nuspec delete mode 100644 Test/RayForms.cs create mode 100644 Test/packages.config diff --git a/.gitignore b/.gitignore index f8669e7..24a2560 100644 --- a/.gitignore +++ b/.gitignore @@ -16,11 +16,13 @@ *.user *.userosscache *.sln.docstates +*.exe # User-specific files (MonoDevelop/Xamarin Studio) *.userprefs # Build results +[Bb]in/ [Dd]ebugPublic/ [Rr]elease/ [Rr]eleases/ @@ -29,6 +31,7 @@ bld/ [Dd]ebug [Oo]bj/ [Ll]og/ +[Ee]xamples/ # Visual Studio 2015 cache/options directory .vs/ diff --git a/Bindings/Bindings.csproj b/Bindings/Bindings.csproj index 2015e30..d3b612b 100644 --- a/Bindings/Bindings.csproj +++ b/Bindings/Bindings.csproj @@ -3,10 +3,25 @@ netstandard2.0 Bindings + true + Testing C# bindings for raylib, a simple and easy-to-use library to learn videogames programming. + https://github.com/ChrisDill/Raylib-cs/blob/master/LICENSE + https://github.com/ChrisDill/Raylib-cs/blob/master/Logo/raylib-cs.ico + Copyright 2018 + https://github.com/ChrisDill/Raylib-cs + Made for raylib 2.0 + raylib csharp binding opengl gamedev + https://github.com/ChrisDill/Raylib-cs true - + bin\Debug + false + + + + + diff --git a/Bindings/Raylib.cs b/Bindings/Raylib.cs index 34ff856..1389992 100644 --- a/Bindings/Raylib.cs +++ b/Bindings/Raylib.cs @@ -4,7 +4,6 @@ * Original - https://github.com/raysan5/raylib/blob/master/src/raylib.h * **********************************************************************************************/ - using System; using System.Runtime.InteropServices; @@ -431,9 +430,6 @@ namespace Raylib public Texture2D depth; } - // RenderTexture type, same as RenderTexture2D - // typedef RenderTexture2D RenderTexture; - // Font character info [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)] public struct CharInfo @@ -512,6 +508,7 @@ namespace Raylib public int vertexCount; public int triangleCount; + public Span Vertices => new Span(vertices.ToPointer(), vertexCount * 3); public IntPtr vertices; public IntPtr texcoords; public IntPtr texcoords2; @@ -553,9 +550,9 @@ namespace Raylib public Color color; public float value; } + public unsafe struct _MaterialMap_e_FixedBuffer { - public MaterialMap maps0; public MaterialMap maps1; public MaterialMap maps2; @@ -578,17 +575,13 @@ namespace Raylib } } } + // Material type (generic) [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)] public struct Material { - - - public Shader shader; - public _MaterialMap_e_FixedBuffer maps; - public IntPtr param; } diff --git a/Bindings/Raymath.cs b/Bindings/Raymath.cs index d453684..0f4a17d 100644 --- a/Bindings/Raymath.cs +++ b/Bindings/Raymath.cs @@ -24,7 +24,12 @@ namespace Raylib this.y = y; } - // extensions + public Vector2(float value) + { + this.x = value; + this.y = value; + } + public override bool Equals(object obj) { return (obj is Vector2) && Equals((Vector2)obj); @@ -39,36 +44,25 @@ namespace Raylib { return "Vector2(" + x + " " + y + ")"; } - - public static bool operator ==(Vector2 v1, Vector2 v2) + + public static Vector2 Zero { - return (v1.x == v2.x && v1.y == v2.y); + get { return Raylib.Vector2Zero(); } } - public static bool operator !=(Vector2 v1, Vector2 v2) + public static Vector2 One { - return !(v1 == v2); + get { return Raylib.Vector2One(); } } - public static bool operator >(Vector2 v1, Vector2 v2) + public static Vector2 UnitX { - return v1.x > v2.x && v1.y > v2.y; + get { return new Vector2(1, 0); } } - public static bool operator <(Vector2 v1, Vector2 v2) + public static Vector2 UnitY { - return v1.x < v2.x && v1.y < v2.y; - } - - // utility for c functions Vector2Zero() -> Vector2.Zero() etc - public static Vector2 Zero() - { - return Raylib.Vector2Zero(); - } - - public static Vector2 One() - { - return Raylib.Vector2One(); + get { return new Vector2(0, 1); } } public static float Length(Vector2 v) @@ -91,12 +85,12 @@ namespace Raylib return Raylib.Vector2Angle(v1, v2); } - public static Vector2 Scale(Vector2 v, float scale) + public static Vector2 Scale(Vector2 v, float scale) { return Raylib.Vector2Scale(v, scale); } - public static Vector2 Negate(Vector2 v) + public static Vector2 Negate(Vector2 v) { return Raylib.Vector2Negate(v); } @@ -105,30 +99,70 @@ namespace Raylib { return Raylib.Vector2Divide(v, div); } - + public static Vector2 Normalize(Vector2 v) - { + { return Raylib.Vector2Normalize(v); } - // operators - [DllImport(Raylib.nativeLibName, EntryPoint = "Vector2Add")] - public static extern Vector2 operator +(Vector2 v1, Vector2 v3); + #region Public Static Operators - [DllImport(Raylib.nativeLibName, EntryPoint = "Vector2Subtract")] - public static extern Vector2 operator -(Vector2 v1, Vector2 v3); + public static bool operator ==(Vector2 v1, Vector2 v2) + { + return (v1.x == v2.x && v1.y == v2.y); + } - [DllImport(Raylib.nativeLibName, EntryPoint = "Vector2MultiplyV")] - public static extern Vector2 operator *(Vector2 v1, Vector2 v3); + public static bool operator !=(Vector2 v1, Vector2 v2) + { + return !(v1 == v2); + } - [DllImport(Raylib.nativeLibName, EntryPoint = "Vector2Scale")] - public static extern Vector2 operator *(Vector2 v1, float scale); + public static bool operator >(Vector2 v1, Vector2 v2) + { + return v1.x > v2.x && v1.y > v2.y; + } - [DllImport(Raylib.nativeLibName, EntryPoint = "Vector2Divide")] - public static extern Vector2 operator /(Vector2 v1, Vector2 v3); + public static bool operator <(Vector2 v1, Vector2 v2) + { + return v1.x < v2.x && v1.y < v2.y; + } - [DllImport(Raylib.nativeLibName, EntryPoint = "Vector2Negate")] - public static extern Vector2 operator -(Vector2 v1); + public static Vector2 operator +(Vector2 v1, Vector2 v2) + { + return Raylib.Vector2Add(v1, v2); + } + + public static Vector2 operator -(Vector2 v1, Vector2 v2) + { + return Raylib.Vector2Subtract(v1, v2); + } + + public static Vector2 operator *(Vector2 v1, Vector2 v2) + { + return Raylib.Vector2Multiplyv(v1, v2); + } + + public static Vector2 operator *(Vector2 v, float scale) + { + return Raylib.Vector2Scale(v, scale); + } + + public static Vector2 operator /(Vector2 v1, Vector2 v2) + { + return Raylib.Vector2DivideV(v1, v2); + } + + public static Vector2 operator /(Vector2 v1, float div) + { + return Raylib.Vector2Divide(v1, div); + } + + public static Vector2 operator -(Vector2 v1) + { + return Raylib.Vector2Negate(v1); + } + + #endregion } // Vector3 type @@ -145,6 +179,14 @@ namespace Raylib this.z = z; } + public Vector3(float value) + { + this.x = value; + this.y = value; + this.z = value; + } + + // extensions public override bool Equals(object obj) { return (obj is Vector3) && Equals((Vector3)obj); @@ -160,6 +202,33 @@ namespace Raylib return "Vector3(" + x + " " + y + " " + z + ")"; } + public static Vector3 Zero + { + get { return Raylib.Vector3Zero(); } + } + + public static Vector3 One + { + get { return Raylib.Vector3One(); } + } + + public static Vector3 UnitX + { + get { return new Vector3(1, 0, 0); } + } + + public static Vector3 UnitY + { + get { return new Vector3(0, 1, 0); } + } + + public static Vector3 UnitZ + { + get { return new Vector3(0, 0, 1); } + } + + #region Public Static Operators + public static bool operator ==(Vector3 v1, Vector3 v2) { return (v1.x == v2.x && v1.y == v2.y && v1.z == v2.z); @@ -170,65 +239,52 @@ namespace Raylib return !(v1 == v2); } - /*public bool operator >(Vector2 v1, Vector2 v2) + public static bool operator >(Vector3 v1, Vector3 v2) { - return v1.x > v2.x && v1.y > v2.y; + return v1.x > v2.x && v1.y > v2.y && v1.z > v2.z; } - public static bool operator <(Vector2 v1, Vector2 v2) + public static bool operator <(Vector3 v1, Vector3 v2) { - return v1.x < v2.x && v1.y < v2.y; - }*/ + return v1.x < v2.x && v1.y < v2.y && v1.z < v2.z; + } - // utility for c functions Vector3Zero -> Zero etc - [DllImport(Raylib.nativeLibName, EntryPoint = "Vector3Zero")] - public static extern Vector3 Zero(); + public static Vector3 operator +(Vector3 v1, Vector3 v2) + { + return Raylib.Vector3Add(v1, v2); + } - [DllImport(Raylib.nativeLibName, EntryPoint = "Vector3One")] - public static extern Vector3 One(); + public static Vector3 operator -(Vector3 v1, Vector3 v2) + { + return Raylib.Vector3Subtract(v1, v2); + } - [DllImport(Raylib.nativeLibName, EntryPoint = "Vector3Add")] - public static extern Vector3 operator +(Vector3 v1, Vector3 v3); + public static Vector3 operator *(Vector3 v1, Vector3 v2) + { + return Raylib.Vector3MultiplyV(v1, v2); + } - [DllImport(Raylib.nativeLibName, EntryPoint = "Vector3Subtract")] - public static extern Vector3 operator -(Vector3 v1, Vector3 v3); + public static Vector3 operator *(Vector3 v, float scale) + { + return Raylib.Vector3Scale(v, scale); + } - [DllImport(Raylib.nativeLibName, EntryPoint = "Vector3Length")] - public static extern float Length(Vector3 v); + public static Vector3 operator /(Vector3 v1, Vector3 v2) + { + return Raylib.Vector3DivideV(v1, v2); + } - [DllImport(Raylib.nativeLibName, EntryPoint = "Vector3DotProduct")] - public static extern float DotProduct(Vector3 v1, Vector3 v3); + public static Vector3 operator /(Vector3 v1, float div) + { + return Raylib.Vector3Divide(v1, div); + } - [DllImport(Raylib.nativeLibName, EntryPoint = "Vector3Distance")] - public static extern float Distance(Vector3 v1, Vector3 v3); + public static Vector3 operator -(Vector3 v1) + { + return Raylib.Vector3Negate(v1); + } - [DllImport(Raylib.nativeLibName, EntryPoint = "Vector3Angle")] - public static extern float Angle(Vector3 v1, Vector3 v3); - - [DllImport(Raylib.nativeLibName, EntryPoint = "Vector3Scale")] - public static extern Vector3 Scale(Vector3 v, float scale); - - [DllImport(Raylib.nativeLibName, EntryPoint = "Vector3Negate")] - public static extern Vector3 Negate(Vector3 v); - - [DllImport(Raylib.nativeLibName, EntryPoint = "Vector3Divide")] - public static extern Vector3 Divide(Vector3 v, float div); - - [DllImport(Raylib.nativeLibName, EntryPoint = "Vector3Normalize")] - public static extern Vector3 Normalize(Vector3 v); - - // operators - [DllImport(Raylib.nativeLibName, EntryPoint = "Vector3MultiplyV")] - public static extern Vector3 operator *(Vector3 v1, Vector3 v3); - - [DllImport(Raylib.nativeLibName, EntryPoint = "Vector3Multiply")] - public static extern Vector3 operator *(Vector3 v1, float scale); - - [DllImport(Raylib.nativeLibName, EntryPoint = "Vector3Divide")] - public static extern Vector3 operator /(Vector3 v1, Vector3 v3); - - [DllImport(Raylib.nativeLibName, EntryPoint = "Vector3Negate")] - public static extern Vector3 operator -(Vector3 v1); + #endregion } // Vector4 type @@ -247,6 +303,14 @@ namespace Raylib this.w = w; } + public Vector4(float value) + { + this.x = value; + this.y = value; + this.z = value; + this.w = value; + } + public override bool Equals(object obj) { return (obj is Vector4) && Equals((Vector4)obj); @@ -336,9 +400,13 @@ namespace Raylib public static extern float Vector2Angle(Vector2 v1, Vector2 v2); // Scale vector (multiply by value) - [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern Vector2 Vector2Scale(Vector2 v, float scale); + // Multiply vector by a vector + [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] + public static extern Vector2 Vector2Multiplyv(Vector2 v1, Vector2 v2); + // Negate vector [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Vector2 Vector2Negate(Vector2 v); @@ -347,6 +415,10 @@ namespace Raylib [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Vector2 Vector2Divide(Vector2 v, float div); + // Divide vector by a vector + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern Vector2 Vector2DivideV(Vector2 v1, Vector2 v2); + // Normalize provided vector [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Vector2 Vector2Normalize(Vector2 v); @@ -403,6 +475,14 @@ namespace Raylib [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Vector3 Vector3Negate(Vector3 v); + // Divide vector by a float value + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern Vector3 Vector3Divide(Vector3 v, float div); + + // Divide vector by a vector + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern Vector3 Vector3DivideV(Vector3 v1, Vector3 v2); + // Normalize provided vector [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern Vector3 Vector3Normalize(Vector3 v); diff --git a/Examples/core/core_basic_window.exe b/Examples/core/core_basic_window.exe deleted file mode 100644 index 01bad608ae436e53952649ebe48d5f6dc8d0ce6b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4096 zcmeHJO>A355T57!)ODLcM5)S8>DFz*{NyDeL6jgwX0}>T~6`Xn~2P7^?9Jp`+B*YaV$~XJ$#QhPpCl0X5o1K}R zo%wclch)m6T%Zmj>cn^L8qp>6+_IYfJz2wW@2*dJ>7&hG@4jSAf4#f7?1ZAKf{L;{ zVOzc*M4}{xs`?5%^+w(8 z$YLG3woXDm+BVOOWIcj>p$i0KdaX^|kaQD7XG|3;88XL?xmSUQoxYQbR2MB&*9L$4st$I6H~Xbuk!4?TlHtda4}1I(UtM4zEw zW4;h6$FGEJF$&c0qTh3@K;MJM38Fnmj^(G&{{p$r@`M|d&~rnojU(F<1e`>_8^g3c z&L7sKx1qHan5t1BoYoV4&_vly9(5Ys^p>V4={LHI_QI^2a>jR9)gb;-^dl%Yp3jv3 z?xtag_iBD#u>Kw5`(w}*Exo?uXLvDy?Pt(F&~Ca9G(|&X8QVecr=6fzF=q(che4l4 z7Ki8_%}?VV4$+r-^avdQf6PeJquP&2Tj&Uxu$%{dfC8ZDT%#MB3w-St>mWU%E#g(Q zj7MAI=uA+qx$+<_jGsJlG+)fo%=p6G+$|R&}VqA z^pdnA;?PAdGdcrtN+|C;QIoxC0lXP`MHV%1M;t1Vpi^XHUlmDu5t78&w{TXg7?+Uy z@s*$nVQqt7MekD?GgirXeiFS;70k9Mg3WGNoP@51-qt=@FJUhbk@X7P5_~9FN8sE2 z?bb)7r}6nWZ@;>0_WXmVv$^+rYSbwVBiSLy=mOK%*R`o5nM`z3$BtyOx084bSEZx7 zZ)X>TzMY$?%jiuelYKj(Pb5D+d;0i&BR{;6G@1|1Lwu=^2z;?}GJlqN!Q9QQRbS(g#mPYB>QWy9eT1bn%P!X=yuSNLWHtBik%X>w z0wr+=K+MOlX&aols_wsqo{iSpEMqpdU%qKbr;z?YVZ4wfa=Ab@o0}K`cbp2e2%4h> zaCyAYvyk(khvV0pKJWbX&sHUD&E@`3Q{ajdM`U-eeKDEaYupPvC+^{_kTfP$;SO!sXH$MD^!lPs8)$ol{KxP5|ET{*W)^G7*+kIWU z?tYoDt83eg#yJhXqP_4vuHuIBiYv4XtVE2lsAJAG^_&fk*~%sP{YA%`swA-Lv_y;D^i8H^JD2D zb1*HWZwFjg$I{1&hx_-ZMHpFr*>VG4j-?wiOdmSflj=#0T45-?lG_k);fG`Cn(_~X z_OkS>u-|iR6@bpEOTbMaryz+ZV|Gb{iA diff --git a/Examples/core/core_input_keys.exe b/Examples/core/core_input_keys.exe deleted file mode 100644 index c313e17585731ef628771fac8c4f07cc22bafffd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4608 zcmeHK&2JmW6@N>S6h(bRv=qZejCw>T0aMr%6$^&#NH!@^w%M4HAj+~+w~&|15w+2N zu)9l13|zq}&;kv5Fp3}u&`W~=McPvjMH{qe3ls^EOa6l#a%<5`4)v)8qW<12KP1Iy zol7tEqvp-~nm2FW%)D8Zzx|NLpH6(J-TZW7 zb<^}k!*lDNZVN+q95)bEDZHj5Oh*)#D#CVaGCMq+e7@~^d4cGr)<@6&@`Jmb**>Q< z4Qe@}1SH%5KYbBMpykmR33QP#Zcr+I?&$#<I8xMV=tB+PX#(NgnA>}X1xR<2GAYKCIfm}|m)cl=s{iuT{{DVujOE`< zM>6Azzyjwg-T4MJ;L%dDg&1lPHJT}R?P+t|3>K!te;i% zvS9T)^e?&qzA?evk4}ujyM_oyH4O)dxs$+2xH?<<@=M+6ji=aPKmNmK!`Yr7O{PA2_8l)QV7}>zjA-kg# zeSp9Y!RuH9(%Xf*#2F9s)fJKst2V4jBXGT!X{PMfnwGpmD}~o?-zcpvP`R+Ow6sVS z8LaAFT?W^dD^&FKoq5wUEV)L-!pf`HVNJGgxSnNJX+>{wH*ZPZo70W0y5}|>tiyC_ z?oMUXZCbT?%k?D{Wwlwa>s3n@0-Tv@Gmtdz+6~jv1JiX@q^0jF%J1n{noeNalFgv1 znwA-~dRjyv*G;F<4A!?~%g@SPNefPmWw=Us1MSE|#YPPUZUn#J`F zUm-7$$Sdk8`d?=tqTUdJuc#B4dO7@>IuJzoT3vjMoQ)nFunfu2e)B7;@bo;w?xPN?)OSrEaxP1)I6Ib=yFH6-&Zjr;@F!sKW}i-mYIhd~tPSyNrtQCg{5IFpt$YP~$ktI_edFvkJ6jHQ!QO z&Y9r(I$34z>&-i@*1HUUF6w9#@dntb!>jJCm)A~oQH?1eFFq`7WZ6Qb;=hiI&J+C| zd(?q1{_y9StGl)(wx#Ez%+02!vbnU7j^XmNGMm1&dhOiBwD1Gnsp*#M$k}vD`su4z zhLgj|8Qu4#UA0;QE*yV0-SnKxzOgB7-9KlWhUfb3MsUt>?aR7vXSb))!qy#gL;Atm z!TI1!h_16zP2wpIT8Co7=ON;9bQ=MbTZKl$G7a^FXZ1!SJsElkyrv(NoDKI0<9Ru) z#$j$>8ch##ws}ZA`MoCMl(l8g+%_#)m;MuaJ>T&v06jk_`bLwVlACf{TEb#Ho7Vl3 zv+Zt4FD;s8!N60GG;ZjYFWZY!P9`4{O(*opL$S|Hc9Q^unaR!$UFq!j)4rPl5&rM- O_JywGDe-@lfqw(j;Zg7a diff --git a/Examples/core/core_input_mouse.exe b/Examples/core/core_input_mouse.exe deleted file mode 100644 index 8953a221e669004e6d11510e3cfcde444fde4f89..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4608 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 - /// Rough generator for Raylib-cs to help automate binding + porting raylib code - /// Output will still need to be modified + /// Rough generator for creating bindings and ports for raylib + /// Not a full parser so generated code is not perfect /// class Program { static void Main(string[] args) { Console.WriteLine("Raylib-cs generator"); - GenerateBindings(); - GenerateExamples(); - GenerateTemplates(); - GenerateGames(); - + // GeneratePort("Examples"); + // GeneratePort("Templates"); + // GeneratePort("Games"); Console.WriteLine("Finished generating. Enjoy! :)"); Console.WriteLine("Press enter to exit"); Console.Read(); } + /// + /// Requires raylib headers + /// static void GenerateBindings() { Console.WriteLine("Generating bindings"); Generator.Process("raylib.h", "RLAPI"); + Generator.Process("raymath.h", "RMDEF"); + Generator.Process("physac.h", "PDEF"); Generator.Process("rlgl.h", "RLGL"); } - static void GenerateExamples() + /// + /// Porting C to C# + /// + static void GeneratePort(string folder) { Console.WriteLine("Generating examples"); // output folder - var folder = "Examples"; Directory.CreateDirectory(folder); var path = Generator.RaylibDirectory + folder.ToLower(); var dirs = Directory.GetDirectories(path); @@ -51,75 +56,5 @@ namespace Raylibcs Generator.ProcessExample(file, folder, folder + "//" + name); } } - - static void GenerateTemplates() - { - Console.WriteLine("Generating templates"); - - // output folder - var folder = "Templates"; - Directory.CreateDirectory(folder); - var path = Generator.RaylibDirectory2 + folder.ToLower(); - var dirs = Directory.GetDirectories(path); - - // copy folder structure - foreach (string dirPath in Directory.GetDirectories(path, "*", - SearchOption.AllDirectories)) - Directory.CreateDirectory(dirPath.Replace(path, folder)); - - // process all c files in directory and output result - var files = Directory.GetFiles(path, "*.c", SearchOption.AllDirectories); - foreach (var file in files) - { - var dirName = Path.GetDirectoryName(file); - var name = new DirectoryInfo(dirName).Name; - if (name == folder.ToLower()) - { - Generator.ProcessExample(file, folder, folder); - } - else - { - var t = file; - t = folder + t.Replace(path, ""); - t = new FileInfo(t).Directory.FullName; - Generator.ProcessExample(file, folder, t); - } - } - } - - static void GenerateGames() - { - Console.WriteLine("Generating games"); - - // output folder - var folder = "Games"; - Directory.CreateDirectory(folder); - var path = Generator.RaylibDirectory2 + folder.ToLower(); - var dirs = Directory.GetDirectories(path); - - // copy folder structure - foreach (string dirPath in Directory.GetDirectories(path, "*", - SearchOption.AllDirectories)) - Directory.CreateDirectory(dirPath.Replace(path, folder)); - - // process all c files in directory and output result - var files = Directory.GetFiles(path, "*.c", SearchOption.AllDirectories); - foreach (var file in files) - { - var dirName = Path.GetDirectoryName(file); - var name = new DirectoryInfo(dirName).Name; - if (name == folder.ToLower()) - { - Generator.ProcessExample(file, folder, folder); - } - else - { - var t = file; - t = folder + t.Replace(path, ""); - t = new FileInfo(t).Directory.FullName; - Generator.ProcessExample(file, folder, t); - } - } - } } } diff --git a/Raylib-cs.nuspec b/Raylib-cs.nuspec deleted file mode 100644 index a3c0e00..0000000 --- a/Raylib-cs.nuspec +++ /dev/null @@ -1,21 +0,0 @@ - - - - Raylib-cs - 1.0 - Chris Dill - Chris Dill - https://github.com/ChrisDill/Raylib-cs/blob/master/LICENSE - https://github.com/ChrisDill/Raylib-cs - https://github.com/ChrisDill/Raylib-cs/blob/master/Logo/raylib-cs.ico - false - Testing C# bindings for raylib, a simple and easy-to-use library to learn videogames programming. - Made for raylib 2.0 - Copyright 2018 - raylib csharp binding opengl gamedev - - - - - - \ No newline at end of file diff --git a/Raylib-cs.sln b/Raylib-cs.sln index 5c75c20..5e88691 100644 --- a/Raylib-cs.sln +++ b/Raylib-cs.sln @@ -3,9 +3,9 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 15 VisualStudioVersion = 15.0.27703.2035 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Generator", "Generator\Generator.csproj", "{063F21F1-12D3-41C6-B598-125C725955B1}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Bindings", "Bindings\Bindings.csproj", "{9F30944C-415B-4763-91C7-81721117879D}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Bindings", "Bindings\Bindings.csproj", "{363D543C-F690-41AA-8215-2D368EA7434E}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Generator", "Generator\Generator.csproj", "{063F21F1-12D3-41C6-B598-125C725955B1}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Test", "Test\Test.csproj", "{A2B3BBC8-3D48-46DD-B3CF-263F554E4474}" EndProject @@ -19,6 +19,18 @@ Global Release|x86 = Release|x86 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {9F30944C-415B-4763-91C7-81721117879D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {9F30944C-415B-4763-91C7-81721117879D}.Debug|Any CPU.Build.0 = Debug|Any CPU + {9F30944C-415B-4763-91C7-81721117879D}.Debug|x64.ActiveCfg = Debug|Any CPU + {9F30944C-415B-4763-91C7-81721117879D}.Debug|x64.Build.0 = Debug|Any CPU + {9F30944C-415B-4763-91C7-81721117879D}.Debug|x86.ActiveCfg = Debug|Any CPU + {9F30944C-415B-4763-91C7-81721117879D}.Debug|x86.Build.0 = Debug|Any CPU + {9F30944C-415B-4763-91C7-81721117879D}.Release|Any CPU.ActiveCfg = Release|Any CPU + {9F30944C-415B-4763-91C7-81721117879D}.Release|Any CPU.Build.0 = Release|Any CPU + {9F30944C-415B-4763-91C7-81721117879D}.Release|x64.ActiveCfg = Release|Any CPU + {9F30944C-415B-4763-91C7-81721117879D}.Release|x64.Build.0 = Release|Any CPU + {9F30944C-415B-4763-91C7-81721117879D}.Release|x86.ActiveCfg = Release|Any CPU + {9F30944C-415B-4763-91C7-81721117879D}.Release|x86.Build.0 = Release|Any CPU {063F21F1-12D3-41C6-B598-125C725955B1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {063F21F1-12D3-41C6-B598-125C725955B1}.Debug|Any CPU.Build.0 = Debug|Any CPU {063F21F1-12D3-41C6-B598-125C725955B1}.Debug|x64.ActiveCfg = Debug|Any CPU @@ -31,18 +43,6 @@ Global {063F21F1-12D3-41C6-B598-125C725955B1}.Release|x64.Build.0 = Release|Any CPU {063F21F1-12D3-41C6-B598-125C725955B1}.Release|x86.ActiveCfg = Release|Any CPU {063F21F1-12D3-41C6-B598-125C725955B1}.Release|x86.Build.0 = Release|Any CPU - {363D543C-F690-41AA-8215-2D368EA7434E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {363D543C-F690-41AA-8215-2D368EA7434E}.Debug|Any CPU.Build.0 = Debug|Any CPU - {363D543C-F690-41AA-8215-2D368EA7434E}.Debug|x64.ActiveCfg = Debug|Any CPU - {363D543C-F690-41AA-8215-2D368EA7434E}.Debug|x64.Build.0 = Debug|Any CPU - {363D543C-F690-41AA-8215-2D368EA7434E}.Debug|x86.ActiveCfg = Debug|Any CPU - {363D543C-F690-41AA-8215-2D368EA7434E}.Debug|x86.Build.0 = Debug|Any CPU - {363D543C-F690-41AA-8215-2D368EA7434E}.Release|Any CPU.ActiveCfg = Release|Any CPU - {363D543C-F690-41AA-8215-2D368EA7434E}.Release|Any CPU.Build.0 = Release|Any CPU - {363D543C-F690-41AA-8215-2D368EA7434E}.Release|x64.ActiveCfg = Release|Any CPU - {363D543C-F690-41AA-8215-2D368EA7434E}.Release|x64.Build.0 = Release|Any CPU - {363D543C-F690-41AA-8215-2D368EA7434E}.Release|x86.ActiveCfg = Release|Any CPU - {363D543C-F690-41AA-8215-2D368EA7434E}.Release|x86.Build.0 = Release|Any CPU {A2B3BBC8-3D48-46DD-B3CF-263F554E4474}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {A2B3BBC8-3D48-46DD-B3CF-263F554E4474}.Debug|Any CPU.Build.0 = Debug|Any CPU {A2B3BBC8-3D48-46DD-B3CF-263F554E4474}.Debug|x64.ActiveCfg = Debug|x64 diff --git a/Test/App.config b/Test/App.config index 731f6de..8fc0551 100644 --- a/Test/App.config +++ b/Test/App.config @@ -1,6 +1,6 @@ - + - + - \ No newline at end of file + diff --git a/Test/Program.cs b/Test/Program.cs index 046b8ce..265e373 100644 --- a/Test/Program.cs +++ b/Test/Program.cs @@ -8,9 +8,6 @@ class Program { public static void Main() { - //RayForms.Run(); - //return; - // Initialization //-------------------------------------------------------------------------------------- int screenWidth = 800; @@ -19,6 +16,9 @@ class Program // SetConfigFlags((int)Flag.WINDOW_UNDECORATED); InitWindow(screenWidth, screenHeight, "raylib [core] example - basic window"); + var model = LoadModel("bridge.obj"); + model.mesh.Vertices[0] = 5f; + SetTargetFPS(60); //-------------------------------------------------------------------------------------- @@ -45,6 +45,6 @@ class Program // De-Initialization //-------------------------------------------------------------------------------------- CloseWindow(); // Close window and OpenGL context - //-------------------------------------------------------------------------------------- + //-------------------------------------------------------------------------------------- } } diff --git a/Test/RayForms.cs b/Test/RayForms.cs deleted file mode 100644 index f54f92e..0000000 --- a/Test/RayForms.cs +++ /dev/null @@ -1,102 +0,0 @@ -using System; -using System.Drawing; -using System.Runtime.InteropServices; -using System.Threading; -using System.Windows.Forms; -using static Raylib.Raylib; - -namespace Raylib -{ - public partial class RayForms : Form - { - private Panel gamePanel; - private bool windowAttached = false; - - #region WinAPI Entry Points - - [DllImport("user32.dll")] - private static extern IntPtr SetWindowPos(IntPtr handle, IntPtr handleAfter, int x, int y, int cx, int cy, uint flags); - [DllImport("user32.dll")] - private static extern IntPtr SetParent(IntPtr child, IntPtr newParent); - [DllImport("user32.dll")] - private static extern IntPtr ShowWindow(IntPtr handle, int command); - - #endregion - - public RayForms() - { - Size = new Size(1024, 700); - Text = "Rayforms"; - - gamePanel = new Panel(); - gamePanel.Size = new Size(800, 500); - gamePanel.Location = new Point(50, 50); - - Button button = new Button(); - button.Text = "Attach window"; - button.Size = new Size(150, 20); - button.Location = new Point( - (Size.Width / 2) - (button.Size.Width / 2), - gamePanel.Location.Y + gamePanel.Size.Height + 10 - ); - button.Click += new EventHandler(ClickedButton); - Controls.Add(button); - Controls.Add(gamePanel); - } - - private void ClickedButton(object sender, EventArgs e) - { - if (!windowAttached) - { - // new Thread(Test).Start(); - Test(); - } - } - - private void Test() - { - SetConfigFlags((int)Flag.WINDOW_UNDECORATED); - InitWindow(800, 480, "Rayforms test"); - SetTargetFPS(60); - - IntPtr winHandle = GetWindowHandle(); - Invoke(new Action(() => - { - SetWindowPos(winHandle, Handle, 0, 0, 0, 0, 0x0401 /*NOSIZE | SHOWWINDOW */); - SetParent(winHandle, gamePanel.Handle); - ShowWindow(winHandle, 1); - windowAttached = true; - })); - - // Main game loop - while (!WindowShouldClose()) // Detect window close button or ESC key - { - // Update - //---------------------------------------------------------------------------------- - // TODO: Update your variables here - //---------------------------------------------------------------------------------- - - // Draw - //---------------------------------------------------------------------------------- - BeginDrawing(); - - ClearBackground(RAYWHITE); - - DrawText("Congrats! You created your first window!", 190, 200, 20, MAROON); - - DrawText(GetFrameTime().ToString(), 100, 10, 15, MAROON); - - DrawFPS(10, 10); - - EndDrawing(); - //---------------------------------------------------------------------------------- - } - CloseWindow(); - } - - public static void Run() - { - Application.Run(new RayForms()); - } - } -} diff --git a/Test/Test.csproj b/Test/Test.csproj index 72b8248..2ba1edb 100644 --- a/Test/Test.csproj +++ b/Test/Test.csproj @@ -8,9 +8,25 @@ Exe Test Test - v4.6.1 + v4.7.1 512 true + + publish\ + true + Disk + false + Foreground + 7 + Days + false + false + true + 0 + 1.0.0.%2a + false + false + true AnyCPU @@ -84,27 +100,49 @@ + + ..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll + + + ..\packages\System.Memory.4.5.1\lib\netstandard2.0\System.Memory.dll + + + + ..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll + + + ..\packages\System.Runtime.CompilerServices.Unsafe.4.5.0\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + - - - Form - + + + + False + Microsoft .NET Framework 4.6.1 %28x86 and x64%29 + true + + + False + .NET Framework 3.5 SP1 + false + + - {363d543c-f690-41aa-8215-2d368ea7434e} + {9f30944c-415b-4763-91c7-81721117879d} Bindings diff --git a/Test/packages.config b/Test/packages.config new file mode 100644 index 0000000..087ebcb --- /dev/null +++ b/Test/packages.config @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file