metaforce/Runtime/Weapon/CWeaponMode.hpp

36 lines
1012 B
C++
Raw Normal View History

2016-11-22 20:43:16 +00:00
#ifndef __URDE_CWEAPONMODE_HPP__
#define __URDE_CWEAPONMODE_HPP__
#include "WeaponCommon.hpp"
2016-11-22 20:43:16 +00:00
namespace urde
{
class CWeaponMode
{
EWeaponType x0_weaponType = EWeaponType::None;
bool x4_24_charged : 1;
bool x4_25_comboed : 1;
bool x4_26_instantKill : 1;
2016-11-22 20:43:16 +00:00
public:
2017-11-12 05:14:57 +00:00
CWeaponMode() { x4_24_charged = false; x4_25_comboed = false; x4_26_instantKill = false; }
CWeaponMode(EWeaponType, bool charged = false, bool comboed = false, bool instaKill = false);
2016-11-22 20:43:16 +00:00
EWeaponType GetType() const;
bool IsCharged() const { return x4_24_charged; }
bool IsComboed() const { return x4_25_comboed; }
bool IsInstantKill() const { return x4_26_instantKill; }
2016-11-22 20:43:16 +00:00
static CWeaponMode Invalid();
static CWeaponMode Phazon();
static CWeaponMode Plasma();
static CWeaponMode Wave();
static CWeaponMode BoostBall();
static CWeaponMode Ice();
static CWeaponMode Power();
static CWeaponMode Bomb();
static CWeaponMode PowerBomb();
2016-11-22 20:43:16 +00:00
};
}
#endif // __URDE_CWEAPONMODE_HPP__