JunkBox_Lib++ (for Windows) 1.10.1
Loading...
Searching...
No Matches
MaterialParam Class Reference

#include <MaterialParam.h>

Collaboration diagram for MaterialParam:

Public Member Functions

 MaterialParam (void)
 
virtual ~MaterialParam (void)
 
void init (void)
 
void free (void)
 
void clear (void)
 
void dup (MaterialParam m)
 
bool isSetTexture (void)
 
bool isSetBumpMap (void)
 
bool isSetSpecMap (void)
 
bool isSetGlow (void)
 
bool isSetBright (void)
 
bool isSetShininess (void)
 
bool isSetTransparent (void)
 
bool isTransparency (void)
 
void setTextureName (const char *name)
 
void setBumpMapName (const char *name)
 
void setSpecMapName (const char *name)
 
char * getTextureName (void)
 
char * getBumpMapName (void)
 
char * getSpecMapName (void)
 
char * getName (void)
 
void setFullName (const char *extname)
 
void setParamString (const char *param)
 
void addParamString (const char *param)
 
char * getParamString (void)
 
void setKind (char c)
 
void setShininess (double s)
 
void setGlow (double g)
 
void setBright (double b)
 
void setGlossiness (double g)
 
void setEnvironment (double e)
 
void setSpecExp (double s)
 
void setLight (double l)
 
char getKind (void)
 
double getShininess (void)
 
double getGlow (void)
 
double getBright (void)
 
double getGlossiness (void)
 
double getEnvironment (void)
 
double getSpecExp (void)
 
double getLight (void)
 
void printParam (FILE *fp)
 
char * getBase64Params (unsigned char cc='-')
 

Public Attributes

bool enable
 
int mapping
 マッピング方法
 
int mflags
 メディアフラグ
 
int others
 その他のフラグ
 
TextureParam texture
 テクスチャ
 
TextureParam specmap
 Specular マップ テクスチャ
 
TextureParam bumpmap
 Bumpmap テクスチャ
 

Private Attributes

Buffer paramstr
 パラメータ文字列 (Base64文字列)
 
char kind
 オブジェクトの種類.'O', 'T', 'G', 'E'
 
double shininess
 輝き
 
double glow
 発光
 
double bright
 明るさ
 
double glossiness
 滑らかさ
 
double speclightexp
 SpecularLightExponents.
 
double environment
 環境光
 
double light
 周りを照らすライト
 

Detailed Description

Definition at line 152 of file MaterialParam.h.

Constructor & Destructor Documentation

◆ MaterialParam()

MaterialParam ( void )
inline

Definition at line 180 of file MaterialParam.h.

180{ init();}

References MaterialParam::init().

Here is the call graph for this function:

◆ ~MaterialParam()

virtual ~MaterialParam ( void )
inlinevirtual

Definition at line 181 of file MaterialParam.h.

181{}

Member Function Documentation

◆ addParamString()

void addParamString ( const char * param)
inline

Definition at line 215 of file MaterialParam.h.

215{ if(param!=NULL) cat_s2Buffer (param, &paramstr);}
#define cat_s2Buffer(src, dst)
cat_b2Buffer()
Definition buffer.h:122
Buffer paramstr
パラメータ文字列 (Base64文字列)

References cat_s2Buffer, and MaterialParam::paramstr.

◆ clear()

void clear ( void )
inline

Definition at line 186 of file MaterialParam.h.

186{ free(); init();}

References MaterialParam::free(), and MaterialParam::init().

Referenced by MeshFacetNode::delMaterialParam().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ dup()

void dup ( MaterialParam m)

Definition at line 244 of file MaterialParam.cpp.

245{
246 *this = m;
247
251
253}
#define make_Buffer_str(str)
set_Buffer()
Definition buffer.h:61
TextureParam bumpmap
Bumpmap テクスチャ
char * getParamString(void)
TextureParam texture
テクスチャ
TextureParam specmap
Specular マップ テクスチャ
void dup(TextureParam m)

References MaterialParam::bumpmap, TextureParam::dup(), MaterialParam::getParamString(), make_Buffer_str, MaterialParam::paramstr, MaterialParam::specmap, and MaterialParam::texture.

Referenced by jbxl::newMaterialParam(), and MeshFacetNode::setMaterialParam().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ free()

void free ( void )

Definition at line 232 of file MaterialParam.cpp.

233{
234 texture.free();
235 bumpmap.free();
236 specmap.free();
237
239
240 return;
241}
void free_Buffer(Buffer *buf)
Buffer型変数のバッファ部を解放する
Definition buffer.cpp:128

References MaterialParam::bumpmap, TextureParam::free(), free_Buffer(), MaterialParam::paramstr, MaterialParam::specmap, and MaterialParam::texture.

Referenced by MaterialParam::clear(), OBJFacetMtlNode::free(), and MeshFacetNode::setMaterialParam().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ getBase64Params()

char * getBase64Params ( unsigned char cc = '-')

マテリアルの各パラメータを Base64で文字列化する.ただし '/' はファイル名として使用できないので,cc に変換される.
戻りポインタは free する必要がある.

Parameters
objオブジェクトの種類を示す任意の一文字
Returns
マテリアルの各パラメータをBase64で文字列化したデータへのポインタ.33Byte (32Byte+0x00). 要 free

Definition at line 362 of file MaterialParam.cpp.

363{
364 //printParam(stderr);
365
367
368 double red = texture.getColor(0);
369 double green = texture.getColor(1);
370 double blue = texture.getColor(2);
371 double transp = texture.getColor(3);
372 //double transp = getTransparent();
373 double cutoff = texture.getAlphaCutoff();
374 int alphaMode = texture.getAlphaMode();
375 bool hasAlpha = texture.hasAlphaChannel();
376 /*
377 short int rotate = (short int)((int)(texture.getRotate()*2000.)%32768); // 2Byte化
378 short int shiftu = (short int)((int)(texture.getShiftU()*2000.)%32768);
379 short int shiftv = (short int)((int)(texture.getShiftV()*2000.)%32768);
380 short int scaleu = (short int)((int)(texture.getScaleU()*100. )%32768);
381 short int scalev = (short int)((int)(texture.getScaleV()*100. )%32768);
382 */
383 int alphamode = 0;
384 if (hasAlpha) alphamode = alphaMode*10 + 1;
385 else alphamode = alphaMode*10;
386
387 memset(attr, 0, MATERIAL_ATTR_LEN);
388 attr[MATERIAL_ATTR_COLOR_RED] = (uByte)((1.0 - red )*255);
389 attr[MATERIAL_ATTR_COLOR_GREEN] = (uByte)((1.0 - green )*255);
390 attr[MATERIAL_ATTR_COLOR_BLUE] = (uByte)((1.0 - blue )*255);
391 attr[MATERIAL_ATTR_TRANSPARENT] = (uByte)((1.0 - transp)*255);
392 attr[MATERIAL_ATTR_ALPHACUTOFF] = (uByte)(cutoff*255);
394 attr[MATERIAL_ATTR_GLOW] = (uByte)(glow*255);
395 attr[MATERIAL_ATTR_BRIGHT] = (uByte)(bright*255);
396 attr[MATERIAL_ATTR_LIGHT] = (uByte)(light*255);
397 attr[MATERIAL_ATTR_ALPHAMODE] = (uByte)(alphamode);
398 /*
399 memcpy(attr + MATERIAL_ATTR_SHIFT_U, &shiftu, 2);
400 memcpy(attr + MATERIAL_ATTR_SHIFT_V, &shiftv, 2);
401 memcpy(attr + MATERIAL_ATTR_SCALE_U, &scaleu, 2);
402 memcpy(attr + MATERIAL_ATTR_SCALE_V, &scalev, 2);
403 memcpy(attr + MATERIAL_ATTR_ROTATE, &rotate, 2);
404 */
406
407 char* params = (char*)encode_base64_filename(attr, MATERIAL_ATTR_LEN, cc); // 要 free / -> cc
408
409 return params;
410}
#define MATERIAL_ATTR_TRANSPARENT
#define MATERIAL_ATTR_ALPHACUTOFF
#define MATERIAL_ATTR_COLOR_RED
#define MATERIAL_ATTR_BRIGHT
#define MATERIAL_ATTR_GLOW
#define MATERIAL_ATTR_SHININESS
#define MATERIAL_ATTR_LIGHT
#define MATERIAL_ATTR_ALPHAMODE
#define MATERIAL_ATTR_OBJECT
#define MATERIAL_ATTR_COLOR_GREEN
#define MATERIAL_ATTR_COLOR_BLUE
#define MATERIAL_ATTR_LEN
double bright
明るさ
char kind
オブジェクトの種類.'O', 'T', 'G', 'E'
double shininess
輝き
double light
周りを照らすライト
double getAlphaCutoff(void)
bool hasAlphaChannel(void)
Vector< double > getColor(void)
unsigned char uByte
1Byte
Definition common.h:332
unsigned char * encode_base64_filename(unsigned char *buf, int sz, unsigned char cc)
バイナリデータ bufを Base64で encodeしてファイル名を作る.ただし '/' は cc として扱う.要 free()
Definition tools.cpp:2907

References MaterialParam::bright, encode_base64_filename(), TextureParam::getAlphaCutoff(), TextureParam::getAlphaMode(), TextureParam::getColor(), MaterialParam::glow, TextureParam::hasAlphaChannel(), MaterialParam::kind, MaterialParam::light, MATERIAL_ATTR_ALPHACUTOFF, MATERIAL_ATTR_ALPHAMODE, MATERIAL_ATTR_BRIGHT, MATERIAL_ATTR_COLOR_BLUE, MATERIAL_ATTR_COLOR_GREEN, MATERIAL_ATTR_COLOR_RED, MATERIAL_ATTR_GLOW, MATERIAL_ATTR_LEN, MATERIAL_ATTR_LIGHT, MATERIAL_ATTR_OBJECT, MATERIAL_ATTR_SHININESS, MATERIAL_ATTR_TRANSPARENT, MaterialParam::shininess, and MaterialParam::texture.

Referenced by jbxl::isSameMaterial().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ getBright()

double getBright ( void )
inline

Definition at line 232 of file MaterialParam.h.

232{ return bright;}

References MaterialParam::bright.

Referenced by ColladaXML::addEffect().

Here is the caller graph for this function:

◆ getBumpMapName()

char * getBumpMapName ( void )
inline

Definition at line 209 of file MaterialParam.h.

209{ return bumpmap.getName();} // 禁 free
char * getName(void)

References MaterialParam::bumpmap, and TextureParam::getName().

Referenced by ColladaXML::addPolylists().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ getEnvironment()

double getEnvironment ( void )
inline

Definition at line 234 of file MaterialParam.h.

234{ return environment;}
double environment
環境光

References MaterialParam::environment.

◆ getGlossiness()

double getGlossiness ( void )
inline

Definition at line 233 of file MaterialParam.h.

233{ return glossiness;}
double glossiness
滑らかさ

References MaterialParam::glossiness.

◆ getGlow()

double getGlow ( void )
inline

Definition at line 231 of file MaterialParam.h.

231{ return glow;}

References MaterialParam::glow.

Referenced by ColladaXML::addEffect(), and GLTFData::addMaterialParameters().

Here is the caller graph for this function:

◆ getKind()

char getKind ( void )
inline

Definition at line 228 of file MaterialParam.h.

228{ return kind;}

References MaterialParam::kind.

Referenced by GLTFData::addMaterialParameters().

Here is the caller graph for this function:

◆ getLight()

double getLight ( void )
inline

Definition at line 236 of file MaterialParam.h.

236{ return light;}

References MaterialParam::light.

◆ getName()

char * getName ( void )

Definition at line 256 of file MaterialParam.cpp.

257{
258 if (texture.isSetTexture()) {
259 return texture.getName();
260 }
261 if (bumpmap.isSetTexture()) {
262 return bumpmap.getName();
263 }
264 if (specmap.isSetTexture()) {
265 return specmap.getName();
266 }
267 return NULL;
268}
bool isSetTexture(void)

References MaterialParam::bumpmap, TextureParam::getName(), TextureParam::isSetTexture(), MaterialParam::specmap, and MaterialParam::texture.

Referenced by MeshFacetNode::setMaterialID().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ getParamString()

char * getParamString ( void )
inline

Definition at line 216 of file MaterialParam.h.

216{ return (char*)paramstr.buf;} // 禁 free
unsigned char * buf
バッファの先頭へのポインタ.str[bufsz]は必ず 0x00となる.
Definition buffer.h:39

References Buffer::buf, and MaterialParam::paramstr.

Referenced by MeshObjectData::addData(), MeshObjectData::addData(), MeshObjectData::addData(), MaterialParam::dup(), and MeshObjectData::setMaterialParam().

Here is the caller graph for this function:

◆ getShininess()

double getShininess ( void )
inline

Definition at line 230 of file MaterialParam.h.

230{ return shininess;}

References MaterialParam::shininess.

Referenced by ColladaXML::addEffect(), GLTFData::addMaterialParameters(), and OBJFacetMtlNode::setup_params().

Here is the caller graph for this function:

◆ getSpecExp()

double getSpecExp ( void )
inline

Definition at line 235 of file MaterialParam.h.

235{ return speclightexp;}
double speclightexp
SpecularLightExponents.

References MaterialParam::speclightexp.

◆ getSpecMapName()

char * getSpecMapName ( void )
inline

Definition at line 210 of file MaterialParam.h.

210{ return specmap.getName();} // 禁 free

References TextureParam::getName(), and MaterialParam::specmap.

Here is the call graph for this function:

◆ getTextureName()

char * getTextureName ( void )
inline

Definition at line 208 of file MaterialParam.h.

208{ return texture.getName();} // 禁 free

References TextureParam::getName(), and MaterialParam::texture.

Referenced by ColladaXML::addEffect(), and ColladaXML::addPolylists().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ init()

void init ( void )

< 光沢

< 環境光

Definition at line 205 of file MaterialParam.cpp.

206{
207 enable = false;
208
209 texture.init();
210 bumpmap.init();
211 specmap.init();
212
214
215// transparent = 1.0;
216 kind = 'O'; // OBJECT
217 shininess = 0.0;
218 glow = 0.0;
219 bright = 0.0;
220 glossiness = 0.0;
221 environment = 0.0;
222 light = 0.0;
223
224 mapping = 0;
225 mflags = 0;
226 others = 0;
227
228 return;
229}
Buffer init_Buffer()
初期化したBuffer型変数を返す.
Definition buffer.cpp:47
int mapping
マッピング方法
int mflags
メディアフラグ
int others
その他のフラグ

References MaterialParam::bright, MaterialParam::bumpmap, MaterialParam::enable, MaterialParam::environment, MaterialParam::glossiness, MaterialParam::glow, TextureParam::init(), init_Buffer(), MaterialParam::kind, MaterialParam::light, MaterialParam::mapping, MaterialParam::mflags, MaterialParam::others, MaterialParam::paramstr, MaterialParam::shininess, MaterialParam::specmap, and MaterialParam::texture.

Referenced by MaterialParam::clear(), MeshFacetNode::init(), and MaterialParam::MaterialParam().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ isSetBright()

bool isSetBright ( void )
inline

Definition at line 198 of file MaterialParam.h.

198{ return (bright!=0.0);}

References MaterialParam::bright.

Referenced by ColladaXML::addEffect().

Here is the caller graph for this function:

◆ isSetBumpMap()

bool isSetBumpMap ( void )
inline

Definition at line 191 of file MaterialParam.h.

191{ return bumpmap.isSetTexture();}

References MaterialParam::bumpmap, and TextureParam::isSetTexture().

Here is the call graph for this function:

◆ isSetGlow()

bool isSetGlow ( void )
inline

Definition at line 197 of file MaterialParam.h.

197{ return (glow!=0.0);}

References MaterialParam::glow.

Referenced by ColladaXML::addEffect().

Here is the caller graph for this function:

◆ isSetShininess()

bool isSetShininess ( void )
inline

Definition at line 199 of file MaterialParam.h.

199{ return (shininess!=0.0);}

References MaterialParam::shininess.

Referenced by ColladaXML::addEffect().

Here is the caller graph for this function:

◆ isSetSpecMap()

bool isSetSpecMap ( void )
inline

Definition at line 192 of file MaterialParam.h.

192{ return specmap.isSetTexture();}

References TextureParam::isSetTexture(), and MaterialParam::specmap.

Here is the call graph for this function:

◆ isSetTexture()

bool isSetTexture ( void )
inline

Definition at line 190 of file MaterialParam.h.

190{ return texture.isSetTexture();}

References TextureParam::isSetTexture(), and MaterialParam::texture.

Here is the call graph for this function:

◆ isSetTransparent()

bool isSetTransparent ( void )
inline

Definition at line 200 of file MaterialParam.h.

200{ return (texture.getColor(3)<0.99);}

References TextureParam::getColor(), and MaterialParam::texture.

Referenced by MaterialParam::isTransparency().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ isTransparency()

bool isTransparency ( void )
inline

Definition at line 202 of file MaterialParam.h.

202{ return (texture.hasAlphaChannel() || isSetTransparent());}
bool isSetTransparent(void)

References TextureParam::hasAlphaChannel(), MaterialParam::isSetTransparent(), and MaterialParam::texture.

Referenced by ColladaXML::addEffect().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ printParam()

void printParam ( FILE * fp)

Definition at line 314 of file MaterialParam.cpp.

315{
316 if (!enable) {
317 fprintf(fp, "MaterialParam::printParam: MaterialParam is disable\n");
318 return;
319 }
320
321 fprintf(fp, "----------------------------------------------\n");
322
323 fprintf(fp, "Texture\n");
325 fprintf(fp, "\n");
326 if (specmap.isSetTexture()) {
327 fprintf(fp, "SpecMap\n");
329 fprintf(fp, "\n");
330 }
331 if (bumpmap.isSetTexture()) {
332 fprintf(fp, "BumpMap\n");
334 fprintf(fp, "\n");
335 }
336
337 fprintf(fp, "----------------------------------------------\n");
338 fprintf(fp, "MaterialParam.paramstr = %s\n", paramstr.buf);
339// fprintf(fp, "MaterialParam.transparent = %f\n", transparent);
340 fprintf(fp, "MaterialParam.shininess = %f\n", shininess);
341 fprintf(fp, "MaterialParam.glow = %f\n", glow);
342 fprintf(fp, "MaterialParam.bright = %f\n", bright);
343 fprintf(fp, "MaterialParam.mapping = %d\n", mapping);
344 fprintf(fp, "MaterialParam.mflags = %d\n", mflags);
345 fprintf(fp, "MaterialParam.others = %d\n", others);
346
347 fprintf(fp, "MaterialParam.glossiness = %f\n", glossiness);
348 fprintf(fp, "MaterialParam.environment = %f\n", environment);
349
350 fflush(fp);
351 return;
352}
void printParam(FILE *fp)

References MaterialParam::bright, Buffer::buf, MaterialParam::bumpmap, MaterialParam::enable, MaterialParam::environment, MaterialParam::glossiness, MaterialParam::glow, TextureParam::isSetTexture(), MaterialParam::mapping, MaterialParam::mflags, MaterialParam::others, MaterialParam::paramstr, TextureParam::printParam(), MaterialParam::shininess, MaterialParam::specmap, and MaterialParam::texture.

Referenced by GLTFData::addMaterialParameters().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ setBright()

void setBright ( double b)
inline

Definition at line 222 of file MaterialParam.h.

222{ /*if(b>1.0) b = 1.0; else if(b<0.0) b = 0.0;*/ bright = b;}

References MaterialParam::bright.

◆ setBumpMapName()

void setBumpMapName ( const char * name)
inline

Definition at line 205 of file MaterialParam.h.

205{ bumpmap.setName(name);}
void setName(const char *nm)

References MaterialParam::bumpmap, and TextureParam::setName().

Here is the call graph for this function:

◆ setEnvironment()

void setEnvironment ( double e)
inline

Definition at line 224 of file MaterialParam.h.

224{ /*if(e>1.0) e = 1.0; else if(e<0.0) e = 0.0;*/ environment = e;}

References MaterialParam::environment.

◆ setFullName()

void setFullName ( const char * ext)
Parameters
ext拡張子

Definition at line 274 of file MaterialParam.cpp.

275{
276 if (ext==NULL) return;
277
278 if (texture.isSetTexture()) {
279 if (ext[0]!='.') texture.addName(".");
280 texture.addName(ext);
281 }
282 if (bumpmap.isSetTexture()) {
283 if (ext[0]!='.') bumpmap.addName(".");
284 bumpmap.addName(ext);
285 }
286 if (specmap.isSetTexture()) {
287 if (ext[0]!='.') specmap.addName(".");
288 specmap.addName(ext);
289 }
290}
void addName(const char *nm)

References TextureParam::addName(), MaterialParam::bumpmap, TextureParam::isSetTexture(), MaterialParam::specmap, and MaterialParam::texture.

Here is the call graph for this function:

◆ setGlossiness()

void setGlossiness ( double g)
inline

Definition at line 223 of file MaterialParam.h.

223{ /*if(g>1.0) g = 1.0; else if(g<0.0) g = 0.0;*/ glossiness = g;}

References MaterialParam::glossiness.

◆ setGlow()

void setGlow ( double g)
inline

Definition at line 221 of file MaterialParam.h.

221{ /*if(g>1.0) g = 1.0; else if(g<0.0) g = 0.0;*/ glow = g;}

References MaterialParam::glow.

◆ setKind()

void setKind ( char c)
inline

Definition at line 218 of file MaterialParam.h.

218{ kind = c;}

References MaterialParam::kind.

◆ setLight()

void setLight ( double l)
inline

Definition at line 226 of file MaterialParam.h.

226{ /*if(l>1.0) l = 1.0; else if(l<0.0) l = 0.0;*/ light = l;}

References MaterialParam::light.

◆ setParamString()

void setParamString ( const char * param)
inline

Definition at line 214 of file MaterialParam.h.

214{ if(param!=NULL) copy_s2Buffer(param, &paramstr);}
#define copy_s2Buffer(src, dst)
copy_b2Buffer()
Definition buffer.h:108

References copy_s2Buffer, and MaterialParam::paramstr.

◆ setShininess()

void setShininess ( double s)
inline

Definition at line 220 of file MaterialParam.h.

220{ /*if(s>1.0) s = 1.0; else if(s<0.0) s = 0.0;*/ shininess = s;}

References MaterialParam::shininess.

◆ setSpecExp()

void setSpecExp ( double s)
inline

Definition at line 225 of file MaterialParam.h.

225{ /*if(s>1.0) l = 1.0; else if(s<0.0) l = 0.0;*/ speclightexp = s;}

References MaterialParam::speclightexp.

◆ setSpecMapName()

void setSpecMapName ( const char * name)
inline

Definition at line 206 of file MaterialParam.h.

206{ specmap.setName(name);}

References TextureParam::setName(), and MaterialParam::specmap.

Here is the call graph for this function:

◆ setTextureName()

void setTextureName ( const char * name)
inline

Definition at line 204 of file MaterialParam.h.

204{ texture.setName(name);}

References TextureParam::setName(), and MaterialParam::texture.

Here is the call graph for this function:

Member Data Documentation

◆ bright

◆ bumpmap

◆ enable

◆ environment

◆ glossiness

◆ glow

◆ kind

◆ light

◆ mapping

◆ mflags

int mflags

Definition at line 172 of file MaterialParam.h.

Referenced by MaterialParam::init(), and MaterialParam::printParam().

◆ others

int others

Definition at line 173 of file MaterialParam.h.

Referenced by MaterialParam::init(), and MaterialParam::printParam().

◆ paramstr

◆ shininess

◆ speclightexp

double speclightexp
private

Definition at line 164 of file MaterialParam.h.

Referenced by MaterialParam::getSpecExp(), and MaterialParam::setSpecExp().

◆ specmap

◆ texture


The documentation for this class was generated from the following files: