Page 1 of 2

What Language is used to program Distant Worlds?

Posted: Sun Aug 08, 2010 8:41 pm
by tornnight
C++, C, C#. Some combination?

RE: What Language is used to program Distant Worlds?

Posted: Mon Aug 09, 2010 4:18 am
by impact
It is VB if I am not mistaken.

RE: What Language is used to program Distant Worlds?

Posted: Mon Aug 09, 2010 10:59 pm
by tornnight
Really? I find that hard to believe.

RE: What Language is used to program Distant Worlds?

Posted: Mon Aug 09, 2010 11:25 pm
by impact
When DW came out, I had a critical error once. I think I saw a bit of VB stuff in the call stack.
Either way, it doesn't really matter - .NET is .NET. So if you use VB or C# or whatever doesn't really make a difference. It all results in CIL/CLR anyway.

RE: What Language is used to program Distant Worlds?

Posted: Tue Aug 10, 2010 2:44 am
by Wade1000
I wish I spoke Greek... and Mandarin.

RE: What Language is used to program Distant Worlds?

Posted: Tue Aug 10, 2010 2:54 pm
by Wenla
ORIGINAL: Wade1000

I wish I spoke Greek...

This is one of my hobbies. A great reason to visit at Greece every year...

RE: What Language is used to program Distant Worlds?

Posted: Wed Aug 11, 2010 2:51 am
by Wade1000
Cool. That seems fun. I want to visit there too.
 
Also, in parts of the USA a person might use the term "Greek" to refer to some topic of conversation that is totally unknown to the listener.

RE: What Language is used to program Distant Worlds?

Posted: Wed Aug 11, 2010 3:31 am
by impact

RE: What Language is used to program Distant Worlds?

Posted: Wed Aug 11, 2010 3:44 am
by Wade1000
Thanks. When I'm more energized I'll browse through it and make sense of it and hope that I can have some use for it or that it will broaden my paths of thinking.

RE: What Language is used to program Distant Worlds?

Posted: Wed Aug 11, 2010 4:34 am
by taltamir
ORIGINAL: impact
When DW came out, I had a critical error once. I think I saw a bit of VB stuff in the call stack.
If I am not mistaken, that doesn't necessarily mean that the entire program is written in VB though... would be interesting to hear from the developer.

RE: What Language is used to program Distant Worlds?

Posted: Wed Aug 11, 2010 11:16 am
by Wenla
ORIGINAL: Wade1000

Also, in parts of the USA a person might use the term "Greek" to refer to some topic of conversation that is totally unknown to the listener.

Over here in Finland we say in that case that "It is Hebrew for me".

RE: What Language is used to program Distant Worlds?

Posted: Wed Aug 11, 2010 11:39 am
by Erik Rutins
Hi guys,

For those who are curious, DW was developed with C# in Visual Studio 2005. The external dependencies include Media Player and DirectX.

Regards,

- Erik

RE: What Language is used to program Distant Worlds?

Posted: Wed Aug 11, 2010 5:24 pm
by taltamir
thanks erik, that answers that one then :)

RE: What Language is used to program Distant Worlds?

Posted: Wed Aug 11, 2010 5:34 pm
by scotten_usa
Real programmers use COBOL!! [:D]

RE: What Language is used to program Distant Worlds?

Posted: Wed Aug 11, 2010 5:51 pm
by taltamir
Image

RE: What Language is used to program Distant Worlds?

Posted: Wed Aug 11, 2010 11:20 pm
by Shark7
ORIGINAL: taltamir

Image

Actually real programmers usually end up fixing the mess some guy before them made. [:D]

RE: What Language is used to program Distant Worlds?

Posted: Thu Aug 12, 2010 12:06 pm
by michaelm75au
Too true [8D]

RE: What Language is used to program Distant Worlds?

Posted: Tue Aug 17, 2010 3:30 am
by the1sean
LOL, and real programmers hate quality assurance testers [;)]

RE: What Language is used to program Distant Worlds?

Posted: Tue Aug 17, 2010 6:30 pm
by JonBrave
ORIGINAL: impact

Either way, it doesn't really matter - .NET is .NET. So if you use VB or C# or whatever doesn't really make a difference. It all results in CIL/CLR anyway.

Whilst it's true that the end code all ends up as CIL/CLR, I don't agree at all with your assertion that the source langauge "doesn't really matter".

RE: What Language is used to program Distant Worlds?

Posted: Wed Aug 18, 2010 9:04 am
by Kumppi
ORIGINAL: JonBrave

Whilst it's true that the end code all ends up as CIL/CLR, I don't agree at all with your assertion that the source langauge "doesn't really matter".

It doesn't really matter. C# and VB.NET produce the same IL code which in turn is compiled to native processor instructions by the just-in-time compiler when run.