What technology was used to develop this awesome game?

I’m trying to write closs platform myself, and this seems like an awesome example of it. Could you share a bit? Is it mono? C++ with portability layers?

1 Like

The game seems written in javascript, probably with visual studio 2013 (mono actually does not support windows 8 app developement).

I too wouldnt mind knowing this.

javascript - interesting. So in Linux and OSX it runs in a browser?

Looks like it’s created with node-webkit, at least the Mac version is running it

Judging from error messages, I think it’s built on top of Chromium.

Node-webkit is a packaged form of the Chromium library, so yes it includes a browser. Window 8 ‘Modern UI’ apps can natively run JS, so this package wasn’t needed. The game itself uses CreateJS for it’s sound and animations.

http://community.createjs.com/discussions/show-tell/18-game-dev-tycoon-our-windows-8-game-created-with-createjs

3 Likes

Correct, It’s written as a HTML/JS game using createjs and powered by node-webkit.

Check out the full ‘credits’ here:

www.greenheartgames.com/credits/game-dev-tycoon/

Third Party Components

CreateJS
jQuery
jQuery UI
jQuery Transit
jQuery Timeago
jQuery SimpleModal
jQuery TextFill
jQuery ArcText
jQuery WipeTouch
Mersenne Twister
Font Awesome
Open Sans

Native Windows, Mac and Linux versions powered by node-webkit.

3 Likes

Thanks Patrick!
This is exactly what I wanted to know.