Wanderer

Show off your games, demos and other (playable) creations.
User avatar
kikito
Inner party member
Posts: 3153
Joined: Sat Oct 03, 2009 5:22 pm
Location: Madrid, Spain
Contact:

Re: Wanderer

Post by kikito »

Excellent explanation, thanks (I recommend putting some of that in your devlog - ¡content!)

I can see why you have gone with the "splitting worlds" route. I would have probably used a single world for everything and a filter in the grab box ("when I'm going right, I ignore everything except left ledges. And viceversa"). This will probably be a bit slower (almost certainly insignificant) but it removes two worlds in exchange of one "if" in a filter function, which seems like a good trade. But of course I don't know all the details.
When I write def I mean function.
User avatar
Fenrir
Party member
Posts: 222
Joined: Wed Nov 27, 2013 9:44 am
Contact:

Re: Wanderer

Post by Fenrir »

About splitting worlds, actually I just went this route because when I wanted to add my ledge boxes to the main world, I noticed that I had no specific object for them, they are part of my Collider class, and it ruined lots of my mechanics if I was not able to add them with an object inheriting from my entity system. So with multiple worlds, I can add them to their world binded to my Collider object without conflicting with the proper collider shape. Same with the player, in the ledge worlds it's only represented by his grab box and in the main world it uses his full collision box, everything directly binded to my player class.

And finally I used this system for multiple scenarios (also for pathfinding for instance, I have a specific world for it), which means that for each screens I have multiple bump worlds each with their own purpose. I'm still far from having any performance issues yet, it's only to fit with my current architecture that I took this path. :)
User avatar
BadLuckBurt
Prole
Posts: 6
Joined: Mon Oct 07, 2013 2:05 pm
Location: Netherlands

Re: Wanderer

Post by BadLuckBurt »

I wish you the best of luck on this. It looks great and I like the variation in characters a lot, they're very distinct from one another.
User avatar
T-Bone
Inner party member
Posts: 1492
Joined: Thu Jun 09, 2011 9:03 am

Re: Wanderer

Post by T-Bone »

I would definitely consider backing this - it looks really neat and moody.
User avatar
Fenrir
Party member
Posts: 222
Joined: Wed Nov 27, 2013 9:44 am
Contact:

Re: Wanderer

Post by Fenrir »

T-Bone wrote:I would definitely consider backing this - it looks really neat and moody.
Thanks a lot! :) We're currently working a lot on preparing the campaign, we'll start in a few month by doing a Collective campaign on the Square Enix platform before doing the Kickstarter one:
http://collective.square-enix.com/
I hope we'll get a demo ready for it but it won't be easy, the priority will be to get the best video possible.
User avatar
vynom
Prole
Posts: 28
Joined: Sat Oct 05, 2013 4:42 pm
Location: Teh Interwebz
Contact:

Re: Wanderer

Post by vynom »

The graphics look amazing, especially like the camera functionality youre using!
User avatar
Fenrir
Party member
Posts: 222
Joined: Wed Nov 27, 2013 9:44 am
Contact:

Re: Wanderer

Post by Fenrir »

Hey guys,

These last few days I've been implementing the "shield" system for the game, you can get more details about it here:
http://forums.tigsource.com/index.php?t ... msg1143147

I'll try to describe a bit more how it works! So first of all, here is the final result:
Image

To achieve it, I went through a multi-pass system using canvas, the first step was to render my character sprite into a canvas and apply to it an outline as well as rendering it with a single color:
Image
It's not yet noticeable but I applied an outline, for instance have a look to this great article about it:
http://blogs.love2d.org/content/let-it- ... characters
I actually wasn't able to follow it as my outline needed to be outside the original sprite, so it's a bit different but the idea stays the same.

The next step was to apply a gaussian blur to my current result:
Image
For an example of blur implementation, don't hesitate to have a look to this amazing library for LÖVE:
https://github.com/vrld/shine
My implementation is actually based on it.

Then I rendered back my outlined version of the sprite on top of the blurred one:
Image

And now I can render my regular sprite on top of everything to just keep the outline and the glow:
Image

Finally I apply a last shader to my sprite to add a blue-ish overlay on top of it:
Image

And to make it pulse I just animate a bit my blur opacity. Here is another version used when the shield is "pulsed" (when we try to absorb an attack to recharge the shield):
Image
It's exactly the same system, just with a different color and some other values for the outline or blur.
User avatar
I~=Spam
Party member
Posts: 206
Joined: Fri Dec 14, 2012 11:59 pm

Re: Wanderer

Post by I~=Spam »

Cool! Very nice creative way to get a force field look! I wonder if there is a way to do this using only shaders? I have a feeling that there is but I don't have any experience with shaders and the method you're doing works just fine and looks great! ;)
My Tox ID: 0F1FB9170B94694A90FBCF6C4DDBDB9F58A9E4CDD0B4267E50BF9CDD62A0F947E376C5482610
User avatar
Fenrir
Party member
Posts: 222
Joined: Wed Nov 27, 2013 9:44 am
Contact:

Re: Wanderer

Post by Fenrir »

I~=Spam wrote:Cool! Very nice creative way to get a force field look! I wonder if there is a way to do this using only shaders? I have a feeling that there is but I don't have any experience with shaders and the method you're doing works just fine and looks great! ;)
Thanks! And actually I'm using shaders on all passes I do (1 pass with the outline shader, 2 passes for the blur with a vertical and horizontal one, a last one to merge everything and apply the blue-ish overlay from a shader too). It can surely be optimized but I'll see later for that, it's not yet my priority.

In other news, our brand new website is online ! :)
http://www.wanderer-game.com
Germanunkol
Party member
Posts: 712
Joined: Fri Jun 22, 2012 4:54 pm
Contact:

Re: Wanderer

Post by Germanunkol »

Oh wow, you've taken that glow effect to a whole new level.
I'm glad someone got inspired by the post :)!
That looks really awesome - absolutely professional shield effect. Well done!
trAInsported - Write AI to control your trains
Bandana (Dev blog) - Platformer featuring an awesome little ninja by Micha and me
GridCars - Our jam entry for LD31
Germanunkol.de
Post Reply

Who is online

Users browsing this forum: No registered users and 11 guests