minetest/src/gamedef.h

87 lines
2.9 KiB
C
Raw Normal View History

/*
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>
This program is free software; you can redistribute it and/or modify
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
(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
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#pragma once
2011-11-16 12:03:28 +01:00
#include <string>
2017-01-31 14:18:52 +01:00
#include <vector>
#include "irrlichttypes.h"
2011-11-16 12:03:28 +01:00
class IItemDefManager;
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;
class EmergeManager;
2016-02-15 14:01:01 +01:00
class Camera;
class ModChannel;
class ModStorage;
class ModStorageDatabase;
2016-02-15 14:01:01 +01:00
namespace irr::scene {
class IAnimatedMesh;
class ISceneManager;
}
struct SubgameSpec;
struct ModSpec;
/*
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.
virtual IItemDefManager* getItemDefManager()=0;
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;
// Only usable on the server, and NOT thread-safe. It is usable from the
// environment thread.
virtual IRollbackManager* getRollbackManager() { return NULL; }
2011-11-14 20:41:30 +01:00
// Shorthands
// TODO: these should be made const-safe so that a const IGameDef* is
// actually usable
IItemDefManager *idef() { return getItemDefManager(); }
const NodeDefManager *ndef() { return getNodeDefManager(); }
ICraftDefManager *cdef() { return getCraftDefManager(); }
IRollbackManager *rollback() { return getRollbackManager(); }
virtual const std::vector<ModSpec> &getMods() const = 0;
virtual const ModSpec* getModSpec(const std::string &modname) const = 0;
virtual const SubgameSpec* getGameSpec() const { return nullptr; }
virtual std::string getWorldPath() const { return ""; }
virtual std::string getModDataPath() const { return ""; }
virtual ModStorageDatabase *getModStorageDatabase() = 0;
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;
};