Offtopic BlitzMax Command Set in C#

BlitzMax Forums/BlitzMax Programming/Offtopic BlitzMax Command Set in C#

BLaBZ(Posted 2012) [#1]
I know this is a little off topic but I have something I need to do for work in c# and was wondering if there existed a command set like blitzmax that I could use on a windows form with c#.

Thoughts? Ideas?

Thanks


ziggy(Posted 2012) [#2]
Not the same command set. Depending on what you're doing, you can just use the managed GDI+ implementation on windows forms to draw images, rects, text, etc. It allow you to draw it scaled, rotated, tinted, etc. It also alows a good level of poligons manipulation, gradients, etc etc BUT it is not hardware accelerated and not as fast as BlitzMax. If you need it to animate, it's out of the box.
then, there's the simple directmedial layer ( http://www.libsdl.org/ ) , that has C# bindings and it is compatible with both windows .net and mono. It provides hardware acceleration and a very good support for hardware accelerated 2D graphics., with support for animation, etc. It works very differently from BlitzMax but it is not very complicated, just a different approach, and it is fast and quite reliable.