Zoom: Move enabling zoom to a new player object property
[oweals/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
28 struct ObjectProperties
29 {
30         // Values are BS=1
31         s16 hp_max = 1;
32         bool physical = false;
33         bool collideWithObjects = true;
34         float weight = 5.0f;
35         aabb3f collisionbox = aabb3f(-0.5f, -0.5f, -0.5f, 0.5f, 0.5f, 0.5f);
36         aabb3f selectionbox = aabb3f(-0.5f, -0.5f, -0.5f, 0.5f, 0.5f, 0.5f);
37         bool pointable = true;
38         std::string visual = "sprite";
39         std::string mesh = "";
40         v2f visual_size = v2f(1, 1);
41         std::vector<std::string> textures;
42         std::vector<video::SColor> colors;
43         v2s16 spritediv = v2s16(1, 1);
44         v2s16 initial_sprite_basepos;
45         bool is_visible = true;
46         bool makes_footstep_sound = false;
47         f32 stepheight = 0.0f;
48         bool can_zoom = true;
49         float automatic_rotate = 0.0f;
50         bool automatic_face_movement_dir = false;
51         f32 automatic_face_movement_dir_offset = 0.0f;
52         bool backface_culling = true;
53         std::string nametag = "";
54         video::SColor nametag_color = video::SColor(255, 255, 255, 255);
55         f32 automatic_face_movement_max_rotation_per_sec = -1.0f;
56         std::string infotext;
57         //! For dropped items, this contains item information.
58         std::string wield_item;
59
60         ObjectProperties();
61         std::string dump();
62         void serialize(std::ostream &os) const;
63         void deSerialize(std::istream &is);
64 };