2011-11-13 23:19:48 +01:00
|
|
|
/*
|
2013-02-24 18:40:43 +01:00
|
|
|
Minetest
|
2013-02-24 19:38:45 +01:00
|
|
|
Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
|
2011-11-13 23:19:48 +01:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
2012-06-05 16:56:56 +02:00
|
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2.1 of the License, or
|
2011-11-13 23:19:48 +01:00
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2012-06-05 16:56:56 +02:00
|
|
|
GNU Lesser General Public License for more details.
|
2011-11-13 23:19:48 +01:00
|
|
|
|
2012-06-05 16:56:56 +02:00
|
|
|
You should have received a copy of the GNU Lesser General Public License along
|
2011-11-13 23:19:48 +01:00
|
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
2017-08-17 22:19:39 +02:00
|
|
|
#pragma once
|
2011-11-13 23:19:48 +01:00
|
|
|
|
2011-11-16 12:03:28 +01:00
|
|
|
#include <string>
|
2017-01-31 14:18:52 +01:00
|
|
|
#include <vector>
|
2012-01-12 06:10:39 +01:00
|
|
|
#include "irrlichttypes.h"
|
2011-11-16 12:03:28 +01:00
|
|
|
|
2012-01-12 06:10:39 +01:00
|
|
|
class IItemDefManager;
|
2018-02-10 21:04:16 +01:00
|
|
|
class NodeDefManager;
|
2011-11-17 01:28:46 +01:00
|
|
|
class ICraftDefManager;
|
2011-11-14 20:41:30 +01:00
|
|
|
class ITextureSource;
|
2012-03-19 02:59:12 +01:00
|
|
|
class IShaderSource;
|
2014-06-26 02:28:41 +02:00
|
|
|
class IRollbackManager;
|
2015-04-17 05:37:50 +02:00
|
|
|
class EmergeManager;
|
2016-02-15 14:01:01 +01:00
|
|
|
class Camera;
|
2017-09-26 00:11:20 +02:00
|
|
|
class ModChannel;
|
2017-03-16 07:53:39 +01:00
|
|
|
class ModMetadata;
|
2022-01-07 19:28:49 +01:00
|
|
|
class ModMetadataDatabase;
|
2016-02-15 14:01:01 +01:00
|
|
|
|
2014-01-06 12:24:06 +01:00
|
|
|
namespace irr { namespace scene {
|
|
|
|
class IAnimatedMesh;
|
2014-10-21 05:12:15 +02:00
|
|
|
class ISceneManager;
|
2014-01-06 12:24:06 +01:00
|
|
|
}}
|
2011-11-13 23:19:48 +01:00
|
|
|
|
2017-01-21 15:02:08 +01:00
|
|
|
struct ModSpec;
|
2011-11-13 23:19:48 +01:00
|
|
|
/*
|
|
|
|
An interface for fetching game-global definitions like tool and
|
|
|
|
mapnode properties
|
|
|
|
*/
|
|
|
|
|
|
|
|
class IGameDef
|
|
|
|
{
|
|
|
|
public:
|
2011-11-14 20:41:30 +01:00
|
|
|
// These are thread-safe IF they are not edited while running threads.
|
|
|
|
// Thus, first they are set up and then they are only read.
|
2012-01-12 06:10:39 +01:00
|
|
|
virtual IItemDefManager* getItemDefManager()=0;
|
2018-02-10 21:04:16 +01:00
|
|
|
virtual const NodeDefManager* getNodeDefManager()=0;
|
2011-11-17 01:28:46 +01:00
|
|
|
virtual ICraftDefManager* getCraftDefManager()=0;
|
2011-11-14 20:41:30 +01:00
|
|
|
|
2011-11-16 12:03:28 +01:00
|
|
|
// Used for keeping track of names/ids of unknown nodes
|
|
|
|
virtual u16 allocateUnknownNodeId(const std::string &name)=0;
|
2015-04-17 05:37:50 +02:00
|
|
|
|
2012-07-26 21:06:45 +02:00
|
|
|
// Only usable on the server, and NOT thread-safe. It is usable from the
|
|
|
|
// environment thread.
|
2017-01-09 20:39:22 +01:00
|
|
|
virtual IRollbackManager* getRollbackManager() { return NULL; }
|
2015-04-17 05:37:50 +02:00
|
|
|
|
2011-11-14 20:41:30 +01:00
|
|
|
// Shorthands
|
2015-04-17 05:37:50 +02:00
|
|
|
IItemDefManager *idef() { return getItemDefManager(); }
|
2018-02-10 21:04:16 +01:00
|
|
|
const NodeDefManager *ndef() { return getNodeDefManager(); }
|
2015-04-17 05:37:50 +02:00
|
|
|
ICraftDefManager *cdef() { return getCraftDefManager(); }
|
2017-01-21 15:02:08 +01:00
|
|
|
IRollbackManager *rollback() { return getRollbackManager(); }
|
|
|
|
|
|
|
|
virtual const std::vector<ModSpec> &getMods() const = 0;
|
|
|
|
virtual const ModSpec* getModSpec(const std::string &modname) const = 0;
|
|
|
|
virtual std::string getWorldPath() const { return ""; }
|
2017-03-16 07:53:39 +01:00
|
|
|
virtual bool registerModStorage(ModMetadata *storage) = 0;
|
|
|
|
virtual void unregisterModStorage(const std::string &name) = 0;
|
2022-01-07 19:28:49 +01:00
|
|
|
virtual ModMetadataDatabase *getModStorageDatabase() = 0;
|
2017-09-26 00:11:20 +02:00
|
|
|
|
|
|
|
virtual bool joinModChannel(const std::string &channel) = 0;
|
|
|
|
virtual bool leaveModChannel(const std::string &channel) = 0;
|
|
|
|
virtual bool sendModChannelMessage(const std::string &channel,
|
|
|
|
const std::string &message) = 0;
|
|
|
|
virtual ModChannel *getModChannel(const std::string &channel) = 0;
|
2011-11-13 23:19:48 +01:00
|
|
|
};
|