What should I call this adorable little platformer?

Show off your games, demos and other (playable) creations.
User avatar
TechnoCat
Inner party member
Posts: 1611
Joined: Thu Jul 30, 2009 12:31 am
Location: Denver, CO
Contact:

Re: What should I call this adorable little platformer?

Post by TechnoCat »

I just continuously click the buttons on the left in sfxr until I get a sound I like.
User avatar
kikito
Inner party member
Posts: 3153
Joined: Sat Oct 03, 2009 5:22 pm
Location: Madrid, Spain
Contact:

Re: What should I call this adorable little platformer?

Post by kikito »

In case the name isn't yet choosen, I've a suggestion:

"Greensleeves".

It shouldn't be difficult to find a creative commons chiptune to use as the background music, too.
When I write def I mean function.
User avatar
arquivista
No longer with us
Posts: 266
Joined: Tue Jul 06, 2010 8:39 am
Location: Insert Geolocation tag here
Contact:

Re: What should I call this adorable little platformer?

Post by arquivista »

kikito wrote:In case the name isn't yet choosen, I've a suggestion:

"Greensleeves".

It shouldn't be difficult to find a creative commons chiptune to use as the background music, too.
Erm but don't you think it's a too much cliché song? Besides be a medieval folk song that is so totally boring when listen in continous, is also so well-know that is even one of the first songs that kids usually learn playing in organs. IMHO don't fit well in the indy-arty spirit of the game, but hey is just my opinion. Also even in games was too abused, King's Quest 1/2, Black Lamp, Xenosaga, Killer7, Punchy and list must go on. Well let's wait for Jasoco's opinion, he is the "boss". :)
--------------------------------------------------------
To Do: Insert Signature Here
--------------------------------------------------------
User avatar
Jasoco
Inner party member
Posts: 3725
Joined: Mon Jun 22, 2009 9:35 am
Location: Pennsylvania, USA
Contact:

Re: What should I call this adorable little platformer?

Post by Jasoco »

I liked Greensleeves. I used to play it on my piano.

The name will come later.

My little man now has an idle animation. After a few seconds he sits down and falls asleep.
User avatar
arquivista
No longer with us
Posts: 266
Joined: Tue Jul 06, 2010 8:39 am
Location: Insert Geolocation tag here
Contact:

Re: What should I call this adorable little platformer?

Post by arquivista »

Jasoco wrote:I liked Greensleeves. I used to play it on my piano.
Was also the only song that I learned (and then forgot) in keyboard. But as I said is a song that was already totally overabused.
Jasoco wrote:My little man now has an idle animation. After a few seconds he sits down and falls asleep.
That's nice. It's much better and original than the usual "beat the feet" or "whistle" animation. Good choice for idle anim...
--------------------------------------------------------
To Do: Insert Signature Here
--------------------------------------------------------
User avatar
Jasoco
Inner party member
Posts: 3725
Joined: Mon Jun 22, 2009 9:35 am
Location: Pennsylvania, USA
Contact:

Re: What should I call this adorable little platformer?

Post by Jasoco »

arquivista wrote:
Jasoco wrote:My little man now has an idle animation. After a few seconds he sits down and falls asleep.
That's nice. It's much better and original than the usual "beat the feet" or "whistle" animation. Good choice for idle anim...
The sprite is only 8x8. There's not really much room to do anything too fancy. I would have had him sit down and read a book like Commander Keen but of course, too small. Also, Mario fell asleep in Mario 64.
User avatar
ZenX2
Citizen
Posts: 89
Joined: Wed Nov 17, 2010 5:35 am

Re: What should I call this adorable little platformer?

Post by ZenX2 »

I just looked through the code... The horrors...
You really should clean up the death code, cramming it all into update, even in an early version is not a good idea. :o
User avatar
Jasoco
Inner party member
Posts: 3725
Joined: Mon Jun 22, 2009 9:35 am
Location: Pennsylvania, USA
Contact:

Re: What should I call this adorable little platformer?

Post by Jasoco »

Death code? There's only like 10 lines and it's in the ELSE part of an IF player.dying == false THEN call. It's not even the messiest part of the code. What line are you talking about?

Code: Select all

player.dying_f = player.dying_f - dt      --Dying frame advance
player.rotate = player.rotate + 720 * dt  --Rotate player twice per second
if player.dying_f < 0 then                --If the death animation is over...
  player.dying_f = 0                      --Reset frame to 0
  player.dying = false                    --Turn off death
  player.x = 2                            --Reset player position
  player.y = 0
  player.rotate = 0                       --Reset rotation
  player.jumping = false                  --In case he was jumping
  player.facing = 0                       --Reset facing
  level.time = 90                         --Reset level time
  player.idletime = 0                     --Reset idle time too
  if player.lives <= 0 then               --Make sure player isn't out of lives
    gamemode = inMenu                     --If so, return to menu
  end
end
User avatar
ZenX2
Citizen
Posts: 89
Joined: Wed Nov 17, 2010 5:35 am

Re: What should I call this adorable little platformer?

Post by ZenX2 »

love.update() in main.lua
User avatar
Jasoco
Inner party member
Posts: 3725
Joined: Mon Jun 22, 2009 9:35 am
Location: Pennsylvania, USA
Contact:

Re: What should I call this adorable little platformer?

Post by Jasoco »

ZenX2 wrote:love.update() in main.lua
I don't quite follow. I always put stuff in update. I even use a custom Run() function so I can draw stuff in there. In fact, eventually update and draw may be the same function if it lets me optimize the speed even more. It's the way I roll, bay-bee! I optimize over time.

My code has no problems. It's not what it looks like on the inside. It's what it looks like on the outside. And my code is a lot easier to understand for me than most peoples coding techniques. And that's all that matters. That I know what it does.

Also, I like having all my code in one place rather than scattered in functions all over the place when they don't need to be. Saves me time running around clicking the function pop-down (In TextWrangler) to find what I am looking for.
Post Reply

Who is online

Users browsing this forum: No registered users and 179 guests