Page 1 of 1

MonoGame

Posted: Mon Dec 30, 2013 5:15 pm
by hallsofvallhalla
Anyone used MonoGame or currently use it? Any comments suggestions?

Re: MonoGame

Posted: Thu Jan 02, 2014 6:29 pm
by Jackolantern
Yes, I have used it. I was really turned-off by how "frankenstein" the tools were at the time. You had to have just the right version of VS, everything had to be installed just right, and every time you started a new project, you would have to start another pure XNA project with all of your assets to send them through the pipeline, and then extract them from that project and move them to the MonoGame project. There were a few other things like this as well.

However, all of these things they were supposedly working hard on fixing, and a ton of big-name games have been made with it, so perhaps they have sorted it out, or it is worth the effort if they haven't.

Re: MonoGame

Posted: Fri Jan 03, 2014 5:02 pm
by a_bertrand
I never tried MonoGame, but any Mono based solution stink for me. I tried multiple times (with many many different versions of Mono) to run things on Linux and had always very poor stability and performances. For me Mono is a no go. But if you get better results let me know.

Re: MonoGame

Posted: Fri Jan 03, 2014 9:55 pm
by Jackolantern
I could be wrong, but I am not sure if MonoGame is actually any relation to the larger Mono Project.

Re: MonoGame

Posted: Sat Jan 04, 2014 5:42 am
by a_bertrand
Beside the name which would tell me so, how would it work outside of windows if it's not for mono under?

Re: MonoGame

Posted: Sun Jan 05, 2014 9:15 pm
by Jackolantern
I'm sorry, you are probably right. I am thinking of Xamarin, which is a commercial extension project to MonoGame. Xamarin runs MonoGame projects on iOS, Android, etc., and does not run on the Mono runtime.

In fact, all my comments here have been about Xamarin. I have not used MonoGame by itself.

Re: MonoGame

Posted: Mon Jan 06, 2014 9:05 am
by a_bertrand
I'm far from being sure Xamarin do not share the same stuff under as Mono... as it's the same people which developed Mono which are building Xamarin... At least so it look like. So for me they took the same infrastructure / libs and made some custom work on it to make it for mobile.

Re: MonoGame

Posted: Mon Jan 06, 2014 3:05 pm
by hallsofvallhalla
thanks for all the comments here. They helped a ton.

Re: MonoGame

Posted: Mon Jan 06, 2014 9:46 pm
by Jackolantern
a_bertrand wrote:I'm far from being sure Xamarin do not share the same stuff under as Mono... as it's the same people which developed Mono which are building Xamarin... At least so it look like. So for me they took the same infrastructure / libs and made some custom work on it to make it for mobile.
They likely leverage the same code, but the runtime is not the same, since there is no Mono runtime for iOS or Android. And the runtime is what determines stability, performance, and the other things you have cited as issues with Mono.