Fix mouse events sent to wrong GUI elements when dragging
[oweals/minetest.git] / src / genericobject.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 <string>
23 #include "irrlichttypes_bloated.h"
24 #include <iostream>
25 #include "itemgroup.h"
26
27 enum GenericCMD {
28         GENERIC_CMD_SET_PROPERTIES,
29         GENERIC_CMD_UPDATE_POSITION,
30         GENERIC_CMD_SET_TEXTURE_MOD,
31         GENERIC_CMD_SET_SPRITE,
32         GENERIC_CMD_PUNCHED,
33         GENERIC_CMD_UPDATE_ARMOR_GROUPS,
34         GENERIC_CMD_SET_ANIMATION,
35         GENERIC_CMD_SET_BONE_POSITION,
36         GENERIC_CMD_ATTACH_TO,
37         GENERIC_CMD_SET_PHYSICS_OVERRIDE,
38         GENERIC_CMD_UPDATE_NAMETAG_ATTRIBUTES,
39         GENERIC_CMD_SPAWN_INFANT,
40         GENERIC_CMD_SET_ANIMATION_SPEED
41 };
42
43 #include "object_properties.h"
44 std::string gob_cmd_set_properties(const ObjectProperties &prop);
45 ObjectProperties gob_read_set_properties(std::istream &is);
46
47 std::string gob_cmd_update_position(
48         v3f position,
49         v3f velocity,
50         v3f acceleration,
51         v3f rotation,
52         bool do_interpolate,
53         bool is_movement_end,
54         f32 update_interval
55 );
56
57 std::string gob_cmd_set_texture_mod(const std::string &mod);
58
59 std::string gob_cmd_set_sprite(
60         v2s16 p,
61         u16 num_frames,
62         f32 framelength,
63         bool select_horiz_by_yawpitch
64 );
65
66 std::string gob_cmd_punched(u16 result_hp);
67
68 std::string gob_cmd_update_armor_groups(const ItemGroupList &armor_groups);
69
70 std::string gob_cmd_update_physics_override(float physics_override_speed,
71                 float physics_override_jump, float physics_override_gravity,
72                 bool sneak, bool sneak_glitch, bool new_move);
73
74 std::string gob_cmd_update_animation(v2f frames, float frame_speed, float frame_blend, bool frame_loop);
75
76 std::string gob_cmd_update_animation_speed(float frame_speed);
77
78 std::string gob_cmd_update_bone_position(const std::string &bone, v3f position,
79                 v3f rotation);
80
81 std::string gob_cmd_update_attachment(int parent_id, const std::string &bone,
82                 v3f position, v3f rotation);
83
84 std::string gob_cmd_update_nametag_attributes(video::SColor color);
85
86 std::string gob_cmd_update_infant(u16 id, u8 type,
87                 const std::string &client_initialization_data);