2012-03-29 16:46:21 +02:00
|
|
|
/*
|
2013-02-24 18:40:43 +01:00
|
|
|
Minetest
|
2013-02-24 19:38:45 +01:00
|
|
|
Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
|
2012-03-29 16:46:21 +02:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
2012-06-05 16:56:56 +02:00
|
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2.1 of the License, or
|
2012-03-29 16:46:21 +02:00
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2012-06-05 16:56:56 +02:00
|
|
|
GNU Lesser General Public License for more details.
|
2012-03-29 16:46:21 +02:00
|
|
|
|
2012-06-05 16:56:56 +02:00
|
|
|
You should have received a copy of the GNU Lesser General Public License along
|
2012-03-29 16:46:21 +02:00
|
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
2017-08-17 22:19:39 +02:00
|
|
|
#pragma once
|
2012-03-29 16:46:21 +02:00
|
|
|
|
|
|
|
#include <string>
|
2012-06-17 03:00:31 +02:00
|
|
|
#include "irrlichttypes_bloated.h"
|
2012-03-30 11:51:51 +02:00
|
|
|
#include <iostream>
|
2017-06-16 11:25:52 +02:00
|
|
|
#include "itemgroup.h"
|
2012-03-29 16:46:21 +02:00
|
|
|
|
2015-06-20 03:20:06 +02:00
|
|
|
enum GenericCMD {
|
|
|
|
GENERIC_CMD_SET_PROPERTIES,
|
|
|
|
GENERIC_CMD_UPDATE_POSITION,
|
|
|
|
GENERIC_CMD_SET_TEXTURE_MOD,
|
|
|
|
GENERIC_CMD_SET_SPRITE,
|
|
|
|
GENERIC_CMD_PUNCHED,
|
|
|
|
GENERIC_CMD_UPDATE_ARMOR_GROUPS,
|
|
|
|
GENERIC_CMD_SET_ANIMATION,
|
|
|
|
GENERIC_CMD_SET_BONE_POSITION,
|
|
|
|
GENERIC_CMD_ATTACH_TO,
|
|
|
|
GENERIC_CMD_SET_PHYSICS_OVERRIDE,
|
2016-10-08 14:51:25 +02:00
|
|
|
GENERIC_CMD_UPDATE_NAMETAG_ATTRIBUTES,
|
2017-09-01 11:15:12 +02:00
|
|
|
GENERIC_CMD_SPAWN_INFANT,
|
|
|
|
GENERIC_CMD_SET_ANIMATION_SPEED
|
2015-06-20 03:20:06 +02:00
|
|
|
};
|
2012-03-29 16:46:21 +02:00
|
|
|
|
2012-03-30 11:51:51 +02:00
|
|
|
#include "object_properties.h"
|
|
|
|
std::string gob_cmd_set_properties(const ObjectProperties &prop);
|
|
|
|
ObjectProperties gob_read_set_properties(std::istream &is);
|
2012-03-29 16:46:21 +02:00
|
|
|
|
|
|
|
std::string gob_cmd_update_position(
|
|
|
|
v3f position,
|
|
|
|
v3f velocity,
|
|
|
|
v3f acceleration,
|
2018-11-28 09:38:50 +01:00
|
|
|
v3f rotation,
|
2012-03-29 16:46:21 +02:00
|
|
|
bool do_interpolate,
|
|
|
|
bool is_movement_end,
|
|
|
|
f32 update_interval
|
|
|
|
);
|
|
|
|
|
|
|
|
std::string gob_cmd_set_texture_mod(const std::string &mod);
|
|
|
|
|
|
|
|
std::string gob_cmd_set_sprite(
|
|
|
|
v2s16 p,
|
|
|
|
u16 num_frames,
|
|
|
|
f32 framelength,
|
|
|
|
bool select_horiz_by_yawpitch
|
|
|
|
);
|
|
|
|
|
2019-02-11 00:03:26 +01:00
|
|
|
std::string gob_cmd_punched(u16 result_hp);
|
2012-11-29 18:22:07 +01:00
|
|
|
|
|
|
|
std::string gob_cmd_update_armor_groups(const ItemGroupList &armor_groups);
|
|
|
|
|
2013-12-03 18:51:15 +01:00
|
|
|
std::string gob_cmd_update_physics_override(float physics_override_speed,
|
2017-04-05 13:18:22 +02:00
|
|
|
float physics_override_jump, float physics_override_gravity,
|
|
|
|
bool sneak, bool sneak_glitch, bool new_move);
|
2013-04-05 13:03:28 +02:00
|
|
|
|
2015-02-21 22:38:53 +01:00
|
|
|
std::string gob_cmd_update_animation(v2f frames, float frame_speed, float frame_blend, bool frame_loop);
|
2012-10-26 17:03:24 +02:00
|
|
|
|
2017-09-01 11:15:12 +02:00
|
|
|
std::string gob_cmd_update_animation_speed(float frame_speed);
|
|
|
|
|
2017-04-20 00:12:52 +02:00
|
|
|
std::string gob_cmd_update_bone_position(const std::string &bone, v3f position,
|
|
|
|
v3f rotation);
|
2012-10-26 10:46:46 +02:00
|
|
|
|
2017-04-20 00:12:52 +02:00
|
|
|
std::string gob_cmd_update_attachment(int parent_id, const std::string &bone,
|
|
|
|
v3f position, v3f rotation);
|
2012-10-27 00:49:01 +02:00
|
|
|
|
2015-05-15 21:46:56 +02:00
|
|
|
std::string gob_cmd_update_nametag_attributes(video::SColor color);
|
2015-05-14 15:54:54 +02:00
|
|
|
|
2017-04-20 00:12:52 +02:00
|
|
|
std::string gob_cmd_update_infant(u16 id, u8 type,
|
|
|
|
const std::string &client_initialization_data);
|