Dave Gone Apeshit

Show off your games, demos and other (playable) creations.
User avatar
thelinx
The Strongest
Posts: 857
Joined: Fri Sep 26, 2008 3:56 pm
Location: Sweden

Re: Dave Gone Apeshit

Post by thelinx »

I would really play this more if it wasn't for my mean ATI drivers turning the game into a screen tearing-fest. :(
User avatar
Lukasz
Prole
Posts: 11
Joined: Thu Jan 20, 2011 6:40 pm
Location: Denmark
Contact:

Re: Dave Gone Apeshit

Post by Lukasz »

thelinx wrote:I would really play this more if it wasn't for my mean ATI drivers turning the game into a screen tearing-fest. :(
Is this something you only experience in our game? If so, is it a problem for both the main menu and the game?
User avatar
ghostwriter
Prole
Posts: 38
Joined: Sat Dec 11, 2010 11:08 pm

Re: Dave Gone Apeshit

Post by ghostwriter »

Very cool :)
You might want to define a MAX_TIMESTEP (i usually use around 0.1 seconds), and then in the update function of main.lua you can start with dt = math.min(dt,MAX_TIMESTEP). Right now it's possible to exploit the unlimited timestep by grabbing the title bar of the window til you get the high score :joker:
User avatar
bartbes
Sex machine
Posts: 4946
Joined: Fri Aug 29, 2008 10:35 am
Location: The Netherlands
Contact:

Re: Dave Gone Apeshit

Post by bartbes »

Ugh.. windows..
User avatar
Buddy4point0
Prole
Posts: 35
Joined: Wed Jan 12, 2011 9:29 pm
Location: Virginia

Re: Dave Gone Apeshit

Post by Buddy4point0 »

Just tried it out. You've made a fun game!
I like it :)
╚»ßuddy4point0 ■
User avatar
Jasoco
Inner party member
Posts: 3725
Joined: Mon Jun 22, 2009 9:35 am
Location: Pennsylvania, USA
Contact:

Re: Dave Gone Apeshit

Post by Jasoco »

ghostwriter wrote:Very cool :)
You might want to define a MAX_TIMESTEP (i usually use around 0.1 seconds), and then in the update function of main.lua you can start with dt = math.min(dt,MAX_TIMESTEP). Right now it's possible to exploit the unlimited timestep by grabbing the title bar of the window til you get the high score :joker:
bartbes wrote:Ugh.. windows..
Yeah. It can be exploited in OS X too if you press and hold on the Close X. In Löve, when you press the Close X, the action stops (Update and draw don't update or draw) until you let go. (Move the mouse away from the X before letting go unless you want to quit Löve.) Since this game just takes the time you started and subtracts it from the current time and uses that for where you are in the level, it lets people exploit the problem by holding the mouse button. Don't know if Linux has a similar problem. OS X doesn't have the "pause action when dragging window" problem due to the way it displays graphics vs. Windows, but I assume Linux also has a problematic graphics rendering engine.

You will need to define a new variable called "gametime" or something in Load. Then use that variable in Update for calculating time and where you are in the game.

Code: Select all

gametime = gametime + dt
To the Löve developers, can this be fixed? Or will developers just have to use the separate game time variable? Because relying on timer.getTime() will not be accurate since it returns how long the application has been running. Not how long the action has been going.
User avatar
bartbes
Sex machine
Posts: 4946
Joined: Fri Aug 29, 2008 10:35 am
Location: The Netherlands
Contact:

Re: Dave Gone Apeshit

Post by bartbes »

dt will probably be just as big, knowing how it's calculated.
And unfortunately it's not something we can do anything about, because it's not love that pauses voluntarily, all code execution just stops.
User avatar
Jasoco
Inner party member
Posts: 3725
Joined: Mon Jun 22, 2009 9:35 am
Location: Pennsylvania, USA
Contact:

Re: Dave Gone Apeshit

Post by Jasoco »

Code: Select all

function love.load()
  startGame() --Or wherever your start game function goes, probably when the Start Game button is clicked.
end

function love.update(dt)
  gameTime = gameTime + dt --Put it inside whatever function or code is executed when the game is running
end

function love.draw()
  love.graphics.print(gameTime, 0, 0) 
  --Will draw this time as a number. Do whatever formatting you want to it to make it look good.
end

function startGame()
  gameTime = 0 --Put it in whatever function you call when you start a game
end
User avatar
Robin
The Omniscient
Posts: 6506
Joined: Fri Feb 20, 2009 4:29 pm
Location: The Netherlands
Contact:

Re: Dave Gone Apeshit

Post by Robin »

The only way you can deal with exploits like that is something like:

Code: Select all

function love.update(dt)
    dt = math.min(dt, 0.1) -- or whatever
    -- ...
end
Help us help you: attach a .love.
User avatar
SoggyWaffles
Citizen
Posts: 72
Joined: Sun Jan 02, 2011 3:27 am
Location: Wyoming, USA

Re: Dave Gone Apeshit

Post by SoggyWaffles »

18 seconds!!!

/me does the victory dance!

Looks good on my machine.
"Beneath the clouds lives the Earth-Mother from whom is derived the Water of Life, who at her bosom feeds plants, animals and men." ~Larousse
Post Reply

Who is online

Users browsing this forum: Ahrefs [Bot] and 94 guests