Back to Cool Stuff:D

Hello Everyone,

here we are back to really cool stuff. First of all, we are starting our new engine, we have a current code name: Unleashed Engine 2D. As you can see by name, it is 2D, but this doesn't mean that we are rendering only in 2D, but it is directed for 2D gameplay.

We are planning a some nice features, but for now, the coolest is an editor with real-time intercession.
More Desired Features:
- Avatar Support
- Generic Physics Wrapper (until now, it is wrapping the basic functions of Box2D and Farseer)
- Cool pre-created cams
- Post Processing in a easy way
- Animated Sprites and an Editor
- And some others that will appear:P

We are only in beginning, but experimental version is almost done and we will make a stupid demo to test it and of course, it will appear right here.

Another thing that I'm doing and that will be posted in next days/weeks, is an Async Resource Manager! What is it? It is a simple extension to ContentManager. If you already played Halo, you probably have noticed that mid-level loadings are very fast and silent. So I want this kind of loading in my games and this resource manager open this doors for me (I think).
I did it in this weekend and preliminary results are very good.

But, what it does?
- First you need to subdivide yours assets in groups. (Levels, Checkpoints or other else division, you probably think that is fine for you)
- You subdivide that groups using requests. A request is a List of assets ID, Path and Type.
-When you create some group, you want to pass a Callback to be called when manager finish the loading of that group.
- Finally when you think that you will need some resources soon, you call GetResource(name). Manager loads the resource in another thread and callback your application when finishes. So in meantime, the player can continue playing or if it reaches the point where you need to swap resources, you can present a little loading screen, while manager do not finish its work.
- And Yes, you can and you must call Unload(group) or Unload(resourceName) when you think that is desirable.

I'm preparing the sample and fix some minor bugs:) I'll post the source as soon as possible.

Stay tuned

top