To register for an Internet.com membership to receive newsletters and white papers, use the Register button ABOVE.
To participate in the message forums BELOW, click here


A Flash Developer Resource Site

Go Back   Flash Kit Community Forums > General Help > Games

Reply
 
Thread Tools Search this Thread Display Modes
Old 10-28-2001, 10:59 PM   #1
icaruswing
Junior Member
 
Join Date: Oct 2001
Posts: 4
Angry

http://207.8.231.116/breakout
Hi there! I just finished working on a breakout/pinball style game and I wanted some feedback on the play. Sounds and some intro eye-candy alla flashkit (thanks contributers! you rock!) but the engine is mine. please play a round or two and let me know if run in to any bugs. I am really happy with the action but please let me know if you find it difficult (I use a drawing pad). Thanks!

-Icaruswing
[Edited by icaruswing on 10-29-2001 at 01:41 AM]
icaruswing is offline   Reply With Quote
Old 10-29-2001, 02:06 AM   #2
OkieDokies
Member
 
Join Date: Sep 2000
Posts: 80
Zzzzzzzzz

One word,....BORING!
OkieDokies is offline   Reply With Quote
Old 10-29-2001, 02:38 AM   #3
icaruswing
Junior Member
 
Join Date: Oct 2001
Posts: 4
Talking ok that helps...

okay, so do you think the whole genre is boring or just this rendition?
otherwise I came here for advice? why is it boring?
icaruswing is offline   Reply With Quote
Old 10-29-2001, 11:02 AM   #4
bgbuck7
Member
 
Join Date: Oct 2001
Posts: 31
resolved it could use some more stuff

maybe like powerups and junk, check this 1 out 4 ideas.


http://quebecjeuxpc.multimania.com/javanoid.htm
bgbuck7 is offline   Reply With Quote
Old 10-29-2001, 06:39 PM   #5
phreax
Elvis...who tha f**k is Elvis?
 
phreax's Avatar
 
Join Date: Feb 2001
Posts: 1,835
I agree with Bgbuck7. It needs variation! Besides form that I think you've done a very creative version of the old classic!
I am not really on of those to sit hour in and hour out with games like this but I do know people that enjoy this genre, and I will kindly ask them to evalute it!

Keep up the good work!
phreax is offline   Reply With Quote
Old 10-30-2001, 03:49 PM   #6
Xystes
Senior Member
 
Join Date: Jul 2000
Posts: 127
It's a great combination of pinball and breakout. Indeed it might need a bit more variety in graphics, but keep on the good work!
Xystes is offline   Reply With Quote
Old 10-30-2001, 04:14 PM   #7
Mad-Sci
Senior Member
 
Mad-Sci's Avatar
 
Join Date: Mar 2000
Posts: 2,751
I think the guy did a great job. I would sugest if you decrease the speed of the ball just a bit, seccond its kinda hard to see the ball, I would use a bright collor diferent from the bricks and rotating pin in the middle. Overall it is very good game.

mad_sci
Mad-Sci is offline   Reply With Quote
Old 10-31-2001, 12:33 AM   #8
icaruswing
Junior Member
 
Join Date: Oct 2001
Posts: 4
Arrow Thanks for the suggestions

Thanks for the suggestions I have been putting some of them in as I go along. Ball speed is a tough one, I have two machines and on one the ball is a touch to fast but on the other it is a bit to slow. I am still not sure what to do with it.---?
icaruswing is offline   Reply With Quote
Old 11-01-2001, 08:11 AM   #9
Xystes
Senior Member
 
Join Date: Jul 2000
Posts: 127
Perhaps this is an idea for the ball speed: say you want to let the ball move 25 px per second (0.025 per milisecond).

In the first frame, or the function where you initialize the game, you put the following code:

Code:
wantedDeltaBall = 25;
startCount = getTimer();
During one second in the game you check the ball speed and put the totall covered distance in a variable called deltaBall.

In the frame where all you actions are performed, you put the following code:

Code:
if(getTimer() < startCount + 1000)
{
   deltaBall = deltaBall + pythagoras(xSpeed, ySpeed) 
}

function pythagoras(x, y)
{
   return Math.sqrt(Math.pow(x, 2) + Math.pow(y, 2));
}
We have now got the distance that the ball has covered in one second in the variable deltaBall.

If the game runs at the wished fps, deltaBall should be 25.

Now we change xSpeed and ySpeed according to the data that deltaBall contains:

Code:
xSpeed = xSpeed / (deltaBall / wantedDeltaBall);
ySpeed = ySpeed / (deltaBall / wantedDeltaBall);
Here follows a small example:

The game runs on a far to fast pc. deltaBall == 50. By dividing deltaBall by wantedDeltaBall, we get the value 2. That means the game runs 2 times as fast as we want it to. All we got to do is dividing x and y speed by 2 to to let the game run at a proper speed.

Hope this helped,

Zander
Xystes is offline   Reply With Quote
Old 11-01-2001, 12:52 PM   #10
icaruswing
Junior Member
 
Join Date: Oct 2001
Posts: 4
Wow

Wow, I hadn't thought of the solution in those terms. What a great idea. Thanks a lot.
-I
icaruswing is offline   Reply With Quote
Reply

Go Back   Flash Kit Community Forums > General Help > Games

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 05:26 PM.


internet.commerce
Be a Commerce Partner
 »  »  »  »  »  »  »
 »  »  »  »  »  »
 

    

Acceptable Use Policy


The Network for Technology Professionals

Search:

About Internet.com

Legal Notices, Licensing, Permissions, Privacy Policy.
Advertise | Newsletters | E-mail Offers


Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.