]> git.lizzy.rs Git - dragonfireclient.git/blob - src/script/cpp_api/s_player.h
Move PlayerSAO to dedicated files
[dragonfireclient.git] / src / script / cpp_api / s_player.h
1 /*
2 Minetest
3 Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU Lesser General Public License as published by
7 the Free Software Foundation; either version 2.1 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU Lesser General Public License for more details.
14
15 You should have received a copy of the GNU Lesser General Public License along
16 with this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19
20 #pragma once
21
22 #include "cpp_api/s_base.h"
23 #include "irr_v3d.h"
24 #include "util/string.h"
25
26 struct MoveAction;
27 struct InventoryLocation;
28 struct ItemStack;
29 struct ToolCapabilities;
30 struct PlayerHPChangeReason;
31 class ServerActiveObject;
32
33 class ScriptApiPlayer : virtual public ScriptApiBase
34 {
35 public:
36         virtual ~ScriptApiPlayer() = default;
37
38         void on_newplayer(ServerActiveObject *player);
39         void on_dieplayer(ServerActiveObject *player, const PlayerHPChangeReason &reason);
40         bool on_respawnplayer(ServerActiveObject *player);
41         bool on_prejoinplayer(const std::string &name, const std::string &ip,
42                         std::string *reason);
43         bool can_bypass_userlimit(const std::string &name, const std::string &ip);
44         void on_joinplayer(ServerActiveObject *player);
45         void on_leaveplayer(ServerActiveObject *player, bool timeout);
46         void on_cheat(ServerActiveObject *player, const std::string &cheat_type);
47         bool on_punchplayer(ServerActiveObject *player, ServerActiveObject *hitter,
48                         float time_from_last_punch, const ToolCapabilities *toolcap,
49                         v3f dir, s16 damage);
50         s32 on_player_hpchange(ServerActiveObject *player, s32 hp_change,
51                         const PlayerHPChangeReason &reason);
52         void on_playerReceiveFields(ServerActiveObject *player,
53                         const std::string &formname, const StringMap &fields);
54         void on_auth_failure(const std::string &name, const std::string &ip);
55
56         // Player inventory callbacks
57         // Return number of accepted items to be moved
58         int player_inventory_AllowMove(
59                 const MoveAction &ma, int count,
60                 ServerActiveObject *player);
61         // Return number of accepted items to be put
62         int player_inventory_AllowPut(
63                 const MoveAction &ma, const ItemStack &stack,
64                 ServerActiveObject *player);
65         // Return number of accepted items to be taken
66         int player_inventory_AllowTake(
67                 const MoveAction &ma, const ItemStack &stack,
68                 ServerActiveObject *player);
69         // Report moved items
70         void player_inventory_OnMove(
71                 const MoveAction &ma, int count,
72                 ServerActiveObject *player);
73         // Report put items
74         void player_inventory_OnPut(
75                 const MoveAction &ma, const ItemStack &stack,
76                 ServerActiveObject *player);
77         // Report taken items
78         void player_inventory_OnTake(
79                 const MoveAction &ma, const ItemStack &stack,
80                 ServerActiveObject *player);
81 private:
82         void pushPutTakeArguments(
83                 const char *method, const InventoryLocation &loc,
84                 const std::string &listname, int index, const ItemStack &stack,
85                 ServerActiveObject *player);
86         void pushMoveArguments(const MoveAction &ma,
87                 int count, ServerActiveObject *player);
88 };