Omnimaga

Calculator Community => TI Calculators => Axe => Topic started by: Progammer on June 18, 2011, 10:13:20 am

Title: Detector colision probleme
Post by: Progammer on June 18, 2011, 10:13:20 am
I started creating a game where a guy moves with an acceleration. I get to manage packages from the right but not those from the left. My algorithm is as follows:
It asks whether the 8 pixels on the right (or left) are put out. If so, we go to the following 8 pixels (more on the right or left). If a pixel is on, is stored (the difference between the abscissa of the pixel and the abscissa of the man) in the acceleration.

A is the horizontal acceleration
(X,Y) are the guy's coordonates
The routine works (right):

:Lbl DRO
:for(O,X+8,X+8+A
:For(Z,0,7
:If Pxl-Test(O,Z+Y
:O-8-X->A
:Return
:End
:End
:End
:Return

The routine that is the problem

:Lbl GAU
:O=X-1
:Repeat O=X+A-2
:For(Z,0,7
:If Pxl-Test(O,Z+Y
:O-X+1->A
:Return
:End
:End
:O-1->O
:End
:Return
 
Here I can't use a For( because I decrease O .

When my guy goes to a wall on the right, it is stopped against it and an acceleration of 0. But when he goes to a wall to the left, it passes through as if the routine did not work. I need help please!  :banghead:

Title: Re: Detector colision probleme
Post by: Fast Crash on June 18, 2011, 04:36:26 pm
Code: [Select]
O=X-1 ???
I think, if it's really what you wrote, the mistake :D
Code: [Select]
X-1->O
Title: Re: Detector colision probleme
Post by: Progammer on June 18, 2011, 06:39:25 pm
Omg How stupid I am ! Yes I really wrote this ... Thank you :)

Edit : this still doesn't woks :(
Title: Re: Detector colision probleme
Post by: Quigibo on June 18, 2011, 07:33:15 pm
Don't forget order of operations is strictly left to right.  Change O=X+A-2 to X+A-2=O.
Title: Re: Detector colision probleme
Post by: Progammer on June 18, 2011, 08:26:24 pm
Thank's a lot ! It works :D btw congratulation for the Axe project :)
Title: Re: Detector colision probleme
Post by: Munchor on June 19, 2011, 12:31:18 pm
I also recommend you to use parentheses in pixel testing, I've had some issues with that.
Title: Re: Detector colision probleme
Post by: Progammer on June 19, 2011, 01:13:51 pm
Ok thank you