Teaser for a game I'm working on...

Show off your games, demos and other (playable) creations.
User avatar
Jasoco
Inner party member
Posts: 3725
Joined: Mon Jun 22, 2009 9:35 am
Location: Pennsylvania, USA
Contact:

Teaser for a game I'm working on...

Post by Jasoco »

I don't want to reveal much until I have a much more mature engine, but I can show a small screenshot...
Screen shot 2011-03-29 at 2.00.47 AM.PNG
Screen shot 2011-03-29 at 2.00.47 AM.PNG (10.31 KiB) Viewed 5919 times
What I can say is it's one of those puzzlers where you walk around pushing and manipulating things to get to the exit picking up items as you go. And the character is a girl named Hayley.

It's done in SNES style graphics.

More information will come in the next few days. Can't wait to reveal more! I'm very happy with what I've done so far.
User avatar
BlackBulletIV
Inner party member
Posts: 1261
Joined: Wed Dec 29, 2010 8:19 pm
Location: Queensland, Australia
Contact:

Re: Teaser for a game I'm working on...

Post by BlackBulletIV »

Looks good :)
User avatar
Motig
Prole
Posts: 28
Joined: Fri Oct 15, 2010 3:43 am

Re: Teaser for a game I'm working on...

Post by Motig »

Do the birds walk around!? :3
User avatar
Jasoco
Inner party member
Posts: 3725
Joined: Mon Jun 22, 2009 9:35 am
Location: Pennsylvania, USA
Contact:

Re: Teaser for a game I'm working on...

Post by Jasoco »

Motig wrote:Do the birds walk around!? :3
They do more than that, my friend. I'm very happy with the birds. And they're only for decoration! (At this point at least)
EMB
Citizen
Posts: 70
Joined: Sat Jan 08, 2011 8:49 pm

Re: Teaser for a game I'm working on...

Post by EMB »

Looks really, really good.
Request Programs
If Linux were a beer, it would be shipped in open barrels so that anybody could piss in it before delivery
User avatar
Jasoco
Inner party member
Posts: 3725
Joined: Mon Jun 22, 2009 9:35 am
Location: Pennsylvania, USA
Contact:

Re: Teaser for a game I'm working on...

Post by Jasoco »

Before I show off the whole thing I need to implement some things. But I also need ideas of what kind of game it needs to be. Will it be a one room puzzle, move onto the next, or a game where you can travel from room to room. I can do either, and if I do the room to room one, I have an idea using framebuffers to make it slide each room into view. If it works. I just hope my relying on framebuffers won't cut down the audience I can reach with the game.

When a .love project is run on a system with less framebuffers than the game requires, does it give an error? I tried to force it to run out on my 2010 MacBook Pro (13") by creating 5000 of them and it never gave me an error. It created all of them. Granted they were all 256x256 pixels. But still. How do we know what the limit is on our system? How can we test the limits and what our computer can and can't do?

Edit: Finally got it to error at 10000. The error screen was all distorted and broken too. It was funny. Doing some narrowing down it crashes at 6678 256x256 sized framebuffers. Which is a total of 437,649,408 pixels.

And using 512x512 pixel buffers, I get 1944 of them. Which is a total of 509,607,936 pixels.

Needless to say, that's a lot of framebuffers for an integrated video card.
User avatar
bartbes
Sex machine
Posts: 4946
Joined: Fri Aug 29, 2008 10:35 am
Location: The Netherlands
Contact:

Re: Teaser for a game I'm working on...

Post by bartbes »

You could use pcall to detect if newFramebuffer fails, and if so skip the smooth transition.
User avatar
Jasoco
Inner party member
Posts: 3725
Joined: Mon Jun 22, 2009 9:35 am
Location: Pennsylvania, USA
Contact:

Re: Teaser for a game I'm working on...

Post by Jasoco »

Does pcall return any sort of information about the limits of the computers graphics card?
User avatar
bartbes
Sex machine
Posts: 4946
Joined: Fri Aug 29, 2008 10:35 am
Location: The Netherlands
Contact:

Re: Teaser for a game I'm working on...

Post by bartbes »

No, but you just pcall newFramebuffer, and if it errors you can act upon that (pcall 'catches' errors, and returns them instead).
User avatar
Robin
The Omniscient
Posts: 6506
Joined: Fri Feb 20, 2009 4:29 pm
Location: The Netherlands
Contact:

Re: Teaser for a game I'm working on...

Post by Robin »

Jasoco wrote:Does pcall return any sort of information about the limits of the computers graphics card?
No, it is simply Lua's way of doing try-catch:

Code: Select all

success, result = pcall(love.graphics.newFramebuffer) -- note: do not call newFramebuffer, pcall will do it for you
if not success then -- work around failing computer
Help us help you: attach a .love.
Post Reply

Who is online

Users browsing this forum: Google [Bot] and 162 guests