JunkBox_Lib++ (for Windows) 1.10.1
Loading...
Searching...
No Matches
ExGdata.cpp
Go to the documentation of this file.
1
7#include "ExGdata.h"
8
9using namespace jbxl;
10
11
13// ExCmnHead
14//
15
16//
18{
19 init_CmnHead(this);
20 dbyte = 0;
21 state = 0;
22 refno = NULL;
23}
24
25
26//
27void ExCmnHead::set(RBound<int> rb, int d, int* rn) {
28 set(rb.xmax-rb.xmin+1, rb.ymax-rb.ymin+1, rb.zmax-rb.zmin+1, d, rn);
29 return;
30}
31
32
33//
34void ExCmnHead::set(int x, int y, int z, int d, int* rn)
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}
48
49
50//
51void ExCmnHead::getm(int x, int y, int z, int d)
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}
75
76
77//
79{
80 refno = rn;
81 if (refno!=NULL) {
82 if (grptr==NULL) *refno = -1;
83 else *refno = 1;
84 }
85}
86
87
88//
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}
103
104
113void ExCmnHead::mfree(bool azero)
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}
131
132
142{
143 if (refno==NULL) {
144 if (!isNull()) {
145 free_CmnHead(this);
146 }
147 }
148 else {
149 mfree();
150 }
151 return;
152}
153
154
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}
176
177
178
180// ExCmnHead オペレータ
181//
182
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}
234
235
236//
237//
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}
271
メモリ管理機能付グラフィックデータ定義用ヘッダ
void getm(int x, int y=1, int z=1, int d=8)
グラフィックメモリを獲得する.
Definition ExGdata.cpp:51
ExCmnHead operator=(ExCmnHead &m)
Definition ExGdata.cpp:183
void init(void)
Definition ExGdata.cpp:17
void mfree(bool azero=false)
グラフィックデータを開放する
Definition ExGdata.cpp:113
void set(RBound< int > rb, int d=8, int *rn=NULL)
Definition ExGdata.cpp:27
void free(void)
グラフィックデータを開放する(メモリ管理なし兼用)
Definition ExGdata.cpp:141
bool isNull(void)
グラフィックデータを持いないか?
Definition ExGdata.cpp:89
void ffree(void)
グラフィックデータを強制開放する
Definition ExGdata.cpp:160
void setRefer(int *rn)
Definition ExGdata.cpp:78
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
#define JBXL_GRAPH_MEMORY_ERROR
メモリエラー
Definition jbxl_state.h:170
Definition Brep.h:29
void init_CmnHead(CmnHead *hd)
Definition Gdata.cpp:42
void free_CmnHead(CmnHead *hd)
Definition Gdata.cpp:25
unsigned int lsize
Size of Graphics Data (byte unit)
Definition gheader.h:133
uByte * buf
Ture Header buffer
Definition gheader.h:137
int zsize
For 3D Data (or Color)
Definition gheader.h:130
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
uByte * grptr
Pointer to Data.
Definition gheader.h:138
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
#define PRINT_MESG(...)
環境依存用の出力関数.MS Windows用は未実装
Definition tools.h:469
#define DEBUG_MODE
Definition tools.h:502