What's everyone working on? (tigsource inspired)

General discussion about LÖVE, Lua, game development, puns, and unicorns.
styves
Prole
Posts: 5
Joined: Mon Jan 13, 2014 5:45 pm

Re: What's everyone working on? (tigsource inspired)

Post by styves »

Don't have anything to show right now (at work) but I've been mostly learning the framework.

I guess the highlight of what I've done so far that isn't your run of the mill platform gameplay is a "AAA-quality" (lol) post-processing pipeline, with:

- Deferred shading
- Atmospheric scattering backdrop (sky)
- Sunshafts
- Bloom
- HDR and filmic tonemapping
- Auto-exposure adaptation
- Film grain

Was planning to do more, like motion blur, but I haven't gotten that far yet. :nyu:

Need to work on my art skills before I put it all together into something unique and visually pleasing. ^^
User avatar
Jasoco
Inner party member
Posts: 3725
Joined: Mon Jun 22, 2009 9:35 am
Location: Pennsylvania, USA
Contact:

Re: What's everyone working on? (tigsource inspired)

Post by Jasoco »

Just something I've been fiddling with..

Germanunkol
Party member
Posts: 712
Joined: Fri Jun 22, 2012 4:54 pm
Contact:

Re: What's everyone working on? (tigsource inspired)

Post by Germanunkol »

It's funny to hear your voice. For some reason, given your avatar, I always expected you to sound more like a woman :D

The jumping looks really good, it makes the blocks almost look like they're higher, only because of the animation! Light/Shadows are also neat - are you using a shader?
But the thing I liked the most is the ghost animation when you die. Nice touch!
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
styves
Prole
Posts: 5
Joined: Mon Jan 13, 2014 5:45 pm

Re: What's everyone working on? (tigsource inspired)

Post by styves »

Started working on a lighting library for quick drop-in lighting for Lovers. Here's a screenshot. :)

Image
User avatar
SiENcE
Party member
Posts: 792
Joined: Thu Jul 24, 2008 2:25 pm
Location: Berlin/Germany
Contact:

Re: What's everyone working on? (tigsource inspired)

Post by SiENcE »

Looks nice and i really appreciate libraries :)!
User avatar
Roland_Yonaba
Inner party member
Posts: 1563
Joined: Tue Jun 21, 2011 6:08 pm
Location: Ouagadougou (Burkina Faso)
Contact:

Re: What's everyone working on? (tigsource inspired)

Post by Roland_Yonaba »

styves wrote:Started working on a lighting library for quick drop-in lighting for Lovers. Here's a screenshot. :)
Man that is sweet! Sweet!
Germanunkol
Party member
Posts: 712
Joined: Fri Jun 22, 2012 4:54 pm
Contact:

Re: What's everyone working on? (tigsource inspired)

Post by Germanunkol »

styves wrote:Started working on a lighting library for quick drop-in lighting for Lovers. Here's a screenshot. :)
I love the idea of making it "plug and play" stlye.
How about putting this into a github repo and then adding more and more shaders to it?

I'd love to contribute if I can.

It would be great to see more shaders used in Love games...
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
User avatar
Jasoco
Inner party member
Posts: 3725
Joined: Mon Jun 22, 2009 9:35 am
Location: Pennsylvania, USA
Contact:

Re: What's everyone working on? (tigsource inspired)

Post by Jasoco »

Germanunkol wrote:It's funny to hear your voice. For some reason, given your avatar, I always expected you to sound more like a woman :D

The jumping looks really good, it makes the blocks almost look like they're higher, only because of the animation! Light/Shadows are also neat - are you using a shader?
But the thing I liked the most is the ghost animation when you die. Nice touch!
No shaders. Just good old fashioned love.graphics.setBlendMode("subtractive").

Code: Select all

if self.lightLevel < 1 then
	lgr.setCanvas(self.lighting)
	self.lighting:clear(0,0,0,255 * (1 - self.lightLevel))
	lgr.setBlendMode("subtractive")
	for i, ls in pairs(self.level.lightSources) do
		lgr.setColor(0,0,0)
		local i = app.images.lights[ls.shape or "small"]
		lgr.draw(i, ls.x, ls.y, 0, 1, 1, i:getWidth() / 2, i:getHeight() / 2)
	end
	lgr.setBlendMode('alpha')
	lgr.setCanvas()
end
For reference:

I've been studying this video constantly. I'm trying to replicate the gameplay as close as possible while fixing some of the quirks. (In the game there is a delay after pressing a direction where you pause so you can turn to face an enemy without walking onto it. But it means moving around angled areas and other places just gets cumbersome. So I removed the delay and added a modifier if you want to just turn around. I even replicated the ability to turn around while jumping. Plus you can fire your weapon while jumping just like the original. And since last night I added the spears from Chapter 5: Captain Bell.
User avatar
josefnpat
Inner party member
Posts: 955
Joined: Wed Oct 05, 2011 1:36 am
Location: your basement
Contact:

Re: What's everyone working on? (tigsource inspired)

Post by josefnpat »

I've been working on a PratCam like system for DOYC.

This is just a tech demo, and I intend on getting actors for each camera, but this preview should give you an idea of what I have accomplished.

Missing Sentinel Software | Twitter

FORCIBLY IGNORED.
<leafo> when in doubt delete all of your code
<bartbes> git rm -r *
<bartbes> git commit -m "Fixed all bugs"
<bartbes> git push
User avatar
Jasoco
Inner party member
Posts: 3725
Joined: Mon Jun 22, 2009 9:35 am
Location: Pennsylvania, USA
Contact:

Re: What's everyone working on? (tigsource inspired)

Post by Jasoco »

Made some significant changes to the engine with some progress and an editor.
Post Reply

Who is online

Users browsing this forum: No registered users and 68 guests