LOVEFEST III: Chance. Big Red Button

Show off your games, demos and other (playable) creations.
User avatar
Nsmurf
Party member
Posts: 191
Joined: Fri Jul 27, 2012 1:58 am
Location: West coast.

LOVEFEST III: Chance. Big Red Button

Post by Nsmurf »

Well, I don't feel ready to post a love file yet Love file has been posted, but I decided to make a sort of "Dev Log" for my LoveFest III game.

Here's a list of features:
  • Player controls (Moving, shooting, and shielding)
  • Scrolling background.
  • Enemies with health and a simple movement script.
  • Damage.
  • Asteroids.
  • Tutorial intro screen.
  • "Tutorial" level.
  • Real intro screen.
  • Big Red Button.
  • Powerup system.
  • Other assorted cool(?) stuff
I've attached some screenshots.
Screenshots are out of date, see newer posts for newer screenshots
Just play the demo.

I'm almost ready to implement The Big Red Button, the main "Chance" element of the game :awesome:
Big Red Button is done

Good luck,
Nsmurf


P.S.
Here's the lovefest submission thing:

Title: The Big Red Button
Description: Space shooter.
Username(s): Nsmurf
Love Version, Technical Notes, Controls and Help, Miscellaneous Notes: Made for love 0.8.0. Instructions are in game.
Attachments
Big Red Button.love
The Big Red Button.
(130.21 KiB) Downloaded 194 times
Last edited by Nsmurf on Sat Nov 03, 2012 3:57 am, edited 6 times in total.
OBEY!!!
My Blog
UE0gbWUgd2l0aCB0aGUgd29yZCAnSE1TRycgYXMgdGhlIHN1YmplY3Q=
User avatar
substitute541
Party member
Posts: 484
Joined: Fri Aug 24, 2012 9:04 am
Location: Southern Leyte, Visayas, Philippines
Contact:

Re: LOVEFEST III: Chance. Space shooter dev log

Post by substitute541 »

Pretty nice! As I said in the Lovefest III thread, I won't be telling the name of my game. I do have experience with OOP so I could probably make mine a bit more optimized :3

Hint : Part Strategy, Part Chance
Currently designing themes for WordPress.

Sometimes lurks around the forum.
User avatar
Nsmurf
Party member
Posts: 191
Joined: Fri Jul 27, 2012 1:58 am
Location: West coast.

Re: LOVEFEST III: Chance. Space shooter dev log

Post by Nsmurf »

Added Intro screen and game over screen, both need more polish. (See attached)
substitute541 wrote:Pretty nice!
Thanks :awesome:
Attachments
Game Over.
Game Over.
SMGAMEOVER.PNG (22.62 KiB) Viewed 3531 times
Intro.
Intro.
SMINTRO.PNG (18.78 KiB) Viewed 3531 times
OBEY!!!
My Blog
UE0gbWUgd2l0aCB0aGUgd29yZCAnSE1TRycgYXMgdGhlIHN1YmplY3Q=
User avatar
Nsmurf
Party member
Posts: 191
Joined: Fri Jul 27, 2012 1:58 am
Location: West coast.

Re: LOVEFEST III: Chance. Space shooter dev log

Post by Nsmurf »

Asteroids!
Attachments
Asteroids!
Asteroids!
SM4.PNG (32.84 KiB) Viewed 3527 times
OBEY!!!
My Blog
UE0gbWUgd2l0aCB0aGUgd29yZCAnSE1TRycgYXMgdGhlIHN1YmplY3Q=
User avatar
Nsmurf
Party member
Posts: 191
Joined: Fri Jul 27, 2012 1:58 am
Location: West coast.

Re: LOVEFEST III: Chance. Space shooter dev log

Post by Nsmurf »

I'm working on adding The Big Red Button, the "chance" part of me entry.
Attachments
The Big Red Button awaits.
The Big Red Button awaits.
SM5.PNG (25 KiB) Viewed 3495 times
OBEY!!!
My Blog
UE0gbWUgd2l0aCB0aGUgd29yZCAnSE1TRycgYXMgdGhlIHN1YmplY3Q=
User avatar
Stelpa
Citizen
Posts: 58
Joined: Sat Oct 20, 2012 4:48 pm

Re: LOVEFEST III: Chance. Space shooter dev log

Post by Stelpa »

Nsmurf wrote:I'm working on adding The Big Red Button, the "chance" part of me entry.
VERY neat, can't wait to play the final game ^^
User avatar
Nsmurf
Party member
Posts: 191
Joined: Fri Jul 27, 2012 1:58 am
Location: West coast.

Re: LOVEFEST III: Chance. Space shooter dev log

Post by Nsmurf »

No screenshot, but I'm willing to post some code on my powerup system.

Basically it enumerates the 'powerup' directory, and stores all the files inside it in a table. It gets a random value from that table, and then runs it with love.filesystem.load().

This allows me to create as many powerups as I want, and have them automatically added to the game without any unnecessary code!

This is actually salvaged code from an old project, but still very useful!

Here is the code currently located in powerup.lua:

Code: Select all

function getpowerups(dir)
	powerups = love.filesystem.enumerate(dir)
	return powerups[math.random(#powerups)]
end

function runpowerup()
	powerupc = love.filesystem.load('powerup/'..getpowerups('powerup'))
	powerupc()
end
All you need to do is call runpowerup() and it will run a random powerup from the 'powerup' directory.

Here is an example powerup:

Code: Select all

player.speed = 200
I am considering creating a powerup lib after the lovefest is over. what do other people think about that?
OBEY!!!
My Blog
UE0gbWUgd2l0aCB0aGUgd29yZCAnSE1TRycgYXMgdGhlIHN1YmplY3Q=
User avatar
Nsmurf
Party member
Posts: 191
Joined: Fri Jul 27, 2012 1:58 am
Location: West coast.

Re: LOVEFEST III: Chance. Space shooter dev log

Post by Nsmurf »

Added a text output thinggie for displaying what The Big Red Button did.

As soon as I get 10-15 or so powerups (I have 4 now), I'll post a demo!
Attachments
Text output.
Text output.
SM6.PNG (43.75 KiB) Viewed 3454 times
OBEY!!!
My Blog
UE0gbWUgd2l0aCB0aGUgd29yZCAnSE1TRycgYXMgdGhlIHN1YmplY3Q=
User avatar
Nsmurf
Party member
Posts: 191
Joined: Fri Jul 27, 2012 1:58 am
Location: West coast.

Re: LOVEFEST III: Chance. Big Red Button dev log and WIP De

Post by Nsmurf »

WIP demo has been released, see first post!
OBEY!!!
My Blog
UE0gbWUgd2l0aCB0aGUgd29yZCAnSE1TRycgYXMgdGhlIHN1YmplY3Q=
User avatar
Nsmurf
Party member
Posts: 191
Joined: Fri Jul 27, 2012 1:58 am
Location: West coast.

Re: LOVEFEST III: Chance. Big Red Button

Post by Nsmurf »

Prepare for a epic boss battle!

Think "Alien mother ship"

Also think "Insanely hard"
OBEY!!!
My Blog
UE0gbWUgd2l0aCB0aGUgd29yZCAnSE1TRycgYXMgdGhlIHN1YmplY3Q=
Post Reply

Who is online

Users browsing this forum: No registered users and 1 guest