English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

I have a good working knowledge of OOP but I'm just starting out in game programming. Which game sdk would you recommend for someone like me?

Please feel free to recommend books or websites.

2006-10-22 04:41:25 · 2 answers · asked by ne0aes0p 2 in Computers & Internet Programming & Design

No assembly please!, I program in C++. I don't need compilers either. I need a game sdk. Please recommend a book or a download with documentation. Thanx!

2006-10-22 07:16:03 · update #1

2 answers

try the XNA framework

2006-10-22 06:35:17 · answer #1 · answered by Nick F 6 · 0 0

If you're familiar with OOP, then I'd recommend using one of the Borland C++ compilers. Since Borland also makes an assembler package, these compilers come equipped with a way of using inline assembler commands to better control the video and make shorter work of adding scores. For example, you could accumulate a score this way.

asm add ax, 1

The asm tells the compiler to invoke the inline assembler. add is the assembly language code for adding. ax is the processor's accumulator register which may be used for keeping a running score. 1 is the amount you're increasing ax by.

2006-10-22 05:24:46 · answer #2 · answered by iuneedscoachknight 4 · 0 1

fedest.com, questions and answers