1ab7e26a668fe8246b1b64460a0c61f019600ae8
[oweals/minetest.git] / src / genericobject.h
1 /*
2 Minetest-c55
3 Copyright (C) 2012 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 General Public License as published by
7 the Free Software Foundation; either version 2 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 General Public License for more details.
14
15 You should have received a copy of the GNU 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 #ifndef GENERICOBJECT_HEADER
21 #define GENERICOBJECT_HEADER
22
23 #include <string>
24 #include "irrlichttypes.h"
25
26 #define GENERIC_CMD_SET_PROPERTIES 0
27 #define GENERIC_CMD_UPDATE_POSITION 1
28 #define GENERIC_CMD_SET_TEXTURE_MOD 2
29 #define GENERIC_CMD_SET_SPRITE 3
30 #define GENERIC_CMD_PUNCHED 4
31 #define GENERIC_CMD_UPDATE_ARMOR_GROUPS 5
32
33 std::string gob_cmd_set_properties(
34         s16 hp_max,
35         bool physical,
36         float weight,
37         core::aabbox3d<f32> collisionbox,
38         std::string visual,
39         v2f visual_size,
40         core::array<std::string> textures,
41         v2s16 spritediv,
42         bool is_visible,
43         bool makes_footstep_sound
44 );
45
46 std::string gob_cmd_update_position(
47         v3f position,
48         v3f velocity,
49         v3f acceleration,
50         f32 yaw,
51         bool do_interpolate,
52         bool is_movement_end,
53         f32 update_interval
54 );
55
56 std::string gob_cmd_set_texture_mod(const std::string &mod);
57
58 std::string gob_cmd_set_sprite(
59         v2s16 p,
60         u16 num_frames,
61         f32 framelength,
62         bool select_horiz_by_yawpitch
63 );
64
65 std::string gob_cmd_punched(s16 damage, s16 result_hp);
66
67 #include "itemgroup.h"
68 std::string gob_cmd_update_armor_groups(const ItemGroupList &armor_groups);
69
70 #endif
71