]> git.lizzy.rs Git - minetest.git/blob - src/object_properties.h
Report collisionMoveSimple for client and server. (#13105)
[minetest.git] / src / object_properties.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 <map>
26 #include <vector>
27 #include "util/Optional.h"
28
29 struct ObjectProperties
30 {
31         u16 hp_max = 1;
32         u16 breath_max = 0;
33         bool physical = false;
34         bool collideWithObjects = true;
35         // Values are BS=1
36         aabb3f collisionbox = aabb3f(-0.5f, -0.5f, -0.5f, 0.5f, 0.5f, 0.5f);
37         aabb3f selectionbox = aabb3f(-0.5f, -0.5f, -0.5f, 0.5f, 0.5f, 0.5f);
38         bool rotate_selectionbox = false;
39         bool pointable = true;
40         std::string visual = "sprite";
41         std::string mesh = "";
42         v3f visual_size = v3f(1, 1, 1);
43         std::vector<std::string> textures;
44         std::string damage_texture_modifier = "^[brighten";
45         std::vector<video::SColor> colors;
46         v2s16 spritediv = v2s16(1, 1);
47         v2s16 initial_sprite_basepos;
48         bool is_visible = true;
49         bool makes_footstep_sound = false;
50         f32 stepheight = 0.0f;
51         float automatic_rotate = 0.0f;
52         bool automatic_face_movement_dir = false;
53         f32 automatic_face_movement_dir_offset = 0.0f;
54         bool backface_culling = true;
55         s8 glow = 0;
56         std::string nametag = "";
57         video::SColor nametag_color = video::SColor(255, 255, 255, 255);
58         Optional<video::SColor> nametag_bgcolor = nullopt;
59         f32 automatic_face_movement_max_rotation_per_sec = -1.0f;
60         std::string infotext;
61         //! For dropped items, this contains item information.
62         std::string wield_item;
63         bool static_save = true;
64         float eye_height = 1.625f;
65         float zoom_fov = 0.0f;
66         bool use_texture_alpha = false;
67         bool shaded = true;
68         bool show_on_minimap = false;
69
70         ObjectProperties();
71         std::string dump();
72         // check limits of some important properties (strings) that'd cause exceptions later on
73         bool validate();
74         void serialize(std::ostream &os) const;
75         void deSerialize(std::istream &is);
76 };