Visual C++ .NET Standard Edition 2003

R

Roy

Hello there,

I am planning to get Visual C++ .NET Standard Edition for
creating games with DirectX. I checked out the differences
of the standard edition and the professional edition and
noticed this feature is not included in standard:

"Build and deploy professional-grade applications using a
powerful optimizing compiler."

http://msdn.microsoft.com/visualc/previous/vc6/datasheet/fe
ature.aspx

Can somebody tell me what this means and how it will
affect the speed of my compiled games? Is the compiler in
the standard edition lower quality?

Thanks
 
J

Jochen Kalmbach

Roy said:
"Build and deploy professional-grade applications using a
powerful optimizing compiler."

Can somebody tell me what this means and how it will
affect the speed of my compiled games? Is the compiler in
the standard edition lower quality?

The quality is good... except the seed is not very good..

If you want to make DX-games you should use an optimized compiler!

As I know the 'QuakeII' Demo-Src will run 30% faster with the optimized
compiler...

--
Greetings
Jochen

Do you need a memory-leak finder ?
http://www.codeproject.com/useritems/leakfinder.asp
 
S

Serve Laurijssen

Roy said:
Hello there,

I am planning to get Visual C++ .NET Standard Edition for
creating games with DirectX. I checked out the differences
of the standard edition and the professional edition and
noticed this feature is not included in standard:

"Build and deploy professional-grade applications using a
powerful optimizing compiler."

http://msdn.microsoft.com/visualc/previous/vc6/datasheet/fe
ature.aspx

Can somebody tell me what this means and how it will
affect the speed of my compiled games? Is the compiler in
the standard edition lower quality?

It only matters if you want to create cutting edge games and my guess is
that you won't.
On top of that, expect the most important optimizations to be done in
DirectX and the video hardware you're using. And if it turns out that you
end up with a slow game, don't blame the optimizer immediately, you probably
did something wrong in an algorithm.
 
R

Roy

The quality is good... except the seed is not very good..

If you want to make DX-games you should use an optimized compiler!

As I know the 'QuakeII' Demo-Src will run 30% faster with the optimized
compiler...

Thanks for the replies.

Isn't there a professional version of just Visual C++.NET?
AFAIK, the pro features of VC++ are only included in
Visual Studio but I dont need all the other languages.

Is there an alternative to VC++ on the windows platform
with a better compiler than VC++.net Standard? How about
Codewarrior Pro?

Cheers.
 
L

Lars-Inge Tønnessen

I have used CodeWarrior 3,4,5 Pro for Windows (and Linux). I gave it up. It
had alot of bugs in the IDE. It's nice for Java development.

You could try the Intel compiler. It integrates with Visual Studio 6.0 and
..net. It has a retail price of $399. 15% faster integer performance, 31%
faster floating points.

Free trials here 30 days:
programmersparadise.com/intel/msd


Lars-Inge
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top