SDL v.s. Win32

Started by
1 comment, last by zedzeek 17 years, 11 months ago
Currently I'm about to start back up on my tetris project that I started doing in Win32, but I was deeply concidering switching over to SDL. Here are my questions: 1) Is SDL compatible with Mac (along with the given that it is on Windows)? 2) To make the application run on Mac OS, would I have to avoid using particular header files? 3) Which of the two would prove more useful for the gaming industry (SDL or Win32, or both)? 4) Which has cleaner code structure? Or does that really just depend on the programmer? 5) I've heard SDL is quicker to code with, is this true? (not that it matters, but I was just curious if it was true or false) 6) Would the switch be worth it (Win32 -> SDL)? Thank you for you time.
Advertisement
It is my belief that SDL is cleaner to look at and code with than win32.
Quote:
1) Is SDL compatible with Mac (along with the given that it is on Windows)?


It is compatabile with both macOS and linux, along with a load of other platforms:

Quote:Source: SDL_ website

SDL supports Linux, Windows, Windows CE, BeOS, MacOS, Mac OS X, FreeBSD, NetBSD, OpenBSD, BSD/OS, Solaris, IRIX, and QNX. The code contains support for AmigaOS, Dreamcast, Atari, AIX, OSF/Tru64, RISC OS, SymbianOS, and OS/2, but these are not officially supported.



Quote:
2) To make the application run on Mac OS, would I have to avoid using particular header files?


Yeah, any windows only ones. But using pure SDL you will have little use for them for a tetris program.

Quote:
3) Which of the two would prove more useful for the gaming industry (SDL or Win32, or both)?


Both, and others. But win32 code is needed to interface with the OS for things other than just making a window and drawing to it. SDL has been used in commercial games (ports of commercial games usually )

Quote:
4) Which has cleaner code structure? Or does that really just depend on the programmer?


I believe SDL does, but its personal. I just don't like win32's naming conventions.

Quote:
5) I've heard SDL is quicker to code with, is this true? (not that it matters, but I was just curious if it was true or false)


Well, not really. After a couple of programs you have a bunch of code you can use with in others that can handle a lot of what you need. So not particularly.

But code to get as simple SDL window up and running s very quick to write and easy. So learning may be faster, but YMMV

Quote:
6) Would the switch be worth it (Win32 -> SDL)


IMO yes.

But again, YMMV.
use sdl, easier + much faster to get up + running thus more time to do what u want (develop a game) its cross platform as well (mac yes)
also win32 is becoming obsolete (like my knowledge of cobol has become)

This topic is closed to new replies.

Advertisement