Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I make a very basic Pong game (at work) and my problem is, the ball moves “Blurry” .. I increase frame rate but it seems not ok yet .. any idea ?

package src {
    import flash.display.*;
    import flash.display.MovieClip;
    import flash.display.Stage;
    import flash.display.Sprite;
    import flash.display.BitmapData;
    import flash.events.*;
    import flash.events.MouseEvent;
    import flash.net.*;
    import flash.filters.*;
    import flash.text.*;    
    import flash.xml.*;
    import flash.geom.*;

    public dynamic class pong00 extends Sprite{

        public var playerA:pongPlayer = new pongPlayer();
        public var playerB:pongPlayer = new pongPlayer();
        public var ball01:Ball00 = new Ball00();
        public var ballDegree:Number = 45;
        public var ballAngelRadian:Number = 0;
        public var ballColisionStage:Boolean = false;
        public var ballAngelRadianVector:Number = 1;
        public var ballSpeed = 16;

        public function pong00():void{
            addChild(playerA);
            addChild(playerB);
            addChild(ball01);
            ballAngelRadian = ( ballDegree * Math.PI / 180);                                  stageOrginizer();
        }
        private function stageOrginizer():void{ // put on the stage
            tita_txt.text = " Ready "; // .. a text box on stage ..
            playerA.x = 20; playerB.x = stage.stageWidth - 20;
            playerA.y = playerB.y = stage.stageHeight/2;
            ball01.x = stage.stageWidth/2;
            ball01.y = stage.stageHeight/2;
            stage.addEventListener(MouseEvent.MOUSE_MOVE, io);
            stage.addEventListener(Event.ENTER_FRAME, FL);
        }
        public function io(evt:MouseEvent):void{    //// mouse 
            if (ball01.x < (stage.stageWidth/2)){
                playerA.y = mouseY;
            }else{
                playerB.y = mouseY;
            }
        }
        public function FL(evt:Event):void{     /// stage enter frame   
            if ( !(ballColisionStage)){
            ball01.x -= ballAngelRadianVector * (Math.cos(ballAngelRadian) * ballSpeed);
            ball01.y -= ballAngelRadianVector * (Math.sin(ballAngelRadian) * ballSpeed);
            }
            if ( (ball01.x < 0) || (ball01.x > stage.stageWidth)){
                tita_txt.text = " ooops !!! "; // .. a text box on stage .. 
                impact(0);
            }
            if ( (ball01.y < 0 ) || (ball01.y > stage.stageHeight)){
                impact(180);
            }
            if( (ball01.hitTestObject(playerB)) || (ball01.hitTestObject(playerA)) ){
                tita_txt.text = "";// .. atext box on stage .. 
                impact(0);
            }
        }
        public function impact(fee:int):void{
            ballAngelRadianVector = -ballAngelRadianVector;
            ballDegree = fee - ballDegree ;
            ballAngelRadian = ( ballDegree * Math.PI / 180);
        }
    }
}
share|improve this question
Can't really compile this - could you upload the SWF or something and provide a link so I can see what you mean? filedropper.com – Marty Wallace Jun 10 '11 at 5:14
Are you unhappy with my answer? – Marty Wallace Jun 10 '11 at 6:18

2 Answers

From what I can see everything is perfect. The blur effect is an illusion caused by the white ball on a darker background.

If you take the framerate down to say 10, you'll see that there is no blur effect.

PS. Nice work on the game - if you need help in this space just let me know!

share|improve this answer
check this .. kataxco.com/num/num04.html and kataxco.com/zd/zd04.html .. both same engine (use arrow key Left and Right to rotate) .. : ) ,, – Katax EmperorKatax Jun 10 '11 at 5:34
Very nice. Keep it up. – Marty Wallace Jun 10 '11 at 5:38

I would suggest you use the tweenlite engine for animations. I've never had any problems with this library and it is awesome for animations. You can download it at http://www.greensock.com/TweenLite

share|improve this answer
TweenLite would be terrible for this. It's for moving something from point A to point B once, not continuously updating a position like in a game. – grapefrukt Jun 10 '11 at 8:39
That is where you are wrong my friend :) I have made a webcam-motion-detection library and i use TweenLite for constant animation of a cursor. If you set the time of TweenLite to 0.1, you can do very nice animations without stressing your system (I've done research on this). – Michiel Standaert Jun 10 '11 at 8:43
If you need position interpolation, maybe, but for a game that updates each and every frame, you don't have me convinced. But, each to his own! – grapefrukt Jun 10 '11 at 8:45
Very true, but i'll stick with the TweenLite library ;) (and the cursorposition in my library is updated on each frame too). TweenLite doesn't stress the system because it keeps killing his own tweens whenever a new tween is called on an object. – Michiel Standaert Jun 10 '11 at 8:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.