mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-01-19 03:57:14 +01:00
Prepared various miscellaneous types for documentation.
This commit is contained in:
parent
dec4033208
commit
37c69852d0
@ -7,59 +7,176 @@
|
|||||||
// ------------------------------------------------------------------------------------------------
|
// ------------------------------------------------------------------------------------------------
|
||||||
namespace SqMod {
|
namespace SqMod {
|
||||||
|
|
||||||
// ------------------------------------------------------------------------------------------------
|
/* ------------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
struct CPlayerImmunity
|
struct CPlayerImmunity
|
||||||
{
|
{
|
||||||
// --------------------------------------------------------------------------------------------
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
CPlayerImmunity() noexcept;
|
CPlayerImmunity() noexcept;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
CPlayerImmunity(SQInt32 flags) noexcept;
|
CPlayerImmunity(SQInt32 flags) noexcept;
|
||||||
// --------------------------------------------------------------------------------------------
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
CPlayerImmunity(const CPlayerImmunity & x) noexcept;
|
CPlayerImmunity(const CPlayerImmunity & x) noexcept;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
CPlayerImmunity(CPlayerImmunity && x) noexcept;
|
CPlayerImmunity(CPlayerImmunity && x) noexcept;
|
||||||
// --------------------------------------------------------------------------------------------
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
~CPlayerImmunity();
|
~CPlayerImmunity();
|
||||||
// --------------------------------------------------------------------------------------------
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
CPlayerImmunity & operator = (const CPlayerImmunity & x) noexcept;
|
CPlayerImmunity & operator = (const CPlayerImmunity & x) noexcept;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
CPlayerImmunity & operator = (CPlayerImmunity && x) noexcept;
|
CPlayerImmunity & operator = (CPlayerImmunity && x) noexcept;
|
||||||
// --------------------------------------------------------------------------------------------
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
bool operator == (const CPlayerImmunity & x) const noexcept;
|
bool operator == (const CPlayerImmunity & x) const noexcept;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
bool operator != (const CPlayerImmunity & x) const noexcept;
|
bool operator != (const CPlayerImmunity & x) const noexcept;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
bool operator < (const CPlayerImmunity & x) const noexcept;
|
bool operator < (const CPlayerImmunity & x) const noexcept;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
bool operator > (const CPlayerImmunity & x) const noexcept;
|
bool operator > (const CPlayerImmunity & x) const noexcept;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
bool operator <= (const CPlayerImmunity & x) const noexcept;
|
bool operator <= (const CPlayerImmunity & x) const noexcept;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
bool operator >= (const CPlayerImmunity & x) const noexcept;
|
bool operator >= (const CPlayerImmunity & x) const noexcept;
|
||||||
// --------------------------------------------------------------------------------------------
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
SQInteger Cmp(const CPlayerImmunity & x) const noexcept;
|
SQInteger Cmp(const CPlayerImmunity & x) const noexcept;
|
||||||
// --------------------------------------------------------------------------------------------
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
operator SQInt32 () const noexcept;
|
operator SQInt32 () const noexcept;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
operator bool () const noexcept;
|
operator bool () const noexcept;
|
||||||
// --------------------------------------------------------------------------------------------
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
SQInt32 GetFlags() const noexcept;
|
SQInt32 GetFlags() const noexcept;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
void SetFlags(SQInt32 flags) noexcept;
|
void SetFlags(SQInt32 flags) noexcept;
|
||||||
// --------------------------------------------------------------------------------------------
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
CPlayerImmunity & SetnGet(SQInt32 flags) noexcept;
|
CPlayerImmunity & SetnGet(SQInt32 flags) noexcept;
|
||||||
// --------------------------------------------------------------------------------------------
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
void Apply(const CPlayer & player) const noexcept;
|
void Apply(const CPlayer & player) const noexcept;
|
||||||
// --------------------------------------------------------------------------------------------
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
bool GetBullet() const noexcept;
|
bool GetBullet() const noexcept;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
void SetBullet(bool toggle) noexcept;
|
void SetBullet(bool toggle) noexcept;
|
||||||
// --------------------------------------------------------------------------------------------
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
bool GetFire() const noexcept;
|
bool GetFire() const noexcept;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
void SetFire(bool toggle) noexcept;
|
void SetFire(bool toggle) noexcept;
|
||||||
// --------------------------------------------------------------------------------------------
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
bool GetExplosion() const noexcept;
|
bool GetExplosion() const noexcept;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
void SetExplosion(bool toggle) noexcept;
|
void SetExplosion(bool toggle) noexcept;
|
||||||
// --------------------------------------------------------------------------------------------
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
bool GetCollision() const noexcept;
|
bool GetCollision() const noexcept;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
void SetCollision(bool toggle) noexcept;
|
void SetCollision(bool toggle) noexcept;
|
||||||
// --------------------------------------------------------------------------------------------
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
bool GetMelee() const noexcept;
|
bool GetMelee() const noexcept;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
void SetMelee(bool toggle) noexcept;
|
void SetMelee(bool toggle) noexcept;
|
||||||
// --------------------------------------------------------------------------------------------
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
void EnableAll() noexcept;
|
void EnableAll() noexcept;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
void DisableAll() noexcept;
|
void DisableAll() noexcept;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
// --------------------------------------------------------------------------------------------
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
SQInt32 m_Flags;
|
SQInt32 m_Flags;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -7,47 +7,138 @@
|
|||||||
// ------------------------------------------------------------------------------------------------
|
// ------------------------------------------------------------------------------------------------
|
||||||
namespace SqMod {
|
namespace SqMod {
|
||||||
|
|
||||||
// ------------------------------------------------------------------------------------------------
|
/* ------------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
class CRadio
|
class CRadio
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
// --------------------------------------------------------------------------------------------
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
CRadio() noexcept;
|
CRadio() noexcept;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
CRadio(SQInt32 id) noexcept;
|
CRadio(SQInt32 id) noexcept;
|
||||||
// --------------------------------------------------------------------------------------------
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
CRadio(const CRadio & x) noexcept;
|
CRadio(const CRadio & x) noexcept;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
CRadio(CRadio && x) noexcept;
|
CRadio(CRadio && x) noexcept;
|
||||||
// --------------------------------------------------------------------------------------------
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
~CRadio();
|
~CRadio();
|
||||||
// --------------------------------------------------------------------------------------------
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
CRadio & operator= (const CRadio & x) noexcept;
|
CRadio & operator= (const CRadio & x) noexcept;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
CRadio & operator= (CRadio && x) noexcept;
|
CRadio & operator= (CRadio && x) noexcept;
|
||||||
// --------------------------------------------------------------------------------------------
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
CRadio operator+ (const CRadio & x) const noexcept;
|
CRadio operator+ (const CRadio & x) const noexcept;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
CRadio operator- (const CRadio & x) const noexcept;
|
CRadio operator- (const CRadio & x) const noexcept;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
CRadio operator* (const CRadio & x) const noexcept;
|
CRadio operator* (const CRadio & x) const noexcept;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
CRadio operator/ (const CRadio & x) const noexcept;
|
CRadio operator/ (const CRadio & x) const noexcept;
|
||||||
// --------------------------------------------------------------------------------------------
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
bool operator == (const CRadio & x) const noexcept;
|
bool operator == (const CRadio & x) const noexcept;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
bool operator != (const CRadio & x) const noexcept;
|
bool operator != (const CRadio & x) const noexcept;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
bool operator < (const CRadio & x) const noexcept;
|
bool operator < (const CRadio & x) const noexcept;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
bool operator > (const CRadio & x) const noexcept;
|
bool operator > (const CRadio & x) const noexcept;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
bool operator <= (const CRadio & x) const noexcept;
|
bool operator <= (const CRadio & x) const noexcept;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
bool operator >= (const CRadio & x) const noexcept;
|
bool operator >= (const CRadio & x) const noexcept;
|
||||||
// --------------------------------------------------------------------------------------------
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
SQInteger Cmp(const CRadio & x) const noexcept;
|
SQInteger Cmp(const CRadio & x) const noexcept;
|
||||||
// --------------------------------------------------------------------------------------------
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
operator SQInt32 () const noexcept;
|
operator SQInt32 () const noexcept;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
operator bool () const noexcept;
|
operator bool () const noexcept;
|
||||||
// --------------------------------------------------------------------------------------------
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
SQInt32 GetID() const noexcept;
|
SQInt32 GetID() const noexcept;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
void SetID(SQInt32 id) noexcept;
|
void SetID(SQInt32 id) noexcept;
|
||||||
// --------------------------------------------------------------------------------------------
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
CRadio & SetnGet(SQInt32 id) noexcept;
|
CRadio & SetnGet(SQInt32 id) noexcept;
|
||||||
// --------------------------------------------------------------------------------------------
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
void Apply(const CVehicle & vehicle) const noexcept;
|
void Apply(const CVehicle & vehicle) const noexcept;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
// --------------------------------------------------------------------------------------------
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
SQInt32 m_ID;
|
SQInt32 m_ID;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -7,45 +7,133 @@
|
|||||||
// ------------------------------------------------------------------------------------------------
|
// ------------------------------------------------------------------------------------------------
|
||||||
namespace SqMod {
|
namespace SqMod {
|
||||||
|
|
||||||
// ------------------------------------------------------------------------------------------------
|
/* ------------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
class CSound
|
class CSound
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
// --------------------------------------------------------------------------------------------
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
CSound() noexcept;
|
CSound() noexcept;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
CSound(SQInt32 id) noexcept;
|
CSound(SQInt32 id) noexcept;
|
||||||
// --------------------------------------------------------------------------------------------
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
CSound(const CSound & x) noexcept;
|
CSound(const CSound & x) noexcept;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
CSound(CSound && x) noexcept;
|
CSound(CSound && x) noexcept;
|
||||||
// --------------------------------------------------------------------------------------------
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
~CSound();
|
~CSound();
|
||||||
// --------------------------------------------------------------------------------------------
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
CSound & operator= (const CSound & x) noexcept;
|
CSound & operator= (const CSound & x) noexcept;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
CSound & operator= (CSound && x) noexcept;
|
CSound & operator= (CSound && x) noexcept;
|
||||||
// --------------------------------------------------------------------------------------------
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
CSound operator+ (const CSound & x) const noexcept;
|
CSound operator+ (const CSound & x) const noexcept;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
CSound operator- (const CSound & x) const noexcept;
|
CSound operator- (const CSound & x) const noexcept;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
CSound operator* (const CSound & x) const noexcept;
|
CSound operator* (const CSound & x) const noexcept;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
CSound operator/ (const CSound & x) const noexcept;
|
CSound operator/ (const CSound & x) const noexcept;
|
||||||
// --------------------------------------------------------------------------------------------
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
bool operator == (const CSound & x) const noexcept;
|
bool operator == (const CSound & x) const noexcept;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
bool operator != (const CSound & x) const noexcept;
|
bool operator != (const CSound & x) const noexcept;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
bool operator < (const CSound & x) const noexcept;
|
bool operator < (const CSound & x) const noexcept;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
bool operator > (const CSound & x) const noexcept;
|
bool operator > (const CSound & x) const noexcept;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
bool operator <= (const CSound & x) const noexcept;
|
bool operator <= (const CSound & x) const noexcept;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
bool operator >= (const CSound & x) const noexcept;
|
bool operator >= (const CSound & x) const noexcept;
|
||||||
// --------------------------------------------------------------------------------------------
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
SQInteger Cmp(const CSound & x) const noexcept;
|
SQInteger Cmp(const CSound & x) const noexcept;
|
||||||
// --------------------------------------------------------------------------------------------
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
operator SQInt32 () const noexcept;
|
operator SQInt32 () const noexcept;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
operator bool () const noexcept;
|
operator bool () const noexcept;
|
||||||
// --------------------------------------------------------------------------------------------
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
SQInt32 GetID() const noexcept;
|
SQInt32 GetID() const noexcept;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
void SetID(SQInt32 id) noexcept;
|
void SetID(SQInt32 id) noexcept;
|
||||||
// --------------------------------------------------------------------------------------------
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
void Play() const noexcept;
|
void Play() const noexcept;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
// --------------------------------------------------------------------------------------------
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
SQInt32 m_ID;
|
SQInt32 m_ID;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -7,44 +7,127 @@
|
|||||||
// ------------------------------------------------------------------------------------------------
|
// ------------------------------------------------------------------------------------------------
|
||||||
namespace SqMod {
|
namespace SqMod {
|
||||||
|
|
||||||
// ------------------------------------------------------------------------------------------------
|
/* ------------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
struct CVehicleImmunity
|
struct CVehicleImmunity
|
||||||
{
|
{
|
||||||
// --------------------------------------------------------------------------------------------
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
CVehicleImmunity() noexcept;
|
CVehicleImmunity() noexcept;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
CVehicleImmunity(SQInt32 flags) noexcept;
|
CVehicleImmunity(SQInt32 flags) noexcept;
|
||||||
// --------------------------------------------------------------------------------------------
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
CVehicleImmunity(const CVehicleImmunity & x) noexcept;
|
CVehicleImmunity(const CVehicleImmunity & x) noexcept;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
CVehicleImmunity(CVehicleImmunity && x) noexcept;
|
CVehicleImmunity(CVehicleImmunity && x) noexcept;
|
||||||
// --------------------------------------------------------------------------------------------
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
~CVehicleImmunity();
|
~CVehicleImmunity();
|
||||||
// --------------------------------------------------------------------------------------------
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
CVehicleImmunity & operator= (const CVehicleImmunity & x) noexcept;
|
CVehicleImmunity & operator= (const CVehicleImmunity & x) noexcept;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
CVehicleImmunity & operator= (CVehicleImmunity && x) noexcept;
|
CVehicleImmunity & operator= (CVehicleImmunity && x) noexcept;
|
||||||
// --------------------------------------------------------------------------------------------
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
bool operator == (const CVehicleImmunity & x) const noexcept;
|
bool operator == (const CVehicleImmunity & x) const noexcept;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
bool operator != (const CVehicleImmunity & x) const noexcept;
|
bool operator != (const CVehicleImmunity & x) const noexcept;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
bool operator < (const CVehicleImmunity & x) const noexcept;
|
bool operator < (const CVehicleImmunity & x) const noexcept;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
bool operator > (const CVehicleImmunity & x) const noexcept;
|
bool operator > (const CVehicleImmunity & x) const noexcept;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
bool operator <= (const CVehicleImmunity & x) const noexcept;
|
bool operator <= (const CVehicleImmunity & x) const noexcept;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
bool operator >= (const CVehicleImmunity & x) const noexcept;
|
bool operator >= (const CVehicleImmunity & x) const noexcept;
|
||||||
// --------------------------------------------------------------------------------------------
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
SQInteger Cmp(const CVehicleImmunity & x) const noexcept;
|
SQInteger Cmp(const CVehicleImmunity & x) const noexcept;
|
||||||
// --------------------------------------------------------------------------------------------
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
operator SQInt32 () const noexcept;
|
operator SQInt32 () const noexcept;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
operator bool () const noexcept;
|
operator bool () const noexcept;
|
||||||
// --------------------------------------------------------------------------------------------
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
SQInt32 GetFlags() const noexcept;
|
SQInt32 GetFlags() const noexcept;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
void SetFlags(SQInt32 flags) noexcept;
|
void SetFlags(SQInt32 flags) noexcept;
|
||||||
// --------------------------------------------------------------------------------------------
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
CVehicleImmunity & SetnGet(SQInt32 flags) noexcept;
|
CVehicleImmunity & SetnGet(SQInt32 flags) noexcept;
|
||||||
// --------------------------------------------------------------------------------------------
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
void Apply(const CVehicle & vehicle) const noexcept;
|
void Apply(const CVehicle & vehicle) const noexcept;
|
||||||
// --------------------------------------------------------------------------------------------
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
void EnableAll() noexcept;
|
void EnableAll() noexcept;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
void DisableAll() noexcept;
|
void DisableAll() noexcept;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
// --------------------------------------------------------------------------------------------
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
SQInt32 m_Flags;
|
SQInt32 m_Flags;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -8,40 +8,104 @@
|
|||||||
// ------------------------------------------------------------------------------------------------
|
// ------------------------------------------------------------------------------------------------
|
||||||
namespace SqMod {
|
namespace SqMod {
|
||||||
|
|
||||||
// ------------------------------------------------------------------------------------------------
|
/* ------------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
struct CWastedSettings
|
struct CWastedSettings
|
||||||
{
|
{
|
||||||
// --------------------------------------------------------------------------------------------
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
typedef SQUnsignedInteger32 U32;
|
typedef SQUnsignedInteger32 U32;
|
||||||
typedef SQFloat F32;
|
typedef SQFloat F32;
|
||||||
// --------------------------------------------------------------------------------------------
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
U32 DeathTimer, FadeTimer;
|
U32 DeathTimer, FadeTimer;
|
||||||
F32 FadeInSpeed, FadeOutSpeed;
|
F32 FadeInSpeed, FadeOutSpeed;
|
||||||
Color3 FadeColor;
|
Color3 FadeColor;
|
||||||
U32 CorpseFadeStart, CorpseFadeTime;
|
U32 CorpseFadeStart, CorpseFadeTime;
|
||||||
// --------------------------------------------------------------------------------------------
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
CWastedSettings() noexcept;
|
CWastedSettings() noexcept;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
CWastedSettings(U32 dt, U32 ft, F32 fis, F32 fos, const Color3 & fc, U32 cfs, U32 cft) noexcept;
|
CWastedSettings(U32 dt, U32 ft, F32 fis, F32 fos, const Color3 & fc, U32 cfs, U32 cft) noexcept;
|
||||||
// --------------------------------------------------------------------------------------------
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
CWastedSettings(const CWastedSettings & x) noexcept;
|
CWastedSettings(const CWastedSettings & x) noexcept;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
CWastedSettings(CWastedSettings && x) noexcept;
|
CWastedSettings(CWastedSettings && x) noexcept;
|
||||||
// --------------------------------------------------------------------------------------------
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
~CWastedSettings();
|
~CWastedSettings();
|
||||||
// --------------------------------------------------------------------------------------------
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
CWastedSettings & operator= (const CWastedSettings & x) noexcept;
|
CWastedSettings & operator= (const CWastedSettings & x) noexcept;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
CWastedSettings & operator= (CWastedSettings && x) noexcept;
|
CWastedSettings & operator= (CWastedSettings && x) noexcept;
|
||||||
// --------------------------------------------------------------------------------------------
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
CWastedSettings operator+ (const CWastedSettings & x) const noexcept;
|
CWastedSettings operator+ (const CWastedSettings & x) const noexcept;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
CWastedSettings operator- (const CWastedSettings & x) const noexcept;
|
CWastedSettings operator- (const CWastedSettings & x) const noexcept;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
CWastedSettings operator* (const CWastedSettings & x) const noexcept;
|
CWastedSettings operator* (const CWastedSettings & x) const noexcept;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
CWastedSettings operator/ (const CWastedSettings & x) const noexcept;
|
CWastedSettings operator/ (const CWastedSettings & x) const noexcept;
|
||||||
// --------------------------------------------------------------------------------------------
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
bool operator== (const CWastedSettings & x) const noexcept;
|
bool operator== (const CWastedSettings & x) const noexcept;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
bool operator!= (const CWastedSettings & x) const noexcept;
|
bool operator!= (const CWastedSettings & x) const noexcept;
|
||||||
// --------------------------------------------------------------------------------------------
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
SQInteger Cmp(const CWastedSettings & x) const noexcept;
|
SQInteger Cmp(const CWastedSettings & x) const noexcept;
|
||||||
// --------------------------------------------------------------------------------------------
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
void Set() const noexcept;
|
void Set() const noexcept;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
void Get() const noexcept;
|
void Get() const noexcept;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -8,35 +8,100 @@
|
|||||||
// ------------------------------------------------------------------------------------------------
|
// ------------------------------------------------------------------------------------------------
|
||||||
namespace SqMod {
|
namespace SqMod {
|
||||||
|
|
||||||
// ------------------------------------------------------------------------------------------------
|
/* ------------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
struct CWorldBounds
|
struct CWorldBounds
|
||||||
{
|
{
|
||||||
// --------------------------------------------------------------------------------------------
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
Vector2f min, max;
|
Vector2f min, max;
|
||||||
// --------------------------------------------------------------------------------------------
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
CWorldBounds() noexcept;
|
CWorldBounds() noexcept;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
CWorldBounds(const Vector2f & vec) noexcept;
|
CWorldBounds(const Vector2f & vec) noexcept;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
CWorldBounds(const Vector2f & min, const Vector2f & max) noexcept;
|
CWorldBounds(const Vector2f & min, const Vector2f & max) noexcept;
|
||||||
// --------------------------------------------------------------------------------------------
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
CWorldBounds(const CWorldBounds & x) noexcept;
|
CWorldBounds(const CWorldBounds & x) noexcept;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
CWorldBounds(CWorldBounds && x) noexcept;
|
CWorldBounds(CWorldBounds && x) noexcept;
|
||||||
// --------------------------------------------------------------------------------------------
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
~CWorldBounds();
|
~CWorldBounds();
|
||||||
// --------------------------------------------------------------------------------------------
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
CWorldBounds & operator= (const CWorldBounds & x) noexcept;
|
CWorldBounds & operator= (const CWorldBounds & x) noexcept;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
CWorldBounds & operator= (CWorldBounds && x) noexcept;
|
CWorldBounds & operator= (CWorldBounds && x) noexcept;
|
||||||
// --------------------------------------------------------------------------------------------
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
CWorldBounds operator+ (const CWorldBounds & x) const noexcept;
|
CWorldBounds operator+ (const CWorldBounds & x) const noexcept;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
CWorldBounds operator- (const CWorldBounds & x) const noexcept;
|
CWorldBounds operator- (const CWorldBounds & x) const noexcept;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
CWorldBounds operator* (const CWorldBounds & x) const noexcept;
|
CWorldBounds operator* (const CWorldBounds & x) const noexcept;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
CWorldBounds operator/ (const CWorldBounds & x) const noexcept;
|
CWorldBounds operator/ (const CWorldBounds & x) const noexcept;
|
||||||
// --------------------------------------------------------------------------------------------
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
bool operator== (const CWorldBounds & x) const noexcept;
|
bool operator== (const CWorldBounds & x) const noexcept;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
bool operator!= (const CWorldBounds & x) const noexcept;
|
bool operator!= (const CWorldBounds & x) const noexcept;
|
||||||
// --------------------------------------------------------------------------------------------
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
SQInteger Cmp(const CWorldBounds & x) const noexcept;
|
SQInteger Cmp(const CWorldBounds & x) const noexcept;
|
||||||
// --------------------------------------------------------------------------------------------
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
void Set() const noexcept;
|
void Set() const noexcept;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
void Get() const noexcept;
|
void Get() const noexcept;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user