• 0

How to be a game programmer and developer?


Question

Hello :) .I am new in this forum and i am really interested in programming.I really want to learn to program with Cuda, C++ you know. I want to make my own game engines and 3D games with stunning grafiks. I saw really interesting things in the Nvidia developer zone like Nvidia PhysX SDK, OpenGL, OpenCL, DirectX and many other stuff. I want to learn how to program with them and for what and how can i use it? What i must learn first? From what i must start? What book's i must read of i am new to software and game programming? I am really confused. Thank's :D .

Recommended Posts

  • 0

You can't seriously be thinking that if you just 'learn' this and 'learn' that via a couple of books then you'll be able to suddenly create complex 3D games.

Before you can even start to even think about 3d games you have to know a proper language such as C++ or C# inside out. Perhaps then when you are really serious about this and have some useful knowledge, will you be able to start to make games.

Don't just think that if you read a couple of books you'll easily be able to make games. It takes years of learning even to produce simple graphics - nothing close to Assassins Creed or whatever you think you will be able to make

You may get their eventually but start of with the basics and then move onto games programming when you have yourself a proper foothold.

  • 0

OK heres the deal, If you make a game engine by yourself come and see me and I will get it licensed for you. These things cost and make millions and are done by teams. Heres a tip . . . Get ANY chart game and look at the credits, Can you count how many names there is?

  • 0

Id start on C# with the XNA Framework, http://create.msdn.com/en-us/home/getting_started, and using the tutorials on Indie MSDN, http://create.msdn.com/en-US/education/. Then move onto C++ in a year or 2.

I started VB 3 years ago, then after a year moved onto C# and then just recently started to learn C++. It's a good way to go, imo.

  • 0

Id start on C# with the XNA Framework, http://create.msdn.c...getting_started, and using the tutorials on Indie MSDN, http://create.msdn.c...-US/education/. Then move onto C++ in a year or 2.

I started VB 3 years ago, then after a year moved onto C# and then just recently started to learn C++. It's a good way to go, imo.

+1

VB->C#->C++ was the path I took and it's worked out great. Currently on the team for a game on Steam and working on another.

  • 0

Take programming classes.

Read those books, read other books.

Take art design classes.

Don't under any circumstance try and create your own engine especially for your first project. Learn how use one of the (great) current engines. Some come with a fee but are worth it.

Unreal SDK

CryEngine (public*?)

Source

others mentioned as well

my 2 cents

  • 0

Ok i see how hard is to program game engines and that stuff. I think i will start from simple games like 2D Tic-Tac-Toe. I am now reading C++ for Dummies and its great. I think it's too early to think for 3D game engines.For now i will learn C++ and working with UDK, but i don't know how to learn fully UnrealScript. There are 2 books for UnrealScript, but i can't find them anywhere for download. They are UnrealScript Game Programming All in One and Mastering Unreal Technology, Volume III: Introduction to UnrealScript with Unreal Engine 3, but i've heard that Mastering Unreal Technology, Volume III: Introduction to UnrealScript with Unreal Engine 3 will not be selling, but i am not shure for that. For the other stuff for UDK i have really good video tutorials more that 120 videos i think and in it you can learn many things like the User Interface pf UDK, working with Phat (The Unreal PhysX Editor) and many pther things. I have 2 books for beggining level design in UDK and advanced level design in UDK. They are Mastering Unreal Technology, Volume I and Mastering Unreal Technology, Volume II. And one guy say that i must see the credits of a game. Don't worry, i have seen the credits of Assassins Creed 2 and what i can say is that: WOOOOOOOOW HOW MANY PEOPLE XD. And for Crysis 2 i have just no words. They have 3000 people working on Crysis 2 :woot: .

  • 0

You should really know a general-purpose language like C++, Java or C# before delving into UnrealScript. All the tutorials I've seen assume the reader has prior programming experience.

UDK is a ready-made engine and game development tool. You only code the "game logic" and let UDK handle all the rendering, physics etc. It's completely different than learning, say, C++ with SFML or C# with XNA, which are low-level and force you to develop almost everything from scratch.

I think UDK is going to be a steeper learning curve than even C++. Not saying it's a bad choice, but just wanted to let you be aware of this. Here's the UnrealScript language reference, essential (although far from sufficient) document.

  • Like 3
  • 0

+1 Same path here.

I was Java->C->C++->C#->Survival code learning :D

I don't think anyone can go wrong learning C/C++ and/or Java right off the bat. I also would argue that assembly - x86ASM for example, would also be highly recommended EARLY on.

Id start on C# with the XNA Framework, http://create.msdn.com/en-us/home/getting_started, and using the tutorials on Indie MSDN, http://create.msdn.com/en-US/education/. Then move onto C++ in a year or 2.

I started VB 3 years ago, then after a year moved onto C# and then just recently started to learn C++. It's a good way to go, imo.

Sorry about the time with VB ;) Really, I hate VB so bad and I feel sorry for any of my friends that actually get paid to write and maintain it and lulz when I hear stories of others who were raised on it.

But, C# before C++? Seems like a lame way to break into OOP. I mean, get a feel for the STL and OOP with C++, then move onto the fresh stuff. Whatever I guess as long as it worked for you.

  • 0
Sorry about the time with VB ;) Really, I hate VB so bad and I feel sorry for any of my friends that actually get paid to write and maintain it and lulz when I hear stories of others who were raised on it.
VB6 or earlier, maybe? Since VB7 the language is almost identical to C# (except for the syntax of course).
But, C# before C++? Seems like a lame way to break into OOP. I mean, get a feel for the STL and OOP with C++, then move onto the fresh stuff.
Funny you would say that, since C# is much more object-oriented than C++. The STL in particular is not object-oriented at all. Its author, Stepanov, famously said: "STL is not object oriented. I think that object orientedness is almost as much of a hoax as Artificial Intelligence. I have yet to see an interesting piece of code that comes from these OO people." (http://jroller.com/idealog/entry/oop_and_c_stl)
  • 0

What to say that hasn't been said..

I will just say that for the most part.. the modern type of languages mostly rely on OOP (object oriented programming) principles.. so you have to learn those.. That's really very important step in being a programmer..

Second, as AgentGrey said, you really need take computer science classes or at least watch videos and read books that will introduce the basic principles in addition to programming logic and software design patterns such as MVC (Model View Controller).

So with this.. I won't repeat what was said but give you a hint where to start:

Stanford has free video classes in Computer Science.. you should watch this on iTunesU if they have them or watch Stanford classes online on Youtube or look on their site. There are lectures that will guide you through their mandatory classes as if you are attending them but they are free... You will definitely need these to continue to the next step..

These are mandatory classes for Stanford's computer science degree.. it's the basis of everything you will learn after that and a great place for you to start.

Programming Methodology (Stanford)

Lectures:

http://www.youtube.c...tanford%29&aq=f

Programming Abstractions (Stanford)

Lectures:

http://www.youtube.c...tanford%29&aq=f

Programming Paradigms (Stanford)

Lectures:

http://www.youtube.c...tanford%29&aq=f

When you watch all these..

Get a really good book about Object Oriented Programming and principles (there are good sites too that will give you a lot of information).. this is very important to understand because most modern languages as I mentioned are OOP and having a great understanding of it will allow you to adapt to different languages very fast (despite different syntaxes).

After that as others have suggested you will be ready to take on C++/C# and those books about Game Development.. it gets a lot easier then.

Hope this helps.

  • 0

Ok i will watch these videos, but first i want to ask everyone some stuff. I have the full source code of the Quake 3 Engine or id Tech 3 engine(they are the same) and i want to ask how to use it? I mean how to make a game with it and comply the code? What i must know? C++ i think, but what from C++? I will not use UDK soon, because my system is so slow. I have a Dell Latitude D610 and a PC with 1.8GH processor, 1GB of ram and a Geforce 8600GT GPU, but i use my PC in Summer, because my computer is far from me. I mean in an other city and my laptop is with me. So QUAKE 3 Engine is just perfect for Dell Latitude D610 and i really love the games made with that engine like Heavy Metal Fakk2 and yea.So can anyone help?I mean answer my questions :p ?

  • 0

lol i am afraid that you are going to have to do a bit better then just a few weeks of programming, to even understand and to properly use a game engine takes a while to get into, suggest you keep programming basic stuff for the moment until your confidence and understanding has shown results, and not jump the gun so quickly.

  • 0

Yes of course, but can i learn everything that i need from these books:

C++ for Dummies 5th Edition,

The C++ Programming Language-Special Edition,

C++ for Game Programmers,

Programming game AI,

Game Engine Architecture,

3D Math Primer for Graphics and Game Development,

Beginning C++ Through Game Programming,

3D Game Engine Programming and

Game Engine Toolset Development

  • 0

Yes of course, but can i learn everything that i need from these books:

C++ for Dummies 5th Edition,

The C++ Programming Language-Special Edition,

C++ for Game Programmers,

Programming game AI,

Game Engine Architecture,

3D Math Primer for Graphics and Game Development,

Beginning C++ Through Game Programming,

3D Game Engine Programming and

Game Engine Toolset Development

no reason not to , but good luck going through all those books...

  • 0

If you are serious about making this a career, you're going to HAVE to get a degree of some sort, before any company is even going to look at you... They receive applications daily from people with degrees ( some multiple degrees ) and you expect to be considered because you've read some books?? I don't think you're being very realistic about your career path my friend..

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Posts

    • They thought value of their goods would forever only drop like it used to and didn't account for sudden increase in price because of all the Ai hype. Tough luck Samsung, don't try to weasel this one out. Also American customer protection laws are a**. In Europe, you need to be compensated for a functioning product of same or better characteristics (not same price point as when it was originally bought!) if it can't be repaired and when you receive a replacement product your warranty starts from scratch because you received a different item than you previously had and old warranty thus cannot apply to it anymore. If your actual item was successfully repaired, warranty gets extended for the period the item was in service. If item is repaired to a significant extent, warranty also starts over from scratch because major part of it was replaced. Americans need to fight to get this kind of consumer protections because they are constantly getting screwed over.
    • Microsoft releases new Windows 11 Media Creation Tool with the latest updates by Taras Buria Patch Tuesday updates arrive every month, bringing users new features and security updates. To make sure customers have access to the most recent images, Microsoft also releases updates to the Media Creation Tool app, its official utility for Windows 11 installation. Today, the company pushed new ISOs to Media Creation Tool, allowing you to create images with the June 2026 Patch Tuesday updates. With the latest update, the Media Creation Tool now downloads KB5094126. It is Windows 11 version 25H2, build 26200.8655, which is also available via Windows Update. Note that the app itself remains on the previous version, which you can check in Properties > Details. The only change is that it now downloads a more recent Windows 11 build, so the only way to check is to download an ISO. The June 2026 Patch Tuesday update is a special release for Windows 11, as it brings a new performance profile to make the operating system more responsive and snappier when rendering various user interface surfaces, including the Start menu, quick settings, and more. It does so by spiking processor speeds for a brief moment, resulting in higher loads for a second or two. The so-called “Low latency profile” is rolling out gradually, but you can force-enable it with the ViVeTool app. Other changes include webcam improvements, Task Manager updates, shared audio support, and more. You can download the Media Creation Tool app from the official Microsoft website using this link. Besides MCT, Microsoft lets you download Windows 11 ISO as a file directly from the official Windows 11 website. However, you will need a third-party app to write it to your USB drive. Check out this guide if you want to know how to do that.
    • Louis Rossmann suing Samsung over "990 Pro SSD warranty scam" by Sayan Sen Back in 2023, if you recall, Neowin reviewer Robbie Khan had a dispute with Samsung over his 990 Pro SSD, which was rapidly losing its health. After significant back and forth, the tech giant had finally released firmware to "stop" the issue. Interestingly, its previous flagship at the time, the 980 Pro was also facing problems leading to two consecutive sets of firmware fixes. Three years later, it looks like a similar conflict has now broken out between tech repair entrepreneur YouTuber Louis Rossmann and Samsung, as it has escalated into a threatened lawsuit after the company allegedly refused to appropriately replace a failing 990 Pro SSD that remained under warranty. According to Rossmann, a 4TB Samsung 990 Pro NVMe SSD purchased for approximately $330 less than two years ago, began experiencing major hiccups and issues, even though he claims it had been operated under ideal cooling conditions. It was installed in a RAID 1 array and cooled by a heatsink and dual high-speed fans. However the drive reportedly started dropping out of the array, exhibiting controller-level failures that eventually became not useable in any meaningful way. Rossmann said Samsung’s support process was marked by delays and confusion from the very start. After initially contacting the wrong regional support channel, he was redirected to Samsung’s memory support division where he submitted detailed diagnostics, logs, and proof of purchase. Rossmann runs a repair company and owns an ACE Lab PC-3000 machine, which is a professional-grade data recovery equipment. As such, he had been confident in his diagnostics. Samsung even seemingly acknowledged that later. Regardless, Rossmann claims that his initial support ticket was automatically closed before a full 24-hour response window had elapsed, forcing him to reopen the case and resubmit documentation. The controversy however intensified further from here after Samsung accepted the drive for warranty evaluation but later returned it with a repair report stating that the drive had passed its testing and that the SSD had been verified as functional. Rossmann strongly disputed those claims citing that his own independent testing on PC-3000 showed write speeds reducing to as low as 40–60 MB/s before the drive failed entirely. Samsung subsequently informed him that the SSD had been reset and reflashed, passing internal stress tests. However, the company also stated that replacement units were unavailable due to an industry-wide memory shortage and suggested that a refund process could be initiated if further testing confirmed the fault. Thus, to settle, the company offered a refund of $330, the amount that was initially paid by him to make the purchase. Here, Rossmann pointed out the seeming hypocrisy of the tech giant as in how no Samsung drive was apparently allocated for warranty replacements, but they were abundantly available for retail sales especially when using business accounts. As you can see, Rossmann is indeed right, there are Samsung 990 Pro 4TB SSDs on Amazon currently for $950 (shipped and sold by first-party Amazon US itself), and they are also available on Samsung's own store too, albeit for an even higher price of $1100. Thus Rossmann argues that Samsung’s inability or unwillingness to provide a replacement while the same model remains available for purchase at significantly higher market prices reflects a failure to honor its warranty obligations. He has issued a formal 60-day notice and says he intends to file suit in Texas small claims court, asserting that companies should face greater costs for denying legitimate warranty claims than for fulfilling them. You can check out the full video titled "Samsung's 990 Pro SSD warranty policy is a scam; I'm taking them to court," at the link below. Source and image: Louis Rossmann (YouTube) As an Amazon Associate we earn from qualifying purchases
    • Was it too much to ask to show the icon in this article?
  • Recent Achievements

    • Week One Done
      davidbazooked earned a badge
      Week One Done
    • One Month Later
      Jamswaz earned a badge
      One Month Later
    • Week One Done
      Jamswaz earned a badge
      Week One Done
    • Rookie
      Marzoid went up a rank
      Rookie
    • Community Regular
      coch went up a rank
      Community Regular
  • Popular Contributors

    1. 1
      +primortal
      509
    2. 2
      PsYcHoKiLLa
      185
    3. 3
      +Edouard
      158
    4. 4
      Steven P.
      83
    5. 5
      ATLien_0
      75
  • Tell a friend

    Love Neowin? Tell a friend!