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 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872
|
/*
* $Header: /cvsroot/xtrkcad-fork/xtrkcad/4.0.0/bin/cundo.c,v 1.1.1.1 2005/12/07 15:46:54 rc-flyer Exp $
*/
/* XTrkCad - Model Railroad CAD
* Copyright (C) 2005 Dave Bullis
*
* 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include <stdlib.h>
#include <time.h>
#include <stdarg.h>
#include <errno.h>
#include "track.h"
#include "trackx.h"
/*****************************************************************************
*
* UNDO
*
*/
static int log_undo;
#define UNDO_STACK_SIZE (10)
typedef struct {
wIndex_t modCnt;
wIndex_t newCnt;
wIndex_t delCnt;
wIndex_t trackCount;
track_p newTrks;
long undoStart;
long undoEnd;
long redoStart;
long redoEnd;
BOOL_T needRedo;
track_p * oldTail;
track_p * newTail;
char * label;
} undoStack_t, *undoStack_p;
static undoStack_t undoStack[UNDO_STACK_SIZE];
static wIndex_t undoHead = -1;
static BOOL_T undoActive = FALSE;
static int doCount = 0;
static int undoCount = 0;
static char ModifyOp = 1;
static char DeleteOp = 2;
static BOOL_T recordUndo = 1;
#define UASSERT( ARG, VAL ) \
if (!(ARG)) return UndoFail( #ARG, VAL, __FILE__, __LINE__ )
#define INC_UNDO_INX( INX ) {\
if (++INX >= UNDO_STACK_SIZE) \
INX = 0; \
}
#define DEC_UNDO_INX( INX ) {\
if (--INX < 0) \
INX = UNDO_STACK_SIZE-1; \
}
#define BSTREAM_SIZE (4096)
typedef char streamBlocks_t[BSTREAM_SIZE];
typedef streamBlocks_t *streamBlocks_p;
typedef struct {
dynArr_t stream_da;
long startBInx;
long end;
long curr;
} stream_t;
typedef stream_t *stream_p;
static stream_t undoStream;
static stream_t redoStream;
static BOOL_T needAttachTrains = FALSE;
void UndoResume( void )
{
undoActive = TRUE;
}
void UndoSuspend( void )
{
undoActive = FALSE;
}
static void DumpStream( FILE * outf, stream_p stream, char * name )
{
long binx;
long i, j;
long off;
streamBlocks_p blk;
int zeroCnt;
static char zeros[16] = { 0 };
fprintf( outf, "Dumping %s\n", name );
off = stream->startBInx*BSTREAM_SIZE;
zeroCnt = 0;
for ( binx=0; binx<stream->stream_da.cnt; binx++ ) {
blk = DYNARR_N( streamBlocks_p, stream->stream_da, binx );
for ( i=0; i<BSTREAM_SIZE; i+= 16 ) {
if ( memcmp( &((*blk)[i]), zeros, 16 ) == 0 ) {
zeroCnt++;
} else {
if ( zeroCnt == 2 )
fprintf( outf, "%6.6lx 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n", off-16 );
zeroCnt = 0;
}
if ( zeroCnt <= 1 ) {
fprintf( outf, "%6.6lx ", off );
for ( j=0; j<16; j++ ) {
fprintf( outf, "%2.2x ", (unsigned char)((*blk)[i+j]) );
}
fprintf( outf, "\n" );
} else if ( zeroCnt == 3 ) {
fprintf( outf, "%6.6lx .. .. .. .. .. .. .. .. .. .. .. .. .. .. .. ..\n", off );
}
off += 16;
}
}
if ( zeroCnt > 2 )
fprintf( outf, "%6.6lx 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00\n", off-16 );
}
static BOOL_T UndoFail( char * cause, long val, char * fileName, int lineNumber )
{
int inx, cnt;
undoStack_p us;
FILE * outf;
time_t clock;
char temp[STR_SIZE];
NoticeMessage( MSG_UNDO_ASSERT, "Ok", NULL, fileName, lineNumber, val, val, cause );
sprintf( temp, "%s%s%s", workingDir, FILE_SEP_CHAR, sUndoF );
outf = fopen( temp, "a+" );
if ( outf == NULL ) {
NoticeMessage( MSG_OPEN_FAIL, "Ok", NULL, "Undo Trace", temp, strerror(errno) );
return FALSE;
}
time( &clock );
fprintf(outf, "\nUndo Assert: %s @ %s:%d (%s)\n", cause, fileName, lineNumber, ctime(&clock) );
fprintf(outf, "Val = %ld(%lx)\n", val, val );
fprintf(outf, "to_first=%lx, to_last=%lx\n", (long)to_first, (long)to_last );
fprintf(outf, "undoHead=%d, doCount=%d, undoCount=%d\n", undoHead, doCount, undoCount );
if (undoHead >= 0 && undoHead < UNDO_STACK_SIZE)
inx=undoHead;
else
inx = 0;
for (cnt=0; cnt<UNDO_STACK_SIZE; cnt++) {
us = &undoStack[inx];
fprintf( outf, "US[%d]: M:%d N:%d D:%d TC:%d NT:%lx OT:%lx NT:%lx US:%lx UE:%lx RS:%lx RE:%lx NR:%d\n",
inx, us->modCnt, us->newCnt, us->delCnt, us->trackCount,
(long)us->newTrks, (long)us->oldTail, (long)us->newTail,
us->undoStart, us->undoEnd, us->redoStart, us->redoEnd, us->needRedo );
INC_UNDO_INX(inx);
}
fprintf( outf, "Undo: SBI:%ld E:%lx C:%lx SC:%d SM:%d\n",
undoStream.startBInx, undoStream.end, undoStream.curr, undoStream.stream_da.cnt, undoStream.stream_da.max );
fprintf( outf, "Redo: SBI:%ld E:%lx C:%lx SC:%d SM:%d\n",
redoStream.startBInx, redoStream.end, redoStream.curr, redoStream.stream_da.cnt, redoStream.stream_da.max );
DumpStream( outf, &undoStream, "undoStream" );
DumpStream( outf, &redoStream, "redoStream" );
Rdump(outf);
fclose( outf );
UndoClear();
UndoStart( "undoFail", "undoFail" );
return FALSE;
}
BOOL_T ReadStream( stream_t * stream, void * ptr, int size )
{
long binx, boff, brem;
streamBlocks_p blk;
if ( stream->curr+size > stream->end ) {
UndoFail( "Overrun on stream", (long)(stream->curr+size), __FILE__, __LINE__ );
return FALSE;
}
LOG( log_undo, 5, ( "ReadStream( , %lx, %d ) %ld %ld %ld\n", (long)ptr, size, stream->startBInx, stream->curr, stream->end ) )
binx = stream->curr/BSTREAM_SIZE;
boff = stream->curr%BSTREAM_SIZE;
stream->curr += size;
binx -= stream->startBInx;
brem = BSTREAM_SIZE - boff;
while ( brem < size ) {
UASSERT( binx>=0 && binx < stream->stream_da.cnt, binx );
blk = DYNARR_N( streamBlocks_p, stream->stream_da, binx );
memcpy( ptr, &(*blk)[boff], (size_t)brem );
ptr = (char*)ptr + brem;
size -= (int)brem;
binx++;
boff = 0;
brem = BSTREAM_SIZE;
}
if (size) {
UASSERT( binx>=0 && binx < stream->stream_da.cnt, binx );
blk = DYNARR_N( streamBlocks_p, stream->stream_da, binx );
memcpy( ptr, &(*blk)[boff], size );
}
return TRUE;
}
BOOL_T WriteStream( stream_p stream, void * ptr, int size )
{
long binx, boff, brem;
streamBlocks_p blk;
LOG( log_undo, 5, ( "WriteStream( , %lx, %d ) %ld %ld %ld\n", (long)ptr, size, stream->startBInx, stream->curr, stream->end ) )
if (size == 0)
return TRUE;
binx = stream->end/BSTREAM_SIZE;
boff = stream->end%BSTREAM_SIZE;
stream->end += size;
binx -= stream->startBInx;
brem = BSTREAM_SIZE - boff;
while ( size ) {
if (boff==0) {
UASSERT( binx == stream->stream_da.cnt, binx );
DYNARR_APPEND( streamBlocks_p, stream->stream_da, 10 );
blk = (streamBlocks_p)MyMalloc( sizeof *blk );
DYNARR_N( streamBlocks_p, stream->stream_da, binx ) = blk;
} else {
UASSERT( binx == stream->stream_da.cnt-1, binx );
blk = DYNARR_N( streamBlocks_p, stream->stream_da, binx );
}
if (size > brem) {
memcpy( &(*blk)[boff], ptr, (size_t)brem );
ptr = (char*)ptr + brem;
size -= (size_t)brem;
binx++;
boff = 0;
brem = BSTREAM_SIZE;
} else {
memcpy( &(*blk)[boff], ptr, size );
break;
}
}
return TRUE;
}
BOOL_T TrimStream( stream_p stream, long off )
{
long binx, cnt, inx;
streamBlocks_p blk;
LOG( log_undo, 3, ( "TrimStream( , %ld )\n", off ) )
binx = off/BSTREAM_SIZE;
cnt = binx-stream->startBInx;
if (recordUndo)
Rprintf("Trim(%ld) %ld blocks (out of %d)\n", off, cnt, stream->stream_da.cnt);
UASSERT( cnt >= 0 && cnt <= stream->stream_da.cnt, cnt );
if (cnt == 0)
return TRUE;
for (inx=0; inx<cnt; inx++) {
blk = DYNARR_N( streamBlocks_p, stream->stream_da, inx );
MyFree( blk );
}
for (inx=cnt; inx<stream->stream_da.cnt; inx++ ) {
DYNARR_N( streamBlocks_p, stream->stream_da, inx-cnt ) = DYNARR_N( streamBlocks_p, stream->stream_da, inx );
}
stream->startBInx = binx;
stream->stream_da.cnt -= (wIndex_t)cnt;
UASSERT( stream->stream_da.cnt >= 0, stream->stream_da.cnt );
return TRUE;
}
void ClearStream( stream_p stream )
{
long inx;
streamBlocks_p blk;
for (inx=0; inx<stream->stream_da.cnt; inx++) {
blk = DYNARR_N( streamBlocks_p, stream->stream_da, inx );
MyFree( blk );
}
stream->stream_da.cnt = 0;
stream->startBInx = stream->end = stream->curr = 0;
}
BOOL_T TruncateStream( stream_p stream, long off )
{
long binx, boff, cnt, inx;
streamBlocks_p blk;
LOG( log_undo, 3, ( "TruncateStream( , %ld )\n", off ) )
binx = off/BSTREAM_SIZE;
boff = off%BSTREAM_SIZE;
if (boff!=0)
binx++;
binx -= stream->startBInx;
cnt = stream->stream_da.cnt-binx;
if (recordUndo)
Rprintf("Truncate(%ld) %ld blocks (out of %d)\n", off, cnt, stream->stream_da.cnt);
UASSERT( cnt >= 0 && cnt <= stream->stream_da.cnt, cnt );
if (cnt == 0)
return TRUE;
for (inx=binx; inx<stream->stream_da.cnt; inx++) {
blk = DYNARR_N( streamBlocks_p, stream->stream_da, inx );
MyFree( blk );
}
stream->stream_da.cnt = (wIndex_t)binx;
stream->end = off;
UASSERT( stream->stream_da.cnt >= 0, stream->stream_da.cnt );
return TRUE;
}
BOOL_T WriteObject( stream_p stream, char op, track_p trk )
{
if (!WriteStream( stream, &op, sizeof op ) ||
!WriteStream( stream, &trk, sizeof trk ) ||
!WriteStream( stream, trk, sizeof *trk ) ||
!WriteStream( stream, trk->endPt, trk->endCnt * sizeof trk->endPt[0] ) ||
!WriteStream( stream, trk->extraData, trk->extraSize ) ) {
return FALSE;
}
return TRUE;
}
static BOOL_T ReadObject( stream_p stream, BOOL_T needRedo )
{
track_p trk;
track_t tempTrk;
char op;
if (!ReadStream( stream, &op, sizeof op ))
return FALSE;
if (!ReadStream( stream, &trk, sizeof trk ))
return FALSE;
if (needRedo) {
if (!WriteObject( &redoStream, op, trk ))
return FALSE;
}
if (!ReadStream( stream, &tempTrk, sizeof tempTrk ))
return FALSE;
if (tempTrk.endCnt != trk->endCnt)
tempTrk.endPt = MyRealloc( trk->endPt, tempTrk.endCnt * sizeof tempTrk.endPt[0] );
else
tempTrk.endPt = trk->endPt;
if (!ReadStream( stream, tempTrk.endPt, tempTrk.endCnt * sizeof tempTrk.endPt[0] ))
return FALSE;
if (tempTrk.extraSize != trk->extraSize)
tempTrk.extraData = MyRealloc( trk->extraData, tempTrk.extraSize );
else
tempTrk.extraData = trk->extraData;
if (!ReadStream( stream, tempTrk.extraData, tempTrk.extraSize ))
return FALSE;
if (recordUndo) Rprintf( "Restore T%D(%d) @ %lx\n", trk->index, tempTrk.index, (long)trk );
tempTrk.index = trk->index;
tempTrk.next = trk->next;
if ( (tempTrk.bits&TB_CARATTACHED) != 0 )
needAttachTrains = TRUE;
tempTrk.bits &= ~TB_TEMPBITS;
*trk = tempTrk;
if (!trk->deleted)
ClrTrkElev( trk );
return TRUE;
}
static void RedrawInStream( stream_p stream, long start, long end, BOOL_T draw )
{
char op;
track_p trk;
track_t tempTrk;
stream->curr = start;
while (stream->curr < end ) {
if (!ReadStream( stream, &op, sizeof op ) ||
!ReadStream( stream, &trk, sizeof trk ) ||
!ReadStream( stream, &tempTrk, sizeof tempTrk ) )
return;
stream->curr += tempTrk.extraSize + tempTrk.endCnt*sizeof tempTrk.endPt[0];
if (!trk->deleted) {
if (draw)
DrawNewTrack( trk );
else
UndrawNewTrack( trk );
}
}
}
static BOOL_T DeleteInStream( stream_p stream, long start, long end )
{
char op;
track_p trk;
track_p *ptrk;
track_t tempTrk;
int delCount = 0;
LOG( log_undo, 3, ( "DeleteInSteam( , %ld, %ld )\n", start, end ) )
stream->curr = start;
while (stream->curr < end ) {
if (!ReadStream( stream, &op, sizeof op ))
return FALSE;
UASSERT( op == ModifyOp || op == DeleteOp, (long)op );
if (!ReadStream( stream, &trk, sizeof trk ) ||
!ReadStream( stream, &tempTrk, sizeof tempTrk ) )
return FALSE;
stream->curr += tempTrk.extraSize + tempTrk.endCnt*sizeof tempTrk.endPt[0];
if (op == DeleteOp) {
if (recordUndo) Rprintf( " Free T%D(%d) @ %lx\n", trk->index, tempTrk.index, (long)trk );
UASSERT( IsTrackDeleted(trk), (long)trk );
trk->index = -1;
delCount++;
}
}
if (delCount) {
for (ptrk=&to_first; *ptrk; ) {
if ((*ptrk)->index == -1) {
trk = *ptrk;
UASSERT( IsTrackDeleted(trk), (long)trk );
*ptrk = trk->next;
FreeTrack(trk);
} else {
ptrk = &(*ptrk)->next;
}
}
to_last = ptrk;
}
return TRUE;
}
static BOOL_T SetDeleteOpInStream( stream_p stream, long start, long end, track_p trk0 )
{
char op;
track_p trk;
track_t tempTrk;
long binx, boff;
streamBlocks_p blk;
stream->curr = start;
while (stream->curr < end) {
binx = stream->curr/BSTREAM_SIZE;
binx -= stream->startBInx;
boff = stream->curr%BSTREAM_SIZE;
if (!ReadStream( stream, &op, sizeof op ))
return FALSE;
UASSERT( op == ModifyOp || op == DeleteOp, (long)op );
if (!ReadStream( stream, &trk, sizeof trk ) )
return FALSE;
if (trk == trk0) {
UASSERT( op == ModifyOp, (long)op );
blk = DYNARR_N( streamBlocks_p, stream->stream_da, binx );
memcpy( &(*blk)[boff], &DeleteOp, sizeof DeleteOp );
return TRUE;
}
if (!ReadStream( stream, &tempTrk, sizeof tempTrk ))
return FALSE;
stream->curr += tempTrk.extraSize + tempTrk.endCnt*sizeof tempTrk.endPt[0];
}
UASSERT( "Cannot find undo record to convert to DeleteOp", 0 );
return FALSE;
}
static void SetButtons( BOOL_T undoSetting, BOOL_T redoSetting )
{
static BOOL_T undoButtonEnabled = FALSE;
static BOOL_T redoButtonEnabled = FALSE;
int index;
static char undoHelp[STR_SHORT_SIZE];
static char redoHelp[STR_SHORT_SIZE];
if (undoButtonEnabled != undoSetting) {
wControlActive( (wControl_p)undoB, undoSetting );
undoButtonEnabled = undoSetting;
}
if (redoButtonEnabled != redoSetting) {
wControlActive( (wControl_p)redoB, redoSetting );
redoButtonEnabled = redoSetting;
}
if (undoSetting) {
sprintf( undoHelp, "Undo: %s", undoStack[undoHead].label );
wControlSetBalloonText( (wControl_p)undoB, undoHelp );
} else {
wControlSetBalloonText( (wControl_p)undoB, "Undo last command" );
}
if (redoSetting) {
index = undoHead;
INC_UNDO_INX(index);
sprintf( redoHelp, "Redo: %s", undoStack[index].label );
wControlSetBalloonText( (wControl_p)redoB, redoHelp );
} else {
wControlSetBalloonText( (wControl_p)redoB, "Redo last undo" );
}
}
static track_p * FindParent( track_p trk, int lineNum )
{
track_p *ptrk;
ptrk = &to_first;
while ( 1 ) {
if ( *ptrk == trk )
return ptrk;
if (*ptrk == NULL)
break;
ptrk = &(*ptrk)->next;
}
UndoFail( "Cannot find trk on list", (long)trk, "cundo.c", lineNum );
return NULL;
}
static int undoIgnoreEmpty = 0;
void UndoStart(
char * label,
char * format,
... )
{
static char buff[STR_SIZE];
va_list ap;
track_p trk, next;
undoStack_p us, us1;
int inx;
int usp;
LOG( log_undo, 1, ( "UndoStart(%s) [%d] d:%d u:%d us:%ld\n", label, undoHead, doCount, undoCount, undoStream.end ) )
if (recordUndo) {
va_start( ap, format );
vsprintf( buff, format, ap );
va_end( ap );
Rprintf( "Start(%s)[%d] d:%d u:%d us:%ld\n", buff, undoHead, doCount, undoCount, undoStream.end );
}
if ( undoHead >= 0 ) {
us = &undoStack[undoHead];
if ( us->modCnt == 0 && us->delCnt == 0 && us->newCnt == 0 ) {
#ifndef WINDOWS
#ifdef DEBUG
printf( "undoStart noop: %s - %s\n", us->label?us->label:"<>", label?label:"<>" );
#endif
#endif
if ( undoIgnoreEmpty ) {
us->label = label;
return;
}
}
}
INC_UNDO_INX(undoHead);
us = &undoStack[undoHead];
changed++;
SetWindowTitle();
if (doCount == UNDO_STACK_SIZE) {
if (recordUndo) Rprintf( " Wrapped N:%d M:%d D:%d\n", us->newCnt, us->modCnt, us->delCnt );
/* wrapped around stack */
/* if track saved in undoStream is deleted then really deleted since
we can't get it back */
if (!DeleteInStream( &undoStream, us->undoStart, us->undoEnd ))
return;
/* strip off unused head of stream */
if (!TrimStream( &undoStream, us->undoEnd ))
return;
} else if (undoCount != 0) {
if (recordUndo) Rprintf( " Undid N:%d M:%d D:%d\n", us->newCnt, us->modCnt, us->delCnt );
/* reusing an undid entry */
/* really delete all new tracks since this point */
for( inx=0,usp = undoHead; inx<undoCount; inx++ ) {
us1 = &undoStack[usp];
if (recordUndo) Rprintf(" U[%d] N:%d\n", usp, us1->newCnt );
for (trk=us1->newTrks; trk; trk=next) {
if (recordUndo) Rprintf( " Free T%d @ %lx\n", trk->index, (long)trk );
/*ASSERT( IsTrackDeleted(trk) );*/
next = trk->next;
FreeTrack( trk );
}
INC_UNDO_INX(usp);
}
/* strip off unused tail of stream */
if (!TruncateStream( &undoStream, us->undoStart ))
return;
}
us->label = label;
us->modCnt = 0;
us->newCnt = 0;
us->delCnt = 0;
us->undoStart = us->undoEnd = undoStream.end;
ClearStream( &redoStream );
for ( inx=0; inx<UNDO_STACK_SIZE; inx++ ) {
undoStack[inx].needRedo = TRUE;
undoStack[inx].oldTail = NULL;
undoStack[inx].newTail = NULL;
}
us->newTrks = NULL;
undoStack[undoHead].trackCount = trackCount;
undoCount = 0;
undoActive = TRUE;
for (trk=to_first; trk; trk=trk->next ) {
trk->modified = FALSE;
trk->new = FALSE;
}
if (doCount < UNDO_STACK_SIZE)
doCount++;
SetButtons( TRUE, FALSE );
}
BOOL_T UndoModify( track_p trk )
{
undoStack_p us;
if ( !undoActive ) return TRUE;
if (trk == NULL) return TRUE;
UASSERT(undoCount==0, undoCount);
UASSERT(undoHead >= 0, undoHead);
UASSERT(!IsTrackDeleted(trk), (long)trk);
if (trk->modified || trk->new)
return TRUE;
LOG( log_undo, 2, ( " UndoModify( T%d, E%d, X%ld )\n", trk->index, trk->endCnt, trk->extraSize ) )
if ( (GetTrkBits(trk)&TB_CARATTACHED)!=0 )
needAttachTrains = TRUE;
us = &undoStack[undoHead];
if (recordUndo)
Rprintf( " MOD T%d @ %lx\n", trk->index, (long)trk );
if (!WriteObject( &undoStream, ModifyOp, trk ))
return FALSE;
us->undoEnd = undoStream.end;
trk->modified = TRUE;
us->modCnt++;
return TRUE;
}
BOOL_T UndoDelete( track_p trk )
{
undoStack_p us;
if ( !undoActive ) return TRUE;
LOG( log_undo, 2, ( " UndoDelete( T%d, E%d, X%ld )\n", trk->index, trk->endCnt, trk->extraSize ) )
if ( (GetTrkBits(trk)&TB_CARATTACHED)!=0 )
needAttachTrains = TRUE;
us = &undoStack[undoHead];
if (recordUndo)
Rprintf( " DEL T%d @ %lx\n", trk->index, (long)trk );
UASSERT( !IsTrackDeleted(trk), (long)trk );
if ( trk->modified ) {
if (!SetDeleteOpInStream( &undoStream, us->undoStart, us->undoEnd, trk ))
return FALSE;
} else if ( !trk->new ) {
if (!WriteObject( &undoStream, DeleteOp, trk ))
return FALSE;
us->undoEnd = undoStream.end;
} else {
track_p * ptrk;
if (us->newTrks == trk)
us->newTrks = trk->next;
if (!(ptrk = FindParent( trk, __LINE__ )))
return FALSE;
if (trk->next == NULL) {
UASSERT( to_last == &(*ptrk)->next, (long)&(*ptrk)->next );
to_last = ptrk;
}
*ptrk = trk->next;
FreeTrack( trk );
us->newCnt--;
return TRUE;
}
trk->deleted = TRUE;
us->delCnt++;
return TRUE;
}
BOOL_T UndoNew( track_p trk )
{
undoStack_p us = &undoStack[undoHead];
if (!undoActive) return TRUE;
LOG( log_undo, 2, ( " UndoNew( T%d )\n", trk->index ) )
if (recordUndo) Rprintf( " NEW T%d @%lx\n", trk->index, (long)trk );
UASSERT(undoCount==0, undoCount);
UASSERT(undoHead >= 0, undoHead);
trk->new = TRUE;
if (us->newTrks == NULL)
us->newTrks = trk;
us->newCnt++;
return TRUE;
}
void UndoEnd( void )
{
if (recordUndo) Rprintf( "End[%d] d:%d\n", undoHead, doCount );
/*undoActive = FALSE;*/
if ( needAttachTrains ) {
AttachTrains();
needAttachTrains = FALSE;
}
UpdateAllElevations();
}
void UndoClear( void )
{
int inx;
LOG( log_undo, 2, ( " UndoClear()\n" ) )
undoActive = FALSE;
undoHead = -1;
undoCount = 0;
doCount = 0;
ClearStream( &undoStream );
ClearStream( &redoStream );
for (inx=0; inx<UNDO_STACK_SIZE; inx++) {
undoStack[inx].undoStart = undoStack[inx].undoEnd = 0;
}
SetButtons( FALSE, FALSE );
}
BOOL_T UndoUndo( void )
{
undoStack_p us;
track_p trk;
wIndex_t oldCount;
BOOL_T redrawAll;
if (doCount <= 0) {
ErrorMessage( MSG_NO_UNDO );
return FALSE;
}
ConfirmReset( FALSE );
wDrawDelayUpdate( mainD.d, TRUE );
us = &undoStack[undoHead];
LOG( log_undo, 1, ( " undoUndo[%d] d:%d u:%d N:%d M:%d D:%d\n", undoHead, doCount, undoCount, us->newCnt, us->modCnt, us->delCnt ) )
if (recordUndo) Rprintf( "Undo[%d] d:%d u:%d N:%d M:%d D:%d\n", undoHead, doCount, undoCount, us->newCnt, us->modCnt, us->delCnt );
redrawAll = (us->newCnt+us->modCnt) > incrementalDrawLimit;
if (!redrawAll) {
for (trk=us->newTrks; trk; trk=trk->next )
UndrawNewTrack( trk );
RedrawInStream( &undoStream, us->undoStart, us->undoEnd, FALSE );
}
if (us->needRedo)
us->redoStart = us->redoEnd = redoStream.end;
for (trk=us->newTrks; trk; trk=trk->next ) {
if (recordUndo) Rprintf(" Deleting New Track T%d @ %lx\n", trk->index, (long)trk );
UASSERT( !IsTrackDeleted(trk), (long)trk );
trk->deleted = TRUE;
}
if (!(us->oldTail=FindParent(us->newTrks,__LINE__)))
return FALSE;
us->newTail = to_last;
to_last = us->oldTail;
*to_last = NULL;
needAttachTrains = FALSE;
undoStream.curr = us->undoStart;
while ( undoStream.curr < us->undoEnd ) {
if (!ReadObject( &undoStream, us->needRedo ))
return FALSE;
}
if (us->needRedo)
us->redoEnd = redoStream.end;
us->needRedo = FALSE;
if ( needAttachTrains ) {
AttachTrains();
needAttachTrains = FALSE;
}
UpdateAllElevations();
if (!redrawAll)
RedrawInStream( &undoStream, us->undoStart, us->undoEnd, TRUE );
else
DoRedraw();
oldCount = trackCount;
trackCount = us->trackCount;
us->trackCount = oldCount;
InfoCount( trackCount );
doCount--;
undoCount++;
DEC_UNDO_INX( undoHead );
AuditTracks( "undoUndo" );
SelectRecount();
SetButtons( doCount>0, TRUE );
wBalloonHelpUpdate();
wDrawDelayUpdate( mainD.d, FALSE );
return TRUE;
}
BOOL_T UndoRedo( void )
{
undoStack_p us;
wIndex_t oldCount;
BOOL_T redrawAll;
track_p trk;
if (undoCount <= 0) {
ErrorMessage( MSG_NO_REDO );
return FALSE;
}
ConfirmReset( FALSE );
wDrawDelayUpdate( mainD.d, TRUE );
INC_UNDO_INX( undoHead );
us = &undoStack[undoHead];
LOG( log_undo, 1, ( " undoRedo[%d] d:%d u:%d N:%d M:%d D:%d\n", undoHead, doCount, undoCount, us->newCnt, us->modCnt, us->delCnt ) )
if (recordUndo) Rprintf( "Redo[%d] d:%d u:%d N:%d M:%d D:%d\n", undoHead, doCount, undoCount, us->newCnt, us->modCnt, us->delCnt );
redrawAll = (us->newCnt+us->modCnt) > incrementalDrawLimit;
if (!redrawAll) {
RedrawInStream( &redoStream, us->redoStart, us->redoEnd, FALSE );
}
for (trk=us->newTrks; trk; trk=trk->next ) {
if (recordUndo) Rprintf(" Undeleting New Track T%d @ %lx\n", trk->index, (long)trk );
UASSERT( IsTrackDeleted(trk), (long)trk );
trk->deleted = FALSE;
}
UASSERT( us->newTail != NULL, (long)us->newTail );
*to_last = us->newTrks;
to_last = us->newTail;
UASSERT( (*to_last) == NULL, (long)*to_last );
RenumberTracks();
needAttachTrains = FALSE;
redoStream.curr = us->redoStart;
while ( redoStream.curr < us->redoEnd ) {
if (!ReadObject( &redoStream, FALSE ))
return FALSE;
}
if ( needAttachTrains ) {
AttachTrains();
needAttachTrains = FALSE;
}
UpdateAllElevations();
if (!redrawAll) {
for (trk=us->newTrks; trk; trk=trk->next )
DrawNewTrack( trk );
RedrawInStream( &redoStream, us->redoStart, us->redoEnd, TRUE );
} else
DoRedraw();
oldCount = trackCount;
trackCount = us->trackCount;
us->trackCount = oldCount;
InfoCount( trackCount );
undoCount--;
doCount++;
AuditTracks( "undoRedo" );
SelectRecount();
SetButtons( TRUE, undoCount>0 );
wBalloonHelpUpdate();
wDrawDelayUpdate( mainD.d, FALSE );
return TRUE;
}
void InitCmdUndo( void )
{
log_undo = LogFindIndex( "undo" );
}
|