What's everyone working on? (tigsource inspired)

General discussion about LÖVE, Lua, game development, puns, and unicorns.
coffee
Party member
Posts: 1206
Joined: Wed Nov 02, 2011 9:07 pm

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

Post by coffee »

SiENcE wrote:Something i'm working on: Dungeonspace.
4 Player Multiplayer Test. More Infos soon.
Tested the online prototype. Worked in Safari spite the initial errors. It's not possible do anything else than movement right? Screenshots seem great.
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 »

coffee wrote:
SiENcE wrote:Something i'm working on: Dungeonspace.
4 Player Multiplayer Test. More Infos soon.
Tested the online prototype. Worked in Safari spite the initial errors. It's not possible do anything else than movement right? Screenshots seem great.
Thanks for this info.

Yes the online prototype is a bit off due to the lack of network multiplayer.

on todo is:
-fightsystem
-itemsystem
-questsystem
User avatar
Larsii30
Party member
Posts: 267
Joined: Sun Sep 11, 2011 9:36 am
Location: Germany

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

Post by Larsii30 »

SiENcE wrote:
Jasoco wrote:So glad there's people interested in my LöveKart and WolfenLöve engines (Names not final). But right now I'm taking a break from them so I can refresh myself and jump back in.

The Kart game really just needs better opponent AI. i.e. allow them to avoid each other by moving left or right to pass while still remaining on the correct path, and better collision and kart physics. Mainly sliding when turning sharp. i.e, your kart is aiming and turning one direction but momentum and the ground type you are on determines how much you slide.
Maybe you can do a community project out of LöveKart, so that people can help you to fix bugs and create karts&tracks!?
I like the idea. :)
User avatar
Nikolai Resokav
Party member
Posts: 140
Joined: Wed Apr 28, 2010 12:51 am
Location: United States

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

Post by Nikolai Resokav »

SiENcE wrote:Nice GUI. Is it oss?
If that means open source then yes. Once I finish the majority of the library I'll probably put it up on github.
User avatar
StoneCrow
Party member
Posts: 199
Joined: Sat Apr 17, 2010 9:31 am
Location: Wales the land of leeks and leaks
Contact:

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

Post by StoneCrow »

Still working on A.tree and Cartographer been a bit slow cause of college but made some progress lately. Finally added a page for A.tree to Indie db,
just click on this image of what it looks like now to go there :)
Image
Dull but sincere filler.
User avatar
timmeh42
Citizen
Posts: 90
Joined: Wed Mar 07, 2012 7:32 pm
Location: Cape Town, South Africa

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

Post by timmeh42 »

timmeh42 wrote:Procedural trees - trying to get them to have some degree of randomness, but also need to save the angle values for every branch - bit of a dilemma. Also, drawing hundreds of images just for one tree is highly inefficient - that's the fps in the corner there.
Just solved the FPS issue with this: I was drawing lines as well as textures for each branch; apparently these lines are EXTREMELY inefficient - as soon as I removed the parts that drew them, the FPS shot up to 500 - which is bothersome. I was only drawing as many lines as I drew images; what's up with drawing lines in Löve?

EDIT: Dealt with.
User avatar
kikito
Inner party member
Posts: 3153
Joined: Sat Oct 03, 2009 5:22 pm
Location: Madrid, Spain
Contact:

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

Post by kikito »

I started doing an hybrid between zelda, gauntlet and rogue. Its provisional name is Battle Cry.

The screenshots so far are not very exciting:
battle-cry.png
battle-cry.png (7.25 KiB) Viewed 2764 times
Designers are welcome, by the way ;)

Most of the work so far has been done in the code. I've really tried to make the thing flexible for what I have in mind, and I think I'm getting interesting results.

My plan is having a tile-based world populated with "Beings". Each Being has a Body and a Mind. Bodies perceive the world via senses, and minds instruct the bodies to perform actions via wishes. I wanted to have this structure in order to have flexibility in the spells. The mind/body separation should be useful to have interesting mental spells, like "exchange bodies". It also allows me to reuse some code (I can use the same mind to move a rat and a fly, for example). The senses/wishes separation should be useful for modelling hallucinations, invisibility, line of sight, etc.

So far I've got 2 minds (the player mind, controlled by the player, and a "follower", who follows people around) a single body (the bald guy you see there) and a couple simple senses (current position and "ultrasight"). The thing still needs a lot of work, but I can already see some pleasing stuff. One part I'm particularly proud of is the Being:update() method:

Code: Select all

function Being:update(dt)                                                       
  self.body:update(self.mind.wishes, dt) 
  self.mind:update(self.body.senses, dt) 
end
Today I managed to finish implementing collision between my bodies and "solid" tiles in the world (It's actually a bit more complicated than that :) ). It took me a couple days to get it right. I realize why so many people are having trouble with it. I might have to write something about it.

Next I want to add proper sight, more kinds of tiles (holes) and a flying body, who should be able to traverse holes but not walls. Then I'll add a Camera, some map loading, and the first weapon and health systems. And then, I have more plans, but this should keep me busy for a while.

If anyone is interested in the code, it can be found on github: https://github.com/kikito/battle-cry
When I write def I mean function.
User avatar
bartbes
Sex machine
Posts: 4946
Joined: Fri Aug 29, 2008 10:35 am
Location: The Netherlands
Contact:

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

Post by bartbes »

That sounds incredibly interesting!
User avatar
Robin
The Omniscient
Posts: 6506
Joined: Fri Feb 20, 2009 4:29 pm
Location: The Netherlands
Contact:

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

Post by Robin »

Reminds me a bit of MVC. :P
Help us help you: attach a .love.
User avatar
kikito
Inner party member
Posts: 3153
Joined: Sat Oct 03, 2009 5:22 pm
Location: Madrid, Spain
Contact:

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

Post by kikito »

Robin wrote:Reminds me a bit of MVC. :P
I see how it can :) I'm damaged goods.
When I write def I mean function.
Post Reply

Who is online

Users browsing this forum: No registered users and 100 guests