]> git.lizzy.rs Git - minetest.git/blobdiff - src/gamedef.h
Add rotation for plantlike drawtype.
[minetest.git] / src / gamedef.h
index 87918d726c4fa7ca05547a6f4e4582a3cfe5aee6..6da288bad8879992475c30592ec6045f8a6440b0 100644 (file)
@@ -1,6 +1,6 @@
 /*
-Minetest-c55
-Copyright (C) 2011 celeron55, Perttu Ahola <celeron55@gmail.com>
+Minetest
+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
@@ -28,8 +28,12 @@ class INodeDefManager;
 class ICraftDefManager;
 class ITextureSource;
 class ISoundManager;
+class IShaderSource;
 class MtEventManager;
 class IRollbackReportSink;
+namespace irr { namespace scene {
+       class IAnimatedMesh;
+}}
 
 /*
        An interface for fetching game-global definitions like tool and
@@ -48,6 +52,8 @@ class IGameDef
        // 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;
+
+       virtual IShaderSource* getShaderSource()=0;
        
        // Used for keeping track of names/ids of unknown nodes
        virtual u16 allocateUnknownNodeId(const std::string &name)=0;
@@ -55,6 +61,8 @@ class IGameDef
        // Only usable on the client
        virtual ISoundManager* getSoundManager()=0;
        virtual MtEventManager* getEventManager()=0;
+       virtual scene::IAnimatedMesh* getMesh(const std::string &filename)
+       { return NULL; }
 
        // Only usable on the server, and NOT thread-safe. It is usable from the
        // environment thread.
@@ -70,6 +78,7 @@ class IGameDef
        ICraftDefManager* cdef(){return getCraftDefManager();}
        ITextureSource* tsrc(){return getTextureSource();}
        ISoundManager* sound(){return getSoundManager();}
+       IShaderSource* shsrc(){return getShaderSource();}
        MtEventManager* event(){return getEventManager();}
        IRollbackReportSink* rollback(){return getRollbackReportSink();}
 };