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

#include <MaterialParam.h>

Collaboration diagram for TextureParam:

Public Member Functions

 TextureParam (void)
 
virtual ~TextureParam (void)
 
void init (void)
 
void free (void)
 
void clear (void)
 
void dup (TextureParam m)
 
bool hasAlphaChannel (void)
 
bool isSetTexture (void)
 
bool isSetColor (void)
 
bool isSetShift (void)
 
bool isSetScale (void)
 
bool isSetRotate (void)
 
void setName (const char *nm)
 
char * getName (void)
 
void addName (const char *nm)
 
void setColor (double r, double g, double b, double a=1.0)
 
void setColor (double v, int c)
 
void setShiftU (double u)
 
void setShiftV (double v)
 
void setScaleU (double u)
 
void setScaleV (double v)
 
void setRotate (double r)
 
void setFlipU (bool f)
 
void setFlipV (bool f)
 
void setShift (double u, double v)
 
void setScale (double u, double v)
 
void setAlphaChannel (bool h)
 
void setAlphaMode (int m)
 
void setAlphaCutoff (double m)
 
Vector< double > getColor (void)
 
double getColor (int c)
 
double getTransparent (void)
 
double getShiftU (void)
 
double getShiftV (void)
 
double getScaleU (void)
 
double getScaleV (void)
 
double getRotate (void)
 
int getAlphaMode (void)
 
double getAlphaCutoff (void)
 
void execTrans (UVMap< double > *uv, int n)
 Rotate -> Scale -> Shift.
 
void execShift (UVMap< double > *uv, int n)
 
void execScale (UVMap< double > *uv, int n)
 
void execRotate (UVMap< double > *uv, int n)
 
void execInvTrans (UVMap< double > *uv, int n)
 Shift -> Scale -> Rotate.
 
void execInvShift (UVMap< double > *uv, int n)
 
void execInvScale (UVMap< double > *uv, int n)
 
void execInvRotate (UVMap< double > *uv, int n)
 
void execFlipU (UVMap< double > *uv, int n)
 
void execFlipV (UVMap< double > *uv, int n)
 
void printParam (FILE *fp)
 

Private Attributes

Buffer name
 テクスチャ名
 
double color [4]
 RGBA.
 
bool alphaChannel
 テクスチャデータがアルファチャンネルを持っているかどうか.
 
int alphaMode
 アルファチャンネルのモード
 
double alphaCutoff
 アルファチャンネルの Cutoff値.alphaMode==MATERIAL_ALPHA_MASKING の場合に有効
 
double shiftU
 UVマップのシフト (U方向)
 
double shiftV
 UVマップのシフト (V方向)
 
double scaleU
 UVマップのスケール (U方向)
 
double scaleV
 UVマップのスケール (V方向)
 
double rotate
 UVマップの回転
 
bool flipU
 UVマップで U方向の反転を行うか
 
bool flipV
 UVマップで V方向の反転を行うか
 

Detailed Description

Definition at line 54 of file MaterialParam.h.

Constructor & Destructor Documentation

◆ TextureParam()

TextureParam ( void )
inline

Definition at line 74 of file MaterialParam.h.

74{ init();}

References TextureParam::init().

Here is the call graph for this function:

◆ ~TextureParam()

virtual ~TextureParam ( void )
inlinevirtual

Definition at line 75 of file MaterialParam.h.

75{}

Member Function Documentation

◆ addName()

void addName ( const char * nm)
inline

Definition at line 95 of file MaterialParam.h.

95{ if(nm!=NULL) cat_s2Buffer(nm, &name);}
#define cat_s2Buffer(src, dst)
cat_b2Buffer()
Definition buffer.h:122
Buffer name
テクスチャ名

References cat_s2Buffer, and TextureParam::name.

Referenced by MaterialParam::setFullName().

Here is the caller graph for this function:

◆ clear()

void clear ( void )
inline

Definition at line 79 of file MaterialParam.h.

79{ free(); init();}

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

Here is the call graph for this function:

◆ dup()

void dup ( TextureParam m)

Definition at line 42 of file MaterialParam.cpp.

43{
44 *this = t;
45 name = dup_Buffer(t.name);
46}
Buffer dup_Buffer(Buffer buf)
Buffer型変数のコピーをつくる.
Definition buffer.cpp:211

References dup_Buffer(), and TextureParam::name.

Referenced by MaterialParam::dup().

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

◆ execFlipU()

void execFlipU ( UVMap< double > * uv,
int n )
inline

Definition at line 137 of file MaterialParam.h.

137{ for(int i=0; i<n; i++) uv[i].u = 1.0 - uv[i].u;}

Referenced by TextureParam::execInvTrans(), and TextureParam::execTrans().

Here is the caller graph for this function:

◆ execFlipV()

void execFlipV ( UVMap< double > * uv,
int n )
inline

Definition at line 138 of file MaterialParam.h.

138{ for(int i=0; i<n; i++) uv[i].v = 1.0 - uv[i].v;}

Referenced by TextureParam::execInvTrans(), and TextureParam::execTrans().

Here is the caller graph for this function:

◆ execInvRotate()

void execInvRotate ( UVMap< double > * uv,
int n )

Definition at line 109 of file MaterialParam.cpp.

110{
111 double uu, vv;
112 double cs = cos(rotate);
113 double sn = -sin(rotate);
114
115 for (int i=0; i<num; i++) {
116 uu = uv[i].u - 0.5;
117 vv = uv[i].v - 0.5;
118 uv[i].u = uu*cs + vv*sn + 0.5;
119 uv[i].v = -uu*sn + vv*cs + 0.5;
120 }
121}
double rotate
UVマップの回転

References TextureParam::rotate, UVMap< T >::u, and UVMap< T >::v.

Referenced by TextureParam::execInvTrans().

Here is the caller graph for this function:

◆ execInvScale()

void execInvScale ( UVMap< double > * uv,
int n )

Definition at line 80 of file MaterialParam.cpp.

81{
82 if (scaleU<=0.0 || scaleV<=0.0) return;
83 double uu, vv;
84
85 for (int i=0; i<num; i++) {
86 uu = (uv[i].u - 0.5)/scaleU;
87 vv = (uv[i].v - 0.5)/scaleV;
88 uv[i].u = uu + 0.5;
89 uv[i].v = vv + 0.5;
90 }
91}
double scaleV
UVマップのスケール (V方向)
double scaleU
UVマップのスケール (U方向)

References TextureParam::scaleU, TextureParam::scaleV, UVMap< T >::u, and UVMap< T >::v.

Referenced by TextureParam::execInvTrans().

Here is the caller graph for this function:

◆ execInvShift()

void execInvShift ( UVMap< double > * uv,
int n )

Definition at line 58 of file MaterialParam.cpp.

59{
60 for (int i=0; i<num; i++) {
61 uv[i].u -= shiftU;
62 uv[i].v -= shiftV;
63 }
64}
double shiftV
UVマップのシフト (V方向)
double shiftU
UVマップのシフト (U方向)

References TextureParam::shiftU, TextureParam::shiftV, UVMap< T >::u, and UVMap< T >::v.

Referenced by TextureParam::execInvTrans().

Here is the caller graph for this function:

◆ execInvTrans()

void execInvTrans ( UVMap< double > * uv,
int n )

Definition at line 137 of file MaterialParam.cpp.

138{
139 if (flipU) { execFlipU(uv, num); flipU = false;}
140 if (flipV) { execFlipV(uv, num); flipV = false;}
141 if (isSetShift()) execInvShift (uv, num);
142 if (isSetScale()) execInvScale (uv, num);
143 if (isSetRotate()) execInvRotate(uv, num);
144
145 return;
146}
void execFlipV(UVMap< double > *uv, int n)
bool isSetRotate(void)
void execInvShift(UVMap< double > *uv, int n)
bool flipV
UVマップで V方向の反転を行うか
bool isSetScale(void)
bool isSetShift(void)
void execFlipU(UVMap< double > *uv, int n)
void execInvScale(UVMap< double > *uv, int n)
void execInvRotate(UVMap< double > *uv, int n)
bool flipU
UVマップで U方向の反転を行うか

References TextureParam::execFlipU(), TextureParam::execFlipV(), TextureParam::execInvRotate(), TextureParam::execInvScale(), TextureParam::execInvShift(), TextureParam::flipU, TextureParam::flipV, TextureParam::isSetRotate(), TextureParam::isSetScale(), and TextureParam::isSetShift().

Here is the call graph for this function:

◆ execRotate()

void execRotate ( UVMap< double > * uv,
int n )

Definition at line 94 of file MaterialParam.cpp.

95{
96 double uu, vv;
97 double cs = cos(rotate);
98 double sn = sin(rotate);
99
100 for (int i=0; i<num; i++) {
101 uu = uv[i].u - 0.5;
102 vv = uv[i].v - 0.5;
103 uv[i].u = uu*cs + vv*sn + 0.5;
104 uv[i].v = -uu*sn + vv*cs + 0.5;
105 }
106}

References TextureParam::rotate, UVMap< T >::u, and UVMap< T >::v.

Referenced by TextureParam::execTrans().

Here is the caller graph for this function:

◆ execScale()

void execScale ( UVMap< double > * uv,
int n )

Definition at line 67 of file MaterialParam.cpp.

68{
69 double uu, vv;
70
71 for (int i=0; i<num; i++) {
72 uu = (uv[i].u - 0.5)*scaleU;
73 vv = (uv[i].v - 0.5)*scaleV;
74 uv[i].u = uu + 0.5;
75 uv[i].v = vv + 0.5;
76 }
77}

References TextureParam::scaleU, TextureParam::scaleV, UVMap< T >::u, and UVMap< T >::v.

Referenced by TextureParam::execTrans().

Here is the caller graph for this function:

◆ execShift()

void execShift ( UVMap< double > * uv,
int n )

Definition at line 49 of file MaterialParam.cpp.

50{
51 for (int i=0; i<num; i++) {
52 uv[i].u += shiftU;
53 uv[i].v += shiftV;
54 }
55}

References TextureParam::shiftU, TextureParam::shiftV, UVMap< T >::u, and UVMap< T >::v.

Referenced by TextureParam::execTrans().

Here is the caller graph for this function:

◆ execTrans()

void execTrans ( UVMap< double > * uv,
int n )

Definition at line 124 of file MaterialParam.cpp.

125{
126 DEBUG_MODE PRINT_MESG("JBXL::TextureParam::execTrans: shift = (%f %f), scale = (%f %f), rot = %f\n", shiftU, shiftV, scaleU, scaleV, rotate);
127 if (flipU) { execFlipU(uv, num); flipU = false;}
128 if (flipV) { execFlipV(uv, num); flipV = false;}
129 if (isSetRotate()) execRotate(uv, num);
130 if (isSetScale()) execScale (uv, num);
131 if (isSetShift()) execShift (uv, num);
132
133 return;
134}
void execShift(UVMap< double > *uv, int n)
void execRotate(UVMap< double > *uv, int n)
void execScale(UVMap< double > *uv, int n)
#define PRINT_MESG(...)
環境依存用の出力関数.MS Windows用は未実装
Definition tools.h:469
#define DEBUG_MODE
Definition tools.h:502

References DEBUG_MODE, TextureParam::execFlipU(), TextureParam::execFlipV(), TextureParam::execRotate(), TextureParam::execScale(), TextureParam::execShift(), TextureParam::flipU, TextureParam::flipV, TextureParam::isSetRotate(), TextureParam::isSetScale(), TextureParam::isSetShift(), PRINT_MESG, TextureParam::rotate, TextureParam::scaleU, TextureParam::scaleV, TextureParam::shiftU, and TextureParam::shiftV.

Referenced by MeshFacetNode::execAffineTransUVMap().

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

◆ free()

void free ( void )

Definition at line 35 of file MaterialParam.cpp.

36{
38 return;
39}
void free_Buffer(Buffer *buf)
Buffer型変数のバッファ部を解放する
Definition buffer.cpp:128

References free_Buffer(), and TextureParam::name.

Referenced by TextureParam::clear(), and MaterialParam::free().

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

◆ getAlphaCutoff()

double getAlphaCutoff ( void )
inline

Definition at line 125 of file MaterialParam.h.

125{ return alphaCutoff;}
double alphaCutoff
アルファチャンネルの Cutoff値.alphaMode==MATERIAL_ALPHA_MASKING の場合に有効

References TextureParam::alphaCutoff.

Referenced by GLTFData::addMaterialParameters(), and MaterialParam::getBase64Params().

Here is the caller graph for this function:

◆ getAlphaMode()

int getAlphaMode ( void )
inline

Definition at line 123 of file MaterialParam.h.

123{ if (color[3]<0.99) return MATERIAL_ALPHA_BLENDING; else return alphaMode;}
#define MATERIAL_ALPHA_BLENDING
double color[4]
RGBA.
int alphaMode
アルファチャンネルのモード

References TextureParam::alphaMode, TextureParam::color, and MATERIAL_ALPHA_BLENDING.

Referenced by GLTFData::addMaterialParameters(), MaterialParam::getBase64Params(), and TextureParam::printParam().

Here is the caller graph for this function:

◆ getColor() [1/2]

double getColor ( int c)
inline

Definition at line 114 of file MaterialParam.h.

114{ if(c<0) c = 0; else if(c>3) c = 3; return color[c];}

References TextureParam::color.

◆ getColor() [2/2]

Vector< double > getColor ( void )
inline

Definition at line 113 of file MaterialParam.h.

113{ return Vector<double>(color[0], color[1], color[2]);}

References TextureParam::color.

Referenced by ColladaXML::addEffect(), GLTFData::addMaterialParameters(), MaterialParam::getBase64Params(), jbxl::isSameTexture(), MaterialParam::isSetTransparent(), and OBJFacetMtlNode::setup_params().

Here is the caller graph for this function:

◆ getName()

char * getName ( void )
inline

Definition at line 94 of file MaterialParam.h.

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

References Buffer::buf, and TextureParam::name.

Referenced by GLTFData::addMaterials(), GLTFData::addTextures(), MaterialParam::getBumpMapName(), MaterialParam::getName(), MaterialParam::getSpecMapName(), MaterialParam::getTextureName(), jbxl::isSameTexture(), and OBJFacetMtlNode::setup_params().

Here is the caller graph for this function:

◆ getRotate()

double getRotate ( void )
inline

Definition at line 120 of file MaterialParam.h.

120{ return rotate;}

References TextureParam::rotate.

◆ getScaleU()

double getScaleU ( void )
inline

Definition at line 118 of file MaterialParam.h.

118{ return scaleU;}

References TextureParam::scaleU.

◆ getScaleV()

double getScaleV ( void )
inline

Definition at line 119 of file MaterialParam.h.

119{ return scaleV;}

References TextureParam::scaleV.

◆ getShiftU()

double getShiftU ( void )
inline

Definition at line 116 of file MaterialParam.h.

116{ return shiftU;}

References TextureParam::shiftU.

◆ getShiftV()

double getShiftV ( void )
inline

Definition at line 117 of file MaterialParam.h.

117{ return shiftV;}

References TextureParam::shiftV.

◆ getTransparent()

double getTransparent ( void )
inline

Definition at line 115 of file MaterialParam.h.

115{ return color[3];}

References TextureParam::color.

◆ hasAlphaChannel()

bool hasAlphaChannel ( void )
inline

Definition at line 83 of file MaterialParam.h.

83{ return alphaChannel;}
bool alphaChannel
テクスチャデータがアルファチャンネルを持っているかどうか.

References TextureParam::alphaChannel.

Referenced by GLTFData::addMaterialParameters(), MaterialParam::getBase64Params(), and MaterialParam::isTransparency().

Here is the caller graph for this function:

◆ init()

void init ( void )

Definition at line 12 of file MaterialParam.cpp.

13{
14 name = init_Buffer();
15
16 for (int i=0; i<4; i++) color[i] = 1.0;
17
18 alphaChannel = false;
19 alphaCutoff = 0.0;
20 alphaMode = MATERIAL_ALPHA_BLENDING; //MATERIAL_ALPHA_NONE;
21
22 shiftU = 0.0;
23 shiftV = 0.0;
24 scaleU = 1.0;
25 scaleV = 1.0;
26 rotate = 0.0;
27
28 flipU = false;
29 flipV = false;
30
31 return;
32}
Buffer init_Buffer()
初期化したBuffer型変数を返す.
Definition buffer.cpp:47

References TextureParam::alphaChannel, TextureParam::alphaCutoff, TextureParam::alphaMode, TextureParam::color, TextureParam::flipU, TextureParam::flipV, init_Buffer(), MATERIAL_ALPHA_BLENDING, TextureParam::name, TextureParam::rotate, TextureParam::scaleU, TextureParam::scaleV, TextureParam::shiftU, and TextureParam::shiftV.

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

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

◆ isSetColor()

bool isSetColor ( void )
inline

Definition at line 85 of file MaterialParam.h.

85{ return (color[0]!=1.0 || color[1]!=1.0 || color[2]!=1.0 || color[3]!=1.0);}

References TextureParam::color.

Referenced by ColladaXML::addEffect().

Here is the caller graph for this function:

◆ isSetRotate()

bool isSetRotate ( void )
inline

Definition at line 91 of file MaterialParam.h.

91{ return (rotate!=0.0);}

References TextureParam::rotate.

Referenced by TextureParam::execInvTrans(), and TextureParam::execTrans().

Here is the caller graph for this function:

◆ isSetScale()

bool isSetScale ( void )
inline

Definition at line 90 of file MaterialParam.h.

90{ return (scaleU!=1.0 || scaleV!=1.0);}

References TextureParam::scaleU, and TextureParam::scaleV.

Referenced by TextureParam::execInvTrans(), and TextureParam::execTrans().

Here is the caller graph for this function:

◆ isSetShift()

bool isSetShift ( void )
inline

Definition at line 89 of file MaterialParam.h.

89{ return (shiftU!=0.0 || shiftV!=0.0);}

References TextureParam::shiftU, and TextureParam::shiftV.

Referenced by TextureParam::execInvTrans(), and TextureParam::execTrans().

Here is the caller graph for this function:

◆ isSetTexture()

bool isSetTexture ( void )
inline

◆ printParam()

void printParam ( FILE * fp)

Definition at line 149 of file MaterialParam.cpp.

150{
151 fprintf(fp, "TextureParam.name = %s\n", name.buf);
152 fprintf(fp, "TextureParam.color = (%f,%f,%f,%f) [RGBA]\n", color[0], color[1], color[2], color[3]);
153 fprintf(fp, "TextureParam.shiftU = %f\n", shiftU);
154 fprintf(fp, "TextureParam.shiftV = %f\n", shiftV);
155 fprintf(fp, "TextureParam.scaleU = %f\n", scaleU);
156 fprintf(fp, "TextureParam.scaleV = %f\n", scaleV);
157 fprintf(fp, "TextureParam.rotate = %f\n", rotate);
158
159 if (flipU) fprintf(fp, "TextureParam.flipU = true\n");
160 else fprintf(fp, "TextureParam.flipU = false\n");
161 if (flipV) fprintf(fp, "TextureParam.flipV = true\n");
162 else fprintf(fp, "TextureParam.flipV = false\n");
163
164 if (alphaChannel) fprintf(fp, "TextureParam.alphaChannel = true\n");
165 else fprintf(fp, "TextureParam.alphaChannel = flase\n");
166
167 fprintf(fp, "TextureParam.alphaMode = %d (%d)\n", alphaMode, getAlphaMode());
168 fprintf(fp, "TextureParam.alphaCutoff = %f\n", alphaCutoff);
169
170 fflush(fp);
171 return;
172}

References TextureParam::alphaChannel, TextureParam::alphaCutoff, TextureParam::alphaMode, Buffer::buf, TextureParam::color, TextureParam::flipU, TextureParam::flipV, TextureParam::getAlphaMode(), TextureParam::name, TextureParam::rotate, TextureParam::scaleU, TextureParam::scaleV, TextureParam::shiftU, and TextureParam::shiftV.

Referenced by MaterialParam::printParam().

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

◆ setAlphaChannel()

void setAlphaChannel ( bool h)
inline

Definition at line 109 of file MaterialParam.h.

109{ alphaChannel = h;}

References TextureParam::alphaChannel.

◆ setAlphaCutoff()

void setAlphaCutoff ( double m)
inline

Definition at line 111 of file MaterialParam.h.

111{ alphaCutoff = m;}

References TextureParam::alphaCutoff.

◆ setAlphaMode()

void setAlphaMode ( int m)
inline

Definition at line 110 of file MaterialParam.h.

110{ alphaMode = m;}

References TextureParam::alphaMode.

◆ setColor() [1/2]

void setColor ( double r,
double g,
double b,
double a = 1.0 )
inline

Definition at line 97 of file MaterialParam.h.

97{ color[0] = r; color[1] = g; color[2] = b; color[3] = a;}

References TextureParam::color.

◆ setColor() [2/2]

void setColor ( double v,
int c )
inline

Definition at line 98 of file MaterialParam.h.

98{ if(c<0) c = 0; else if(c>3) c = 3; color[c] = v;}

References TextureParam::color.

◆ setFlipU()

void setFlipU ( bool f)
inline

Definition at line 104 of file MaterialParam.h.

104{ flipU = f;}

References TextureParam::flipU.

◆ setFlipV()

void setFlipV ( bool f)
inline

Definition at line 105 of file MaterialParam.h.

105{ flipV = f;}

References TextureParam::flipV.

◆ setName()

void setName ( const char * nm)
inline

Definition at line 93 of file MaterialParam.h.

93{ free_Buffer(&name); if(nm!=NULL) name = make_Buffer_bystr(nm);}
#define make_Buffer_bystr(str)
set_Buffer()
Definition buffer.h:57

References free_Buffer(), make_Buffer_bystr, and TextureParam::name.

Referenced by MaterialParam::setBumpMapName(), MaterialParam::setSpecMapName(), and MaterialParam::setTextureName().

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

◆ setRotate()

void setRotate ( double r)
inline

Definition at line 103 of file MaterialParam.h.

103{ rotate = r;}

References TextureParam::rotate.

◆ setScale()

void setScale ( double u,
double v )
inline

Definition at line 107 of file MaterialParam.h.

107{ scaleU = u; scaleV = v;}

References TextureParam::scaleU, and TextureParam::scaleV.

◆ setScaleU()

void setScaleU ( double u)
inline

Definition at line 101 of file MaterialParam.h.

101{ scaleU = u;}

References TextureParam::scaleU.

◆ setScaleV()

void setScaleV ( double v)
inline

Definition at line 102 of file MaterialParam.h.

102{ scaleV = v;}

References TextureParam::scaleV.

◆ setShift()

void setShift ( double u,
double v )
inline

Definition at line 106 of file MaterialParam.h.

106{ shiftU = u; shiftV = v;}

References TextureParam::shiftU, and TextureParam::shiftV.

◆ setShiftU()

void setShiftU ( double u)
inline

Definition at line 99 of file MaterialParam.h.

99{ shiftU = u;}

References TextureParam::shiftU.

◆ setShiftV()

void setShiftV ( double v)
inline

Definition at line 100 of file MaterialParam.h.

100{ shiftV = v;}

References TextureParam::shiftV.

Member Data Documentation

◆ alphaChannel

◆ alphaCutoff

double alphaCutoff
private

◆ alphaMode

◆ color

◆ flipU

◆ flipV

◆ name

◆ rotate

◆ scaleU

◆ scaleV

◆ shiftU

◆ shiftV


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