Users browsing this thread: 1 Guest(s)
Medieval Food Fight!
#7
I'd advise swapping over to monogame, its essentially a fan continuation of XNA to run on multiple platforms, I moved my latest projects over to it, it doesn't take much, a few references changed and some changes to spritebatch calls.
Its still being developed and to my knowledge is open source, so if you would like to expand it yourself you can.
its also been designed for developing android, IOS, Mac and Linux games, this in mind it does mean OpenGL is run instead of D3D, but this is good as in many cases OpenGL can be faster than D3D and as already stated runs on other platforms.
the swap over is seamless for the most part with the exception of no content processor (but you can use Texture2D.FromStream and SoundEffect.FromStream which in many cases can prove themselves more efficient than the content processor anyway)
I'd advice to handle this problem for you make an AssetManager, which keeps assets like textures and sounds in dictionaries which keep their file paths, so if the file is already loaded it will instead return the already loaded asset, its what I do and it works fairly nicely.
Thanked by: Natis, Phaze


Messages In This Thread
Medieval Food Fight! - by Natis - 02-18-2013, 07:20 PM
RE: Medieval Food Fight! - by puggsoy - 02-19-2013, 05:21 AM
RE: Medieval Food Fight! - by Sunlight - 02-19-2013, 12:16 PM
RE: Medieval Food Fight! - by Natis - 02-19-2013, 02:22 PM
RE: Medieval Food Fight! - by Sunlight - 02-19-2013, 02:56 PM
RE: Medieval Food Fight! - by TheShyGuy - 02-19-2013, 03:17 PM
RE: Medieval Food Fight! - by Bombshell93 - 02-20-2013, 09:44 AM
RE: Medieval Food Fight! - by Natis - 02-20-2013, 11:35 PM
RE: Medieval Food Fight! - by Bombshell93 - 02-21-2013, 04:18 AM
RE: Medieval Food Fight! - by Natis - 02-21-2013, 04:19 PM
RE: Medieval Food Fight! - by Bombshell93 - 02-21-2013, 05:16 PM

Forum Jump: