]> git.lizzy.rs Git - minetest.git/blob - src/map.h
Merge remote-tracking branch 'origin/master'
[minetest.git] / src / map.h
1 /*
2 Minetest
3 Copyright (C) 2010-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 #ifndef MAP_HEADER
21 #define MAP_HEADER
22
23 #include <jmutex.h>
24 #include <jmutexautolock.h>
25 #include <jthread.h>
26 #include <iostream>
27 #include <sstream>
28 #include <set>
29 #include <map>
30 #include <list>
31
32 #include "irrlichttypes_bloated.h"
33 #include "mapnode.h"
34 #include "constants.h"
35 #include "voxel.h"
36 #include "mapgen.h" //for BlockMakeData and EmergeManager
37 #include "modifiedstate.h"
38 #include "util/container.h"
39 #include "nodetimer.h"
40
41 extern "C" {
42         #include "sqlite3.h"
43 }
44
45 class ClientMap;
46 class MapSector;
47 class ServerMapSector;
48 class MapBlock;
49 class NodeMetadata;
50 class IGameDef;
51 class IRollbackReportSink;
52 class EmergeManager;
53 struct BlockMakeData;
54
55
56 /*
57         MapEditEvent
58 */
59
60 #define MAPTYPE_BASE 0
61 #define MAPTYPE_SERVER 1
62 #define MAPTYPE_CLIENT 2
63
64 enum MapEditEventType{
65         // Node added (changed from air or something else to something)
66         MEET_ADDNODE,
67         // Node removed (changed to air)
68         MEET_REMOVENODE,
69         // Node metadata of block changed (not knowing which node exactly)
70         // p stores block coordinate
71         MEET_BLOCK_NODE_METADATA_CHANGED,
72         // Anything else (modified_blocks are set unsent)
73         MEET_OTHER
74 };
75
76 struct MapEditEvent
77 {
78         MapEditEventType type;
79         v3s16 p;
80         MapNode n;
81         std::set<v3s16> modified_blocks;
82         u16 already_known_by_peer;
83
84         MapEditEvent():
85                 type(MEET_OTHER),
86                 already_known_by_peer(0)
87         {
88         }
89
90         MapEditEvent * clone()
91         {
92                 MapEditEvent *event = new MapEditEvent();
93                 event->type = type;
94                 event->p = p;
95                 event->n = n;
96                 event->modified_blocks = modified_blocks;
97                 return event;
98         }
99
100         VoxelArea getArea()
101         {
102                 switch(type){
103                 case MEET_ADDNODE:
104                         return VoxelArea(p);
105                 case MEET_REMOVENODE:
106                         return VoxelArea(p);
107                 case MEET_BLOCK_NODE_METADATA_CHANGED:
108                 {
109                         v3s16 np1 = p*MAP_BLOCKSIZE;
110                         v3s16 np2 = np1 + v3s16(1,1,1)*MAP_BLOCKSIZE - v3s16(1,1,1);
111                         return VoxelArea(np1, np2);
112                 }
113                 case MEET_OTHER:
114                 {
115                         VoxelArea a;
116                         for(std::set<v3s16>::iterator
117                                         i = modified_blocks.begin();
118                                         i != modified_blocks.end(); ++i)
119                         {
120                                 v3s16 p = *i;
121                                 v3s16 np1 = p*MAP_BLOCKSIZE;
122                                 v3s16 np2 = np1 + v3s16(1,1,1)*MAP_BLOCKSIZE - v3s16(1,1,1);
123                                 a.addPoint(np1);
124                                 a.addPoint(np2);
125                         }
126                         return a;
127                 }
128                 }
129                 return VoxelArea();
130         }
131 };
132
133 class MapEventReceiver
134 {
135 public:
136         // event shall be deleted by caller after the call.
137         virtual void onMapEditEvent(MapEditEvent *event) = 0;
138 };
139
140 class Map /*: public NodeContainer*/
141 {
142 public:
143
144         Map(std::ostream &dout, IGameDef *gamedef);
145         virtual ~Map();
146
147         /*virtual u16 nodeContainerId() const
148         {
149                 return NODECONTAINER_ID_MAP;
150         }*/
151
152         virtual s32 mapType() const
153         {
154                 return MAPTYPE_BASE;
155         }
156
157         /*
158                 Drop (client) or delete (server) the map.
159         */
160         virtual void drop()
161         {
162                 delete this;
163         }
164
165         void addEventReceiver(MapEventReceiver *event_receiver);
166         void removeEventReceiver(MapEventReceiver *event_receiver);
167         // event shall be deleted by caller after the call.
168         void dispatchEvent(MapEditEvent *event);
169
170         // On failure returns NULL
171         MapSector * getSectorNoGenerateNoExNoLock(v2s16 p2d);
172         // Same as the above (there exists no lock anymore)
173         MapSector * getSectorNoGenerateNoEx(v2s16 p2d);
174         // On failure throws InvalidPositionException
175         MapSector * getSectorNoGenerate(v2s16 p2d);
176         // Gets an existing sector or creates an empty one
177         //MapSector * getSectorCreate(v2s16 p2d);
178
179         /*
180                 This is overloaded by ClientMap and ServerMap to allow
181                 their differing fetch methods.
182         */
183         virtual MapSector * emergeSector(v2s16 p){ return NULL; }
184         virtual MapSector * emergeSector(v2s16 p,
185                         std::map<v3s16, MapBlock*> &changed_blocks){ return NULL; }
186
187         // Returns InvalidPositionException if not found
188         MapBlock * getBlockNoCreate(v3s16 p);
189         // Returns NULL if not found
190         MapBlock * getBlockNoCreateNoEx(v3s16 p);
191
192         /* Server overrides */
193         virtual MapBlock * emergeBlock(v3s16 p, bool allow_generate=true)
194         { return getBlockNoCreateNoEx(p); }
195
196         // Returns InvalidPositionException if not found
197         bool isNodeUnderground(v3s16 p);
198
199         bool isValidPosition(v3s16 p);
200
201         // throws InvalidPositionException if not found
202         MapNode getNode(v3s16 p);
203
204         // throws InvalidPositionException if not found
205         void setNode(v3s16 p, MapNode & n);
206
207         // Returns a CONTENT_IGNORE node if not found
208         MapNode getNodeNoEx(v3s16 p);
209
210         void unspreadLight(enum LightBank bank,
211                         std::map<v3s16, u8> & from_nodes,
212                         std::set<v3s16> & light_sources,
213                         std::map<v3s16, MapBlock*> & modified_blocks);
214
215         void unLightNeighbors(enum LightBank bank,
216                         v3s16 pos, u8 lightwas,
217                         std::set<v3s16> & light_sources,
218                         std::map<v3s16, MapBlock*> & modified_blocks);
219
220         void spreadLight(enum LightBank bank,
221                         std::set<v3s16> & from_nodes,
222                         std::map<v3s16, MapBlock*> & modified_blocks);
223
224         void lightNeighbors(enum LightBank bank,
225                         v3s16 pos,
226                         std::map<v3s16, MapBlock*> & modified_blocks);
227
228         v3s16 getBrightestNeighbour(enum LightBank bank, v3s16 p);
229
230         s16 propagateSunlight(v3s16 start,
231                         std::map<v3s16, MapBlock*> & modified_blocks);
232
233         void updateLighting(enum LightBank bank,
234                         std::map<v3s16, MapBlock*>  & a_blocks,
235                         std::map<v3s16, MapBlock*> & modified_blocks);
236
237         void updateLighting(std::map<v3s16, MapBlock*>  & a_blocks,
238                         std::map<v3s16, MapBlock*> & modified_blocks);
239
240         /*
241                 These handle lighting but not faces.
242         */
243         void addNodeAndUpdate(v3s16 p, MapNode n,
244                         std::map<v3s16, MapBlock*> &modified_blocks);
245         void removeNodeAndUpdate(v3s16 p,
246                         std::map<v3s16, MapBlock*> &modified_blocks);
247
248         /*
249                 Wrappers for the latter ones.
250                 These emit events.
251                 Return true if succeeded, false if not.
252         */
253         bool addNodeWithEvent(v3s16 p, MapNode n);
254         bool removeNodeWithEvent(v3s16 p);
255
256         /*
257                 Takes the blocks at the edges into account
258         */
259         bool getDayNightDiff(v3s16 blockpos);
260
261         //core::aabbox3d<s16> getDisplayedBlockArea();
262
263         //bool updateChangedVisibleArea();
264
265         // Call these before and after saving of many blocks
266         virtual void beginSave() {return;};
267         virtual void endSave() {return;};
268
269         virtual void save(ModifiedState save_level){assert(0);};
270
271         // Server implements this.
272         // Client leaves it as no-op.
273         virtual void saveBlock(MapBlock *block){};
274
275         /*
276                 Updates usage timers and unloads unused blocks and sectors.
277                 Saves modified blocks before unloading on MAPTYPE_SERVER.
278         */
279         void timerUpdate(float dtime, float unload_timeout,
280                         std::list<v3s16> *unloaded_blocks=NULL);
281
282         /*
283                 Unloads all blocks with a zero refCount().
284                 Saves modified blocks before unloading on MAPTYPE_SERVER.
285         */
286         void unloadUnreferencedBlocks(std::list<v3s16> *unloaded_blocks=NULL);
287
288         // Deletes sectors and their blocks from memory
289         // Takes cache into account
290         // If deleted sector is in sector cache, clears cache
291         void deleteSectors(std::list<v2s16> &list);
292
293 #if 0
294         /*
295                 Unload unused data
296                 = flush changed to disk and delete from memory, if usage timer of
297                   block is more than timeout
298         */
299         void unloadUnusedData(float timeout,
300                         core::list<v3s16> *deleted_blocks=NULL);
301 #endif
302
303         // For debug printing. Prints "Map: ", "ServerMap: " or "ClientMap: "
304         virtual void PrintInfo(std::ostream &out);
305
306         void transformLiquids(std::map<v3s16, MapBlock*> & modified_blocks);
307         void transformLiquidsFinite(std::map<v3s16, MapBlock*> & modified_blocks);
308
309         /*
310                 Node metadata
311                 These are basically coordinate wrappers to MapBlock
312         */
313
314         NodeMetadata* getNodeMetadata(v3s16 p);
315         void setNodeMetadata(v3s16 p, NodeMetadata *meta);
316         void removeNodeMetadata(v3s16 p);
317
318         /*
319                 Node Timers
320                 These are basically coordinate wrappers to MapBlock
321         */
322
323         NodeTimer getNodeTimer(v3s16 p);
324         void setNodeTimer(v3s16 p, NodeTimer t);
325         void removeNodeTimer(v3s16 p);
326
327         /*
328                 Misc.
329         */
330         std::map<v2s16, MapSector*> *getSectorsPtr(){return &m_sectors;}
331
332         /*
333                 Variables
334         */
335
336         void transforming_liquid_add(v3s16 p);
337         s32 transforming_liquid_size();
338
339 protected:
340
341         std::ostream &m_dout; // A bit deprecated, could be removed
342
343         IGameDef *m_gamedef;
344
345         std::set<MapEventReceiver*> m_event_receivers;
346
347         std::map<v2s16, MapSector*> m_sectors;
348
349         // Be sure to set this to NULL when the cached sector is deleted
350         MapSector *m_sector_cache;
351         v2s16 m_sector_cache_p;
352
353         // Queued transforming water nodes
354         UniqueQueue<v3s16> m_transforming_liquid;
355 };
356
357 /*
358         ServerMap
359
360         This is the only map class that is able to generate map.
361 */
362
363 class ServerMap : public Map
364 {
365 public:
366         /*
367                 savedir: directory to which map data should be saved
368         */
369         ServerMap(std::string savedir, IGameDef *gamedef, EmergeManager *emerge);
370         ~ServerMap();
371
372         s32 mapType() const
373         {
374                 return MAPTYPE_SERVER;
375         }
376
377         /*
378                 Get a sector from somewhere.
379                 - Check memory
380                 - Check disk (doesn't load blocks)
381                 - Create blank one
382         */
383         ServerMapSector * createSector(v2s16 p);
384
385         /*
386                 Blocks are generated by using these and makeBlock().
387         */
388         bool initBlockMake(BlockMakeData *data, v3s16 blockpos);
389         MapBlock *finishBlockMake(BlockMakeData *data,
390                         std::map<v3s16, MapBlock*> &changed_blocks);
391
392         /*
393                 Get a block from somewhere.
394                 - Memory
395                 - Create blank
396         */
397         MapBlock * createBlock(v3s16 p);
398
399         /*
400                 Forcefully get a block from somewhere.
401                 - Memory
402                 - Load from disk
403                 - Create blank filled with CONTENT_IGNORE
404
405         */
406         MapBlock * emergeBlock(v3s16 p, bool create_blank=true);
407
408         // Helper for placing objects on ground level
409         s16 findGroundLevel(v2s16 p2d);
410
411         /*
412                 Misc. helper functions for fiddling with directory and file
413                 names when saving
414         */
415         void createDirs(std::string path);
416         // returns something like "map/sectors/xxxxxxxx"
417         std::string getSectorDir(v2s16 pos, int layout = 2);
418         // dirname: final directory name
419         v2s16 getSectorPos(std::string dirname);
420         v3s16 getBlockPos(std::string sectordir, std::string blockfile);
421         static std::string getBlockFilename(v3s16 p);
422
423         /*
424                 Database functions
425         */
426         // Create the database structure
427         void createDatabase();
428         // Verify we can read/write to the database
429         void verifyDatabase();
430         // Get an integer suitable for a block
431         static sqlite3_int64 getBlockAsInteger(const v3s16 pos);
432         static v3s16 getIntegerAsBlock(sqlite3_int64 i);
433
434         // Returns true if the database file does not exist
435         bool loadFromFolders();
436
437         // Call these before and after saving of blocks
438         void beginSave();
439         void endSave();
440
441         void save(ModifiedState save_level);
442         void listAllLoadableBlocks(std::list<v3s16> &dst);
443         void listAllLoadedBlocks(std::list<v3s16> &dst);
444         // Saves map seed and possibly other stuff
445         void saveMapMeta();
446         void loadMapMeta();
447
448         /*void saveChunkMeta();
449         void loadChunkMeta();*/
450
451         // The sector mutex should be locked when calling most of these
452
453         // This only saves sector-specific data such as the heightmap
454         // (no MapBlocks)
455         // DEPRECATED? Sectors have no metadata anymore.
456         void saveSectorMeta(ServerMapSector *sector);
457         MapSector* loadSectorMeta(std::string dirname, bool save_after_load);
458         bool loadSectorMeta(v2s16 p2d);
459
460         // Full load of a sector including all blocks.
461         // returns true on success, false on failure.
462         bool loadSectorFull(v2s16 p2d);
463         // If sector is not found in memory, try to load it from disk.
464         // Returns true if sector now resides in memory
465         //bool deFlushSector(v2s16 p2d);
466
467         void saveBlock(MapBlock *block);
468         // This will generate a sector with getSector if not found.
469         void loadBlock(std::string sectordir, std::string blockfile, MapSector *sector, bool save_after_load=false);
470         MapBlock* loadBlock(v3s16 p);
471         // Database version
472         void loadBlock(std::string *blob, v3s16 p3d, MapSector *sector, bool save_after_load=false);
473
474         // For debug printing
475         virtual void PrintInfo(std::ostream &out);
476
477         bool isSavingEnabled(){ return m_map_saving_enabled; }
478
479         u64 getSeed(){ return m_seed; }
480
481         MapgenParams *getMapgenParams(){ return m_mgparams; }
482
483         // Parameters fed to the Mapgen
484         MapgenParams *m_mgparams;
485 private:
486         // Seed used for all kinds of randomness in generation
487         u64 m_seed;
488         
489         // Emerge manager
490         EmergeManager *m_emerge;
491
492         std::string m_savedir;
493         bool m_map_saving_enabled;
494
495 #if 0
496         // Chunk size in MapSectors
497         // If 0, chunks are disabled.
498         s16 m_chunksize;
499         // Chunks
500         core::map<v2s16, MapChunk*> m_chunks;
501 #endif
502
503         /*
504                 Metadata is re-written on disk only if this is true.
505                 This is reset to false when written on disk.
506         */
507         bool m_map_metadata_changed;
508
509         /*
510                 SQLite database and statements
511         */
512         sqlite3 *m_database;
513         sqlite3_stmt *m_database_read;
514         sqlite3_stmt *m_database_write;
515         sqlite3_stmt *m_database_list;
516 };
517
518 #define VMANIP_BLOCK_DATA_INEXIST     1
519 #define VMANIP_BLOCK_CONTAINS_CIGNORE 2
520
521 class MapVoxelManipulator : public VoxelManipulator
522 {
523 public:
524         MapVoxelManipulator(Map *map);
525         virtual ~MapVoxelManipulator();
526
527         virtual void clear()
528         {
529                 VoxelManipulator::clear();
530                 m_loaded_blocks.clear();
531         }
532
533         virtual void emerge(VoxelArea a, s32 caller_id=-1);
534
535         void blitBack(std::map<v3s16, MapBlock*> & modified_blocks);
536
537 protected:
538         Map *m_map;
539         /*
540                 key = blockpos
541                 value = flags describing the block
542         */
543         std::map<v3s16, u8> m_loaded_blocks;
544 };
545
546 class ManualMapVoxelManipulator : public MapVoxelManipulator
547 {
548 public:
549         ManualMapVoxelManipulator(Map *map);
550         virtual ~ManualMapVoxelManipulator();
551
552         void setMap(Map *map)
553         {m_map = map;}
554
555         virtual void emerge(VoxelArea a, s32 caller_id=-1);
556
557         void initialEmerge(v3s16 blockpos_min, v3s16 blockpos_max);
558
559         // This is much faster with big chunks of generated data
560         void blitBackAll(std::map<v3s16, MapBlock*> * modified_blocks);
561
562 protected:
563         bool m_create_area;
564 };
565
566 #endif
567