Are there any other way to render graphics in C# beyond GDI+ and XNA? (For the development of a tile map editor)
feedback
|
|
http://cs-sdl.sourceforge.net/index.php/Main_Page is the solution I've come to love. If you need 3d on top of it, you can use Tao.OpenGL to render inside it. It's fast, industry standard (SDL, that is), and cross-platform. | |||||
feedback
|
|
Yes, I have written a Windows Forms control that wraps DirectX 9.0 and provides direct pixel level manipulation of the video surface. I actually wrote another post on StackOverflow asking if there are other better approaches: Unsafe C# and pointers for 2d rendering, good or bad? While it is relatively high performance, it requires the unsafe compiler option as it uses pointers to access the memory efficiently. Hence the reason for this earlier post. This is a high level of the required steps:
Be aware that taking this approach you need to be very careful about checking the current display mode (pitch and bits per pxiel) of the target surface. Also you will need to have a strategy in place to deal with window resizing or changes of screen format while your program is running. | ||||
|
feedback
|
| |||
|
feedback
|
|
You could try looking into WPF, using Visual Studio and/or Expression Blend. I'm not sure how sophisticated you're trying to get, but it should be able to handle a simple editor. Check out this MSDN Article for more info. | |||
|
feedback
|
|
You might look into the Cairo graphics library, the Mono project has bindings for C#. | |||
|
feedback
|
|
Cairo is an option: http://igorbrejc.net/development/c/welcome-to-cairo. I'm currently rewriting my mapping software using both GDI+ and Cairo. It has a tile map generator, among other features. | |||
|
feedback
|