v1.4.4
This commit is contained in:
commit
9c94d113d3
10260 changed files with 1237388 additions and 0 deletions
39
source/game/items/StarObjectItem.hpp
Normal file
39
source/game/items/StarObjectItem.hpp
Normal file
|
@ -0,0 +1,39 @@
|
|||
#ifndef STAR_OBJECT_ITEM_HPP
|
||||
#define STAR_OBJECT_ITEM_HPP
|
||||
|
||||
#include "StarItem.hpp"
|
||||
#include "StarFireableItem.hpp"
|
||||
#include "StarBeamItem.hpp"
|
||||
|
||||
namespace Star {
|
||||
|
||||
STAR_CLASS(ObjectItem);
|
||||
|
||||
class ObjectItem : public Item, public FireableItem, public BeamItem {
|
||||
public:
|
||||
ObjectItem(Json const& config, String const& directory, Json const& objectParameters);
|
||||
virtual ~ObjectItem() {}
|
||||
|
||||
ItemPtr clone() const override;
|
||||
|
||||
void init(ToolUserEntity* owner, ToolHand hand) override;
|
||||
void update(FireMode fireMode, bool shifting, HashSet<MoveControlType> const& moves) override;
|
||||
|
||||
List<Drawable> nonRotatedDrawables() const override;
|
||||
|
||||
float cooldownTime() const override;
|
||||
void fire(FireMode mode, bool shifting, bool edgeTriggered) override;
|
||||
|
||||
String objectName() const;
|
||||
Json objectParameters() const;
|
||||
|
||||
bool placeInWorld(FireMode mode, bool shifting);
|
||||
bool canPlace(bool shifting) const;
|
||||
|
||||
private:
|
||||
bool m_shifting;
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue