Page 2 of 3

Re: Life

Posted: Wed Sep 29, 2010 11:52 am
by zac352
My science teacher told me I should go to the science fair with this as my project. :|

Re: Life

Posted: Wed Oct 06, 2010 1:38 am
by Diablo
Good game reminds me of aquarium.

Re: Life

Posted: Sat Oct 16, 2010 3:44 pm
by zac352
Rebump - Another update.

Re: Life

Posted: Sat Oct 16, 2010 4:44 pm
by zac352
I just perfected saving. Mostly. It's super bloated size, but is easily editable.

Re: Life

Posted: Sat Oct 16, 2010 4:51 pm
by Ozzypig
Add in terrain generation. Like, change the background color to grass green (or tile the minecraft grass texture :D) then change the cells to red or blue color then generate random lines across the map and color them blue. Rivers :D

EDIT: Erasing does not work when the camera is moved.

Re: Life

Posted: Sat Oct 16, 2010 5:02 pm
by zac352
Ozzypig wrote:Add in terrain generation. Like, change the background color to grass green (or tile the minecraft grass texture :D) then change the cells to red or blue color then generate random lines across the map and color them blue. Rivers :D

EDIT: Erasing does not work when the camera is moved.
Inverse the colors and make cells gigantic? No thanks.
But 1.3.5 fixed erasers.

Re: Life

Posted: Sun Nov 14, 2010 3:44 am
by zac352
Edited my post. Looks better, it's easier to read.
Easier to update thanks to my awesome dropbox account.
You had better click that link....

I'm going to release 1.3.6 as soon as I can figure out why these lines are still splitting in two...

Code: Select all

			if healthbar and v.alive then --dead cells don't need health bars anymore.
				local x1,y1=math.floor(v.x-8),math.floor(v.y-8)
				local x2,x3=math.floor(v.x+8),math.floor(v.x+(v.food/100)*16-8)
				--love.graphics.setLine(1,"rough") --Lines didn't seem to be working, so I tried points...
				--love.graphics.setColor(0,0,0)
				--love.graphics.line(x3,y1,x2,y1)
				love.graphics.setColor(0,255,0)
				--love.graphics.line(x1,y1,x3,y1)
				love.graphics.setPoint(1,"rough")
				for i=x1,x3 do
					love.graphics.point(i+0.5,y1+0.5)
				end
				love.graphics.setColor(0,0,0)
				for i=x3+1,x2 do
					love.graphics.point(i+0.5,y1+0.5)
				end
			end

Re: Life

Posted: Sun Nov 14, 2010 4:37 am
by Mud
zac352 wrote:my awesome dropbox account.
You had better click that link....
<ot>Can't complain about a free service, but their pricing for anything beyond the free 2G is a bit steep. I use ExpandDrive which maps any SFTP server into Windows as an external drive. My web host (which supports SFTP) is $5/mo for 150GB. The biggest account DropBox sells is 100GB and it's $19! I could get nearly 600GB for that price. Not to say a free 2GB isn't awesome, but if you end up needing more than that I'd explore other options.</ot>

BTW: Your program is cool.

Re: Life

Posted: Sun Nov 14, 2010 4:06 pm
by zac352
Mud wrote:
zac352 wrote:my awesome dropbox account.
You had better click that link....
<ot>Can't complain about a free service, but their pricing for anything beyond the free 2G is a bit steep. I use ExpandDrive which maps any SFTP server into Windows as an external drive. My web host (which supports SFTP) is $5/mo for 150GB. The biggest account DropBox sells is 100GB and it's $19! I could get nearly 600GB for that price. Not to say a free 2GB isn't awesome, but if you end up needing more than that I'd explore other options.</ot>

BTW: Your program is cool.
Is there a linux version? :OUgh. It's $40. :roll:

Re: Life

Posted: Sun Nov 14, 2010 4:20 pm
by nevon
zac352 wrote:Is there a linux version? :O
If you use Nautilus, just choose to connect to a server, enter your account information and remember to save as a bookmark. Then you'll be able to use it just like any other drive.