Click here to Skip to main content
15,886,026 members
Articles / Mobile Apps

MonoGame goes Portable

Rate me:
Please Sign up or sign in to vote.
5.00/5 (1 vote)
19 Feb 2013CPOL7 min read 8.5K   5  
MonoGame goes portable

Image 1

While I was putting together the MonoGame solution for shocking effect, you did seem to get the feeling you were building your game for several platforms, there’s a fair bit of too’ing and fro’ing, pulling parts of the project together and one of my least favourite porting practices, the COPY project.

Yes, having the exact same code files re-used on several projects sounds great until one of those projects needs a different using, or requires you to use the same parameter in a different way or God forbid, require additional parameters for certain functions.

Portable libraries are one of the saviors from this practice by constructing a project that can be consumed by several different project types or platforms with a single codebase, the main difference is that it is one code base used in a single way, the portable framework does not let you exceed these boundaries and keeps you in check. Got something that is platform specific, then keep it on that platform and not clutter up the central core of your app or game.

The main problem here with MonoGame as it wasn’t possible to do this, until now…

First a Warning!!

Image 2

Please note that this is my own work and while based on the original MonoGame development branch and (as far as I can tell) is still completely compatible with the core of MonoGame, you should only use this as a Proof of concept in Live projects until such time as this or another approved solution by the MonoGame team comes along.

It’s not my ideal portable solution as MonoGame hasn’t been written to be portable at present, its core focus is to keep a familiar flexible code base, based on the aging XNA framework to allow to re-use your projects across multiple platforms (note I say re-use as effort is still required).

MonoGame is a fantastic achievement and if are like me, you are passionate about such things (and can code as this will help) then get involved and see how you can benefit the platform!!

Why Be Portable?

Image 3

As the old saying goes, if it ain’t broke, why try to fix it?

Well, at present, the MonoGame code base (and most likely any solution you build using MonoGame) is very singular for almost all platforms, they are very intertwined and components are swapped out, changed or just extended to try to provide flexibility to accommodate an ever changing directory of needs.

There’ nothing particularly wrong with this practice but, over time, your code becomes very complex, trying to fix issues with one platform can severely impact another without knowing it (unless you test all builds on all platforms after every commit), basically having so many flavors of pie in one pan soon becomes very hard to differentiate which pie is which.

Portable libraries help with this by having the “core” of your project in one place that works one way and keep platform extensions with each platform and if you are sensible about it, then the core never even knows this is going on.

Granted you could potentially create the same thing with multiple smaller projects and just keep swapping things out, except that if you add something another platform doesn’t like, you won’t know until you test on that platform. Portable libraries prevent this as they only allow functions that will work on ALL configured platforms, hence protecting you from yourself.

Want to know more, then try out some of these resources:

Be aware though, a portable library enables you to develop a very simple and central shared project, you won’t however be able to actually run your project without at least one platform to run it on, the portable features just make enabling the project on other platforms a snap.

What we are aiming for with the use of a Portable Class Library is something like this:

image

Back to the Show

So what difference does this really make, well let’s spell out the two main differences it makes with MonoGame projects

1. Project Make-up

The first main impact is how you layout or manage your multi-project solution (The MVVM cross presentations above do a much better job of explaining this, but here goes).

The Project Portfolio

With current practices, you will most likely have something like this:

image

Depending on whether you link the core files for your project or just copy them, you have several solutions for each platform with more code to manage / integrate when you are considering each platform. In its worst case scenario (just copy projects), a single bug fix to core code has to be replicated across all platforms and if there are platform specific differences in that chain, it becomes increasingly difficult.

Portable libraries ease this somewhat with their central nature.

The Portable Portfolio

image

The portable allows a single project to be associated to many others so long as you have the project targets loaded in the portable libraries (for more information on that, read up on portable libraries!!)

2. The Single Source of Truth

Portable libraries address one of the biggest headaches in multi-platform solutions because of the one simple truth, they are all different. Each platform has its own way of doing things that are generally incompatible with the next.

Now I will be completely honest, portable libraries alone will not save you here but what they can do is make the job a lot easier and how exactly what is compatible between ALL of your supported platforms and more importantly what is NOT. Try and put in something or reference a library that isn’t compatible with all platforms and you will just get compilation errors.

This ensures you put platform specific code in with a platform and central stuff in one place.

image

There is a buyer beware sign if you read up on Portable class libraries, the more platforms you add generally reduces the scope of what is truly portable, so take care.

Like I also said, it won’t solve ALL your problems, so watch a few of the videos above and read up on abstraction and lay the framework or a scalable solution. Centralise where you can, but keep it SIMPLE!

Lightning Pure and Simple

So after cleaning everything up and now using a portable library for the core of the code from the previous demos, I’m left with the following:

image

At present, I’ve left the original drawing code as my initial portable experiments were only meant to enable basic features but I seem to have managed in a fairly short period of time to enable most features of the framework in a portable library, so at this point, I could move just about all the demo code into the portable library, therefore I only need a shim in each platform project to run it (plus an additional platform features, I want to take advantage of like sharing / NFC / etc.)

The source for the series can be found here on CodePlex as well as the code drop for this stage here.

Breaking the Mold

Right, I’m taking a little break from MonoGame for a little while now and returning to SunBurn. Why you may ask, to which the obvious answer should be:

“There is something VERY interesting to see over there.”

Will report back later and show you just how electrifying SunBurn can be (Sheesh that sounds like a bad episode of MisFits Confused smile)

P.S. I’m knackered after spending a week Portablising MonoGame, LOL.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect ZenithMoon Studios
United Kingdom United Kingdom
Long-time game developer / IT maniac.
By day I architect, design, build and deliver enriching Mixed Reality solutions to clients, bringing the work of AR/VR to light in new and interesting ways, by night I Masquerade as the Master Chief of ZenithMoon Studios, my own game development studio.

At heart, I am a community developer breaking down lots of fun and curious technologies and bringing them to the masses.

I'm also a contributor to several open-source projects, most notably, the Reality Toolkit and all the services provided by the Reality Collective, The Unity-UI-Extensions project, as well as in the past the AdRotator advertising rotator project for Windows and Windows Phone.

Currently, I spend my time fulfilling contracts in the Mixed Reality space (primarily for an XR experience firm called Ethar), writing books, technically reviewing tons of material and continuing my long tradition of contributing to open-source development, as well as delivering talks, but that goes without saying Big Grin | :-D

Mixed Reality MVP, Xbox Ambassador, MS GameDevelopment Ambassador & Best selling author:

[Accelerating Unity Through Automation](https://www.amazon.co.uk/Accelerating-Unity-Through-Automation-Offloading/dp/1484295072/ref=rvi_sccl_3/262-0817396-1418043)
[Mastering Unity 2D Game Development] (https://www.packtpub.com/game-development/mastering-unity-2d-game-development)
[Unity 3D UI Essentials] (https://www.packtpub.com/game-development/unity-3d-gui-essentials)

Comments and Discussions

 
-- There are no messages in this forum --