LCOV - code coverage report
Current view: top level - src - emerge.h (source / functions) Hit Total Coverage
Test: report Lines: 0 4 0.0 %
Date: 2015-07-11 18:23:49 Functions: 0 2 0.0 %

          Line data    Source code
       1             : /*
       2             : Minetest
       3             : Copyright (C) 2010-2013 kwolekr, Ryan Kwolek <kwolekr@minetest.net>
       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 EMERGE_HEADER
      21             : #define EMERGE_HEADER
      22             : 
      23             : #include <map>
      24             : #include "irr_v3d.h"
      25             : #include "util/container.h"
      26             : #include "mapgen.h" // for MapgenParams
      27             : #include "map.h"
      28             : 
      29             : #define BLOCK_EMERGE_ALLOWGEN (1<<0)
      30             : 
      31             : #define EMERGE_DBG_OUT(x) \
      32             :         do {                                                   \
      33             :                 if (enable_mapgen_debug_info)                      \
      34             :                         infostream << "EmergeThread: " x << std::endl; \
      35             :         } while (0)
      36             : 
      37             : class EmergeThread;
      38             : class INodeDefManager;
      39             : class Settings;
      40             : 
      41             : class BiomeManager;
      42             : class OreManager;
      43             : class DecorationManager;
      44             : class SchematicManager;
      45             : 
      46             : struct BlockMakeData {
      47             :         MMVManip *vmanip;
      48             :         u64 seed;
      49             :         v3s16 blockpos_min;
      50             :         v3s16 blockpos_max;
      51             :         v3s16 blockpos_requested;
      52             :         UniqueQueue<v3s16> transforming_liquid;
      53             :         INodeDefManager *nodedef;
      54             : 
      55           0 :         BlockMakeData():
      56             :                 vmanip(NULL),
      57             :                 seed(0),
      58           0 :                 nodedef(NULL)
      59           0 :         {}
      60             : 
      61           0 :         ~BlockMakeData() { delete vmanip; }
      62             : };
      63             : 
      64             : struct BlockEmergeData {
      65             :         u16 peer_requested;
      66             :         u8 flags;
      67             : };
      68             : 
      69             : class EmergeManager {
      70             : public:
      71             :         INodeDefManager *ndef;
      72             : 
      73             :         std::vector<Mapgen *> mapgen;
      74             :         std::vector<EmergeThread *> emergethread;
      75             : 
      76             :         bool threads_active;
      77             : 
      78             :         //settings
      79             :         MapgenParams params;
      80             :         bool mapgen_debug_info;
      81             :         u16 qlimit_total;
      82             :         u16 qlimit_diskonly;
      83             :         u16 qlimit_generate;
      84             : 
      85             :         u32 gen_notify_on;
      86             :         std::set<u32> gen_notify_on_deco_ids;
      87             : 
      88             :         //// Block emerge queue data structures
      89             :         JMutex queuemutex;
      90             :         std::map<v3s16, BlockEmergeData *> blocks_enqueued;
      91             :         std::map<u16, u16> peer_queue_count;
      92             : 
      93             :         //// Managers of map generation-related components
      94             :         BiomeManager *biomemgr;
      95             :         OreManager *oremgr;
      96             :         DecorationManager *decomgr;
      97             :         SchematicManager *schemmgr;
      98             : 
      99             :         //// Methods
     100             :         EmergeManager(IGameDef *gamedef);
     101             :         ~EmergeManager();
     102             : 
     103             :         void loadMapgenParams();
     104             :         static MapgenSpecificParams *createMapgenParams(const std::string &mgname);
     105             :         void initMapgens();
     106             :         Mapgen *getCurrentMapgen();
     107             :         Mapgen *createMapgen(const std::string &mgname, int mgid,
     108             :                 MapgenParams *mgparams);
     109             :         static void getMapgenNames(std::list<const char *> &mgnames);
     110             :         void startThreads();
     111             :         void stopThreads();
     112             :         bool enqueueBlockEmerge(u16 peer_id, v3s16 p, bool allow_generate);
     113             : 
     114             :         //mapgen helper methods
     115             :         Biome *getBiomeAtPoint(v3s16 p);
     116             :         int getGroundLevelAtPoint(v2s16 p);
     117             :         bool isBlockUnderground(v3s16 blockpos);
     118             : };
     119             : 
     120             : #endif

Generated by: LCOV version 1.11