Schuss.cpp 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  1. #include "Schuss.h"
  2. // Inhalt der Schuss Klasse aus Schuss.h
  3. // Konstruktor
  4. Schuss::Schuss( Vec2< float > pos, Vec2< float > speed )
  5. : Object2D()
  6. {
  7. setPosition( pos );
  8. setSpeed( speed );
  9. }
  10. // nicht constant
  11. void Schuss::render( Mat3< float > &kamMat, Bild &zRObj, const char *kamName )
  12. {
  13. zRObj.drawLinie( (Punkt)( kamMat * position ), (Punkt)( kamMat * ( position - speed / 10 ) ), 0xFFFFFFFF );
  14. }
  15. // constant
  16. Rect2< float > Schuss::getBoundingBox() const
  17. {
  18. auto rect = Rect2< float >();
  19. rect.topLeft.x = min( position.x, ( position - this->speed / 10 ).x );
  20. rect.topLeft.y = min( position.y, ( position - this->speed / 10 ).y );
  21. rect.bottomRight.x = max( position.x, ( position - this->speed / 10 ).x );
  22. rect.bottomRight.y = max( position.y, ( position - this->speed / 10 ).y );
  23. return rect;
  24. }
  25. void Schuss::save( Datei *zD ) const
  26. {
  27. zD->schreibe( (char *)&position.x, 4 );
  28. zD->schreibe( (char *)&position.y, 4 );
  29. zD->schreibe( (char *)&speed.x, 4 );
  30. zD->schreibe( (char *)&speed.y, 4 );
  31. }