v1.4.4
This commit is contained in:
commit
9c94d113d3
10260 changed files with 1237388 additions and 0 deletions
36
source/game/interfaces/StarSwingableItem.hpp
Normal file
36
source/game/interfaces/StarSwingableItem.hpp
Normal file
|
@ -0,0 +1,36 @@
|
|||
#ifndef STAR_SWINGABLE_ITEM_HPP
|
||||
#define STAR_SWINGABLE_ITEM_HPP
|
||||
|
||||
#include "StarFireableItem.hpp"
|
||||
|
||||
namespace Star {
|
||||
|
||||
STAR_CLASS(SwingableItem);
|
||||
|
||||
class SwingableItem : public FireableItem {
|
||||
public:
|
||||
SwingableItem();
|
||||
SwingableItem(Json const& params);
|
||||
virtual ~SwingableItem() {}
|
||||
|
||||
// These can be different
|
||||
// Default implementation is the same though
|
||||
virtual float getAngleDir(float aimAngle, Direction facingDirection);
|
||||
virtual float getAngle(float aimAngle);
|
||||
virtual float getItemAngle(float aimAngle);
|
||||
virtual String getArmFrame();
|
||||
|
||||
virtual List<Drawable> drawables() const = 0;
|
||||
|
||||
void setParams(Json const& params);
|
||||
|
||||
protected:
|
||||
float m_swingStart;
|
||||
float m_swingFinish;
|
||||
float m_swingAimFactor;
|
||||
Maybe<float> m_coolingDownAngle;
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue