Author Topic: What language is used?  (Read 5753 times)

jaqdrako

  • Guest
What language is used?
« on: February 10, 2009, 03:13:56 PM »
Hi I was wondering what programming language is used to Dyson.

The game seems very good and very funny.

Good job

Alex

  • Administrator
  • Ent
  • *****
  • Thank You
  • -Given: 3
  • -Receive: 14
  • Posts: 1,035
Re: What language is used?
« Reply #1 on: February 10, 2009, 03:32:47 PM »
Thanks jaqdrako!

The game is programmed entirely in C#. It makes development very easy and fast. I love it to bits and can barely face going back to C++ at work now.

jaqdrako

  • Guest
Re: What language is used?
« Reply #2 on: February 10, 2009, 04:27:13 PM »
Well, this very well echo the game.

Sorry if there are misspelled words
The reason is that I'm using a language translator

I am learning to program at this time

sfericz

  • Guest
Re: What language is used?
« Reply #3 on: February 10, 2009, 07:32:35 PM »
Thanks jaqdrako!

The game is programmed entirely in C#. It makes development very easy and fast. I love it to bits and can barely face going back to C++ at work now.

How would you rank C# to Lua? (Wondering, because I'm learning Lua now, but would rather go to C# if its the smarter move.)
Also have you ever worked with OpenGL?

This game runs like a champ. You must have some clean C# code in there.


jaqdrako

  • Guest
Re: What language is used?
« Reply #4 on: February 10, 2009, 08:02:25 PM »
I like to learn to program in C # language and is always a
Very strong language.

Any recommendation on C #?

Alex

  • Administrator
  • Ent
  • *****
  • Thank You
  • -Given: 3
  • -Receive: 14
  • Posts: 1,035
Re: What language is used?
« Reply #5 on: February 11, 2009, 04:30:05 PM »
sfericz: OpenGL is the only graphics API I know :) Dyson runs in OpenGL. Lua is a bit different to C# as it's typeless. C# is closer to Java than to Lua. Lua is however very powerful and flexible, and loads of people use it as the game logic code layer on top of their engine code, which is a really good idea.

jaq: The best resource for games is probably the XNA Creator's Club. There is tons of shared code there and it's all in C#. Alternatively get hold of the O'Reilly C# books, they are excellent.

jaqdrako

  • Guest
Re: What language is used?
« Reply #6 on: February 12, 2009, 04:55:57 PM »
Thank you very much for the information.

Visit the website of XNA Creator's Club

laserbeam

  • Guest
Re: What language is used?
« Reply #7 on: August 26, 2009, 03:12:41 PM »
I'm trying to learn some openGL programming but i find it pretty much annoying.
I was wondering if you used openGL directly or found some 2D engine to do the dirty work for you. If you used a 2D engine... is there a wrapping for C++ for that engine (i hate C# basicly because it's made by microsloth and it's just stolen java...)?
Could you also recommend me a good book on the subject?

Off topic... is dyson open source? because i REALY want to read it : D... but i can't find it : (.

Alex

  • Administrator
  • Ent
  • *****
  • Thank You
  • -Given: 3
  • -Receive: 14
  • Posts: 1,035
Re: What language is used?
« Reply #8 on: August 27, 2009, 05:11:44 PM »
Lots of people have asked for the source, so we might open it up after release.

All drawing done in raw OpenGL. Most of what I know I learned from nehe.gamedev.net.