do we need to learn/master assembly....

Started by
10 comments, last by mickey 22 years, 3 months ago
to be very good in game programming? does all professional game programmers know assembly? pls don''t say yes.... ASM == Assembly right?
http://www.dualforcesolutions.comProfessional website designs and development, customized business systems, etc.,
Advertisement
Nah, I don''t think assembly language is necessary anymore if you program PC games. Its a good idea to know a bit about the underlying hardware, but I don''t think its necessary to actually know assembly language. In this day and age of hardware acceleration and faster CPU''s, the gain in speed of assembly is negligible. Perhaps if you were making a software render for slower computers you would need it. I think its necessary for some console programming, e.g. GBA, ps2
mickey: assembly programming is much easier to understand than c++ because it has much fewer things too learn(I''m speaking of mode 13h assembly here). Most people in most programming jobs never need to write any because it isn''t very portable and doesn''t improve speed like it used to.

To be good in game programming you need to practice lots and lots of c/c++. That''s fundamental and that''s what you should worry about.
*********-.o-**********
wow thanks thanks! that''s good to hear from you guys... whew thought i still need to learn those things, learning DX is just getting harder and harder each passing lesson...
http://www.dualforcesolutions.comProfessional website designs and development, customized business systems, etc.,
I saw a job with westwood and it said

requirements:
3 years experience C/C++
2 years assembly language
1 previously published title

or something like that.....
Westwood Studios is also far from your model company.

----
Herb M. (mdfmKoRn)
www.sky-meyg.com
s3202@attbi.com
asm is not needed, althrought it''s good to know what''s really happening while your code is running. I would say master C/C++ and then try out at least some basic asm stuff, it''s fun and lets you understand a lot of things like how hardware works etc. which might get handy from time to time, even if you don''t do any asm optimizations.

With best regards,
Mirek Czerwiñski
http://kris.top.pl/~kherin/
With best regards, Mirek Czerwiñski
Just to throw my two cents in...


You can write a high-quality professional level game on any modern system (except perhaps the PS2), without using any assembly at all. It can help you code some bits more efficiently, if used wisely, but all-in-all modern compilers and CPUs do a fine job with C/C++.

Learn C/C++ or whatever other language you prefer as well as you possibly can. Don''t worry about assembly for now. It can help you in the future if you learn it (at the very least, you''ll have a much better idea of what happens to your C/C++ code after the compiler gets it..this can help you optimize your code even if you don''t drop into assembly).

Also, don''t be ''scared'' of assembly. Garott is correct in that assembly is simple to learn. The problem with assembly isn''t that its difficult to learn how to use (once you get past the jargon -- registers, accumulators, blah, blah -- it couldn''t be simpler), the real problem is that programming in assembly is incredibly tedious for large projects because you''re working at a lower level...

To put it another way, consider a language like English...now remove all words from English except for say, 500 basic words. If you choose those 500 words carefully, you could use them to express the same ideas as you can express with English as a whole language.. And learning 500 words is, at its core, easier than learning all the words in the dictionary. However, now that you''re only using 500 words, you may have to write or speak a lot more words to get your point across because you won''t have access to less common words that can express an idea in a shorter amount of space. Assembly is the same way, compared to HLLs like C/C++. Its very easy to learn the concepts of assembly, because its generally just basic math ops and pushing memory bits around... But since the toolset is so basic, it can take you quite a lot of effort to do something meaningful with it.

NO!.



What the hells!
What the hells!
And not only that, but if you use a compiler like VC++ it will already add in optimized assembly in your release build. So there is rarely a time nowadays where you need to code assembly.

This topic is closed to new replies.

Advertisement