]> git.lizzy.rs Git - dragonfireclient.git/blob - src/shader.h
Add emerge.cpp, initial EmergeThread changes
[dragonfireclient.git] / src / shader.h
1 /*
2 Minetest
3 Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
4 Copyright (C) 2013 Kahrl <kahrl@gmx.net>
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License along
17 with this program; if not, write to the Free Software Foundation, Inc.,
18 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 */
20
21 #ifndef SHADER_HEADER
22 #define SHADER_HEADER
23
24 #include "irrlichttypes_extrabloated.h"
25 #include "threads.h"
26 #include <string>
27
28 class IGameDef;
29
30 /*
31         shader.{h,cpp}: Shader handling stuff.
32 */
33
34 /*
35         Gets the path to a shader by first checking if the file
36           name_of_shader/filename
37         exists in shader_path and if not, using the data path.
38
39         If not found, returns "".
40
41         Utilizes a thread-safe cache.
42 */
43 std::string getShaderPath(const std::string &name_of_shader,
44                 const std::string &filename);
45
46 struct ShaderInfo
47 {
48         std::string name;
49         video::E_MATERIAL_TYPE material;
50
51         ShaderInfo(): name(""), material(video::EMT_SOLID) {}
52 };
53
54 /*
55         Setter of constants for shaders
56 */
57
58 namespace irr { namespace video {
59         class IMaterialRendererServices;
60 } }
61
62 class IShaderConstantSetter
63 {
64 public:
65         virtual ~IShaderConstantSetter(){};
66         virtual void onSetConstants(video::IMaterialRendererServices *services,
67                         bool is_highlevel) = 0;
68 };
69
70 /*
71         ShaderSource creates and caches shaders.
72 */
73
74 class IShaderSource
75 {
76 public:
77         IShaderSource(){}
78         virtual ~IShaderSource(){}
79         virtual u32 getShaderId(const std::string &name){return 0;}
80         virtual u32 getShaderIdDirect(const std::string &name){return 0;}
81         virtual std::string getShaderName(u32 id){return "";}
82         virtual ShaderInfo getShader(u32 id){return ShaderInfo();}
83         virtual ShaderInfo getShader(const std::string &name){return ShaderInfo();}
84 };
85
86 class IWritableShaderSource : public IShaderSource
87 {
88 public:
89         IWritableShaderSource(){}
90         virtual ~IWritableShaderSource(){}
91         virtual u32 getShaderId(const std::string &name){return 0;}
92         virtual u32 getShaderIdDirect(const std::string &name){return 0;}
93         virtual std::string getShaderName(u32 id){return "";}
94         virtual ShaderInfo getShader(u32 id){return ShaderInfo();}
95         virtual ShaderInfo getShader(const std::string &name){return ShaderInfo();}
96
97         virtual void processQueue()=0;
98         virtual void insertSourceShader(const std::string &name_of_shader,
99                 const std::string &filename, const std::string &program)=0;
100         virtual void rebuildShaders()=0;
101         virtual void addGlobalConstantSetter(IShaderConstantSetter *setter)=0;
102 };
103
104 IWritableShaderSource* createShaderSource(IrrlichtDevice *device);
105
106 #endif