3222085e613684beb90a690c0b9dac95ed7057c4
[oweals/minetest.git] / src / mapgen / mg_schematic.h
1 /*
2 Minetest
3 Copyright (C) 2014-2018 kwolekr, Ryan Kwolek <kwolekr@minetest.net>
4 Copyright (C) 2015-2018 paramat
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU Lesser General Public License as published by
8 the Free Software Foundation; either version 2.1 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU Lesser General Public License for more details.
15
16 You should have received a copy of the GNU Lesser General Public License along
17 with this program; if not, write to the Free Software Foundation, Inc.,
18 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 */
20
21 #pragma once
22
23 #include <map>
24 #include "mg_decoration.h"
25 #include "util/string.h"
26
27 class Map;
28 class ServerMap;
29 class Mapgen;
30 class MMVManip;
31 class PseudoRandom;
32 class NodeResolver;
33 class Server;
34
35 /*
36         Minetest Schematic File Format
37
38         All values are stored in big-endian byte order.
39         [u32] signature: 'MTSM'
40         [u16] version: 4
41         [u16] size X
42         [u16] size Y
43         [u16] size Z
44         For each Y:
45                 [u8] slice probability value
46         [Name-ID table] Name ID Mapping Table
47                 [u16] name-id count
48                 For each name-id mapping:
49                         [u16] name length
50                         [u8[]] name
51         ZLib deflated {
52         For each node in schematic:  (for z, y, x)
53                 [u16] content
54         For each node in schematic:
55                 [u8] param1
56                   bit 0-6: probability
57                   bit 7:   specific node force placement
58         For each node in schematic:
59                 [u8] param2
60         }
61
62         Version changes:
63         1 - Initial version
64         2 - Fixed messy never/always place; 0 probability is now never, 0xFF is always
65         3 - Added y-slice probabilities; this allows for variable height structures
66         4 - Compressed range of node occurence prob., added per-node force placement bit
67 */
68
69 //// Schematic constants
70 #define MTSCHEM_FILE_SIGNATURE 0x4d54534d // 'MTSM'
71 #define MTSCHEM_FILE_VER_HIGHEST_READ  4
72 #define MTSCHEM_FILE_VER_HIGHEST_WRITE 4
73
74 #define MTSCHEM_PROB_MASK       0x7F
75
76 #define MTSCHEM_PROB_NEVER      0x00
77 #define MTSCHEM_PROB_ALWAYS     0x7F
78 #define MTSCHEM_PROB_ALWAYS_OLD 0xFF
79
80 #define MTSCHEM_FORCE_PLACE     0x80
81
82 enum SchematicType
83 {
84         SCHEMATIC_NORMAL,
85 };
86
87 enum SchematicFormatType {
88         SCHEM_FMT_HANDLE,
89         SCHEM_FMT_MTS,
90         SCHEM_FMT_LUA,
91 };
92
93 class Schematic : public ObjDef, public NodeResolver {
94 public:
95         Schematic();
96         virtual ~Schematic();
97
98         ObjDef *clone() const;
99
100         virtual void resolveNodeNames();
101
102         bool loadSchematicFromFile(const std::string &filename,
103                 const NodeDefManager *ndef, StringMap *replace_names = NULL);
104         bool saveSchematicToFile(const std::string &filename,
105                 const NodeDefManager *ndef);
106         bool getSchematicFromMap(Map *map, v3s16 p1, v3s16 p2);
107
108         bool deserializeFromMts(std::istream *is, std::vector<std::string> *names);
109         bool serializeToMts(std::ostream *os, const std::vector<std::string> &names);
110         bool serializeToLua(std::ostream *os, const std::vector<std::string> &names,
111                 bool use_comments, u32 indent_spaces);
112
113         void blitToVManip(MMVManip *vm, v3s16 p, Rotation rot, bool force_place);
114         bool placeOnVManip(MMVManip *vm, v3s16 p, u32 flags, Rotation rot, bool force_place);
115         void placeOnMap(ServerMap *map, v3s16 p, u32 flags, Rotation rot, bool force_place);
116
117         void applyProbabilities(v3s16 p0,
118                 std::vector<std::pair<v3s16, u8> > *plist,
119                 std::vector<std::pair<s16, u8> > *splist);
120
121         std::vector<content_t> c_nodes;
122         u32 flags = 0;
123         v3s16 size;
124         MapNode *schemdata = nullptr;
125         u8 *slice_probs = nullptr;
126 };
127
128 class SchematicManager : public ObjDefManager {
129 public:
130         SchematicManager(Server *server);
131         virtual ~SchematicManager() = default;
132
133         SchematicManager *clone() const;
134
135         virtual void clear();
136
137         const char *getObjectTitle() const
138         {
139                 return "schematic";
140         }
141
142         static Schematic *create(SchematicType type)
143         {
144                 return new Schematic;
145         }
146
147 private:
148         SchematicManager() {};
149
150         Server *m_server;
151 };
152
153 void generate_nodelist_and_update_ids(MapNode *nodes, size_t nodecount,
154         std::vector<std::string> *usednodes, const NodeDefManager *ndef);