Welcome, Guest. Please login or register. January 05, 2009, 11:24:57 PM
 
Home Help Login Register
+  NeoTeam Official Forum
|-+  NEO Coding Competitions
| |-+  NEO Compo 2008
| | |-+  NEO Summer Coding Compo 2008
| | | |-+  the PSP GAME zone - Aug.2008
| | | | |-+  [PSP GAME] Newton Powered
0 Members and 1 Guest are viewing this topic. « previous next »
Pages: [1] 2 Go Down Print
Author Topic: [PSP GAME] Newton Powered  (Read 3097 times)
mr_haricot
Newbie
*
Offline Offline

Posts: 10



[PSP GAME] Newton Powered
« on: August 18, 2008, 04:08:30 PM »

Nickname: mr_haricot
Project name: Newton Powered
From: France
Division: PSP Game
Original enter: YES
Support Motion: No
In last NEO Compo this project have won in the top 10: No

Newton Powered



Newton Powered Neoflash Version 0.2

Newton Powered Neoflash Version 0.2a

Project description:
A small game based on flash game Gravity Pods.
You have to reach the black hole (purple) and go to the next level.
Blue planets are attractives, red are repulsives.

You can move the planets from level 10.

Historique
v0.1: first release 16/08/08 (11 levels)
v0.1a: Update 17/07/08. fix a joystick bug and the 10th that was impossible  :oops:
v0.2: Added sound and graphic improvement - Now 14 levels - Neoflash Summer Compo Version
v0.2a: The rocket is faster now, there are 15 levels - Neoflash Summer Compo Version


How to play ?
  • ▼ / ▲: move the canon
  • X: launch the rocket
  • /\: Switch mode Build/Launcher
  • L / R: Switch planet mode (in BUILD mode)
  • ◄ / ►: Choose the planet (in BUILD mode)
  • Joystick: Move the planet (in BUILD mode)
Notes
There is a tutorial for creating levels .
« Last Edit: August 22, 2008, 07:26:53 AM by mr_haricot » Logged
ahrimanes
Newbie
*
Offline Offline

Posts: 31



Re: Newton Powered
« Reply #1 on: August 18, 2008, 04:27:45 PM »

hey i have fun with this...
there is a level i cant figure out how to solve it Sad
nice jge++ particle implementation.
Logged
mr_haricot
Newbie
*
Offline Offline

Posts: 10



Re: Newton Powered
« Reply #2 on: August 18, 2008, 04:31:49 PM »

thank you but i'm just nothing beside you... (i just love your game  Kiss...)

and the level "impossible" is now possible  Smiley

but there is still slowdown...and i don't know where they come from...  Angry
the game used to be faster...can audio implementation do that ?
Logged
ahrimanes
Newbie
*
Offline Offline

Posts: 31



Re: Newton Powered
« Reply #3 on: August 18, 2008, 04:37:04 PM »

i see on your screenshot there is not starss...

if you see polygun wars had no live stars they are a pre rendered stars.. some how stars took to much time in may case  so mybe it more slow dow due to the stars implementation than the music...
music actually take not much time.
Logged
mr_haricot
Newbie
*
Offline Offline

Posts: 10



Re: Newton Powered
« Reply #4 on: August 18, 2008, 04:40:41 PM »

in fact the stars are made with 2 gif 512*512 textures rotating... maybe it's too big...
Logged
ahrimanes
Newbie
*
Offline Offline

Posts: 31



Re: Newton Powered
« Reply #5 on: August 18, 2008, 04:52:21 PM »

i dobut of it causes in polygunwars all my textures are abut (32*32)*n where n is the number of sprites i have on screen and they always rotaing an scaling an changing colors..... and i get a FPS [60,50]...

a big tip:

som things such as particles and stars rotations my no need to be updated all te  time... then you can use  that time to prossec somthing else..
in my case i use the delta time... dt in jge.. and... 
starsupdt+=dt;
particleengineupdt+=dt;
if(starupdt>0.05f)
{
//make the code to rotate the stars     
starsupdt=0;
}

if(particleengineupdt>0.05f)
{
//update the particle engine
particleengineupdt=0;
}

that is what i do for my particles and my bulets  and my enemies.. and all Tongue beliveme this will gain much more time.. Tongue
Logged
mr_haricot
Newbie
*
Offline Offline

Posts: 10



Re: Newton Powered
« Reply #6 on: August 18, 2008, 10:48:56 PM »

thank you i'll try this but i think i don't have much time because we have to send the final version before tomorow isn't it ?
Logged
ahrimanes
Newbie
*
Offline Offline

Posts: 31



Re: Newton Powered
« Reply #7 on: August 19, 2008, 12:49:12 AM »

thank you i'll try this but i think i don't have much time because we have to send the final version before tomorow isn't it ?
yes te final or the most advanced one..
Logged
Gefa
Jr. Member
**
Offline Offline

Posts: 50



Re: Newton Powered
« Reply #8 on: August 19, 2008, 03:00:36 AM »

Nice Cheesy
Logged
Conle
Jr. Member
**
Offline Offline

Posts: 78



Re: Newton Powered
« Reply #9 on: August 19, 2008, 03:40:48 AM »

Probably one of the most original games in the contest! ~sm-35.gif~ ~sm-45.gif~ sm-12 sm-12 sm-12 Smiley
Logged
mr_haricot
Newbie
*
Offline Offline

Posts: 10



Re: Newton Powered
« Reply #10 on: August 19, 2008, 04:12:10 AM »

to ahrimanes: thank you for this tip, i've already found it but never try to use it
and when i use a counter this is always with GetTime();

to Conle and Gefa: thank you!  Smiley
Logged
Sturatt
Newbie
*
Offline Offline

Posts: 18



Re: [PSP GAME] Newton Powered
« Reply #11 on: August 20, 2008, 07:52:13 PM »

I can't for the life of me figure out level 10 Sad


Nice little game, great job mr_haricot
Logged
mr_haricot
Newbie
*
Offline Offline

Posts: 10



Re: [PSP GAME] Newton Powered
« Reply #12 on: August 20, 2008, 10:45:14 PM »

arg...did you use the v0.2a of the game?
if i'm right, i've remake this level in this version, but if it's not the case  Angry
anyway thank you !  Smiley

EDIT: i've check and this level is possible, HARD but possible...

a tip: put the two "blue" under the wall and at the right next the end of the
horizontal one

« Last Edit: August 20, 2008, 10:53:18 PM by mr_haricot » Logged
Sturatt
Newbie
*
Offline Offline

Posts: 18



Re: [PSP GAME] Newton Powered
« Reply #13 on: August 20, 2008, 10:49:06 PM »

yes im using 0.2a, it might just be that i cant figure it out, which is very possible lol
Logged
nicodemus82
Newbie
*
Offline Offline

Gender: Male
Posts: 18


Don't Mistake My Kindness For Weakness


Re: [PSP GAME] Newton Powered
« Reply #14 on: August 21, 2008, 12:55:45 AM »

fun game. I also got stuck on the "impossible" level.. will try the updated one later and see if I can get past it Smiley
Logged
Pages: [1] 2 Go Up Print 
« previous next »
Jump to:  
Powered by SMF 1.1.4 | SMF © 2006-2007, Simple Machines LLC