Please create an account to participate in the Slashdot moderation system

 



Forgot your password?
typodupeerror
×
Programming Games

Ask Slashdot: Best Way to Learn C# For Game Programming? 254

An anonymous reader writes So I, like many people, want to make my own game. Outside of MATLAB, Visual Basic, and LabVIEW I have no real programming experience. I initially started with Ruby, but after doing my homework decided that if I ever wanted to progress to a game that required some power, I would basically need to learn some form of C anyway. Further digging has led me to C#. The other parts of game design and theory I have covered: I have ~8 years of CAD modeling experience including Maya and Blender; I have a semiprofessional sound studio, an idie album on iTunes, and am adept at creating sound effects/music in a wide variety of programs; I'm familiar with the setbacks and frustration involved with game development — I beta tested DotA for 9ish years; I already have my game idea down on paper (RTS), including growth tables, unit types, unit states, story-lines, etc. I've been planning this out for a year or two; I will be doing this on my own time, by myself, and am prepared for it to take a couple years to finish. The reason for listing that stuff out, is that I want people to understand that I know what I'm getting myself in to, and I'm not trying to put out a not-so-subtle "help me make a game for free lol" type of post. With all of that said, where is a good place to start (i.e., recommended books) for learning C# for game programming? I am familiar with object oriented programming, so that's a little bit of help. I'm not necessarily looking for the syntax (that part is just memorization), but more for the methodology involved. If anyone also has any suggestions for other books or information that deal with game development, I would love to hear that too. I know enough to understand that I really don't know anything, but have a good foundation to build on.
This discussion has been archived. No new comments can be posted.

Ask Slashdot: Best Way to Learn C# For Game Programming?

Comments Filter:
  • by Anonymous Coward

    You should just start. I'm an "expert" on game programming in C#, and the hardest thing about it is not reading slashdot.

    • I disagree. spend a little time to think about your path then dive in. example, I needed to pick up a language for simple scripts, choosing between php and python. PHP was simple to install through an XAMPP php/apache/PHP package. so i just dived in and did it.

      retrospect, I wish I had invested in python instead. Now that I can use PHP I'll just make scripts there, but python could have been so much more potential for other work.

      that being said, I recommend swift, apple's new language for iOS apps. It's go
      • Have you actually been using swift. Nice concept, buggy as hell implementation. Sure it's beta, but in my opinion it's too buggy even for beta release. and lack of support for fixed arrays in my opinion is strange...
  • by Anonymous Coward on Friday June 20, 2014 @06:50PM (#47285541)

    So just do it. Use free tools so you don't spend coin on something until you are sure it's something you'll stick with.

  • Udemy (Score:4, Informative)

    by Bodhammer ( 559311 ) on Friday June 20, 2014 @06:55PM (#47285561)
    Udemy has 12 courses(https://www.udemy.com/courses/search/?ref=home&q=c%23) up there and they have big sales all the time. If you can get some for $10, it might be worth it.
    • Coursera (Score:4, Informative)

      by gnupun ( 752725 ) on Saturday June 21, 2014 @05:31AM (#47287563)
      Also sign up at Coursera [coursera.org]. They have a course titled "Beginning Game Programming with C#" taught by the University of Colorado. The course also teaches basic C# syntax, so it's very beginner friendly. You just have to wait for it to be offered again before signing up.
  • by Anonymous Coward on Friday June 20, 2014 @06:57PM (#47285581)

    do the unity3d tutorials and mess around with C# in there. you get to use your 3d skills and actually make something whilst you learn

    • by gbjbaanb ( 229885 ) on Friday June 20, 2014 @07:15PM (#47285685)

      True - if you're going to write games in C#, you need Unity. Unfortunately Unity is really Mono so you will have some issues with the toolchain - ie its not as nice as native Visual Studio coding.

      But even then, all the games I've seen written in Unity work, but they suck up your CPU like nothing else. If you really want to code games, stick to what most people in the industry use - C++.

      There are plenty of engines that help you, like Irrlicht, or Ogre3d. Or go with a commercial engine like Unreal.

      Take a look at the list, count the number targeting the different languages.
      http://en.wikipedia.org/wiki/L... [wikipedia.org]

      • If you really want to code games, stick to what most people in the industry use - C++.

        While I agree with you, because C# is too high-level for game programming, Microsoft just released a native C# compiler:
        http://msdn.microsoft.com/en-U... [microsoft.com]
        This should provide performance almost equivalent to C++.

        • you miss the point - its not about performance (though I think the native C++ compiler for C# code shows that Microsoft has stopped willy waving between their divisions and are actually going for stuff that works - performance will still be worse, all that GC going on means C# code tends to be less performant due to the way the language works. A C+ program that allocates and copies memory all the time would be slow too)

          Anyway, its the fact that everyone else does it in C++ that matters. A bit like writing

        • by Xest ( 935314 )

          There are a number of commercial indie games on platforms ranging from Android, iOS, Windows, Mac, the PS3, the PS4, the XBox 360, the Wii, the Wii U and the XBox One written using C# executing via Unity or Mono using something like MonoGame.

          C# is not too high level for game programming, it's perfectly adequate. You may start running into issues with it if you're trying to produce photorealistic next gen console graphics with it, but I assure you, if you're an indie developer, you are not doing this, becaus

      • by Brulath ( 2765381 ) on Friday June 20, 2014 @08:41PM (#47286235)
        Not every game needs to be super CPU-intensive though; Hearthstone is created in Unity3D, for example, and that works super well on everything but an iPad2. Skipping C++ initially and learning to create a game in Unity3D with C# is probably a wise choice for a bunch of people, at least for prototyping and for a wide variety of games that aren't CPU-limited.
  • Head First C# (Score:5, Interesting)

    by __roo ( 86767 ) on Friday June 20, 2014 @06:59PM (#47285603) Homepage

    Warning: this is blatantly self-promotional. It's also a pretty good answer to the question, I think, so hopefully I won't get violently modded down.

    It sounds like you're exactly who Jenny Greene and I wrote Head First C# [oreilly.com] for. I played around with a lot of different ways to teach both C# language and core object oriented programming and computer science concepts, and I found that building games was easily the most satisfying way to do it.

    The only way to really learn a language is writing a lot of code, and one of the biggest challenges I had putting the book together was coming up with many different projects. The answer was games: a card games, a turn-based game, arcade games -- it turns out that building a game is a great way to keep readers motivated, especially when they're learning new concepts. I've had a lot of really positive feedback from first-time programmers who found it really satisfying to get through the book, and especially building the final project (a retro Space Invaders game).

    You can download a free PDF of the first three chapters of Head First C# from the O'Reilly page [oreilly.com] and see if you like it.

  • C#? (Score:5, Interesting)

    by Dan East ( 318230 ) on Friday June 20, 2014 @07:00PM (#47285605) Journal

    Why C#? Develop your game in C++ using OpenGL ES for rendering. Your code will compile as-is for iOS, Android, Windows, OSX, and others. You will only need a couple hundred lines of native code (java for Android, Objective C for iOS, etc) to handle events and pass execution into your C++ code. My game engine runs on all the above platforms and 99.9% of my code is shared across all of them.

    Also, these days many, many developers simply use an existing game engine and only bother with the high level code specific to their game. Mundane stuff like the low level rendering, Audio APIs (which unlike OpenGL ES, differ quite a bit from one platform to another), physics, etc, is ground that's been treaded several thousand times nowadays, and most game developers leave that stuff to the experts in the various fields to handle the nitty gritty. Optimization of those routines is usually where the "expert" part comes into play.

    I work with a game designer / artist who implements all the high level game stuff in Lua, and my engine takes care of all the aforementioned "boring" stuff, freeing him up to actually develop games, and not worry about crap like polygon tessellation algorithms and tons of other very boring stuff that would just be a waste of his time.

  • You start out saying that you have no real programming experience, but at the end say that you feel like you have a good foundation to build on. I think that is a contradiction. Serious game development benefits tremendously from a deep knowledge of computer science, and you are likely to struggle to accomplish much without a solid foundation in programming.

    With that said, I suggest you download Unity3D and play around with it. You can do a lot purely visually, and knock yourself out with as much C# scr
    • Re: (Score:3, Informative)

      by Anonymous Coward

      Yep,
      Unity - you would be surprised how many commercial games are using it. Several new independent titles like Wasteland 2, Torment: Tides of Numenera, Castle Story, Kerbal Space Program. Runs on Windows, Mac, Linux, iOS, Android. I also heard that over 50% of the mobile games are using unity (check out "The Room" and "Temple Run" for examples). The scripting language is C#. The workflow is tailored to the visual assets, so it is perfect for someone with your background. The unity engine does a lot of

    • by Shaterri ( 253660 ) on Friday June 20, 2014 @08:06PM (#47286027)

      To reinforce this: Building your own engine is a great way to fall into a trap that you won't escape for years if not decades. If you're interested in building a game, then you should build a game, and use the toolchain that lets you get to your game as quickly as possible. Right now that's a race between Unity and Unreal Engine 4, and while neither one has perfect support, I'd say the userbase for Unity is sufficiently deep that it's a better starting point. Don't worry, you'll still get plenty of opportunity to code (and to learn C# - another reason to go with Unity over UE4, if that's the language you really want), but there'll be enough that you don't have to code that you can focus on the fundamentals of building your game.

      • To reinforce this: Building your own engine is a great way to fall into a trap that you won't escape for years if not decades.

        Hahahaha - I resemble that remark!

  • by Anonymous Coward on Friday June 20, 2014 @07:07PM (#47285641)

    Forget C#. Start with Haskell and get a PHD in category theory and applied mathematics. Then study GHC internals for several years in order to figure out how to make Haskell fast enough for anything non trivial. Only approach game development once you have a solid understanding of GHC internals, endofunctors, lenses, monoids, monads, comonads, cofree, cofree comands, synergistic cold fusion, rankntypes, multi parameter typeclasses, string theory, functional dependencies, synthesized kinetic energy, generalized new type deriving, existential quantification, existential crisis, scoped type variables, GADTs, the space time continuum and have solved the halting problem. Also reimplement the entire standard library because the current one is terrible and horribly inefficient.

    Either that or pick up any of the few dozen C++, C# or Python game development books and start reading.

    • I wondered a bit recently about "game programming" and what that really means. This morning on a radio show about maker fairs, one person said her young daughter was on a one or two week game programming camp. It really dawned on me that game programming just does not mean what I think it means. But guess is that the kids must be using pre-build gaming platforms and then scripting on top of it. Similar for the weekend hackathons, they can not possibly be writing a game from scratch, they don't have time

      • by pjt33 ( 739471 )

        It really dawned on me that game programming just does not mean what I think it means.

        Do you think it means AAA FPGs and RPSes? The vast majority of games are much smaller scale than that.

        It's possible that the game programming camp is setting the children up with a point-and-click game dev engine (although I hope not); but it might well be giving them a framework like PyGame and a lot of help to get a couple of simple 2D games running. If it fosters the kind of experiences that my generation had growing up

        • It's possible that the game programming camp is setting the children up with a point-and-click game dev engine

          There's no better point-and-click game dev engine for learning than Scratch; if that's what they used, expect the kids coming out to have learned some of the logical skills involved in computer science. Syntax is easy if you've already got a good grasp on splitting up complicated problems into smaller ones, breaking smaller problems down to math and logic structures, and integrating many smaller com

          • by pjt33 ( 739471 )

            When I wrote that line, what I really had in mind was a specific platformer-creation tool which was responsible for a rash of crappy games on Kongregate a few years ago, but I couldn't (and still can't) remember the name.

  • by richardtallent ( 309050 ) on Friday June 20, 2014 @07:16PM (#47285695) Homepage

    I love C#. I program in it every day. It's plenty fast, and it's a great language.

    However, there are two reasons I would suggest looking to another language.

    First, the hottest market for gaming right now is mobile. While it's possible to compile C# for iPhone or Android using Xamarin (along with Windows and OS X), it's not exactly a native experience.

    Second, C# (like O-C, C++, etc.) is a general programming language -- it's not in any way specific to the domain of game programming. So, while it's *possible* to design complex games in any modern language, you're probably going to spend *way* too much time dealing with silly stuff like tracking graphics resources and animation loops and simulated physics. You'll have a higher chance of success if you use a language and platform that is more game-specific out of the box.

    I would suggest looking into Swift -- it'll give you access to the lucrative iOS market, it's C-like, and it has features that are game-specific. Sure, it's a new language it doesn't compile to Android, but by all accounts it looks like a great language with first-class support for gaming, so you can focus less on infrastructure code and more on the game.

    Another option would be HTML5. Depending what sort of game you're looking to build, Javascript and HTML5 may be just the ticket, and there are a number of libraries that can abstract away browser differences and assist with the plumbing needed to make a game run.

    • What's non-native about Xamarin? It gives you a higher level language, but it still exposes the native platform API directly. To the user, a Xamarin app is native.

    • by Molt ( 116343 )

      A lot of the mobile games are written using Unity which allows C# to be used on all platforms, from mobile, through PC, and even consoles if you have the dev license for them.

      The only issue with Unity is if you need the Pro version be ready to pay some serious money, but for a lot of mobile games the Indie/Free version is fine.

  • by Anonymous Coward

    Pick an engine you want to use first, then pick a language to learn that is used by that engine. Very few games now are written purely in a native language with no supporting engine, so pick a modern game engine that will do a lot of the hard, low level work for you. Then, learn the language that is used for interacting with the desired engine. For example, if you wanted to use the Unity engine, then you would basic learn C#. If you wanted to use CryENGINE, then you would learn C++ and Lua scripting. If you

  • Patterns (Score:5, Informative)

    by CODiNE ( 27417 ) on Friday June 20, 2014 @07:32PM (#47285767) Homepage

    http://gameprogrammingpatterns... [gameprogra...tterns.com]

    This site takes a subset of the "Gang of Four" patterns and explains how and why to use them in your games.

    You'll especially enjoy the command pattern which will be heavily used in an RPGSgame.

    • I would also recommend this; well-written introduction, and talks a lot about the systems-issues that come up in games programming as well.

  • The best way is to make games first, then see what language do you need later. Most games do not even need something such as C# and what might seem as " more powerful" can also be seem as "more wasted time doing something more complex than needed".
    • Then what are they built in? I've been wondering this because of a lot of stories and anecdotes about quickly built games, hackathons, etc. Is there some sort of "game builder" software that everyone uses, an update of RPGmaker that's actually useful, or...? Having been programming for 30+ years, I haven't seen any programming that is as easy as these hackathons or makerfaires seem to imply it is.

      • by St.Creed ( 853824 ) on Friday June 20, 2014 @08:31PM (#47286167)

        Surprisingly enough, there is. A lot of game developers use GameMaker to prototype games. But some of them are good enough to be published on Steam straight out of Gamemaker. And it's simple enough that my 11-yr old has been using it for his own game.

        Disclaimer: my former prof built it.

        There's also Unity3D.

        These tools take away a lot of details that used to be 80% of the work, and leave you to work on the *game*, as opposed to rendering the screen without tearing or trying to get the audiobuffer to play without clipping, or... etc.

  • Unreal 4 (Score:5, Insightful)

    by alteveer ( 979070 ) on Friday June 20, 2014 @07:42PM (#47285841)
    My advice, as a professional game developer, is "don't write code unless you need to."

    If you must write C# you should take a look at Unity, but honestly you would be remiss if you overlooked Unreal 4. It is the newest version of the Unreal Engine, and it includes most of the most important features of a game; behavior trees, navigation, user interface, physically-based rendering, animation state machines, multiplayer replication, etc. You can do most of what you want to in Blueprint (a visual scripting language), and if you really need to, you can edit the source code (the license is a full-source license) and make what enhancements you need in C++.

    Writing most of this shit from scratch will take you years, just get down to the actual MAKING of the game, and use someone else's engine. The terms are fair ($20/mo, 5% gross revenue for PC platforms and mobile), and the engine is extremely well curated.
  • I think it's interesting that you know Visual Basic, but want to get into C#. My first question would be "Why?". Both run on the same framework and both are equally capable. All you're doing is learning new syntax to do things you already know how to do. After that question is the comment "You pretty much already know C#". Sure, it's a different language from VB, but that's the easy part. It uses the same tools and libraries, so you know 95% of it already.
  • by gweihir ( 88907 ) on Friday June 20, 2014 @08:32PM (#47286173)

    Unless you want to be locked in to MS? Learn, any of the things that also work on iOS and Android and you may actually end up with an useful skill.

  • The fact that you're not already coding and Ruby couldn't hold your interest makes me wonder exactly what you want to do and why.

    If you plan to learn to code mainly as a necessary step towards creating your dream RTS then I hate to piss on your fireworks, but you're wasting your time. It's just way too much dang work and frustration for something you don't find interesting and exciting in and of itself.

    If I got the wrong idea and you do find coding interesting, forget about the RTS for a while and just worr

  • by eulernet ( 1132389 ) on Friday June 20, 2014 @08:54PM (#47286309)

    The reason for listing that stuff out, is that I want people to understand that I know what I'm getting myself in to, and I'm not trying to put out a not-so-subtle "help me make a game for free lol" type of post

    I'm sorry, but your long list of "I did this and that" means only that you are a gamer with a few artistic skills, it has absolutely no value for game programming !

    During my 18 years of game programming, I met a lot of people that had "wonderful" ideas (it's funny how everybody has a dream game), but no skill to realize them.
    They always boasted about the fact that their idea was great, but their project never got released.

    Writing a game requires the following skills:
    1) technical skill: coding
    2) art skill: graphics/animation and sound/music
    3) gameplay skill: making the game enjoyable
    4) story telling: making a coherent game's universe
    In my life, I never met a single person with all of these skills, at a decent level.
    The most talented ones had only 2 skills.

    Firstly, before coding your dream game, try to write a very simple game. It will show you where you'll need help.
    If you are a beginner, you won't be able to code Starcraft.
    Try something related to your project, so you can increase your knowledge.

    Secondly, since most of the CPU power is spent on display and AI, you'll need to learn:
    1) how to optimize the display.
    Since the whole screen needs to be redrawn very frequently, you have to learn techniques to render fast.
    There are tons of techniques in 2D and 3D.
    2) AI algorithms, most notably path-finding algorithms if you want to program a RTS.

    Thirdly, try to build a prototype in one month.
    If you are able to build it in one month, you'll probably be able to work on your project during several months.
    It will also show that you don't lose yourself on details (non-professionals tend to waste their time on small details, thus the final goal disappears).
    If you are unable to build it in one month, it means that your project is not well defined, probably too ambitious or completely unrealizable.

    Fourthly, I would recommend to build a motivated team around your game.
    This is a virtuous circle: when your motivation will decrease, they'll encourage you and when they'll get demotivated, you'll encourage them.
    Nowadays, I believe that it's impossible to write a game alone, unless your game is very simple.
    Find people who believe in your project and who may help you.

    • I first want to say that I agree with much of what you've said, especially about starting small.
      But...
      Notch has shown us (yet again) that #3 is really the only one that matters.
      Early Minecraft was not well coded. It still doesn't have great graphics or sound (though I do like the music) and there really isn't much of a story.
      You don't even have to play the story part of the game to have hours and hours of fun and Mojang is doing quite well for themselves.

      • You are building a rule from a single example.

        Notch is an exception, and I have a famous counterexample: Carmack/Romero.
        Romero focused on gameplay while Carmack focused on technics.
        When they split, Carmack continued to produce hits, while Romero had a lot less success.

        What I wanted to say is that you'd better be excellent in a domain, but you cannot expect to succeed if you can't find people to address your weaknesses.

        About Notch, he focused on a concept, like some rare authors. I met 2 of them in my life,

      • Actually I think Minecraft has excellent graphics, the pixel art is very well done. That's all it targets anyway, not realism or high-poly models. The sound deparment...well, it's mostly pretty good, but some of the monster grunts have somewhat "homebrew" characteristics to them. :)
  • I started by working with the Quake 3 engine and seeing what I could do to it. I wound up modifying the guns by adding new firing modes, modifying how the camera a little and learned how to add effects to the game.

    Then I messed around with the trigger editor in Starcraft.

    Then I messed around with the trigger editor in Warcraft 3 and made a lot more complex things, including implementing the character progression system from a single game from a popular Japanese RPG series -- which shall remain nameless
  • Other people have suggested how to learn the basics of a language, so I'll ignore that problem.

    Designing and writing good code is an art form. There are many anti-patterns you may fall into that could doom your project that a more experienced developer can help you avoid.

    A couple hours a week spent explaining your design before you start writing code, or helping to track down why your code doesn't work as expected, or reviewing the code you believe is finished, will save you days of wasted effort.

    Structu

    • Oh, and point 1.5 should have been; Source control!.

      When you get something working, commit it. It's like the scientific method, if you can't reproduce something it doesn't exist. Source control gives you confidence to experiment, knowing that you can easily undo everything without losing something that you know works.

  • H1B and the will to work 60-80 hours a week with no OT pay.

    And you just need to be a sub par coder as well.

  • by Weaselmancer ( 533834 ) on Friday June 20, 2014 @10:51PM (#47286733)

    Google.

    I'm 100% serious. I learned C# that way and wound up writing the application code for a product that sells for about 5 million a year.

    Here is your task, since you're interested in making games. Make a game of pong in C#. Use Google to look up how to do it. Start with a hello world program. Then make a program with a form. Then figure out how to paint to it. Keep going.

    At the end of the pong game you'll know enough to be dangerous. Good luck!

    • by tomxor ( 2379126 )
      Good advice, make pong then make something marginally more complex and repeat. Then when the OP knows enough he will probably have to re imagine his original concept anyway.
      • I've been thinking about this, as my daughter has asked me to teach her some programming, and quite honestly, the progression of games in real life is perfect.

        Make pong. Make death race 2000. Make Asteroids. Make Space Invaders. Make Tetris. Make a platform jumper with static screens with transitions at the edges. Make a side-scrolling jumper. Keep working your way up.

        • My six year old son spends a lot of time on this learning-to-code site. I think his kindergarten teacher introduced him to it. It's probably the best thing I've ever seen for teaching kids coding.

          Click on a starter project. Click the green flag to run the program. Click "See Inside" to look at the code in their editor. It's visual, easy to read, and quite elegant.

          It really is a completely fantastic site. Brilliantly done.

          scratch.mit.edu [mit.edu]

  • Try Beginning Game Programming with C# [coursera.org]
    About the Course
    The Beginning Game Programming with C# course is all about learning how to develop video games using the C# programming language. Why use C# instead of C++, Java, ActionScript, or some other programming language you may have heard of? First, using C# lets us use the Microsoft XNA and open-source MonoGame frameworks, which help us quickly develop games for Windows, Android, iOS, Mac OS, and others. Second, the Unity game engine is very popular with in
  • It's free. It's fun and there is a large community of people doing tutorials and videos and answering questions.
    Just dive in.

  • I was thrown into the deep end with C# best way to learn it is to do it, that should be a no shit for anyone who has written in any language ever

    programming a game however requires a totally different way of thinking about the problem at hand, and it doesnt matter the language, its the methodology of writing a game, just like writing a db app is different from writing a website

    quit asking dumb questions, its a new to you language, do what you can and figure it out, god knows there's enough resources out the

  • Settle down there buddy. Making something small and simple in scope. It's your first game - it's going to suck.
  • by BlackHawk-666 ( 560896 ) on Saturday June 21, 2014 @07:11AM (#47287743)

    If you really want to learn to program games, start with Lua instead of C# or C++. It's a tiny little scripting language that can be learnt in a few hours and is used by an enormous number of game development companies. Lua is often tasked with providing a UI for the game, logic flow, rapid prototyping of features, anything really except for the critical loops - which are all handled in C++.

    Once you have Lua under your belt you should learn C++, because at the heart this is what all performance sensitive games are written in. The game engine will be a mess of tight, sometimes obscure C++. If you want to make changes that are at that level then you absolutely need to be able to write C++.

    Finally, think about learning C# if it's supported by the game engine you have chosen to use for your game. It should perform about the same speed as the Lua code and it's used for the same tasks - game logic, etc.

    Since you're a beginner, I'd recommend you go with either Unity or Unreal Engine as these are both easier to learn and have a lot more community support. Unreal Engine now comes with the complete source code in C++, so you can take a solid look under the hood and see what's happening in there. CryEngine is moving towards releasing more of their source code, but are not there yet.

    Really your first question should be which language to learn, but which engine to learn. The engine will dictate which languages you need to learn from there.

  • You have a more important problem than which language to chose. The most striking thing about your post is it sounds like you have grand designs for a game (your first game) and that's a bad thing. What you are doing is what almost every new game developer attempts to do... or at least thinks about: going in too big, running before you can walk, building a supersonic jet before you've built your first paper plane etc etc...

    Sure you have programming experience and sound design and 3D modeling experience. But

  • Hasn't anyone noticed that? Rithet there in the right up? C# is more like Java. Either that is a typo or the poster is clueless. So what what does the poster really want, a C# like language or a C/C++/Objective C type language?

  • So I, like many people, want to make my own game. Outside of MATLAB, Visual Basic, and LabVIEW I have no real programming experience. I initially started with Ruby, but after doing my homework decided that if I ever wanted to progress to a game that required some power, I would basically need to learn some form of C anyway. Further digging has led me to C#. The other parts of game design and theory I have covered: I have ~8 years of CAD modeling experience including Maya and Blender; I have a semiprofessional sound studio, an idie album on iTunes, and am adept at creating sound effects/music in a wide variety of programs; I'm familiar with the setbacks and frustration involved with game development — I beta tested DotA for 9ish years; I already have my game idea down on paper (RTS), including growth tables, unit types, unit states, story-lines, etc. I've been planning this out for a year or two; I will be doing this on my own time, by myself, and am prepared for it to take a couple years to finish

    I don't have any gaming programming experience and a lot less programming experience than you do already.

    You mentioned a lot of details but failed to mention if you'll be targeting a particular platform. For instance: will you release you game for sale/free? Is a mobile version ever a possibility? Will you release it for the "Windows Store"? Steam? Both? Neither? Is this just a hobbie no one else will ever see? A resume bullet point?

    Anyway, speaking not as somebody who has done what your describing but

I tell them to turn to the study of mathematics, for it is only there that they might escape the lusts of the flesh. -- Thomas Mann, "The Magic Mountain"

Working...