2011-11-13 17:19:48 -05:00
|
|
|
/*
|
2013-02-24 12:40:43 -05:00
|
|
|
Minetest
|
2013-02-24 13:38:45 -05:00
|
|
|
Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
|
2011-11-13 17:19:48 -05:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
2012-06-05 10:56:56 -04: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 17:19:48 -05: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 10:56:56 -04:00
|
|
|
GNU Lesser General Public License for more details.
|
2011-11-13 17:19:48 -05:00
|
|
|
|
2012-06-05 10:56:56 -04:00
|
|
|
You should have received a copy of the GNU Lesser General Public License along
|
2011-11-13 17:19:48 -05:00
|
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef GAMEDEF_HEADER
|
|
|
|
#define GAMEDEF_HEADER
|
|
|
|
|
2011-11-16 06:03:28 -05:00
|
|
|
#include <string>
|
2012-01-12 00:10:39 -05:00
|
|
|
#include "irrlichttypes.h"
|
2011-11-16 06:03:28 -05:00
|
|
|
|
2012-01-12 00:10:39 -05:00
|
|
|
class IItemDefManager;
|
2011-11-14 14:41:30 -05:00
|
|
|
class INodeDefManager;
|
2011-11-16 19:28:46 -05:00
|
|
|
class ICraftDefManager;
|
2011-11-14 14:41:30 -05:00
|
|
|
class ITextureSource;
|
2012-03-23 06:05:17 -04:00
|
|
|
class ISoundManager;
|
2012-03-18 21:59:12 -04:00
|
|
|
class IShaderSource;
|
2012-03-23 14:23:03 -04:00
|
|
|
class MtEventManager;
|
2014-06-25 20:28:41 -04:00
|
|
|
class IRollbackManager;
|
2015-04-16 23:37:50 -04:00
|
|
|
class EmergeManager;
|
2014-01-06 06:24:06 -05:00
|
|
|
namespace irr { namespace scene {
|
|
|
|
class IAnimatedMesh;
|
2014-10-20 23:12:15 -04:00
|
|
|
class ISceneManager;
|
2014-01-06 06:24:06 -05:00
|
|
|
}}
|
2011-11-13 17:19:48 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
An interface for fetching game-global definitions like tool and
|
|
|
|
mapnode properties
|
|
|
|
*/
|
|
|
|
|
|
|
|
class IGameDef
|
|
|
|
{
|
|
|
|
public:
|
2011-11-14 14:41:30 -05: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 00:10:39 -05:00
|
|
|
virtual IItemDefManager* getItemDefManager()=0;
|
2011-11-13 17:19:48 -05:00
|
|
|
virtual INodeDefManager* getNodeDefManager()=0;
|
2011-11-16 19:28:46 -05:00
|
|
|
virtual ICraftDefManager* getCraftDefManager()=0;
|
2011-11-14 14:41:30 -05:00
|
|
|
|
|
|
|
// This is always thread-safe, but referencing the irrlicht texture
|
|
|
|
// pointers in other threads than main thread will make things explode.
|
|
|
|
virtual ITextureSource* getTextureSource()=0;
|
2012-03-18 21:59:12 -04:00
|
|
|
|
|
|
|
virtual IShaderSource* getShaderSource()=0;
|
2015-04-16 23:37:50 -04:00
|
|
|
|
2011-11-16 06:03:28 -05:00
|
|
|
// Used for keeping track of names/ids of unknown nodes
|
|
|
|
virtual u16 allocateUnknownNodeId(const std::string &name)=0;
|
2015-04-16 23:37:50 -04:00
|
|
|
|
2012-03-31 09:23:26 -04:00
|
|
|
// Only usable on the client
|
2012-03-23 14:23:03 -04:00
|
|
|
virtual ISoundManager* getSoundManager()=0;
|
|
|
|
virtual MtEventManager* getEventManager()=0;
|
2014-01-06 06:24:06 -05:00
|
|
|
virtual scene::IAnimatedMesh* getMesh(const std::string &filename)
|
|
|
|
{ return NULL; }
|
2014-10-20 23:12:15 -04:00
|
|
|
virtual scene::ISceneManager* getSceneManager()=0;
|
2012-07-26 15:06:45 -04:00
|
|
|
|
|
|
|
// Only usable on the server, and NOT thread-safe. It is usable from the
|
|
|
|
// environment thread.
|
2014-06-25 20:28:41 -04:00
|
|
|
virtual IRollbackManager* getRollbackManager(){return NULL;}
|
2015-04-16 23:37:50 -04:00
|
|
|
|
|
|
|
// Only usable on the server. Thread safe if not written while running threads.
|
|
|
|
virtual EmergeManager *getEmergeManager() { return NULL; }
|
|
|
|
|
2012-03-31 09:23:26 -04:00
|
|
|
// Used on the client
|
|
|
|
virtual bool checkLocalPrivilege(const std::string &priv)
|
|
|
|
{ return false; }
|
2015-04-16 23:37:50 -04:00
|
|
|
|
2011-11-14 14:41:30 -05:00
|
|
|
// Shorthands
|
2015-04-16 23:37:50 -04:00
|
|
|
IItemDefManager *idef() { return getItemDefManager(); }
|
|
|
|
INodeDefManager *ndef() { return getNodeDefManager(); }
|
|
|
|
ICraftDefManager *cdef() { return getCraftDefManager(); }
|
|
|
|
ITextureSource *tsrc() { return getTextureSource(); }
|
|
|
|
ISoundManager *sound() { return getSoundManager(); }
|
|
|
|
IShaderSource *shsrc() { return getShaderSource(); }
|
|
|
|
MtEventManager *event() { return getEventManager(); }
|
|
|
|
IRollbackManager *rollback() { return getRollbackManager();}
|
|
|
|
EmergeManager *emerge() { return getEmergeManager(); }
|
2011-11-13 17:19:48 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|