1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2024-11-08 16:57:16 +01:00
SqMod/source/Entity/Textdraw.hpp

115 lines
5.3 KiB
C++
Raw Normal View History

2015-09-30 02:56:11 +02:00
#ifndef _ENTITY_TEXTDRAW_HPP_
#define _ENTITY_TEXTDRAW_HPP_
// ------------------------------------------------------------------------------------------------
#include "Entity.hpp"
// ------------------------------------------------------------------------------------------------
namespace SqMod {
/* ------------------------------------------------------------------------------------------------
2015-10-29 22:14:17 +01:00
* Class responsible for managing the referenced textdraw instance.
2015-09-30 02:56:11 +02:00
*/
class CTextdraw : public Reference< CTextdraw >
{
public:
2015-10-29 22:14:17 +01:00
/* --------------------------------------------------------------------------------------------
* Import the constructors, destructors and assignment operators from the base class.
*/
2015-09-30 02:56:11 +02:00
using RefType::Reference;
/* --------------------------------------------------------------------------------------------
* Construct a reference from a base reference.
*/
CTextdraw(const Reference< CTextdraw > & o);
/* --------------------------------------------------------------------------------------------
2015-10-29 22:14:17 +01:00
* Show the referenced textdraw instance to all players on the server.
*/
void ShowAll() const;
/* --------------------------------------------------------------------------------------------
2015-10-29 22:14:17 +01:00
* Show the referenced textdraw instance to the specified player instance.
*/
void ShowFor(const Reference< CPlayer > & player) const;
/* --------------------------------------------------------------------------------------------
2015-10-29 22:14:17 +01:00
* Show the referenced textdraw instance to all players in the specified range.
*/
void ShowRange(SQInt32 first, SQInt32 last) const;
/* --------------------------------------------------------------------------------------------
2015-10-29 22:14:17 +01:00
* Hide the referenced textdraw instance from all players on the server.
*/
void HideAll() const;
/* --------------------------------------------------------------------------------------------
2015-10-29 22:14:17 +01:00
* Hide the referenced textdraw instance from the specified player instance.
*/
void HideFor(const Reference< CPlayer > & player) const;
/* --------------------------------------------------------------------------------------------
2015-10-29 22:14:17 +01:00
* Hide the referenced textdraw instance from all players in the specified range.
*/
void HideRange(SQInt32 first, SQInt32 last) const;
/* --------------------------------------------------------------------------------------------
2015-10-29 22:14:17 +01:00
* Set the position of the referenced textdraw instance for all players on the server.
*/
void SetPositionAll(const Vector2i & pos) const;
/* --------------------------------------------------------------------------------------------
2015-10-29 22:14:17 +01:00
* Set the position of the referenced textdraw instance for all players on the server.
*/
void SetPositionAllEx(SQInt32 x, SQInt32 y) const;
/* --------------------------------------------------------------------------------------------
2015-10-29 22:14:17 +01:00
* Set the position of the referenced textdraw instance for the specified player instance.
*/
void SetPositionFor(const Reference< CPlayer > & player, const Vector2i & pos) const;
/* --------------------------------------------------------------------------------------------
2015-10-29 22:14:17 +01:00
* Set the position of the referenced textdraw instance for the specified player instance.
*/
void SetPositionForEx(const Reference< CPlayer > & player, SQInt32 x, SQInt32 y) const;
/* --------------------------------------------------------------------------------------------
2015-10-29 22:14:17 +01:00
* Set the position of the referenced textdraw instance for all players in the specified range.
*/
void SetPositionRange(SQInt32 first, SQInt32 last, const Vector2i & pos) const;
/* --------------------------------------------------------------------------------------------
2015-10-29 22:14:17 +01:00
* Set the center of the referenced textdraw instance for all players on the server.
*/
void SetColorAll(const Color4 & col) const;
/* --------------------------------------------------------------------------------------------
2015-10-29 22:14:17 +01:00
* Set the color of the referenced textdraw instance for all players on the server.
*/
void SetColorAllEx(Uint8 r, Uint8 g, Uint8 b, Uint8 a) const;
/* --------------------------------------------------------------------------------------------
2015-10-29 22:14:17 +01:00
* Set the color of the referenced textdraw instance for the specified player instance.
*/
void SetColorFor(const Reference< CPlayer > & player, const Color4 & col) const;
/* --------------------------------------------------------------------------------------------
2015-10-29 22:14:17 +01:00
* Set the color of the referenced textdraw instance for the specified player instance.
*/
void SetColorForEx(const Reference< CPlayer > & player, Uint8 r, Uint8 g, Uint8 b, Uint8 a) const;
/* --------------------------------------------------------------------------------------------
2015-10-29 22:14:17 +01:00
* Set the color of the referenced textdraw instance for all players in the specified range.
*/
void SetColorRange(SQInt32 first, SQInt32 last, const Color4 & col) const;
/* --------------------------------------------------------------------------------------------
2015-10-29 22:14:17 +01:00
* Retrieve the text string used by the referenced textdraw instance.
*/
const SQChar * GetText() const;
2015-09-30 02:56:11 +02:00
};
} // Namespace:: SqMod
#endif // _ENTITY_TEXTDRAW_HPP_