summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLukas Pioch <lukas@zgow.de>2017-09-07 10:33:46 +0200
committerMattes D <github@xoft.cz>2017-09-07 10:33:46 +0200
commited7adef1ca277c0eaef3be840be6b9ee456c04b8 (patch)
treea207cddc5a097c86fc9aa1e1a6c762b8c5096c18
parentChanged some int parameters to vector parameters (#3937) (diff)
downloadcuberite-ed7adef1ca277c0eaef3be840be6b9ee456c04b8.tar
cuberite-ed7adef1ca277c0eaef3be840be6b9ee456c04b8.tar.gz
cuberite-ed7adef1ca277c0eaef3be840be6b9ee456c04b8.tar.bz2
cuberite-ed7adef1ca277c0eaef3be840be6b9ee456c04b8.tar.lz
cuberite-ed7adef1ca277c0eaef3be840be6b9ee456c04b8.tar.xz
cuberite-ed7adef1ca277c0eaef3be840be6b9ee456c04b8.tar.zst
cuberite-ed7adef1ca277c0eaef3be840be6b9ee456c04b8.zip
-rw-r--r--Server/Plugins/APIDump/APIDesc.lua110
-rw-r--r--Server/Plugins/APIDump/Classes/Projectiles.lua23
-rw-r--r--src/ClientHandle.h2
-rw-r--r--src/Entities/Entity.h7
-rw-r--r--src/Entities/SplashPotionEntity.h5
5 files changed, 37 insertions, 110 deletions
diff --git a/Server/Plugins/APIDump/APIDesc.lua b/Server/Plugins/APIDump/APIDesc.lua
index 9a0b7a36e..0122a3e4f 100644
--- a/Server/Plugins/APIDump/APIDesc.lua
+++ b/Server/Plugins/APIDump/APIDesc.lua
@@ -3856,10 +3856,6 @@ local Hash = cCryptoHash.sha1HexString("DataToHash")
},
Notes = "This entity has killed another entity (the Victim). For players, adds the scoreboard statistics about the kill.",
},
- KilledBy =
- {
- Notes = "FIXME: Remove this from API",
- },
MoveToWorld =
{
{
@@ -3987,10 +3983,6 @@ local Hash = cCryptoHash.sha1HexString("DataToHash")
},
Notes = "Sets the entity's health to the specified amount of hitpoints. Doesn't broadcast any hurt animation. Doesn't kill the entity if health drops below zero. Use the TakeDamage() function instead for taking damage.",
},
- SetHeight =
- {
- Notes = "FIXME: Remove this from API",
- },
SetInvulnerableTicks =
{
Params =
@@ -4189,10 +4181,6 @@ local Hash = cCryptoHash.sha1HexString("DataToHash")
},
Notes = "Sets the Z component of the entity speed",
},
- SetWidth =
- {
- Notes = "FIXME: Remove this from API",
- },
SetYaw =
{
Params =
@@ -6472,7 +6460,13 @@ These ItemGrids are available in the API and can be manipulated by the plugins,
},
RemoveOneEquippedItem =
{
- Notes = "Removes one item from the hotbar's currently selected slot",
+ Returns =
+ {
+ {
+ Type = "boolean",
+ },
+ },
+ Notes = "Removes one item from the hotbar's currently selected slot. Returns true on success.",
},
SendEquippedSlot =
{
@@ -9344,7 +9338,7 @@ a_Player:OpenWindow(Window);
{
{
Name = "EffectType",
- Type = "cEntityEffect",
+ Type = "cEntityEffect#eType",
},
{
Name = "EffectDurationTicks",
@@ -9365,22 +9359,13 @@ a_Player:OpenWindow(Window);
{
Notes = "Removes all currently applied entity effects",
},
- GetHealth =
- {
- Returns =
- {
- {
- Type = "number",
- },
- },
- },
HasEntityEffect =
{
Params =
{
{
Name = "EffectType",
- Type = "cEntityEffect",
+ Type = "cEntityEffect#eType",
},
},
Returns =
@@ -9391,37 +9376,17 @@ a_Player:OpenWindow(Window);
},
Notes = "Returns true, if the supplied entity effect type is currently applied",
},
- Heal =
- {
-
- },
- KilledBy =
- {
-
- },
RemoveEntityEffect =
{
Params =
{
{
Name = "EffectType",
- Type = "cEntityEffect",
+ Type = "cEntityEffect#eType",
},
},
Notes = "Removes a currently applied entity effect",
},
- TakeDamage =
- {
-
- },
- TeleportTo =
- {
-
- },
- TeleportToEntity =
- {
-
- },
},
Inherits = "cEntity",
},
@@ -9869,6 +9834,12 @@ a_Player:OpenWindow(Window);
Type = "number",
},
},
+ Returns =
+ {
+ {
+ Type = "number",
+ },
+ },
Notes = "Adds or removes XP from the current XP amount. Won't allow XP to go negative. Returns the new experience, -1 on error (XP overflow).",
},
Feed =
@@ -9892,17 +9863,6 @@ a_Player:OpenWindow(Window);
},
Notes = "Tries to add the specified amounts to food level and food saturation level (only positive amounts expected). Returns true if player was hungry and the food was consumed, false if too satiated.",
},
- FoodPoison =
- {
- Params =
- {
- {
- Name = "NumTicks",
- Type = "number",
- },
- },
- Notes = "Starts the food poisoning for the specified amount of ticks; if already foodpoisoned, sets FoodPoisonedTicksRemaining to the larger of the two",
- },
ForceSetSpeed =
{
Params =
@@ -10077,10 +10037,6 @@ a_Player:OpenWindow(Window);
},
Notes = "Returns the food level (number of half-drumsticks on-screen)",
},
- GetFoodPoisonedTicksRemaining =
- {
- Notes = "Returns the number of ticks left for the food posoning effect",
- },
GetFoodSaturationLevel =
{
Returns =
@@ -10093,6 +10049,12 @@ a_Player:OpenWindow(Window);
},
GetFoodTickTimer =
{
+ Returns =
+ {
+ {
+ Type = "number",
+ },
+ },
Notes = "Returns the number of ticks past the last food-based heal or damage action; when this timer reaches 80, a new heal / damage is applied.",
},
GetGameMode =
@@ -10493,17 +10455,6 @@ a_Player:OpenWindow(Window);
{
Notes = "Reloads the player's rank, message visuals and permissions from the {{cRankManager}}, based on the player's current rank.",
},
- MoveTo =
- {
- Params =
- {
- {
- Name = "NewPosition",
- Type = "Vector3d",
- },
- },
- Notes = "Tries to move the player into the specified position.",
- },
OpenWindow =
{
Params =
@@ -10779,6 +10730,12 @@ a_Player:OpenWindow(Window);
Type = "number",
},
},
+ Returns =
+ {
+ {
+ Type = "boolean",
+ },
+ },
Notes = "Sets the current amount of experience (and indirectly, the XP level).",
},
SetCustomName =
@@ -10847,17 +10804,6 @@ a_Player:OpenWindow(Window);
},
Notes = "Sets the food level (number of half-drumsticks on-screen)",
},
- SetFoodPoisonedTicksRemaining =
- {
- Params =
- {
- {
- Name = "FoodPoisonedTicksRemaining",
- Type = "number",
- },
- },
- Notes = "Sets the number of ticks remaining for food poisoning. Doesn't send foodpoisoning effect to the client, use FoodPoison() for that.",
- },
SetFoodSaturationLevel =
{
Params =
diff --git a/Server/Plugins/APIDump/Classes/Projectiles.lua b/Server/Plugins/APIDump/Classes/Projectiles.lua
index a62779960..02ee01a1f 100644
--- a/Server/Plugins/APIDump/Classes/Projectiles.lua
+++ b/Server/Plugins/APIDump/Classes/Projectiles.lua
@@ -340,22 +340,12 @@ return
]],
Functions =
{
- GetEntityEffect =
- {
- Returns =
- {
- {
- Type = "cEntityEffect",
- },
- },
- Notes = "Returns the entity effect in this potion",
- },
GetEntityEffectType =
{
Returns =
{
{
- Type = "cEntityEffect",
+ Type = "cEntityEffect#eType",
},
},
Notes = "Returns the effect type of this potion",
@@ -380,17 +370,6 @@ return
},
Notes = "Returns the color index of the particles emitted by this potion",
},
- SetEntityEffect =
- {
- Params =
- {
- {
- Name = "EntityEffect",
- Type = "cEntityEffect",
- },
- },
- Notes = "Sets the entity effect for this potion",
- },
SetEntityEffectType =
{
Params =
diff --git a/src/ClientHandle.h b/src/ClientHandle.h
index 4a4898179..b1acede77 100644
--- a/src/ClientHandle.h
+++ b/src/ClientHandle.h
@@ -242,7 +242,7 @@ public: // tolua_export
/** Returns the view distance that the player request, not the used view distance. */
int GetRequestedViewDistance(void) const { return m_RequestedViewDistance; }
- void SetLocale(AString & a_Locale) { m_Locale = a_Locale; }
+ void SetLocale(const AString & a_Locale) { m_Locale = a_Locale; }
AString GetLocale(void) const { return m_Locale; }
int GetUniqueID(void) const { return m_UniqueID; }
diff --git a/src/Entities/Entity.h b/src/Entities/Entity.h
index 7b934fb23..3dc2d8f42 100644
--- a/src/Entities/Entity.h
+++ b/src/Entities/Entity.h
@@ -217,7 +217,6 @@ public:
int GetChunkZ(void) const { return FloorC(m_Position.z / cChunkDef::Width); }
void SetHeadYaw (double a_HeadYaw);
- void SetHeight (double a_Height);
void SetMass (double a_Mass);
void SetPosX (double a_PosX) { SetPosition({a_PosX, m_Position.y, m_Position.z}); }
void SetPosY (double a_PosY) { SetPosition({m_Position.x, a_PosY, m_Position.z}); }
@@ -243,8 +242,6 @@ public:
/** Sets the speed in the Z axis, leaving the other speed components intact. Measured in m / sec. */
void SetSpeedZ(double a_SpeedZ);
- void SetWidth (double a_Width);
-
void AddPosX (double a_AddPosX) { AddPosition(a_AddPosX, 0, 0); }
void AddPosY (double a_AddPosY) { AddPosition(0, a_AddPosY, 0); }
void AddPosZ (double a_AddPosZ) { AddPosition(0, 0, a_AddPosZ); }
@@ -300,6 +297,10 @@ public:
// tolua_end
+ void SetHeight(double a_Height);
+
+ void SetWidth(double a_Width);
+
/** Exported in ManualBindings */
const Vector3d & GetPosition(void) const { return m_Position; }
diff --git a/src/Entities/SplashPotionEntity.h b/src/Entities/SplashPotionEntity.h
index fc364404b..bb78bfaeb 100644
--- a/src/Entities/SplashPotionEntity.h
+++ b/src/Entities/SplashPotionEntity.h
@@ -41,16 +41,17 @@ public:
// tolua_begin
cEntityEffect::eType GetEntityEffectType(void) const { return m_EntityEffectType; }
- cEntityEffect GetEntityEffect(void) const { return m_EntityEffect; }
int GetPotionColor(void) const { return m_PotionColor; }
const cItem & GetItem(void) const { return m_Item; }
void SetEntityEffectType(cEntityEffect::eType a_EntityEffectType) { m_EntityEffectType = a_EntityEffectType; }
- void SetEntityEffect(cEntityEffect a_EntityEffect) { m_EntityEffect = a_EntityEffect; }
void SetPotionColor(int a_PotionColor) { m_PotionColor = a_PotionColor; }
// tolua_end
+ cEntityEffect GetEntityEffect(void) const { return m_EntityEffect; }
+ void SetEntityEffect(cEntityEffect a_EntityEffect) { m_EntityEffect = a_EntityEffect; }
+
protected:
cEntityEffect::eType m_EntityEffectType;