Eternity

Show off your games, demos and other (playable) creations.
linux-man
Citizen
Posts: 67
Joined: Thu Apr 28, 2011 4:51 pm

Eternity

Post by linux-man »

When we are invited to someone's home we should bring some gift (preferably a desert). Since this is my first post, I'd like to show the beginning of my project.
I've been following love for a long time, until now finally I started to learn lua.
I plan to make something like a Elite 2D clone (http://en.wikipedia.org/wiki/Elite_%28video_game%29), one of the best games ever made. My first attempt was in Game Maker, dropped when I left Windows. Last year I tried Game-editor. Very nice but with a terrible interface to do serious programing (this doesn't mean I do serious programming).
Right know I have a ship with a particle engine. To continue, I must use Objects. For example, I need do create child objects whose position and other properties are related to parent objects (sun, planets, moons,...), so I'll try middleclass or hump.class. Next, Collisions and gravity, Last, trade and economy.
Eternity will be the name of the game (or the time it will take to make it).
Controls: Cursor keys.
Comments appreciated.

Thank you guys. I hope I can contribute in the future.

Linux-man

Controls:
When docked: Space to launch.
Controls are: cursor keys, space to phaser/laser. m to missiles
Cursor keys to move around the galaxy chart and up/down some lists (equipment, ships, load game)
"Double click" down to stop the engine
"Double click" up to get an expensive turbo (only when bought)
Access Menus with 1-8 keys or click in menu when docked
9/0 - 10x time change. Keyboard don't work when you are asleep (that's right, you are in a cryogenic coma).
z and x to zoom out/in (view, Long Range Scanner and Galaxy chart)
c - Normal scanner scale (10000 or 100000) 10000 will be useful for future mining, docking and close combat.
s - Normal scanner information cycle
n - Laser cycle (front, rear,...)
a- Autopilot on/off. Must choose a destination on Long range scanner with left click. right click to delete)
j- Jump to hyperspace (only when cockpit J green - enough fuel, star system selected, far from the sun)

Scanner and Galaxy chart - left click on star/planets to get information / select star system to jump. Right click to deselect.

To dock you must be bellow some relative velocity from the station. Cockpit D green/yellow tells you're OK.
Market and equipment: Buy/sell with left/right click
Equipment sold at half the price.

I'll complete the list as I remember...
Attachments
eternity-a5c.love
(4.76 MiB) Downloaded 371 times
Last edited by linux-man on Thu Jul 28, 2011 10:29 pm, edited 8 times in total.
User avatar
Lap
Party member
Posts: 256
Joined: Fri Apr 30, 2010 3:46 pm

Re: Eternity

Post by Lap »

Not bad. Needs more parallax background. Take another couple of star layers have have their movement slightly offset from one another. It creates a more cooler looking space background. I believe someone already made a good example, but I can't remember the name.
linux-man
Citizen
Posts: 67
Joined: Thu Apr 28, 2011 4:51 pm

Re: Eternity

Post by linux-man »

In the todo list, but right now the background is static. It's the spaceship that's moving. I'll probably add random stars.
Working on autopilot code.

Thanks
User avatar
BarnD
Prole
Posts: 49
Joined: Wed Jun 16, 2010 1:23 pm
Location: Australia
Contact:

Re: Eternity

Post by BarnD »

Looking heaps good atm. :D
User avatar
Lafolie
Inner party member
Posts: 809
Joined: Tue Apr 05, 2011 2:59 pm
Location: SR388
Contact:

Re: Eternity

Post by Lafolie »

Cool man. I agree that it could do with parallax backgrounds! That would add so much depth.
Do you recognise when the world won't stop for you? Or when the days don't care what you've got to do? When the weight's too tough to lift up, what do you? Don't let them choose for you, that's on you.
User avatar
TsT
Party member
Posts: 161
Joined: Thu Sep 25, 2008 7:04 pm
Location: France
Contact:

Re: Eternity

Post by TsT »

For the fun I decide to in space really fast (always "up").
I see the engine/booster effect of the ship... (see 1)
It's a detail but it can be better if the effect will be limited to the zone 2 or 3.

my 2 cents :D
Attachments
effet.png
effet.png (89.34 KiB) Viewed 7435 times
My projects current projects : dragoon-framework (includes lua-newmodule, lua-provide, lovemodular, , classcommons2, and more ...)
User avatar
Lafolie
Inner party member
Posts: 809
Joined: Tue Apr 05, 2011 2:59 pm
Location: SR388
Contact:

Re: Eternity

Post by Lafolie »

TsT wrote:For the fun I decide to in space really fast (always "up").
I see the engine/booster effect of the ship... (see 1)
It's a detail but it can be better if the effect will be limited to the zone 2 or 3.

my 2 cents :D
Nooo! It should use all 3 with a huge flame like in your picture. That looks really cool.

Concept:
Attachments
Photo on 2011-05-05 at 03.31 #3.jpg
Photo on 2011-05-05 at 03.31 #3.jpg (67.6 KiB) Viewed 7421 times
Do you recognise when the world won't stop for you? Or when the days don't care what you've got to do? When the weight's too tough to lift up, what do you? Don't let them choose for you, that's on you.
User avatar
TsT
Party member
Posts: 161
Joined: Thu Sep 25, 2008 7:04 pm
Location: France
Contact:

Re: Eternity

Post by TsT »

Great ! :D
My projects current projects : dragoon-framework (includes lua-newmodule, lua-provide, lovemodular, , classcommons2, and more ...)
linux-man
Citizen
Posts: 67
Joined: Thu Apr 28, 2011 4:51 pm

Re: Eternity

Post by linux-man »

WOW! I did that! :awesome:
Unfortunately, that's not what I want for now. It's a strange spread effect at high speed, and angle dependent, so of no use. I did spread = 0. Later I will try to do cooler engines.
Right now I'm starting to think Object Oriented Lua. Instead of using one of those nice OO libraries, I decided to do the basics, you know:
ship = {}
ship.__index = ship
The No.love code is a must to start. If I had no experience with other languages, I would be kind of lost. For a newbie, it would be nice to have OO code explained in the tutorials. It could be the no.love code or something simpler.
So, I have the same code but OO. I'll continue with parallax (you guys inspired me). Next version will have something new.
Again, comments to the code are very welcome.

Tst: The effect you found could be implemented if the particle engine had gravity with variable direction.

But, since today I learned about push, pop and translate, I'm updating eternity with a better engine effect. Now the particle engine is static so the ship speed is not an issue. I'm really impressed with the things that can be done with love.
Last edited by linux-man on Mon Jul 25, 2011 4:58 pm, edited 2 times in total.
User avatar
TsT
Party member
Posts: 161
Joined: Thu Sep 25, 2008 7:04 pm
Location: France
Contact:

Re: Eternity

Post by TsT »

Another idea, for high speed, the stars should be rendered as line (not point) but maybe hard to implement...
My projects current projects : dragoon-framework (includes lua-newmodule, lua-provide, lovemodular, , classcommons2, and more ...)
Post Reply

Who is online

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