-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMAPaintUndoDomain.c
477 lines (407 loc) · 11.1 KB
/
MAPaintUndoDomain.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
#if defined(__GNUC__)
#ident "University of Edinburgh $Id$"
#else
static char _MAPaintUndoDomain_c[] = "University of Edinburgh $Id$";
#endif
/*!
* \file MAPaintUndoDomain.c
* \author Richard Baldock
* \date April 2009
* \version $Id$
* \par
* Address:
* MRC Human Genetics Unit,
* MRC Institute of Genetics and Molecular Medicine,
* University of Edinburgh,
* Western General Hospital,
* Edinburgh, EH4 2XU, UK.
* \par
* Copyright (C), [2012],
* The University Court of the University of Edinburgh,
* Old College, Edinburgh, UK.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be
* useful but WITHOUT ANY WARRANTY; without even the implied
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public
* License along with this program; if not, write to the Free
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
* \ingroup MAPaint
* \brief
*/
#include <stdio.h>
#include <stdlib.h>
#include <MAPaint.h>
#define MAPAINT_UNDO_DEPTH 32;
static int undoListLength=0, undoDomainsFlag;
static int undoListCurrent, undoListBase;
static int redoListLength=0, redoDomainsFlag;
static int redoListCurrent, redoListBase;
static WlzObject ***undoDomainList=NULL;
static WlzObject ***redoDomainList=NULL;
static void redisplayDomains(
ThreeDViewStruct *view_struct);
void initUndoList(
int depth)
{
int i;
/* if initialised do nothing */
if( undoListLength ){
return;
}
/* set the undo depth */
if( depth > 0 ){
undoListLength = depth;
}
else {
undoListLength = MAPAINT_UNDO_DEPTH;
}
redoListLength = undoListLength;
/* allocate space for object pointers - initialised to NULL */
if((undoDomainList = (WlzObject ***) AlcCalloc(undoListLength,
sizeof(WlzObject **)))){
if((undoDomainList[0] = (WlzObject **) AlcCalloc(undoListLength * 33,
sizeof(WlzObject *)))){
for(i=1; i < undoListLength; i++){
undoDomainList[i] = undoDomainList[i-1] + 33;
}
}
else {
AlcFree(undoDomainList);
undoDomainList = NULL;
undoListLength = 0;
MAPaintReportWlzError(globals.topl, "initUndoList", WLZ_ERR_MEM_ALLOC);
return;
}
}
else {
MAPaintReportWlzError(globals.topl, "initUndoList", WLZ_ERR_MEM_ALLOC);
return;
}
if((redoDomainList = (WlzObject ***) AlcCalloc(redoListLength,
sizeof(WlzObject **)))){
if((redoDomainList[0] = (WlzObject **) AlcCalloc(redoListLength * 33,
sizeof(WlzObject *)))){
for(i=1; i < redoListLength; i++){
redoDomainList[i] = redoDomainList[i-1] + 33;
}
}
else {
AlcFree(redoDomainList);
redoDomainList = NULL;
redoListLength = 0;
MAPaintReportWlzError(globals.topl, "initUndoList", WLZ_ERR_MEM_ALLOC);
return;
}
}
else {
MAPaintReportWlzError(globals.topl, "initUndoList", WLZ_ERR_MEM_ALLOC);
return;
}
/* set the circular buffer pointers */
undoListCurrent = 0;
undoListBase = 0;
undoDomainsFlag = 0;
redoListCurrent = 0;
redoListBase = 0;
redoDomainsFlag = 0;
return;
}
void freeUndoList(void)
{
if( undoDomainList ){
AlcFree((void *) undoDomainList[0]);
AlcFree((void *) undoDomainList);
}
undoDomainList = NULL;
undoListLength = 0;
if( redoDomainList ){
AlcFree((void *) redoDomainList[0]);
AlcFree((void *) redoDomainList);
}
redoDomainList = NULL;
redoListLength = 0;
return;
}
static void _clearUndoDomains(void)
{
int i, j;
WlzErrorNum errNum=WLZ_ERR_NONE;
for(i=0; i < undoListLength; i++){
for(j=0; j < 33; j++){
if( undoDomainList[i][j] ){
if((errNum = WlzFreeObj(undoDomainList[i][j])) != WLZ_ERR_NONE){
break;
}
undoDomainList[i][j] = NULL;
}
}
}
undoListCurrent = 0;
undoListBase = 0;
undoDomainsFlag = 0;
if( errNum != WLZ_ERR_NONE ){
MAPaintReportWlzError(globals.topl, "_clearUndoDomains", errNum);
}
return;
}
static void _clearRedoDomains(void)
{
int i, j;
WlzErrorNum errNum=WLZ_ERR_NONE;
for(i=0; i < redoListLength; i++){
for(j=0; j < 33; j++){
if( redoDomainList[i][j] ){
if((errNum = WlzFreeObj(redoDomainList[i][j])) != WLZ_ERR_NONE){
break;
}
redoDomainList[i][j] = NULL;
}
}
}
redoListCurrent = 0;
redoListBase = 0;
redoDomainsFlag = 0;
if( errNum != WLZ_ERR_NONE ){
MAPaintReportWlzError(globals.topl, "_clearUndoDomains", errNum);
}
return;
}
void clearUndoDomains(void)
{
_clearUndoDomains();
_clearRedoDomains();
return;
}
static void _pushUndoDomains(
ThreeDViewStruct *view_struct)
{
int j;
WlzErrorNum errNum=WLZ_ERR_NONE;
/* push current domains onto the undo list */
/* calculate the next current index
if current == base and check undoDomainsFlag
else increment current, if new == base increment base
*/
if( (undoListCurrent != undoListBase) || undoDomainsFlag ){
undoListCurrent++;
undoListCurrent %= undoListLength;
}
if( (undoListCurrent == undoListBase) && undoDomainsFlag ){
undoListBase++;
undoListBase %= undoListLength;
}
/* free any domains at current pointer and assign */
for(j=0; (j < 33) && (errNum == WLZ_ERR_NONE); j++){
if( undoDomainList[undoListCurrent][j] ){
errNum = WlzFreeObj(undoDomainList[undoListCurrent][j]);
}
undoDomainList[undoListCurrent][j] = NULL;
if( view_struct->curr_domain[j] ){
undoDomainList[undoListCurrent][j] =
WlzAssignObject(view_struct->curr_domain[j], NULL);
}
}
undoDomainsFlag = 1;
if( errNum != WLZ_ERR_NONE ){
MAPaintReportWlzError(globals.topl, "_pushUndoDomains", errNum);
}
return;
}
void pushUndoDomains(
ThreeDViewStruct *view_struct)
{
/* push the domains */
_pushUndoDomains( view_struct );
/* clear the redo list */
_clearRedoDomains();
return;
}
static void pushRedoDomains(
ThreeDViewStruct *view_struct)
{
int j;
WlzErrorNum errNum=WLZ_ERR_NONE;
/* push current domains onto the redo list */
/* calculate the next current index
if current == base and base domains == NULL - no increment
else increment current, if new == base increment base
*/
if( (redoListCurrent != redoListBase) || redoDomainsFlag ){
redoListCurrent++;
redoListCurrent %= redoListLength;
}
if( (redoListCurrent == redoListBase) && redoDomainsFlag ){
redoListBase++;
redoListBase %= redoListLength;
}
/* free any domains at current pointer and assign */
for(j=0; (j < 33) && (errNum == WLZ_ERR_NONE); j++){
if( redoDomainList[redoListCurrent][j] ){
errNum = WlzFreeObj(redoDomainList[redoListCurrent][j]);
}
redoDomainList[redoListCurrent][j] = NULL;
if( view_struct->curr_domain[j] ){
redoDomainList[redoListCurrent][j] =
WlzAssignObject(view_struct->curr_domain[j], NULL);
}
}
redoDomainsFlag = 1;
if( errNum != WLZ_ERR_NONE ){
MAPaintReportWlzError(globals.topl, "pushRedoDomains", errNum);
}
return;
}
void UndoDomains(
ThreeDViewStruct *view_struct)
{
int j;
WlzErrorNum errNum=WLZ_ERR_NONE;
/* if no undo domains do nothing */
if( !undoDomainsFlag ){
return;
}
/* push current domains onto redo list */
pushRedoDomains( view_struct );
/* clear current and put top of undo list back as current */
for(j=0; (j < 33) && (errNum == WLZ_ERR_NONE); j++){
if( view_struct->curr_domain[j] ){
errNum = WlzFreeObj(view_struct->curr_domain[j]);
}
view_struct->curr_domain[j] = undoDomainList[undoListCurrent][j];
undoDomainList[undoListCurrent][j] = NULL;
}
/* decrement the undo pointer */
if( errNum == WLZ_ERR_NONE ){
if( undoListCurrent != undoListBase ){
undoListCurrent--;
if( undoListCurrent < 0 ){
undoListCurrent = undoListLength - 1;
}
}
else {
undoDomainsFlag = 0;
}
}
/* redisplay the view */
redisplayDomains( view_struct );
if( errNum != WLZ_ERR_NONE ){
MAPaintReportWlzError(globals.topl, "UndoDomains", errNum);
}
return;
}
void RedoDomains(
ThreeDViewStruct *view_struct)
{
int j;
WlzErrorNum errNum=WLZ_ERR_NONE;
/* if no redo domains do nothing */
if( !redoDomainsFlag ){
return;
}
/* push current domains onto undo list */
_pushUndoDomains( view_struct );
/* clear current and put top of redo list back as current */
for(j=0; (j < 33) && (errNum == WLZ_ERR_NONE); j++){
if( view_struct->curr_domain[j] ){
errNum = WlzFreeObj(view_struct->curr_domain[j]);
}
view_struct->curr_domain[j] = redoDomainList[redoListCurrent][j];
redoDomainList[redoListCurrent][j] = NULL;
}
/* decrement the redo pointer */
if( errNum == WLZ_ERR_NONE ){
if( redoListCurrent != redoListBase ){
redoListCurrent--;
if( redoListCurrent < 0 ){
redoListCurrent = redoListLength - 1;
}
}
else {
redoDomainsFlag = 0;
}
}
/* redisplay the view */
redisplayDomains( view_struct );
if( errNum != WLZ_ERR_NONE ){
MAPaintReportWlzError(globals.topl, "RedoDomains", errNum);
}
return;
}
static void redisplayDomains(
ThreeDViewStruct *view_struct)
{
WlzObject *obj;
int j;
WlzErrorNum errNum=WLZ_ERR_NONE;
/* check the view object */
if( view_struct->view_object == NULL ){
if((obj = WlzGetSectionFromObject(globals.orig_obj,
view_struct->wlzViewStr,
WLZ_INTERPOLATION_NEAREST, &errNum))){
view_struct->view_object = WlzAssignObject(obj, NULL);
}
else {
MAPaintReportWlzError(globals.topl, "redisplayDomains", errNum);
return;
}
}
/* clear the painted object */
setGreyValuesFromObject(view_struct->painted_object,
view_struct->view_object);
/* clear the view current domains and copy in the new */
for(j=1; j < 33; j++){
if( view_struct->curr_domain[j] == NULL ){
continue;
}
/* paint in the domain */
if( j > globals.cmapstruct->num_overlays ){
set_grey_values_from_domain(view_struct->curr_domain[j],
view_struct->painted_object,
globals.cmapstruct->ovly_cols[j],
255);
}
else
{
set_grey_values_from_domain(view_struct->curr_domain[j],
view_struct->painted_object,
globals.cmapstruct->ovly_cols[j],
globals.cmapstruct->ovly_planes);
}
}
/* redisplay the section */
redisplay_view_cb(view_struct->canvas, (XtPointer) view_struct,
NULL);
return;
}
void undoCb(
Widget widget,
XtPointer client_data,
XtPointer call_data)
{
ThreeDViewStruct *view_struct = (ThreeDViewStruct *) client_data;
if( paint_key == view_struct ){
UndoDomains(view_struct);
}
return;
}
void redoCb(
Widget widget,
XtPointer client_data,
XtPointer call_data)
{
ThreeDViewStruct *view_struct = (ThreeDViewStruct *) client_data;
if( paint_key == view_struct ){
RedoDomains(view_struct);
}
return;
}