JunkBox_Lib++ (for Windows) 1.10.1
Loading...
Searching...
No Matches
ExGdata.h
Go to the documentation of this file.
1#ifndef __JBXL_CPP_EXTEND_GRAPHIC_DATA_H_
2#define __JBXL_CPP_EXTEND_GRAPHIC_DATA_H_
3
10#include "Gdata.h"
11
12
13//
14namespace jbxl {
15
16
18// メモリ管理機能付 ExMSGraph, ExCmnHead
19//
20
77template <typename T=uWord> class ExMSGraph : public MSGraph<T>
78{
79public:
80//protected:
81 int* refno; // メモリ領域への参照オブジェクト数
82
83//
84public:
85 ExMSGraph(int x, int y=1, int z=1, T v=(T)0, T b=(T)0, double rz=1.0, int* rn=NULL) { set(x, y, z, v, b, rz, rn);}
86 ExMSGraph(RBound<int> rb, T v=(T)0, T b=(T)0, double rz=1.0, int* rn=NULL){ set(rb, v, b, rz, rn);}
87 ExMSGraph(int* rn=NULL) { MSGraph<T>::init(); setRefer(rn);}
88 virtual ~ExMSGraph(void) {}
89
90 void set(int x, int y=1, int z=1, T v=(T)0, T b=(T)0, double rz=1.0, int*rn=NULL);
91 void set(RBound<int> rb, T v=(T)0, T b=(T)0, double rz=1.0, int*rn=NULL);
92 void mimicry(ExMSGraph<T> s) { set(s.xs, s.ys, s.zs, s.zero, s.base, s.RZxy, NULL);}
93
94 bool isNull(void);
95 void free(void);
96 void mfree(bool azero=false);
97 void ffree(void);
98 void setRefer(int* rn);
99
102};
103
104
105//
106template <typename T> void ExMSGraph<T>::set(RBound<int> rb, T v, T b, double rz, int* rn) {
107 set(rb.xmax-rb.xmin+1, rb.ymax-rb.ymin+1, rb.zmax-rb.zmin+1, v, b, rz, rn);
109 return;
110}
111
112
113//
114template <typename T> void ExMSGraph<T>::set(int x, int y, int z, T v, T b, double rz, int* rn)
115{
116 if (z<=0) z = 1;
117
118 MSGraph<T>::getm(x, y, z, v);
119 if (MSGraph<T>::gp==NULL) return;
120
122 if (rz==0.0) MSGraph<T>::RZxy = 1.0;
123 else MSGraph<T>::RZxy = rz;
124 MSGraph<T>::rbound.set(0, x-1, 0, y-1, 0, z-1);
125
126 if (rn!=NULL) setRefer(rn);
127 else if (refno!=NULL) {
128 if (MSGraph<T>::gp==NULL) *refno = -1;
129 else *refno = 1;
130 }
131 return;
132}
133
134
135//
136template <typename T> void ExMSGraph<T>::setRefer(int* rn)
137{
138 refno = rn;
139 if (refno!=NULL) {
140 if (MSGraph<T>::gp==NULL) *refno = -1;
141 else *refno = 1;
142 }
143}
144
145
146// グラフィックデータを持いないか?
147template <typename T> bool ExMSGraph<T>::isNull(void)
148{
149 if (MSGraph<T>::gp==NULL) return true;
150
151#ifdef WIN32
152 if (MSGraph<T>::gp==(T*)WIN_DD_NULL) return true;
153#endif
154
155 if (refno!=NULL) {
156 if (*refno<0) return true;
157 else return false;
158 }
159 return false;
160}
161
162
171template <typename T> void ExMSGraph<T>::free(void)
172{
173 if (refno==NULL) {
174 if (!isNull()) {
175 ::free(MSGraph<T>::gp);
176 MSGraph<T>::init(); // gp = NULL;
177 }
178 }
179 else {
180 mfree();
181 }
182 return;
183}
184
185
196template <typename T> void ExMSGraph<T>::mfree(bool azero)
197{
198 if (refno!=NULL) {
199 (*refno)--;
200 if (!azero && *refno==0) {
201 ::free(MSGraph<T>::gp);
202 *refno = -1;
203 MSGraph<T>::init(); // gp = NULL;
204 }
205 else if (*refno==-1) {
206 DEBUG_MODE PRINT_MESG("ExMSGraph<T>::mfree: [警告] 通常ありえない参照数 0\n");
207 }
208 else if (*refno<-1) {
209 *refno = -1;
210 }
211 }
212 return;
213}
214
215
221template <typename T> void ExMSGraph<T>::ffree()
222{
223 if (refno==NULL) {
224 if (!isNull()) {
225 ::free(MSGraph<T>::gp);
226 }
227 }
228 else {
229 if (*refno>=0) {
230 ::free(MSGraph<T>::gp);
231 *refno = -1;
232 }
233 }
234 MSGraph<T>::init(); // gp = NULL;
235 return;
236}
237
238
239// オペレータ
240//
242{
243 ExMSGraph<T> dm = *this;
244
245 MSGraph<T>::xs = s.xs;
246 MSGraph<T>::ys = s.ys;
247 MSGraph<T>::zs = s.zs;
248 MSGraph<T>::gp = s.gp;
251
259
269
270 if (!s.isNull()) { // コピー元はデータを持っている.
271 if (s.refno!=NULL) { // コピー元は参照数変数を持っている.
272 if (*s.refno>=0) { // 相手の参照数変数を使う.
273 refno = s.refno;
274 (*refno)++;
275 }
276 else {
277 DEBUG_MODE PRINT_MESG("ExMSGraph<T>::= (ExMSGraph): コピー元参照数変数の不正!!\n");
278 }
279 }
280 else { // コピー元は参照数変数を持っていない.
281 if (refno!=NULL) { // 自分の参照数変数を持っている.
282 if (*refno<=-1) *refno = 1; // 自分の参照数変数が未使用ならそれを使う.
283 else refno = NULL; // 参照数変数は誰かが使っているので,自分は参照数変数無しになる.
284 }
285 }
286 }
287
288 else { // コピー元はデータを持っていない
289 MSGraph<T>::gp = NULL;
290 if (s.refno!=NULL) { // コピー元は参照数変数を持っている.
291 refno = s.refno; // 相手の参照数変数を使う.
292 *refno = -1; // データは無いので -1 に.
293 }
294 else { // コピー元は参照数変数を持っていない.
295 if (refno!=NULL) { // 自分の参照数変数を持っている.
296 if (*refno<=-1) *refno = -1; // 自分の参照数変数が未使用ならそれを使う.
297 else refno = NULL; // 参照数変数は誰かが使っているので,自分は参照数変数無しになる.
298 }
299 }
300 }
301
302 if (!dm.isNull()) dm.mfree();
303 return *this;
304}
305
306
307// オペレータ
308//
310{
311 if (!isNull()) mfree();
312
313 MSGraph<T>::xs = s.xs;
314 MSGraph<T>::ys = s.ys;
315 MSGraph<T>::zs = s.zs;
316 MSGraph<T>::gp = s.gp;
319
327
336
337 if (!s.isNull()) { // コピー元はデータを持っている.
338 if (refno!=NULL) { // 自分の参照数変数を持っている.
339 if (*refno<=-1) *refno = 1; // 自分の参照数変数が未使用ならそれを使う.
340 else refno = NULL; // 参照数変数は誰かが使っているので,自分は参照数変数無しになる.
341 }
342 }
343
344 else { // コピー元はデータを持っていない
345 MSGraph<T>::gp = NULL;
346 if (refno!=NULL) { // 自分の参照数変数を持っている.
347 if (*refno<=-1) *refno = -1; // 自分の参照数変数が未使用ならそれを使う.
348 else refno = NULL; // 参照数変数は誰かが使っているので,自分は参照数変数無しになる.
349 }
350 }
351
352 return *this;
353}
354
355
356
358// メモリ管理付 CmnHead
359//
360
369class ExCmnHead : public CmnHead
370{
371public:
372 int state;
373 int dbyte;
374
375//protected:
376 int* refno;
377
378public:
379 ExCmnHead(int x, int y=1, int z=1, int d=8, int* rn=NULL) { set(x, y, z, d, rn);}
380 ExCmnHead(RBound<int> rb, int d=8, int* rn=NULL) { set(rb, d, rn);}
381 ExCmnHead(int* rn=NULL) { init(); setRefer(rn);}
382 ExCmnHead(ExCmnHead& cmhd) = default;
383 virtual ~ExCmnHead(void) {}
384
385 void init(void);
386
387 void set (RBound<int> rb, int d=8, int* rn=NULL);
388 void set (int x, int y=1, int z=1, int d=8, int* rn=NULL);
389 void getm(int x, int y=1, int z=1, int d=8);
390
391 void clear() {memset(grptr, 0, lsize);}
392 uByte& point(int x, int y=0, int z=0) { return grptr[dbyte*(x+xsize*y+xsize*ysize*z)];}
393
394 bool isNull(void);
395 void free(void);
396 void mfree(bool azero=false);
397 void ffree(void);
398 void setRefer(int* rn);
399// void decRefer() { (*refno)--;} ///< 次のステップで強制的に +1される場合,予め実行する.
400
403};
404
405
406} // namespace
407
408
409
410#endif //__JBXL_CPP_EXTEND_GRAPHIC_DATA_H_
グラフィックデータ定義用ヘッダ
void getm(int x, int y=1, int z=1, int d=8)
グラフィックメモリを獲得する.
Definition ExGdata.cpp:51
ExCmnHead(int *rn=NULL)
Definition ExGdata.h:381
ExCmnHead operator=(ExCmnHead &m)
Definition ExGdata.cpp:183
void init(void)
Definition ExGdata.cpp:17
void mfree(bool azero=false)
グラフィックデータを開放する
Definition ExGdata.cpp:113
uByte & point(int x, int y=0, int z=0)
座標(x,y,z)の画素値の参照
Definition ExGdata.h:392
void set(RBound< int > rb, int d=8, int *rn=NULL)
Definition ExGdata.cpp:27
virtual ~ExCmnHead(void)
Definition ExGdata.h:383
ExCmnHead(int x, int y=1, int z=1, int d=8, int *rn=NULL)
Definition ExGdata.h:379
ExCmnHead(RBound< int > rb, int d=8, int *rn=NULL)
Definition ExGdata.h:380
void free(void)
グラフィックデータを開放する(メモリ管理なし兼用)
Definition ExGdata.cpp:141
ExCmnHead(ExCmnHead &cmhd)=default
bool isNull(void)
グラフィックデータを持いないか?
Definition ExGdata.cpp:89
void ffree(void)
グラフィックデータを強制開放する
Definition ExGdata.cpp:160
void setRefer(int *rn)
Definition ExGdata.cpp:78
void mimicry(ExMSGraph< T > s)
Definition ExGdata.h:92
void mfree(bool azero=false)
グラフィックデータを開放する
Definition ExGdata.h:196
ExMSGraph(int x, int y=1, int z=1, T v=(T) 0, T b=(T) 0, double rz=1.0, int *rn=NULL)
Definition ExGdata.h:85
ExMSGraph< T > operator=(ExMSGraph< T > &s)
Definition ExGdata.h:241
ExMSGraph(int *rn=NULL)
Definition ExGdata.h:87
void free(void)
グラフィックデータを開放する(メモリ管理なし兼用)
Definition ExGdata.h:171
bool isNull(void)
グラフィックデータを持いないか?
Definition ExGdata.h:147
void ffree(void)
グラフィックデータを強制開放する
Definition ExGdata.h:221
void setRefer(int *rn)
Definition ExGdata.h:136
ExMSGraph(RBound< int > rb, T v=(T) 0, T b=(T) 0, double rz=1.0, int *rn=NULL)
Definition ExGdata.h:86
virtual ~ExMSGraph(void)
Definition ExGdata.h:88
void set(int x, int y=1, int z=1, T v=(T) 0, T b=(T) 0, double rz=1.0, int *rn=NULL)
Definition ExGdata.h:114
T * gp
グラフィックデータへのポインタ.
Definition Gdata.h:81
double wNowZ
ペンの現地点の z成分(ワールド座標系)
Definition Gdata.h:104
double wZeroX
スクリーン座標系の原点に対するワールド座標系の x成分.
Definition Gdata.h:99
int color
データのカラータイプ
Definition Gdata.h:89
T base
画措置の底上げの値.
Definition Gdata.h:83
double wZeroY
スクリーン座標系の原点に対するワールド座標系の y成分.
Definition Gdata.h:100
void init(void)
グラフィックデータは解放しない
Definition Gdata.h:167
int zs
zサイズ. 4Byte. 2Dの場合は 1.
Definition Gdata.h:80
double wRateY
ワールド座標系の y成分1ドットに対するスクリーン座標系のドット数.
Definition Gdata.h:97
T max
画素値の最大値
Definition Gdata.h:87
double wZeroZ
スクリーン座標系の原点に対するワールド座標系の z成分.
Definition Gdata.h:101
T min
画素値の最小値
Definition Gdata.h:88
double wRateZ
ワールド座標系の z成分1ドットに対するスクリーン座標系のドット数.
Definition Gdata.h:98
double wNowX
ペンの現地点の x成分(ワールド座標系)
Definition Gdata.h:102
double norm
規格化定数.フィルタのときに使用.
Definition Gdata.h:93
int xs
xサイズ. 4Byte.
Definition Gdata.h:78
int state
エラー制御
Definition Gdata.h:90
double RZxy
Z軸の歪.Z軸の間隔を 1とした XY軸の間隔.(X or Y)/Z.
Definition Gdata.h:92
T zero
画素値のゼロ位.
Definition Gdata.h:82
void set(RBound< int > rb, T v=(T) 0, T b=(T) 0, double rz=1.0)
Definition Gdata.h:207
bool isNull(void)
グラフィックデータを持っていないか?
Definition Gdata.h:194
RBound< int > rbound
画像の境界情報
Definition Gdata.h:91
int ys
yサイズ. 4Byte.
Definition Gdata.h:79
double wNowY
ペンの現地点の y成分(ワールド座標系)
Definition Gdata.h:103
void getm(int x, int y, int z=1, T v=(T) 0)
グラフィックメモリを獲得する
Definition Gdata.h:250
double wRateX
ワールド座標系の x成分1ドットに対するスクリーン座標系のドット数.
Definition Gdata.h:96
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
unsigned char uByte
1Byte
Definition common.h:332
#define WIN_DD_NULL
Definition common.h:96
Definition Brep.h:29
bool isNull(void *p)
Definition common++.h:24
unsigned int lsize
Size of Graphics Data (byte unit)
Definition gheader.h:133
uByte * grptr
Pointer to Data.
Definition gheader.h:138
int ysize
Height of Graphics.
Definition gheader.h:129
int xsize
Width of Graphics.
Definition gheader.h:128
#define PRINT_MESG(...)
環境依存用の出力関数.MS Windows用は未実装
Definition tools.h:469
#define DEBUG_MODE
Definition tools.h:502