Effect.cpp 689 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. #include "Effect.h"
  2. Effect::Effect( Spieler *zSpieler, float maxTime )
  3. : ReferenceCounter()
  4. {
  5. this->zSpieler = zSpieler;
  6. timeLeft = maxTime;
  7. }
  8. Effect::~Effect()
  9. {}
  10. bool Effect::tick( double time, Spiel *zSpiel )
  11. {
  12. timeLeft -= (float)time;
  13. return timeLeft <= 0;
  14. }
  15. bool Effect::istSpielerBeweglich( Richtung r ) const
  16. {
  17. return 1;
  18. }
  19. bool Effect::istSpielerVerwundbar( Richtung r ) const
  20. {
  21. return 1;
  22. }
  23. bool Effect::istSpielerSichtbar( Team *zTeam ) const
  24. {
  25. return 1;
  26. }
  27. bool Effect::istIntersectable() const
  28. {
  29. return 1;
  30. }
  31. void Effect::move( Richtung r, double time )
  32. {}
  33. bool Effect::istGegenstandErlaubt( GegenstandTyp typ ) const
  34. {
  35. return 1;
  36. }