Well as I said
p.s I know I sometimes have problems getting my point across if any clarification is needed please ask .
so I knew this would happen XD .
WHY WHY WHY on EARTH are you calling a destructor manually?
: Well since I am using zero memory heap allocation and I am using std::vectors to store objects I am unable to utilize the .erase() function on the std::vector's and I can not call the delete function to delete any objects there-four I must call destructors manually.
Alright, what IS your problem with the vectors?
: (In the video) Pay no attention to the space ship thingy or the lasers. Notice the white square (it being a white square because I am currently having a image loading problem with that particular object

) I click on it with the
weird mouse cursor
then right click somewhere else with the cursor. After that the white square moves to were the cursor is/previously was. but if you will notice the movement at first is diagonal but then it goes straight.
Ex.
Code: Select all
\
\ <- wanted result.
\
--------- <- un-wanted part of result.
:-(
This would not be a problem if I did not want to use the same function on projectiles. (Seriously who ever herd of a projectile that does that

)
This is caused because the object is offset by its speed and will not stop moving until both the X and Y coordinates for the object are at there destination.
This means that if one axis is greater than the other then it will eventually continue to move on the axis with a greater value and not the lesser one.
Code: Select all
(hence the) ----- (from the above example)
I am unsure how to avoid this. Right now I just got home so I will post a better (meaning more commented) version of the code later. (Probably in a hour or 2)