CCMaterial.h
5.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
/****************************************************************************
Copyright (c) 2015-2016 Chukong Technologies Inc.
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
http://www.cocos2d-x.org
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
Ideas taken from:
- GamePlay3D: http://gameplay3d.org/
- OGRE3D: http://www.ogre3d.org/
- Qt3D: http://qt-project.org/
****************************************************************************/
#pragma once
#include <string>
#include <unordered_map>
#include "renderer/CCRenderState.h"
#include "renderer/CCTechnique.h"
#include "renderer/CCCustomCommand.h"
#include "base/CCRef.h"
#include "base/CCVector.h"
#include "math/Vec2.h"
#include "math/Vec3.h"
#include "math/Vec4.h"
#include "math/Mat4.h"
#include "platform/CCPlatformMacros.h"
NS_CC_BEGIN
class Technique;
class Pass;
class GLProgramState;
class Node;
class Properties;
class RenderState;
namespace backend
{
class ProgramState;
}
/// Material
class CC_DLL Material :public Ref
{
friend class Node;
friend class Technique;
friend class Pass;
friend class MeshCommand;
friend class Renderer;
friend class Mesh;
friend class RenderState;
public:
/**
* Creates a Material using the data from the Properties object defined at the specified URL,
* where the URL is of the format "<file-path>.<extension>#<namespace-id>/<namespace-id>/.../<namespace-id>"
* (and "#<namespace-id>/<namespace-id>/.../<namespace-id>" is optional).
*
* @param url The URL pointing to the Properties object defining the material.
*
* @return A new Material or NULL if there was an error.
*/
static Material* createWithFilename(const std::string& path);
/** Creates a Material with a GLProgramState.
It will only contain one Technique and one Pass.
Added in order to support legacy code.
*/
static Material* createWithProgramState(backend::ProgramState* programState);
/**
* Creates a material from the specified properties object.
*
* @param materialProperties The properties object defining the
* material (must have namespace equal to 'material').
* @return A new Material.
*/
static Material* createWithProperties(Properties* materialProperties);
void draw(MeshCommand* meshCommand, float globalZOrder, backend::Buffer* vertexBuffer, backend::Buffer* indexBuffer,
CustomCommand::PrimitiveType primitive, CustomCommand::IndexFormat indexFormat,
unsigned int indexCount, const Mat4& modelView);
/// returns the material name
std::string getName() const;
/// sets the material name
void setName(const std::string& name);
/** Returns a Technique by its name.
returns `nullptr` if the Technique can't be found.
*/
Technique* getTechniqueByName(const std::string& name);
/** Returns a Technique by index.
returns `nullptr` if the index is invalid.
*/
Technique* getTechniqueByIndex(ssize_t index);
/** Returns the Technique used by the Material */
Technique* getTechnique() const;
/** Returns the list of Techniques */
const Vector<Technique*>& getTechniques() const;
/** Returns the number of Techniques in the Material. */
ssize_t getTechniqueCount() const;
/** Adds a Technique into the Material */
void addTechnique(Technique* technique);
/** Sets the current technique */
void setTechnique(const std::string& techniqueName);
/** returns a clone (deep-copy) of the material */
virtual Material* clone() const;
inline RenderState::StateBlock &getStateBlock() { return _renderState._state; }
inline void setStateBlock(const RenderState::StateBlock &state) {
_renderState._state = state;
}
RenderState * getRenderState() { return &_renderState; }
protected:
Material();
~Material();
bool initWithProgramState(backend::ProgramState* state);
bool initWithFile(const std::string& file);
bool initWithProperties(Properties* materialProperties);
void setTarget(Node* target);
bool parseProperties(Properties* properties);
bool parseTechnique(Properties* properties);
bool parsePass(Technique* technique, Properties* properties);
bool parseShader(Pass* pass, Properties* properties);
bool parseSampler(backend::ProgramState* programState, Properties* properties);
bool parseUniform(backend::ProgramState* programState, Properties* properties, const char* uniformName);
bool parseRenderState(RenderState::StateBlock *state, Properties* properties);
// material name
std::string _name;
RenderState _renderState;
// array of techniques
Vector<Technique*> _techniques;
// weak pointer since it is being help by _techniques
Technique* _currentTechnique = nullptr;
// weak reference
Node* _target = nullptr;
std::unordered_map<std::string, int> _textureSlots;
int _textureSlotIndex = 0;
};
NS_CC_END