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

#include <ExGdata.h>

Inheritance diagram for ExCmnHead:
Collaboration diagram for ExCmnHead:

Public Member Functions

 ExCmnHead (int x, int y=1, int z=1, int d=8, int *rn=NULL)
 
 ExCmnHead (RBound< int > rb, int d=8, int *rn=NULL)
 
 ExCmnHead (int *rn=NULL)
 
 ExCmnHead (ExCmnHead &cmhd)=default
 
virtual ~ExCmnHead (void)
 
void init (void)
 
void set (RBound< int > rb, int d=8, int *rn=NULL)
 
void set (int x, int y=1, int z=1, int d=8, int *rn=NULL)
 
void getm (int x, int y=1, int z=1, int d=8)
 グラフィックメモリを獲得する.
 
void clear ()
 
uBytepoint (int x, int y=0, int z=0)
 座標(x,y,z)の画素値の参照
 
bool isNull (void)
 グラフィックデータを持いないか?
 
void free (void)
 グラフィックデータを開放する(メモリ管理なし兼用)
 
void mfree (bool azero=false)
 グラフィックデータを開放する
 
void ffree (void)
 グラフィックデータを強制開放する
 
void setRefer (int *rn)
 
ExCmnHead operator= (ExCmnHead &m)
 
ExCmnHead operator= (CmnHead &m)
 

Public Attributes

int state
 
int dbyte
 
int * refno
 
- Public Attributes inherited from CmnHead
union { 
 
   CmnHead_Entry   entry 
 
   struct { 
 
      int   kind 
 Kind of Graphics Format. More...
 
      int   xsize 
 Width of Graphics. More...
 
      int   ysize 
 Height of Graphics. More...
 
      int   zsize 
 For 3D Data (or Color) More...
 
      int   depth 
 Color Depth of Graphics (bit unit)
More...
 
      unsigned int   bsize 
 Fllowing buf size or Any Data (byte unit) More...
 
      unsigned int   lsize 
 Size of Graphics Data (byte unit) More...
 
      int   option 
 General purpose (pating) More...
 
   }  
 
};  
 
uBytebuf
 Ture Header buffer

 
uBytegrptr
 Pointer to Data.
 

Detailed Description

class ExCmnHead : public CmnHead

必ず参照数変数(refnoの実体)を指定すること.無くても動くかも知れないが,保証は無い.

関数の中からディストラクトされるメモリ(のコピー)をリターンする場合は,returnの前に mfree()を実行させること.

Definition at line 369 of file ExGdata.h.

Constructor & Destructor Documentation

◆ ExCmnHead() [1/4]

ExCmnHead ( int x,
int y = 1,
int z = 1,
int d = 8,
int * rn = NULL )
inline

Definition at line 379 of file ExGdata.h.

379{ set(x, y, z, d, rn);}
void set(RBound< int > rb, int d=8, int *rn=NULL)
Definition ExGdata.cpp:27

References ExCmnHead::set().

Here is the call graph for this function:

◆ ExCmnHead() [2/4]

ExCmnHead ( RBound< int > rb,
int d = 8,
int * rn = NULL )
inline

Definition at line 380 of file ExGdata.h.

380{ set(rb, d, rn);}

References ExCmnHead::set().

Here is the call graph for this function:

◆ ExCmnHead() [3/4]

ExCmnHead ( int * rn = NULL)
inline

Definition at line 381 of file ExGdata.h.

381{ init(); setRefer(rn);}
void init(void)
Definition ExGdata.cpp:17
void setRefer(int *rn)
Definition ExGdata.cpp:78

References ExCmnHead::init(), and ExCmnHead::setRefer().

Here is the call graph for this function:

◆ ExCmnHead() [4/4]

ExCmnHead ( ExCmnHead & cmhd)
default

◆ ~ExCmnHead()

virtual ~ExCmnHead ( void )
inlinevirtual

Definition at line 383 of file ExGdata.h.

383{}

Member Function Documentation

◆ clear()

void clear ( )
inline

Definition at line 391 of file ExGdata.h.

391{memset(grptr, 0, lsize);}
unsigned int lsize
Size of Graphics Data (byte unit)
Definition gheader.h:133
uByte * grptr
Pointer to Data.
Definition gheader.h:138

References CmnHead::grptr, and CmnHead::lsize.

◆ ffree()

void ffree ( void )

void ExCmnHead::ffree(void)

グラフィックデータを強制的に開放する

Definition at line 160 of file ExGdata.cpp.

161{
162 if (refno==NULL) {
163 if (!isNull()) {
164 free_CmnHead(this);
165 }
166 }
167 else {
168 if (*refno>=0) {
169 free_CmnHead(this);
170 *refno = -1;
171 }
172 }
173
174 return;
175}
bool isNull(void)
グラフィックデータを持いないか?
Definition ExGdata.cpp:89
void free_CmnHead(CmnHead *hd)
Definition Gdata.cpp:25

References jbxl::free_CmnHead(), ExCmnHead::isNull(), and ExCmnHead::refno.

Here is the call graph for this function:

◆ free()

void free ( void )

void ExCmnHead::free(void)

グラフィックデータを開放する

メモリ管理をしている場合は,参照数を減らす. メモリ管理をしていない場合は,強制的に開放する.

Definition at line 141 of file ExGdata.cpp.

142{
143 if (refno==NULL) {
144 if (!isNull()) {
145 free_CmnHead(this);
146 }
147 }
148 else {
149 mfree();
150 }
151 return;
152}
void mfree(bool azero=false)
グラフィックデータを開放する
Definition ExGdata.cpp:113

References jbxl::free_CmnHead(), ExCmnHead::isNull(), ExCmnHead::mfree(), and ExCmnHead::refno.

Referenced by ExCmnHead::operator=(), and ExCmnHead::operator=().

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

◆ getm()

void getm ( int x,
int y = 1,
int z = 1,
int d = 8 )

Definition at line 51 of file ExGdata.cpp.

52{
53 if (x<=0) x = 1;
54 if (y<=0) y = 1;
55 if (z<=0) z = 1;
56 if (d<=0) d = 8;
57
58 xsize = x;
59 ysize = y;
60 zsize = z;
61 depth = d;
62 state = 0;
63
64 dbyte = (d+7)/8;
65 lsize = x*y*z*dbyte;
66
67 grptr = (uByte*)malloc(lsize*sizeof(uByte));
68 if (grptr==NULL) {
69 init_CmnHead(this);
71 return;
72 }
73 memset(grptr, 0, lsize);
74}
unsigned char uByte
1Byte
Definition common.h:332
#define JBXL_GRAPH_MEMORY_ERROR
メモリエラー
Definition jbxl_state.h:170
void init_CmnHead(CmnHead *hd)
Definition Gdata.cpp:42
int zsize
For 3D Data (or Color)
Definition gheader.h:130
int ysize
Height of Graphics.
Definition gheader.h:129
int depth
Color Depth of Graphics (bit unit)
Definition gheader.h:131
int xsize
Width of Graphics.
Definition gheader.h:128

References ExCmnHead::dbyte, CmnHead::depth, CmnHead::grptr, jbxl::init_CmnHead(), JBXL_GRAPH_MEMORY_ERROR, CmnHead::lsize, ExCmnHead::state, CmnHead::xsize, CmnHead::ysize, and CmnHead::zsize.

Referenced by ExCmnHead::set().

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

◆ init()

void init ( void )

Definition at line 17 of file ExGdata.cpp.

18{
19 init_CmnHead(this);
20 dbyte = 0;
21 state = 0;
22 refno = NULL;
23}

References ExCmnHead::dbyte, jbxl::init_CmnHead(), ExCmnHead::refno, and ExCmnHead::state.

Referenced by ExCmnHead::ExCmnHead().

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

◆ isNull()

bool isNull ( void )

Definition at line 89 of file ExGdata.cpp.

90{
91 if (grptr==NULL) return true;
92
93#ifdef WIN32
94 if (grptr==(uByte*)WIN_DD_NULL) return true;
95#endif
96
97 if (refno!=NULL) {
98 if (*refno<0) return true;
99 else return false;
100 }
101 return false;
102}
#define WIN_DD_NULL
Definition common.h:96

References CmnHead::grptr, ExCmnHead::refno, and WIN_DD_NULL.

Referenced by ExCmnHead::ffree(), ExCmnHead::free(), ExCmnHead::operator=(), and ExCmnHead::operator=().

Here is the caller graph for this function:

◆ mfree()

void mfree ( bool azero = false)

void ExCmnHead::mfree(bool azero)

グラフィックデータを開放する

メモリ管理をしている場合は,参照数を減らす. メモリ管理をしていない場合は,何もしない.

Definition at line 113 of file ExGdata.cpp.

114{
115 if (refno!=NULL) {
116 (*refno)--;
117 if (!azero && *refno==0) {
118 free_CmnHead(this);
119 *refno = -1;
120 }
121 else if (*refno==-1) {
122 DEBUG_MODE PRINT_MESG("ExCmnHead::free(): [警告] 通常ありえない参照数 0\n");
123 }
124 else if (*refno<-1) {
125 *refno = -1;
126 }
127 }
128
129 return;
130}
#define PRINT_MESG(...)
環境依存用の出力関数.MS Windows用は未実装
Definition tools.h:469
#define DEBUG_MODE
Definition tools.h:502

References DEBUG_MODE, jbxl::free_CmnHead(), PRINT_MESG, and ExCmnHead::refno.

Referenced by ExCmnHead::free().

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

◆ operator=() [1/2]

ExCmnHead operator= ( CmnHead & m)

Definition at line 238 of file ExGdata.cpp.

239{
240 if (!isNull()) free();
241
242 kind = s.kind;
243 xsize = s.xsize;
244 ysize = s.ysize;
245 zsize = s.zsize;
246 depth = s.depth;
247 bsize = s.bsize;
248 lsize = s.lsize;
249 buf = s.buf;
250 grptr = s.grptr;
251 state = 0;
252 dbyte = (depth+7)/8;
253
254 if (s.grptr!=NULL) { // コピー元はデータを持っている.
255 if (refno!=NULL) { // 自分の参照変数を持っている.
256 if (*refno<=-1) *refno = 1; // 自分の参照変数が未使用ならそれを使う.
257 else refno = NULL; // 参照変数は誰かが使っているので,自分は参照変数無しになる.
258 }
259 }
260
261 else { // コピー元はデータを持っていない
262 grptr = NULL;
263 if (refno!=NULL) { // 自分の参照変数を持っている.
264 if (*refno<=-1) *refno = -1; // 自分の参照変数が未使用ならそれを使う.
265 else refno = NULL; // 参照変数は誰かが使っているので,自分は参照変数無しになる.
266 }
267 }
268
269 return *this;
270}
void free(void)
グラフィックデータを開放する(メモリ管理なし兼用)
Definition ExGdata.cpp:141
uByte * buf
Ture Header buffer
Definition gheader.h:137
int kind
Kind of Graphics Format.
Definition gheader.h:127
unsigned int bsize
Fllowing buf size or Any Data (byte unit)
Definition gheader.h:132

References CmnHead::bsize, CmnHead::buf, ExCmnHead::dbyte, CmnHead::depth, ExCmnHead::free(), CmnHead::grptr, ExCmnHead::isNull(), CmnHead::kind, CmnHead::lsize, ExCmnHead::refno, ExCmnHead::state, CmnHead::xsize, CmnHead::ysize, and CmnHead::zsize.

Here is the call graph for this function:

◆ operator=() [2/2]

ExCmnHead operator= ( ExCmnHead & m)

Definition at line 183 of file ExGdata.cpp.

184{
185 ExCmnHead dm = *this;
186
187 kind = s.kind;
188 xsize = s.xsize;
189 ysize = s.ysize;
190 zsize = s.zsize;
191 dbyte = s.dbyte;
192 depth = s.depth;
193 bsize = s.bsize;
194 lsize = s.lsize;
195 buf = s.buf;
196 grptr = s.grptr;
197 state = s.state;
198
199 if (!s.isNull()) { // コピー元はデータを持っている.
200 if (s.refno!=NULL) { // コピー元は参照変数を持っている.
201 if (*s.refno>=0) { // 相手の参照変数を使う.
202 refno = s.refno;
203 (*refno)++;
204 }
205 else {
206 DEBUG_MODE PRINT_MESG("ExCmnHead::= (ExCmnHead): コピー元参照変数の不正!!\n");
207 }
208 }
209 else { // コピー元は参照変数を持っていない.
210 if (refno!=NULL) { // 自分の参照変数を持っている.
211 if (*refno<=-1) *refno = 1; // 自分の参照変数が未使用ならそれを使う.
212 else refno = NULL; // 参照変数は誰かが使っているので,自分は参照変数無しになる.
213 }
214 }
215 }
216
217 else { // コピー元はデータを持っていない
218 grptr = NULL;
219 if (s.refno!=NULL) { // コピー元は参照変数を持っている.
220 refno = s.refno; // 相手の参照変数を使う.
221 *refno = -1; // データは無いので -1 に.
222 }
223 else { // コピー元は参照変数を持っていない.
224 if (refno!=NULL) { // 自分の参照変数を持っている.
225 if (*refno<=-1) *refno = -1; // 自分の参照変数が未使用ならそれを使う.
226 else refno = NULL; // 参照変数は誰かが使っているので,自分は参照変数無しになる.
227 }
228 }
229 }
230
231 if (!dm.isNull()) dm.free();
232 return *this;
233}

References CmnHead::bsize, CmnHead::buf, ExCmnHead::dbyte, DEBUG_MODE, CmnHead::depth, ExCmnHead::free(), CmnHead::grptr, ExCmnHead::isNull(), CmnHead::kind, CmnHead::lsize, PRINT_MESG, ExCmnHead::refno, ExCmnHead::state, CmnHead::xsize, CmnHead::ysize, and CmnHead::zsize.

Here is the call graph for this function:

◆ point()

uByte & point ( int x,
int y = 0,
int z = 0 )
inline

Definition at line 392 of file ExGdata.h.

References ExCmnHead::dbyte, CmnHead::grptr, CmnHead::xsize, and CmnHead::ysize.

◆ set() [1/2]

void set ( int x,
int y = 1,
int z = 1,
int d = 8,
int * rn = NULL )

Definition at line 34 of file ExGdata.cpp.

35{
36 init_CmnHead(this);
37 state = 0;
38 getm(x, y, z, d);
39
40 if (rn!=NULL) setRefer(rn);
41 else if (refno!=NULL) {
42 if (grptr==NULL) *refno = -1;
43 else *refno = 1;
44 }
45
46 return;
47}
void getm(int x, int y=1, int z=1, int d=8)
グラフィックメモリを獲得する.
Definition ExGdata.cpp:51

References ExCmnHead::getm(), CmnHead::grptr, jbxl::init_CmnHead(), ExCmnHead::refno, ExCmnHead::setRefer(), and ExCmnHead::state.

Here is the call graph for this function:

◆ set() [2/2]

void set ( RBound< int > rb,
int d = 8,
int * rn = NULL )

Definition at line 27 of file ExGdata.cpp.

27 {
28 set(rb.xmax-rb.xmin+1, rb.ymax-rb.ymin+1, rb.zmax-rb.zmin+1, d, rn);
29 return;
30}
T xmax
x軸境界の最大値.
Definition Vector.h:427
T ymin
y軸境界の最小値.
Definition Vector.h:428
T zmax
z軸境界の最大値.
Definition Vector.h:431
T xmin
x軸境界の最小値.
Definition Vector.h:426
T ymax
y軸境界の最大値.
Definition Vector.h:429
T zmin
z軸境界の最小値.
Definition Vector.h:430

References ExCmnHead::set(), RBound< T >::xmax, RBound< T >::xmin, RBound< T >::ymax, RBound< T >::ymin, RBound< T >::zmax, and RBound< T >::zmin.

Referenced by ExCmnHead::ExCmnHead(), ExCmnHead::ExCmnHead(), and ExCmnHead::set().

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

◆ setRefer()

void setRefer ( int * rn)

Definition at line 78 of file ExGdata.cpp.

79{
80 refno = rn;
81 if (refno!=NULL) {
82 if (grptr==NULL) *refno = -1;
83 else *refno = 1;
84 }
85}

References CmnHead::grptr, and ExCmnHead::refno.

Referenced by ExCmnHead::ExCmnHead(), and ExCmnHead::set().

Here is the caller graph for this function:

Member Data Documentation

◆ dbyte

◆ refno

◆ state


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