SDL.NET is a set of object-oriented CLS-compliant .NET bindings for the SDL gaming library. It provides high-level access to audio, keyboard, mouse, joystick, TrueType fonts, various image formats, sound mixing, MPEG-1 movies, and 2D video framebuffer. See also: SDL.NET Homepage SDL.NET Wiki
4
votes
2answers
546 views
moving SDL video surface
Does anyone know how to move my SDL.net video surface around the screen programtically?
Surface videoContext = Video.SetVideoMode(1024, 768, 32, false, false, false, true, true);
var a = ...
1
vote
0answers
65 views
Colors in SDL acting very weird
I'm making a program in SDL.NET, where I need to draw a filled polygon. I figured it might be good to reuse the polygon surface instead of remaking it every time i need to draw, so I make the surface ...
1
vote
2answers
255 views
SDL.Net application not working without SDL.NET SDK
I have a game that I have made in C# and it installs and runs as expected under Windows XP. However when I install it on a Windows 7 machine, then it either simply doesn't work (without any error ...
1
vote
0answers
330 views
Why does vshost32-clr2 crash in sdl.net?
When programming in sdl.net on close my app will crash with a vshost32-clr2 error. It stops happening (sometimes) when i close visual studio and reopen the project.
Does anyone have any idea why this ...
1
vote
0answers
115 views
SDL.NET runtime without installation?
With plain old sdl in C i would copy the dlls i need into the exe directory and was able to run without install.
Now i am using sdl.net. I tried doing that but had no luck. Not even a clue to what ...
1
vote
1answer
814 views
SDL.NET (VB/C#): What should the startup object and application type be?
I eventually couldn't get any further with my program due to the various shortcomings of VB.NET (bad audio support, no reading events in the middle of execution, very weak keyboard input, etc). So I ...
0
votes
0answers
97 views
SDL.NET crashes on Fill()
I'm trying to use SDL.NET on Ubuntu 10.10, and it seems to keep crashing when calling the Fill method on a surface. I've installed all of the libraries required with apt-get. The default hello world ...
0
votes
1answer
65 views
SDL.NET SDL_Flip() equivalent
SDL has an SDL_Flip() function for swapping screen buffers.
What is the equivalent in SDL.NET? There is no Screen.Flip() method.
0
votes
0answers
61 views
SDL.NET bad framerate
With this SDL.NET code i get 63 fps. Why? as you can see i am only doing one fill.
void OnTick(object sender, TickEventArgs args)
{
if (firstTick)
{
firstTick = ...
0
votes
0answers
68 views
SDL.NET 6.1.0: Why doesn't the surface show?
I'm just learning how to use SDL and C#, coming from a Python/PyGame background. In PyGame, I could just pass the display to the shape function I was using, and it would be drawn on the background. In ...